diff --git a/.azure-pipelines/release-test.yml b/.azure-pipelines/release-test.yml new file mode 100644 index 000000000000..e9c982aadbbf --- /dev/null +++ b/.azure-pipelines/release-test.yml @@ -0,0 +1,178 @@ +pr: none +trigger: none + +strategy: + matrix: + Windows PS 5.1.14: + Image_Name: 'vs2017-win2016' + PSVersion: '5.1.14' + + Windows PS 6.2.4: + Image_Name: 'vs2017-win2016' + PSVersion: '6.2.4' + + Windows PS 7.0.3: + Image_Name: 'vs2017-win2016' + PSVersion: '7.0.3' + + Linux PS 6.2.4: + Image_Name: 'ubuntu-18.04' + PSVersion: '6.2.4' + + Linux PS 7.0.3: + Image_Name: 'ubuntu-18.04' + PSVersion: '7.0.3' + + MacOS PS 6.2.4: + Image_Name: 'macOS-10.15' + PSVersion: '6.2.4' + + MacOS PS 7.0.3: + Image_Name: 'macOS-10.15' + PSVersion: '7.0.3' + +pool: + vmImage: $(Image_Name) + +steps: +- task: PowerShell@2 + displayName: Prepare Powershell $(PSVersion) + inputs: + filePath: 'tools/Test/SmokeTest/PrepareRequiredPowershell.ps1' + arguments: '-RequiredPsVersion $(PSVersion)' + +- task: DownloadPipelineArtifact@2 + condition: and(succeeded(), eq(variables['GalleryName'], 'LocalRepo')) + displayName: Download Artifacts from Build Pipeline + inputs: + buildType: specific + project: $(ProjectToDownloadArtifacts) + definition: $(BuildPipelineName) + buildVersionToDownload: latestFromBranch + branchName: $(BranchName) + artifactName: $(ArtifactName) + targetPath: $(Pipeline.Workspace) + +- task: PowerShell@2 + condition: and(succeeded(), eq(variables['GalleryName'], 'LocalRepo')) + displayName: Copy Artifacts to LocalRepo + inputs: + targetType: 'inline' + script: | + New-Item -Path "$(Pipeline.Workspace)" -Name "LocalRepo" -ItemType "directory" + Copy-Item -Path "$(Pipeline.Workspace)\\*.nupkg" -Destination "$(Pipeline.Workspace)\\LocalRepo\\" + Write-Host "List artifacts..." + Get-ChildItem "$(Pipeline.Workspace)\\LocalRepo\\" + +- task: NuGetCommand@2 + condition: and(succeeded(), eq(variables['GalleryName'], 'LocalRepo')) + displayName: 'Download Previous Release .nupkg Files' + inputs: + command: custom + arguments: 'install Az -directdownload -packagesavemode nupkg -source https://www.powershellgallery.com/api/v2 -OutputDirectory packages' + +- task: PowerShell@2 + condition: and(succeeded(), eq(variables['GalleryName'], 'LocalRepo')) + displayName: 'Copy Previous Release .nupkg files to LocalRepo' + inputs: + targetType: 'inline' + script: | + Get-ChildItem $(System.DefaultWorkingDirectory)/packages -Recurse -Include *.nupkg | Copy-Item -Destination "$(Pipeline.Workspace)\\LocalRepo\\" -Force + Write-Host "List localRepo..." + Get-ChildItem "$(Pipeline.Workspace)\\LocalRepo\\" + +- task: PowerShell@2 + displayName: Install Az Modules from $(GalleryName) + inputs: + filePath: 'tools/Test/SmokeTest/ScriptsCaller.ps1' + arguments: '-RequiredPsVersion $(PSVersion) -Script "./tools/Test/SmokeTest/InstallAzModules.ps1 -Gallery $(GalleryName) -LocalRepoLocation $(LocalRepoLocation)"' + +- task: PowerShell@2 + displayName: Connect AzAccount + inputs: + filePath: 'tools/Test/SmokeTest/ScriptsCaller.ps1' + arguments: '-RequiredPsVersion $(PSVersion) -Script "./tools/Test/SmokeTest/ConnectAzAccount.ps1 $(Password) $(ServicePrincipal) $(TenantId)"' + +- task: PowerShell@2 + displayName: Run Smoke Test + inputs: + filePath: 'tools/Test/SmokeTest/ScriptsCaller.ps1' + arguments: '-RequiredPsVersion $(PSVersion) -Script "./tools/Test/SmokeTest/RmCoreSmokeTests.ps1"' + +- task: PowerShell@2 + displayName: 'Run Smoke Test Reversely' + inputs: + filePath: 'tools/Test/SmokeTest/ScriptsCaller.ps1' + arguments: '-RequiredPsVersion $(PSVersion) -Script "./tools/Test/SmokeTest/RmCoreSmokeTests.ps1 -Reverse"' + +- task: PowerShell@2 + displayName: Clean Az Modules + inputs: + filePath: 'tools/Test/SmokeTest/ScriptsCaller.ps1' + arguments: '-RequiredPsVersion $(PSVersion) -Script "./tools/Test/SmokeTest/CleanAzModules.ps1"' + +- task: PowerShell@2 + displayName: Update Az Modules + inputs: + filePath: 'tools/Test/SmokeTest/ScriptsCaller.ps1' + arguments: '-RequiredPsVersion $(PSVersion) -Script "./tools/Test/SmokeTest/UpdateAzModules.ps1 -Gallery $(GalleryName)"' + +- task: PowerShell@2 + displayName: Run Smoke Test + inputs: + filePath: 'tools/Test/SmokeTest/ScriptsCaller.ps1' + arguments: '-RequiredPsVersion $(PSVersion) -Script "./tools/Test/SmokeTest/RmCoreSmokeTests.ps1"' + +- task: PowerShell@2 + displayName: 'Run Smoke Test Reversely' + inputs: + filePath: 'tools/Test/SmokeTest/ScriptsCaller.ps1' + arguments: '-RequiredPsVersion $(PSVersion) -Script "./tools/Test/SmokeTest/RmCoreSmokeTests.ps1 -Reverse"' + +- task: PowerShell@2 + displayName: Clean Az Modules + inputs: + filePath: 'tools/Test/SmokeTest/ScriptsCaller.ps1' + arguments: '-RequiredPsVersion $(PSVersion) -Script "./tools/Test/SmokeTest/CleanAzModules.ps1"' + +- task: PowerShell@2 + displayName: Install an individual module + inputs: + filePath: 'tools/Test/SmokeTest/ScriptsCaller.ps1' + arguments: '-RequiredPsVersion $(PSVersion) -Script "./tools/Test/SmokeTest/InstallAnIndividualModule.ps1 -Gallery $(GalleryName)"' + +- task: PowerShell@2 + displayName: Clean Az Modules + inputs: + filePath: 'tools/Test/SmokeTest/ScriptsCaller.ps1' + arguments: '-RequiredPsVersion $(PSVersion) -Script "./tools/Test/SmokeTest/CleanAzModules.ps1"' + +- task: PowerShell@2 + displayName: Update an individual module + inputs: + filePath: 'tools/Test/SmokeTest/ScriptsCaller.ps1' + arguments: '-RequiredPsVersion $(PSVersion) -Script "./tools/Test/SmokeTest/UpdateAnIndividualModule.ps1 -Gallery $(GalleryName)"' + +- task: PowerShell@2 + displayName: Clean Az Modules + inputs: + filePath: 'tools/Test/SmokeTest/ScriptsCaller.ps1' + arguments: '-RequiredPsVersion $(PSVersion) -Script "./tools/Test/SmokeTest/CleanAzModules.ps1"' + +- task: PowerShell@2 + displayName: Install Az on top of an individual module + inputs: + filePath: 'tools/Test/SmokeTest/ScriptsCaller.ps1' + arguments: '-RequiredPsVersion $(PSVersion) -Script "./tools/Test/SmokeTest/InstallAzOnTopOfAnIndividualModule.ps1 -Gallery $(GalleryName)"' + +- task: PowerShell@2 + displayName: Clean Az Modules + inputs: + filePath: 'tools/Test/SmokeTest/ScriptsCaller.ps1' + arguments: '-RequiredPsVersion $(PSVersion) -Script "./tools/Test/SmokeTest/CleanAzModules.ps1"' + +- task: PowerShell@2 + displayName: Install an individual module on top of Az + inputs: + filePath: 'tools/Test/SmokeTest/ScriptsCaller.ps1' + arguments: '-RequiredPsVersion $(PSVersion) -Script "./tools/Test/SmokeTest/InstallAnIndividualModuleOnTopOfAz.ps1 -Gallery $(GalleryName)"' diff --git a/docker/Dockerfile-alpine-3.10 b/docker/Dockerfile-alpine-3.10 index 9eae55548942..f213c05f1cff 100644 --- a/docker/Dockerfile-alpine-3.10 +++ b/docker/Dockerfile-alpine-3.10 @@ -31,7 +31,7 @@ LABEL maintainer="Azure PowerShell Team " \ # install azure-powershell from PSGallery RUN pwsh -Command Set-PSRepository -Name ${REPOSITORY} -InstallationPolicy Trusted && \ - pwsh -Command Install-Module -Name ${MODULE} -RequiredVersion ${VERSION} -Repository ${REPOSITORY} && \ + pwsh -Command Install-Module -Name ${MODULE} -RequiredVersion ${VERSION} -Scope AllUsers -Repository ${REPOSITORY} && \ pwsh -Command Set-PSRepository -Name ${REPOSITORY} -InstallationPolicy Untrusted # create AzureRmContextSettings.json before it was generated diff --git a/docker/Dockerfile-centos-7 b/docker/Dockerfile-centos-7 index 187e25d7ceb1..f258815b6a8c 100644 --- a/docker/Dockerfile-centos-7 +++ b/docker/Dockerfile-centos-7 @@ -31,7 +31,7 @@ LABEL maintainer="Azure PowerShell Team " \ # install azure-powershell from PSGallery RUN pwsh -Command Set-PSRepository -Name ${REPOSITORY} -InstallationPolicy Trusted && \ - pwsh -Command Install-Module -Name ${MODULE} -RequiredVersion ${VERSION} -Repository ${REPOSITORY} && \ + pwsh -Command Install-Module -Name ${MODULE} -RequiredVersion ${VERSION} -Scope AllUsers -Repository ${REPOSITORY} && \ pwsh -Command Set-PSRepository -Name ${REPOSITORY} -InstallationPolicy Untrusted # create AzureRmContextSettings.json before it was generated diff --git a/docker/Dockerfile-debian-9 b/docker/Dockerfile-debian-9 index e3b2081a55a6..da515ab13a02 100644 --- a/docker/Dockerfile-debian-9 +++ b/docker/Dockerfile-debian-9 @@ -31,7 +31,7 @@ LABEL maintainer="Azure PowerShell Team " \ # install azure-powershell from PSGallery RUN pwsh -Command Set-PSRepository -Name ${REPOSITORY} -InstallationPolicy Trusted && \ - pwsh -Command Install-Module -Name ${MODULE} -RequiredVersion ${VERSION} -Repository ${REPOSITORY} && \ + pwsh -Command Install-Module -Name ${MODULE} -RequiredVersion ${VERSION} -Scope AllUsers -Repository ${REPOSITORY} && \ pwsh -Command Set-PSRepository -Name ${REPOSITORY} -InstallationPolicy Untrusted # create AzureRmContextSettings.json before it was generated diff --git a/docker/Dockerfile-ubuntu-18.04 b/docker/Dockerfile-ubuntu-18.04 index 4689e8f88c02..c158cf1d651a 100644 --- a/docker/Dockerfile-ubuntu-18.04 +++ b/docker/Dockerfile-ubuntu-18.04 @@ -31,7 +31,7 @@ LABEL maintainer="Azure PowerShell Team " \ # install azure-powershell from PSGallery RUN pwsh -Command Set-PSRepository -Name ${REPOSITORY} -InstallationPolicy Trusted && \ - pwsh -Command Install-Module -Name ${MODULE} -RequiredVersion ${VERSION} -Repository ${REPOSITORY} && \ + pwsh -Command Install-Module -Name ${MODULE} -RequiredVersion ${VERSION} -Scope AllUsers -Repository ${REPOSITORY} && \ pwsh -Command Set-PSRepository -Name ${REPOSITORY} -InstallationPolicy Untrusted # create AzureRmContextSettings.json before it was generated diff --git a/documentation/azure-powershell-modules.md b/documentation/azure-powershell-modules.md index 2256c4d3e07e..33a5c99e9d53 100644 --- a/documentation/azure-powershell-modules.md +++ b/documentation/azure-powershell-modules.md @@ -41,6 +41,7 @@ Data Lake Analytics | `Az.DataLakeAnalytics` Data Lake Store | `Az.DataLakeStore` | [![DataLakeStore]][DataLakeStoreGallery] Data Migration | `Az.DataMigration` | [![DataMigration]][DataMigrationGallery] Data Share | `Az.DataShare` | [![DataShare]][DataShareGallery] +Dedicated HSM | `Az.DedicatedHsm` | [![DedicatedHsm]][DedicatedHsmGallery] Deployment Manager | `Az.DeploymentManager` | [![DeploymentManager]][DeploymentManagerGallery] Windows Virtual Desktop | `Az.DesktopVirtualization` | [![DesktopVirtualization]][DesktopVirtualizationGallery] Device Provisioning Services | `Az.DeviceProvisioningServices` | [![DeviceProvisioningServices]][DeviceProvisioningServicesGallery] @@ -113,8 +114,10 @@ Support | `Az.Support` Synapse Analytics | `Az.Synapse` | [![Synapse]][SynapseGallery] Time Series Insights | `Az.TimeSeriesInsights` | [![TimeSeriesInsights]][TimeSeriesInsightsGallery] Traffic Manager | `Az.TrafficManager` | [![TrafficManager]][TrafficManagerGallery] +VMWare Virtual Stream | `Az.VMWare` | [![VMWare]][VMWareGallery] Web App Service | `Az.Websites` | [![Websites]][WebsitesGallery] + @@ -141,7 +144,7 @@ Web App Service | `Az.Websites` [ContainerInstance]: https://img.shields.io/powershellgallery/v/Az.ContainerInstance.svg?style=flat-square&label=Az.ContainerInstance [ContainerRegistry]: https://img.shields.io/powershellgallery/v/Az.ContainerRegistry.svg?style=flat-square&label=Az.ContainerRegistry [CosmosDB]: https://img.shields.io/powershellgallery/v/Az.CosmosDB.svg?style=flat-square&label=Az.CosmosDB -[CustomProviders]: https://img.shields.io/powershellgallery/v/Az.CustomProviders.svg?style=flat-square&label=Az.CustomProviders +[CustomProviders]: https://img.shields.io/powershellgallery/v/Az.CustomProviders.svg?style=flat-square&label=Az.CustomProviders [DataBox]: https://img.shields.io/powershellgallery/v/Az.DataBox.svg?style=flat-square&label=Az.DataBox [DataBoxEdge]: https://img.shields.io/powershellgallery/v/Az.DataBoxEdge.svg?style=flat-square&label=Az.DataBoxEdge [Databricks]: https://img.shields.io/powershellgallery/v/Az.Databricks.svg?style=flat-square&label=Az.Databricks @@ -150,6 +153,7 @@ Web App Service | `Az.Websites` [DataLakeStore]: https://img.shields.io/powershellgallery/v/Az.DataLakeStore.svg?style=flat-square&label=Az.DataLakeStore [DataMigration]: https://img.shields.io/powershellgallery/v/Az.DataMigration.svg?style=flat-square&label=Az.DataMigration [DataShare]: https://img.shields.io/powershellgallery/v/Az.DataShare.svg?style=flat-square&label=Az.DataShare +[DedicatedHsm]: https://img.shields.io/powershellgallery/v/Az.DedicatedHsm.svg?style=flat-square&label=Az.DedicatedHsm [DeploymentManager]: https://img.shields.io/powershellgallery/v/Az.DeploymentManager.svg?style=flat-square&label=Az.DeploymentManager [DesktopVirtualization]: https://img.shields.io/powershellgallery/v/Az.DesktopVirtualization.svg?style=flat-square&label=Az.DesktopVirtualization [DeviceProvisioningServices]: https://img.shields.io/powershellgallery/v/Az.DeviceProvisioningServices.svg?style=flat-square&label=Az.DeviceProvisioningServices @@ -222,6 +226,7 @@ Web App Service | `Az.Websites` [Synapse]: https://img.shields.io/powershellgallery/v/Az.Synapse.svg?style=flat-square&label=Az.Synapse [TimeSeriesInsights]: https://img.shields.io/powershellgallery/v/Az.TimeSeriesInsights.svg?style=flat-square&label=Az.TimeSeriesInsights [TrafficManager]: https://img.shields.io/powershellgallery/v/Az.TrafficManager.svg?style=flat-square&label=Az.TrafficManager +[VMWare]: https://img.shields.io/powershellgallery/v/Az.VMWare.svg?style=flat-square&label=Az.VMWare [Websites]: https://img.shields.io/powershellgallery/v/Az.Websites.svg?style=flat-square&label=Az.Websites @@ -244,7 +249,7 @@ Web App Service | `Az.Websites` [CognitiveServicesGallery]: https://www.powershellgallery.com/packages/Az.CognitiveServices/ [ComputeGallery]: https://www.powershellgallery.com/packages/Az.Compute/ [ConnectedKubernetesGallery]: https://www.powershellgallery.com/packages/Az.ConnectedKubernetes/ -[ConnectedMachine]: https://www.powershellgallery.com/packages/Az.ConnectedMachine/ +[ConnectedMachineGallery]: https://www.powershellgallery.com/packages/Az.ConnectedMachine/ [ContainerInstanceGallery]: https://www.powershellgallery.com/packages/Az.ContainerInstance/ [ContainerRegistryGallery]: https://www.powershellgallery.com/packages/Az.ContainerRegistry/ [CosmosDBGallery]: https://www.powershellgallery.com/packages/Az.CosmosDB/ @@ -257,6 +262,7 @@ Web App Service | `Az.Websites` [DataLakeStoreGallery]: https://www.powershellgallery.com/packages/Az.DataLakeStore/ [DataMigrationGallery]: https://www.powershellgallery.com/packages/Az.DataMigration/ [DataShareGallery]: https://www.powershellgallery.com/packages/Az.DataShare/ +[DedicatedHsmGallery]: https://www.powershellgallery.com/packages/Az.DedicatedHsm/ [DeploymentManagerGallery]: https://www.powershellgallery.com/packages/Az.DeploymentManager/ [DesktopVirtualizationGallery]: https://www.powershellgallery.com/packages/Az.DesktopVirtualization/ [DeviceProvisioningServicesGallery]: https://www.powershellgallery.com/packages/Az.DeviceProvisioningServices/ @@ -329,4 +335,5 @@ Web App Service | `Az.Websites` [SynapseGallery]: https://www.powershellgallery.com/packages/Az.Synapse/ [TimeSeriesInsightsGallery]: https://www.powershellgallery.com/packages/Az.TimeSeriesInsights/ [TrafficManagerGallery]: https://www.powershellgallery.com/packages/Az.TrafficManager/ +[VMWareGallery]: https://www.powershellgallery.com/packages/Az.VMWare/ [WebsitesGallery]: https://www.powershellgallery.com/packages/Az.Websites/ \ No newline at end of file diff --git a/src/Accounts/Accounts/ChangeLog.md b/src/Accounts/Accounts/ChangeLog.md index 1a90ac33b4fc..e468286f18e8 100644 --- a/src/Accounts/Accounts/ChangeLog.md +++ b/src/Accounts/Accounts/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +Fix DateTime parse issue in common repo [#13045] ## Version 1.9.4 * Formatted the upcoming breaking change messages diff --git a/src/Cdn/Cdn/help/New-AzCdnProfile.md b/src/Cdn/Cdn/help/New-AzCdnProfile.md index 5894bec2bafe..3d0a778f3917 100644 --- a/src/Cdn/Cdn/help/New-AzCdnProfile.md +++ b/src/Cdn/Cdn/help/New-AzCdnProfile.md @@ -23,6 +23,15 @@ The **New-AzCdnProfile** cmdlet creates an Azure Content Delivery Network (CDN) ## EXAMPLES +### Example 1 + +Creates a CDN profile. (autogenerated) + + +```powershell +New-AzCdnProfile -Location westus -ProfileName -ResourceGroupName myresourcegroup -Sku Standard_Verizon +``` + ## PARAMETERS ### -DefaultProfile diff --git a/src/CognitiveServices/CognitiveServices.Test/ScenarioTests/CognitiveServicesAccountTests.cs b/src/CognitiveServices/CognitiveServices.Test/ScenarioTests/CognitiveServicesAccountTests.cs index 0a07b6c08c84..f0b5389448fe 100644 --- a/src/CognitiveServices/CognitiveServices.Test/ScenarioTests/CognitiveServicesAccountTests.cs +++ b/src/CognitiveServices/CognitiveServices.Test/ScenarioTests/CognitiveServicesAccountTests.cs @@ -226,5 +226,12 @@ public void TestCapabilities() { TestController.NewInstance.RunPsTest(traceInterceptor, "Test-Capabilities"); } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestApiProperties() + { + TestController.NewInstance.RunPsTest(traceInterceptor, "Test-ApiProperties"); + } } } diff --git a/src/CognitiveServices/CognitiveServices.Test/ScenarioTests/CognitiveServicesAccountTests.ps1 b/src/CognitiveServices/CognitiveServices.Test/ScenarioTests/CognitiveServicesAccountTests.ps1 index bb24bb4d8195..02e40adf33a3 100644 --- a/src/CognitiveServices/CognitiveServices.Test/ScenarioTests/CognitiveServicesAccountTests.ps1 +++ b/src/CognitiveServices/CognitiveServices.Test/ScenarioTests/CognitiveServicesAccountTests.ps1 @@ -1303,4 +1303,41 @@ function Test-Capabilities # Cleanup Clean-ResourceGroup $rgname } +} + +<# +.SYNOPSIS +Test ApiProperties +#> +function Test-ApiProperties +{ + # Setup + $rgname = Get-CognitiveServicesManagementTestResourceName; + + try + { + # Test + $accountname = 'csa' + $rgname; + $skuname = 'S0'; + $accounttype = 'QnAMaker'; + $loc = "West US"; + + New-AzResourceGroup -Name $rgname -Location $loc; + $apiProperties = New-AzCognitiveServicesAccountApiProperty + $apiProperties.QnaRuntimeEndpoint = "https://sdk-test-qna-maker.azurewebsites.net" + $createdAccount = New-AzCognitiveServicesAccount -ResourceGroupName $rgname -Name $accountname -Type $accounttype -SkuName $skuname -Location $loc -CustomSubdomainName $accountname -ApiProperty $apiProperties -Force; + Assert-NotNull $createdAccount; + Assert-True {$createdAccount.ApiProperties.QnaRuntimeEndpoint -eq "https://sdk-test-qna-maker.azurewebsites.net"} + + $apiProperties.QnaRuntimeEndpoint = "https://qnamaker.azurewebsites.net" + + $updatedAccount = Set-AzCognitiveServicesAccount -ResourceGroupName $rgname -Name $accountname -ApiProperty $apiProperties -Force; + Assert-NotNull $updatedAccount; + Assert-True {$updatedAccount.ApiProperties.QnaRuntimeEndpoint -eq "https://qnamaker.azurewebsites.net"} + } + finally + { + # Cleanup + Clean-ResourceGroup $rgname + } } \ No newline at end of file diff --git a/src/CognitiveServices/CognitiveServices.Test/SessionRecords/CognitiveServices.Test.ScenarioTests.CognitiveServicesAccountTests/TestApiProperties.json b/src/CognitiveServices/CognitiveServices.Test/SessionRecords/CognitiveServices.Test.ScenarioTests.CognitiveServicesAccountTests/TestApiProperties.json new file mode 100644 index 000000000000..90b0ac148c4c --- /dev/null +++ b/src/CognitiveServices/CognitiveServices.Test/SessionRecords/CognitiveServices.Test.ScenarioTests.CognitiveServicesAccountTests/TestApiProperties.json @@ -0,0 +1,756 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourcegroups/pstestrg1533?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMTUzMz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "615e4746-3b37-4aaa-b94c-a736187f5c2a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "2b0e8ec6-cb16-4fb1-ba83-04c32c65f1e9" + ], + "x-ms-correlation-request-id": [ + "2b0e8ec6-cb16-4fb1-ba83-04c32c65f1e9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200904T205912Z:2b0e8ec6-cb16-4fb1-ba83-04c32c65f1e9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 04 Sep 2020 20:59:11 GMT" + ], + "Content-Length": [ + "177" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg1533\",\r\n \"name\": \"pstestrg1533\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg1533/providers/Microsoft.CognitiveServices/accounts/csapstestrg1533?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTUzMy9wcm92aWRlcnMvTWljcm9zb2Z0LkNvZ25pdGl2ZVNlcnZpY2VzL2FjY291bnRzL2NzYXBzdGVzdHJnMTUzMz9hcGktdmVyc2lvbj0yMDE3LTA0LTE4", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"kind\": \"QnAMaker\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"customSubDomainName\": \"csapstestrg1533\",\r\n \"apiProperties\": {\r\n \"qnaRuntimeEndpoint\": \"https://sdk-test-qna-maker.azurewebsites.net\"\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e46d5bda-6beb-4fa1-8ce8-7d693e27d36c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/7.3.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "267" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"d70155c3-0000-0700-0000-5f52aaa30000\"" + ], + "x-ms-request-id": [ + "30ef1186-1e28-4e2a-bf21-9110ea07e4dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "cdce6142-4cdf-411f-8891-c01f2253fac8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200904T205915Z:cdce6142-4cdf-411f-8891-c01f2253fac8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 04 Sep 2020 20:59:14 GMT" + ], + "Content-Length": [ + "891" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg1533/providers/Microsoft.CognitiveServices/accounts/csapstestrg1533\",\r\n \"name\": \"csapstestrg1533\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"d70155c3-0000-0700-0000-5f52aaa30000\\\"\",\r\n \"location\": \"West US\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n },\r\n \"kind\": \"QnAMaker\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg1533.cognitiveservices.azure.com/\",\r\n \"internalId\": \"4cfca0d39ce043f2a4093feb90f50105\",\r\n \"dateCreated\": \"2020-09-04T20:59:14.358391Z\",\r\n \"apiProperties\": {\r\n \"qnaRuntimeEndpoint\": \"https://sdk-test-qna-maker.azurewebsites.net\"\r\n },\r\n \"callRateLimit\": {\r\n \"rules\": [\r\n {\r\n \"key\": \"default\",\r\n \"renewalPeriod\": 60,\r\n \"count\": 100,\r\n \"matchPatterns\": [\r\n {\r\n \"path\": \"*\",\r\n \"method\": \"*\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"customSubDomainName\": \"csapstestrg1533\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"VirtualNetworks\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg1533/providers/Microsoft.CognitiveServices/accounts/csapstestrg1533?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTUzMy9wcm92aWRlcnMvTWljcm9zb2Z0LkNvZ25pdGl2ZVNlcnZpY2VzL2FjY291bnRzL2NzYXBzdGVzdHJnMTUzMz9hcGktdmVyc2lvbj0yMDE3LTA0LTE4", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bb039a0a-e86a-4267-a8ca-13ded58df90b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/7.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"d70155c3-0000-0700-0000-5f52aaa30000\"" + ], + "x-ms-request-id": [ + "0a686237-a9f2-46d3-bfd9-5a15a496651c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "b2b91dc4-2f70-402e-9036-0114cdba7e23" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200904T205915Z:b2b91dc4-2f70-402e-9036-0114cdba7e23" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 04 Sep 2020 20:59:14 GMT" + ], + "Content-Length": [ + "891" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg1533/providers/Microsoft.CognitiveServices/accounts/csapstestrg1533\",\r\n \"name\": \"csapstestrg1533\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"d70155c3-0000-0700-0000-5f52aaa30000\\\"\",\r\n \"location\": \"West US\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n },\r\n \"kind\": \"QnAMaker\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg1533.cognitiveservices.azure.com/\",\r\n \"internalId\": \"4cfca0d39ce043f2a4093feb90f50105\",\r\n \"dateCreated\": \"2020-09-04T20:59:14.358391Z\",\r\n \"apiProperties\": {\r\n \"qnaRuntimeEndpoint\": \"https://sdk-test-qna-maker.azurewebsites.net\"\r\n },\r\n \"callRateLimit\": {\r\n \"rules\": [\r\n {\r\n \"key\": \"default\",\r\n \"renewalPeriod\": 60,\r\n \"count\": 100,\r\n \"matchPatterns\": [\r\n {\r\n \"path\": \"*\",\r\n \"method\": \"*\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"customSubDomainName\": \"csapstestrg1533\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"VirtualNetworks\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg1533/providers/Microsoft.CognitiveServices/accounts/csapstestrg1533?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTUzMy9wcm92aWRlcnMvTWljcm9zb2Z0LkNvZ25pdGl2ZVNlcnZpY2VzL2FjY291bnRzL2NzYXBzdGVzdHJnMTUzMz9hcGktdmVyc2lvbj0yMDE3LTA0LTE4", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"apiProperties\": {\r\n \"qnaRuntimeEndpoint\": \"https://qnamaker.azurewebsites.net\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "23a37c97-3de3-497b-adf8-c581504d760c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/7.3.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "125" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"d70141c7-0000-0700-0000-5f52aad90000\"" + ], + "x-ms-request-id": [ + "66da3e62-daba-4504-bb0b-1f773f3d9b37" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "5ccd69ec-d0e8-46f3-8bd0-e9b145a01991" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200904T210009Z:5ccd69ec-d0e8-46f3-8bd0-e9b145a01991" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 04 Sep 2020 21:00:09 GMT" + ], + "Content-Length": [ + "881" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg1533/providers/Microsoft.CognitiveServices/accounts/csapstestrg1533\",\r\n \"name\": \"csapstestrg1533\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"d70141c7-0000-0700-0000-5f52aad90000\\\"\",\r\n \"location\": \"West US\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n },\r\n \"kind\": \"QnAMaker\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg1533.cognitiveservices.azure.com/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"4cfca0d39ce043f2a4093feb90f50105\",\r\n \"dateCreated\": \"2020-09-04T20:59:14.358391Z\",\r\n \"apiProperties\": {\r\n \"qnaRuntimeEndpoint\": \"https://qnamaker.azurewebsites.net\"\r\n },\r\n \"callRateLimit\": {\r\n \"rules\": [\r\n {\r\n \"key\": \"default\",\r\n \"renewalPeriod\": 60,\r\n \"count\": 100,\r\n \"matchPatterns\": [\r\n {\r\n \"path\": \"*\",\r\n \"method\": \"*\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"customSubDomainName\": \"csapstestrg1533\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"VirtualNetworks\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourcegroups/pstestrg1533?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMTUzMz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cd72e5c3-39c2-4b51-b142-c77da9a173ae" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE1MzMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "fb35e775-ddbc-408e-9723-2783f206dced" + ], + "x-ms-correlation-request-id": [ + "fb35e775-ddbc-408e-9723-2783f206dced" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200904T210024Z:fb35e775-ddbc-408e-9723-2783f206dced" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 04 Sep 2020 21:00:23 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE1MzMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUxTXpNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE1MzMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "4a41b0ff-4420-4ff4-bdcf-b55c2111d06e" + ], + "x-ms-correlation-request-id": [ + "4a41b0ff-4420-4ff4-bdcf-b55c2111d06e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200904T210039Z:4a41b0ff-4420-4ff4-bdcf-b55c2111d06e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 04 Sep 2020 21:00:39 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE1MzMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUxTXpNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE1MzMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "119e8a51-bba0-447c-a1ff-f6c28d5e53ff" + ], + "x-ms-correlation-request-id": [ + "119e8a51-bba0-447c-a1ff-f6c28d5e53ff" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200904T210055Z:119e8a51-bba0-447c-a1ff-f6c28d5e53ff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 04 Sep 2020 21:00:54 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE1MzMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUxTXpNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE1MzMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "c909330c-4009-47d9-bba2-f0bceb649ef8" + ], + "x-ms-correlation-request-id": [ + "c909330c-4009-47d9-bba2-f0bceb649ef8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200904T210110Z:c909330c-4009-47d9-bba2-f0bceb649ef8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 04 Sep 2020 21:01:09 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE1MzMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUxTXpNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE1MzMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "d4e77f43-0ad9-4a3b-8c87-23c964d1be6b" + ], + "x-ms-correlation-request-id": [ + "d4e77f43-0ad9-4a3b-8c87-23c964d1be6b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200904T210125Z:d4e77f43-0ad9-4a3b-8c87-23c964d1be6b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 04 Sep 2020 21:01:24 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE1MzMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUxTXpNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE1MzMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "2827a47f-2c25-40af-a2fe-5b25cae8b80f" + ], + "x-ms-correlation-request-id": [ + "2827a47f-2c25-40af-a2fe-5b25cae8b80f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200904T210140Z:2827a47f-2c25-40af-a2fe-5b25cae8b80f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 04 Sep 2020 21:01:39 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE1MzMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUxTXpNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "a91835e2-02d9-4764-b280-491f716b2ed3" + ], + "x-ms-correlation-request-id": [ + "a91835e2-02d9-4764-b280-491f716b2ed3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200904T210155Z:a91835e2-02d9-4764-b280-491f716b2ed3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 04 Sep 2020 21:01:54 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE1MzMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUxTXpNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "01b43b5d-38d7-43cc-8a0c-19cd3f492511" + ], + "x-ms-correlation-request-id": [ + "01b43b5d-38d7-43cc-8a0c-19cd3f492511" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200904T210155Z:01b43b5d-38d7-43cc-8a0c-19cd3f492511" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 04 Sep 2020 21:01:54 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-ApiProperties": [ + "pstestrg1533" + ] + }, + "Variables": { + "SubscriptionId": "f9b96b36-1f5e-4021-8959-51527e26e6d3" + } +} \ No newline at end of file diff --git a/src/CognitiveServices/CognitiveServices/Az.CognitiveServices.psd1 b/src/CognitiveServices/CognitiveServices/Az.CognitiveServices.psd1 index 1dffea394e8b..d7e42d190681 100644 --- a/src/CognitiveServices/CognitiveServices/Az.CognitiveServices.psd1 +++ b/src/CognitiveServices/CognitiveServices/Az.CognitiveServices.psd1 @@ -86,7 +86,8 @@ CmdletsToExport = 'Get-AzCognitiveServicesAccount', 'Get-AzCognitiveServicesAccountNetworkRuleSet', 'Update-AzCognitiveServicesAccountNetworkRuleSet', 'Add-AzCognitiveServicesAccountNetworkRule', - 'Remove-AzCognitiveServicesAccountNetworkRule' + 'Remove-AzCognitiveServicesAccountNetworkRule', + 'New-AzCognitiveServicesAccountApiProperty' # Variables to export from this module # VariablesToExport = @() diff --git a/src/CognitiveServices/CognitiveServices/ChangeLog.md b/src/CognitiveServices/CognitiveServices/ChangeLog.md index f98ead330638..d1bcbc5e85d1 100644 --- a/src/CognitiveServices/CognitiveServices/ChangeLog.md +++ b/src/CognitiveServices/CognitiveServices/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release +* Add `New-AzCognitiveServicesAccountApiProperty` command. +* Support "ApiProperty" parameter for `New-AzCognitiveServicesAccount` and `Set-AzCognitiveServicesAccount` ## Version 1.6.0 * Showed additional legal terms for certain APIs. diff --git a/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/NewAzureCognitiveServicesAccount.cs b/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/NewAzureCognitiveServicesAccount.cs index 74a32e921239..0fd74dcf8fa4 100644 --- a/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/NewAzureCognitiveServicesAccount.cs +++ b/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/NewAzureCognitiveServicesAccount.cs @@ -161,6 +161,11 @@ public string KeyVaultUri [ValidateSet("Enabled", "Disabled", IgnoreCase = true)] public string PublicNetworkAccess { get; set; } + [Parameter( + Mandatory = false, + HelpMessage = "The ApiProperties of Cognitive Services Account. Required by specific account types.")] + public CognitiveServicesAccountApiProperties ApiProperty { get; set; } + [Parameter(Mandatory = false, HelpMessage = "Don't ask for confirmation.")] public SwitchParameter Force { get; set; } @@ -181,6 +186,11 @@ public override void ExecuteCmdlet() properties.NetworkAcls = NetworkRuleSet.ToNetworkRuleSet(); } + if (ApiProperty != null) + { + properties.ApiProperties = ApiProperty; + } + CognitiveServicesAccount createParameters = new CognitiveServicesAccount() { Location = Location, @@ -270,10 +280,19 @@ public override void ExecuteCmdlet() Name, createParameters); } + catch (ErrorException ex) + { + // If the Exception is ErrorException, clone the exception with modified message. + var newEx = new ErrorException($"Failed to create Cognitive Services account. {ex.Message}", ex); + newEx.Body = ex.Body; + newEx.Request = ex.Request; + newEx.Response = ex.Response; + throw newEx; + } catch (Exception ex) { // Give users a specific message says `Failed to create Cognitive Services account.` - // Details should able be found in the exception. + // Details should able be found in the inner exception. throw new Exception("Failed to create Cognitive Services account.", ex); } diff --git a/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/NewAzureCognitiveServicesAccountApiProperty.cs b/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/NewAzureCognitiveServicesAccountApiProperty.cs new file mode 100644 index 000000000000..3e79db6d148b --- /dev/null +++ b/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/NewAzureCognitiveServicesAccountApiProperty.cs @@ -0,0 +1,34 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Management.CognitiveServices.Models; +using System.Management.Automation; +using CognitiveServicesModels = Microsoft.Azure.Management.CognitiveServices.Models; + +namespace Microsoft.Azure.Commands.Management.CognitiveServices +{ + /// + /// Generate Cognitive Services Account ApiProperties class + /// + [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "CognitiveServicesAccountApiProperty"), OutputType(typeof(CognitiveServicesModels.CognitiveServicesAccountApiProperties))] + public class NewAzureCognitiveServicesAccountApiPropertyCommand : CognitiveServicesAccountBaseCmdlet + { + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + WriteObject(new CognitiveServicesAccountApiProperties()); + } + } +} diff --git a/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/SetAzureCognitiveServicesAccount.cs b/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/SetAzureCognitiveServicesAccount.cs index 0c16456f50f1..327e2080d3fb 100644 --- a/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/SetAzureCognitiveServicesAccount.cs +++ b/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/SetAzureCognitiveServicesAccount.cs @@ -145,6 +145,11 @@ public string KeyVaultUri [ValidateSet("Enabled", "Disabled", IgnoreCase = true)] public string PublicNetworkAccess { get; set; } + [Parameter( + Mandatory = false, + HelpMessage = "The ApiProperties of Cognitive Services Account. Required by specific account types.")] + public CognitiveServicesAccountApiProperties ApiProperty { get; set; } + [Parameter(Mandatory = false, HelpMessage = "Don't ask for confirmation.")] public SwitchParameter Force { get; set; } @@ -164,6 +169,11 @@ public override void ExecuteCmdlet() hasPropertiesChange = true; properties.NetworkAcls = NetworkRuleSet.ToNetworkRuleSet(); } + if (ApiProperty != null) + { + hasPropertiesChange = true; + properties.ApiProperties = ApiProperty; + } Sku sku = null; if (!string.IsNullOrWhiteSpace(this.SkuName)) diff --git a/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/UpdateAzureCognitiveServicesAccountNetworkRuleSet.cs b/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/UpdateAzureCognitiveServicesAccountNetworkRuleSet.cs index 3f9a275b8a3a..0433ea88056b 100644 --- a/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/UpdateAzureCognitiveServicesAccountNetworkRuleSet.cs +++ b/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/UpdateAzureCognitiveServicesAccountNetworkRuleSet.cs @@ -99,7 +99,6 @@ public PSVirtualNetworkRule[] VirtualNetworkRule private bool isIpRuleSet = false; private bool isNetworkRuleSet = false; - public override void ExecuteCmdlet() { base.ExecuteCmdlet(); diff --git a/src/CognitiveServices/CognitiveServices/help/New-AzCognitiveServicesAccount.md b/src/CognitiveServices/CognitiveServices/help/New-AzCognitiveServicesAccount.md index 1bec7de905a1..f7d0b64e41ff 100644 --- a/src/CognitiveServices/CognitiveServices/help/New-AzCognitiveServicesAccount.md +++ b/src/CognitiveServices/CognitiveServices/help/New-AzCognitiveServicesAccount.md @@ -18,8 +18,9 @@ Creates a Cognitive Services account. New-AzCognitiveServicesAccount [-ResourceGroupName] [-Name] [-Type] [-SkuName] [-Location] [-Tag ] [-CustomSubdomainName ] [-AssignIdentity] [-StorageAccountId ] [-CognitiveServicesEncryption] - [-NetworkRuleSet ] [-PublicNetworkAccess ] [-Force] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-NetworkRuleSet ] [-PublicNetworkAccess ] + [-ApiProperty ] [-Force] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] ``` ### KeyVaultEncryption @@ -27,8 +28,9 @@ New-AzCognitiveServicesAccount [-ResourceGroupName] [-Name] [- New-AzCognitiveServicesAccount [-ResourceGroupName] [-Name] [-Type] [-SkuName] [-Location] [-Tag ] [-CustomSubdomainName ] [-AssignIdentity] [-StorageAccountId ] [-KeyVaultEncryption] -KeyName -KeyVersion - -KeyVaultUri [-NetworkRuleSet ] [-PublicNetworkAccess ] [-Force] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + -KeyVaultUri [-NetworkRuleSet ] [-PublicNetworkAccess ] + [-ApiProperty ] [-Force] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -59,6 +61,21 @@ Tags : ## PARAMETERS +### -ApiProperty +The ApiProperties of Cognitive Services Account. Required by specific account types. + +```yaml +Type: Microsoft.Azure.Management.CognitiveServices.Models.CognitiveServicesAccountApiProperties +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -AssignIdentity Generate and assign a new Cognitive Services Account Identity for this storage account for use with key management services like Azure KeyVault. diff --git a/src/CognitiveServices/CognitiveServices/help/New-AzCognitiveServicesAccountApiProperty.md b/src/CognitiveServices/CognitiveServices/help/New-AzCognitiveServicesAccountApiProperty.md new file mode 100644 index 000000000000..c73056f03a11 --- /dev/null +++ b/src/CognitiveServices/CognitiveServices/help/New-AzCognitiveServicesAccountApiProperty.md @@ -0,0 +1,98 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.CognitiveServices.dll-Help.xml +Module Name: Az.CognitiveServices +online version: https://docs.microsoft.com/en-us/powershell/module/az.cognitiveservices/new-azcognitiveservicesaccountapiproperty +schema: 2.0.0 +--- + +# New-AzCognitiveServicesAccountApiProperty + +## SYNOPSIS +Generate a new instance of Cognitive Services Account ApiProperties + +## SYNTAX + +``` +New-AzCognitiveServicesAccountApiProperty [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +## DESCRIPTION +Generate a new instance of Cognitive Services Account ApiProperties. +ApiProperties can be used when creating a new account or updating an existing account. +ApiProperties is required by certain account types. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> $apiProperties = New-AzCognitiveServicesAccountApiProperty +PS C:\> $apiProperties.QnaRuntimeEndpoint = "https://qnamaker.azurewebsites.net" +PS C:\> New-AzCognitiveServicesAccount -ResourceGroupName cognitive-services-resource-group -name qnamaker -Type QnAMaker -SkuName S0 -Locatio WestUS -ApiProperty $apiProperties +``` + +Above example will create an QnAMaker account, with API property "QnaRuntimeEndpoint". + + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None + +## OUTPUTS + +### Microsoft.Azure.Management.CognitiveServices.Models.CognitiveServicesAccountApiProperties + +## NOTES + +## RELATED LINKS diff --git a/src/CognitiveServices/CognitiveServices/help/Set-AzCognitiveServicesAccount.md b/src/CognitiveServices/CognitiveServices/help/Set-AzCognitiveServicesAccount.md index daf512a2aa4f..408c48fda026 100644 --- a/src/CognitiveServices/CognitiveServices/help/Set-AzCognitiveServicesAccount.md +++ b/src/CognitiveServices/CognitiveServices/help/Set-AzCognitiveServicesAccount.md @@ -18,8 +18,8 @@ Modifies an account. Set-AzCognitiveServicesAccount [-ResourceGroupName] [-Name] [-SkuName ] [-Tag ] [-CustomSubdomainName ] [-AssignIdentity] [-IdentityType ] [-StorageAccountId ] [-CognitiveServicesEncryption] [-NetworkRuleSet ] - [-PublicNetworkAccess ] [-Force] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] + [-PublicNetworkAccess ] [-ApiProperty ] [-Force] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### KeyVaultEncryption @@ -27,8 +27,9 @@ Set-AzCognitiveServicesAccount [-ResourceGroupName] [-Name] [- Set-AzCognitiveServicesAccount [-ResourceGroupName] [-Name] [-SkuName ] [-Tag ] [-CustomSubdomainName ] [-AssignIdentity] [-IdentityType ] [-StorageAccountId ] [-KeyVaultEncryption] -KeyName -KeyVersion - -KeyVaultUri [-NetworkRuleSet ] [-PublicNetworkAccess ] [-Force] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + -KeyVaultUri [-NetworkRuleSet ] [-PublicNetworkAccess ] + [-ApiProperty ] [-Force] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -57,6 +58,21 @@ Tags : ## PARAMETERS +### -ApiProperty +The ApiProperties of Cognitive Services Account. Required by specific account types. + +```yaml +Type: Microsoft.Azure.Management.CognitiveServices.Models.CognitiveServicesAccountApiProperties +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -AssignIdentity Generate and assign a new Cognitive Services Account Identity for this storage account for use with key management services like Azure KeyVault. diff --git a/src/Compute/Compute.Test/Compute.Test.csproj b/src/Compute/Compute.Test/Compute.Test.csproj index c9b110ea5000..f96e9aab50b3 100644 --- a/src/Compute/Compute.Test/Compute.Test.csproj +++ b/src/Compute/Compute.Test/Compute.Test.csproj @@ -1,4 +1,4 @@ - + Compute diff --git a/src/Compute/Compute.Test/ScenarioTests/VirtualMachineTests.cs b/src/Compute/Compute.Test/ScenarioTests/VirtualMachineTests.cs index 10597f4844b9..41d89be262d3 100644 --- a/src/Compute/Compute.Test/ScenarioTests/VirtualMachineTests.cs +++ b/src/Compute/Compute.Test/ScenarioTests/VirtualMachineTests.cs @@ -339,5 +339,12 @@ public void TestHostGroupPropertySetOnVirtualMachine() { TestRunner.RunTestScript("Test-HostGroupPropertySetOnVirtualMachine"); } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestVirtualMachineImageListTopOrderExpand() + { + TestRunner.RunTestScript("Test-VirtualMachineImageListTopOrderExpand"); + } } } diff --git a/src/Compute/Compute.Test/ScenarioTests/VirtualMachineTests.ps1 b/src/Compute/Compute.Test/ScenarioTests/VirtualMachineTests.ps1 index 572abb0bd867..fe1dfbe04d9d 100644 --- a/src/Compute/Compute.Test/ScenarioTests/VirtualMachineTests.ps1 +++ b/src/Compute/Compute.Test/ScenarioTests/VirtualMachineTests.ps1 @@ -4372,3 +4372,43 @@ function Test-HostGroupPropertySetOnVirtualMachine } } +<# +.SYNOPSIS +Test Virtual Machine Size and Usage +#> +function Test-VirtualMachineImageListTopOrderExpand +{ + # Setup + $loc = Get-ComputeVMLocation; + + try + { + $pubNames = "MicrosoftWindowsServer"; + $pubNameFilter = '*Windows*'; + $offer = "windowsserver"; + $sku = "2012-R2-Datacenter"; + $numRecords = 3; + $orderNameDesc = "name desc"; + $orderNameAsc = "name asc"; + + # Test -Top + $vmImagesTop = Get-AzVMImage -Location $loc -PublisherName $pubNames -Offer $offer -Sku $sku -Top $numRecords; + Assert-AreEqual $numRecords $vmImagesTop.Count; + + # Test -OrderBy + $vmImagesOrderDesc = Get-AzVMImage -Location $loc -PublisherName $pubNames -Offer $offer -Sku $sku -OrderBy $orderNameDesc; + $vmImagesOrderAsc = Get-AzVMImage -Location $loc -PublisherName $pubNames -Offer $offer -Sku $sku -OrderBy $orderNameAsc; + + if ($vmImagesOrderDesc.Count -gt 0) + { + $isLessThan = $vmImagesOrderDesc[0].Version -ge $vmImagesOrderAsc[0].Version; + Assert-True { $isLessThan }; + } + } + finally + { + + } + +} + diff --git a/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineImageListTopOrderExpand.json b/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineImageListTopOrderExpand.json new file mode 100644 index 000000000000..afa9fb88161a --- /dev/null +++ b/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineImageListTopOrderExpand.json @@ -0,0 +1,336 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a4e0a9cd-42c8-4204-90ae-87f376a29a15" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "57d285fb-118e-4409-904e-a9385fc1513f" + ], + "x-ms-correlation-request-id": [ + "57d285fb-118e-4409-904e-a9385fc1513f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20200924T185846Z:57d285fb-118e-4409-904e-a9385fc1513f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 18:58:46 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "35621" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"roleDefinitionId\": \"e4770acb-272e-4dc8-87f3-12f44a612224\"\r\n },\r\n {\r\n \"applicationId\": \"a303894e-f1d8-4a37-bf10-67aa654a0596\",\r\n \"roleDefinitionId\": \"903ac751-8ad5-4e5a-bfc2-5e49f450a241\"\r\n },\r\n {\r\n \"applicationId\": \"a8b6bf88-1d1a-4626-b040-9a729ea93c65\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"184909ca-69f1-4368-a6a7-c558ee6eb0bd\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"5e5e43d4-54da-4211-86a4-c6e7f3715801\",\r\n \"roleDefinitionId\": \"ffcd6e5b-8772-457d-bb17-89703c03428f\"\r\n },\r\n {\r\n \"applicationId\": \"ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n },\r\n {\r\n \"applicationId\": \"372140e0-b3b7-4226-8ef9-d57986796201\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n },\r\n {\r\n \"applicationId\": \"b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab\",\r\n \"roleDefinitionId\": \"6efa92ca-56b6-40af-a468-5e3d2b5232f0\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runCommands\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections/restorePoints\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"proximityPlacementGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"sshPublicKeys\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/spotEvictionRates\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/spotPriceHistory\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/artifactPublishers\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capsoperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\",\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/galleries\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/diskoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diskEncryptionSets\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"diskAccesses\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-30\",\r\n \"2020-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/logAnalytics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Australia East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Australia East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserver/skus/2012-R2-Datacenter/versions?$top=3&api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnM/JHRvcD0zJmFwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5d19d30e-eb8e-4952-8371-7915a3cfa313" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "e91047d6-10df-436c-bd78-94e832a89049_132410099202183485" + ], + "x-ms-request-id": [ + "bd93bbcd-73dc-4c12-8117-43c7fb9dadb4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "1568211a-c634-4e63-8082-e3d664858649" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20200924T185846Z:1568211a-c634-4e63-8082-e3d664858649" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 18:58:46 GMT" + ], + "Content-Length": [ + "915" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20180315\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/4.127.20180315\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20180510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/4.127.20180510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20180815\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/4.127.20180815\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserver/skus/2012-R2-Datacenter/versions?$orderby=name%20desc&api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnM/JG9yZGVyYnk9bmFtZSUyMGRlc2MmYXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aa43a3b9-7851-43c1-a7d8-61cac4f0ab97" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "e91047d6-10df-436c-bd78-94e832a89049_132410099202183485" + ], + "x-ms-request-id": [ + "21d97bc0-99ad-4bd0-940a-b294db121dc2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "d9effebc-9f61-4fe8-aa63-311640094dea" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20200924T185847Z:d9effebc-9f61-4fe8-aa63-311640094dea" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 18:58:47 GMT" + ], + "Content-Length": [ + "8117" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"9600.19817.2009040500\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/9600.19817.2009040500\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"9600.19785.2008172353\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/9600.19785.2008172353\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"9600.19785.2008100926\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/9600.19785.2008100926\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"9600.19756.2007111612\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/9600.19756.2007111612\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"9600.19728.2006050139\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/9600.19728.2006050139\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"9600.19701.2005081850\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/9600.19701.2005081850\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"9600.19676.2004101829\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/9600.19676.2004101829\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"9600.19652.2003081959\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/9600.19652.2003081959\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"9600.19629.2002070917\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/9600.19629.2002070917\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"9600.19599.2001292016\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/9600.19599.2001292016\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"9600.19599.2001101806\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/9600.19599.2001101806\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"9600.19573.1912060024\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/9600.19573.1912060024\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"9600.19542.1911120154\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/9600.19542.1911120154\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"9600.19505.1910081803\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/9600.19505.1910081803\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"9600.19463.1909091746\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/9600.19463.1909091746\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20190416\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/4.127.20190416\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20190318\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/4.127.20190318\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20190218\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/4.127.20190218\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20190204\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/4.127.20190204\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20190104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/4.127.20190104\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20181125\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/4.127.20181125\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20181010\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/4.127.20181010\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20180912\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/4.127.20180912\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20180815\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/4.127.20180815\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20180510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/4.127.20180510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20180315\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/4.127.20180315\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserver/skus/2012-R2-Datacenter/versions?$orderby=name%20asc&api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnM/JG9yZGVyYnk9bmFtZSUyMGFzYyZhcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e8e9958d-84bd-4047-8fc8-15d2a838ad0b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "e91047d6-10df-436c-bd78-94e832a89049_132410099202183485" + ], + "x-ms-request-id": [ + "848a17f4-327d-490f-adf1-2beceaa47024" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "c1a2ef8d-8d40-4eb7-8c4e-1b0a0ecd9bee" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20200924T185847Z:c1a2ef8d-8d40-4eb7-8c4e-1b0a0ecd9bee" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 18:58:47 GMT" + ], + "Content-Length": [ + "8117" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20180315\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/4.127.20180315\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20180510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/4.127.20180510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20180815\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/4.127.20180815\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20180912\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/4.127.20180912\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20181010\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/4.127.20181010\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20181125\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/4.127.20181125\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20190104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/4.127.20190104\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20190204\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/4.127.20190204\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20190218\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/4.127.20190218\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20190318\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/4.127.20190318\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20190416\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/4.127.20190416\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"9600.19463.1909091746\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/9600.19463.1909091746\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"9600.19505.1910081803\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/9600.19505.1910081803\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"9600.19542.1911120154\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/9600.19542.1911120154\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"9600.19573.1912060024\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/9600.19573.1912060024\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"9600.19599.2001101806\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/9600.19599.2001101806\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"9600.19599.2001292016\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/9600.19599.2001292016\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"9600.19629.2002070917\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/9600.19629.2002070917\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"9600.19652.2003081959\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/9600.19652.2003081959\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"9600.19676.2004101829\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/9600.19676.2004101829\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"9600.19701.2005081850\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/9600.19701.2005081850\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"9600.19728.2006050139\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/9600.19728.2006050139\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"9600.19756.2007111612\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/9600.19756.2007111612\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"9600.19785.2008100926\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/9600.19785.2008100926\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"9600.19785.2008172353\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/9600.19785.2008172353\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"9600.19817.2009040500\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/9600.19817.2009040500\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/windowsserver/skus/2012-R2-Datacenter/versions?$expand=properties%2FosDiskImage&api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dpbmRvd3NzZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnM/JGV4cGFuZD1wcm9wZXJ0aWVzJTJGb3NEaXNrSW1hZ2UmYXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9e5ba40d-a365-4c91-ae87-2915b74bcb2e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "e91047d6-10df-436c-bd78-94e832a89049_132410099202183485" + ], + "x-ms-request-id": [ + "4bda65e8-0b9b-4181-be19-a89fec57bc1c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "027e1a54-acc0-4740-b072-2770ace4ff62" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20200924T185848Z:027e1a54-acc0-4740-b072-2770ace4ff62" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 18:58:47 GMT" + ], + "Content-Length": [ + "15683" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 128,\r\n \"sizeInBytes\": 136367309312,\r\n \"hostCaching\": null\r\n },\r\n \"hyperVGeneration\": \"V1\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"replicaCount\": null\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20180315\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/4.127.20180315\"\r\n },\r\n {\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 128,\r\n \"sizeInBytes\": 136367309312,\r\n \"hostCaching\": null\r\n },\r\n \"hyperVGeneration\": \"V1\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"replicaCount\": null\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20180510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/4.127.20180510\"\r\n },\r\n {\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 128,\r\n \"sizeInBytes\": 136367309312,\r\n \"hostCaching\": null\r\n },\r\n \"hyperVGeneration\": \"V1\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"replicaCount\": null\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20180815\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/4.127.20180815\"\r\n },\r\n {\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 128,\r\n \"sizeInBytes\": 136367309312,\r\n \"hostCaching\": null\r\n },\r\n \"hyperVGeneration\": \"V1\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"replicaCount\": null\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20180912\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/4.127.20180912\"\r\n },\r\n {\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 128,\r\n \"sizeInBytes\": 136367309312,\r\n \"hostCaching\": null\r\n },\r\n \"hyperVGeneration\": \"V1\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"replicaCount\": null\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20181010\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/4.127.20181010\"\r\n },\r\n {\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 128,\r\n \"sizeInBytes\": 136367309312,\r\n \"hostCaching\": null\r\n },\r\n \"hyperVGeneration\": \"V1\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"replicaCount\": null\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20181125\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/4.127.20181125\"\r\n },\r\n {\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 128,\r\n \"sizeInBytes\": 136367309312,\r\n \"hostCaching\": null\r\n },\r\n \"hyperVGeneration\": \"V1\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"replicaCount\": null\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20190104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/4.127.20190104\"\r\n },\r\n {\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 128,\r\n \"sizeInBytes\": 136367309312,\r\n \"hostCaching\": null\r\n },\r\n \"hyperVGeneration\": \"V1\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"replicaCount\": null\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20190204\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/4.127.20190204\"\r\n },\r\n {\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 128,\r\n \"sizeInBytes\": 136367309312,\r\n \"hostCaching\": null\r\n },\r\n \"hyperVGeneration\": \"V1\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"replicaCount\": null\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20190218\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/4.127.20190218\"\r\n },\r\n {\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 128,\r\n \"sizeInBytes\": 136367309312,\r\n \"hostCaching\": null\r\n },\r\n \"hyperVGeneration\": \"V1\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"replicaCount\": null\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20190318\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/4.127.20190318\"\r\n },\r\n {\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 128,\r\n \"sizeInBytes\": 136367309312,\r\n \"hostCaching\": null\r\n },\r\n \"hyperVGeneration\": \"V1\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"replicaCount\": null\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"4.127.20190416\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/4.127.20190416\"\r\n },\r\n {\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 128,\r\n \"sizeInBytes\": 136367309312,\r\n \"hostCaching\": null\r\n },\r\n \"hyperVGeneration\": \"V1\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"replicaCount\": null\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"9600.19463.1909091746\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/9600.19463.1909091746\"\r\n },\r\n {\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 128,\r\n \"sizeInBytes\": 136367309312,\r\n \"hostCaching\": null\r\n },\r\n \"hyperVGeneration\": \"V1\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"replicaCount\": null\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"9600.19505.1910081803\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/9600.19505.1910081803\"\r\n },\r\n {\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 128,\r\n \"sizeInBytes\": 136367309312,\r\n \"hostCaching\": null\r\n },\r\n \"hyperVGeneration\": \"V1\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"replicaCount\": null\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"9600.19542.1911120154\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/9600.19542.1911120154\"\r\n },\r\n {\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 128,\r\n \"sizeInBytes\": 136367309312,\r\n \"hostCaching\": null\r\n },\r\n \"hyperVGeneration\": \"V1\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"replicaCount\": null\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"9600.19573.1912060024\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/9600.19573.1912060024\"\r\n },\r\n {\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 128,\r\n \"sizeInBytes\": 136367309312,\r\n \"hostCaching\": null\r\n },\r\n \"hyperVGeneration\": \"V1\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"replicaCount\": null\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"9600.19599.2001101806\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/9600.19599.2001101806\"\r\n },\r\n {\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 128,\r\n \"sizeInBytes\": 136367309312,\r\n \"hostCaching\": null\r\n },\r\n \"hyperVGeneration\": \"V1\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"replicaCount\": null\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"9600.19599.2001292016\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/9600.19599.2001292016\"\r\n },\r\n {\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 128,\r\n \"sizeInBytes\": 136367309312,\r\n \"hostCaching\": null\r\n },\r\n \"hyperVGeneration\": \"V1\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"replicaCount\": null\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"9600.19629.2002070917\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/9600.19629.2002070917\"\r\n },\r\n {\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 128,\r\n \"sizeInBytes\": 136367309312,\r\n \"hostCaching\": null\r\n },\r\n \"hyperVGeneration\": \"V1\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"replicaCount\": null\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"9600.19652.2003081959\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/9600.19652.2003081959\"\r\n },\r\n {\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 128,\r\n \"sizeInBytes\": 136367309312,\r\n \"hostCaching\": null\r\n },\r\n \"hyperVGeneration\": \"V1\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"replicaCount\": null\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"9600.19676.2004101829\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/9600.19676.2004101829\"\r\n },\r\n {\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 128,\r\n \"sizeInBytes\": 136367309312,\r\n \"hostCaching\": null\r\n },\r\n \"hyperVGeneration\": \"V1\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"replicaCount\": null\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"9600.19701.2005081850\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/9600.19701.2005081850\"\r\n },\r\n {\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 128,\r\n \"sizeInBytes\": 136367309312,\r\n \"hostCaching\": null\r\n },\r\n \"hyperVGeneration\": \"V1\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"replicaCount\": null\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"9600.19728.2006050139\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/9600.19728.2006050139\"\r\n },\r\n {\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 128,\r\n \"sizeInBytes\": 136367309312,\r\n \"hostCaching\": null\r\n },\r\n \"hyperVGeneration\": \"V1\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"replicaCount\": null\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"9600.19756.2007111612\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/9600.19756.2007111612\"\r\n },\r\n {\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 128,\r\n \"sizeInBytes\": 136367309312,\r\n \"hostCaching\": null\r\n },\r\n \"hyperVGeneration\": \"V1\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"replicaCount\": null\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"9600.19785.2008100926\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/9600.19785.2008100926\"\r\n },\r\n {\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 128,\r\n \"sizeInBytes\": 136367309312,\r\n \"hostCaching\": null\r\n },\r\n \"hyperVGeneration\": \"V1\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"replicaCount\": null\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"9600.19785.2008172353\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/9600.19785.2008172353\"\r\n },\r\n {\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 128,\r\n \"sizeInBytes\": 136367309312,\r\n \"hostCaching\": null\r\n },\r\n \"hyperVGeneration\": \"V1\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"replicaCount\": null\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"9600.19817.2009040500\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver/Skus/2012-R2-Datacenter/Versions/9600.19817.2009040500\"\r\n }\r\n]", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "e37510d7-33b6-4676-886f-ee75bcc01871" + } +} \ No newline at end of file diff --git a/src/Compute/Compute/ChangeLog.md b/src/Compute/Compute/ChangeLog.md index 48fd70d7ccac..c2f4a0946fba 100644 --- a/src/Compute/Compute/ChangeLog.md +++ b/src/Compute/Compute/ChangeLog.md @@ -20,6 +20,8 @@ --> ## Upcoming Release +* Fixed issue in `Update-ASRRecoveryPlan` by populating FailoverTypes +* Added the `-Top` and `-OrderBy` optional parameters to the `Get-AzVmImage` cmdlet. ## Version 4.4.0 * Added the `-EncryptionType` optional parameter to `New-AzVmDiskEncryptionSetConfig` diff --git a/src/Compute/Compute/Compute.csproj b/src/Compute/Compute/Compute.csproj index b9bc4bb9ea15..e307c900f568 100644 --- a/src/Compute/Compute/Compute.csproj +++ b/src/Compute/Compute/Compute.csproj @@ -1,4 +1,4 @@ - + Compute diff --git a/src/Compute/Compute/Images/GetAzureVMImageCommand.cs b/src/Compute/Compute/Images/GetAzureVMImageCommand.cs index cccd956ae1b7..17f883f48a51 100644 --- a/src/Compute/Compute/Images/GetAzureVMImageCommand.cs +++ b/src/Compute/Compute/Images/GetAzureVMImageCommand.cs @@ -77,6 +77,18 @@ public class GetAzureVMImageCommand : VirtualMachineImageBaseCmdlet [SupportsWildcards] public string Version { get; set; } + [Parameter(ParameterSetName = ListVMImageParamSetName, + Mandatory = false, + HelpMessage = "Specifies the maximum number of virtual machine images returned.", + ValueFromPipelineByPropertyName = true)] + public int? Top { get; set; } + + [Parameter(ParameterSetName = ListVMImageParamSetName, + Mandatory = false, + HelpMessage = "Specifies the order of the results returned. Formatted as an OData query.", + ValueFromPipelineByPropertyName = true)] + public string OrderBy { get; set; } + public override void ExecuteCmdlet() { base.ExecuteCmdlet(); @@ -89,7 +101,10 @@ public override void ExecuteCmdlet() this.Location.Canonicalize(), this.PublisherName, this.Offer, - this.Skus).GetAwaiter().GetResult(); + this.Skus, + top: this.Top, + orderby: this.OrderBy + ).GetAwaiter().GetResult(); var images = from r in result.Body select new PSVirtualMachineImage diff --git a/src/Compute/Compute/help/Get-AzVMImage.md b/src/Compute/Compute/help/Get-AzVMImage.md index 2b7a90f15b28..6512ec33aaea 100644 --- a/src/Compute/Compute/help/Get-AzVMImage.md +++ b/src/Compute/Compute/help/Get-AzVMImage.md @@ -15,8 +15,8 @@ Gets all the versions of a VMImage. ### ListVMImage ``` -Get-AzVMImage -Location -PublisherName -Offer -Skus - [-DefaultProfile ] [] +Get-AzVMImage -Location -PublisherName -Offer -Skus [-Top ] + [-OrderBy ] [-DefaultProfile ] [] ``` ### GetVMImageDetail @@ -137,6 +137,21 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -OrderBy +Specifies the order of the results returned. Formatted as an OData query. + +```yaml +Type: System.String +Parameter Sets: ListVMImage +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + ### -PublisherName Specifies the publisher of a VMImage. To obtain an image publisher, use the Get-AzVMImagePublisher cmdlet. @@ -169,6 +184,21 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -Top +Specifies the maximum number of virtual machine images returned. + +```yaml +Type: System.Nullable`1[System.Int32] +Parameter Sets: ListVMImage +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + ### -Version Specifies the version of the VMImage. @@ -181,7 +211,7 @@ Required: True Position: Named Default value: None Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: True +Accept wildcard characters: False ``` ### CommonParameters diff --git a/src/ConnectedMachine/Az.ConnectedMachine.psd1 b/src/ConnectedMachine/Az.ConnectedMachine.psd1 index b993168b94b9..76ffec766f16 100644 --- a/src/ConnectedMachine/Az.ConnectedMachine.psd1 +++ b/src/ConnectedMachine/Az.ConnectedMachine.psd1 @@ -12,7 +12,7 @@ RootModule = './Az.ConnectedMachine.psm1' # Version number of this module. -ModuleVersion = '0.1.0' +ModuleVersion = '0.2.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' diff --git a/src/ConnectedMachine/Changelog.md b/src/ConnectedMachine/Changelog.md index a1303b331401..809568d66709 100644 --- a/src/ConnectedMachine/Changelog.md +++ b/src/ConnectedMachine/Changelog.md @@ -19,5 +19,8 @@ --> ## Upcoming Release +## Version 0.2.0 +* Bug fix + ## Version 0.1.0 * First preview release for module Az.ConnectedMachine diff --git a/src/DataFactory/DataFactories/Properties/Resources.resx b/src/DataFactory/DataFactories/Properties/Resources.resx index 6038add2bac1..e4dc826d6b38 100644 --- a/src/DataFactory/DataFactories/Properties/Resources.resx +++ b/src/DataFactory/DataFactories/Properties/Resources.resx @@ -137,7 +137,7 @@ A data factory with the name {0} in the resource group {1} exists. -Continuing execution may overwrite the exisiting one. +Continuing execution may overwrite the existing one. Are you sure you want to continue? @@ -176,7 +176,7 @@ Timestamp (Utc):{4} A hub with the name {0} in the data factory {1} exists. -Continuing execution may overwrite the exisiting one. +Continuing execution may overwrite the existing one. Are you sure you want to continue? @@ -193,7 +193,7 @@ Are you sure you want to continue? A linked service with the name {0} in the data factory {1} exists. -Continuing execution may overwrite the exisiting one. +Continuing execution may overwrite the existing one. Are you sure you want to continue? @@ -213,7 +213,7 @@ Are you sure you want to continue? A pipeline with the name {0} in the data factory {1} exists. -Continuing execution may overwrite the exisiting one. +Continuing execution may overwrite the existing one. Are you sure you want to continue? @@ -233,7 +233,7 @@ Are you sure you want to continue? A dataset with the name {0} in the data factory {1} already exists. -Continuing execution will overwrite the exisiting one. +Continuing execution will overwrite the existing one. Are you sure you want to continue? @@ -261,4 +261,4 @@ For data factory naming restrictions, please see http://msdn.microsoft.com/en-us EndDateTime is not specified and is set to 48 hours from StartDateTime (by default). Please use -EndDateTime parameter in Set-AzDataFactorySliceStatus command if you want to specify EndDateTime. - \ No newline at end of file + diff --git a/src/DataFactory/DataFactoryV2/Changelog.md b/src/DataFactory/DataFactoryV2/Changelog.md index 75cf12a7328f..0f6113fc83d4 100644 --- a/src/DataFactory/DataFactoryV2/Changelog.md +++ b/src/DataFactory/DataFactoryV2/Changelog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* Fixed typo in output messages ## Version 1.10.1 * Updated ADF .Net SDK version to 4.11.0 diff --git a/src/DataFactory/DataFactoryV2/Properties/Resources.resx b/src/DataFactory/DataFactoryV2/Properties/Resources.resx index 175dfdde0ce3..f7649d613fe4 100644 --- a/src/DataFactory/DataFactoryV2/Properties/Resources.resx +++ b/src/DataFactory/DataFactoryV2/Properties/Resources.resx @@ -128,7 +128,7 @@ A data factory with the name {0} in the resource group {1} exists. -Continuing execution may overwrite the exisiting one. +Continuing execution may overwrite the existing one. Are you sure you want to continue? @@ -167,7 +167,7 @@ Timestamp (Utc):{4} A hub with the name {0} in the data factory {1} exists. -Continuing execution may overwrite the exisiting one. +Continuing execution may overwrite the existing one. Are you sure you want to continue? @@ -184,7 +184,7 @@ Are you sure you want to continue? A linked service with the name {0} in the data factory {1} exists. -Continuing execution may overwrite the exisiting one. +Continuing execution may overwrite the existing one. Are you sure you want to continue? @@ -204,7 +204,7 @@ Are you sure you want to continue? A pipeline with the name {0} in the data factory {1} exists. -Continuing execution may overwrite the exisiting one. +Continuing execution may overwrite the existing one. Are you sure you want to continue? @@ -224,7 +224,7 @@ Are you sure you want to continue? A dataset with the name {0} in the data factory {1} already exists. -Continuing execution will overwrite the exisiting one. +Continuing execution will overwrite the existing one. Are you sure you want to continue? @@ -241,7 +241,7 @@ Are you sure you want to continue? A data flow with the name {0} in the data factory {1} already exists. -Continuing execution will overwrite the exisiting one. +Continuing execution will overwrite the existing one. Are you sure you want to continue? @@ -340,7 +340,7 @@ Are you sure you want to continue? A trigger with the name {0} in the data factory {1} exists. -Continuing execution may overwrite the exisiting one. +Continuing execution may overwrite the existing one. Are you sure you want to continue? @@ -415,4 +415,4 @@ Are you sure you want to continue? Please provide two static public IP addresses for your Azure-SSIS Integration Runtime. - \ No newline at end of file + diff --git a/src/Databricks/Az.Databricks.psd1 b/src/Databricks/Az.Databricks.psd1 index ff809541ba82..8a53ae9d16da 100644 --- a/src/Databricks/Az.Databricks.psd1 +++ b/src/Databricks/Az.Databricks.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 7/30/2020 +# Generated on: 9/23/2020 # @{ @@ -45,7 +45,7 @@ PowerShellVersion = '5.1' DotNetFrameworkVersion = '4.7.2' # Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only. -# CLRVersion = '' +# ClrVersion = '' # Processor architecture (None, X86, Amd64) required by this module # ProcessorArchitecture = '' @@ -69,8 +69,10 @@ FormatsToProcess = './Az.Databricks.format.ps1xml' # NestedModules = @() # 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 = 'Get-AzDatabricksWorkspace', 'New-AzDatabricksWorkspace', - 'Remove-AzDatabricksWorkspace', 'Update-AzDatabricksWorkspace' +FunctionsToExport = 'Get-AzDatabricksVNetPeering', 'Get-AzDatabricksWorkspace', + 'New-AzDatabricksVNetPeering', 'New-AzDatabricksWorkspace', + 'Remove-AzDatabricksVNetPeering', 'Remove-AzDatabricksWorkspace', + 'Update-AzDatabricksVNetPeering', 'Update-AzDatabricksWorkspace' # 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 = @() @@ -108,7 +110,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Added support for DBFS Double Encryption Support' + # ReleaseNotes = '' # Prerelease string of this module # Prerelease = '' diff --git a/src/Databricks/Az.Databricks.psm1 b/src/Databricks/Az.Databricks.psm1 index dfe33de01d04..3dc1f04f3d72 100644 --- a/src/Databricks/Az.Databricks.psm1 +++ b/src/Databricks/Az.Databricks.psm1 @@ -24,17 +24,17 @@ } } if(-not $accountsModule) { - $hasAdequateVersion = (Get-Module -Name $accountsName -ListAvailable | Where-Object { $_.Version -ge [System.Version]'1.8.1' } | Measure-Object).Count -gt 0 + $hasAdequateVersion = (Get-Module -Name $accountsName -ListAvailable | Where-Object { $_.Version -ge [System.Version]'1.7.4' } | Measure-Object).Count -gt 0 if($hasAdequateVersion) { - $accountsModule = Import-Module -Name $accountsName -MinimumVersion 1.8.1 -Scope Global -PassThru + $accountsModule = Import-Module -Name $accountsName -MinimumVersion 1.7.4 -Scope Global -PassThru } } } if(-not $accountsModule) { - Write-Error "`nThis module requires $accountsName version 1.8.1 or greater. For installation instructions, please see: https://docs.microsoft.com/en-us/powershell/azure/install-az-ps" -ErrorAction Stop - } elseif (($accountsModule.Version -lt [System.Version]'1.8.1') -and (-not $localAccounts)) { - Write-Error "`nThis module requires $accountsName version 1.8.1 or greater. An earlier version of Az.Accounts is imported in the current PowerShell session. If you are running test, please try to remove '.PSSharedModules' in your home directory. Otherwise please open a new PowerShell session and import this module again.`nAdditionally, this error could indicate that multiple incompatible versions of Azure PowerShell modules are installed on your system. For troubleshooting information, please see: https://aka.ms/azps-version-error" -ErrorAction Stop + Write-Error "`nThis module requires $accountsName version 1.7.4 or greater. For installation instructions, please see: https://docs.microsoft.com/en-us/powershell/azure/install-az-ps" -ErrorAction Stop + } elseif (($accountsModule.Version -lt [System.Version]'1.7.4') -and (-not $localAccounts)) { + Write-Error "`nThis module requires $accountsName version 1.7.4 or greater. An earlier version of Az.Accounts is imported in the current PowerShell session. If you are running test, please try to remove '.PSSharedModules' in your home directory. Otherwise please open a new PowerShell session and import this module again.`nAdditionally, this error could indicate that multiple incompatible versions of Azure PowerShell modules are installed on your system. For troubleshooting information, please see: https://aka.ms/azps-version-error" -ErrorAction Stop } Write-Information "Loaded Module '$($accountsModule.Name)'" diff --git a/src/Databricks/ChangeLog.md b/src/Databricks/ChangeLog.md index 8065bef64d4a..8be9d205a459 100644 --- a/src/Databricks/ChangeLog.md +++ b/src/Databricks/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* Added support for vnet peering ## Version 0.2.0 * Added support for DBFS Double Encryption Support diff --git a/src/Databricks/check-dependencies.ps1 b/src/Databricks/check-dependencies.ps1 index 513c52ca2fb5..23ee92268fde 100644 --- a/src/Databricks/check-dependencies.ps1 +++ b/src/Databricks/check-dependencies.ps1 @@ -46,7 +46,7 @@ if(Test-Path -Path $localModulesPath) { $env:PSModulePath = "$localModulesPath$([IO.Path]::PathSeparator)$env:PSModulePath" } -DownloadModule -predicate ($all -or $Accounts) -path $localModulesPath -moduleName 'Az.Accounts' -versionMinimum '1.8.1' +DownloadModule -predicate ($all -or $Accounts) -path $localModulesPath -moduleName 'Az.Accounts' -versionMinimum '1.7.4' DownloadModule -predicate ($all -or $Pester) -path $localModulesPath -moduleName 'Pester' -requiredVersion '4.10.1' $tools = Join-Path $PSScriptRoot 'tools' diff --git a/src/Databricks/custom/Update-AzDatabricksVNetPeering.ps1 b/src/Databricks/custom/Update-AzDatabricksVNetPeering.ps1 new file mode 100644 index 000000000000..51162db4b8d3 --- /dev/null +++ b/src/Databricks/custom/Update-AzDatabricksVNetPeering.ps1 @@ -0,0 +1,207 @@ + +# ---------------------------------------------------------------------------------- +# +# 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 +Update vNet Peering for workspace. +.Description +Update vNet Peering for workspace. +.Example +PS C:\> {{ Add code here }} + +{{ Add output here }} +.Example +PS C:\> {{ Add code here }} + +{{ Add output here }} + +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeering +.Link +https://docs.microsoft.com/en-us/powershell/module/az.databricks/update-azdatabricksvnetpeering +#> +function Update-AzDatabricksVNetPeering { + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeering])] + [CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] + param( + [Parameter(ParameterSetName = 'UpdateExpanded', Mandatory, HelpMessage = "The name of the VNetPeering.")] + [Alias('PeeringName')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] + [System.String] + # The name of the workspace vNet peering. + ${Name}, + + [Parameter(ParameterSetName = 'UpdateExpanded', Mandatory, HelpMessage = "The name of the resource group. The name is case insensitive.")] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] + [System.String] + # The name of the resource group. + # The name is case insensitive. + ${ResourceGroupName}, + + [Parameter(ParameterSetName = 'UpdateExpanded', Mandatory, HelpMessage = "The name of the workspace.")] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] + [System.String] + # The name of the workspace. + ${WorkspaceName}, + + [Parameter(ParameterSetName = 'UpdateExpanded', HelpMessage = "The ID of the target subscription.")] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # The ID of the target subscription. + ${SubscriptionId}, + + [Parameter(ParameterSetName = 'UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline, HelpMessage = "Identity parameter. To construct, see NOTES section for INPUTOBJECT properties and create a hash table.")] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Body')] + # [System.Management.Automation.SwitchParameter] + [System.Boolean] + # Whether the forwarded traffic from the VMs in the local virtual network will be allowed/disallowed in remote virtual network. + ${AllowForwardedTraffic}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Body')] + [System.Boolean] + # [System.Management.Automation.SwitchParameter] + # If gateway links can be used in remote virtual networking to link to this virtual network. + ${AllowGatewayTransit}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Body')] + [System.Boolean] + # [System.Management.Automation.SwitchParameter] + # Whether the VMs in the local virtual network space would be able to access the VMs in remote virtual network space. + ${AllowVirtualNetworkAccess}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Body')] + [System.Boolean] + # [System.Management.Automation.SwitchParameter] + # If remote gateways can be used on this virtual network. + # If the flag is set to true, and allowGatewayTransit on remote peering is also true, virtual network will use gateways of remote virtual network for transit. + # Only one peering can have this flag set to true. + # This flag cannot be set if virtual network already has a gateway. + ${UseRemoteGateway}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} + ) + + process { + try { + # 1.Get + $hasAllowForwardedTraffic = $PSBoundParameters.Remove('AllowForwardedTraffic') + $hasAllowGatewayTransit = $PSBoundParameters.Remove('AllowGatewayTransit') + $hasAllowVirtualNetworkAccess = $PSBoundParameters.Remove('AllowVirtualNetworkAccess') + $hasUseRemoteGateway = $PSBoundParameters.Remove('UseRemoteGateway') + $hasAsJob = $PSBoundParameters.Remove('AsJob') + $null = $PSBoundParameters.Remove('WhatIf') + $null = $PSBoundParameters.Remove('Confirm') + + $vnetPeering = Get-AzDatabricksVNetPeering @PSBoundParameters + # 2. PUT + $null = $PSBoundParameters.Remove('InputObject') + $null = $PSBoundParameters.Remove('ResourceGroupName') + $null = $PSBoundParameters.Remove('Name') + $null = $PSBoundParameters.Remove('WorkspaceName') + $null = $PSBoundParameters.Remove('SubscriptionId') + + if ($hasAllowForwardedTraffic) { + $vnetPeering.AllowForwardedTraffic = $AllowForwardedTraffic + } + if ($hasAllowGatewayTransit) { + $vnetPeering.AllowGatewayTransit = $AllowGatewayTransit + } + if ($hasAllowVirtualNetworkAccess) { + $vnetPeering.AllowVirtualNetworkAccess = $AllowVirtualNetworkAccess + } + if ($hasUseRemoteGateway) { + $vnetPeering.UseRemoteGateway = $UseRemoteGateway + } + if ($hasAsJob) { + $PSBoundParameters.Add('AsJob', $true) + } + + if ($PSCmdlet.ShouldProcess("Databricks vnet peering $($vnetPeering.Name)", "Update")) { + Az.Databricks.private\New-AzDatabricksVNetPeering_CreateViaIdentity -InputObject $vnetPeering -VirtualNetworkPeeringParameter $vnetPeering @PSBoundParameters + } + } catch { + throw + } + } +} + \ No newline at end of file diff --git a/src/Databricks/examples/Get-AzDatabricksVNetPeering.md b/src/Databricks/examples/Get-AzDatabricksVNetPeering.md new file mode 100644 index 000000000000..d3c43f110d4d --- /dev/null +++ b/src/Databricks/examples/Get-AzDatabricksVNetPeering.md @@ -0,0 +1,34 @@ +### Example 1: List all vnet peering under a databricks +```powershell +PS C:\> Get-AzDatabricksVNetPeering -WorkspaceName databricks-test01 -ResourceGroupName lucas-manual-test + +Name Type +---- ---- +vnetpeering-t01 +vnetpeering-t02 +``` + +This command lists all vnet peering under a databricks. + +### Example 2: Get a vnet peering +```powershell +PS C:\> Get-AzDatabricksVNetPeering -ResourceGroupName lucas-manual-test -WorkspaceName databricks-test01 -PeeringName MyPeering-test01 + +Name Type +---- ---- +MyPeering-test01 +``` + +This command gets a vnet peering. + +### Example 3: Get a vnet peering by object +```powershell +PS C:\> New-AzDatabricksVNetPeering -Name vnetpeering-t02 -WorkspaceName databricks-test01 -ResourceGroupName lucas-manual-test -RemoteVirtualNetworkId '/subscriptions/xxxxx-xxxx-xxx-xxxxx/resourceGroups/azure-manual-test/providers/Microsoft.Network/virtualNetworks/vnet-test02' | Get-AzDatabricksVNetPeering + +Name Type +---- ---- +vnetpeering-t02 +``` + +This command gets a vnet peering by object. + diff --git a/src/Databricks/examples/New-AzDatabricksVNetPeering.md b/src/Databricks/examples/New-AzDatabricksVNetPeering.md new file mode 100644 index 000000000000..3c3c53cf96ff --- /dev/null +++ b/src/Databricks/examples/New-AzDatabricksVNetPeering.md @@ -0,0 +1,10 @@ +### Example 1: Create a vnet peering for databricks +```powershell +PS C:\> New-AzDatabricksVNetPeering -Name vnetpeering-t01 -WorkspaceName databricks-test01 -ResourceGroupName lucas-manual-test -RemoteVirtualNetworkId '/subscriptions/xxxxxx-xxxx-xxx-xxx/resourceGroups/azure-manual-test/providers/Microsoft.Network/virtualNetworks/vnet-test01' + +Name Type +---- ---- +vnetpeering-t01 +``` + +This command creates a vnet peering for databricks. diff --git a/src/Databricks/examples/Remove-AzDatabricksVNetPeering.md b/src/Databricks/examples/Remove-AzDatabricksVNetPeering.md new file mode 100644 index 000000000000..4c7c73842793 --- /dev/null +++ b/src/Databricks/examples/Remove-AzDatabricksVNetPeering.md @@ -0,0 +1,16 @@ +### Example 1: Remove a vnet peering of databricks by name +```powershell +PS C:\> Remove-AzDatabricksVNetPeering -WorkspaceName databricks-test01 -ResourceGroupName lucas-manual-test -Name vnetpeering-t01 + +``` + +This command removes a vnet peering of databricks by name + +### Example 2: Remove a vnet peering of databricks by object +```powershell +PS C:\> Get-AzDatabricksVNetPeering -ResourceGroupName lucas-manual-test -WorkspaceName databricks-test01 -PeeringName MyPeering-test01 | Remove-AzDatabricksVNetPeering + +``` + +This command removes a vnet peering of databricks by object + diff --git a/src/Databricks/examples/Update-AzDatabricksVNetPeering.md b/src/Databricks/examples/Update-AzDatabricksVNetPeering.md new file mode 100644 index 000000000000..aa33cfccc40d --- /dev/null +++ b/src/Databricks/examples/Update-AzDatabricksVNetPeering.md @@ -0,0 +1,24 @@ +### Example 1: Update AllowForwardedTraffic of vnet peering +```powershell +PS C:\> Update-AzDatabricksVNetPeering -WorkspaceName databricks-test01 -ResourceGroupName lucas-manual-test -Name vnetpeering-t01 -AllowForwardedTraffic $True + +Name Type +---- ---- +vnetpeering-t01 +``` + +This command updates AllowForwardedTraffic of vnet peering. + +### Example 2: Update AllowForwardedTraffic of vnet peering by object +```powershell +PS C:\> Get-AzDatabricksVNetPeering -WorkspaceName databricks-test01 -ResourceGroupName lucas-manual-test -Name vnetpeering-t01 | Update-AzDatabricksVNetPeering -AllowGatewayTransit $true + +Name Type +---- ---- +vnetpeering-t01 + +``` + +This command updates AllowForwardedTraffic of vnet peering by object. + + diff --git a/src/Databricks/exports/Get-AzDatabricksVNetPeering.ps1 b/src/Databricks/exports/Get-AzDatabricksVNetPeering.ps1 new file mode 100644 index 000000000000..950615b5457d --- /dev/null +++ b/src/Databricks/exports/Get-AzDatabricksVNetPeering.ps1 @@ -0,0 +1,193 @@ + +# ---------------------------------------------------------------------------------- +# +# 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 +Gets the workspace vNet Peering. +.Description +Gets the workspace vNet Peering. +.Example +PS C:\> Get-AzDatabricksVNetPeering -WorkspaceName databricks-test01 -ResourceGroupName lucas-manual-test + +Name Type +---- ---- +vnetpeering-t01 +vnetpeering-t02 +.Example +PS C:\> Get-AzDatabricksVNetPeering -ResourceGroupName lucas-manual-test -WorkspaceName databricks-test01 -PeeringName MyPeering-test01 + +Name Type +---- ---- +MyPeering-test01 +.Example +PS C:\> New-AzDatabricksVNetPeering -Name vnetpeering-t02 -WorkspaceName databricks-test01 -ResourceGroupName lucas-manual-test -RemoteVirtualNetworkId '/subscriptions/xxxxx-xxxx-xxx-xxxxx/resourceGroups/azure-manual-test/providers/Microsoft.Network/virtualNetworks/vnet-test02' | Get-AzDatabricksVNetPeering + +Name Type +---- ---- +vnetpeering-t02 + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeering +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [Id ]: Resource identity path + [PeeringName ]: The name of the workspace vNet peering. + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. + [SubscriptionId ]: The ID of the target subscription. + [WorkspaceName ]: The name of the workspace. +.Link +https://docs.microsoft.com/en-us/powershell/module/az.databricks/get-azdatabricksvnetpeering +#> +function Get-AzDatabricksVNetPeering { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeering])] +[CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] +param( + [Parameter(ParameterSetName='Get', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] + [System.String] + # The name of the workspace vNet peering. + ${Name}, + + [Parameter(ParameterSetName='Get', Mandatory)] + [Parameter(ParameterSetName='List', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] + [System.String] + # The name of the resource group. + # The name is case insensitive. + ${ResourceGroupName}, + + [Parameter(ParameterSetName='Get')] + [Parameter(ParameterSetName='List')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String[]] + # The ID of the target subscription. + ${SubscriptionId}, + + [Parameter(ParameterSetName='Get', Mandatory)] + [Parameter(ParameterSetName='List', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] + [System.String] + # The name of the workspace. + ${WorkspaceName}, + + [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter(ParameterSetName='Get')] + [Parameter(ParameterSetName='GetViaIdentity')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Returns true when the command succeeds + ${PassThru}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + Get = 'Az.Databricks.private\Get-AzDatabricksVNetPeering_Get'; + GetViaIdentity = 'Az.Databricks.private\Get-AzDatabricksVNetPeering_GetViaIdentity'; + List = 'Az.Databricks.private\Get-AzDatabricksVNetPeering_List'; + } + if (('Get', 'List') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} diff --git a/src/Databricks/exports/New-AzDatabricksVNetPeering.ps1 b/src/Databricks/exports/New-AzDatabricksVNetPeering.ps1 new file mode 100644 index 000000000000..e0ee53d757ee --- /dev/null +++ b/src/Databricks/exports/New-AzDatabricksVNetPeering.ps1 @@ -0,0 +1,211 @@ + +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.Synopsis +Creates vNet Peering for workspace. +.Description +Creates vNet Peering for workspace. +.Example +PS C:\> New-AzDatabricksVNetPeering -Name vnetpeering-t01 -WorkspaceName databricks-test01 -ResourceGroupName lucas-manual-test -RemoteVirtualNetworkId '/subscriptions/xxxxxx-xxxx-xxx-xxx/resourceGroups/azure-manual-test/providers/Microsoft.Network/virtualNetworks/vnet-test01' + +Name Type +---- ---- +vnetpeering-t01 + +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeering +.Link +https://docs.microsoft.com/en-us/powershell/module/az.databricks/new-azdatabricksvnetpeering +#> +function New-AzDatabricksVNetPeering { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeering])] +[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] + [System.String] + # The name of the workspace vNet peering. + ${Name}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] + [System.String] + # The name of the resource group. + # The name is case insensitive. + ${ResourceGroupName}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] + [System.String] + # The name of the workspace. + ${WorkspaceName}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # The ID of the target subscription. + ${SubscriptionId}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Body')] + [System.Management.Automation.SwitchParameter] + # Whether the forwarded traffic from the VMs in the local virtual network will be allowed/disallowed in remote virtual network. + ${AllowForwardedTraffic}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Body')] + [System.Management.Automation.SwitchParameter] + # If gateway links can be used in remote virtual networking to link to this virtual network. + ${AllowGatewayTransit}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Body')] + [System.Management.Automation.SwitchParameter] + # Whether the VMs in the local virtual network space would be able to access the VMs in remote virtual network space. + ${AllowVirtualNetworkAccess}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Body')] + [System.String[]] + # A list of address blocks reserved for this virtual network in CIDR notation. + ${DatabricksAddressSpacePrefix}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Body')] + [System.String] + # The Id of the databricks virtual network. + ${DatabricksVirtualNetworkId}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Body')] + [System.String[]] + # A list of address blocks reserved for this virtual network in CIDR notation. + ${RemoteAddressSpacePrefix}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Body')] + [System.String] + # The Id of the remote virtual network. + ${RemoteVirtualNetworkId}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Body')] + [System.Management.Automation.SwitchParameter] + # If remote gateways can be used on this virtual network. + # If the flag is set to true, and allowGatewayTransit on remote peering is also true, virtual network will use gateways of remote virtual network for transit. + # Only one peering can have this flag set to true. + # This flag cannot be set if virtual network already has a gateway. + ${UseRemoteGateway}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + CreateExpanded = 'Az.Databricks.private\New-AzDatabricksVNetPeering_CreateExpanded'; + } + if (('CreateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} diff --git a/src/Databricks/exports/ProxyCmdletDefinitions.ps1 b/src/Databricks/exports/ProxyCmdletDefinitions.ps1 index 5fe9b5e10dd1..c7856d5cb8e1 100644 --- a/src/Databricks/exports/ProxyCmdletDefinitions.ps1 +++ b/src/Databricks/exports/ProxyCmdletDefinitions.ps1 @@ -13,6 +13,199 @@ # limitations under the License. # ---------------------------------------------------------------------------------- +<# +.Synopsis +Gets the workspace vNet Peering. +.Description +Gets the workspace vNet Peering. +.Example +PS C:\> Get-AzDatabricksVNetPeering -WorkspaceName databricks-test01 -ResourceGroupName lucas-manual-test + +Name Type +---- ---- +vnetpeering-t01 +vnetpeering-t02 +.Example +PS C:\> Get-AzDatabricksVNetPeering -ResourceGroupName lucas-manual-test -WorkspaceName databricks-test01 -PeeringName MyPeering-test01 + +Name Type +---- ---- +MyPeering-test01 +.Example +PS C:\> New-AzDatabricksVNetPeering -Name vnetpeering-t02 -WorkspaceName databricks-test01 -ResourceGroupName lucas-manual-test -RemoteVirtualNetworkId '/subscriptions/xxxxx-xxxx-xxx-xxxxx/resourceGroups/azure-manual-test/providers/Microsoft.Network/virtualNetworks/vnet-test02' | Get-AzDatabricksVNetPeering + +Name Type +---- ---- +vnetpeering-t02 + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeering +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [Id ]: Resource identity path + [PeeringName ]: The name of the workspace vNet peering. + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. + [SubscriptionId ]: The ID of the target subscription. + [WorkspaceName ]: The name of the workspace. +.Link +https://docs.microsoft.com/en-us/powershell/module/az.databricks/get-azdatabricksvnetpeering +#> +function Get-AzDatabricksVNetPeering { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeering])] +[CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] +param( + [Parameter(ParameterSetName='Get', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] + [System.String] + # The name of the workspace vNet peering. + ${Name}, + + [Parameter(ParameterSetName='Get', Mandatory)] + [Parameter(ParameterSetName='List', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] + [System.String] + # The name of the resource group. + # The name is case insensitive. + ${ResourceGroupName}, + + [Parameter(ParameterSetName='Get')] + [Parameter(ParameterSetName='List')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String[]] + # The ID of the target subscription. + ${SubscriptionId}, + + [Parameter(ParameterSetName='Get', Mandatory)] + [Parameter(ParameterSetName='List', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] + [System.String] + # The name of the workspace. + ${WorkspaceName}, + + [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter(ParameterSetName='Get')] + [Parameter(ParameterSetName='GetViaIdentity')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Returns true when the command succeeds + ${PassThru}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + Get = 'Az.Databricks.private\Get-AzDatabricksVNetPeering_Get'; + GetViaIdentity = 'Az.Databricks.private\Get-AzDatabricksVNetPeering_GetViaIdentity'; + List = 'Az.Databricks.private\Get-AzDatabricksVNetPeering_List'; + } + if (('Get', 'List') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} + +# ---------------------------------------------------------------------------------- +# +# 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 Gets the workspace. @@ -21,28 +214,408 @@ Gets the workspace. .Example PS C:\> Get-AzDatabricksWorkspace -Name databricks-test -ResourceGroupName testgroup -Location Name Type --------- ---- ---- -eastus databricks-test Microsoft.Databricks/workspaces +Location Name Type +-------- ---- ---- +eastus databricks-test Microsoft.Databricks/workspaces +.Example +PS C:\> Get-AzDatabricksWorkspace + +Location Name Type +-------- ---- ---- +eastus databricks-test Microsoft.Databricks/workspaces +eastus databricks-test-with-custom-vn Microsoft.Databricks/workspaces +.Example +PS C:\> Get-AzDatabricksWorkspace -ResourceGroupName testgroup + +Location Name Type +-------- ---- ---- +eastus databricks-test Microsoft.Databricks/workspaces +eastus databricks-test-with-custom-vn Microsoft.Databricks/workspaces + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspace +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [Id ]: Resource identity path + [PeeringName ]: The name of the workspace vNet peering. + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. + [SubscriptionId ]: The ID of the target subscription. + [WorkspaceName ]: The name of the workspace. +.Link +https://docs.microsoft.com/en-us/powershell/module/az.databricks/get-azdatabricksworkspace +#> +function Get-AzDatabricksWorkspace { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspace])] +[CmdletBinding(DefaultParameterSetName='List1', PositionalBinding=$false)] +param( + [Parameter(ParameterSetName='Get', Mandatory)] + [Alias('WorkspaceName')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] + [System.String] + # The name of the workspace. + ${Name}, + + [Parameter(ParameterSetName='Get', Mandatory)] + [Parameter(ParameterSetName='List', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] + [System.String] + # The name of the resource group. + # The name is case insensitive. + ${ResourceGroupName}, + + [Parameter(ParameterSetName='Get')] + [Parameter(ParameterSetName='List')] + [Parameter(ParameterSetName='List1')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String[]] + # The ID of the target subscription. + ${SubscriptionId}, + + [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + Get = 'Az.Databricks.private\Get-AzDatabricksWorkspace_Get'; + GetViaIdentity = 'Az.Databricks.private\Get-AzDatabricksWorkspace_GetViaIdentity'; + List = 'Az.Databricks.private\Get-AzDatabricksWorkspace_List'; + List1 = 'Az.Databricks.private\Get-AzDatabricksWorkspace_List1'; + } + if (('Get', 'List', 'List1') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} + +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.Synopsis +Creates vNet Peering for workspace. +.Description +Creates vNet Peering for workspace. +.Example +PS C:\> New-AzDatabricksVNetPeering -Name vnetpeering-t01 -WorkspaceName databricks-test01 -ResourceGroupName lucas-manual-test -RemoteVirtualNetworkId '/subscriptions/xxxxxx-xxxx-xxx-xxx/resourceGroups/azure-manual-test/providers/Microsoft.Network/virtualNetworks/vnet-test01' + +Name Type +---- ---- +vnetpeering-t01 + +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeering +.Link +https://docs.microsoft.com/en-us/powershell/module/az.databricks/new-azdatabricksvnetpeering +#> +function New-AzDatabricksVNetPeering { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeering])] +[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] + [System.String] + # The name of the workspace vNet peering. + ${Name}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] + [System.String] + # The name of the resource group. + # The name is case insensitive. + ${ResourceGroupName}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] + [System.String] + # The name of the workspace. + ${WorkspaceName}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # The ID of the target subscription. + ${SubscriptionId}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Body')] + [System.Management.Automation.SwitchParameter] + # Whether the forwarded traffic from the VMs in the local virtual network will be allowed/disallowed in remote virtual network. + ${AllowForwardedTraffic}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Body')] + [System.Management.Automation.SwitchParameter] + # If gateway links can be used in remote virtual networking to link to this virtual network. + ${AllowGatewayTransit}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Body')] + [System.Management.Automation.SwitchParameter] + # Whether the VMs in the local virtual network space would be able to access the VMs in remote virtual network space. + ${AllowVirtualNetworkAccess}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Body')] + [System.String[]] + # A list of address blocks reserved for this virtual network in CIDR notation. + ${DatabricksAddressSpacePrefix}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Body')] + [System.String] + # The Id of the databricks virtual network. + ${DatabricksVirtualNetworkId}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Body')] + [System.String[]] + # A list of address blocks reserved for this virtual network in CIDR notation. + ${RemoteAddressSpacePrefix}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Body')] + [System.String] + # The Id of the remote virtual network. + ${RemoteVirtualNetworkId}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Body')] + [System.Management.Automation.SwitchParameter] + # If remote gateways can be used on this virtual network. + # If the flag is set to true, and allowGatewayTransit on remote peering is also true, virtual network will use gateways of remote virtual network for transit. + # Only one peering can have this flag set to true. + # This flag cannot be set if virtual network already has a gateway. + ${UseRemoteGateway}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + CreateExpanded = 'Az.Databricks.private\New-AzDatabricksVNetPeering_CreateExpanded'; + } + if (('CreateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} + +# ---------------------------------------------------------------------------------- +# +# 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 +Deletes the workspace vNetPeering. +.Description +Deletes the workspace vNetPeering. .Example -PS C:\> Get-AzDatabricksWorkspace +PS C:\> Remove-AzDatabricksVNetPeering -WorkspaceName databricks-test01 -ResourceGroupName lucas-manual-test -Name vnetpeering-t01 -Location Name Type --------- ---- ---- -eastus databricks-test Microsoft.Databricks/workspaces -eastus databricks-test-with-custom-vn Microsoft.Databricks/workspaces .Example -PS C:\> Get-AzDatabricksWorkspace -ResourceGroupName testgroup +PS C:\> Get-AzDatabricksVNetPeering -ResourceGroupName lucas-manual-test -WorkspaceName databricks-test01 -PeeringName MyPeering-test01 | Remove-AzDatabricksVNetPeering -Location Name Type --------- ---- ---- -eastus databricks-test Microsoft.Databricks/workspaces -eastus databricks-test-with-custom-vn Microsoft.Databricks/workspaces .Inputs Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspace +System.Boolean .Notes COMPLEX PARAMETER PROPERTIES @@ -55,37 +628,39 @@ INPUTOBJECT : Identity Parameter [SubscriptionId ]: The ID of the target subscription. [WorkspaceName ]: The name of the workspace. .Link -https://docs.microsoft.com/en-us/powershell/module/az.databricks/get-azdatabricksworkspace +https://docs.microsoft.com/en-us/powershell/module/az.databricks/remove-azdatabricksvnetpeering #> -function Get-AzDatabricksWorkspace { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspace])] -[CmdletBinding(DefaultParameterSetName='List1', PositionalBinding=$false)] +function Remove-AzDatabricksVNetPeering { +[OutputType([System.Boolean])] +[CmdletBinding(DefaultParameterSetName='Delete', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Alias('WorkspaceName')] + [Parameter(ParameterSetName='Delete', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] [System.String] - # The name of the workspace. + # The name of the workspace vNet peering. ${Name}, - [Parameter(ParameterSetName='Get', Mandatory)] - [Parameter(ParameterSetName='List', Mandatory)] + [Parameter(ParameterSetName='Delete', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] [System.String] # The name of the resource group. # The name is case insensitive. ${ResourceGroupName}, - [Parameter(ParameterSetName='Get')] - [Parameter(ParameterSetName='List')] - [Parameter(ParameterSetName='List1')] + [Parameter(ParameterSetName='Delete')] [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] - [System.String[]] + [System.String] # The ID of the target subscription. ${SubscriptionId}, - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] + [Parameter(ParameterSetName='Delete', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] + [System.String] + # The name of the workspace. + ${WorkspaceName}, + + [Parameter(ParameterSetName='DeleteViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentity] # Identity Parameter @@ -100,6 +675,12 @@ param( # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] [System.Management.Automation.SwitchParameter] @@ -120,6 +701,18 @@ param( # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Returns true when the command succeeds + ${PassThru}, + [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] [System.Uri] @@ -148,12 +741,10 @@ begin { } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ - Get = 'Az.Databricks.private\Get-AzDatabricksWorkspace_Get'; - GetViaIdentity = 'Az.Databricks.private\Get-AzDatabricksWorkspace_GetViaIdentity'; - List = 'Az.Databricks.private\Get-AzDatabricksWorkspace_List'; - List1 = 'Az.Databricks.private\Get-AzDatabricksWorkspace_List1'; + Delete = 'Az.Databricks.private\Remove-AzDatabricksVNetPeering_Delete'; + DeleteViaIdentity = 'Az.Databricks.private\Remove-AzDatabricksVNetPeering_DeleteViaIdentity'; } - if (('Get', 'List', 'List1') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + if (('Delete') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) @@ -606,6 +1197,226 @@ end { # limitations under the License. # ---------------------------------------------------------------------------------- +<# +.Synopsis +Update vNet Peering for workspace. +.Description +Update vNet Peering for workspace. +.Example +PS C:\> Update-AzDatabricksVNetPeering -WorkspaceName databricks-test01 -ResourceGroupName lucas-manual-test -Name vnetpeering-t01 -AllowForwardedTraffic $True + +Name Type +---- ---- +vnetpeering-t01 +.Example +PS C:\> Get-AzDatabricksVNetPeering -WorkspaceName databricks-test01 -ResourceGroupName lucas-manual-test -Name vnetpeering-t01 | Update-AzDatabricksVNetPeering -AllowGatewayTransit $true + +Name Type +---- ---- +vnetpeering-t01 + + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeering +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity parameter. + [Id ]: Resource identity path + [PeeringName ]: The name of the workspace vNet peering. + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. + [SubscriptionId ]: The ID of the target subscription. + [WorkspaceName ]: The name of the workspace. +.Link +https://docs.microsoft.com/en-us/powershell/module/az.databricks/update-azdatabricksvnetpeering +#> +function Update-AzDatabricksVNetPeering { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeering])] +[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Alias('PeeringName')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] + [System.String] + # The name of the VNetPeering. + ${Name}, + + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] + [System.String] + # The name of the resource group. + # The name is case insensitive. + ${ResourceGroupName}, + + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] + [System.String] + # The name of the workspace. + ${WorkspaceName}, + + [Parameter(ParameterSetName='UpdateExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # The ID of the target subscription. + ${SubscriptionId}, + + [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentity] + # Identity parameter. + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Body')] + [System.Boolean] + # [System.Management.Automation.SwitchParameter] + # Whether the forwarded traffic from the VMs in the local virtual network will be allowed/disallowed in remote virtual network. + ${AllowForwardedTraffic}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Body')] + [System.Boolean] + # [System.Management.Automation.SwitchParameter] + # If gateway links can be used in remote virtual networking to link to this virtual network. + ${AllowGatewayTransit}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Body')] + [System.Boolean] + # [System.Management.Automation.SwitchParameter] + # Whether the VMs in the local virtual network space would be able to access the VMs in remote virtual network space. + ${AllowVirtualNetworkAccess}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Body')] + [System.Boolean] + # [System.Management.Automation.SwitchParameter] + # If remote gateways can be used on this virtual network. + # If the flag is set to true, and allowGatewayTransit on remote peering is also true, virtual network will use gateways of remote virtual network for transit. + # Only one peering can have this flag set to true. + # This flag cannot be set if virtual network already has a gateway. + ${UseRemoteGateway}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + UpdateExpanded = 'Az.Databricks.custom\Update-AzDatabricksVNetPeering'; + UpdateViaIdentityExpanded = 'Az.Databricks.custom\Update-AzDatabricksVNetPeering'; + } + if (('UpdateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} + +# ---------------------------------------------------------------------------------- +# +# 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 Updates a workspace. diff --git a/src/Databricks/exports/Remove-AzDatabricksVNetPeering.ps1 b/src/Databricks/exports/Remove-AzDatabricksVNetPeering.ps1 new file mode 100644 index 000000000000..f5bf8197e281 --- /dev/null +++ b/src/Databricks/exports/Remove-AzDatabricksVNetPeering.ps1 @@ -0,0 +1,187 @@ + +# ---------------------------------------------------------------------------------- +# +# 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 +Deletes the workspace vNetPeering. +.Description +Deletes the workspace vNetPeering. +.Example +PS C:\> Remove-AzDatabricksVNetPeering -WorkspaceName databricks-test01 -ResourceGroupName lucas-manual-test -Name vnetpeering-t01 + +.Example +PS C:\> Get-AzDatabricksVNetPeering -ResourceGroupName lucas-manual-test -WorkspaceName databricks-test01 -PeeringName MyPeering-test01 | Remove-AzDatabricksVNetPeering + + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentity +.Outputs +System.Boolean +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [Id ]: Resource identity path + [PeeringName ]: The name of the workspace vNet peering. + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. + [SubscriptionId ]: The ID of the target subscription. + [WorkspaceName ]: The name of the workspace. +.Link +https://docs.microsoft.com/en-us/powershell/module/az.databricks/remove-azdatabricksvnetpeering +#> +function Remove-AzDatabricksVNetPeering { +[OutputType([System.Boolean])] +[CmdletBinding(DefaultParameterSetName='Delete', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(ParameterSetName='Delete', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] + [System.String] + # The name of the workspace vNet peering. + ${Name}, + + [Parameter(ParameterSetName='Delete', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] + [System.String] + # The name of the resource group. + # The name is case insensitive. + ${ResourceGroupName}, + + [Parameter(ParameterSetName='Delete')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # The ID of the target subscription. + ${SubscriptionId}, + + [Parameter(ParameterSetName='Delete', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] + [System.String] + # The name of the workspace. + ${WorkspaceName}, + + [Parameter(ParameterSetName='DeleteViaIdentity', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Returns true when the command succeeds + ${PassThru}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + Delete = 'Az.Databricks.private\Remove-AzDatabricksVNetPeering_Delete'; + DeleteViaIdentity = 'Az.Databricks.private\Remove-AzDatabricksVNetPeering_DeleteViaIdentity'; + } + if (('Delete') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} diff --git a/src/Databricks/exports/Update-AzDatabricksVNetPeering.ps1 b/src/Databricks/exports/Update-AzDatabricksVNetPeering.ps1 new file mode 100644 index 000000000000..23967423a9e7 --- /dev/null +++ b/src/Databricks/exports/Update-AzDatabricksVNetPeering.ps1 @@ -0,0 +1,220 @@ + +# ---------------------------------------------------------------------------------- +# +# 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 +Update vNet Peering for workspace. +.Description +Update vNet Peering for workspace. +.Example +PS C:\> Update-AzDatabricksVNetPeering -WorkspaceName databricks-test01 -ResourceGroupName lucas-manual-test -Name vnetpeering-t01 -AllowForwardedTraffic $True + +Name Type +---- ---- +vnetpeering-t01 +.Example +PS C:\> Get-AzDatabricksVNetPeering -WorkspaceName databricks-test01 -ResourceGroupName lucas-manual-test -Name vnetpeering-t01 | Update-AzDatabricksVNetPeering -AllowGatewayTransit $true + +Name Type +---- ---- +vnetpeering-t01 + + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeering +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity parameter. + [Id ]: Resource identity path + [PeeringName ]: The name of the workspace vNet peering. + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. + [SubscriptionId ]: The ID of the target subscription. + [WorkspaceName ]: The name of the workspace. +.Link +https://docs.microsoft.com/en-us/powershell/module/az.databricks/update-azdatabricksvnetpeering +#> +function Update-AzDatabricksVNetPeering { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeering])] +[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Alias('PeeringName')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] + [System.String] + # The name of the VNetPeering. + ${Name}, + + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] + [System.String] + # The name of the resource group. + # The name is case insensitive. + ${ResourceGroupName}, + + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] + [System.String] + # The name of the workspace. + ${WorkspaceName}, + + [Parameter(ParameterSetName='UpdateExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # The ID of the target subscription. + ${SubscriptionId}, + + [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentity] + # Identity parameter. + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Body')] + [System.Boolean] + # [System.Management.Automation.SwitchParameter] + # Whether the forwarded traffic from the VMs in the local virtual network will be allowed/disallowed in remote virtual network. + ${AllowForwardedTraffic}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Body')] + [System.Boolean] + # [System.Management.Automation.SwitchParameter] + # If gateway links can be used in remote virtual networking to link to this virtual network. + ${AllowGatewayTransit}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Body')] + [System.Boolean] + # [System.Management.Automation.SwitchParameter] + # Whether the VMs in the local virtual network space would be able to access the VMs in remote virtual network space. + ${AllowVirtualNetworkAccess}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Body')] + [System.Boolean] + # [System.Management.Automation.SwitchParameter] + # If remote gateways can be used on this virtual network. + # If the flag is set to true, and allowGatewayTransit on remote peering is also true, virtual network will use gateways of remote virtual network for transit. + # Only one peering can have this flag set to true. + # This flag cannot be set if virtual network already has a gateway. + ${UseRemoteGateway}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + UpdateExpanded = 'Az.Databricks.custom\Update-AzDatabricksVNetPeering'; + UpdateViaIdentityExpanded = 'Az.Databricks.custom\Update-AzDatabricksVNetPeering'; + } + if (('UpdateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} diff --git a/src/Databricks/generated/api/Databricks.cs b/src/Databricks/generated/api/Databricks.cs index 37d5880684eb..92e2bca7981f 100644 --- a/src/Databricks/generated/api/Databricks.cs +++ b/src/Databricks/generated/api/Databricks.cs @@ -9,6 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Databricks /// /// Low-level API implementation for the Databricks service. + /// ARM Databricks /// public partial class Databricks { diff --git a/src/Databricks/generated/api/Models/Api20180401/WorkspaceCustomObjectParameterValue.PowerShell.cs b/src/Databricks/generated/api/Models/Any.PowerShell.cs similarity index 73% rename from src/Databricks/generated/api/Models/Api20180401/WorkspaceCustomObjectParameterValue.PowerShell.cs rename to src/Databricks/generated/api/Models/Any.PowerShell.cs index 502d7932cf2d..447a464be135 100644 --- a/src/Databricks/generated/api/Models/Api20180401/WorkspaceCustomObjectParameterValue.PowerShell.cs +++ b/src/Databricks/generated/api/Models/Any.PowerShell.cs @@ -1,10 +1,15 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401 +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models { using Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.PowerShell; - /// The value which should be used for this field. - [System.ComponentModel.TypeConverter(typeof(WorkspaceCustomObjectParameterValueTypeConverter))] - public partial class WorkspaceCustomObjectParameterValue + /// Any object + [System.ComponentModel.TypeConverter(typeof(AnyTypeConverter))] + public partial class Any { /// @@ -48,51 +53,11 @@ public partial class WorkspaceCustomObjectParameterValue partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. - /// - /// an instance of . - /// - public static Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomObjectParameterValue DeserializeFromDictionary(global::System.Collections.IDictionary content) - { - return new WorkspaceCustomObjectParameterValue(content); - } - - /// - /// Deserializes a into an instance of . - /// - /// The global::System.Management.Automation.PSObject content that should be used. - /// - /// an instance of . - /// - public static Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomObjectParameterValue DeserializeFromPSObject(global::System.Management.Automation.PSObject content) - { - return new WorkspaceCustomObjectParameterValue(content); - } - - /// - /// Creates a new instance of , deserializing the content from a json string. - /// - /// a string containing a JSON serialized instance of this model. - /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomObjectParameterValue FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode.Parse(jsonText)); - - /// Serializes this instance to a json string. - - /// a containing this model serialized to JSON text. - public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SerializationMode.IncludeAll)?.ToString(); - - /// - /// Deserializes a into a new instance of . - /// - /// The global::System.Collections.IDictionary content that should be used. - internal WorkspaceCustomObjectParameterValue(global::System.Collections.IDictionary content) + internal Any(global::System.Collections.IDictionary content) { bool returnNow = false; BeforeDeserializeDictionary(content, ref returnNow); @@ -105,11 +70,11 @@ internal WorkspaceCustomObjectParameterValue(global::System.Collections.IDiction } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. - internal WorkspaceCustomObjectParameterValue(global::System.Management.Automation.PSObject content) + internal Any(global::System.Management.Automation.PSObject content) { bool returnNow = false; BeforeDeserializePSObject(content, ref returnNow); @@ -120,10 +85,48 @@ internal WorkspaceCustomObjectParameterValue(global::System.Management.Automatio // actually deserialize AfterDeserializePSObject(content); } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IAny DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new Any(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IAny DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new Any(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IAny FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SerializationMode.IncludeAll)?.ToString(); } - /// The value which should be used for this field. - [System.ComponentModel.TypeConverter(typeof(WorkspaceCustomObjectParameterValueTypeConverter))] - public partial interface IWorkspaceCustomObjectParameterValue + /// Any object + [System.ComponentModel.TypeConverter(typeof(AnyTypeConverter))] + public partial interface IAny { diff --git a/src/Databricks/generated/api/Models/Api20180401/WorkspaceCustomObjectParameterValue.TypeConverter.cs b/src/Databricks/generated/api/Models/Any.TypeConverter.cs similarity index 82% rename from src/Databricks/generated/api/Models/Api20180401/WorkspaceCustomObjectParameterValue.TypeConverter.cs rename to src/Databricks/generated/api/Models/Any.TypeConverter.cs index 8ac0f84ab85f..f5dc5413bb4b 100644 --- a/src/Databricks/generated/api/Models/Api20180401/WorkspaceCustomObjectParameterValue.TypeConverter.cs +++ b/src/Databricks/generated/api/Models/Any.TypeConverter.cs @@ -1,11 +1,16 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401 +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models { using Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.PowerShell; /// - /// A PowerShell PSTypeConverter to support converting to an instance of + /// A PowerShell PSTypeConverter to support converting to an instance of /// - public partial class WorkspaceCustomObjectParameterValueTypeConverter : global::System.Management.Automation.PSTypeConverter + public partial class AnyTypeConverter : global::System.Management.Automation.PSTypeConverter { /// @@ -24,11 +29,10 @@ public partial class WorkspaceCustomObjectParameterValueTypeConverter : global:: /// Determines if the converter can convert the parameter to the /// parameter. /// - /// the instance to check if it can be converted to the the instance to check if it can be converted to the type. /// - /// true if the instance could be converted to a type, otherwise - /// false + /// true if the instance could be converted to a type, otherwise false /// public static bool CanConvertFrom(dynamic sourceValue) { @@ -90,7 +94,7 @@ public static bool CanConvertFrom(dynamic sourceValue) /// not used by this TypeConverter. /// when set to true, will ignore the case when converting. /// - /// an instance of , or null if there is no suitable conversion. + /// an instance of , or null if there is no suitable conversion. /// public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); @@ -98,24 +102,24 @@ public static bool CanConvertFrom(dynamic sourceValue) /// Converts the parameter to the parameter using and /// - /// the value to convert into an instance of . + /// the value to convert into an instance of . /// - /// an instance of , or null if there is no suitable conversion. + /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomObjectParameterValue ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IAny ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomObjectParameterValue).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IAny).IsAssignableFrom(type)) { return sourceValue; } try { - return WorkspaceCustomObjectParameterValue.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + return Any.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; } catch { @@ -123,11 +127,11 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.I } if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) { - return WorkspaceCustomObjectParameterValue.DeserializeFromPSObject(sourceValue); + return Any.DeserializeFromPSObject(sourceValue); } if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) { - return WorkspaceCustomObjectParameterValue.DeserializeFromDictionary(sourceValue); + return Any.DeserializeFromDictionary(sourceValue); } return null; } diff --git a/src/Databricks/generated/api/Models/Any.cs b/src/Databricks/generated/api/Models/Any.cs new file mode 100644 index 000000000000..7e0870baab9f --- /dev/null +++ b/src/Databricks/generated/api/Models/Any.cs @@ -0,0 +1,34 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models +{ + using static Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Extensions; + + /// Any object + public partial class Any : + Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IAny, + Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IAnyInternal + { + + /// Creates an new instance. + public Any() + { + + } + } + /// Any object + public partial interface IAny : + Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IJsonSerializable + { + + } + /// Any object + internal partial interface IAnyInternal + + { + + } +} \ No newline at end of file diff --git a/src/Databricks/generated/api/Models/Api20180401/WorkspaceCustomObjectParameterValue.json.cs b/src/Databricks/generated/api/Models/Any.json.cs similarity index 80% rename from src/Databricks/generated/api/Models/Api20180401/WorkspaceCustomObjectParameterValue.json.cs rename to src/Databricks/generated/api/Models/Any.json.cs index 926c16c6c2c5..ef3b6aedbb43 100644 --- a/src/Databricks/generated/api/Models/Api20180401/WorkspaceCustomObjectParameterValue.json.cs +++ b/src/Databricks/generated/api/Models/Any.json.cs @@ -1,9 +1,14 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401 +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models { using static Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Extensions; - /// The value which should be used for this field. - public partial class WorkspaceCustomObjectParameterValue + /// Any object + public partial class Any { /// @@ -47,26 +52,38 @@ public partial class WorkspaceCustomObjectParameterValue partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomObjectParameterValue. + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonObject instance to deserialize from. + internal Any(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + AfterFromJson(json); + } + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IAny. /// /// a to deserialize from. - /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomObjectParameterValue. - /// - public static Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomObjectParameterValue FromJson(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode node) + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IAny. + public static Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IAny FromJson(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode node) { - return node is Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonObject json ? new WorkspaceCustomObjectParameterValue(json) : null; + return node is Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonObject json ? new Any(json) : null; } /// - /// Serializes this instance of into a . + /// Serializes this instance of into a . /// /// The container to serialize this object into. If the caller /// passes in null, a new instance will be created and returned to the caller. /// Allows the caller to choose the depth of the serialization. See . /// - /// a serialized instance of as a . + /// a serialized instance of as a . /// public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SerializationMode serializationMode) { @@ -81,20 +98,5 @@ public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode ToJso AfterToJson(ref container); return container; } - - /// - /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonObject into a new instance of . - /// - /// A Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonObject instance to deserialize from. - internal WorkspaceCustomObjectParameterValue(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonObject json) - { - bool returnNow = false; - BeforeFromJson(json, ref returnNow); - if (returnNow) - { - return; - } - AfterFromJson(json); - } } } \ No newline at end of file diff --git a/src/Databricks/generated/api/Models/Api20180401/CreatedBy.PowerShell.cs b/src/Databricks/generated/api/Models/Api20180401/CreatedBy.PowerShell.cs index a904fb4d4fea..e4fd0e04a3ee 100644 --- a/src/Databricks/generated/api/Models/Api20180401/CreatedBy.PowerShell.cs +++ b/src/Databricks/generated/api/Models/Api20180401/CreatedBy.PowerShell.cs @@ -61,9 +61,9 @@ internal CreatedBy(global::System.Collections.IDictionary content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ICreatedByInternal)this).ApplicationId = (string) content.GetValueForProperty("ApplicationId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ICreatedByInternal)this).ApplicationId, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ICreatedByInternal)this).Oid = (string) content.GetValueForProperty("Oid",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ICreatedByInternal)this).Oid, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ICreatedByInternal)this).Puid = (string) content.GetValueForProperty("Puid",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ICreatedByInternal)this).Puid, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ICreatedByInternal)this).ApplicationId = (string) content.GetValueForProperty("ApplicationId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ICreatedByInternal)this).ApplicationId, global::System.Convert.ToString); AfterDeserializeDictionary(content); } @@ -81,9 +81,9 @@ internal CreatedBy(global::System.Management.Automation.PSObject content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ICreatedByInternal)this).ApplicationId = (string) content.GetValueForProperty("ApplicationId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ICreatedByInternal)this).ApplicationId, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ICreatedByInternal)this).Oid = (string) content.GetValueForProperty("Oid",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ICreatedByInternal)this).Oid, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ICreatedByInternal)this).Puid = (string) content.GetValueForProperty("Puid",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ICreatedByInternal)this).Puid, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ICreatedByInternal)this).ApplicationId = (string) content.GetValueForProperty("ApplicationId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ICreatedByInternal)this).ApplicationId, global::System.Convert.ToString); AfterDeserializePSObject(content); } diff --git a/src/Databricks/generated/api/Models/Api20180401/CreatedBy.json.cs b/src/Databricks/generated/api/Models/Api20180401/CreatedBy.json.cs index 9acf223a7517..9af1afc4da72 100644 --- a/src/Databricks/generated/api/Models/Api20180401/CreatedBy.json.cs +++ b/src/Databricks/generated/api/Models/Api20180401/CreatedBy.json.cs @@ -58,9 +58,9 @@ internal CreatedBy(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.Js { return; } - {_applicationId = If( json?.PropertyT("applicationId"), out var __jsonApplicationId) ? (string)__jsonApplicationId : (string)ApplicationId;} {_oid = If( json?.PropertyT("oid"), out var __jsonOid) ? (string)__jsonOid : (string)Oid;} {_puid = If( json?.PropertyT("puid"), out var __jsonPuid) ? (string)__jsonPuid : (string)Puid;} + {_applicationId = If( json?.PropertyT("applicationId"), out var __jsonApplicationId) ? (string)__jsonApplicationId : (string)ApplicationId;} AfterFromJson(json); } @@ -97,15 +97,15 @@ public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode ToJso } if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SerializationMode.IncludeReadOnly)) { - AddIf( null != (((object)this._applicationId)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._applicationId.ToString()) : null, "applicationId" ,container.Add ); + AddIf( null != (((object)this._oid)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._oid.ToString()) : null, "oid" ,container.Add ); } if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SerializationMode.IncludeReadOnly)) { - AddIf( null != (((object)this._oid)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._oid.ToString()) : null, "oid" ,container.Add ); + AddIf( null != (((object)this._puid)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._puid.ToString()) : null, "puid" ,container.Add ); } if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SerializationMode.IncludeReadOnly)) { - AddIf( null != (((object)this._puid)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._puid.ToString()) : null, "puid" ,container.Add ); + AddIf( null != (((object)this._applicationId)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._applicationId.ToString()) : null, "applicationId" ,container.Add ); } AfterToJson(ref container); return container; diff --git a/src/Databricks/generated/api/Models/Api20180401/Encryption.PowerShell.cs b/src/Databricks/generated/api/Models/Api20180401/Encryption.PowerShell.cs index 1a5f2c9535f9..a98a58b698a6 100644 --- a/src/Databricks/generated/api/Models/Api20180401/Encryption.PowerShell.cs +++ b/src/Databricks/generated/api/Models/Api20180401/Encryption.PowerShell.cs @@ -87,10 +87,10 @@ internal Encryption(global::System.Collections.IDictionary content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IEncryptionInternal)this).KeyName = (string) content.GetValueForProperty("KeyName",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IEncryptionInternal)this).KeyName, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IEncryptionInternal)this).KeySource = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.KeySource?) content.GetValueForProperty("KeySource",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IEncryptionInternal)this).KeySource, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.KeySource.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IEncryptionInternal)this).KeyVaultUri = (string) content.GetValueForProperty("KeyVaultUri",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IEncryptionInternal)this).KeyVaultUri, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IEncryptionInternal)this).KeyName = (string) content.GetValueForProperty("KeyName",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IEncryptionInternal)this).KeyName, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IEncryptionInternal)this).KeyVersion = (string) content.GetValueForProperty("KeyVersion",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IEncryptionInternal)this).KeyVersion, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IEncryptionInternal)this).KeyVaultUri = (string) content.GetValueForProperty("KeyVaultUri",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IEncryptionInternal)this).KeyVaultUri, global::System.Convert.ToString); AfterDeserializeDictionary(content); } @@ -108,10 +108,10 @@ internal Encryption(global::System.Management.Automation.PSObject content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IEncryptionInternal)this).KeyName = (string) content.GetValueForProperty("KeyName",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IEncryptionInternal)this).KeyName, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IEncryptionInternal)this).KeySource = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.KeySource?) content.GetValueForProperty("KeySource",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IEncryptionInternal)this).KeySource, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.KeySource.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IEncryptionInternal)this).KeyVaultUri = (string) content.GetValueForProperty("KeyVaultUri",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IEncryptionInternal)this).KeyVaultUri, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IEncryptionInternal)this).KeyName = (string) content.GetValueForProperty("KeyName",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IEncryptionInternal)this).KeyName, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IEncryptionInternal)this).KeyVersion = (string) content.GetValueForProperty("KeyVersion",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IEncryptionInternal)this).KeyVersion, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IEncryptionInternal)this).KeyVaultUri = (string) content.GetValueForProperty("KeyVaultUri",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IEncryptionInternal)this).KeyVaultUri, global::System.Convert.ToString); AfterDeserializePSObject(content); } diff --git a/src/Databricks/generated/api/Models/Api20180401/Encryption.json.cs b/src/Databricks/generated/api/Models/Api20180401/Encryption.json.cs index 148bd0d6f606..8860b6b71208 100644 --- a/src/Databricks/generated/api/Models/Api20180401/Encryption.json.cs +++ b/src/Databricks/generated/api/Models/Api20180401/Encryption.json.cs @@ -58,10 +58,10 @@ internal Encryption(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.J { return; } - {_keyName = If( json?.PropertyT("KeyName"), out var __jsonKeyName) ? (string)__jsonKeyName : (string)KeyName;} {_keySource = If( json?.PropertyT("keySource"), out var __jsonKeySource) ? (string)__jsonKeySource : (string)KeySource;} - {_keyVaultUri = If( json?.PropertyT("keyvaulturi"), out var __jsonKeyvaulturi) ? (string)__jsonKeyvaulturi : (string)KeyVaultUri;} + {_keyName = If( json?.PropertyT("KeyName"), out var __jsonKeyName) ? (string)__jsonKeyName : (string)KeyName;} {_keyVersion = If( json?.PropertyT("keyversion"), out var __jsonKeyversion) ? (string)__jsonKeyversion : (string)KeyVersion;} + {_keyVaultUri = If( json?.PropertyT("keyvaulturi"), out var __jsonKeyvaulturi) ? (string)__jsonKeyvaulturi : (string)KeyVaultUri;} AfterFromJson(json); } @@ -96,10 +96,10 @@ public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode ToJso { return container; } - AddIf( null != (((object)this._keyName)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._keyName.ToString()) : null, "KeyName" ,container.Add ); AddIf( null != (((object)this._keySource)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._keySource.ToString()) : null, "keySource" ,container.Add ); - AddIf( null != (((object)this._keyVaultUri)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._keyVaultUri.ToString()) : null, "keyvaulturi" ,container.Add ); + AddIf( null != (((object)this._keyName)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._keyName.ToString()) : null, "KeyName" ,container.Add ); AddIf( null != (((object)this._keyVersion)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._keyVersion.ToString()) : null, "keyversion" ,container.Add ); + AddIf( null != (((object)this._keyVaultUri)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._keyVaultUri.ToString()) : null, "keyvaulturi" ,container.Add ); AfterToJson(ref container); return container; } diff --git a/src/Databricks/generated/api/Models/Api20180401/ErrorInfo.PowerShell.cs b/src/Databricks/generated/api/Models/Api20180401/ErrorInfo.PowerShell.cs index 4392d2da0356..593b0de40c76 100644 --- a/src/Databricks/generated/api/Models/Api20180401/ErrorInfo.PowerShell.cs +++ b/src/Databricks/generated/api/Models/Api20180401/ErrorInfo.PowerShell.cs @@ -88,9 +88,9 @@ internal ErrorInfo(global::System.Collections.IDictionary content) } // actually deserialize ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IErrorInfoInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IErrorInfoInternal)this).Code, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IErrorInfoInternal)this).Innererror = (string) content.GetValueForProperty("Innererror",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IErrorInfoInternal)this).Innererror, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IErrorInfoInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IErrorInfoInternal)this).Message, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IErrorInfoInternal)this).Detail = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IErrorDetail[]) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IErrorInfoInternal)this).Detail, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ErrorDetailTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IErrorInfoInternal)this).Innererror = (string) content.GetValueForProperty("Innererror",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IErrorInfoInternal)this).Innererror, global::System.Convert.ToString); AfterDeserializeDictionary(content); } @@ -109,9 +109,9 @@ internal ErrorInfo(global::System.Management.Automation.PSObject content) } // actually deserialize ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IErrorInfoInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IErrorInfoInternal)this).Code, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IErrorInfoInternal)this).Innererror = (string) content.GetValueForProperty("Innererror",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IErrorInfoInternal)this).Innererror, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IErrorInfoInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IErrorInfoInternal)this).Message, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IErrorInfoInternal)this).Detail = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IErrorDetail[]) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IErrorInfoInternal)this).Detail, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ErrorDetailTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IErrorInfoInternal)this).Innererror = (string) content.GetValueForProperty("Innererror",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IErrorInfoInternal)this).Innererror, global::System.Convert.ToString); AfterDeserializePSObject(content); } diff --git a/src/Databricks/generated/api/Models/Api20180401/ErrorInfo.json.cs b/src/Databricks/generated/api/Models/Api20180401/ErrorInfo.json.cs index a128ac0cc3d5..a573e498bbe9 100644 --- a/src/Databricks/generated/api/Models/Api20180401/ErrorInfo.json.cs +++ b/src/Databricks/generated/api/Models/Api20180401/ErrorInfo.json.cs @@ -59,9 +59,9 @@ internal ErrorInfo(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.Js return; } {_code = If( json?.PropertyT("code"), out var __jsonCode) ? (string)__jsonCode : (string)Code;} - {_innererror = If( json?.PropertyT("innererror"), out var __jsonInnererror) ? (string)__jsonInnererror : (string)Innererror;} {_message = If( json?.PropertyT("message"), out var __jsonMessage) ? (string)__jsonMessage : (string)Message;} {_detail = If( json?.PropertyT("details"), out var __jsonDetails) ? If( __jsonDetails as Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IErrorDetail) (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ErrorDetail.FromJson(__u) )) ))() : null : Detail;} + {_innererror = If( json?.PropertyT("innererror"), out var __jsonInnererror) ? (string)__jsonInnererror : (string)Innererror;} AfterFromJson(json); } @@ -97,7 +97,6 @@ public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode ToJso return container; } AddIf( null != (((object)this._code)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._code.ToString()) : null, "code" ,container.Add ); - AddIf( null != (((object)this._innererror)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._innererror.ToString()) : null, "innererror" ,container.Add ); AddIf( null != (((object)this._message)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._message.ToString()) : null, "message" ,container.Add ); if (null != this._detail) { @@ -108,6 +107,7 @@ public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode ToJso } container.Add("details",__w); } + AddIf( null != (((object)this._innererror)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._innererror.ToString()) : null, "innererror" ,container.Add ); AfterToJson(ref container); return container; } diff --git a/src/Databricks/generated/api/Models/Api20180401/ErrorResponse.PowerShell.cs b/src/Databricks/generated/api/Models/Api20180401/ErrorResponse.PowerShell.cs index 51d5e896e26c..e03ec9d454dc 100644 --- a/src/Databricks/generated/api/Models/Api20180401/ErrorResponse.PowerShell.cs +++ b/src/Databricks/generated/api/Models/Api20180401/ErrorResponse.PowerShell.cs @@ -89,9 +89,9 @@ internal ErrorResponse(global::System.Collections.IDictionary content) // actually deserialize ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IErrorResponseInternal)this).Error = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IErrorInfo) content.GetValueForProperty("Error",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IErrorResponseInternal)this).Error, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ErrorInfoTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IErrorResponseInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IErrorResponseInternal)this).Code, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IErrorResponseInternal)this).Innererror = (string) content.GetValueForProperty("Innererror",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IErrorResponseInternal)this).Innererror, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IErrorResponseInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IErrorResponseInternal)this).Message, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IErrorResponseInternal)this).Detail = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IErrorDetail[]) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IErrorResponseInternal)this).Detail, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ErrorDetailTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IErrorResponseInternal)this).Innererror = (string) content.GetValueForProperty("Innererror",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IErrorResponseInternal)this).Innererror, global::System.Convert.ToString); AfterDeserializeDictionary(content); } @@ -111,9 +111,9 @@ internal ErrorResponse(global::System.Management.Automation.PSObject content) // actually deserialize ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IErrorResponseInternal)this).Error = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IErrorInfo) content.GetValueForProperty("Error",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IErrorResponseInternal)this).Error, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ErrorInfoTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IErrorResponseInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IErrorResponseInternal)this).Code, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IErrorResponseInternal)this).Innererror = (string) content.GetValueForProperty("Innererror",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IErrorResponseInternal)this).Innererror, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IErrorResponseInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IErrorResponseInternal)this).Message, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IErrorResponseInternal)this).Detail = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IErrorDetail[]) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IErrorResponseInternal)this).Detail, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ErrorDetailTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IErrorResponseInternal)this).Innererror = (string) content.GetValueForProperty("Innererror",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IErrorResponseInternal)this).Innererror, global::System.Convert.ToString); AfterDeserializePSObject(content); } diff --git a/src/Databricks/generated/api/Models/Api20180401/ManagedIdentityConfiguration.PowerShell.cs b/src/Databricks/generated/api/Models/Api20180401/ManagedIdentityConfiguration.PowerShell.cs index 9f176a5d731e..35d65959af40 100644 --- a/src/Databricks/generated/api/Models/Api20180401/ManagedIdentityConfiguration.PowerShell.cs +++ b/src/Databricks/generated/api/Models/Api20180401/ManagedIdentityConfiguration.PowerShell.cs @@ -96,9 +96,9 @@ internal ManagedIdentityConfiguration(global::System.Collections.IDictionary con return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IManagedIdentityConfigurationInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IManagedIdentityConfigurationInternal)this).Type, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IManagedIdentityConfigurationInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IManagedIdentityConfigurationInternal)this).PrincipalId, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IManagedIdentityConfigurationInternal)this).TenantId = (string) content.GetValueForProperty("TenantId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IManagedIdentityConfigurationInternal)this).TenantId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IManagedIdentityConfigurationInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IManagedIdentityConfigurationInternal)this).Type, global::System.Convert.ToString); AfterDeserializeDictionary(content); } @@ -116,9 +116,9 @@ internal ManagedIdentityConfiguration(global::System.Management.Automation.PSObj return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IManagedIdentityConfigurationInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IManagedIdentityConfigurationInternal)this).Type, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IManagedIdentityConfigurationInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IManagedIdentityConfigurationInternal)this).PrincipalId, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IManagedIdentityConfigurationInternal)this).TenantId = (string) content.GetValueForProperty("TenantId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IManagedIdentityConfigurationInternal)this).TenantId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IManagedIdentityConfigurationInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IManagedIdentityConfigurationInternal)this).Type, global::System.Convert.ToString); AfterDeserializePSObject(content); } diff --git a/src/Databricks/generated/api/Models/Api20180401/ManagedIdentityConfiguration.json.cs b/src/Databricks/generated/api/Models/Api20180401/ManagedIdentityConfiguration.json.cs index a341879c6d23..f29753a1d507 100644 --- a/src/Databricks/generated/api/Models/Api20180401/ManagedIdentityConfiguration.json.cs +++ b/src/Databricks/generated/api/Models/Api20180401/ManagedIdentityConfiguration.json.cs @@ -70,9 +70,9 @@ internal ManagedIdentityConfiguration(Microsoft.Azure.PowerShell.Cmdlets.Databri { return; } - {_type = If( json?.PropertyT("type"), out var __jsonType) ? (string)__jsonType : (string)Type;} {_principalId = If( json?.PropertyT("principalId"), out var __jsonPrincipalId) ? (string)__jsonPrincipalId : (string)PrincipalId;} {_tenantId = If( json?.PropertyT("tenantId"), out var __jsonTenantId) ? (string)__jsonTenantId : (string)TenantId;} + {_type = If( json?.PropertyT("type"), out var __jsonType) ? (string)__jsonType : (string)Type;} AfterFromJson(json); } @@ -97,15 +97,15 @@ public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode ToJso } if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SerializationMode.IncludeReadOnly)) { - AddIf( null != (((object)this._type)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._type.ToString()) : null, "type" ,container.Add ); + AddIf( null != (((object)this._principalId)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._principalId.ToString()) : null, "principalId" ,container.Add ); } if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SerializationMode.IncludeReadOnly)) { - AddIf( null != (((object)this._principalId)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._principalId.ToString()) : null, "principalId" ,container.Add ); + AddIf( null != (((object)this._tenantId)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._tenantId.ToString()) : null, "tenantId" ,container.Add ); } if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SerializationMode.IncludeReadOnly)) { - AddIf( null != (((object)this._tenantId)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._tenantId.ToString()) : null, "tenantId" ,container.Add ); + AddIf( null != (((object)this._type)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._type.ToString()) : null, "type" ,container.Add ); } AfterToJson(ref container); return container; diff --git a/src/Databricks/generated/api/Models/Api20180401/Operation.PowerShell.cs b/src/Databricks/generated/api/Models/Api20180401/Operation.PowerShell.cs index dfbc95edff44..040da54750d4 100644 --- a/src/Databricks/generated/api/Models/Api20180401/Operation.PowerShell.cs +++ b/src/Databricks/generated/api/Models/Api20180401/Operation.PowerShell.cs @@ -96,9 +96,9 @@ internal Operation(global::System.Collections.IDictionary content) // actually deserialize ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperationInternal)this).Display = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperationDisplay) content.GetValueForProperty("Display",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperationInternal)this).Display, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.OperationDisplayTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperationInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperationInternal)this).Name, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperationInternal)this).DisplayOperation = (string) content.GetValueForProperty("DisplayOperation",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperationInternal)this).DisplayOperation, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperationInternal)this).DisplayProvider = (string) content.GetValueForProperty("DisplayProvider",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperationInternal)this).DisplayProvider, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperationInternal)this).DisplayResource = (string) content.GetValueForProperty("DisplayResource",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperationInternal)this).DisplayResource, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperationInternal)this).DisplayOperation = (string) content.GetValueForProperty("DisplayOperation",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperationInternal)this).DisplayOperation, global::System.Convert.ToString); AfterDeserializeDictionary(content); } @@ -118,9 +118,9 @@ internal Operation(global::System.Management.Automation.PSObject content) // actually deserialize ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperationInternal)this).Display = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperationDisplay) content.GetValueForProperty("Display",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperationInternal)this).Display, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.OperationDisplayTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperationInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperationInternal)this).Name, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperationInternal)this).DisplayOperation = (string) content.GetValueForProperty("DisplayOperation",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperationInternal)this).DisplayOperation, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperationInternal)this).DisplayProvider = (string) content.GetValueForProperty("DisplayProvider",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperationInternal)this).DisplayProvider, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperationInternal)this).DisplayResource = (string) content.GetValueForProperty("DisplayResource",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperationInternal)this).DisplayResource, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperationInternal)this).DisplayOperation = (string) content.GetValueForProperty("DisplayOperation",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperationInternal)this).DisplayOperation, global::System.Convert.ToString); AfterDeserializePSObject(content); } diff --git a/src/Databricks/generated/api/Models/Api20180401/OperationDisplay.PowerShell.cs b/src/Databricks/generated/api/Models/Api20180401/OperationDisplay.PowerShell.cs index 7a5fa24d08fc..f74e5be3ee5e 100644 --- a/src/Databricks/generated/api/Models/Api20180401/OperationDisplay.PowerShell.cs +++ b/src/Databricks/generated/api/Models/Api20180401/OperationDisplay.PowerShell.cs @@ -94,9 +94,9 @@ internal OperationDisplay(global::System.Collections.IDictionary content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperationDisplayInternal)this).Operation = (string) content.GetValueForProperty("Operation",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperationDisplayInternal)this).Operation, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperationDisplayInternal)this).Provider = (string) content.GetValueForProperty("Provider",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperationDisplayInternal)this).Provider, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperationDisplayInternal)this).Resource = (string) content.GetValueForProperty("Resource",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperationDisplayInternal)this).Resource, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperationDisplayInternal)this).Operation = (string) content.GetValueForProperty("Operation",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperationDisplayInternal)this).Operation, global::System.Convert.ToString); AfterDeserializeDictionary(content); } @@ -114,9 +114,9 @@ internal OperationDisplay(global::System.Management.Automation.PSObject content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperationDisplayInternal)this).Operation = (string) content.GetValueForProperty("Operation",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperationDisplayInternal)this).Operation, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperationDisplayInternal)this).Provider = (string) content.GetValueForProperty("Provider",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperationDisplayInternal)this).Provider, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperationDisplayInternal)this).Resource = (string) content.GetValueForProperty("Resource",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperationDisplayInternal)this).Resource, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperationDisplayInternal)this).Operation = (string) content.GetValueForProperty("Operation",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperationDisplayInternal)this).Operation, global::System.Convert.ToString); AfterDeserializePSObject(content); } diff --git a/src/Databricks/generated/api/Models/Api20180401/OperationDisplay.json.cs b/src/Databricks/generated/api/Models/Api20180401/OperationDisplay.json.cs index e5e496d226dc..1159102ca947 100644 --- a/src/Databricks/generated/api/Models/Api20180401/OperationDisplay.json.cs +++ b/src/Databricks/generated/api/Models/Api20180401/OperationDisplay.json.cs @@ -70,9 +70,9 @@ internal OperationDisplay(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime. { return; } - {_operation = If( json?.PropertyT("operation"), out var __jsonOperation) ? (string)__jsonOperation : (string)Operation;} {_provider = If( json?.PropertyT("provider"), out var __jsonProvider) ? (string)__jsonProvider : (string)Provider;} {_resource = If( json?.PropertyT("resource"), out var __jsonResource) ? (string)__jsonResource : (string)Resource;} + {_operation = If( json?.PropertyT("operation"), out var __jsonOperation) ? (string)__jsonOperation : (string)Operation;} AfterFromJson(json); } @@ -95,9 +95,9 @@ public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode ToJso { return container; } - AddIf( null != (((object)this._operation)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._operation.ToString()) : null, "operation" ,container.Add ); AddIf( null != (((object)this._provider)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._provider.ToString()) : null, "provider" ,container.Add ); AddIf( null != (((object)this._resource)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._resource.ToString()) : null, "resource" ,container.Add ); + AddIf( null != (((object)this._operation)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._operation.ToString()) : null, "operation" ,container.Add ); AfterToJson(ref container); return container; } diff --git a/src/Databricks/generated/api/Models/Api20180401/OperationListResult.PowerShell.cs b/src/Databricks/generated/api/Models/Api20180401/OperationListResult.PowerShell.cs index 77e36330bbea..0728857922ee 100644 --- a/src/Databricks/generated/api/Models/Api20180401/OperationListResult.PowerShell.cs +++ b/src/Databricks/generated/api/Models/Api20180401/OperationListResult.PowerShell.cs @@ -97,8 +97,8 @@ internal OperationListResult(global::System.Collections.IDictionary content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperationListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperationListResultInternal)this).NextLink, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperationListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperation[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperationListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.OperationTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperationListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperationListResultInternal)this).NextLink, global::System.Convert.ToString); AfterDeserializeDictionary(content); } @@ -116,8 +116,8 @@ internal OperationListResult(global::System.Management.Automation.PSObject conte return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperationListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperationListResultInternal)this).NextLink, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperationListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperation[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperationListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.OperationTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperationListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperationListResultInternal)this).NextLink, global::System.Convert.ToString); AfterDeserializePSObject(content); } diff --git a/src/Databricks/generated/api/Models/Api20180401/OperationListResult.json.cs b/src/Databricks/generated/api/Models/Api20180401/OperationListResult.json.cs index 3c8cc55e5621..391fac533cc2 100644 --- a/src/Databricks/generated/api/Models/Api20180401/OperationListResult.json.cs +++ b/src/Databricks/generated/api/Models/Api20180401/OperationListResult.json.cs @@ -73,8 +73,8 @@ internal OperationListResult(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runti { return; } - {_nextLink = If( json?.PropertyT("nextLink"), out var __jsonNextLink) ? (string)__jsonNextLink : (string)NextLink;} {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IOperation) (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.Operation.FromJson(__u) )) ))() : null : Value;} + {_nextLink = If( json?.PropertyT("nextLink"), out var __jsonNextLink) ? (string)__jsonNextLink : (string)NextLink;} AfterFromJson(json); } @@ -97,7 +97,6 @@ public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode ToJso { return container; } - AddIf( null != (((object)this._nextLink)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._nextLink.ToString()) : null, "nextLink" ,container.Add ); if (null != this._value) { var __w = new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.XNodeArray(); @@ -107,6 +106,7 @@ public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode ToJso } container.Add("value",__w); } + AddIf( null != (((object)this._nextLink)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._nextLink.ToString()) : null, "nextLink" ,container.Add ); AfterToJson(ref container); return container; } diff --git a/src/Databricks/generated/api/Models/Api20180401/Resource.PowerShell.cs b/src/Databricks/generated/api/Models/Api20180401/Resource.PowerShell.cs index 5be2163280c9..ed27c3e9ee2d 100644 --- a/src/Databricks/generated/api/Models/Api20180401/Resource.PowerShell.cs +++ b/src/Databricks/generated/api/Models/Api20180401/Resource.PowerShell.cs @@ -94,9 +94,9 @@ internal Resource(global::System.Collections.IDictionary content) return; } // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IResourceInternal)this).Id, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IResourceInternal)this).Name, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IResourceInternal)this).Type, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IResourceInternal)this).Id, global::System.Convert.ToString); AfterDeserializeDictionary(content); } @@ -114,9 +114,9 @@ internal Resource(global::System.Management.Automation.PSObject content) return; } // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IResourceInternal)this).Id, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IResourceInternal)this).Name, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IResourceInternal)this).Type, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IResourceInternal)this).Id, global::System.Convert.ToString); AfterDeserializePSObject(content); } diff --git a/src/Databricks/generated/api/Models/Api20180401/Resource.json.cs b/src/Databricks/generated/api/Models/Api20180401/Resource.json.cs index f9b865f1c491..3a7cefd56c23 100644 --- a/src/Databricks/generated/api/Models/Api20180401/Resource.json.cs +++ b/src/Databricks/generated/api/Models/Api20180401/Resource.json.cs @@ -70,9 +70,9 @@ internal Resource(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.Jso { return; } + {_id = If( json?.PropertyT("id"), out var __jsonId) ? (string)__jsonId : (string)Id;} {_name = If( json?.PropertyT("name"), out var __jsonName) ? (string)__jsonName : (string)Name;} {_type = If( json?.PropertyT("type"), out var __jsonType) ? (string)__jsonType : (string)Type;} - {_id = If( json?.PropertyT("id"), out var __jsonId) ? (string)__jsonId : (string)Id;} AfterFromJson(json); } @@ -97,15 +97,15 @@ public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode ToJso } if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SerializationMode.IncludeReadOnly)) { - AddIf( null != (((object)this._name)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._name.ToString()) : null, "name" ,container.Add ); + AddIf( null != (((object)this._id)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._id.ToString()) : null, "id" ,container.Add ); } if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SerializationMode.IncludeReadOnly)) { - AddIf( null != (((object)this._type)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._type.ToString()) : null, "type" ,container.Add ); + AddIf( null != (((object)this._name)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._name.ToString()) : null, "name" ,container.Add ); } if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SerializationMode.IncludeReadOnly)) { - AddIf( null != (((object)this._id)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._id.ToString()) : null, "id" ,container.Add ); + AddIf( null != (((object)this._type)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._type.ToString()) : null, "type" ,container.Add ); } AfterToJson(ref container); return container; diff --git a/src/Databricks/generated/api/Models/Api20180401/TrackedResource.PowerShell.cs b/src/Databricks/generated/api/Models/Api20180401/TrackedResource.PowerShell.cs index da7e5850a0d7..ba6fa798567a 100644 --- a/src/Databricks/generated/api/Models/Api20180401/TrackedResource.PowerShell.cs +++ b/src/Databricks/generated/api/Models/Api20180401/TrackedResource.PowerShell.cs @@ -99,11 +99,11 @@ internal TrackedResource(global::System.Collections.IDictionary content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ITrackedResourceInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ITrackedResourceInternal)this).Location, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ITrackedResourceInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ITrackedResourceTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ITrackedResourceInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.TrackedResourceTagsTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ITrackedResourceInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ITrackedResourceInternal)this).Location, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IResourceInternal)this).Id, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IResourceInternal)this).Name, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IResourceInternal)this).Type, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IResourceInternal)this).Id, global::System.Convert.ToString); AfterDeserializeDictionary(content); } @@ -121,11 +121,11 @@ internal TrackedResource(global::System.Management.Automation.PSObject content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ITrackedResourceInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ITrackedResourceInternal)this).Location, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ITrackedResourceInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ITrackedResourceTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ITrackedResourceInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.TrackedResourceTagsTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ITrackedResourceInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ITrackedResourceInternal)this).Location, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IResourceInternal)this).Id, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IResourceInternal)this).Name, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IResourceInternal)this).Type, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IResourceInternal)this).Id, global::System.Convert.ToString); AfterDeserializePSObject(content); } } diff --git a/src/Databricks/generated/api/Models/Api20180401/TrackedResource.json.cs b/src/Databricks/generated/api/Models/Api20180401/TrackedResource.json.cs index d32470180d1d..0fec2743baf4 100644 --- a/src/Databricks/generated/api/Models/Api20180401/TrackedResource.json.cs +++ b/src/Databricks/generated/api/Models/Api20180401/TrackedResource.json.cs @@ -78,8 +78,8 @@ public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode ToJso return container; } __resource?.ToJson(container, serializationMode); - AddIf( null != (((object)this._location)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._location.ToString()) : null, "location" ,container.Add ); AddIf( null != this._tag ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) this._tag.ToJson(null,serializationMode) : null, "tags" ,container.Add ); + AddIf( null != (((object)this._location)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._location.ToString()) : null, "location" ,container.Add ); AfterToJson(ref container); return container; } @@ -97,8 +97,8 @@ internal TrackedResource(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.J return; } __resource = new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.Resource(json); - {_location = If( json?.PropertyT("location"), out var __jsonLocation) ? (string)__jsonLocation : (string)Location;} {_tag = If( json?.PropertyT("tags"), out var __jsonTags) ? Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.TrackedResourceTags.FromJson(__jsonTags) : Tag;} + {_location = If( json?.PropertyT("location"), out var __jsonLocation) ? (string)__jsonLocation : (string)Location;} AfterFromJson(json); } } diff --git a/src/Databricks/generated/api/Models/Api20180401/VirtualNetworkPeering.PowerShell.cs b/src/Databricks/generated/api/Models/Api20180401/VirtualNetworkPeering.PowerShell.cs index 1292871fea7a..45227c628a56 100644 --- a/src/Databricks/generated/api/Models/Api20180401/VirtualNetworkPeering.PowerShell.cs +++ b/src/Databricks/generated/api/Models/Api20180401/VirtualNetworkPeering.PowerShell.cs @@ -101,22 +101,22 @@ internal VirtualNetworkPeering(global::System.Collections.IDictionary content) // actually deserialize ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormat) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.VirtualNetworkPeeringPropertiesFormatTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).Name, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).Type, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).Type, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).PeeringState = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.PeeringState?) content.GetValueForProperty("PeeringState",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).PeeringState, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.PeeringState.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).DatabricksAddressSpace = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IAddressSpace) content.GetValueForProperty("DatabricksAddressSpace",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).DatabricksAddressSpace, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.AddressSpaceTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).DatabricksVirtualNetwork = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatDatabricksVirtualNetwork) content.GetValueForProperty("DatabricksVirtualNetwork",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).DatabricksVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.VirtualNetworkPeeringPropertiesFormatDatabricksVirtualNetworkTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).RemoteAddressSpace = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IAddressSpace) content.GetValueForProperty("RemoteAddressSpace",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).RemoteAddressSpace, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.AddressSpaceTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).UseRemoteGateway = (bool?) content.GetValueForProperty("UseRemoteGateway",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).UseRemoteGateway, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).RemoteVirtualNetwork = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatRemoteVirtualNetwork) content.GetValueForProperty("RemoteVirtualNetwork",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).RemoteVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.VirtualNetworkPeeringPropertiesFormatRemoteVirtualNetworkTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).RemoteAddressSpace = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IAddressSpace) content.GetValueForProperty("RemoteAddressSpace",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).RemoteAddressSpace, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.AddressSpaceTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).AllowVirtualNetworkAccess = (bool?) content.GetValueForProperty("AllowVirtualNetworkAccess",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).AllowVirtualNetworkAccess, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).AllowForwardedTraffic = (bool?) content.GetValueForProperty("AllowForwardedTraffic",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).AllowForwardedTraffic, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).AllowGatewayTransit = (bool?) content.GetValueForProperty("AllowGatewayTransit",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).AllowGatewayTransit, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).AllowVirtualNetworkAccess = (bool?) content.GetValueForProperty("AllowVirtualNetworkAccess",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).AllowVirtualNetworkAccess, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).DatabricksAddressSpace = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IAddressSpace) content.GetValueForProperty("DatabricksAddressSpace",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).DatabricksAddressSpace, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.AddressSpaceTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).DatabricksVirtualNetwork = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatDatabricksVirtualNetwork) content.GetValueForProperty("DatabricksVirtualNetwork",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).DatabricksVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.VirtualNetworkPeeringPropertiesFormatDatabricksVirtualNetworkTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.PeeringProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.PeeringProvisioningState.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).UseRemoteGateway = (bool?) content.GetValueForProperty("UseRemoteGateway",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).UseRemoteGateway, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).DatabrickAddressSpaceAddressPrefix = (string[]) content.GetValueForProperty("DatabrickAddressSpaceAddressPrefix",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).DatabrickAddressSpaceAddressPrefix, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).DatabrickVirtualNetworkId = (string) content.GetValueForProperty("DatabrickVirtualNetworkId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).DatabrickVirtualNetworkId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).RemoteAddressSpaceAddressPrefix = (string[]) content.GetValueForProperty("RemoteAddressSpaceAddressPrefix",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).RemoteAddressSpaceAddressPrefix, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).DatabrickAddressSpaceAddressPrefix = (string[]) content.GetValueForProperty("DatabrickAddressSpaceAddressPrefix",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).DatabrickAddressSpaceAddressPrefix, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).RemoteVirtualNetworkId = (string) content.GetValueForProperty("RemoteVirtualNetworkId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).RemoteVirtualNetworkId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).RemoteAddressSpaceAddressPrefix = (string[]) content.GetValueForProperty("RemoteAddressSpaceAddressPrefix",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).RemoteAddressSpaceAddressPrefix, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); AfterDeserializeDictionary(content); } @@ -136,22 +136,22 @@ internal VirtualNetworkPeering(global::System.Management.Automation.PSObject con // actually deserialize ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormat) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.VirtualNetworkPeeringPropertiesFormatTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).Name, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).Type, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).Type, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).PeeringState = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.PeeringState?) content.GetValueForProperty("PeeringState",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).PeeringState, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.PeeringState.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).DatabricksAddressSpace = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IAddressSpace) content.GetValueForProperty("DatabricksAddressSpace",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).DatabricksAddressSpace, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.AddressSpaceTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).DatabricksVirtualNetwork = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatDatabricksVirtualNetwork) content.GetValueForProperty("DatabricksVirtualNetwork",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).DatabricksVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.VirtualNetworkPeeringPropertiesFormatDatabricksVirtualNetworkTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).RemoteAddressSpace = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IAddressSpace) content.GetValueForProperty("RemoteAddressSpace",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).RemoteAddressSpace, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.AddressSpaceTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).UseRemoteGateway = (bool?) content.GetValueForProperty("UseRemoteGateway",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).UseRemoteGateway, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).RemoteVirtualNetwork = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatRemoteVirtualNetwork) content.GetValueForProperty("RemoteVirtualNetwork",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).RemoteVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.VirtualNetworkPeeringPropertiesFormatRemoteVirtualNetworkTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).RemoteAddressSpace = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IAddressSpace) content.GetValueForProperty("RemoteAddressSpace",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).RemoteAddressSpace, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.AddressSpaceTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).AllowVirtualNetworkAccess = (bool?) content.GetValueForProperty("AllowVirtualNetworkAccess",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).AllowVirtualNetworkAccess, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).AllowForwardedTraffic = (bool?) content.GetValueForProperty("AllowForwardedTraffic",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).AllowForwardedTraffic, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).AllowGatewayTransit = (bool?) content.GetValueForProperty("AllowGatewayTransit",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).AllowGatewayTransit, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).AllowVirtualNetworkAccess = (bool?) content.GetValueForProperty("AllowVirtualNetworkAccess",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).AllowVirtualNetworkAccess, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).DatabricksAddressSpace = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IAddressSpace) content.GetValueForProperty("DatabricksAddressSpace",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).DatabricksAddressSpace, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.AddressSpaceTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).DatabricksVirtualNetwork = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatDatabricksVirtualNetwork) content.GetValueForProperty("DatabricksVirtualNetwork",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).DatabricksVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.VirtualNetworkPeeringPropertiesFormatDatabricksVirtualNetworkTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.PeeringProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.PeeringProvisioningState.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).UseRemoteGateway = (bool?) content.GetValueForProperty("UseRemoteGateway",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).UseRemoteGateway, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).DatabrickAddressSpaceAddressPrefix = (string[]) content.GetValueForProperty("DatabrickAddressSpaceAddressPrefix",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).DatabrickAddressSpaceAddressPrefix, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).DatabrickVirtualNetworkId = (string) content.GetValueForProperty("DatabrickVirtualNetworkId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).DatabrickVirtualNetworkId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).RemoteAddressSpaceAddressPrefix = (string[]) content.GetValueForProperty("RemoteAddressSpaceAddressPrefix",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).RemoteAddressSpaceAddressPrefix, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).DatabrickAddressSpaceAddressPrefix = (string[]) content.GetValueForProperty("DatabrickAddressSpaceAddressPrefix",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).DatabrickAddressSpaceAddressPrefix, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).RemoteVirtualNetworkId = (string) content.GetValueForProperty("RemoteVirtualNetworkId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).RemoteVirtualNetworkId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).RemoteAddressSpaceAddressPrefix = (string[]) content.GetValueForProperty("RemoteAddressSpaceAddressPrefix",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringInternal)this).RemoteAddressSpaceAddressPrefix, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); AfterDeserializePSObject(content); } } diff --git a/src/Databricks/generated/api/Models/Api20180401/VirtualNetworkPeering.json.cs b/src/Databricks/generated/api/Models/Api20180401/VirtualNetworkPeering.json.cs index e64f8bff24b8..8d8027675e05 100644 --- a/src/Databricks/generated/api/Models/Api20180401/VirtualNetworkPeering.json.cs +++ b/src/Databricks/generated/api/Models/Api20180401/VirtualNetworkPeering.json.cs @@ -84,11 +84,11 @@ public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode ToJso } if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SerializationMode.IncludeReadOnly)) { - AddIf( null != (((object)this._type)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._type.ToString()) : null, "type" ,container.Add ); + AddIf( null != (((object)this._id)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._id.ToString()) : null, "id" ,container.Add ); } if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SerializationMode.IncludeReadOnly)) { - AddIf( null != (((object)this._id)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._id.ToString()) : null, "id" ,container.Add ); + AddIf( null != (((object)this._type)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._type.ToString()) : null, "type" ,container.Add ); } AfterToJson(ref container); return container; @@ -108,8 +108,8 @@ internal VirtualNetworkPeering(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Run } {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.VirtualNetworkPeeringPropertiesFormat.FromJson(__jsonProperties) : Property;} {_name = If( json?.PropertyT("name"), out var __jsonName) ? (string)__jsonName : (string)Name;} - {_type = If( json?.PropertyT("type"), out var __jsonType) ? (string)__jsonType : (string)Type;} {_id = If( json?.PropertyT("id"), out var __jsonId) ? (string)__jsonId : (string)Id;} + {_type = If( json?.PropertyT("type"), out var __jsonType) ? (string)__jsonType : (string)Type;} AfterFromJson(json); } } diff --git a/src/Databricks/generated/api/Models/Api20180401/VirtualNetworkPeeringList.PowerShell.cs b/src/Databricks/generated/api/Models/Api20180401/VirtualNetworkPeeringList.PowerShell.cs index 792665dc8d2d..f74f53a576c7 100644 --- a/src/Databricks/generated/api/Models/Api20180401/VirtualNetworkPeeringList.PowerShell.cs +++ b/src/Databricks/generated/api/Models/Api20180401/VirtualNetworkPeeringList.PowerShell.cs @@ -101,8 +101,8 @@ internal VirtualNetworkPeeringList(global::System.Collections.IDictionary conten return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringListInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringListInternal)this).NextLink, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringListInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeering[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringListInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.VirtualNetworkPeeringTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringListInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringListInternal)this).NextLink, global::System.Convert.ToString); AfterDeserializeDictionary(content); } @@ -120,8 +120,8 @@ internal VirtualNetworkPeeringList(global::System.Management.Automation.PSObject return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringListInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringListInternal)this).NextLink, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringListInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeering[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringListInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.VirtualNetworkPeeringTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringListInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringListInternal)this).NextLink, global::System.Convert.ToString); AfterDeserializePSObject(content); } } diff --git a/src/Databricks/generated/api/Models/Api20180401/VirtualNetworkPeeringList.json.cs b/src/Databricks/generated/api/Models/Api20180401/VirtualNetworkPeeringList.json.cs index aa934d755c0a..38ac26a2b12d 100644 --- a/src/Databricks/generated/api/Models/Api20180401/VirtualNetworkPeeringList.json.cs +++ b/src/Databricks/generated/api/Models/Api20180401/VirtualNetworkPeeringList.json.cs @@ -77,7 +77,6 @@ public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode ToJso { return container; } - AddIf( null != (((object)this._nextLink)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._nextLink.ToString()) : null, "nextLink" ,container.Add ); if (null != this._value) { var __w = new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.XNodeArray(); @@ -87,6 +86,7 @@ public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode ToJso } container.Add("value",__w); } + AddIf( null != (((object)this._nextLink)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._nextLink.ToString()) : null, "nextLink" ,container.Add ); AfterToJson(ref container); return container; } @@ -103,8 +103,8 @@ internal VirtualNetworkPeeringList(Microsoft.Azure.PowerShell.Cmdlets.Databricks { return; } - {_nextLink = If( json?.PropertyT("nextLink"), out var __jsonNextLink) ? (string)__jsonNextLink : (string)NextLink;} {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeering) (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.VirtualNetworkPeering.FromJson(__u) )) ))() : null : Value;} + {_nextLink = If( json?.PropertyT("nextLink"), out var __jsonNextLink) ? (string)__jsonNextLink : (string)NextLink;} AfterFromJson(json); } } diff --git a/src/Databricks/generated/api/Models/Api20180401/VirtualNetworkPeeringPropertiesFormat.PowerShell.cs b/src/Databricks/generated/api/Models/Api20180401/VirtualNetworkPeeringPropertiesFormat.PowerShell.cs index 4f8550e7746f..4d80904a08d6 100644 --- a/src/Databricks/generated/api/Models/Api20180401/VirtualNetworkPeeringPropertiesFormat.PowerShell.cs +++ b/src/Databricks/generated/api/Models/Api20180401/VirtualNetworkPeeringPropertiesFormat.PowerShell.cs @@ -102,20 +102,20 @@ internal VirtualNetworkPeeringPropertiesFormat(global::System.Collections.IDicti return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).DatabricksAddressSpace = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IAddressSpace) content.GetValueForProperty("DatabricksAddressSpace",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).DatabricksAddressSpace, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.AddressSpaceTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).DatabricksVirtualNetwork = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatDatabricksVirtualNetwork) content.GetValueForProperty("DatabricksVirtualNetwork",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).DatabricksVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.VirtualNetworkPeeringPropertiesFormatDatabricksVirtualNetworkTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).RemoteAddressSpace = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IAddressSpace) content.GetValueForProperty("RemoteAddressSpace",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).RemoteAddressSpace, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.AddressSpaceTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).DatabricksAddressSpace = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IAddressSpace) content.GetValueForProperty("DatabricksAddressSpace",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).DatabricksAddressSpace, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.AddressSpaceTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).RemoteVirtualNetwork = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatRemoteVirtualNetwork) content.GetValueForProperty("RemoteVirtualNetwork",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).RemoteVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.VirtualNetworkPeeringPropertiesFormatRemoteVirtualNetworkTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).RemoteAddressSpace = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IAddressSpace) content.GetValueForProperty("RemoteAddressSpace",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).RemoteAddressSpace, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.AddressSpaceTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).AllowVirtualNetworkAccess = (bool?) content.GetValueForProperty("AllowVirtualNetworkAccess",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).AllowVirtualNetworkAccess, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).AllowForwardedTraffic = (bool?) content.GetValueForProperty("AllowForwardedTraffic",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).AllowForwardedTraffic, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).AllowGatewayTransit = (bool?) content.GetValueForProperty("AllowGatewayTransit",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).AllowGatewayTransit, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).AllowVirtualNetworkAccess = (bool?) content.GetValueForProperty("AllowVirtualNetworkAccess",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).AllowVirtualNetworkAccess, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).UseRemoteGateway = (bool?) content.GetValueForProperty("UseRemoteGateway",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).UseRemoteGateway, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).PeeringState = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.PeeringState?) content.GetValueForProperty("PeeringState",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).PeeringState, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.PeeringState.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.PeeringProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.PeeringProvisioningState.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).UseRemoteGateway = (bool?) content.GetValueForProperty("UseRemoteGateway",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).UseRemoteGateway, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).DatabrickAddressSpaceAddressPrefix = (string[]) content.GetValueForProperty("DatabrickAddressSpaceAddressPrefix",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).DatabrickAddressSpaceAddressPrefix, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).DatabrickVirtualNetworkId = (string) content.GetValueForProperty("DatabrickVirtualNetworkId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).DatabrickVirtualNetworkId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).RemoteAddressSpaceAddressPrefix = (string[]) content.GetValueForProperty("RemoteAddressSpaceAddressPrefix",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).RemoteAddressSpaceAddressPrefix, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).DatabrickAddressSpaceAddressPrefix = (string[]) content.GetValueForProperty("DatabrickAddressSpaceAddressPrefix",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).DatabrickAddressSpaceAddressPrefix, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).RemoteVirtualNetworkId = (string) content.GetValueForProperty("RemoteVirtualNetworkId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).RemoteVirtualNetworkId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).RemoteAddressSpaceAddressPrefix = (string[]) content.GetValueForProperty("RemoteAddressSpaceAddressPrefix",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).RemoteAddressSpaceAddressPrefix, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); AfterDeserializeDictionary(content); } @@ -133,20 +133,20 @@ internal VirtualNetworkPeeringPropertiesFormat(global::System.Management.Automat return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).DatabricksAddressSpace = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IAddressSpace) content.GetValueForProperty("DatabricksAddressSpace",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).DatabricksAddressSpace, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.AddressSpaceTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).DatabricksVirtualNetwork = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatDatabricksVirtualNetwork) content.GetValueForProperty("DatabricksVirtualNetwork",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).DatabricksVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.VirtualNetworkPeeringPropertiesFormatDatabricksVirtualNetworkTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).RemoteAddressSpace = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IAddressSpace) content.GetValueForProperty("RemoteAddressSpace",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).RemoteAddressSpace, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.AddressSpaceTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).DatabricksAddressSpace = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IAddressSpace) content.GetValueForProperty("DatabricksAddressSpace",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).DatabricksAddressSpace, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.AddressSpaceTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).RemoteVirtualNetwork = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatRemoteVirtualNetwork) content.GetValueForProperty("RemoteVirtualNetwork",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).RemoteVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.VirtualNetworkPeeringPropertiesFormatRemoteVirtualNetworkTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).RemoteAddressSpace = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IAddressSpace) content.GetValueForProperty("RemoteAddressSpace",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).RemoteAddressSpace, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.AddressSpaceTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).AllowVirtualNetworkAccess = (bool?) content.GetValueForProperty("AllowVirtualNetworkAccess",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).AllowVirtualNetworkAccess, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).AllowForwardedTraffic = (bool?) content.GetValueForProperty("AllowForwardedTraffic",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).AllowForwardedTraffic, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).AllowGatewayTransit = (bool?) content.GetValueForProperty("AllowGatewayTransit",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).AllowGatewayTransit, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).AllowVirtualNetworkAccess = (bool?) content.GetValueForProperty("AllowVirtualNetworkAccess",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).AllowVirtualNetworkAccess, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).UseRemoteGateway = (bool?) content.GetValueForProperty("UseRemoteGateway",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).UseRemoteGateway, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).PeeringState = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.PeeringState?) content.GetValueForProperty("PeeringState",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).PeeringState, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.PeeringState.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.PeeringProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.PeeringProvisioningState.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).UseRemoteGateway = (bool?) content.GetValueForProperty("UseRemoteGateway",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).UseRemoteGateway, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).DatabrickAddressSpaceAddressPrefix = (string[]) content.GetValueForProperty("DatabrickAddressSpaceAddressPrefix",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).DatabrickAddressSpaceAddressPrefix, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).DatabrickVirtualNetworkId = (string) content.GetValueForProperty("DatabrickVirtualNetworkId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).DatabrickVirtualNetworkId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).RemoteAddressSpaceAddressPrefix = (string[]) content.GetValueForProperty("RemoteAddressSpaceAddressPrefix",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).RemoteAddressSpaceAddressPrefix, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).DatabrickAddressSpaceAddressPrefix = (string[]) content.GetValueForProperty("DatabrickAddressSpaceAddressPrefix",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).DatabrickAddressSpaceAddressPrefix, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).RemoteVirtualNetworkId = (string) content.GetValueForProperty("RemoteVirtualNetworkId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).RemoteVirtualNetworkId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).RemoteAddressSpaceAddressPrefix = (string[]) content.GetValueForProperty("RemoteAddressSpaceAddressPrefix",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeeringPropertiesFormatInternal)this).RemoteAddressSpaceAddressPrefix, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); AfterDeserializePSObject(content); } } diff --git a/src/Databricks/generated/api/Models/Api20180401/VirtualNetworkPeeringPropertiesFormat.json.cs b/src/Databricks/generated/api/Models/Api20180401/VirtualNetworkPeeringPropertiesFormat.json.cs index 6a417c5fdc70..a2af909b27ad 100644 --- a/src/Databricks/generated/api/Models/Api20180401/VirtualNetworkPeeringPropertiesFormat.json.cs +++ b/src/Databricks/generated/api/Models/Api20180401/VirtualNetworkPeeringPropertiesFormat.json.cs @@ -78,13 +78,14 @@ public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode ToJso { return container; } - AddIf( null != this._databricksAddressSpace ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) this._databricksAddressSpace.ToJson(null,serializationMode) : null, "databricksAddressSpace" ,container.Add ); AddIf( null != this._databricksVirtualNetwork ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) this._databricksVirtualNetwork.ToJson(null,serializationMode) : null, "databricksVirtualNetwork" ,container.Add ); - AddIf( null != this._remoteAddressSpace ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) this._remoteAddressSpace.ToJson(null,serializationMode) : null, "remoteAddressSpace" ,container.Add ); + AddIf( null != this._databricksAddressSpace ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) this._databricksAddressSpace.ToJson(null,serializationMode) : null, "databricksAddressSpace" ,container.Add ); AddIf( null != this._remoteVirtualNetwork ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) this._remoteVirtualNetwork.ToJson(null,serializationMode) : null, "remoteVirtualNetwork" ,container.Add ); + AddIf( null != this._remoteAddressSpace ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) this._remoteAddressSpace.ToJson(null,serializationMode) : null, "remoteAddressSpace" ,container.Add ); + AddIf( null != this._allowVirtualNetworkAccess ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode)new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonBoolean((bool)this._allowVirtualNetworkAccess) : null, "allowVirtualNetworkAccess" ,container.Add ); AddIf( null != this._allowForwardedTraffic ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode)new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonBoolean((bool)this._allowForwardedTraffic) : null, "allowForwardedTraffic" ,container.Add ); AddIf( null != this._allowGatewayTransit ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode)new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonBoolean((bool)this._allowGatewayTransit) : null, "allowGatewayTransit" ,container.Add ); - AddIf( null != this._allowVirtualNetworkAccess ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode)new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonBoolean((bool)this._allowVirtualNetworkAccess) : null, "allowVirtualNetworkAccess" ,container.Add ); + AddIf( null != this._useRemoteGateway ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode)new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonBoolean((bool)this._useRemoteGateway) : null, "useRemoteGateways" ,container.Add ); if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SerializationMode.IncludeReadOnly)) { AddIf( null != (((object)this._peeringState)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._peeringState.ToString()) : null, "peeringState" ,container.Add ); @@ -93,7 +94,6 @@ public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode ToJso { AddIf( null != (((object)this._provisioningState)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._provisioningState.ToString()) : null, "provisioningState" ,container.Add ); } - AddIf( null != this._useRemoteGateway ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode)new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonBoolean((bool)this._useRemoteGateway) : null, "useRemoteGateways" ,container.Add ); AfterToJson(ref container); return container; } @@ -110,16 +110,16 @@ internal VirtualNetworkPeeringPropertiesFormat(Microsoft.Azure.PowerShell.Cmdlet { return; } - {_databricksAddressSpace = If( json?.PropertyT("databricksAddressSpace"), out var __jsonDatabricksAddressSpace) ? Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.AddressSpace.FromJson(__jsonDatabricksAddressSpace) : DatabricksAddressSpace;} {_databricksVirtualNetwork = If( json?.PropertyT("databricksVirtualNetwork"), out var __jsonDatabricksVirtualNetwork) ? Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.VirtualNetworkPeeringPropertiesFormatDatabricksVirtualNetwork.FromJson(__jsonDatabricksVirtualNetwork) : DatabricksVirtualNetwork;} - {_remoteAddressSpace = If( json?.PropertyT("remoteAddressSpace"), out var __jsonRemoteAddressSpace) ? Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.AddressSpace.FromJson(__jsonRemoteAddressSpace) : RemoteAddressSpace;} + {_databricksAddressSpace = If( json?.PropertyT("databricksAddressSpace"), out var __jsonDatabricksAddressSpace) ? Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.AddressSpace.FromJson(__jsonDatabricksAddressSpace) : DatabricksAddressSpace;} {_remoteVirtualNetwork = If( json?.PropertyT("remoteVirtualNetwork"), out var __jsonRemoteVirtualNetwork) ? Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.VirtualNetworkPeeringPropertiesFormatRemoteVirtualNetwork.FromJson(__jsonRemoteVirtualNetwork) : RemoteVirtualNetwork;} + {_remoteAddressSpace = If( json?.PropertyT("remoteAddressSpace"), out var __jsonRemoteAddressSpace) ? Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.AddressSpace.FromJson(__jsonRemoteAddressSpace) : RemoteAddressSpace;} + {_allowVirtualNetworkAccess = If( json?.PropertyT("allowVirtualNetworkAccess"), out var __jsonAllowVirtualNetworkAccess) ? (bool?)__jsonAllowVirtualNetworkAccess : AllowVirtualNetworkAccess;} {_allowForwardedTraffic = If( json?.PropertyT("allowForwardedTraffic"), out var __jsonAllowForwardedTraffic) ? (bool?)__jsonAllowForwardedTraffic : AllowForwardedTraffic;} {_allowGatewayTransit = If( json?.PropertyT("allowGatewayTransit"), out var __jsonAllowGatewayTransit) ? (bool?)__jsonAllowGatewayTransit : AllowGatewayTransit;} - {_allowVirtualNetworkAccess = If( json?.PropertyT("allowVirtualNetworkAccess"), out var __jsonAllowVirtualNetworkAccess) ? (bool?)__jsonAllowVirtualNetworkAccess : AllowVirtualNetworkAccess;} + {_useRemoteGateway = If( json?.PropertyT("useRemoteGateways"), out var __jsonUseRemoteGateways) ? (bool?)__jsonUseRemoteGateways : UseRemoteGateway;} {_peeringState = If( json?.PropertyT("peeringState"), out var __jsonPeeringState) ? (string)__jsonPeeringState : (string)PeeringState;} {_provisioningState = If( json?.PropertyT("provisioningState"), out var __jsonProvisioningState) ? (string)__jsonProvisioningState : (string)ProvisioningState;} - {_useRemoteGateway = If( json?.PropertyT("useRemoteGateways"), out var __jsonUseRemoteGateways) ? (bool?)__jsonUseRemoteGateways : UseRemoteGateway;} AfterFromJson(json); } } diff --git a/src/Databricks/generated/api/Models/Api20180401/Workspace.PowerShell.cs b/src/Databricks/generated/api/Models/Api20180401/Workspace.PowerShell.cs index 3fb6b0f48b3a..9dc443458934 100644 --- a/src/Databricks/generated/api/Models/Api20180401/Workspace.PowerShell.cs +++ b/src/Databricks/generated/api/Models/Api20180401/Workspace.PowerShell.cs @@ -101,61 +101,61 @@ internal Workspace(global::System.Collections.IDictionary content) // actually deserialize ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspacePropertiesTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).Sku = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ISku) content.GetValueForProperty("Sku",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).Sku, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.SkuTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IResourceInternal)this).Id, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IResourceInternal)this).Name, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IResourceInternal)this).Type, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IResourceInternal)this).Id, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ITrackedResourceInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ITrackedResourceInternal)this).Location, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ITrackedResourceInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ITrackedResourceTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ITrackedResourceInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.TrackedResourceTagsTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CreatedBy = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ICreatedBy) content.GetValueForProperty("CreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CreatedBy, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.CreatedByTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ITrackedResourceInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ITrackedResourceInternal)this).Location, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).SkuTier = (string) content.GetValueForProperty("SkuTier",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).SkuTier, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.ProvisioningState.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).SkuName = (string) content.GetValueForProperty("SkuName",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).SkuName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).SkuTier = (string) content.GetValueForProperty("SkuTier",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).SkuTier, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CreatedBy = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ICreatedBy) content.GetValueForProperty("CreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CreatedBy, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.CreatedByTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ManagedResourceGroupId = (string) content.GetValueForProperty("ManagedResourceGroupId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ManagedResourceGroupId, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).Parameter = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParameters) content.GetValueForProperty("Parameter",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).Parameter, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomParametersTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).StorageAccountIdentity = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IManagedIdentityConfiguration) content.GetValueForProperty("StorageAccountIdentity",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).StorageAccountIdentity, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ManagedIdentityConfigurationTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).UpdatedBy = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ICreatedBy) content.GetValueForProperty("UpdatedBy",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).UpdatedBy, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.CreatedByTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).UiDefinitionUri = (string) content.GetValueForProperty("UiDefinitionUri",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).UiDefinitionUri, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).Authorization = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceProviderAuthorization[]) content.GetValueForProperty("Authorization",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).Authorization, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceProviderAuthorizationTypeConverter.ConvertFrom)); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CreatedDateTime = (global::System.DateTime?) content.GetValueForProperty("CreatedDateTime",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CreatedDateTime, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ManagedResourceGroupId = (string) content.GetValueForProperty("ManagedResourceGroupId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ManagedResourceGroupId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).UiDefinitionUri = (string) content.GetValueForProperty("UiDefinitionUri",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).UiDefinitionUri, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).WorkspaceId = (string) content.GetValueForProperty("WorkspaceId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).WorkspaceId, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).Url = (string) content.GetValueForProperty("Url",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).Url, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CreatedByApplicationId = (string) content.GetValueForProperty("CreatedByApplicationId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CreatedByApplicationId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CreatedByOid = (string) content.GetValueForProperty("CreatedByOid",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CreatedByOid, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CreatedByPuid = (string) content.GetValueForProperty("CreatedByPuid",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CreatedByPuid, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterAmlWorkspaceId = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomStringParameter) content.GetValueForProperty("ParameterAmlWorkspaceId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterAmlWorkspaceId, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomStringParameterTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterCustomPrivateSubnetName = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomStringParameter) content.GetValueForProperty("ParameterCustomPrivateSubnetName",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterCustomPrivateSubnetName, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomStringParameterTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterCustomPublicSubnetName = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomStringParameter) content.GetValueForProperty("ParameterCustomPublicSubnetName",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterCustomPublicSubnetName, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomStringParameterTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterCustomVirtualNetworkId = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomStringParameter) content.GetValueForProperty("ParameterCustomVirtualNetworkId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterCustomVirtualNetworkId, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomStringParameterTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterEnableNoPublicIP = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomBooleanParameter) content.GetValueForProperty("ParameterEnableNoPublicIP",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterEnableNoPublicIP, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomBooleanParameterTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterEncryption = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceEncryptionParameter) content.GetValueForProperty("ParameterEncryption",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterEncryption, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceEncryptionParameterTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CreatedByOid = (string) content.GetValueForProperty("CreatedByOid",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CreatedByOid, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).UpdatedBy = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ICreatedBy) content.GetValueForProperty("UpdatedBy",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).UpdatedBy, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.CreatedByTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).StorageAccountIdentity = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IManagedIdentityConfiguration) content.GetValueForProperty("StorageAccountIdentity",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).StorageAccountIdentity, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ManagedIdentityConfigurationTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterPrepareEncryption = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomBooleanParameter) content.GetValueForProperty("ParameterPrepareEncryption",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterPrepareEncryption, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomBooleanParameterTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).StorageAccountIdentityType = (string) content.GetValueForProperty("StorageAccountIdentityType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).StorageAccountIdentityType, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterRequireInfrastructureEncryption = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomBooleanParameter) content.GetValueForProperty("ParameterRequireInfrastructureEncryption",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterRequireInfrastructureEncryption, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomBooleanParameterTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).EncryptionValue = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IEncryption) content.GetValueForProperty("EncryptionValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).EncryptionValue, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.EncryptionTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).StorageAccountIdentityType = (string) content.GetValueForProperty("StorageAccountIdentityType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).StorageAccountIdentityType, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).StorageAccountIdentityPrincipalId = (string) content.GetValueForProperty("StorageAccountIdentityPrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).StorageAccountIdentityPrincipalId, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).StorageAccountIdentityTenantId = (string) content.GetValueForProperty("StorageAccountIdentityTenantId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).StorageAccountIdentityTenantId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).StorageAccountIdentityPrincipalId = (string) content.GetValueForProperty("StorageAccountIdentityPrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).StorageAccountIdentityPrincipalId, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).UpdatedByApplicationId = (string) content.GetValueForProperty("UpdatedByApplicationId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).UpdatedByApplicationId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).UpdatedByOid = (string) content.GetValueForProperty("UpdatedByOid",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).UpdatedByOid, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).UpdatedByPuid = (string) content.GetValueForProperty("UpdatedByPuid",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).UpdatedByPuid, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).UpdatedByOid = (string) content.GetValueForProperty("UpdatedByOid",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).UpdatedByOid, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterEnableNoPublicIP = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomBooleanParameter) content.GetValueForProperty("ParameterEnableNoPublicIP",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterEnableNoPublicIP, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomBooleanParameterTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterCustomPublicSubnetName = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomStringParameter) content.GetValueForProperty("ParameterCustomPublicSubnetName",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterCustomPublicSubnetName, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomStringParameterTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterCustomPrivateSubnetName = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomStringParameter) content.GetValueForProperty("ParameterCustomPrivateSubnetName",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterCustomPrivateSubnetName, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomStringParameterTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterCustomVirtualNetworkId = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomStringParameter) content.GetValueForProperty("ParameterCustomVirtualNetworkId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterCustomVirtualNetworkId, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomStringParameterTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterAmlWorkspaceId = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomStringParameter) content.GetValueForProperty("ParameterAmlWorkspaceId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterAmlWorkspaceId, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomStringParameterTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterEncryption = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceEncryptionParameter) content.GetValueForProperty("ParameterEncryption",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterEncryption, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceEncryptionParameterTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CustomPrivateSubnetNameValue = (string) content.GetValueForProperty("CustomPrivateSubnetNameValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CustomPrivateSubnetNameValue, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).AmlWorkspaceIdType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("AmlWorkspaceIdType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).AmlWorkspaceIdType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).AmlWorkspaceIdValue = (string) content.GetValueForProperty("AmlWorkspaceIdValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).AmlWorkspaceIdValue, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).EncryptionKeyVersion = (string) content.GetValueForProperty("EncryptionKeyVersion",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).EncryptionKeyVersion, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).RequireInfrastructureEncryptionType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("RequireInfrastructureEncryptionType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).RequireInfrastructureEncryptionType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).RequireInfrastructureEncryption = (bool) content.GetValueForProperty("RequireInfrastructureEncryption",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).RequireInfrastructureEncryption, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).PrepareEncryptionType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("PrepareEncryptionType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).PrepareEncryptionType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).PrepareEncryption = (bool) content.GetValueForProperty("PrepareEncryption",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).PrepareEncryption, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).EnableNoPublicIPType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("EnableNoPublicIPType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).EnableNoPublicIPType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).EncryptionType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("EncryptionType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).EncryptionType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CustomPrivateSubnetNameType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("CustomPrivateSubnetNameType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CustomPrivateSubnetNameType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CustomPrivateSubnetNameValue = (string) content.GetValueForProperty("CustomPrivateSubnetNameValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CustomPrivateSubnetNameValue, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CustomPublicSubnetNameType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("CustomPublicSubnetNameType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CustomPublicSubnetNameType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CustomPublicSubnetNameValue = (string) content.GetValueForProperty("CustomPublicSubnetNameValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CustomPublicSubnetNameValue, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CustomVirtualNetworkIdType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("CustomVirtualNetworkIdType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CustomVirtualNetworkIdType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CustomPublicSubnetNameType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("CustomPublicSubnetNameType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CustomPublicSubnetNameType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CustomVirtualNetworkIdValue = (string) content.GetValueForProperty("CustomVirtualNetworkIdValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CustomVirtualNetworkIdValue, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).EnableNoPublicIPType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("EnableNoPublicIPType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).EnableNoPublicIPType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CustomVirtualNetworkIdType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("CustomVirtualNetworkIdType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CustomVirtualNetworkIdType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).EnableNoPublicIPValue = (bool) content.GetValueForProperty("EnableNoPublicIPValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).EnableNoPublicIPValue, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).EncryptionType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("EncryptionType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).EncryptionType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).EncryptionKeySource = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.KeySource?) content.GetValueForProperty("EncryptionKeySource",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).EncryptionKeySource, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.KeySource.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).PrepareEncryptionType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("PrepareEncryptionType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).PrepareEncryptionType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).PrepareEncryption = (bool) content.GetValueForProperty("PrepareEncryption",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).PrepareEncryption, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).RequireInfrastructureEncryptionType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("RequireInfrastructureEncryptionType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).RequireInfrastructureEncryptionType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).RequireInfrastructureEncryption = (bool) content.GetValueForProperty("RequireInfrastructureEncryption",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).RequireInfrastructureEncryption, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).EncryptionKeyName = (string) content.GetValueForProperty("EncryptionKeyName",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).EncryptionKeyName, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).EncryptionKeyVaultUri = (string) content.GetValueForProperty("EncryptionKeyVaultUri",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).EncryptionKeyVaultUri, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).EncryptionKeyVersion = (string) content.GetValueForProperty("EncryptionKeyVersion",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).EncryptionKeyVersion, global::System.Convert.ToString); AfterDeserializeDictionary(content); } @@ -175,61 +175,61 @@ internal Workspace(global::System.Management.Automation.PSObject content) // actually deserialize ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspacePropertiesTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).Sku = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ISku) content.GetValueForProperty("Sku",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).Sku, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.SkuTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IResourceInternal)this).Id, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IResourceInternal)this).Name, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IResourceInternal)this).Type, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IResourceInternal)this).Id, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ITrackedResourceInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ITrackedResourceInternal)this).Location, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ITrackedResourceInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ITrackedResourceTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ITrackedResourceInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.TrackedResourceTagsTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CreatedBy = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ICreatedBy) content.GetValueForProperty("CreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CreatedBy, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.CreatedByTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ITrackedResourceInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ITrackedResourceInternal)this).Location, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).SkuTier = (string) content.GetValueForProperty("SkuTier",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).SkuTier, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.ProvisioningState.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).SkuName = (string) content.GetValueForProperty("SkuName",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).SkuName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).SkuTier = (string) content.GetValueForProperty("SkuTier",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).SkuTier, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CreatedBy = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ICreatedBy) content.GetValueForProperty("CreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CreatedBy, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.CreatedByTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ManagedResourceGroupId = (string) content.GetValueForProperty("ManagedResourceGroupId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ManagedResourceGroupId, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).Parameter = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParameters) content.GetValueForProperty("Parameter",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).Parameter, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomParametersTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).StorageAccountIdentity = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IManagedIdentityConfiguration) content.GetValueForProperty("StorageAccountIdentity",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).StorageAccountIdentity, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ManagedIdentityConfigurationTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).UpdatedBy = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ICreatedBy) content.GetValueForProperty("UpdatedBy",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).UpdatedBy, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.CreatedByTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).UiDefinitionUri = (string) content.GetValueForProperty("UiDefinitionUri",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).UiDefinitionUri, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).Authorization = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceProviderAuthorization[]) content.GetValueForProperty("Authorization",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).Authorization, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceProviderAuthorizationTypeConverter.ConvertFrom)); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CreatedDateTime = (global::System.DateTime?) content.GetValueForProperty("CreatedDateTime",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CreatedDateTime, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ManagedResourceGroupId = (string) content.GetValueForProperty("ManagedResourceGroupId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ManagedResourceGroupId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).UiDefinitionUri = (string) content.GetValueForProperty("UiDefinitionUri",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).UiDefinitionUri, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).WorkspaceId = (string) content.GetValueForProperty("WorkspaceId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).WorkspaceId, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).Url = (string) content.GetValueForProperty("Url",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).Url, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CreatedByApplicationId = (string) content.GetValueForProperty("CreatedByApplicationId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CreatedByApplicationId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CreatedByOid = (string) content.GetValueForProperty("CreatedByOid",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CreatedByOid, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CreatedByPuid = (string) content.GetValueForProperty("CreatedByPuid",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CreatedByPuid, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterAmlWorkspaceId = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomStringParameter) content.GetValueForProperty("ParameterAmlWorkspaceId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterAmlWorkspaceId, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomStringParameterTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterCustomPrivateSubnetName = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomStringParameter) content.GetValueForProperty("ParameterCustomPrivateSubnetName",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterCustomPrivateSubnetName, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomStringParameterTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterCustomPublicSubnetName = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomStringParameter) content.GetValueForProperty("ParameterCustomPublicSubnetName",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterCustomPublicSubnetName, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomStringParameterTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterCustomVirtualNetworkId = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomStringParameter) content.GetValueForProperty("ParameterCustomVirtualNetworkId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterCustomVirtualNetworkId, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomStringParameterTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterEnableNoPublicIP = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomBooleanParameter) content.GetValueForProperty("ParameterEnableNoPublicIP",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterEnableNoPublicIP, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomBooleanParameterTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterEncryption = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceEncryptionParameter) content.GetValueForProperty("ParameterEncryption",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterEncryption, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceEncryptionParameterTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CreatedByOid = (string) content.GetValueForProperty("CreatedByOid",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CreatedByOid, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).UpdatedBy = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ICreatedBy) content.GetValueForProperty("UpdatedBy",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).UpdatedBy, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.CreatedByTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).StorageAccountIdentity = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IManagedIdentityConfiguration) content.GetValueForProperty("StorageAccountIdentity",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).StorageAccountIdentity, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ManagedIdentityConfigurationTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterPrepareEncryption = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomBooleanParameter) content.GetValueForProperty("ParameterPrepareEncryption",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterPrepareEncryption, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomBooleanParameterTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).StorageAccountIdentityType = (string) content.GetValueForProperty("StorageAccountIdentityType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).StorageAccountIdentityType, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterRequireInfrastructureEncryption = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomBooleanParameter) content.GetValueForProperty("ParameterRequireInfrastructureEncryption",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterRequireInfrastructureEncryption, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomBooleanParameterTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).EncryptionValue = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IEncryption) content.GetValueForProperty("EncryptionValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).EncryptionValue, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.EncryptionTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).StorageAccountIdentityType = (string) content.GetValueForProperty("StorageAccountIdentityType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).StorageAccountIdentityType, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).StorageAccountIdentityPrincipalId = (string) content.GetValueForProperty("StorageAccountIdentityPrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).StorageAccountIdentityPrincipalId, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).StorageAccountIdentityTenantId = (string) content.GetValueForProperty("StorageAccountIdentityTenantId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).StorageAccountIdentityTenantId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).StorageAccountIdentityPrincipalId = (string) content.GetValueForProperty("StorageAccountIdentityPrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).StorageAccountIdentityPrincipalId, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).UpdatedByApplicationId = (string) content.GetValueForProperty("UpdatedByApplicationId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).UpdatedByApplicationId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).UpdatedByOid = (string) content.GetValueForProperty("UpdatedByOid",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).UpdatedByOid, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).UpdatedByPuid = (string) content.GetValueForProperty("UpdatedByPuid",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).UpdatedByPuid, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).UpdatedByOid = (string) content.GetValueForProperty("UpdatedByOid",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).UpdatedByOid, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterEnableNoPublicIP = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomBooleanParameter) content.GetValueForProperty("ParameterEnableNoPublicIP",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterEnableNoPublicIP, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomBooleanParameterTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterCustomPublicSubnetName = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomStringParameter) content.GetValueForProperty("ParameterCustomPublicSubnetName",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterCustomPublicSubnetName, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomStringParameterTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterCustomPrivateSubnetName = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomStringParameter) content.GetValueForProperty("ParameterCustomPrivateSubnetName",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterCustomPrivateSubnetName, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomStringParameterTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterCustomVirtualNetworkId = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomStringParameter) content.GetValueForProperty("ParameterCustomVirtualNetworkId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterCustomVirtualNetworkId, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomStringParameterTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterAmlWorkspaceId = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomStringParameter) content.GetValueForProperty("ParameterAmlWorkspaceId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterAmlWorkspaceId, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomStringParameterTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterEncryption = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceEncryptionParameter) content.GetValueForProperty("ParameterEncryption",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).ParameterEncryption, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceEncryptionParameterTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CustomPrivateSubnetNameValue = (string) content.GetValueForProperty("CustomPrivateSubnetNameValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CustomPrivateSubnetNameValue, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).AmlWorkspaceIdType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("AmlWorkspaceIdType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).AmlWorkspaceIdType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).AmlWorkspaceIdValue = (string) content.GetValueForProperty("AmlWorkspaceIdValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).AmlWorkspaceIdValue, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).EncryptionKeyVersion = (string) content.GetValueForProperty("EncryptionKeyVersion",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).EncryptionKeyVersion, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).RequireInfrastructureEncryptionType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("RequireInfrastructureEncryptionType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).RequireInfrastructureEncryptionType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).RequireInfrastructureEncryption = (bool) content.GetValueForProperty("RequireInfrastructureEncryption",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).RequireInfrastructureEncryption, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).PrepareEncryptionType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("PrepareEncryptionType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).PrepareEncryptionType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).PrepareEncryption = (bool) content.GetValueForProperty("PrepareEncryption",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).PrepareEncryption, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).EnableNoPublicIPType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("EnableNoPublicIPType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).EnableNoPublicIPType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).EncryptionType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("EncryptionType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).EncryptionType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CustomPrivateSubnetNameType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("CustomPrivateSubnetNameType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CustomPrivateSubnetNameType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CustomPrivateSubnetNameValue = (string) content.GetValueForProperty("CustomPrivateSubnetNameValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CustomPrivateSubnetNameValue, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CustomPublicSubnetNameType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("CustomPublicSubnetNameType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CustomPublicSubnetNameType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CustomPublicSubnetNameValue = (string) content.GetValueForProperty("CustomPublicSubnetNameValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CustomPublicSubnetNameValue, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CustomVirtualNetworkIdType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("CustomVirtualNetworkIdType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CustomVirtualNetworkIdType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CustomPublicSubnetNameType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("CustomPublicSubnetNameType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CustomPublicSubnetNameType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CustomVirtualNetworkIdValue = (string) content.GetValueForProperty("CustomVirtualNetworkIdValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CustomVirtualNetworkIdValue, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).EnableNoPublicIPType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("EnableNoPublicIPType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).EnableNoPublicIPType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CustomVirtualNetworkIdType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("CustomVirtualNetworkIdType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).CustomVirtualNetworkIdType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).EnableNoPublicIPValue = (bool) content.GetValueForProperty("EnableNoPublicIPValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).EnableNoPublicIPValue, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).EncryptionType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("EncryptionType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).EncryptionType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).EncryptionKeySource = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.KeySource?) content.GetValueForProperty("EncryptionKeySource",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).EncryptionKeySource, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.KeySource.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).PrepareEncryptionType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("PrepareEncryptionType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).PrepareEncryptionType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).PrepareEncryption = (bool) content.GetValueForProperty("PrepareEncryption",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).PrepareEncryption, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).RequireInfrastructureEncryptionType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("RequireInfrastructureEncryptionType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).RequireInfrastructureEncryptionType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).RequireInfrastructureEncryption = (bool) content.GetValueForProperty("RequireInfrastructureEncryption",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).RequireInfrastructureEncryption, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).EncryptionKeyName = (string) content.GetValueForProperty("EncryptionKeyName",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).EncryptionKeyName, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).EncryptionKeyVaultUri = (string) content.GetValueForProperty("EncryptionKeyVaultUri",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).EncryptionKeyVaultUri, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).EncryptionKeyVersion = (string) content.GetValueForProperty("EncryptionKeyVersion",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceInternal)this).EncryptionKeyVersion, global::System.Convert.ToString); AfterDeserializePSObject(content); } } diff --git a/src/Databricks/generated/api/Models/Api20180401/WorkspaceCustomObjectParameter.PowerShell.cs b/src/Databricks/generated/api/Models/Api20180401/WorkspaceCustomObjectParameter.PowerShell.cs index 59196eafafaa..e651d1ae4c5c 100644 --- a/src/Databricks/generated/api/Models/Api20180401/WorkspaceCustomObjectParameter.PowerShell.cs +++ b/src/Databricks/generated/api/Models/Api20180401/WorkspaceCustomObjectParameter.PowerShell.cs @@ -102,7 +102,7 @@ internal WorkspaceCustomObjectParameter(global::System.Collections.IDictionary c } // actually deserialize ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomObjectParameterInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomObjectParameterInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomObjectParameterInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomObjectParameterValue) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomObjectParameterInternal)this).Value, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomObjectParameterValueTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomObjectParameterInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IAny) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomObjectParameterInternal)this).Value, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.AnyTypeConverter.ConvertFrom); AfterDeserializeDictionary(content); } @@ -121,7 +121,7 @@ internal WorkspaceCustomObjectParameter(global::System.Management.Automation.PSO } // actually deserialize ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomObjectParameterInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomObjectParameterInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomObjectParameterInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomObjectParameterValue) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomObjectParameterInternal)this).Value, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomObjectParameterValueTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomObjectParameterInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IAny) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomObjectParameterInternal)this).Value, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.AnyTypeConverter.ConvertFrom); AfterDeserializePSObject(content); } } diff --git a/src/Databricks/generated/api/Models/Api20180401/WorkspaceCustomObjectParameter.cs b/src/Databricks/generated/api/Models/Api20180401/WorkspaceCustomObjectParameter.cs index bf9cf536795d..ca61ad400d07 100644 --- a/src/Databricks/generated/api/Models/Api20180401/WorkspaceCustomObjectParameter.cs +++ b/src/Databricks/generated/api/Models/Api20180401/WorkspaceCustomObjectParameter.cs @@ -19,11 +19,11 @@ public partial class WorkspaceCustomObjectParameter : public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType? Type { get => this._type; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomObjectParameterValue _value; + private Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IAny _value; /// The value which should be used for this field. [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Origin(Microsoft.Azure.PowerShell.Cmdlets.Databricks.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomObjectParameterValue Value { get => (this._value = this._value ?? new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomObjectParameterValue()); set => this._value = value; } + public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IAny Value { get => (this._value = this._value ?? new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Any()); set => this._value = value; } /// Creates an new instance. public WorkspaceCustomObjectParameter() @@ -49,8 +49,8 @@ public partial interface IWorkspaceCustomObjectParameter : ReadOnly = false, Description = @"The value which should be used for this field.", SerializedName = @"value", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomObjectParameterValue) })] - Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomObjectParameterValue Value { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IAny) })] + Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IAny Value { get; set; } } /// The value which should be used for this field. @@ -60,7 +60,7 @@ internal partial interface IWorkspaceCustomObjectParameterInternal /// The type of variable that this is Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType? Type { get; set; } /// The value which should be used for this field. - Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomObjectParameterValue Value { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IAny Value { get; set; } } } \ No newline at end of file diff --git a/src/Databricks/generated/api/Models/Api20180401/WorkspaceCustomObjectParameter.json.cs b/src/Databricks/generated/api/Models/Api20180401/WorkspaceCustomObjectParameter.json.cs index db178e72f6b4..db431041eee3 100644 --- a/src/Databricks/generated/api/Models/Api20180401/WorkspaceCustomObjectParameter.json.cs +++ b/src/Databricks/generated/api/Models/Api20180401/WorkspaceCustomObjectParameter.json.cs @@ -99,7 +99,7 @@ internal WorkspaceCustomObjectParameter(Microsoft.Azure.PowerShell.Cmdlets.Datab return; } {_type = If( json?.PropertyT("type"), out var __jsonType) ? (string)__jsonType : (string)Type;} - {_value = If( json?.PropertyT("value"), out var __jsonValue) ? Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomObjectParameterValue.FromJson(__jsonValue) : Value;} + {_value = If( json?.PropertyT("value"), out var __jsonValue) ? Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Any.FromJson(__jsonValue) : Value;} AfterFromJson(json); } } diff --git a/src/Databricks/generated/api/Models/Api20180401/WorkspaceCustomObjectParameterValue.cs b/src/Databricks/generated/api/Models/Api20180401/WorkspaceCustomObjectParameterValue.cs deleted file mode 100644 index 8083e940834a..000000000000 --- a/src/Databricks/generated/api/Models/Api20180401/WorkspaceCustomObjectParameterValue.cs +++ /dev/null @@ -1,29 +0,0 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401 -{ - using static Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Extensions; - - /// The value which should be used for this field. - public partial class WorkspaceCustomObjectParameterValue : - Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomObjectParameterValue, - Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomObjectParameterValueInternal - { - - /// Creates an new instance. - public WorkspaceCustomObjectParameterValue() - { - - } - } - /// The value which should be used for this field. - public partial interface IWorkspaceCustomObjectParameterValue : - Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IJsonSerializable - { - - } - /// The value which should be used for this field. - internal partial interface IWorkspaceCustomObjectParameterValueInternal - - { - - } -} \ No newline at end of file diff --git a/src/Databricks/generated/api/Models/Api20180401/WorkspaceCustomParameters.PowerShell.cs b/src/Databricks/generated/api/Models/Api20180401/WorkspaceCustomParameters.PowerShell.cs index 959f510152f4..ec7d2d8f0c66 100644 --- a/src/Databricks/generated/api/Models/Api20180401/WorkspaceCustomParameters.PowerShell.cs +++ b/src/Databricks/generated/api/Models/Api20180401/WorkspaceCustomParameters.PowerShell.cs @@ -102,33 +102,33 @@ internal WorkspaceCustomParameters(global::System.Collections.IDictionary conten } // actually deserialize ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).AmlWorkspaceId = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomStringParameter) content.GetValueForProperty("AmlWorkspaceId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).AmlWorkspaceId, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomStringParameterTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomPrivateSubnetName = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomStringParameter) content.GetValueForProperty("CustomPrivateSubnetName",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomPrivateSubnetName, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomStringParameterTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomPublicSubnetName = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomStringParameter) content.GetValueForProperty("CustomPublicSubnetName",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomPublicSubnetName, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomStringParameterTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomVirtualNetworkId = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomStringParameter) content.GetValueForProperty("CustomVirtualNetworkId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomVirtualNetworkId, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomStringParameterTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomPublicSubnetName = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomStringParameter) content.GetValueForProperty("CustomPublicSubnetName",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomPublicSubnetName, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomStringParameterTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomPrivateSubnetName = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomStringParameter) content.GetValueForProperty("CustomPrivateSubnetName",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomPrivateSubnetName, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomStringParameterTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).EnableNoPublicIP = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomBooleanParameter) content.GetValueForProperty("EnableNoPublicIP",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).EnableNoPublicIP, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomBooleanParameterTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).Encryption = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceEncryptionParameter) content.GetValueForProperty("Encryption",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).Encryption, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceEncryptionParameterTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).PrepareEncryption = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomBooleanParameter) content.GetValueForProperty("PrepareEncryption",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).PrepareEncryption, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomBooleanParameterTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).Encryption = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceEncryptionParameter) content.GetValueForProperty("Encryption",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).Encryption, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceEncryptionParameterTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).RequireInfrastructureEncryption = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomBooleanParameter) content.GetValueForProperty("RequireInfrastructureEncryption",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).RequireInfrastructureEncryption, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomBooleanParameterTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).EncryptionValue = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IEncryption) content.GetValueForProperty("EncryptionValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).EncryptionValue, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.EncryptionTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).AmlWorkspaceIdType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("AmlWorkspaceIdType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).AmlWorkspaceIdType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).AmlWorkspaceIdValue = (string) content.GetValueForProperty("AmlWorkspaceIdValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).AmlWorkspaceIdValue, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomPrivateSubnetNameType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("CustomPrivateSubnetNameType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomPrivateSubnetNameType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomPrivateSubnetNameValue = (string) content.GetValueForProperty("CustomPrivateSubnetNameValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomPrivateSubnetNameValue, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomPublicSubnetNameType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("CustomPublicSubnetNameType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomPublicSubnetNameType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomPublicSubnetNameValue = (string) content.GetValueForProperty("CustomPublicSubnetNameValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomPublicSubnetNameValue, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).PrepareEncryptionType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("PrepareEncryptionType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).PrepareEncryptionType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomVirtualNetworkIdType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("CustomVirtualNetworkIdType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomVirtualNetworkIdType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomVirtualNetworkIdValue = (string) content.GetValueForProperty("CustomVirtualNetworkIdValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomVirtualNetworkIdValue, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomPublicSubnetNameType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("CustomPublicSubnetNameType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomPublicSubnetNameType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomPublicSubnetNameValue = (string) content.GetValueForProperty("CustomPublicSubnetNameValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomPublicSubnetNameValue, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomPrivateSubnetNameType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("CustomPrivateSubnetNameType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomPrivateSubnetNameType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomPrivateSubnetNameValue = (string) content.GetValueForProperty("CustomPrivateSubnetNameValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomPrivateSubnetNameValue, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).EnableNoPublicIPType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("EnableNoPublicIPType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).EnableNoPublicIPType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).EnableNoPublicIPValue = (bool) content.GetValueForProperty("EnableNoPublicIPValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).EnableNoPublicIPValue, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).AmlWorkspaceIdValue = (string) content.GetValueForProperty("AmlWorkspaceIdValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).AmlWorkspaceIdValue, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).PrepareEncryptionValue = (bool) content.GetValueForProperty("PrepareEncryptionValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).PrepareEncryptionValue, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).AmlWorkspaceIdType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("AmlWorkspaceIdType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).AmlWorkspaceIdType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).EncryptionType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("EncryptionType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).EncryptionType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).ValueKeySource = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.KeySource?) content.GetValueForProperty("ValueKeySource",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).ValueKeySource, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.KeySource.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).PrepareEncryptionType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("PrepareEncryptionType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).PrepareEncryptionType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).PrepareEncryptionValue = (bool) content.GetValueForProperty("PrepareEncryptionValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).PrepareEncryptionValue, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).ValueKeyVersion = (string) content.GetValueForProperty("ValueKeyVersion",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).ValueKeyVersion, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).RequireInfrastructureEncryptionType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("RequireInfrastructureEncryptionType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).RequireInfrastructureEncryptionType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).RequireInfrastructureEncryptionValue = (bool) content.GetValueForProperty("RequireInfrastructureEncryptionValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).RequireInfrastructureEncryptionValue, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).ValueKeyName = (string) content.GetValueForProperty("ValueKeyName",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).ValueKeyName, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).ValueKeyVaultUri = (string) content.GetValueForProperty("ValueKeyVaultUri",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).ValueKeyVaultUri, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).ValueKeyVersion = (string) content.GetValueForProperty("ValueKeyVersion",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).ValueKeyVersion, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).ValueKeyName = (string) content.GetValueForProperty("ValueKeyName",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).ValueKeyName, global::System.Convert.ToString); AfterDeserializeDictionary(content); } @@ -147,33 +147,33 @@ internal WorkspaceCustomParameters(global::System.Management.Automation.PSObject } // actually deserialize ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).AmlWorkspaceId = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomStringParameter) content.GetValueForProperty("AmlWorkspaceId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).AmlWorkspaceId, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomStringParameterTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomPrivateSubnetName = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomStringParameter) content.GetValueForProperty("CustomPrivateSubnetName",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomPrivateSubnetName, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomStringParameterTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomPublicSubnetName = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomStringParameter) content.GetValueForProperty("CustomPublicSubnetName",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomPublicSubnetName, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomStringParameterTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomVirtualNetworkId = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomStringParameter) content.GetValueForProperty("CustomVirtualNetworkId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomVirtualNetworkId, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomStringParameterTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomPublicSubnetName = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomStringParameter) content.GetValueForProperty("CustomPublicSubnetName",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomPublicSubnetName, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomStringParameterTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomPrivateSubnetName = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomStringParameter) content.GetValueForProperty("CustomPrivateSubnetName",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomPrivateSubnetName, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomStringParameterTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).EnableNoPublicIP = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomBooleanParameter) content.GetValueForProperty("EnableNoPublicIP",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).EnableNoPublicIP, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomBooleanParameterTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).Encryption = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceEncryptionParameter) content.GetValueForProperty("Encryption",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).Encryption, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceEncryptionParameterTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).PrepareEncryption = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomBooleanParameter) content.GetValueForProperty("PrepareEncryption",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).PrepareEncryption, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomBooleanParameterTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).Encryption = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceEncryptionParameter) content.GetValueForProperty("Encryption",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).Encryption, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceEncryptionParameterTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).RequireInfrastructureEncryption = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomBooleanParameter) content.GetValueForProperty("RequireInfrastructureEncryption",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).RequireInfrastructureEncryption, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomBooleanParameterTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).EncryptionValue = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IEncryption) content.GetValueForProperty("EncryptionValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).EncryptionValue, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.EncryptionTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).AmlWorkspaceIdType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("AmlWorkspaceIdType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).AmlWorkspaceIdType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).AmlWorkspaceIdValue = (string) content.GetValueForProperty("AmlWorkspaceIdValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).AmlWorkspaceIdValue, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomPrivateSubnetNameType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("CustomPrivateSubnetNameType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomPrivateSubnetNameType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomPrivateSubnetNameValue = (string) content.GetValueForProperty("CustomPrivateSubnetNameValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomPrivateSubnetNameValue, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomPublicSubnetNameType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("CustomPublicSubnetNameType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomPublicSubnetNameType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomPublicSubnetNameValue = (string) content.GetValueForProperty("CustomPublicSubnetNameValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomPublicSubnetNameValue, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).PrepareEncryptionType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("PrepareEncryptionType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).PrepareEncryptionType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomVirtualNetworkIdType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("CustomVirtualNetworkIdType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomVirtualNetworkIdType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomVirtualNetworkIdValue = (string) content.GetValueForProperty("CustomVirtualNetworkIdValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomVirtualNetworkIdValue, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomPublicSubnetNameType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("CustomPublicSubnetNameType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomPublicSubnetNameType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomPublicSubnetNameValue = (string) content.GetValueForProperty("CustomPublicSubnetNameValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomPublicSubnetNameValue, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomPrivateSubnetNameType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("CustomPrivateSubnetNameType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomPrivateSubnetNameType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomPrivateSubnetNameValue = (string) content.GetValueForProperty("CustomPrivateSubnetNameValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).CustomPrivateSubnetNameValue, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).EnableNoPublicIPType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("EnableNoPublicIPType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).EnableNoPublicIPType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).EnableNoPublicIPValue = (bool) content.GetValueForProperty("EnableNoPublicIPValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).EnableNoPublicIPValue, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).AmlWorkspaceIdValue = (string) content.GetValueForProperty("AmlWorkspaceIdValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).AmlWorkspaceIdValue, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).PrepareEncryptionValue = (bool) content.GetValueForProperty("PrepareEncryptionValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).PrepareEncryptionValue, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).AmlWorkspaceIdType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("AmlWorkspaceIdType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).AmlWorkspaceIdType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).EncryptionType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("EncryptionType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).EncryptionType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).ValueKeySource = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.KeySource?) content.GetValueForProperty("ValueKeySource",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).ValueKeySource, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.KeySource.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).PrepareEncryptionType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("PrepareEncryptionType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).PrepareEncryptionType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).PrepareEncryptionValue = (bool) content.GetValueForProperty("PrepareEncryptionValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).PrepareEncryptionValue, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).ValueKeyVersion = (string) content.GetValueForProperty("ValueKeyVersion",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).ValueKeyVersion, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).RequireInfrastructureEncryptionType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("RequireInfrastructureEncryptionType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).RequireInfrastructureEncryptionType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).RequireInfrastructureEncryptionValue = (bool) content.GetValueForProperty("RequireInfrastructureEncryptionValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).RequireInfrastructureEncryptionValue, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).ValueKeyName = (string) content.GetValueForProperty("ValueKeyName",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).ValueKeyName, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).ValueKeyVaultUri = (string) content.GetValueForProperty("ValueKeyVaultUri",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).ValueKeyVaultUri, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).ValueKeyVersion = (string) content.GetValueForProperty("ValueKeyVersion",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).ValueKeyVersion, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).ValueKeyName = (string) content.GetValueForProperty("ValueKeyName",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParametersInternal)this).ValueKeyName, global::System.Convert.ToString); AfterDeserializePSObject(content); } } diff --git a/src/Databricks/generated/api/Models/Api20180401/WorkspaceCustomParameters.json.cs b/src/Databricks/generated/api/Models/Api20180401/WorkspaceCustomParameters.json.cs index 1c45a7d331f1..4f7cfc699a0f 100644 --- a/src/Databricks/generated/api/Models/Api20180401/WorkspaceCustomParameters.json.cs +++ b/src/Databricks/generated/api/Models/Api20180401/WorkspaceCustomParameters.json.cs @@ -78,12 +78,12 @@ public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode ToJso return container; } AddIf( null != this._amlWorkspaceId ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) this._amlWorkspaceId.ToJson(null,serializationMode) : null, "amlWorkspaceId" ,container.Add ); - AddIf( null != this._customPrivateSubnetName ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) this._customPrivateSubnetName.ToJson(null,serializationMode) : null, "customPrivateSubnetName" ,container.Add ); - AddIf( null != this._customPublicSubnetName ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) this._customPublicSubnetName.ToJson(null,serializationMode) : null, "customPublicSubnetName" ,container.Add ); AddIf( null != this._customVirtualNetworkId ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) this._customVirtualNetworkId.ToJson(null,serializationMode) : null, "customVirtualNetworkId" ,container.Add ); + AddIf( null != this._customPublicSubnetName ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) this._customPublicSubnetName.ToJson(null,serializationMode) : null, "customPublicSubnetName" ,container.Add ); + AddIf( null != this._customPrivateSubnetName ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) this._customPrivateSubnetName.ToJson(null,serializationMode) : null, "customPrivateSubnetName" ,container.Add ); AddIf( null != this._enableNoPublicIP ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) this._enableNoPublicIP.ToJson(null,serializationMode) : null, "enableNoPublicIp" ,container.Add ); - AddIf( null != this._encryption ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) this._encryption.ToJson(null,serializationMode) : null, "encryption" ,container.Add ); AddIf( null != this._prepareEncryption ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) this._prepareEncryption.ToJson(null,serializationMode) : null, "prepareEncryption" ,container.Add ); + AddIf( null != this._encryption ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) this._encryption.ToJson(null,serializationMode) : null, "encryption" ,container.Add ); AddIf( null != this._requireInfrastructureEncryption ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) this._requireInfrastructureEncryption.ToJson(null,serializationMode) : null, "requireInfrastructureEncryption" ,container.Add ); AfterToJson(ref container); return container; @@ -102,12 +102,12 @@ internal WorkspaceCustomParameters(Microsoft.Azure.PowerShell.Cmdlets.Databricks return; } {_amlWorkspaceId = If( json?.PropertyT("amlWorkspaceId"), out var __jsonAmlWorkspaceId) ? Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomStringParameter.FromJson(__jsonAmlWorkspaceId) : AmlWorkspaceId;} - {_customPrivateSubnetName = If( json?.PropertyT("customPrivateSubnetName"), out var __jsonCustomPrivateSubnetName) ? Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomStringParameter.FromJson(__jsonCustomPrivateSubnetName) : CustomPrivateSubnetName;} - {_customPublicSubnetName = If( json?.PropertyT("customPublicSubnetName"), out var __jsonCustomPublicSubnetName) ? Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomStringParameter.FromJson(__jsonCustomPublicSubnetName) : CustomPublicSubnetName;} {_customVirtualNetworkId = If( json?.PropertyT("customVirtualNetworkId"), out var __jsonCustomVirtualNetworkId) ? Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomStringParameter.FromJson(__jsonCustomVirtualNetworkId) : CustomVirtualNetworkId;} + {_customPublicSubnetName = If( json?.PropertyT("customPublicSubnetName"), out var __jsonCustomPublicSubnetName) ? Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomStringParameter.FromJson(__jsonCustomPublicSubnetName) : CustomPublicSubnetName;} + {_customPrivateSubnetName = If( json?.PropertyT("customPrivateSubnetName"), out var __jsonCustomPrivateSubnetName) ? Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomStringParameter.FromJson(__jsonCustomPrivateSubnetName) : CustomPrivateSubnetName;} {_enableNoPublicIP = If( json?.PropertyT("enableNoPublicIp"), out var __jsonEnableNoPublicIP) ? Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomBooleanParameter.FromJson(__jsonEnableNoPublicIP) : EnableNoPublicIP;} - {_encryption = If( json?.PropertyT("encryption"), out var __jsonEncryption) ? Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceEncryptionParameter.FromJson(__jsonEncryption) : Encryption;} {_prepareEncryption = If( json?.PropertyT("prepareEncryption"), out var __jsonPrepareEncryption) ? Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomBooleanParameter.FromJson(__jsonPrepareEncryption) : PrepareEncryption;} + {_encryption = If( json?.PropertyT("encryption"), out var __jsonEncryption) ? Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceEncryptionParameter.FromJson(__jsonEncryption) : Encryption;} {_requireInfrastructureEncryption = If( json?.PropertyT("requireInfrastructureEncryption"), out var __jsonRequireInfrastructureEncryption) ? Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomBooleanParameter.FromJson(__jsonRequireInfrastructureEncryption) : RequireInfrastructureEncryption;} AfterFromJson(json); } diff --git a/src/Databricks/generated/api/Models/Api20180401/WorkspaceEncryptionParameter.PowerShell.cs b/src/Databricks/generated/api/Models/Api20180401/WorkspaceEncryptionParameter.PowerShell.cs index 948b0a6f19da..d8d1817478c0 100644 --- a/src/Databricks/generated/api/Models/Api20180401/WorkspaceEncryptionParameter.PowerShell.cs +++ b/src/Databricks/generated/api/Models/Api20180401/WorkspaceEncryptionParameter.PowerShell.cs @@ -104,9 +104,9 @@ internal WorkspaceEncryptionParameter(global::System.Collections.IDictionary con ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceEncryptionParameterInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IEncryption) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceEncryptionParameterInternal)this).Value, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.EncryptionTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceEncryptionParameterInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceEncryptionParameterInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceEncryptionParameterInternal)this).ValueKeySource = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.KeySource?) content.GetValueForProperty("ValueKeySource",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceEncryptionParameterInternal)this).ValueKeySource, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.KeySource.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceEncryptionParameterInternal)this).ValueKeyVersion = (string) content.GetValueForProperty("ValueKeyVersion",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceEncryptionParameterInternal)this).ValueKeyVersion, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceEncryptionParameterInternal)this).ValueKeyName = (string) content.GetValueForProperty("ValueKeyName",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceEncryptionParameterInternal)this).ValueKeyName, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceEncryptionParameterInternal)this).ValueKeyVaultUri = (string) content.GetValueForProperty("ValueKeyVaultUri",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceEncryptionParameterInternal)this).ValueKeyVaultUri, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceEncryptionParameterInternal)this).ValueKeyVersion = (string) content.GetValueForProperty("ValueKeyVersion",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceEncryptionParameterInternal)this).ValueKeyVersion, global::System.Convert.ToString); AfterDeserializeDictionary(content); } @@ -127,9 +127,9 @@ internal WorkspaceEncryptionParameter(global::System.Management.Automation.PSObj ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceEncryptionParameterInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IEncryption) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceEncryptionParameterInternal)this).Value, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.EncryptionTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceEncryptionParameterInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceEncryptionParameterInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceEncryptionParameterInternal)this).ValueKeySource = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.KeySource?) content.GetValueForProperty("ValueKeySource",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceEncryptionParameterInternal)this).ValueKeySource, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.KeySource.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceEncryptionParameterInternal)this).ValueKeyVersion = (string) content.GetValueForProperty("ValueKeyVersion",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceEncryptionParameterInternal)this).ValueKeyVersion, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceEncryptionParameterInternal)this).ValueKeyName = (string) content.GetValueForProperty("ValueKeyName",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceEncryptionParameterInternal)this).ValueKeyName, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceEncryptionParameterInternal)this).ValueKeyVaultUri = (string) content.GetValueForProperty("ValueKeyVaultUri",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceEncryptionParameterInternal)this).ValueKeyVaultUri, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceEncryptionParameterInternal)this).ValueKeyVersion = (string) content.GetValueForProperty("ValueKeyVersion",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceEncryptionParameterInternal)this).ValueKeyVersion, global::System.Convert.ToString); AfterDeserializePSObject(content); } } diff --git a/src/Databricks/generated/api/Models/Api20180401/WorkspaceListResult.PowerShell.cs b/src/Databricks/generated/api/Models/Api20180401/WorkspaceListResult.PowerShell.cs index 8021e57623f8..906433b82f5c 100644 --- a/src/Databricks/generated/api/Models/Api20180401/WorkspaceListResult.PowerShell.cs +++ b/src/Databricks/generated/api/Models/Api20180401/WorkspaceListResult.PowerShell.cs @@ -99,8 +99,8 @@ internal WorkspaceListResult(global::System.Collections.IDictionary content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceListResultInternal)this).NextLink, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspace[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceListResultInternal)this).NextLink, global::System.Convert.ToString); AfterDeserializeDictionary(content); } @@ -118,8 +118,8 @@ internal WorkspaceListResult(global::System.Management.Automation.PSObject conte return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceListResultInternal)this).NextLink, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspace[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceListResultInternal)this).NextLink, global::System.Convert.ToString); AfterDeserializePSObject(content); } } diff --git a/src/Databricks/generated/api/Models/Api20180401/WorkspaceListResult.json.cs b/src/Databricks/generated/api/Models/Api20180401/WorkspaceListResult.json.cs index 41f8c7ea1a3d..4881e09318ac 100644 --- a/src/Databricks/generated/api/Models/Api20180401/WorkspaceListResult.json.cs +++ b/src/Databricks/generated/api/Models/Api20180401/WorkspaceListResult.json.cs @@ -77,7 +77,6 @@ public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode ToJso { return container; } - AddIf( null != (((object)this._nextLink)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._nextLink.ToString()) : null, "nextLink" ,container.Add ); if (null != this._value) { var __w = new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.XNodeArray(); @@ -87,6 +86,7 @@ public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode ToJso } container.Add("value",__w); } + AddIf( null != (((object)this._nextLink)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._nextLink.ToString()) : null, "nextLink" ,container.Add ); AfterToJson(ref container); return container; } @@ -103,8 +103,8 @@ internal WorkspaceListResult(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runti { return; } - {_nextLink = If( json?.PropertyT("nextLink"), out var __jsonNextLink) ? (string)__jsonNextLink : (string)NextLink;} {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspace) (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.Workspace.FromJson(__u) )) ))() : null : Value;} + {_nextLink = If( json?.PropertyT("nextLink"), out var __jsonNextLink) ? (string)__jsonNextLink : (string)NextLink;} AfterFromJson(json); } } diff --git a/src/Databricks/generated/api/Models/Api20180401/WorkspaceProperties.PowerShell.cs b/src/Databricks/generated/api/Models/Api20180401/WorkspaceProperties.PowerShell.cs index 825ecad8ff78..7442a6b513a0 100644 --- a/src/Databricks/generated/api/Models/Api20180401/WorkspaceProperties.PowerShell.cs +++ b/src/Databricks/generated/api/Models/Api20180401/WorkspaceProperties.PowerShell.cs @@ -99,54 +99,54 @@ internal WorkspaceProperties(global::System.Collections.IDictionary content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CreatedBy = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ICreatedBy) content.GetValueForProperty("CreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CreatedBy, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.CreatedByTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).Parameter = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParameters) content.GetValueForProperty("Parameter",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).Parameter, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomParametersTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).StorageAccountIdentity = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IManagedIdentityConfiguration) content.GetValueForProperty("StorageAccountIdentity",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).StorageAccountIdentity, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ManagedIdentityConfigurationTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CreatedBy = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ICreatedBy) content.GetValueForProperty("CreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CreatedBy, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.CreatedByTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).UpdatedBy = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ICreatedBy) content.GetValueForProperty("UpdatedBy",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).UpdatedBy, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.CreatedByTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).Authorization = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceProviderAuthorization[]) content.GetValueForProperty("Authorization",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).Authorization, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceProviderAuthorizationTypeConverter.ConvertFrom)); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CreatedDateTime = (global::System.DateTime?) content.GetValueForProperty("CreatedDateTime",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CreatedDateTime, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).StorageAccountIdentity = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IManagedIdentityConfiguration) content.GetValueForProperty("StorageAccountIdentity",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).StorageAccountIdentity, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ManagedIdentityConfigurationTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ManagedResourceGroupId = (string) content.GetValueForProperty("ManagedResourceGroupId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ManagedResourceGroupId, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.ProvisioningState.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).UiDefinitionUri = (string) content.GetValueForProperty("UiDefinitionUri",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).UiDefinitionUri, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).Authorization = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceProviderAuthorization[]) content.GetValueForProperty("Authorization",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).Authorization, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceProviderAuthorizationTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CreatedDateTime = (global::System.DateTime?) content.GetValueForProperty("CreatedDateTime",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CreatedDateTime, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).WorkspaceId = (string) content.GetValueForProperty("WorkspaceId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).WorkspaceId, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).WorkspaceUrl = (string) content.GetValueForProperty("WorkspaceUrl",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).WorkspaceUrl, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CreatedByApplicationId = (string) content.GetValueForProperty("CreatedByApplicationId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CreatedByApplicationId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CreatedByOid = (string) content.GetValueForProperty("CreatedByOid",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CreatedByOid, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CreatedByPuid = (string) content.GetValueForProperty("CreatedByPuid",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CreatedByPuid, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CreatedByOid = (string) content.GetValueForProperty("CreatedByOid",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CreatedByOid, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ParameterAmlWorkspaceId = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomStringParameter) content.GetValueForProperty("ParameterAmlWorkspaceId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ParameterAmlWorkspaceId, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomStringParameterTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ParameterCustomPrivateSubnetName = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomStringParameter) content.GetValueForProperty("ParameterCustomPrivateSubnetName",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ParameterCustomPrivateSubnetName, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomStringParameterTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ParameterCustomPublicSubnetName = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomStringParameter) content.GetValueForProperty("ParameterCustomPublicSubnetName",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ParameterCustomPublicSubnetName, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomStringParameterTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ParameterCustomVirtualNetworkId = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomStringParameter) content.GetValueForProperty("ParameterCustomVirtualNetworkId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ParameterCustomVirtualNetworkId, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomStringParameterTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ParameterEnableNoPublicIP = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomBooleanParameter) content.GetValueForProperty("ParameterEnableNoPublicIP",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ParameterEnableNoPublicIP, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomBooleanParameterTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ParameterEncryption = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceEncryptionParameter) content.GetValueForProperty("ParameterEncryption",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ParameterEncryption, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceEncryptionParameterTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ParameterPrepareEncryption = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomBooleanParameter) content.GetValueForProperty("ParameterPrepareEncryption",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ParameterPrepareEncryption, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomBooleanParameterTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ParameterEncryption = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceEncryptionParameter) content.GetValueForProperty("ParameterEncryption",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ParameterEncryption, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceEncryptionParameterTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ParameterRequireInfrastructureEncryption = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomBooleanParameter) content.GetValueForProperty("ParameterRequireInfrastructureEncryption",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ParameterRequireInfrastructureEncryption, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomBooleanParameterTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).EncryptionValue = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IEncryption) content.GetValueForProperty("EncryptionValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).EncryptionValue, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.EncryptionTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).StorageAccountIdentityType = (string) content.GetValueForProperty("StorageAccountIdentityType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).StorageAccountIdentityType, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).StorageAccountIdentityPrincipalId = (string) content.GetValueForProperty("StorageAccountIdentityPrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).StorageAccountIdentityPrincipalId, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).StorageAccountIdentityTenantId = (string) content.GetValueForProperty("StorageAccountIdentityTenantId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).StorageAccountIdentityTenantId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).StorageAccountIdentityPrincipalId = (string) content.GetValueForProperty("StorageAccountIdentityPrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).StorageAccountIdentityPrincipalId, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).UpdatedByApplicationId = (string) content.GetValueForProperty("UpdatedByApplicationId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).UpdatedByApplicationId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).UpdatedByOid = (string) content.GetValueForProperty("UpdatedByOid",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).UpdatedByOid, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).UpdatedByPuid = (string) content.GetValueForProperty("UpdatedByPuid",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).UpdatedByPuid, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).AmlWorkspaceIdType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("AmlWorkspaceIdType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).AmlWorkspaceIdType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).AmlWorkspaceIdValue = (string) content.GetValueForProperty("AmlWorkspaceIdValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).AmlWorkspaceIdValue, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CustomPrivateSubnetNameType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("CustomPrivateSubnetNameType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CustomPrivateSubnetNameType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CustomPrivateSubnetNameValue = (string) content.GetValueForProperty("CustomPrivateSubnetNameValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CustomPrivateSubnetNameValue, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CustomPublicSubnetNameType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("CustomPublicSubnetNameType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CustomPublicSubnetNameType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CustomPublicSubnetNameValue = (string) content.GetValueForProperty("CustomPublicSubnetNameValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CustomPublicSubnetNameValue, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CustomVirtualNetworkIdType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("CustomVirtualNetworkIdType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CustomVirtualNetworkIdType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CustomVirtualNetworkIdValue = (string) content.GetValueForProperty("CustomVirtualNetworkIdValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CustomVirtualNetworkIdValue, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).EnableNoPublicIPType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("EnableNoPublicIPType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).EnableNoPublicIPType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).UpdatedByOid = (string) content.GetValueForProperty("UpdatedByOid",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).UpdatedByOid, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).StorageAccountIdentityType = (string) content.GetValueForProperty("StorageAccountIdentityType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).StorageAccountIdentityType, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ParameterCustomPublicSubnetName = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomStringParameter) content.GetValueForProperty("ParameterCustomPublicSubnetName",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ParameterCustomPublicSubnetName, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomStringParameterTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ParameterCustomPrivateSubnetName = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomStringParameter) content.GetValueForProperty("ParameterCustomPrivateSubnetName",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ParameterCustomPrivateSubnetName, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomStringParameterTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ParameterCustomVirtualNetworkId = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomStringParameter) content.GetValueForProperty("ParameterCustomVirtualNetworkId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ParameterCustomVirtualNetworkId, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomStringParameterTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).EnableNoPublicIPValue = (bool) content.GetValueForProperty("EnableNoPublicIPValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).EnableNoPublicIPValue, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).AmlWorkspaceIdValue = (string) content.GetValueForProperty("AmlWorkspaceIdValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).AmlWorkspaceIdValue, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).AmlWorkspaceIdType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("AmlWorkspaceIdType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).AmlWorkspaceIdType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).EncryptionType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("EncryptionType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).EncryptionType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ValueKeySource = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.KeySource?) content.GetValueForProperty("ValueKeySource",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ValueKeySource, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.KeySource.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).PrepareEncryptionType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("PrepareEncryptionType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).PrepareEncryptionType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).PrepareEncryptionValue = (bool) content.GetValueForProperty("PrepareEncryptionValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).PrepareEncryptionValue, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ValueKeyVersion = (string) content.GetValueForProperty("ValueKeyVersion",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ValueKeyVersion, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).RequireInfrastructureEncryptionType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("RequireInfrastructureEncryptionType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).RequireInfrastructureEncryptionType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).RequireInfrastructureEncryptionValue = (bool) content.GetValueForProperty("RequireInfrastructureEncryptionValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).RequireInfrastructureEncryptionValue, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ValueKeyName = (string) content.GetValueForProperty("ValueKeyName",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ValueKeyName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).PrepareEncryptionType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("PrepareEncryptionType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).PrepareEncryptionType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).PrepareEncryptionValue = (bool) content.GetValueForProperty("PrepareEncryptionValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).PrepareEncryptionValue, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).EnableNoPublicIPType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("EnableNoPublicIPType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).EnableNoPublicIPType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CustomPrivateSubnetNameValue = (string) content.GetValueForProperty("CustomPrivateSubnetNameValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CustomPrivateSubnetNameValue, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CustomPrivateSubnetNameType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("CustomPrivateSubnetNameType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CustomPrivateSubnetNameType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CustomPublicSubnetNameValue = (string) content.GetValueForProperty("CustomPublicSubnetNameValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CustomPublicSubnetNameValue, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CustomPublicSubnetNameType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("CustomPublicSubnetNameType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CustomPublicSubnetNameType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CustomVirtualNetworkIdValue = (string) content.GetValueForProperty("CustomVirtualNetworkIdValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CustomVirtualNetworkIdValue, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CustomVirtualNetworkIdType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("CustomVirtualNetworkIdType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CustomVirtualNetworkIdType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ValueKeyVaultUri = (string) content.GetValueForProperty("ValueKeyVaultUri",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ValueKeyVaultUri, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ValueKeyVersion = (string) content.GetValueForProperty("ValueKeyVersion",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ValueKeyVersion, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ValueKeyName = (string) content.GetValueForProperty("ValueKeyName",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ValueKeyName, global::System.Convert.ToString); AfterDeserializeDictionary(content); } @@ -164,54 +164,54 @@ internal WorkspaceProperties(global::System.Management.Automation.PSObject conte return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CreatedBy = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ICreatedBy) content.GetValueForProperty("CreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CreatedBy, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.CreatedByTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).Parameter = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomParameters) content.GetValueForProperty("Parameter",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).Parameter, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomParametersTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).StorageAccountIdentity = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IManagedIdentityConfiguration) content.GetValueForProperty("StorageAccountIdentity",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).StorageAccountIdentity, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ManagedIdentityConfigurationTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CreatedBy = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ICreatedBy) content.GetValueForProperty("CreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CreatedBy, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.CreatedByTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).UpdatedBy = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ICreatedBy) content.GetValueForProperty("UpdatedBy",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).UpdatedBy, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.CreatedByTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).Authorization = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceProviderAuthorization[]) content.GetValueForProperty("Authorization",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).Authorization, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceProviderAuthorizationTypeConverter.ConvertFrom)); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CreatedDateTime = (global::System.DateTime?) content.GetValueForProperty("CreatedDateTime",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CreatedDateTime, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).StorageAccountIdentity = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IManagedIdentityConfiguration) content.GetValueForProperty("StorageAccountIdentity",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).StorageAccountIdentity, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ManagedIdentityConfigurationTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ManagedResourceGroupId = (string) content.GetValueForProperty("ManagedResourceGroupId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ManagedResourceGroupId, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.ProvisioningState.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).UiDefinitionUri = (string) content.GetValueForProperty("UiDefinitionUri",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).UiDefinitionUri, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).Authorization = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceProviderAuthorization[]) content.GetValueForProperty("Authorization",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).Authorization, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceProviderAuthorizationTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CreatedDateTime = (global::System.DateTime?) content.GetValueForProperty("CreatedDateTime",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CreatedDateTime, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).WorkspaceId = (string) content.GetValueForProperty("WorkspaceId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).WorkspaceId, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).WorkspaceUrl = (string) content.GetValueForProperty("WorkspaceUrl",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).WorkspaceUrl, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CreatedByApplicationId = (string) content.GetValueForProperty("CreatedByApplicationId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CreatedByApplicationId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CreatedByOid = (string) content.GetValueForProperty("CreatedByOid",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CreatedByOid, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CreatedByPuid = (string) content.GetValueForProperty("CreatedByPuid",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CreatedByPuid, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CreatedByOid = (string) content.GetValueForProperty("CreatedByOid",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CreatedByOid, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ParameterAmlWorkspaceId = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomStringParameter) content.GetValueForProperty("ParameterAmlWorkspaceId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ParameterAmlWorkspaceId, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomStringParameterTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ParameterCustomPrivateSubnetName = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomStringParameter) content.GetValueForProperty("ParameterCustomPrivateSubnetName",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ParameterCustomPrivateSubnetName, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomStringParameterTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ParameterCustomPublicSubnetName = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomStringParameter) content.GetValueForProperty("ParameterCustomPublicSubnetName",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ParameterCustomPublicSubnetName, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomStringParameterTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ParameterCustomVirtualNetworkId = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomStringParameter) content.GetValueForProperty("ParameterCustomVirtualNetworkId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ParameterCustomVirtualNetworkId, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomStringParameterTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ParameterEnableNoPublicIP = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomBooleanParameter) content.GetValueForProperty("ParameterEnableNoPublicIP",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ParameterEnableNoPublicIP, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomBooleanParameterTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ParameterEncryption = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceEncryptionParameter) content.GetValueForProperty("ParameterEncryption",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ParameterEncryption, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceEncryptionParameterTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ParameterPrepareEncryption = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomBooleanParameter) content.GetValueForProperty("ParameterPrepareEncryption",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ParameterPrepareEncryption, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomBooleanParameterTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ParameterEncryption = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceEncryptionParameter) content.GetValueForProperty("ParameterEncryption",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ParameterEncryption, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceEncryptionParameterTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ParameterRequireInfrastructureEncryption = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomBooleanParameter) content.GetValueForProperty("ParameterRequireInfrastructureEncryption",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ParameterRequireInfrastructureEncryption, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomBooleanParameterTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).EncryptionValue = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IEncryption) content.GetValueForProperty("EncryptionValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).EncryptionValue, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.EncryptionTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).StorageAccountIdentityType = (string) content.GetValueForProperty("StorageAccountIdentityType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).StorageAccountIdentityType, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).StorageAccountIdentityPrincipalId = (string) content.GetValueForProperty("StorageAccountIdentityPrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).StorageAccountIdentityPrincipalId, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).StorageAccountIdentityTenantId = (string) content.GetValueForProperty("StorageAccountIdentityTenantId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).StorageAccountIdentityTenantId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).StorageAccountIdentityPrincipalId = (string) content.GetValueForProperty("StorageAccountIdentityPrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).StorageAccountIdentityPrincipalId, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).UpdatedByApplicationId = (string) content.GetValueForProperty("UpdatedByApplicationId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).UpdatedByApplicationId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).UpdatedByOid = (string) content.GetValueForProperty("UpdatedByOid",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).UpdatedByOid, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).UpdatedByPuid = (string) content.GetValueForProperty("UpdatedByPuid",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).UpdatedByPuid, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).AmlWorkspaceIdType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("AmlWorkspaceIdType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).AmlWorkspaceIdType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).AmlWorkspaceIdValue = (string) content.GetValueForProperty("AmlWorkspaceIdValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).AmlWorkspaceIdValue, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CustomPrivateSubnetNameType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("CustomPrivateSubnetNameType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CustomPrivateSubnetNameType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CustomPrivateSubnetNameValue = (string) content.GetValueForProperty("CustomPrivateSubnetNameValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CustomPrivateSubnetNameValue, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CustomPublicSubnetNameType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("CustomPublicSubnetNameType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CustomPublicSubnetNameType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CustomPublicSubnetNameValue = (string) content.GetValueForProperty("CustomPublicSubnetNameValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CustomPublicSubnetNameValue, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CustomVirtualNetworkIdType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("CustomVirtualNetworkIdType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CustomVirtualNetworkIdType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CustomVirtualNetworkIdValue = (string) content.GetValueForProperty("CustomVirtualNetworkIdValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CustomVirtualNetworkIdValue, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).EnableNoPublicIPType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("EnableNoPublicIPType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).EnableNoPublicIPType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).UpdatedByOid = (string) content.GetValueForProperty("UpdatedByOid",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).UpdatedByOid, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).StorageAccountIdentityType = (string) content.GetValueForProperty("StorageAccountIdentityType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).StorageAccountIdentityType, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ParameterCustomPublicSubnetName = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomStringParameter) content.GetValueForProperty("ParameterCustomPublicSubnetName",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ParameterCustomPublicSubnetName, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomStringParameterTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ParameterCustomPrivateSubnetName = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomStringParameter) content.GetValueForProperty("ParameterCustomPrivateSubnetName",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ParameterCustomPrivateSubnetName, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomStringParameterTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ParameterCustomVirtualNetworkId = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceCustomStringParameter) content.GetValueForProperty("ParameterCustomVirtualNetworkId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ParameterCustomVirtualNetworkId, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomStringParameterTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).EnableNoPublicIPValue = (bool) content.GetValueForProperty("EnableNoPublicIPValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).EnableNoPublicIPValue, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).AmlWorkspaceIdValue = (string) content.GetValueForProperty("AmlWorkspaceIdValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).AmlWorkspaceIdValue, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).AmlWorkspaceIdType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("AmlWorkspaceIdType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).AmlWorkspaceIdType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).EncryptionType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("EncryptionType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).EncryptionType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ValueKeySource = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.KeySource?) content.GetValueForProperty("ValueKeySource",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ValueKeySource, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.KeySource.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).PrepareEncryptionType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("PrepareEncryptionType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).PrepareEncryptionType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).PrepareEncryptionValue = (bool) content.GetValueForProperty("PrepareEncryptionValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).PrepareEncryptionValue, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ValueKeyVersion = (string) content.GetValueForProperty("ValueKeyVersion",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ValueKeyVersion, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).RequireInfrastructureEncryptionType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("RequireInfrastructureEncryptionType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).RequireInfrastructureEncryptionType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).RequireInfrastructureEncryptionValue = (bool) content.GetValueForProperty("RequireInfrastructureEncryptionValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).RequireInfrastructureEncryptionValue, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ValueKeyName = (string) content.GetValueForProperty("ValueKeyName",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ValueKeyName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).PrepareEncryptionType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("PrepareEncryptionType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).PrepareEncryptionType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).PrepareEncryptionValue = (bool) content.GetValueForProperty("PrepareEncryptionValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).PrepareEncryptionValue, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).EnableNoPublicIPType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("EnableNoPublicIPType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).EnableNoPublicIPType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CustomPrivateSubnetNameValue = (string) content.GetValueForProperty("CustomPrivateSubnetNameValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CustomPrivateSubnetNameValue, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CustomPrivateSubnetNameType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("CustomPrivateSubnetNameType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CustomPrivateSubnetNameType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CustomPublicSubnetNameValue = (string) content.GetValueForProperty("CustomPublicSubnetNameValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CustomPublicSubnetNameValue, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CustomPublicSubnetNameType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("CustomPublicSubnetNameType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CustomPublicSubnetNameType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CustomVirtualNetworkIdValue = (string) content.GetValueForProperty("CustomVirtualNetworkIdValue",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CustomVirtualNetworkIdValue, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CustomVirtualNetworkIdType = (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType?) content.GetValueForProperty("CustomVirtualNetworkIdType",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).CustomVirtualNetworkIdType, Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterType.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ValueKeyVaultUri = (string) content.GetValueForProperty("ValueKeyVaultUri",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ValueKeyVaultUri, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ValueKeyVersion = (string) content.GetValueForProperty("ValueKeyVersion",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ValueKeyVersion, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ValueKeyName = (string) content.GetValueForProperty("ValueKeyName",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspacePropertiesInternal)this).ValueKeyName, global::System.Convert.ToString); AfterDeserializePSObject(content); } } diff --git a/src/Databricks/generated/api/Models/Api20180401/WorkspaceProperties.json.cs b/src/Databricks/generated/api/Models/Api20180401/WorkspaceProperties.json.cs index f41c3fa0a61c..beb7c87fec05 100644 --- a/src/Databricks/generated/api/Models/Api20180401/WorkspaceProperties.json.cs +++ b/src/Databricks/generated/api/Models/Api20180401/WorkspaceProperties.json.cs @@ -77,10 +77,16 @@ public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode ToJso { return container; } - AddIf( null != this._createdBy ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) this._createdBy.ToJson(null,serializationMode) : null, "createdBy" ,container.Add ); AddIf( null != this._parameter ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) this._parameter.ToJson(null,serializationMode) : null, "parameters" ,container.Add ); - AddIf( null != this._storageAccountIdentity ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) this._storageAccountIdentity.ToJson(null,serializationMode) : null, "storageAccountIdentity" ,container.Add ); + AddIf( null != this._createdBy ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) this._createdBy.ToJson(null,serializationMode) : null, "createdBy" ,container.Add ); AddIf( null != this._updatedBy ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) this._updatedBy.ToJson(null,serializationMode) : null, "updatedBy" ,container.Add ); + AddIf( null != this._storageAccountIdentity ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) this._storageAccountIdentity.ToJson(null,serializationMode) : null, "storageAccountIdentity" ,container.Add ); + AddIf( null != (((object)this._managedResourceGroupId)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._managedResourceGroupId.ToString()) : null, "managedResourceGroupId" ,container.Add ); + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._provisioningState)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._provisioningState.ToString()) : null, "provisioningState" ,container.Add ); + } + AddIf( null != (((object)this._uiDefinitionUri)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._uiDefinitionUri.ToString()) : null, "uiDefinitionUri" ,container.Add ); if (null != this._authorization) { var __w = new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.XNodeArray(); @@ -94,12 +100,6 @@ public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode ToJso { AddIf( null != this._createdDateTime ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._createdDateTime?.ToString(@"yyyy'-'MM'-'dd'T'HH':'mm':'ss.fffffffK",global::System.Globalization.CultureInfo.InvariantCulture)) : null, "createdDateTime" ,container.Add ); } - AddIf( null != (((object)this._managedResourceGroupId)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._managedResourceGroupId.ToString()) : null, "managedResourceGroupId" ,container.Add ); - if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SerializationMode.IncludeReadOnly)) - { - AddIf( null != (((object)this._provisioningState)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._provisioningState.ToString()) : null, "provisioningState" ,container.Add ); - } - AddIf( null != (((object)this._uiDefinitionUri)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._uiDefinitionUri.ToString()) : null, "uiDefinitionUri" ,container.Add ); if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SerializationMode.IncludeReadOnly)) { AddIf( null != (((object)this._workspaceId)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._workspaceId.ToString()) : null, "workspaceId" ,container.Add ); @@ -124,15 +124,15 @@ internal WorkspaceProperties(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runti { return; } - {_createdBy = If( json?.PropertyT("createdBy"), out var __jsonCreatedBy) ? Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.CreatedBy.FromJson(__jsonCreatedBy) : CreatedBy;} {_parameter = If( json?.PropertyT("parameters"), out var __jsonParameters) ? Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceCustomParameters.FromJson(__jsonParameters) : Parameter;} - {_storageAccountIdentity = If( json?.PropertyT("storageAccountIdentity"), out var __jsonStorageAccountIdentity) ? Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ManagedIdentityConfiguration.FromJson(__jsonStorageAccountIdentity) : StorageAccountIdentity;} + {_createdBy = If( json?.PropertyT("createdBy"), out var __jsonCreatedBy) ? Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.CreatedBy.FromJson(__jsonCreatedBy) : CreatedBy;} {_updatedBy = If( json?.PropertyT("updatedBy"), out var __jsonUpdatedBy) ? Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.CreatedBy.FromJson(__jsonUpdatedBy) : UpdatedBy;} - {_authorization = If( json?.PropertyT("authorizations"), out var __jsonAuthorizations) ? If( __jsonAuthorizations as Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceProviderAuthorization) (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceProviderAuthorization.FromJson(__u) )) ))() : null : Authorization;} - {_createdDateTime = If( json?.PropertyT("createdDateTime"), out var __jsonCreatedDateTime) ? global::System.DateTime.TryParse((string)__jsonCreatedDateTime, global::System.Globalization.CultureInfo.InvariantCulture, global::System.Globalization.DateTimeStyles.AdjustToUniversal, out var __jsonCreatedDateTimeValue) ? __jsonCreatedDateTimeValue : CreatedDateTime : CreatedDateTime;} + {_storageAccountIdentity = If( json?.PropertyT("storageAccountIdentity"), out var __jsonStorageAccountIdentity) ? Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.ManagedIdentityConfiguration.FromJson(__jsonStorageAccountIdentity) : StorageAccountIdentity;} {_managedResourceGroupId = If( json?.PropertyT("managedResourceGroupId"), out var __jsonManagedResourceGroupId) ? (string)__jsonManagedResourceGroupId : (string)ManagedResourceGroupId;} {_provisioningState = If( json?.PropertyT("provisioningState"), out var __jsonProvisioningState) ? (string)__jsonProvisioningState : (string)ProvisioningState;} {_uiDefinitionUri = If( json?.PropertyT("uiDefinitionUri"), out var __jsonUiDefinitionUri) ? (string)__jsonUiDefinitionUri : (string)UiDefinitionUri;} + {_authorization = If( json?.PropertyT("authorizations"), out var __jsonAuthorizations) ? If( __jsonAuthorizations as Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspaceProviderAuthorization) (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.WorkspaceProviderAuthorization.FromJson(__u) )) ))() : null : Authorization;} + {_createdDateTime = If( json?.PropertyT("createdDateTime"), out var __jsonCreatedDateTime) ? global::System.DateTime.TryParse((string)__jsonCreatedDateTime, global::System.Globalization.CultureInfo.InvariantCulture, global::System.Globalization.DateTimeStyles.AdjustToUniversal, out var __jsonCreatedDateTimeValue) ? __jsonCreatedDateTimeValue : CreatedDateTime : CreatedDateTime;} {_workspaceId = If( json?.PropertyT("workspaceId"), out var __jsonWorkspaceId) ? (string)__jsonWorkspaceId : (string)WorkspaceId;} {_workspaceUrl = If( json?.PropertyT("workspaceUrl"), out var __jsonWorkspaceUrl) ? (string)__jsonWorkspaceUrl : (string)WorkspaceUrl;} AfterFromJson(json); diff --git a/src/Databricks/generated/api/Models/DatabricksIdentity.PowerShell.cs b/src/Databricks/generated/api/Models/DatabricksIdentity.PowerShell.cs index 2d60eecc9281..e7beebdd2111 100644 --- a/src/Databricks/generated/api/Models/DatabricksIdentity.PowerShell.cs +++ b/src/Databricks/generated/api/Models/DatabricksIdentity.PowerShell.cs @@ -65,11 +65,11 @@ internal DatabricksIdentity(global::System.Collections.IDictionary content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentityInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentityInternal)this).Id, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentityInternal)this).PeeringName = (string) content.GetValueForProperty("PeeringName",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentityInternal)this).PeeringName, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentityInternal)this).ResourceGroupName = (string) content.GetValueForProperty("ResourceGroupName",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentityInternal)this).ResourceGroupName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentityInternal)this).SubscriptionId = (string) content.GetValueForProperty("SubscriptionId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentityInternal)this).SubscriptionId, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentityInternal)this).WorkspaceName = (string) content.GetValueForProperty("WorkspaceName",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentityInternal)this).WorkspaceName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentityInternal)this).SubscriptionId = (string) content.GetValueForProperty("SubscriptionId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentityInternal)this).SubscriptionId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentityInternal)this).PeeringName = (string) content.GetValueForProperty("PeeringName",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentityInternal)this).PeeringName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentityInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentityInternal)this).Id, global::System.Convert.ToString); AfterDeserializeDictionary(content); } @@ -87,11 +87,11 @@ internal DatabricksIdentity(global::System.Management.Automation.PSObject conten return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentityInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentityInternal)this).Id, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentityInternal)this).PeeringName = (string) content.GetValueForProperty("PeeringName",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentityInternal)this).PeeringName, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentityInternal)this).ResourceGroupName = (string) content.GetValueForProperty("ResourceGroupName",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentityInternal)this).ResourceGroupName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentityInternal)this).SubscriptionId = (string) content.GetValueForProperty("SubscriptionId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentityInternal)this).SubscriptionId, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentityInternal)this).WorkspaceName = (string) content.GetValueForProperty("WorkspaceName",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentityInternal)this).WorkspaceName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentityInternal)this).SubscriptionId = (string) content.GetValueForProperty("SubscriptionId",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentityInternal)this).SubscriptionId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentityInternal)this).PeeringName = (string) content.GetValueForProperty("PeeringName",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentityInternal)this).PeeringName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentityInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentityInternal)this).Id, global::System.Convert.ToString); AfterDeserializePSObject(content); } diff --git a/src/Databricks/generated/api/Models/DatabricksIdentity.json.cs b/src/Databricks/generated/api/Models/DatabricksIdentity.json.cs index d81c3abb186a..6668fe27b56f 100644 --- a/src/Databricks/generated/api/Models/DatabricksIdentity.json.cs +++ b/src/Databricks/generated/api/Models/DatabricksIdentity.json.cs @@ -62,11 +62,11 @@ internal DatabricksIdentity(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtim { return; } - {_id = If( json?.PropertyT("id"), out var __jsonId) ? (string)__jsonId : (string)Id;} - {_peeringName = If( json?.PropertyT("peeringName"), out var __jsonPeeringName) ? (string)__jsonPeeringName : (string)PeeringName;} {_resourceGroupName = If( json?.PropertyT("resourceGroupName"), out var __jsonResourceGroupName) ? (string)__jsonResourceGroupName : (string)ResourceGroupName;} - {_subscriptionId = If( json?.PropertyT("subscriptionId"), out var __jsonSubscriptionId) ? (string)__jsonSubscriptionId : (string)SubscriptionId;} {_workspaceName = If( json?.PropertyT("workspaceName"), out var __jsonWorkspaceName) ? (string)__jsonWorkspaceName : (string)WorkspaceName;} + {_subscriptionId = If( json?.PropertyT("subscriptionId"), out var __jsonSubscriptionId) ? (string)__jsonSubscriptionId : (string)SubscriptionId;} + {_peeringName = If( json?.PropertyT("peeringName"), out var __jsonPeeringName) ? (string)__jsonPeeringName : (string)PeeringName;} + {_id = If( json?.PropertyT("id"), out var __jsonId) ? (string)__jsonId : (string)Id;} AfterFromJson(json); } @@ -101,11 +101,11 @@ public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode ToJso { return container; } - AddIf( null != (((object)this._id)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._id.ToString()) : null, "id" ,container.Add ); - AddIf( null != (((object)this._peeringName)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._peeringName.ToString()) : null, "peeringName" ,container.Add ); AddIf( null != (((object)this._resourceGroupName)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._resourceGroupName.ToString()) : null, "resourceGroupName" ,container.Add ); - AddIf( null != (((object)this._subscriptionId)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._subscriptionId.ToString()) : null, "subscriptionId" ,container.Add ); AddIf( null != (((object)this._workspaceName)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._workspaceName.ToString()) : null, "workspaceName" ,container.Add ); + AddIf( null != (((object)this._subscriptionId)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._subscriptionId.ToString()) : null, "subscriptionId" ,container.Add ); + AddIf( null != (((object)this._peeringName)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._peeringName.ToString()) : null, "peeringName" ,container.Add ); + AddIf( null != (((object)this._id)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Json.JsonString(this._id.ToString()) : null, "id" ,container.Add ); AfterToJson(ref container); return container; } diff --git a/src/Databricks/generated/api/Support/CustomParameterType.Completer.cs b/src/Databricks/generated/api/Support/CustomParameterType.Completer.cs index 9287ff9f400a..b68fea54b401 100644 --- a/src/Databricks/generated/api/Support/CustomParameterType.Completer.cs +++ b/src/Databricks/generated/api/Support/CustomParameterType.Completer.cs @@ -6,7 +6,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support { - /// Argument completer implementation for CustomParameterType. + /// Provisioning status of the workspace. [System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.CustomParameterTypeTypeConverter))] public partial struct CustomParameterType : System.Management.Automation.IArgumentCompleter diff --git a/src/Databricks/generated/api/Support/CustomParameterType.TypeConverter.cs b/src/Databricks/generated/api/Support/CustomParameterType.TypeConverter.cs index e963fa85dbe6..1bf2ab597c4f 100644 --- a/src/Databricks/generated/api/Support/CustomParameterType.TypeConverter.cs +++ b/src/Databricks/generated/api/Support/CustomParameterType.TypeConverter.cs @@ -6,7 +6,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support { - /// TypeConverter implementation for CustomParameterType. + /// Provisioning status of the workspace. public partial class CustomParameterTypeTypeConverter : global::System.Management.Automation.PSTypeConverter { diff --git a/src/Databricks/generated/api/Support/CustomParameterType.cs b/src/Databricks/generated/api/Support/CustomParameterType.cs index a6205cce3c3e..1e6caa2920de 100644 --- a/src/Databricks/generated/api/Support/CustomParameterType.cs +++ b/src/Databricks/generated/api/Support/CustomParameterType.cs @@ -6,6 +6,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support { + /// Provisioning status of the workspace. public partial struct CustomParameterType : System.IEquatable { diff --git a/src/Databricks/generated/api/Support/KeySource.Completer.cs b/src/Databricks/generated/api/Support/KeySource.Completer.cs index 1794fc7b8b13..6f6693a004c4 100644 --- a/src/Databricks/generated/api/Support/KeySource.Completer.cs +++ b/src/Databricks/generated/api/Support/KeySource.Completer.cs @@ -6,7 +6,9 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support { - /// Argument completer implementation for KeySource. + /// + /// The encryption keySource (provider). Possible values (case-insensitive): Default, Microsoft.Keyvault + /// [System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.KeySourceTypeConverter))] public partial struct KeySource : System.Management.Automation.IArgumentCompleter diff --git a/src/Databricks/generated/api/Support/KeySource.TypeConverter.cs b/src/Databricks/generated/api/Support/KeySource.TypeConverter.cs index b5497030098b..8727595eb078 100644 --- a/src/Databricks/generated/api/Support/KeySource.TypeConverter.cs +++ b/src/Databricks/generated/api/Support/KeySource.TypeConverter.cs @@ -6,7 +6,9 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support { - /// TypeConverter implementation for KeySource. + /// + /// The encryption keySource (provider). Possible values (case-insensitive): Default, Microsoft.Keyvault + /// public partial class KeySourceTypeConverter : global::System.Management.Automation.PSTypeConverter { diff --git a/src/Databricks/generated/api/Support/KeySource.cs b/src/Databricks/generated/api/Support/KeySource.cs index de3d98be6590..e07c9aa0d0c8 100644 --- a/src/Databricks/generated/api/Support/KeySource.cs +++ b/src/Databricks/generated/api/Support/KeySource.cs @@ -6,6 +6,9 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support { + /// + /// The encryption keySource (provider). Possible values (case-insensitive): Default, Microsoft.Keyvault + /// public partial struct KeySource : System.IEquatable { diff --git a/src/Databricks/generated/api/Support/PeeringProvisioningState.Completer.cs b/src/Databricks/generated/api/Support/PeeringProvisioningState.Completer.cs index caaf4d09c608..2d63aab996f6 100644 --- a/src/Databricks/generated/api/Support/PeeringProvisioningState.Completer.cs +++ b/src/Databricks/generated/api/Support/PeeringProvisioningState.Completer.cs @@ -6,7 +6,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support { - /// Argument completer implementation for PeeringProvisioningState. + /// The current provisioning state. [System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.PeeringProvisioningStateTypeConverter))] public partial struct PeeringProvisioningState : System.Management.Automation.IArgumentCompleter diff --git a/src/Databricks/generated/api/Support/PeeringProvisioningState.TypeConverter.cs b/src/Databricks/generated/api/Support/PeeringProvisioningState.TypeConverter.cs index 9dc76ef9f29a..edf7371ae9ff 100644 --- a/src/Databricks/generated/api/Support/PeeringProvisioningState.TypeConverter.cs +++ b/src/Databricks/generated/api/Support/PeeringProvisioningState.TypeConverter.cs @@ -6,7 +6,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support { - /// TypeConverter implementation for PeeringProvisioningState. + /// The current provisioning state. public partial class PeeringProvisioningStateTypeConverter : global::System.Management.Automation.PSTypeConverter { diff --git a/src/Databricks/generated/api/Support/PeeringProvisioningState.cs b/src/Databricks/generated/api/Support/PeeringProvisioningState.cs index 0a3003864a96..75163718842b 100644 --- a/src/Databricks/generated/api/Support/PeeringProvisioningState.cs +++ b/src/Databricks/generated/api/Support/PeeringProvisioningState.cs @@ -6,6 +6,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support { + /// The current provisioning state. public partial struct PeeringProvisioningState : System.IEquatable { diff --git a/src/Databricks/generated/api/Support/PeeringState.Completer.cs b/src/Databricks/generated/api/Support/PeeringState.Completer.cs index 1d2c5360f6b2..8ef79d4d3344 100644 --- a/src/Databricks/generated/api/Support/PeeringState.Completer.cs +++ b/src/Databricks/generated/api/Support/PeeringState.Completer.cs @@ -6,7 +6,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support { - /// Argument completer implementation for PeeringState. + /// The status of the virtual network peering. [System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.PeeringStateTypeConverter))] public partial struct PeeringState : System.Management.Automation.IArgumentCompleter diff --git a/src/Databricks/generated/api/Support/PeeringState.TypeConverter.cs b/src/Databricks/generated/api/Support/PeeringState.TypeConverter.cs index 7382f16e3e25..f2c3ce3f9b02 100644 --- a/src/Databricks/generated/api/Support/PeeringState.TypeConverter.cs +++ b/src/Databricks/generated/api/Support/PeeringState.TypeConverter.cs @@ -6,7 +6,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support { - /// TypeConverter implementation for PeeringState. + /// The status of the virtual network peering. public partial class PeeringStateTypeConverter : global::System.Management.Automation.PSTypeConverter { diff --git a/src/Databricks/generated/api/Support/PeeringState.cs b/src/Databricks/generated/api/Support/PeeringState.cs index c4cea988d63a..5e222fbc53ae 100644 --- a/src/Databricks/generated/api/Support/PeeringState.cs +++ b/src/Databricks/generated/api/Support/PeeringState.cs @@ -6,6 +6,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support { + /// The status of the virtual network peering. public partial struct PeeringState : System.IEquatable { diff --git a/src/Databricks/generated/api/Support/ProvisioningState.Completer.cs b/src/Databricks/generated/api/Support/ProvisioningState.Completer.cs index 24bcea03082f..b11cb43ed5e1 100644 --- a/src/Databricks/generated/api/Support/ProvisioningState.Completer.cs +++ b/src/Databricks/generated/api/Support/ProvisioningState.Completer.cs @@ -6,7 +6,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support { - /// Argument completer implementation for ProvisioningState. + /// Provisioning status of the workspace. [System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support.ProvisioningStateTypeConverter))] public partial struct ProvisioningState : System.Management.Automation.IArgumentCompleter diff --git a/src/Databricks/generated/api/Support/ProvisioningState.TypeConverter.cs b/src/Databricks/generated/api/Support/ProvisioningState.TypeConverter.cs index 686c240f7884..f7f31436cf5f 100644 --- a/src/Databricks/generated/api/Support/ProvisioningState.TypeConverter.cs +++ b/src/Databricks/generated/api/Support/ProvisioningState.TypeConverter.cs @@ -6,7 +6,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support { - /// TypeConverter implementation for ProvisioningState. + /// Provisioning status of the workspace. public partial class ProvisioningStateTypeConverter : global::System.Management.Automation.PSTypeConverter { diff --git a/src/Databricks/generated/api/Support/ProvisioningState.cs b/src/Databricks/generated/api/Support/ProvisioningState.cs index baea54464a1d..a45940065324 100644 --- a/src/Databricks/generated/api/Support/ProvisioningState.cs +++ b/src/Databricks/generated/api/Support/ProvisioningState.cs @@ -6,6 +6,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Databricks.Support { + /// Provisioning status of the workspace. public partial struct ProvisioningState : System.IEquatable { diff --git a/src/Databricks/generated/cmdlets/GetAzDatabricksOperation_List.cs b/src/Databricks/generated/cmdlets/GetAzDatabricksOperation_List.cs index 36b588ab08a4..8a537e8e3bc0 100644 --- a/src/Databricks/generated/cmdlets/GetAzDatabricksOperation_List.cs +++ b/src/Databricks/generated/cmdlets/GetAzDatabricksOperation_List.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Databricks.Cmdlets /// Lists all of the available RP operations. /// - /// [OpenAPI] Operations_List=>GET:"/providers/Microsoft.Databricks/operations" + /// [OpenAPI] List=>GET:"/providers/Microsoft.Databricks/operations" /// [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzDatabricksOperation_List")] diff --git a/src/Databricks/generated/cmdlets/GetAzDatabricksVNetPeering_Get.cs b/src/Databricks/generated/cmdlets/GetAzDatabricksVNetPeering_Get.cs new file mode 100644 index 000000000000..0b128ac5609f --- /dev/null +++ b/src/Databricks/generated/cmdlets/GetAzDatabricksVNetPeering_Get.cs @@ -0,0 +1,453 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.Databricks.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Extensions; + + /// Gets the workspace vNet Peering. + /// + /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Databricks/workspaces/{workspaceName}/virtualNetworkPeerings/{peeringName}" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzDatabricksVNetPeering_Get")] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeering))] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Description(@"Gets the workspace vNet Peering.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Generated] + public partial class GetAzDatabricksVNetPeering_Get : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Databricks Client => Microsoft.Azure.PowerShell.Cmdlets.Databricks.Module.Instance.ClientAPI; + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// Backing field for property. + private string _name; + + /// The name of the workspace vNet peering. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of the workspace vNet peering.")] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The name of the workspace vNet peering.", + SerializedName = @"peeringName", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Path)] + public string Name { get => this._name; set => this._name = value; } + + /// + /// When specified, forces the cmdlet return a 'bool' given that there isn't a return type by default. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Returns true when the command succeeds")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter PassThru { get; set; } + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Backing field for property. + private string _resourceGroupName; + + /// The name of the resource group. The name is case insensitive. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of the resource group. The name is case insensitive.")] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The name of the resource group. The name is case insensitive.", + SerializedName = @"resourceGroupName", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Path)] + public string ResourceGroupName { get => this._resourceGroupName; set => this._resourceGroupName = value; } + + /// Backing field for property. + private string[] _subscriptionId; + + /// The ID of the target subscription. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The ID of the target subscription.")] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The ID of the target subscription.", + SerializedName = @"subscriptionId", + PossibleTypes = new [] { typeof(string) })] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.DefaultInfo( + Name = @"", + Description =@"", + Script = @"(Get-AzContext).Subscription.Id")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Path)] + public string[] SubscriptionId { get => this._subscriptionId; set => this._subscriptionId = value; } + + /// Backing field for property. + private string _workspaceName; + + /// The name of the workspace. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of the workspace.")] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The name of the workspace.", + SerializedName = @"workspaceName", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Path)] + public string WorkspaceName { get => this._workspaceName; set => this._workspaceName = value; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnNoContent will be called before the regular onNoContent has been processed, allowing customization of + /// what happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// /// Determines if the rest of the onNoContent method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnNoContent(global::System.Net.Http.HttpResponseMessage responseMessage, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletEndProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public GetAzDatabricksVNetPeering_Get() + { + + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.Information: + { + var data = messageData(); + WriteInformation(data, new[] { data.Message }); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.Databricks.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token); + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletProcessRecordAsyncStart); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.Databricks.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + foreach( var SubscriptionId in this.SubscriptionId ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.VNetPeeringGet(ResourceGroupName, WorkspaceName, SubscriptionId, Name, onOk, onNoContent, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName,WorkspaceName=WorkspaceName,SubscriptionId=SubscriptionId,Name=Name}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName, WorkspaceName=WorkspaceName, SubscriptionId=SubscriptionId, Name=Name }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName, WorkspaceName=WorkspaceName, SubscriptionId=SubscriptionId, Name=Name }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 204 (NoContent). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onNoContent(global::System.Net.Http.HttpResponseMessage responseMessage) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnNoContent(responseMessage, ref _returnNow); + // if overrideOnNoContent has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onNoContent - response for 204 / + if (true == MyInvocation?.BoundParameters?.ContainsKey("PassThru")) + { + WriteObject(true); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeering + WriteObject((await response)); + } + } + } +} \ No newline at end of file diff --git a/src/Databricks/generated/cmdlets/GetAzDatabricksVNetPeering_GetViaIdentity.cs b/src/Databricks/generated/cmdlets/GetAzDatabricksVNetPeering_GetViaIdentity.cs new file mode 100644 index 000000000000..466f875094e9 --- /dev/null +++ b/src/Databricks/generated/cmdlets/GetAzDatabricksVNetPeering_GetViaIdentity.cs @@ -0,0 +1,422 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.Databricks.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Extensions; + + /// Gets the workspace vNet Peering. + /// + /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Databricks/workspaces/{workspaceName}/virtualNetworkPeerings/{peeringName}" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzDatabricksVNetPeering_GetViaIdentity")] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeering))] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Description(@"Gets the workspace vNet Peering.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Generated] + public partial class GetAzDatabricksVNetPeering_GetViaIdentity : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Databricks Client => Microsoft.Azure.PowerShell.Cmdlets.Databricks.Module.Instance.ClientAPI; + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentity _inputObject; + + /// Identity Parameter + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Identity Parameter", ValueFromPipeline = true)] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Path)] + public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentity InputObject { get => this._inputObject; set => this._inputObject = value; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// When specified, forces the cmdlet return a 'bool' given that there isn't a return type by default. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Returns true when the command succeeds")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter PassThru { get; set; } + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnNoContent will be called before the regular onNoContent has been processed, allowing customization of + /// what happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// /// Determines if the rest of the onNoContent method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnNoContent(global::System.Net.Http.HttpResponseMessage responseMessage, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletEndProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public GetAzDatabricksVNetPeering_GetViaIdentity() + { + + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.Information: + { + var data = messageData(); + WriteInformation(data, new[] { data.Message }); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.Databricks.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token); + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletProcessRecordAsyncStart); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.Databricks.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + if (InputObject?.Id != null) + { + await this.Client.VNetPeeringGetViaIdentity(InputObject.Id, onOk, onNoContent, onDefault, this, Pipeline); + } + else + { + // try to call with PATH parameters from Input Object + if (null == InputObject.ResourceGroupName) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.ResourceGroupName"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + if (null == InputObject.WorkspaceName) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.WorkspaceName"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + if (null == InputObject.SubscriptionId) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.SubscriptionId"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + if (null == InputObject.PeeringName) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.PeeringName"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + await this.Client.VNetPeeringGet(InputObject.ResourceGroupName ?? null, InputObject.WorkspaceName ?? null, InputObject.SubscriptionId ?? null, InputObject.PeeringName ?? null, onOk, onNoContent, onDefault, this, Pipeline); + } + await ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 204 (NoContent). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onNoContent(global::System.Net.Http.HttpResponseMessage responseMessage) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnNoContent(responseMessage, ref _returnNow); + // if overrideOnNoContent has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onNoContent - response for 204 / + if (true == MyInvocation?.BoundParameters?.ContainsKey("PassThru")) + { + WriteObject(true); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeering + WriteObject((await response)); + } + } + } +} \ No newline at end of file diff --git a/src/Databricks/generated/cmdlets/GetAzDatabricksVNetPeering_List.cs b/src/Databricks/generated/cmdlets/GetAzDatabricksVNetPeering_List.cs new file mode 100644 index 000000000000..d0e482b1a13f --- /dev/null +++ b/src/Databricks/generated/cmdlets/GetAzDatabricksVNetPeering_List.cs @@ -0,0 +1,409 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.Databricks.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Extensions; + + /// Lists the workspace vNet Peerings. + /// + /// [OpenAPI] ListByWorkspace=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Databricks/workspaces/{workspaceName}/virtualNetworkPeerings" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzDatabricksVNetPeering_List")] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeering))] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Description(@"Lists the workspace vNet Peerings.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Generated] + public partial class GetAzDatabricksVNetPeering_List : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Databricks Client => Microsoft.Azure.PowerShell.Cmdlets.Databricks.Module.Instance.ClientAPI; + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Backing field for property. + private string _resourceGroupName; + + /// The name of the resource group. The name is case insensitive. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of the resource group. The name is case insensitive.")] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The name of the resource group. The name is case insensitive.", + SerializedName = @"resourceGroupName", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Path)] + public string ResourceGroupName { get => this._resourceGroupName; set => this._resourceGroupName = value; } + + /// Backing field for property. + private string[] _subscriptionId; + + /// The ID of the target subscription. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The ID of the target subscription.")] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The ID of the target subscription.", + SerializedName = @"subscriptionId", + PossibleTypes = new [] { typeof(string) })] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.DefaultInfo( + Name = @"", + Description =@"", + Script = @"(Get-AzContext).Subscription.Id")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Path)] + public string[] SubscriptionId { get => this._subscriptionId; set => this._subscriptionId = value; } + + /// Backing field for property. + private string _workspaceName; + + /// The name of the workspace. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of the workspace.")] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The name of the workspace.", + SerializedName = @"workspaceName", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Path)] + public string WorkspaceName { get => this._workspaceName; set => this._workspaceName = value; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletEndProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public GetAzDatabricksVNetPeering_List() + { + + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.Information: + { + var data = messageData(); + WriteInformation(data, new[] { data.Message }); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.Databricks.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token); + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletProcessRecordAsyncStart); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.Databricks.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + foreach( var SubscriptionId in this.SubscriptionId ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.VNetPeeringListByWorkspace(ResourceGroupName, WorkspaceName, SubscriptionId, onOk, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName,WorkspaceName=WorkspaceName,SubscriptionId=SubscriptionId}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName, WorkspaceName=WorkspaceName, SubscriptionId=SubscriptionId }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName, WorkspaceName=WorkspaceName, SubscriptionId=SubscriptionId }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // response should be returning an array of some kind. +Pageable + // pageable / value / nextLink + var result = await response; + WriteObject(result.Value,true); + if (result.NextLink != null) + { + if (responseMessage.RequestMessage is System.Net.Http.HttpRequestMessage requestMessage ) + { + requestMessage = requestMessage.Clone(new global::System.Uri( result.NextLink ),Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Method.Get ); + await ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.FollowingNextLink); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.VNetPeeringListByWorkspace_Call(requestMessage, onOk, onDefault, this, Pipeline); + } + } + } + } + } +} \ No newline at end of file diff --git a/src/Databricks/generated/cmdlets/GetAzDatabricksWorkspace_Get.cs b/src/Databricks/generated/cmdlets/GetAzDatabricksWorkspace_Get.cs index 05b4762f02bf..a3dc73707c77 100644 --- a/src/Databricks/generated/cmdlets/GetAzDatabricksWorkspace_Get.cs +++ b/src/Databricks/generated/cmdlets/GetAzDatabricksWorkspace_Get.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Databricks.Cmdlets /// Gets the workspace. /// - /// [OpenAPI] Workspaces_Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Databricks/workspaces/{workspaceName}" + /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Databricks/workspaces/{workspaceName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzDatabricksWorkspace_Get")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspace))] diff --git a/src/Databricks/generated/cmdlets/GetAzDatabricksWorkspace_GetViaIdentity.cs b/src/Databricks/generated/cmdlets/GetAzDatabricksWorkspace_GetViaIdentity.cs index 01a6bf1c512d..b1dc61fbeb0b 100644 --- a/src/Databricks/generated/cmdlets/GetAzDatabricksWorkspace_GetViaIdentity.cs +++ b/src/Databricks/generated/cmdlets/GetAzDatabricksWorkspace_GetViaIdentity.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Databricks.Cmdlets /// Gets the workspace. /// - /// [OpenAPI] Workspaces_Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Databricks/workspaces/{workspaceName}" + /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Databricks/workspaces/{workspaceName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzDatabricksWorkspace_GetViaIdentity")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspace))] diff --git a/src/Databricks/generated/cmdlets/GetAzDatabricksWorkspace_List.cs b/src/Databricks/generated/cmdlets/GetAzDatabricksWorkspace_List.cs index e922ef5ee8cb..786affae5320 100644 --- a/src/Databricks/generated/cmdlets/GetAzDatabricksWorkspace_List.cs +++ b/src/Databricks/generated/cmdlets/GetAzDatabricksWorkspace_List.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Databricks.Cmdlets /// Gets all the workspaces within a resource group. /// - /// [OpenAPI] Workspaces_ListByResourceGroup=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Databricks/workspaces" + /// [OpenAPI] ListByResourceGroup=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Databricks/workspaces" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzDatabricksWorkspace_List")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspace))] diff --git a/src/Databricks/generated/cmdlets/GetAzDatabricksWorkspace_List1.cs b/src/Databricks/generated/cmdlets/GetAzDatabricksWorkspace_List1.cs index 9b90ad0351c3..1938343886b5 100644 --- a/src/Databricks/generated/cmdlets/GetAzDatabricksWorkspace_List1.cs +++ b/src/Databricks/generated/cmdlets/GetAzDatabricksWorkspace_List1.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Databricks.Cmdlets /// Gets all the workspaces within a subscription. /// - /// [OpenAPI] Workspaces_ListBySubscription=>GET:"/subscriptions/{subscriptionId}/providers/Microsoft.Databricks/workspaces" + /// [OpenAPI] ListBySubscription=>GET:"/subscriptions/{subscriptionId}/providers/Microsoft.Databricks/workspaces" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzDatabricksWorkspace_List1")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IWorkspace))] diff --git a/src/Databricks/generated/cmdlets/NewAzDatabricksVNetPeering_CreateExpanded.cs b/src/Databricks/generated/cmdlets/NewAzDatabricksVNetPeering_CreateExpanded.cs new file mode 100644 index 000000000000..3a0e1217fc1d --- /dev/null +++ b/src/Databricks/generated/cmdlets/NewAzDatabricksVNetPeering_CreateExpanded.cs @@ -0,0 +1,586 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.Databricks.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Extensions; + + /// Creates vNet Peering for workspace. + /// + /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Databricks/workspaces/{workspaceName}/virtualNetworkPeerings/{peeringName}" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzDatabricksVNetPeering_CreateExpanded", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeering))] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Description(@"Creates vNet Peering for workspace.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Generated] + public partial class NewAzDatabricksVNetPeering_CreateExpanded : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// + /// Whether the forwarded traffic from the VMs in the local virtual network will be allowed/disallowed in remote virtual network. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Whether the forwarded traffic from the VMs in the local virtual network will be allowed/disallowed in remote virtual network.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Whether the forwarded traffic from the VMs in the local virtual network will be allowed/disallowed in remote virtual network.", + SerializedName = @"allowForwardedTraffic", + PossibleTypes = new [] { typeof(global::System.Management.Automation.SwitchParameter) })] + public global::System.Management.Automation.SwitchParameter AllowForwardedTraffic { get => VirtualNetworkPeeringParametersBody.AllowForwardedTraffic ?? default(global::System.Management.Automation.SwitchParameter); set => VirtualNetworkPeeringParametersBody.AllowForwardedTraffic = value; } + + /// + /// If gateway links can be used in remote virtual networking to link to this virtual network. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "If gateway links can be used in remote virtual networking to link to this virtual network.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"If gateway links can be used in remote virtual networking to link to this virtual network.", + SerializedName = @"allowGatewayTransit", + PossibleTypes = new [] { typeof(global::System.Management.Automation.SwitchParameter) })] + public global::System.Management.Automation.SwitchParameter AllowGatewayTransit { get => VirtualNetworkPeeringParametersBody.AllowGatewayTransit ?? default(global::System.Management.Automation.SwitchParameter); set => VirtualNetworkPeeringParametersBody.AllowGatewayTransit = value; } + + /// + /// Whether the VMs in the local virtual network space would be able to access the VMs in remote virtual network space. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Whether the VMs in the local virtual network space would be able to access the VMs in remote virtual network space.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Whether the VMs in the local virtual network space would be able to access the VMs in remote virtual network space.", + SerializedName = @"allowVirtualNetworkAccess", + PossibleTypes = new [] { typeof(global::System.Management.Automation.SwitchParameter) })] + public global::System.Management.Automation.SwitchParameter AllowVirtualNetworkAccess { get => VirtualNetworkPeeringParametersBody.AllowVirtualNetworkAccess ?? default(global::System.Management.Automation.SwitchParameter); set => VirtualNetworkPeeringParametersBody.AllowVirtualNetworkAccess = value; } + + /// when specified, runs this cmdlet as a PowerShell job + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command as a job")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter AsJob { get; set; } + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Databricks Client => Microsoft.Azure.PowerShell.Cmdlets.Databricks.Module.Instance.ClientAPI; + + /// A list of address blocks reserved for this virtual network in CIDR notation. + [global::System.Management.Automation.AllowEmptyCollection] + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "A list of address blocks reserved for this virtual network in CIDR notation.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"A list of address blocks reserved for this virtual network in CIDR notation.", + SerializedName = @"addressPrefixes", + PossibleTypes = new [] { typeof(string) })] + public string[] DatabricksAddressSpacePrefix { get => VirtualNetworkPeeringParametersBody.DatabrickAddressSpaceAddressPrefix ?? null /* arrayOf */; set => VirtualNetworkPeeringParametersBody.DatabrickAddressSpaceAddressPrefix = value; } + + /// The Id of the databricks virtual network. + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The Id of the databricks virtual network.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The Id of the databricks virtual network.", + SerializedName = @"id", + PossibleTypes = new [] { typeof(string) })] + public string DatabricksVirtualNetworkId { get => VirtualNetworkPeeringParametersBody.DatabrickVirtualNetworkId ?? null; set => VirtualNetworkPeeringParametersBody.DatabrickVirtualNetworkId = value; } + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// Backing field for property. + private string _name; + + /// The name of the workspace vNet peering. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of the workspace vNet peering.")] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The name of the workspace vNet peering.", + SerializedName = @"peeringName", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Path)] + public string Name { get => this._name; set => this._name = value; } + + /// + /// when specified, will make the remote call, and return an AsyncOperationResponse, letting the remote operation continue + /// asynchronously. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command asynchronously")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter NoWait { get; set; } + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// A list of address blocks reserved for this virtual network in CIDR notation. + [global::System.Management.Automation.AllowEmptyCollection] + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "A list of address blocks reserved for this virtual network in CIDR notation.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"A list of address blocks reserved for this virtual network in CIDR notation.", + SerializedName = @"addressPrefixes", + PossibleTypes = new [] { typeof(string) })] + public string[] RemoteAddressSpacePrefix { get => VirtualNetworkPeeringParametersBody.RemoteAddressSpaceAddressPrefix ?? null /* arrayOf */; set => VirtualNetworkPeeringParametersBody.RemoteAddressSpaceAddressPrefix = value; } + + /// The Id of the remote virtual network. + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The Id of the remote virtual network.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The Id of the remote virtual network.", + SerializedName = @"id", + PossibleTypes = new [] { typeof(string) })] + public string RemoteVirtualNetworkId { get => VirtualNetworkPeeringParametersBody.RemoteVirtualNetworkId ?? null; set => VirtualNetworkPeeringParametersBody.RemoteVirtualNetworkId = value; } + + /// Backing field for property. + private string _resourceGroupName; + + /// The name of the resource group. The name is case insensitive. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of the resource group. The name is case insensitive.")] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The name of the resource group. The name is case insensitive.", + SerializedName = @"resourceGroupName", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Path)] + public string ResourceGroupName { get => this._resourceGroupName; set => this._resourceGroupName = value; } + + /// Backing field for property. + private string _subscriptionId; + + /// The ID of the target subscription. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The ID of the target subscription.")] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The ID of the target subscription.", + SerializedName = @"subscriptionId", + PossibleTypes = new [] { typeof(string) })] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.DefaultInfo( + Name = @"", + Description =@"", + Script = @"(Get-AzContext).Subscription.Id")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Path)] + public string SubscriptionId { get => this._subscriptionId; set => this._subscriptionId = value; } + + /// + /// If remote gateways can be used on this virtual network. If the flag is set to true, and allowGatewayTransit on remote + /// peering is also true, virtual network will use gateways of remote virtual network for transit. Only one peering can have + /// this flag set to true. This flag cannot be set if virtual network already has a gateway. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "If remote gateways can be used on this virtual network. If the flag is set to true, and allowGatewayTransit on remote peering is also true, virtual network will use gateways of remote virtual network for transit. Only one peering can have this flag set to true. This flag cannot be set if virtual network already has a gateway.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"If remote gateways can be used on this virtual network. If the flag is set to true, and allowGatewayTransit on remote peering is also true, virtual network will use gateways of remote virtual network for transit. Only one peering can have this flag set to true. This flag cannot be set if virtual network already has a gateway.", + SerializedName = @"useRemoteGateways", + PossibleTypes = new [] { typeof(global::System.Management.Automation.SwitchParameter) })] + public global::System.Management.Automation.SwitchParameter UseRemoteGateway { get => VirtualNetworkPeeringParametersBody.UseRemoteGateway ?? default(global::System.Management.Automation.SwitchParameter); set => VirtualNetworkPeeringParametersBody.UseRemoteGateway = value; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeering _virtualNetworkPeeringParametersBody= new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.VirtualNetworkPeering(); + + /// Peerings in a VirtualNetwork resource + private Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeering VirtualNetworkPeeringParametersBody { get => this._virtualNetworkPeeringParametersBody; set => this._virtualNetworkPeeringParametersBody = value; } + + /// Backing field for property. + private string _workspaceName; + + /// The name of the workspace. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of the workspace.")] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The name of the workspace.", + SerializedName = @"workspaceName", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Path)] + public string WorkspaceName { get => this._workspaceName; set => this._workspaceName = value; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Creates a duplicate instance of this cmdlet (via JSON serialization). + /// a duplicate instance of NewAzDatabricksVNetPeering_CreateExpanded + public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Cmdlets.NewAzDatabricksVNetPeering_CreateExpanded Clone() + { + var clone = new NewAzDatabricksVNetPeering_CreateExpanded(); + clone.__correlationId = this.__correlationId; + clone.__processRecordId = this.__processRecordId; + clone.DefaultProfile = this.DefaultProfile; + clone.InvocationInformation = this.InvocationInformation; + clone.Proxy = this.Proxy; + clone.Pipeline = this.Pipeline; + clone.AsJob = this.AsJob; + clone.Break = this.Break; + clone.ProxyCredential = this.ProxyCredential; + clone.ProxyUseDefaultCredentials = this.ProxyUseDefaultCredentials; + clone.HttpPipelinePrepend = this.HttpPipelinePrepend; + clone.HttpPipelineAppend = this.HttpPipelineAppend; + clone.VirtualNetworkPeeringParametersBody = this.VirtualNetworkPeeringParametersBody; + clone.ResourceGroupName = this.ResourceGroupName; + clone.WorkspaceName = this.WorkspaceName; + clone.SubscriptionId = this.SubscriptionId; + clone.Name = this.Name; + return clone; + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletEndProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.Information: + { + // When an operation supports asjob, Information messages must go thru verbose. + WriteVerbose($"INFORMATION: {(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.DelayBeforePolling: + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("NoWait")) + { + var data = messageData(); + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + var asyncOperation = response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = response.GetFirstHeader(@"Location"); + var uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? response.RequestMessage.RequestUri.AbsoluteUri : location : asyncOperation; + WriteObject(new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.PowerShell.AsyncOperationResponse { Target = uri }); + // do nothing more. + data.Cancel(); + return; + } + } + break; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.Databricks.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public NewAzDatabricksVNetPeering_CreateExpanded() + { + + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'VNetPeeringCreateOrUpdate' operation")) + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("AsJob")) + { + var instance = this.Clone(); + var job = new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.PowerShell.AsyncJob(instance, this.MyInvocation.Line, this.MyInvocation.MyCommand.Name, this._cancellationTokenSource.Token, this._cancellationTokenSource.Cancel); + JobRepository.Add(job); + var task = instance.ProcessRecordAsync(); + job.Monitor(task); + WriteObject(job); + } + else + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token); + } + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletProcessRecordAsyncStart); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.Databricks.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.VNetPeeringCreateOrUpdate(ResourceGroupName, WorkspaceName, SubscriptionId, Name, VirtualNetworkPeeringParametersBody, onOk, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName,WorkspaceName=WorkspaceName,SubscriptionId=SubscriptionId,Name=Name,body=VirtualNetworkPeeringParametersBody}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName, WorkspaceName=WorkspaceName, SubscriptionId=SubscriptionId, Name=Name, body=VirtualNetworkPeeringParametersBody }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName, WorkspaceName=WorkspaceName, SubscriptionId=SubscriptionId, Name=Name, body=VirtualNetworkPeeringParametersBody }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeering + WriteObject((await response)); + } + } + } +} \ No newline at end of file diff --git a/src/Databricks/generated/cmdlets/NewAzDatabricksVNetPeering_CreateViaIdentity.cs b/src/Databricks/generated/cmdlets/NewAzDatabricksVNetPeering_CreateViaIdentity.cs new file mode 100644 index 000000000000..940cc48175d6 --- /dev/null +++ b/src/Databricks/generated/cmdlets/NewAzDatabricksVNetPeering_CreateViaIdentity.cs @@ -0,0 +1,462 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.Databricks.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Extensions; + + /// Creates vNet Peering for workspace. + /// + /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Databricks/workspaces/{workspaceName}/virtualNetworkPeerings/{peeringName}" + /// + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.InternalExport] + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzDatabricksVNetPeering_CreateViaIdentity", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeering))] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Description(@"Creates vNet Peering for workspace.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Generated] + public partial class NewAzDatabricksVNetPeering_CreateViaIdentity : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// when specified, runs this cmdlet as a PowerShell job + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command as a job")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter AsJob { get; set; } + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Databricks Client => Microsoft.Azure.PowerShell.Cmdlets.Databricks.Module.Instance.ClientAPI; + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentity _inputObject; + + /// Identity Parameter + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Identity Parameter", ValueFromPipeline = true)] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Path)] + public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentity InputObject { get => this._inputObject; set => this._inputObject = value; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// when specified, will make the remote call, and return an AsyncOperationResponse, letting the remote operation continue + /// asynchronously. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command asynchronously")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter NoWait { get; set; } + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeering _virtualNetworkPeeringParameter; + + /// Peerings in a VirtualNetwork resource + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Peerings in a VirtualNetwork resource", ValueFromPipeline = true)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Peerings in a VirtualNetwork resource", + SerializedName = @"virtualNetworkPeeringParameters", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeering) })] + public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeering VirtualNetworkPeeringParameter { get => this._virtualNetworkPeeringParameter; set => this._virtualNetworkPeeringParameter = value; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Creates a duplicate instance of this cmdlet (via JSON serialization). + /// a duplicate instance of NewAzDatabricksVNetPeering_CreateViaIdentity + public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Cmdlets.NewAzDatabricksVNetPeering_CreateViaIdentity Clone() + { + var clone = new NewAzDatabricksVNetPeering_CreateViaIdentity(); + clone.__correlationId = this.__correlationId; + clone.__processRecordId = this.__processRecordId; + clone.DefaultProfile = this.DefaultProfile; + clone.InvocationInformation = this.InvocationInformation; + clone.Proxy = this.Proxy; + clone.Pipeline = this.Pipeline; + clone.AsJob = this.AsJob; + clone.Break = this.Break; + clone.ProxyCredential = this.ProxyCredential; + clone.ProxyUseDefaultCredentials = this.ProxyUseDefaultCredentials; + clone.HttpPipelinePrepend = this.HttpPipelinePrepend; + clone.HttpPipelineAppend = this.HttpPipelineAppend; + clone.VirtualNetworkPeeringParameter = this.VirtualNetworkPeeringParameter; + return clone; + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletEndProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.Information: + { + // When an operation supports asjob, Information messages must go thru verbose. + WriteVerbose($"INFORMATION: {(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.DelayBeforePolling: + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("NoWait")) + { + var data = messageData(); + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + var asyncOperation = response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = response.GetFirstHeader(@"Location"); + var uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? response.RequestMessage.RequestUri.AbsoluteUri : location : asyncOperation; + WriteObject(new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.PowerShell.AsyncOperationResponse { Target = uri }); + // do nothing more. + data.Cancel(); + return; + } + } + break; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.Databricks.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public NewAzDatabricksVNetPeering_CreateViaIdentity() + { + + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'VNetPeeringCreateOrUpdate' operation")) + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("AsJob")) + { + var instance = this.Clone(); + var job = new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.PowerShell.AsyncJob(instance, this.MyInvocation.Line, this.MyInvocation.MyCommand.Name, this._cancellationTokenSource.Token, this._cancellationTokenSource.Cancel); + JobRepository.Add(job); + var task = instance.ProcessRecordAsync(); + job.Monitor(task); + WriteObject(job); + } + else + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token); + } + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletProcessRecordAsyncStart); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.Databricks.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + if (InputObject?.Id != null) + { + await this.Client.VNetPeeringCreateOrUpdateViaIdentity(InputObject.Id, VirtualNetworkPeeringParameter, onOk, onDefault, this, Pipeline); + } + else + { + // try to call with PATH parameters from Input Object + if (null == InputObject.ResourceGroupName) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.ResourceGroupName"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + if (null == InputObject.WorkspaceName) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.WorkspaceName"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + if (null == InputObject.SubscriptionId) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.SubscriptionId"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + if (null == InputObject.PeeringName) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.PeeringName"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + await this.Client.VNetPeeringCreateOrUpdate(InputObject.ResourceGroupName ?? null, InputObject.WorkspaceName ?? null, InputObject.SubscriptionId ?? null, InputObject.PeeringName ?? null, VirtualNetworkPeeringParameter, onOk, onDefault, this, Pipeline); + } + await ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=VirtualNetworkPeeringParameter}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=VirtualNetworkPeeringParameter }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=VirtualNetworkPeeringParameter }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeering + WriteObject((await response)); + } + } + } +} \ No newline at end of file diff --git a/src/Databricks/generated/cmdlets/NewAzDatabricksWorkspace_CreateExpanded.cs b/src/Databricks/generated/cmdlets/NewAzDatabricksWorkspace_CreateExpanded.cs index 16d7372bdd45..66446e1fd9a4 100644 --- a/src/Databricks/generated/cmdlets/NewAzDatabricksWorkspace_CreateExpanded.cs +++ b/src/Databricks/generated/cmdlets/NewAzDatabricksWorkspace_CreateExpanded.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Databricks.Cmdlets /// Creates a new workspace. /// - /// [OpenAPI] Workspaces_CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Databricks/workspaces/{workspaceName}" + /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Databricks/workspaces/{workspaceName}" /// [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzDatabricksWorkspace_CreateExpanded", SupportsShouldProcess = true)] diff --git a/src/Databricks/generated/cmdlets/NewAzDatabricksWorkspace_CreateViaIdentity.cs b/src/Databricks/generated/cmdlets/NewAzDatabricksWorkspace_CreateViaIdentity.cs index 9d522f055f86..455afc64919a 100644 --- a/src/Databricks/generated/cmdlets/NewAzDatabricksWorkspace_CreateViaIdentity.cs +++ b/src/Databricks/generated/cmdlets/NewAzDatabricksWorkspace_CreateViaIdentity.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Databricks.Cmdlets /// Creates a new workspace. /// - /// [OpenAPI] Workspaces_CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Databricks/workspaces/{workspaceName}" + /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Databricks/workspaces/{workspaceName}" /// [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzDatabricksWorkspace_CreateViaIdentity", SupportsShouldProcess = true)] diff --git a/src/Databricks/generated/cmdlets/RemoveAzDatabricksVNetPeering_Delete.cs b/src/Databricks/generated/cmdlets/RemoveAzDatabricksVNetPeering_Delete.cs new file mode 100644 index 000000000000..a0d12d833612 --- /dev/null +++ b/src/Databricks/generated/cmdlets/RemoveAzDatabricksVNetPeering_Delete.cs @@ -0,0 +1,518 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.Databricks.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Extensions; + + /// Deletes the workspace vNetPeering. + /// + /// [OpenAPI] Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Databricks/workspaces/{workspaceName}/virtualNetworkPeerings/{peeringName}" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzDatabricksVNetPeering_Delete", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(bool))] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Description(@"Deletes the workspace vNetPeering.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Generated] + public partial class RemoveAzDatabricksVNetPeering_Delete : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// when specified, runs this cmdlet as a PowerShell job + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command as a job")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter AsJob { get; set; } + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Databricks Client => Microsoft.Azure.PowerShell.Cmdlets.Databricks.Module.Instance.ClientAPI; + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// Backing field for property. + private string _name; + + /// The name of the workspace vNet peering. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of the workspace vNet peering.")] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The name of the workspace vNet peering.", + SerializedName = @"peeringName", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Path)] + public string Name { get => this._name; set => this._name = value; } + + /// + /// when specified, will make the remote call, and return an AsyncOperationResponse, letting the remote operation continue + /// asynchronously. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command asynchronously")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter NoWait { get; set; } + + /// + /// When specified, forces the cmdlet return a 'bool' given that there isn't a return type by default. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Returns true when the command succeeds")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter PassThru { get; set; } + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Backing field for property. + private string _resourceGroupName; + + /// The name of the resource group. The name is case insensitive. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of the resource group. The name is case insensitive.")] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The name of the resource group. The name is case insensitive.", + SerializedName = @"resourceGroupName", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Path)] + public string ResourceGroupName { get => this._resourceGroupName; set => this._resourceGroupName = value; } + + /// Backing field for property. + private string _subscriptionId; + + /// The ID of the target subscription. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The ID of the target subscription.")] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The ID of the target subscription.", + SerializedName = @"subscriptionId", + PossibleTypes = new [] { typeof(string) })] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.DefaultInfo( + Name = @"", + Description =@"", + Script = @"(Get-AzContext).Subscription.Id")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Path)] + public string SubscriptionId { get => this._subscriptionId; set => this._subscriptionId = value; } + + /// Backing field for property. + private string _workspaceName; + + /// The name of the workspace. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of the workspace.")] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The name of the workspace.", + SerializedName = @"workspaceName", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Path)] + public string WorkspaceName { get => this._workspaceName; set => this._workspaceName = value; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnNoContent will be called before the regular onNoContent has been processed, allowing customization of + /// what happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// /// Determines if the rest of the onNoContent method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnNoContent(global::System.Net.Http.HttpResponseMessage responseMessage, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Creates a duplicate instance of this cmdlet (via JSON serialization). + /// a duplicate instance of RemoveAzDatabricksVNetPeering_Delete + public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Cmdlets.RemoveAzDatabricksVNetPeering_Delete Clone() + { + var clone = new RemoveAzDatabricksVNetPeering_Delete(); + clone.__correlationId = this.__correlationId; + clone.__processRecordId = this.__processRecordId; + clone.DefaultProfile = this.DefaultProfile; + clone.InvocationInformation = this.InvocationInformation; + clone.Proxy = this.Proxy; + clone.Pipeline = this.Pipeline; + clone.AsJob = this.AsJob; + clone.Break = this.Break; + clone.ProxyCredential = this.ProxyCredential; + clone.ProxyUseDefaultCredentials = this.ProxyUseDefaultCredentials; + clone.HttpPipelinePrepend = this.HttpPipelinePrepend; + clone.HttpPipelineAppend = this.HttpPipelineAppend; + clone.ResourceGroupName = this.ResourceGroupName; + clone.WorkspaceName = this.WorkspaceName; + clone.SubscriptionId = this.SubscriptionId; + clone.Name = this.Name; + return clone; + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletEndProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.Information: + { + // When an operation supports asjob, Information messages must go thru verbose. + WriteVerbose($"INFORMATION: {(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.DelayBeforePolling: + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("NoWait")) + { + var data = messageData(); + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + var asyncOperation = response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = response.GetFirstHeader(@"Location"); + var uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? response.RequestMessage.RequestUri.AbsoluteUri : location : asyncOperation; + WriteObject(new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.PowerShell.AsyncOperationResponse { Target = uri }); + // do nothing more. + data.Cancel(); + return; + } + } + break; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.Databricks.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'VNetPeeringDelete' operation")) + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("AsJob")) + { + var instance = this.Clone(); + var job = new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.PowerShell.AsyncJob(instance, this.MyInvocation.Line, this.MyInvocation.MyCommand.Name, this._cancellationTokenSource.Token, this._cancellationTokenSource.Cancel); + JobRepository.Add(job); + var task = instance.ProcessRecordAsync(); + job.Monitor(task); + WriteObject(job); + } + else + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token); + } + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletProcessRecordAsyncStart); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.Databricks.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.VNetPeeringDelete(ResourceGroupName, WorkspaceName, SubscriptionId, Name, onOk, onNoContent, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName,WorkspaceName=WorkspaceName,SubscriptionId=SubscriptionId,Name=Name}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public RemoveAzDatabricksVNetPeering_Delete() + { + + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName, WorkspaceName=WorkspaceName, SubscriptionId=SubscriptionId, Name=Name }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName, WorkspaceName=WorkspaceName, SubscriptionId=SubscriptionId, Name=Name }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 204 (NoContent). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onNoContent(global::System.Net.Http.HttpResponseMessage responseMessage) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnNoContent(responseMessage, ref _returnNow); + // if overrideOnNoContent has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onNoContent - response for 204 / + if (true == MyInvocation?.BoundParameters?.ContainsKey("PassThru")) + { + WriteObject(true); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / + if (true == MyInvocation?.BoundParameters?.ContainsKey("PassThru")) + { + WriteObject(true); + } + } + } + } +} \ No newline at end of file diff --git a/src/Databricks/generated/cmdlets/RemoveAzDatabricksVNetPeering_DeleteViaIdentity.cs b/src/Databricks/generated/cmdlets/RemoveAzDatabricksVNetPeering_DeleteViaIdentity.cs new file mode 100644 index 000000000000..b43bfd2ff4f7 --- /dev/null +++ b/src/Databricks/generated/cmdlets/RemoveAzDatabricksVNetPeering_DeleteViaIdentity.cs @@ -0,0 +1,486 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.Databricks.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Extensions; + + /// Deletes the workspace vNetPeering. + /// + /// [OpenAPI] Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Databricks/workspaces/{workspaceName}/virtualNetworkPeerings/{peeringName}" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzDatabricksVNetPeering_DeleteViaIdentity", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(bool))] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Description(@"Deletes the workspace vNetPeering.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Generated] + public partial class RemoveAzDatabricksVNetPeering_DeleteViaIdentity : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// when specified, runs this cmdlet as a PowerShell job + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command as a job")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter AsJob { get; set; } + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Databricks Client => Microsoft.Azure.PowerShell.Cmdlets.Databricks.Module.Instance.ClientAPI; + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentity _inputObject; + + /// Identity Parameter + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Identity Parameter", ValueFromPipeline = true)] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Path)] + public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentity InputObject { get => this._inputObject; set => this._inputObject = value; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// when specified, will make the remote call, and return an AsyncOperationResponse, letting the remote operation continue + /// asynchronously. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command asynchronously")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter NoWait { get; set; } + + /// + /// When specified, forces the cmdlet return a 'bool' given that there isn't a return type by default. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Returns true when the command succeeds")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter PassThru { get; set; } + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnNoContent will be called before the regular onNoContent has been processed, allowing customization of + /// what happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// /// Determines if the rest of the onNoContent method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnNoContent(global::System.Net.Http.HttpResponseMessage responseMessage, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Creates a duplicate instance of this cmdlet (via JSON serialization). + /// a duplicate instance of RemoveAzDatabricksVNetPeering_DeleteViaIdentity + public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Cmdlets.RemoveAzDatabricksVNetPeering_DeleteViaIdentity Clone() + { + var clone = new RemoveAzDatabricksVNetPeering_DeleteViaIdentity(); + clone.__correlationId = this.__correlationId; + clone.__processRecordId = this.__processRecordId; + clone.DefaultProfile = this.DefaultProfile; + clone.InvocationInformation = this.InvocationInformation; + clone.Proxy = this.Proxy; + clone.Pipeline = this.Pipeline; + clone.AsJob = this.AsJob; + clone.Break = this.Break; + clone.ProxyCredential = this.ProxyCredential; + clone.ProxyUseDefaultCredentials = this.ProxyUseDefaultCredentials; + clone.HttpPipelinePrepend = this.HttpPipelinePrepend; + clone.HttpPipelineAppend = this.HttpPipelineAppend; + return clone; + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletEndProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.Information: + { + // When an operation supports asjob, Information messages must go thru verbose. + WriteVerbose($"INFORMATION: {(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.DelayBeforePolling: + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("NoWait")) + { + var data = messageData(); + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + var asyncOperation = response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = response.GetFirstHeader(@"Location"); + var uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? response.RequestMessage.RequestUri.AbsoluteUri : location : asyncOperation; + WriteObject(new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.PowerShell.AsyncOperationResponse { Target = uri }); + // do nothing more. + data.Cancel(); + return; + } + } + break; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.Databricks.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'VNetPeeringDelete' operation")) + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("AsJob")) + { + var instance = this.Clone(); + var job = new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.PowerShell.AsyncJob(instance, this.MyInvocation.Line, this.MyInvocation.MyCommand.Name, this._cancellationTokenSource.Token, this._cancellationTokenSource.Cancel); + JobRepository.Add(job); + var task = instance.ProcessRecordAsync(); + job.Monitor(task); + WriteObject(job); + } + else + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token); + } + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletProcessRecordAsyncStart); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.Databricks.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + if (InputObject?.Id != null) + { + await this.Client.VNetPeeringDeleteViaIdentity(InputObject.Id, onOk, onNoContent, onDefault, this, Pipeline); + } + else + { + // try to call with PATH parameters from Input Object + if (null == InputObject.ResourceGroupName) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.ResourceGroupName"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + if (null == InputObject.WorkspaceName) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.WorkspaceName"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + if (null == InputObject.SubscriptionId) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.SubscriptionId"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + if (null == InputObject.PeeringName) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.PeeringName"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + await this.Client.VNetPeeringDelete(InputObject.ResourceGroupName ?? null, InputObject.WorkspaceName ?? null, InputObject.SubscriptionId ?? null, InputObject.PeeringName ?? null, onOk, onNoContent, onDefault, this, Pipeline); + } + await ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public RemoveAzDatabricksVNetPeering_DeleteViaIdentity() + { + + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 204 (NoContent). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onNoContent(global::System.Net.Http.HttpResponseMessage responseMessage) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnNoContent(responseMessage, ref _returnNow); + // if overrideOnNoContent has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onNoContent - response for 204 / + if (true == MyInvocation?.BoundParameters?.ContainsKey("PassThru")) + { + WriteObject(true); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / + if (true == MyInvocation?.BoundParameters?.ContainsKey("PassThru")) + { + WriteObject(true); + } + } + } + } +} \ No newline at end of file diff --git a/src/Databricks/generated/cmdlets/RemoveAzDatabricksWorkspace_Delete.cs b/src/Databricks/generated/cmdlets/RemoveAzDatabricksWorkspace_Delete.cs index a26f00d206ae..d826dcd191ee 100644 --- a/src/Databricks/generated/cmdlets/RemoveAzDatabricksWorkspace_Delete.cs +++ b/src/Databricks/generated/cmdlets/RemoveAzDatabricksWorkspace_Delete.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Databricks.Cmdlets /// Deletes the workspace. /// - /// [OpenAPI] Workspaces_Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Databricks/workspaces/{workspaceName}" + /// [OpenAPI] Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Databricks/workspaces/{workspaceName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzDatabricksWorkspace_Delete", SupportsShouldProcess = true)] [global::System.Management.Automation.OutputType(typeof(bool))] diff --git a/src/Databricks/generated/cmdlets/RemoveAzDatabricksWorkspace_DeleteViaIdentity.cs b/src/Databricks/generated/cmdlets/RemoveAzDatabricksWorkspace_DeleteViaIdentity.cs index 9f45143ac4c4..66ab9797dd6e 100644 --- a/src/Databricks/generated/cmdlets/RemoveAzDatabricksWorkspace_DeleteViaIdentity.cs +++ b/src/Databricks/generated/cmdlets/RemoveAzDatabricksWorkspace_DeleteViaIdentity.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Databricks.Cmdlets /// Deletes the workspace. /// - /// [OpenAPI] Workspaces_Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Databricks/workspaces/{workspaceName}" + /// [OpenAPI] Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Databricks/workspaces/{workspaceName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzDatabricksWorkspace_DeleteViaIdentity", SupportsShouldProcess = true)] [global::System.Management.Automation.OutputType(typeof(bool))] diff --git a/src/Databricks/generated/cmdlets/SetAzDatabricksVNetPeering_UpdateExpanded.cs b/src/Databricks/generated/cmdlets/SetAzDatabricksVNetPeering_UpdateExpanded.cs new file mode 100644 index 000000000000..d78c0132bb26 --- /dev/null +++ b/src/Databricks/generated/cmdlets/SetAzDatabricksVNetPeering_UpdateExpanded.cs @@ -0,0 +1,587 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.Databricks.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Extensions; + + /// Creates vNet Peering for workspace. + /// + /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Databricks/workspaces/{workspaceName}/virtualNetworkPeerings/{peeringName}" + /// + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.InternalExport] + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Set, @"AzDatabricksVNetPeering_UpdateExpanded", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeering))] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Description(@"Creates vNet Peering for workspace.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Generated] + public partial class SetAzDatabricksVNetPeering_UpdateExpanded : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// + /// Whether the forwarded traffic from the VMs in the local virtual network will be allowed/disallowed in remote virtual network. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Whether the forwarded traffic from the VMs in the local virtual network will be allowed/disallowed in remote virtual network.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Whether the forwarded traffic from the VMs in the local virtual network will be allowed/disallowed in remote virtual network.", + SerializedName = @"allowForwardedTraffic", + PossibleTypes = new [] { typeof(global::System.Management.Automation.SwitchParameter) })] + public global::System.Management.Automation.SwitchParameter AllowForwardedTraffic { get => VirtualNetworkPeeringParametersBody.AllowForwardedTraffic ?? default(global::System.Management.Automation.SwitchParameter); set => VirtualNetworkPeeringParametersBody.AllowForwardedTraffic = value; } + + /// + /// If gateway links can be used in remote virtual networking to link to this virtual network. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "If gateway links can be used in remote virtual networking to link to this virtual network.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"If gateway links can be used in remote virtual networking to link to this virtual network.", + SerializedName = @"allowGatewayTransit", + PossibleTypes = new [] { typeof(global::System.Management.Automation.SwitchParameter) })] + public global::System.Management.Automation.SwitchParameter AllowGatewayTransit { get => VirtualNetworkPeeringParametersBody.AllowGatewayTransit ?? default(global::System.Management.Automation.SwitchParameter); set => VirtualNetworkPeeringParametersBody.AllowGatewayTransit = value; } + + /// + /// Whether the VMs in the local virtual network space would be able to access the VMs in remote virtual network space. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Whether the VMs in the local virtual network space would be able to access the VMs in remote virtual network space.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Whether the VMs in the local virtual network space would be able to access the VMs in remote virtual network space.", + SerializedName = @"allowVirtualNetworkAccess", + PossibleTypes = new [] { typeof(global::System.Management.Automation.SwitchParameter) })] + public global::System.Management.Automation.SwitchParameter AllowVirtualNetworkAccess { get => VirtualNetworkPeeringParametersBody.AllowVirtualNetworkAccess ?? default(global::System.Management.Automation.SwitchParameter); set => VirtualNetworkPeeringParametersBody.AllowVirtualNetworkAccess = value; } + + /// when specified, runs this cmdlet as a PowerShell job + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command as a job")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter AsJob { get; set; } + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Databricks Client => Microsoft.Azure.PowerShell.Cmdlets.Databricks.Module.Instance.ClientAPI; + + /// A list of address blocks reserved for this virtual network in CIDR notation. + [global::System.Management.Automation.AllowEmptyCollection] + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "A list of address blocks reserved for this virtual network in CIDR notation.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"A list of address blocks reserved for this virtual network in CIDR notation.", + SerializedName = @"addressPrefixes", + PossibleTypes = new [] { typeof(string) })] + public string[] DatabrickAddressSpaceAddressPrefix { get => VirtualNetworkPeeringParametersBody.DatabrickAddressSpaceAddressPrefix ?? null /* arrayOf */; set => VirtualNetworkPeeringParametersBody.DatabrickAddressSpaceAddressPrefix = value; } + + /// The Id of the databricks virtual network. + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The Id of the databricks virtual network.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The Id of the databricks virtual network.", + SerializedName = @"id", + PossibleTypes = new [] { typeof(string) })] + public string DatabrickVirtualNetworkId { get => VirtualNetworkPeeringParametersBody.DatabrickVirtualNetworkId ?? null; set => VirtualNetworkPeeringParametersBody.DatabrickVirtualNetworkId = value; } + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// Backing field for property. + private string _name; + + /// The name of the workspace vNet peering. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of the workspace vNet peering.")] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The name of the workspace vNet peering.", + SerializedName = @"peeringName", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Path)] + public string Name { get => this._name; set => this._name = value; } + + /// + /// when specified, will make the remote call, and return an AsyncOperationResponse, letting the remote operation continue + /// asynchronously. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command asynchronously")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter NoWait { get; set; } + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// A list of address blocks reserved for this virtual network in CIDR notation. + [global::System.Management.Automation.AllowEmptyCollection] + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "A list of address blocks reserved for this virtual network in CIDR notation.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"A list of address blocks reserved for this virtual network in CIDR notation.", + SerializedName = @"addressPrefixes", + PossibleTypes = new [] { typeof(string) })] + public string[] RemoteAddressSpaceAddressPrefix { get => VirtualNetworkPeeringParametersBody.RemoteAddressSpaceAddressPrefix ?? null /* arrayOf */; set => VirtualNetworkPeeringParametersBody.RemoteAddressSpaceAddressPrefix = value; } + + /// The Id of the remote virtual network. + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The Id of the remote virtual network.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The Id of the remote virtual network.", + SerializedName = @"id", + PossibleTypes = new [] { typeof(string) })] + public string RemoteVirtualNetworkId { get => VirtualNetworkPeeringParametersBody.RemoteVirtualNetworkId ?? null; set => VirtualNetworkPeeringParametersBody.RemoteVirtualNetworkId = value; } + + /// Backing field for property. + private string _resourceGroupName; + + /// The name of the resource group. The name is case insensitive. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of the resource group. The name is case insensitive.")] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The name of the resource group. The name is case insensitive.", + SerializedName = @"resourceGroupName", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Path)] + public string ResourceGroupName { get => this._resourceGroupName; set => this._resourceGroupName = value; } + + /// Backing field for property. + private string _subscriptionId; + + /// The ID of the target subscription. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The ID of the target subscription.")] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The ID of the target subscription.", + SerializedName = @"subscriptionId", + PossibleTypes = new [] { typeof(string) })] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.DefaultInfo( + Name = @"", + Description =@"", + Script = @"(Get-AzContext).Subscription.Id")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Path)] + public string SubscriptionId { get => this._subscriptionId; set => this._subscriptionId = value; } + + /// + /// If remote gateways can be used on this virtual network. If the flag is set to true, and allowGatewayTransit on remote + /// peering is also true, virtual network will use gateways of remote virtual network for transit. Only one peering can have + /// this flag set to true. This flag cannot be set if virtual network already has a gateway. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "If remote gateways can be used on this virtual network. If the flag is set to true, and allowGatewayTransit on remote peering is also true, virtual network will use gateways of remote virtual network for transit. Only one peering can have this flag set to true. This flag cannot be set if virtual network already has a gateway.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"If remote gateways can be used on this virtual network. If the flag is set to true, and allowGatewayTransit on remote peering is also true, virtual network will use gateways of remote virtual network for transit. Only one peering can have this flag set to true. This flag cannot be set if virtual network already has a gateway.", + SerializedName = @"useRemoteGateways", + PossibleTypes = new [] { typeof(global::System.Management.Automation.SwitchParameter) })] + public global::System.Management.Automation.SwitchParameter UseRemoteGateway { get => VirtualNetworkPeeringParametersBody.UseRemoteGateway ?? default(global::System.Management.Automation.SwitchParameter); set => VirtualNetworkPeeringParametersBody.UseRemoteGateway = value; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeering _virtualNetworkPeeringParametersBody= new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.VirtualNetworkPeering(); + + /// Peerings in a VirtualNetwork resource + private Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeering VirtualNetworkPeeringParametersBody { get => this._virtualNetworkPeeringParametersBody; set => this._virtualNetworkPeeringParametersBody = value; } + + /// Backing field for property. + private string _workspaceName; + + /// The name of the workspace. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of the workspace.")] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The name of the workspace.", + SerializedName = @"workspaceName", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.ParameterCategory.Path)] + public string WorkspaceName { get => this._workspaceName; set => this._workspaceName = value; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Creates a duplicate instance of this cmdlet (via JSON serialization). + /// a duplicate instance of SetAzDatabricksVNetPeering_UpdateExpanded + public Microsoft.Azure.PowerShell.Cmdlets.Databricks.Cmdlets.SetAzDatabricksVNetPeering_UpdateExpanded Clone() + { + var clone = new SetAzDatabricksVNetPeering_UpdateExpanded(); + clone.__correlationId = this.__correlationId; + clone.__processRecordId = this.__processRecordId; + clone.DefaultProfile = this.DefaultProfile; + clone.InvocationInformation = this.InvocationInformation; + clone.Proxy = this.Proxy; + clone.Pipeline = this.Pipeline; + clone.AsJob = this.AsJob; + clone.Break = this.Break; + clone.ProxyCredential = this.ProxyCredential; + clone.ProxyUseDefaultCredentials = this.ProxyUseDefaultCredentials; + clone.HttpPipelinePrepend = this.HttpPipelinePrepend; + clone.HttpPipelineAppend = this.HttpPipelineAppend; + clone.VirtualNetworkPeeringParametersBody = this.VirtualNetworkPeeringParametersBody; + clone.ResourceGroupName = this.ResourceGroupName; + clone.WorkspaceName = this.WorkspaceName; + clone.SubscriptionId = this.SubscriptionId; + clone.Name = this.Name; + return clone; + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletEndProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.Information: + { + // When an operation supports asjob, Information messages must go thru verbose. + WriteVerbose($"INFORMATION: {(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.DelayBeforePolling: + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("NoWait")) + { + var data = messageData(); + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + var asyncOperation = response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = response.GetFirstHeader(@"Location"); + var uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? response.RequestMessage.RequestUri.AbsoluteUri : location : asyncOperation; + WriteObject(new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.PowerShell.AsyncOperationResponse { Target = uri }); + // do nothing more. + data.Cancel(); + return; + } + } + break; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.Databricks.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'VNetPeeringCreateOrUpdate' operation")) + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("AsJob")) + { + var instance = this.Clone(); + var job = new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.PowerShell.AsyncJob(instance, this.MyInvocation.Line, this.MyInvocation.MyCommand.Name, this._cancellationTokenSource.Token, this._cancellationTokenSource.Cancel); + JobRepository.Add(job); + var task = instance.ProcessRecordAsync(); + job.Monitor(task); + WriteObject(job); + } + else + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token); + } + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletProcessRecordAsyncStart); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.Databricks.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.VNetPeeringCreateOrUpdate(ResourceGroupName, WorkspaceName, SubscriptionId, Name, VirtualNetworkPeeringParametersBody, onOk, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName,WorkspaceName=WorkspaceName,SubscriptionId=SubscriptionId,Name=Name,body=VirtualNetworkPeeringParametersBody}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public SetAzDatabricksVNetPeering_UpdateExpanded() + { + + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName, WorkspaceName=WorkspaceName, SubscriptionId=SubscriptionId, Name=Name, body=VirtualNetworkPeeringParametersBody }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName, WorkspaceName=WorkspaceName, SubscriptionId=SubscriptionId, Name=Name, body=VirtualNetworkPeeringParametersBody }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeering + WriteObject((await response)); + } + } + } +} \ No newline at end of file diff --git a/src/Databricks/generated/cmdlets/UpdateAzDatabricksWorkspace_UpdateExpanded.cs b/src/Databricks/generated/cmdlets/UpdateAzDatabricksWorkspace_UpdateExpanded.cs index b8341cc53802..4074e04d780c 100644 --- a/src/Databricks/generated/cmdlets/UpdateAzDatabricksWorkspace_UpdateExpanded.cs +++ b/src/Databricks/generated/cmdlets/UpdateAzDatabricksWorkspace_UpdateExpanded.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Databricks.Cmdlets /// Updates a workspace. /// - /// [OpenAPI] Workspaces_Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Databricks/workspaces/{workspaceName}" + /// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Databricks/workspaces/{workspaceName}" /// [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzDatabricksWorkspace_UpdateExpanded", SupportsShouldProcess = true)] diff --git a/src/Databricks/generated/cmdlets/UpdateAzDatabricksWorkspace_UpdateViaIdentityExpanded.cs b/src/Databricks/generated/cmdlets/UpdateAzDatabricksWorkspace_UpdateViaIdentityExpanded.cs index 23b9f1cbc704..f4eb45e94770 100644 --- a/src/Databricks/generated/cmdlets/UpdateAzDatabricksWorkspace_UpdateViaIdentityExpanded.cs +++ b/src/Databricks/generated/cmdlets/UpdateAzDatabricksWorkspace_UpdateViaIdentityExpanded.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Databricks.Cmdlets /// Updates a workspace. /// - /// [OpenAPI] Workspaces_Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Databricks/workspaces/{workspaceName}" + /// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Databricks/workspaces/{workspaceName}" /// [global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzDatabricksWorkspace_UpdateViaIdentityExpanded", SupportsShouldProcess = true)] diff --git a/src/Databricks/help/Az.Databricks.md b/src/Databricks/help/Az.Databricks.md index b2278e8b235e..541e990f83b9 100644 --- a/src/Databricks/help/Az.Databricks.md +++ b/src/Databricks/help/Az.Databricks.md @@ -10,20 +10,28 @@ Locale: en-US ## Description Microsoft Azure PowerShell: Databricks cmdlets -While the Az.Databricks PowerShell module is in preview, you must install it separately from the Az PowerShell module using the following command: `Install-Module -Name Az.Databricks`. Once the Az.Databricks PowerShell module is generally available, it becomes part of future Az PowerShell module releases and available natively from within Azure Cloud Shell. - -This module allows the management of service features in preview which may not be available yet for your region or subscription. - ## Az.Databricks Cmdlets +### [Get-AzDatabricksVNetPeering](Get-AzDatabricksVNetPeering.md) +Gets the workspace vNet Peering. + ### [Get-AzDatabricksWorkspace](Get-AzDatabricksWorkspace.md) Gets the workspace. +### [New-AzDatabricksVNetPeering](New-AzDatabricksVNetPeering.md) +Creates vNet Peering for workspace. + ### [New-AzDatabricksWorkspace](New-AzDatabricksWorkspace.md) Creates a new workspace. +### [Remove-AzDatabricksVNetPeering](Remove-AzDatabricksVNetPeering.md) +Deletes the workspace vNetPeering. + ### [Remove-AzDatabricksWorkspace](Remove-AzDatabricksWorkspace.md) Deletes the workspace. +### [Update-AzDatabricksVNetPeering](Update-AzDatabricksVNetPeering.md) +Update vNet Peering for workspace. + ### [Update-AzDatabricksWorkspace](Update-AzDatabricksWorkspace.md) Updates a workspace. diff --git a/src/Databricks/help/Get-AzDatabricksVNetPeering.md b/src/Databricks/help/Get-AzDatabricksVNetPeering.md new file mode 100644 index 000000000000..df0ac4208fbf --- /dev/null +++ b/src/Databricks/help/Get-AzDatabricksVNetPeering.md @@ -0,0 +1,209 @@ +--- +external help file: +Module Name: Az.Databricks +online version: https://docs.microsoft.com/en-us/powershell/module/az.databricks/get-azdatabricksvnetpeering +schema: 2.0.0 +--- + +# Get-AzDatabricksVNetPeering + +## SYNOPSIS +Gets the workspace vNet Peering. + +## SYNTAX + +### List (Default) +``` +Get-AzDatabricksVNetPeering -ResourceGroupName -WorkspaceName [-SubscriptionId ] + [-DefaultProfile ] [] +``` + +### Get +``` +Get-AzDatabricksVNetPeering -Name -ResourceGroupName -WorkspaceName + [-SubscriptionId ] [-DefaultProfile ] [-PassThru] [] +``` + +### GetViaIdentity +``` +Get-AzDatabricksVNetPeering -InputObject [-DefaultProfile ] [-PassThru] + [] +``` + +## DESCRIPTION +Gets the workspace vNet Peering. + +## EXAMPLES + +### Example 1: List all vnet peering under a databricks +```powershell +PS C:\> Get-AzDatabricksVNetPeering -WorkspaceName databricks-test01 -ResourceGroupName lucas-manual-test + +Name Type +---- ---- +vnetpeering-t01 +vnetpeering-t02 +``` + +This command lists all vnet peering under a databricks. + +### Example 2: Get a vnet peering +```powershell +PS C:\> Get-AzDatabricksVNetPeering -ResourceGroupName lucas-manual-test -WorkspaceName databricks-test01 -PeeringName MyPeering-test01 + +Name Type +---- ---- +MyPeering-test01 +``` + +This command gets a vnet peering. + +### Example 3: Get a vnet peering by object +```powershell +PS C:\> New-AzDatabricksVNetPeering -Name vnetpeering-t02 -WorkspaceName databricks-test01 -ResourceGroupName lucas-manual-test -RemoteVirtualNetworkId '/subscriptions/xxxxx-xxxx-xxx-xxxxx/resourceGroups/azure-manual-test/providers/Microsoft.Network/virtualNetworks/vnet-test02' | Get-AzDatabricksVNetPeering + +Name Type +---- ---- +vnetpeering-t02 +``` + +This command gets a vnet peering by object. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Identity Parameter +To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentity +Parameter Sets: GetViaIdentity +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +The name of the workspace vNet peering. + +```yaml +Type: System.String +Parameter Sets: Get +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PassThru +Returns true when the command succeeds + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: Get, GetViaIdentity +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. +The name is case insensitive. + +```yaml +Type: System.String +Parameter Sets: Get, List +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SubscriptionId +The ID of the target subscription. + +```yaml +Type: System.String[] +Parameter Sets: Get, List +Aliases: + +Required: False +Position: Named +Default value: (Get-AzContext).Subscription.Id +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WorkspaceName +The name of the workspace. + +```yaml +Type: System.String +Parameter Sets: Get, List +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentity + +## OUTPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeering + +## NOTES + +ALIASES + +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + + +INPUTOBJECT : Identity Parameter + - `[Id ]`: Resource identity path + - `[PeeringName ]`: The name of the workspace vNet peering. + - `[ResourceGroupName ]`: The name of the resource group. The name is case insensitive. + - `[SubscriptionId ]`: The ID of the target subscription. + - `[WorkspaceName ]`: The name of the workspace. + +## RELATED LINKS + diff --git a/src/Databricks/help/New-AzDatabricksVNetPeering.md b/src/Databricks/help/New-AzDatabricksVNetPeering.md new file mode 100644 index 000000000000..e23ea9f3fba3 --- /dev/null +++ b/src/Databricks/help/New-AzDatabricksVNetPeering.md @@ -0,0 +1,315 @@ +--- +external help file: +Module Name: Az.Databricks +online version: https://docs.microsoft.com/en-us/powershell/module/az.databricks/new-azdatabricksvnetpeering +schema: 2.0.0 +--- + +# New-AzDatabricksVNetPeering + +## SYNOPSIS +Creates vNet Peering for workspace. + +## SYNTAX + +``` +New-AzDatabricksVNetPeering -Name -ResourceGroupName -WorkspaceName + [-SubscriptionId ] [-AllowForwardedTraffic] [-AllowGatewayTransit] [-AllowVirtualNetworkAccess] + [-DatabricksAddressSpacePrefix ] [-DatabricksVirtualNetworkId ] + [-RemoteAddressSpacePrefix ] [-RemoteVirtualNetworkId ] [-UseRemoteGateway] + [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] +``` + +## DESCRIPTION +Creates vNet Peering for workspace. + +## EXAMPLES + +### Example 1: Create a vnet peering for databricks +```powershell +PS C:\> New-AzDatabricksVNetPeering -Name vnetpeering-t01 -WorkspaceName databricks-test01 -ResourceGroupName lucas-manual-test -RemoteVirtualNetworkId '/subscriptions/xxxxxx-xxxx-xxx-xxx/resourceGroups/azure-manual-test/providers/Microsoft.Network/virtualNetworks/vnet-test01' + +Name Type +---- ---- +vnetpeering-t01 +``` + +This command creates a vnet peering for databricks. + +## PARAMETERS + +### -AllowForwardedTraffic +Whether the forwarded traffic from the VMs in the local virtual network will be allowed/disallowed in remote virtual network. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AllowGatewayTransit +If gateway links can be used in remote virtual networking to link to this virtual network. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AllowVirtualNetworkAccess +Whether the VMs in the local virtual network space would be able to access the VMs in remote virtual network space. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AsJob +Run the command as a job + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DatabricksAddressSpacePrefix +A list of address blocks reserved for this virtual network in CIDR notation. + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DatabricksVirtualNetworkId +The Id of the databricks virtual network. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +The name of the workspace vNet peering. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NoWait +Run the command asynchronously + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -RemoteAddressSpacePrefix +A list of address blocks reserved for this virtual network in CIDR notation. + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -RemoteVirtualNetworkId +The Id of the remote virtual network. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. +The name is case insensitive. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SubscriptionId +The ID of the target subscription. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: (Get-AzContext).Subscription.Id +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -UseRemoteGateway +If remote gateways can be used on this virtual network. +If the flag is set to true, and allowGatewayTransit on remote peering is also true, virtual network will use gateways of remote virtual network for transit. +Only one peering can have this flag set to true. +This flag cannot be set if virtual network already has a gateway. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WorkspaceName +The name of the workspace. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeering + +## NOTES + +ALIASES + +## RELATED LINKS + diff --git a/src/Databricks/help/New-AzDatabricksWorkspace.md b/src/Databricks/help/New-AzDatabricksWorkspace.md index b968d8813582..2d779d6bae77 100644 --- a/src/Databricks/help/New-AzDatabricksWorkspace.md +++ b/src/Databricks/help/New-AzDatabricksWorkspace.md @@ -44,7 +44,7 @@ PS C:\> $networkSecurityGroup = New-AzNetworkSecurityGroup -ResourceGroupName te PS C:\> $privSubnet = New-AzVirtualNetworkSubnetConfig -Name priv-sub -AddressPrefix "10.0.1.0/24" -NetworkSecurityGroup $networkSecurityGroup -Delegation $dlg PS C:\> $pubSubnet = New-AzVirtualNetworkSubnetConfig -Name pub-sub -AddressPrefix "10.0.2.0/24" -NetworkSecurityGroup $networkSecurityGroup -Delegation $dlg PS C:\> $testVN = New-AzVirtualNetwork -Name testvn -ResourceGroupName testgroup -Location eastus -AddressPrefix "10.0.0.0/16" -Subnet $privSubnet,$pubSubnet -PS C:\> New-AzDatabricksWorkspace -Name databricks-test-with-custom-vn -ResourceGroupName testgroup -Location eastus -VirtualNetworkId $testVN.Id -PrivateSubnetName $privSubnet.Name -PublicSubnetName $pubSubnet.Name -Sku standard +PS C:\> New-AzDatabricksWorkspace -Name databricks-test-with-custom-vn -ResourceGroupName testgroup -Location eastus -VirtualNetworkId $testVN.Id -PrivateSubnetName $privSubnet.Name -PublicSubnetName $privSubnet.Name -Sku standard Location Name Type -------- ---- ---- diff --git a/src/Databricks/help/Remove-AzDatabricksVNetPeering.md b/src/Databricks/help/Remove-AzDatabricksVNetPeering.md new file mode 100644 index 000000000000..79a89b9da92f --- /dev/null +++ b/src/Databricks/help/Remove-AzDatabricksVNetPeering.md @@ -0,0 +1,247 @@ +--- +external help file: +Module Name: Az.Databricks +online version: https://docs.microsoft.com/en-us/powershell/module/az.databricks/remove-azdatabricksvnetpeering +schema: 2.0.0 +--- + +# Remove-AzDatabricksVNetPeering + +## SYNOPSIS +Deletes the workspace vNetPeering. + +## SYNTAX + +### Delete (Default) +``` +Remove-AzDatabricksVNetPeering -Name -ResourceGroupName -WorkspaceName + [-SubscriptionId ] [-DefaultProfile ] [-AsJob] [-NoWait] [-PassThru] [-Confirm] [-WhatIf] + [] +``` + +### DeleteViaIdentity +``` +Remove-AzDatabricksVNetPeering -InputObject [-DefaultProfile ] [-AsJob] + [-NoWait] [-PassThru] [-Confirm] [-WhatIf] [] +``` + +## DESCRIPTION +Deletes the workspace vNetPeering. + +## EXAMPLES + +### Example 1: Remove a vnet peering of databricks by name +```powershell +PS C:\> Remove-AzDatabricksVNetPeering -WorkspaceName databricks-test01 -ResourceGroupName lucas-manual-test -Name vnetpeering-t01 + +``` + +This command removes a vnet peering of databricks by name + +### Example 2: Remove a vnet peering of databricks by object +```powershell +PS C:\> Get-AzDatabricksVNetPeering -ResourceGroupName lucas-manual-test -WorkspaceName databricks-test01 -PeeringName MyPeering-test01 | Remove-AzDatabricksVNetPeering + +``` + +This command removes a vnet peering of databricks by object + +## PARAMETERS + +### -AsJob +Run the command as a job + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Identity Parameter +To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentity +Parameter Sets: DeleteViaIdentity +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +The name of the workspace vNet peering. + +```yaml +Type: System.String +Parameter Sets: Delete +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NoWait +Run the command asynchronously + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PassThru +Returns true when the command succeeds + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. +The name is case insensitive. + +```yaml +Type: System.String +Parameter Sets: Delete +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SubscriptionId +The ID of the target subscription. + +```yaml +Type: System.String +Parameter Sets: Delete +Aliases: + +Required: False +Position: Named +Default value: (Get-AzContext).Subscription.Id +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WorkspaceName +The name of the workspace. + +```yaml +Type: System.String +Parameter Sets: Delete +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentity + +## OUTPUTS + +### System.Boolean + +## NOTES + +ALIASES + +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + + +INPUTOBJECT : Identity Parameter + - `[Id ]`: Resource identity path + - `[PeeringName ]`: The name of the workspace vNet peering. + - `[ResourceGroupName ]`: The name of the resource group. The name is case insensitive. + - `[SubscriptionId ]`: The ID of the target subscription. + - `[WorkspaceName ]`: The name of the workspace. + +## RELATED LINKS + diff --git a/src/Databricks/help/Update-AzDatabricksVNetPeering.md b/src/Databricks/help/Update-AzDatabricksVNetPeering.md new file mode 100644 index 000000000000..0fbca2391f2c --- /dev/null +++ b/src/Databricks/help/Update-AzDatabricksVNetPeering.md @@ -0,0 +1,308 @@ +--- +external help file: +Module Name: Az.Databricks +online version: https://docs.microsoft.com/en-us/powershell/module/az.databricks/update-azdatabricksvnetpeering +schema: 2.0.0 +--- + +# Update-AzDatabricksVNetPeering + +## SYNOPSIS +Update vNet Peering for workspace. + +## SYNTAX + +### UpdateExpanded (Default) +``` +Update-AzDatabricksVNetPeering -Name -ResourceGroupName -WorkspaceName + [-SubscriptionId ] [-AllowForwardedTraffic ] [-AllowGatewayTransit ] + [-AllowVirtualNetworkAccess ] [-UseRemoteGateway ] [-DefaultProfile ] [-AsJob] + [-NoWait] [-Confirm] [-WhatIf] [] +``` + +### UpdateViaIdentityExpanded +``` +Update-AzDatabricksVNetPeering -InputObject [-AllowForwardedTraffic ] + [-AllowGatewayTransit ] [-AllowVirtualNetworkAccess ] [-UseRemoteGateway ] + [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] +``` + +## DESCRIPTION +Update vNet Peering for workspace. + +## EXAMPLES + +### Example 1: Update AllowForwardedTraffic of vnet peering +```powershell +PS C:\> Update-AzDatabricksVNetPeering -WorkspaceName databricks-test01 -ResourceGroupName lucas-manual-test -Name vnetpeering-t01 -AllowForwardedTraffic $True + +Name Type +---- ---- +vnetpeering-t01 +``` + +This command updates AllowForwardedTraffic of vnet peering. + +### Example 2: Update AllowForwardedTraffic of vnet peering by object +```powershell +PS C:\> Get-AzDatabricksVNetPeering -WorkspaceName databricks-test01 -ResourceGroupName lucas-manual-test -Name vnetpeering-t01 | Update-AzDatabricksVNetPeering -AllowGatewayTransit $true + +Name Type +---- ---- +vnetpeering-t01 + +``` + +This command updates AllowForwardedTraffic of vnet peering by object. + +## PARAMETERS + +### -AllowForwardedTraffic +[System.Management.Automation.SwitchParameter] +Whether the forwarded traffic from the VMs in the local virtual network will be allowed/disallowed in remote virtual network. + +```yaml +Type: System.Boolean +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AllowGatewayTransit +[System.Management.Automation.SwitchParameter] +If gateway links can be used in remote virtual networking to link to this virtual network. + +```yaml +Type: System.Boolean +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AllowVirtualNetworkAccess +[System.Management.Automation.SwitchParameter] +Whether the VMs in the local virtual network space would be able to access the VMs in remote virtual network space. + +```yaml +Type: System.Boolean +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AsJob +Run the command as a job + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Identity parameter. +To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentity +Parameter Sets: UpdateViaIdentityExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +The name of the VNetPeering. + +```yaml +Type: System.String +Parameter Sets: UpdateExpanded +Aliases: PeeringName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NoWait +Run the command asynchronously + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. +The name is case insensitive. + +```yaml +Type: System.String +Parameter Sets: UpdateExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SubscriptionId +The ID of the target subscription. + +```yaml +Type: System.String +Parameter Sets: UpdateExpanded +Aliases: + +Required: False +Position: Named +Default value: (Get-AzContext).Subscription.Id +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -UseRemoteGateway +[System.Management.Automation.SwitchParameter] +If remote gateways can be used on this virtual network. +If the flag is set to true, and allowGatewayTransit on remote peering is also true, virtual network will use gateways of remote virtual network for transit. +Only one peering can have this flag set to true. +This flag cannot be set if virtual network already has a gateway. + +```yaml +Type: System.Boolean +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WorkspaceName +The name of the workspace. + +```yaml +Type: System.String +Parameter Sets: UpdateExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentity + +## OUTPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeering + +## NOTES + +ALIASES + +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + + +INPUTOBJECT : Identity parameter. + - `[Id ]`: Resource identity path + - `[PeeringName ]`: The name of the workspace vNet peering. + - `[ResourceGroupName ]`: The name of the resource group. The name is case insensitive. + - `[SubscriptionId ]`: The ID of the target subscription. + - `[WorkspaceName ]`: The name of the workspace. + +## RELATED LINKS + diff --git a/src/Databricks/help/Update-AzDatabricksWorkspace.md b/src/Databricks/help/Update-AzDatabricksWorkspace.md index e7258cd85604..b10f73e62bae 100644 --- a/src/Databricks/help/Update-AzDatabricksWorkspace.md +++ b/src/Databricks/help/Update-AzDatabricksWorkspace.md @@ -56,10 +56,13 @@ workspaceypae6l East US 2 EUAP /subscriptions/0140911e-1040-48da-8bc9-b99fb3dd88 ``` Enabling encryption on a Databricks workspace takes three steps: - -1. Update the workspace with `-PrepareEncryption` (if it was not created so). -1. Find `StorageAccountIdentityPrincipalId` in the output of the last step. Grant key permissions to the principal. -1. Update the workspace again to fill in information about the encryption key: +1. +Update the workspace with `-PrepareEncryption` (if it was not created so). +1. +Find `StorageAccountIdentityPrincipalId` in the output of the last step. +Grant key permissions to the principal. +1. +Update the workspace again to fill in information about the encryption key: - `-EncryptionKeySource` - `-EncryptionKeyVaultUri` - `-EncryptionKeyName` diff --git a/src/Databricks/internal/New-AzDatabricksVNetPeering.ps1 b/src/Databricks/internal/New-AzDatabricksVNetPeering.ps1 new file mode 100644 index 000000000000..5cebd8d1a68c --- /dev/null +++ b/src/Databricks/internal/New-AzDatabricksVNetPeering.ps1 @@ -0,0 +1,170 @@ + +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.Synopsis +Creates vNet Peering for workspace. +.Description +Creates vNet Peering for workspace. +.Example +PS C:\> New-AzDatabricksVNetPeering -Name vnetpeering-t01 -WorkspaceName databricks-test01 -ResourceGroupName lucas-manual-test -RemoteVirtualNetworkId '/subscriptions/xxxxxx-xxxx-xxx-xxx/resourceGroups/azure-manual-test/providers/Microsoft.Network/virtualNetworks/vnet-test01' + +Name Type +---- ---- +vnetpeering-t01 + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeering +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeering +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [Id ]: Resource identity path + [PeeringName ]: The name of the workspace vNet peering. + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. + [SubscriptionId ]: The ID of the target subscription. + [WorkspaceName ]: The name of the workspace. + +VIRTUALNETWORKPEERINGPARAMETER : Peerings in a VirtualNetwork resource + [AllowForwardedTraffic ]: Whether the forwarded traffic from the VMs in the local virtual network will be allowed/disallowed in remote virtual network. + [AllowGatewayTransit ]: If gateway links can be used in remote virtual networking to link to this virtual network. + [AllowVirtualNetworkAccess ]: Whether the VMs in the local virtual network space would be able to access the VMs in remote virtual network space. + [DatabrickAddressSpaceAddressPrefix ]: A list of address blocks reserved for this virtual network in CIDR notation. + [DatabrickVirtualNetworkId ]: The Id of the databricks virtual network. + [RemoteAddressSpaceAddressPrefix ]: A list of address blocks reserved for this virtual network in CIDR notation. + [RemoteVirtualNetworkId ]: The Id of the remote virtual network. + [UseRemoteGateway ]: If remote gateways can be used on this virtual network. If the flag is set to true, and allowGatewayTransit on remote peering is also true, virtual network will use gateways of remote virtual network for transit. Only one peering can have this flag set to true. This flag cannot be set if virtual network already has a gateway. +.Link +https://docs.microsoft.com/en-us/powershell/module/az.databricks/new-azdatabricksvnetpeering +#> +function New-AzDatabricksVNetPeering { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeering])] +[CmdletBinding(DefaultParameterSetName='CreateViaIdentity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter(Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeering] + # Peerings in a VirtualNetwork resource + # To construct, see NOTES section for VIRTUALNETWORKPEERINGPARAMETER properties and create a hash table. + ${VirtualNetworkPeeringParameter}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + CreateViaIdentity = 'Az.Databricks.private\New-AzDatabricksVNetPeering_CreateViaIdentity'; + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} diff --git a/src/Databricks/internal/ProxyCmdletDefinitions.ps1 b/src/Databricks/internal/ProxyCmdletDefinitions.ps1 index e1ef4a5d4396..c5305d8055fa 100644 --- a/src/Databricks/internal/ProxyCmdletDefinitions.ps1 +++ b/src/Databricks/internal/ProxyCmdletDefinitions.ps1 @@ -134,6 +134,176 @@ end { # limitations under the License. # ---------------------------------------------------------------------------------- +<# +.Synopsis +Creates vNet Peering for workspace. +.Description +Creates vNet Peering for workspace. +.Example +PS C:\> New-AzDatabricksVNetPeering -Name vnetpeering-t01 -WorkspaceName databricks-test01 -ResourceGroupName lucas-manual-test -RemoteVirtualNetworkId '/subscriptions/xxxxxx-xxxx-xxx-xxx/resourceGroups/azure-manual-test/providers/Microsoft.Network/virtualNetworks/vnet-test01' + +Name Type +---- ---- +vnetpeering-t01 + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeering +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeering +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [Id ]: Resource identity path + [PeeringName ]: The name of the workspace vNet peering. + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. + [SubscriptionId ]: The ID of the target subscription. + [WorkspaceName ]: The name of the workspace. + +VIRTUALNETWORKPEERINGPARAMETER : Peerings in a VirtualNetwork resource + [AllowForwardedTraffic ]: Whether the forwarded traffic from the VMs in the local virtual network will be allowed/disallowed in remote virtual network. + [AllowGatewayTransit ]: If gateway links can be used in remote virtual networking to link to this virtual network. + [AllowVirtualNetworkAccess ]: Whether the VMs in the local virtual network space would be able to access the VMs in remote virtual network space. + [DatabrickAddressSpaceAddressPrefix ]: A list of address blocks reserved for this virtual network in CIDR notation. + [DatabrickVirtualNetworkId ]: The Id of the databricks virtual network. + [RemoteAddressSpaceAddressPrefix ]: A list of address blocks reserved for this virtual network in CIDR notation. + [RemoteVirtualNetworkId ]: The Id of the remote virtual network. + [UseRemoteGateway ]: If remote gateways can be used on this virtual network. If the flag is set to true, and allowGatewayTransit on remote peering is also true, virtual network will use gateways of remote virtual network for transit. Only one peering can have this flag set to true. This flag cannot be set if virtual network already has a gateway. +.Link +https://docs.microsoft.com/en-us/powershell/module/az.databricks/new-azdatabricksvnetpeering +#> +function New-AzDatabricksVNetPeering { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeering])] +[CmdletBinding(DefaultParameterSetName='CreateViaIdentity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IDatabricksIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter(Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeering] + # Peerings in a VirtualNetwork resource + # To construct, see NOTES section for VIRTUALNETWORKPEERINGPARAMETER properties and create a hash table. + ${VirtualNetworkPeeringParameter}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + CreateViaIdentity = 'Az.Databricks.private\New-AzDatabricksVNetPeering_CreateViaIdentity'; + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} + +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + <# .Synopsis Creates a new workspace. @@ -476,6 +646,219 @@ end { # limitations under the License. # ---------------------------------------------------------------------------------- +<# +.Synopsis +Creates vNet Peering for workspace. +.Description +Creates vNet Peering for workspace. +.Example +PS C:\> {{ Add code here }} + +{{ Add output here }} +.Example +PS C:\> {{ Add code here }} + +{{ Add output here }} + +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeering +.Link +https://docs.microsoft.com/en-us/powershell/module/az.databricks/set-azdatabricksvnetpeering +#> +function Set-AzDatabricksVNetPeering { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeering])] +[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] + [System.String] + # The name of the workspace vNet peering. + ${Name}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] + [System.String] + # The name of the resource group. + # The name is case insensitive. + ${ResourceGroupName}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] + [System.String] + # The name of the workspace. + ${WorkspaceName}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # The ID of the target subscription. + ${SubscriptionId}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Body')] + [System.Management.Automation.SwitchParameter] + # Whether the forwarded traffic from the VMs in the local virtual network will be allowed/disallowed in remote virtual network. + ${AllowForwardedTraffic}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Body')] + [System.Management.Automation.SwitchParameter] + # If gateway links can be used in remote virtual networking to link to this virtual network. + ${AllowGatewayTransit}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Body')] + [System.Management.Automation.SwitchParameter] + # Whether the VMs in the local virtual network space would be able to access the VMs in remote virtual network space. + ${AllowVirtualNetworkAccess}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Body')] + [System.String[]] + # A list of address blocks reserved for this virtual network in CIDR notation. + ${DatabrickAddressSpaceAddressPrefix}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Body')] + [System.String] + # The Id of the databricks virtual network. + ${DatabrickVirtualNetworkId}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Body')] + [System.String[]] + # A list of address blocks reserved for this virtual network in CIDR notation. + ${RemoteAddressSpaceAddressPrefix}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Body')] + [System.String] + # The Id of the remote virtual network. + ${RemoteVirtualNetworkId}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Body')] + [System.Management.Automation.SwitchParameter] + # If remote gateways can be used on this virtual network. + # If the flag is set to true, and allowGatewayTransit on remote peering is also true, virtual network will use gateways of remote virtual network for transit. + # Only one peering can have this flag set to true. + # This flag cannot be set if virtual network already has a gateway. + ${UseRemoteGateway}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + UpdateExpanded = 'Az.Databricks.private\Set-AzDatabricksVNetPeering_UpdateExpanded'; + } + if (('UpdateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} + +# ---------------------------------------------------------------------------------- +# +# 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 Updates a workspace. diff --git a/src/Databricks/internal/Set-AzDatabricksVNetPeering.ps1 b/src/Databricks/internal/Set-AzDatabricksVNetPeering.ps1 new file mode 100644 index 000000000000..e41715fbe7d4 --- /dev/null +++ b/src/Databricks/internal/Set-AzDatabricksVNetPeering.ps1 @@ -0,0 +1,213 @@ + +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.Synopsis +Creates vNet Peering for workspace. +.Description +Creates vNet Peering for workspace. +.Example +PS C:\> {{ Add code here }} + +{{ Add output here }} +.Example +PS C:\> {{ Add code here }} + +{{ Add output here }} + +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeering +.Link +https://docs.microsoft.com/en-us/powershell/module/az.databricks/set-azdatabricksvnetpeering +#> +function Set-AzDatabricksVNetPeering { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20180401.IVirtualNetworkPeering])] +[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] + [System.String] + # The name of the workspace vNet peering. + ${Name}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] + [System.String] + # The name of the resource group. + # The name is case insensitive. + ${ResourceGroupName}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] + [System.String] + # The name of the workspace. + ${WorkspaceName}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # The ID of the target subscription. + ${SubscriptionId}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Body')] + [System.Management.Automation.SwitchParameter] + # Whether the forwarded traffic from the VMs in the local virtual network will be allowed/disallowed in remote virtual network. + ${AllowForwardedTraffic}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Body')] + [System.Management.Automation.SwitchParameter] + # If gateway links can be used in remote virtual networking to link to this virtual network. + ${AllowGatewayTransit}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Body')] + [System.Management.Automation.SwitchParameter] + # Whether the VMs in the local virtual network space would be able to access the VMs in remote virtual network space. + ${AllowVirtualNetworkAccess}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Body')] + [System.String[]] + # A list of address blocks reserved for this virtual network in CIDR notation. + ${DatabrickAddressSpaceAddressPrefix}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Body')] + [System.String] + # The Id of the databricks virtual network. + ${DatabrickVirtualNetworkId}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Body')] + [System.String[]] + # A list of address blocks reserved for this virtual network in CIDR notation. + ${RemoteAddressSpaceAddressPrefix}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Body')] + [System.String] + # The Id of the remote virtual network. + ${RemoteVirtualNetworkId}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Body')] + [System.Management.Automation.SwitchParameter] + # If remote gateways can be used on this virtual network. + # If the flag is set to true, and allowGatewayTransit on remote peering is also true, virtual network will use gateways of remote virtual network for transit. + # Only one peering can have this flag set to true. + # This flag cannot be set if virtual network already has a gateway. + ${UseRemoteGateway}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + UpdateExpanded = 'Az.Databricks.private\Set-AzDatabricksVNetPeering_UpdateExpanded'; + } + if (('UpdateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} diff --git a/src/Databricks/readme.md b/src/Databricks/readme.md index d4cd89fe5520..4c17b757bba4 100644 --- a/src/Databricks/readme.md +++ b/src/Databricks/readme.md @@ -17,7 +17,7 @@ This directory contains the PowerShell module for the Databricks service. This module was primarily generated via [AutoRest](https://github.com/Azure/autorest) using the [PowerShell](https://github.com/Azure/autorest.powershell) extension. ## Module Requirements -- [Az.Accounts module](https://www.powershellgallery.com/packages/Az.Accounts/), version 1.8.1 or greater +- [Az.Accounts module](https://www.powershellgallery.com/packages/Az.Accounts/), version 1.7.4 or greater ## Authentication AutoRest does not generate authentication code for the module. Authentication is handled via Az.Accounts by altering the HTTP payload before it is sent. @@ -109,17 +109,48 @@ directive: parameter-name: RequireInfrastructureEncryptionValue set: parameter-name: RequireInfrastructureEncryption - # Remove the set-* cmdlet + - where: + parameter-name: PeeringName + set: + parameter-name: Name + # Rename parameters of Set VNetPeering cmdlet + - where: + verb: New + subject: VNetPeering + parameter-name: DatabrickAddressSpaceAddressPrefix + set: + parameter-name: DatabricksAddressSpacePrefix + - where: + verb: New + subject: VNetPeering + parameter-name: RemoteAddressSpaceAddressPrefix + set: + parameter-name: RemoteAddressSpacePrefix + - where: + verb: New + subject: VNetPeering + parameter-name: DatabrickVirtualNetworkId + set: + parameter-name: DatabricksVirtualNetworkId + # Remove the set Workspace cmdlet - where: verb: Set + subject: Workspace remove: true - # Hide the New-* cmdlet for customization + # Hide the New Workspace cmdlet for customization - where: verb: New + subject: Workspace hide: true - # Hide the Update- cmdlet for customization + # Hide the Update Workspace cmdlet for customization - where: verb: Update + subject: Workspace + hide: true + # Hide the Set VNetPeering cmdlet for customization + - where: + verb: Set + subject: VNetPeering hide: true - where: model-name: Workspace @@ -162,8 +193,5 @@ directive: property-name: RequireInfrastructureEncryptionValue set: property-name: RequireInfrastructureEncryption - # Remove vnet peering cmdlets (not in scope) - - where: - subject: VNetPeering - remove: true + ``` diff --git a/src/Databricks/test/Az.Databricks-TestResults.xml b/src/Databricks/test/Az.Databricks-TestResults.xml new file mode 100644 index 000000000000..4759b888703b --- /dev/null +++ b/src/Databricks/test/Az.Databricks-TestResults.xml @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/Databricks/test/Get-AzDatabricksVNetPeering.Recording.json b/src/Databricks/test/Get-AzDatabricksVNetPeering.Recording.json new file mode 100644 index 000000000000..10fb9397cb81 --- /dev/null +++ b/src/Databricks/test/Get-AzDatabricksVNetPeering.Recording.json @@ -0,0 +1,162 @@ +{ + "Get-AzDatabricksVNetPeering+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspace2h9lsa/virtualNetworkPeerings?api-version=2018-04-01+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspace2h9lsa/virtualNetworkPeerings?api-version=2018-04-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1" ], + "x-ms-client-request-id": [ "4b05d138-f3d2-4fd0-b5d6-61283eaed04b" ], + "CommandName": [ "Get-AzDatabricksVNetPeering" ], + "FullCommandName": [ "Get-AzDatabricksVNetPeering_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "X-Frame-Options": [ "SAMEORIGIN" ], + "X-XSS-Protection": [ "1; mode=block" ], + "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "312c9de2792a43a692ed13020417e28a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], + "x-ms-correlation-request-id": [ "9b9d07bb-2525-42ae-87fb-420eabe47b44" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200917T031103Z:9b9d07bb-2525-42ae-87fb-420eabe47b44" ], + "Date": [ "Thu, 17 Sep 2020 03:11:03 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "939" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspace2h9lsa/virtualNetworkPeerings/vnetpeering-qf6zgw\",\"name\":\"vnetpeering-qf6zgw\",\"properties\":{\"allowVirtualNetworkAccess\":true,\"allowForwardedTraffic\":false,\"allowGatewayTransit\":false,\"useRemoteGateways\":false,\"remoteVirtualNetwork\":{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Network/virtualNetworks/databricks-vnet-hkgl9r\"},\"remoteAddressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"databricksVirtualNetwork\":{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspace2h9lsa-91e5h3uw20k7d/providers/Microsoft.Network/virtualNetworks/workers-vnet\"},\"databricksAddressSpace\":{\"addressPrefixes\":[\"10.139.0.0/16\"]},\"peeringState\":\"Initiated\",\"provisioningState\":\"Succeeded\"}}]}\n" + } + }, + "Get-AzDatabricksVNetPeering+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspace2h9lsa/virtualNetworkPeerings/vnetpeering-qf6zgw?api-version=2018-04-01+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspace2h9lsa/virtualNetworkPeerings/vnetpeering-qf6zgw?api-version=2018-04-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "2" ], + "x-ms-client-request-id": [ "d67fede3-0a61-4db8-b76a-401165ec206b" ], + "CommandName": [ "Get-AzDatabricksVNetPeering" ], + "FullCommandName": [ "Get-AzDatabricksVNetPeering_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "X-Frame-Options": [ "SAMEORIGIN" ], + "X-XSS-Protection": [ "1; mode=block" ], + "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "a5912eb27f4f46e2bea09a8773789832" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], + "x-ms-correlation-request-id": [ "0959b5e0-6ed4-4c39-8810-1c7c957c2eac" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200917T031104Z:0959b5e0-6ed4-4c39-8810-1c7c957c2eac" ], + "Date": [ "Thu, 17 Sep 2020 03:11:04 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "927" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspace2h9lsa/virtualNetworkPeerings/vnetpeering-qf6zgw\",\"name\":\"vnetpeering-qf6zgw\",\"properties\":{\"allowVirtualNetworkAccess\":true,\"allowForwardedTraffic\":false,\"allowGatewayTransit\":false,\"useRemoteGateways\":false,\"remoteVirtualNetwork\":{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Network/virtualNetworks/databricks-vnet-hkgl9r\"},\"remoteAddressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"databricksVirtualNetwork\":{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspace2h9lsa-91e5h3uw20k7d/providers/Microsoft.Network/virtualNetworks/workers-vnet\"},\"databricksAddressSpace\":{\"addressPrefixes\":[\"10.139.0.0/16\"]},\"peeringState\":\"Initiated\",\"provisioningState\":\"Succeeded\"}}\n" + } + }, + "Get-AzDatabricksVNetPeering+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspace2h9lsa/virtualNetworkPeerings/vnetpeering-qf6zgw?api-version=2018-04-01+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspace2h9lsa/virtualNetworkPeerings/vnetpeering-qf6zgw?api-version=2018-04-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "3" ], + "x-ms-client-request-id": [ "57a8235b-b9b8-4c7d-9e66-ba3c30d513cd" ], + "CommandName": [ "Get-AzDatabricksVNetPeering" ], + "FullCommandName": [ "Get-AzDatabricksVNetPeering_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "X-Frame-Options": [ "SAMEORIGIN" ], + "X-XSS-Protection": [ "1; mode=block" ], + "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "f56f37e03da44e48808d168f8d277836" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], + "x-ms-correlation-request-id": [ "0f86bc7d-d9d7-492b-b134-416deac88f12" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200917T031105Z:0f86bc7d-d9d7-492b-b134-416deac88f12" ], + "Date": [ "Thu, 17 Sep 2020 03:11:04 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "927" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspace2h9lsa/virtualNetworkPeerings/vnetpeering-qf6zgw\",\"name\":\"vnetpeering-qf6zgw\",\"properties\":{\"allowVirtualNetworkAccess\":true,\"allowForwardedTraffic\":false,\"allowGatewayTransit\":false,\"useRemoteGateways\":false,\"remoteVirtualNetwork\":{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Network/virtualNetworks/databricks-vnet-hkgl9r\"},\"remoteAddressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"databricksVirtualNetwork\":{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspace2h9lsa-91e5h3uw20k7d/providers/Microsoft.Network/virtualNetworks/workers-vnet\"},\"databricksAddressSpace\":{\"addressPrefixes\":[\"10.139.0.0/16\"]},\"peeringState\":\"Initiated\",\"provisioningState\":\"Succeeded\"}}\n" + } + }, + "Get-AzDatabricksVNetPeering+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspace2h9lsa/virtualNetworkPeerings/vnetpeering-qf6zgw?api-version=2018-04-01+2": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspace2h9lsa/virtualNetworkPeerings/vnetpeering-qf6zgw?api-version=2018-04-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "4" ], + "x-ms-client-request-id": [ "1f137258-7f27-41bd-852b-82efa27f8858" ], + "CommandName": [ "Get-AzDatabricksVNetPeering" ], + "FullCommandName": [ "Get-AzDatabricksVNetPeering_GetViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "X-Frame-Options": [ "SAMEORIGIN" ], + "X-XSS-Protection": [ "1; mode=block" ], + "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "df3072094c9748beb15cb8d32e4db2f0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], + "x-ms-correlation-request-id": [ "a2565d6d-1d33-4448-bf8f-fa6ffd103541" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200917T031105Z:a2565d6d-1d33-4448-bf8f-fa6ffd103541" ], + "Date": [ "Thu, 17 Sep 2020 03:11:05 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "927" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspace2h9lsa/virtualNetworkPeerings/vnetpeering-qf6zgw\",\"name\":\"vnetpeering-qf6zgw\",\"properties\":{\"allowVirtualNetworkAccess\":true,\"allowForwardedTraffic\":false,\"allowGatewayTransit\":false,\"useRemoteGateways\":false,\"remoteVirtualNetwork\":{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Network/virtualNetworks/databricks-vnet-hkgl9r\"},\"remoteAddressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"databricksVirtualNetwork\":{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspace2h9lsa-91e5h3uw20k7d/providers/Microsoft.Network/virtualNetworks/workers-vnet\"},\"databricksAddressSpace\":{\"addressPrefixes\":[\"10.139.0.0/16\"]},\"peeringState\":\"Initiated\",\"provisioningState\":\"Succeeded\"}}\n" + } + } +} \ No newline at end of file diff --git a/src/Databricks/test/Get-AzDatabricksVNetPeering.Tests.ps1 b/src/Databricks/test/Get-AzDatabricksVNetPeering.Tests.ps1 new file mode 100644 index 000000000000..03a1a92f132b --- /dev/null +++ b/src/Databricks/test/Get-AzDatabricksVNetPeering.Tests.ps1 @@ -0,0 +1,30 @@ +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' +} +. ($loadEnvPath) +$TestRecordingFile = Join-Path $PSScriptRoot 'Get-AzDatabricksVNetPeering.Recording.json' +$currentPath = $PSScriptRoot +while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent +} +. ($mockingPath | Select-Object -First 1).FullName + +Describe 'Get-AzDatabricksVNetPeering' { + It 'List' { + $vetPeeringList = Get-AzDatabricksVNetPeering -WorkspaceName $env.testWorkspace1 -ResourceGroupName $env.resourceGroup + $vetPeeringList.Count | Should -Be 1 + } + + It 'Get'{ + $vetPeering = Get-AzDatabricksVNetPeering -WorkspaceName $env.testWorkspace1 -ResourceGroupName $env.resourceGroup -Name $env.vnetpeeringname01 + $vetPeering.Name | Should -Be $env.vnetpeeringname01 + } + + It 'GetViaIdentity' { + $vetPeering = Get-AzDatabricksVNetPeering -WorkspaceName $env.testWorkspace1 -ResourceGroupName $env.resourceGroup -Name $env.vnetpeeringname01 + $vetPeering = Get-AzDatabricksVNetPeering -InputObject $vetPeering + $vetPeering.Name | Should -Be $env.vnetpeeringname01 + } +} diff --git a/src/Databricks/test/Get-AzDatabricksWorkspace.Recording.json b/src/Databricks/test/Get-AzDatabricksWorkspace.Recording.json index cb49a5ae9634..b8be96701ff3 100644 --- a/src/Databricks/test/Get-AzDatabricksWorkspace.Recording.json +++ b/src/Databricks/test/Get-AzDatabricksWorkspace.Recording.json @@ -6,7 +6,7 @@ "Content": null, "Headers": { "x-ms-unique-id": [ "1" ], - "x-ms-client-request-id": [ "c73f6a53-6f4f-422d-a4a4-0be36879064d" ], + "x-ms-client-request-id": [ "c338dcf7-9c39-4ada-b365-4b9007fc6060" ], "CommandName": [ "Get-AzDatabricksWorkspace" ], "FullCommandName": [ "Get-AzDatabricksWorkspace_List1" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -21,31 +21,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "eastus:fb43d8ce-11d1-429d-9258-fa287f602553", "eastus2:d7a26d21-694f-4e6e-b1f3-3ca0c03dfb59" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], - "x-ms-request-id": [ "79ccbafa-da05-4d6f-8415-2783195c1939" ], - "x-ms-correlation-request-id": [ "79ccbafa-da05-4d6f-8415-2783195c1939" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T012408Z:79ccbafa-da05-4d6f-8415-2783195c1939" ], + "x-ms-original-request-ids": [ "eastus:75bd20d6-af05-4edf-b7b4-cb27f51b5b8a", "eastus2euap:4876dc25-58d4-4fab-bff1-e1308ccb9341" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], + "x-ms-request-id": [ "eb06a3bc-4f79-4f18-aa1e-b8282a2e4ad5" ], + "x-ms-correlation-request-id": [ "eb06a3bc-4f79-4f18-aa1e-b8282a2e4ad5" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200917T033043Z:eb06a3bc-4f79-4f18-aa1e-b8282a2e4ad5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:24:07 GMT" ] + "Date": [ "Thu, 17 Sep 2020 03:30:42 GMT" ] }, "ContentHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Content-Length": [ "16924" ] + "Content-Length": [ "35270" ] }, - "Content": "{\"value\":[{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspaceoucdxr-hyd8jzqbcfxa6\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":false},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelayi6xrwuupa5p5m\"},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstoragei6xrwuupa5p5m\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"4425921085288378\",\"workspaceUrl\":\"adb-4425921085288378.18.azuredatabricks.net\",\"createdDateTime\":\"2020-07-28T10:16:57.6256212Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/workspaceoucdxr\",\"name\":\"workspaceoucdxr\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"standard\"},\"location\":\"eastus\"},{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspacer4t17j-gvh3jmdk98b5e\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":false},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelaysqri6hhvo3znq\"},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstoragesqri6hhvo3znq\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"5053158997606644\",\"workspaceUrl\":\"adb-5053158997606644.4.azuredatabricks.net\",\"createdDateTime\":\"2020-07-28T10:14:30.6958761Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/workspacer4t17j\",\"name\":\"workspacer4t17j\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"standard\"},\"location\":\"eastus\"},{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspaceq1k7ld-n93xti2z8gseb\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":false},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelaywnf52ycdfugvs\"},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstoragewnf52ycdfugvs\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"3151538344591639\",\"workspaceUrl\":\"adb-3151538344591639.19.azuredatabricks.net\",\"createdDateTime\":\"2020-07-28T10:10:11.8464515Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-a3sq06/providers/Microsoft.Databricks/workspaces/workspaceq1k7ld\",\"name\":\"workspaceq1k7ld\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"standard\"},\"location\":\"eastus\"},{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspacej4xcw6-g8j6a13xhsqot\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":false},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelayclc6cxybiljiq\"},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstorageclc6cxybiljiq\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"6380064807150892\",\"workspaceUrl\":\"adb-6380064807150892.12.azuredatabricks.net\",\"createdDateTime\":\"2020-07-28T10:06:02.5245507Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-cdjx30/providers/Microsoft.Databricks/workspaces/workspacej4xcw6\",\"name\":\"workspacej4xcw6\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"standard\"},\"location\":\"eastus\"},{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-ps-no-t01-iysaj7o08w1tl\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelayznjhfkqlkyh3m\"},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstorageznjhfkqlkyh3m\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"4189176241144860\",\"workspaceUrl\":\"adb-4189176241144860.0.azuredatabricks.net\",\"createdDateTime\":\"2020-06-08T03:19:34.149528Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/lucas-databricks-rg/providers/Microsoft.Databricks/workspaces/ps-no-t01\",\"name\":\"ps-no-t01\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"premium\"},\"location\":\"eastus\"},{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-ps-yes-t01-80ltyin6rkfuv\",\"provisioningState\":\"Failed\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"createdDateTime\":\"2020-06-08T05:32:03.7613164Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/lucas-databricks-rg/providers/Microsoft.Databricks/workspaces/ps-yes-t01\",\"name\":\"ps-yes-t01\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"premium\"},\"location\":\"eastus\"},{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-ps-yes-t02-06e92ytiawpnl\",\"provisioningState\":\"Failed\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"createdDateTime\":\"2020-06-08T07:32:34.337525Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/lucas-databricks-rg/providers/Microsoft.Databricks/workspaces/ps-yes-t02\",\"name\":\"ps-yes-t02\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"premium\"},\"location\":\"eastus\"},{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-group\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelayrzffe6zeb3r7g\"},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstoragerzffe6zeb3r7g\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"ce74a389-b5e8-4f16-89c7-787031ddd903\",\"puid\":\"1003200055C8A74B\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"ce74a389-b5e8-4f16-89c7-787031ddd903\",\"puid\":\"1003200055C8A74B\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"4743771561620089\",\"workspaceUrl\":\"adb-4743771561620089.9.azuredatabricks.net\",\"createdDateTime\":\"2020-06-01T06:16:05.8196403Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup/providers/Microsoft.Databricks/workspaces/databricks-test1\",\"name\":\"databricks-test1\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"standard\"},\"location\":\"eastus\"},{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspacevsdu10-qkwfadih0br9g\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelayjmvkfcdsefu3m\"},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstoragejmvkfcdsefu3m\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"ce74a389-b5e8-4f16-89c7-787031ddd903\",\"puid\":\"1003200055C8A74B\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"ce74a389-b5e8-4f16-89c7-787031ddd903\",\"puid\":\"1003200055C8A74B\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"7198403796443233\",\"workspaceUrl\":\"adb-7198403796443233.13.azuredatabricks.net\",\"createdDateTime\":\"2020-03-03T07:18:14.3694554Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupz5kexu/providers/Microsoft.Databricks/workspaces/workspacevsdu10\",\"name\":\"workspacevsdu10\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"standard\"},\"location\":\"eastus\"},{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspace15zbvr-s7axd0k1jctnf\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":true},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelayymocstdjbwtng\"},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstorageymocstdjbwtng\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"3752552724804541\",\"workspaceUrl\":\"adb-3752552724804541.1.azuredatabricks.net\",\"createdDateTime\":\"2020-07-28T10:19:25.7963578Z\",\"storageAccountIdentity\":{\"principalId\":\"8f08c73f-f31e-4c62-9d8f-1236b95c5c98\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"}},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/workspace15zbvr\",\"name\":\"workspace15zbvr\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"premium\"},\"location\":\"East US 2 EUAP\"}]}" + "Content": "{\"value\":[{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspace2h9lsa-91e5h3uw20k7d\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":false},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelayrkzgqo2p6bn56\"},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstoragerkzgqo2p6bn56\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"745942210722998\",\"workspaceUrl\":\"adb-745942210722998.18.azuredatabricks.net\",\"createdDateTime\":\"2020-09-15T08:12:13.3765851Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspace2h9lsa\",\"name\":\"workspace2h9lsa\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"standard\"},\"location\":\"eastus\",\"tags\":{\"mark\":\"home\"}},{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspaceoitxq9-ej05na4c7risu\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":false},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelaylydpgxwk636k6\"},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstoragelydpgxwk636k6\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"4524465090250551\",\"workspaceUrl\":\"adb-4524465090250551.11.azuredatabricks.net\",\"createdDateTime\":\"2020-09-15T08:14:39.7010037Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspaceoitxq9\",\"name\":\"workspaceoitxq9\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"standard\"},\"location\":\"eastus\",\"tags\":{\"owner\":\"Charlie\",\"mark\":\"home\",\"purpose\":\"job\"}},{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspacecs1gzl-peq7mk6ru49lj\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":false},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelay2xyey7fh5qnlw\"},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstorage2xyey7fh5qnlw\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"3516657824333024\",\"workspaceUrl\":\"adb-3516657824333024.4.azuredatabricks.net\",\"createdDateTime\":\"2020-09-15T07:28:36.4586499Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-w0shp3/providers/Microsoft.Databricks/workspaces/workspacecs1gzl\",\"name\":\"workspacecs1gzl\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"standard\"},\"location\":\"eastus\"},{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspacet1fhwo-j0qemuvfadbin\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":false},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelay5yfbsmolgewac\"},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstorage5yfbsmolgewac\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"2083505436053949\",\"workspaceUrl\":\"adb-2083505436053949.9.azuredatabricks.net\",\"createdDateTime\":\"2020-09-15T07:31:03.3560854Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-w0shp3/providers/Microsoft.Databricks/workspaces/workspacet1fhwo\",\"name\":\"workspacet1fhwo\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"standard\"},\"location\":\"eastus\"},{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspace7p6e5q-mnzj6tylvodke\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":false},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelayeyvnetalnj5ac\"},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstorageeyvnetalnj5ac\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"2231269365072875\",\"workspaceUrl\":\"adb-2231269365072875.15.azuredatabricks.net\",\"createdDateTime\":\"2020-09-15T07:48:14.0889907Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-zw71k6/providers/Microsoft.Databricks/workspaces/workspace7p6e5q\",\"name\":\"workspace7p6e5q\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"standard\"},\"location\":\"eastus\"},{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspacep1iwa4-x5cj1niwh97pv\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":false},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelaykyy3ps76q74de\"},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstoragekyy3ps76q74de\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"7116758039404761\",\"workspaceUrl\":\"adb-7116758039404761.1.azuredatabricks.net\",\"createdDateTime\":\"2020-09-15T07:50:40.1661272Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-zw71k6/providers/Microsoft.Databricks/workspaces/workspacep1iwa4\",\"name\":\"workspacep1iwa4\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"standard\"},\"location\":\"eastus\"},{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-ps-no-t01-iysaj7o08w1tl\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelayznjhfkqlkyh3m\"},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstorageznjhfkqlkyh3m\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"4189176241144860\",\"workspaceUrl\":\"adb-4189176241144860.0.azuredatabricks.net\",\"createdDateTime\":\"2020-06-08T03:19:34.149528Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/lucas-databricks-rg/providers/Microsoft.Databricks/workspaces/ps-no-t01\",\"name\":\"ps-no-t01\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"premium\"},\"location\":\"eastus\"},{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-ps-yes-t01-80ltyin6rkfuv\",\"provisioningState\":\"Failed\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"createdDateTime\":\"2020-06-08T05:32:03.7613164Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/lucas-databricks-rg/providers/Microsoft.Databricks/workspaces/ps-yes-t01\",\"name\":\"ps-yes-t01\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"premium\"},\"location\":\"eastus\"},{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-ps-yes-t02-06e92ytiawpnl\",\"provisioningState\":\"Failed\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"createdDateTime\":\"2020-06-08T07:32:34.337525Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/lucas-databricks-rg/providers/Microsoft.Databricks/workspaces/ps-yes-t02\",\"name\":\"ps-yes-t02\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"premium\"},\"location\":\"eastus\"},{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-databricks-test01-jvddl5hbm4zq4\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":false},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelayjai6snzqehf7k\"},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstoragejai6snzqehf7k\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"c44b4083-3bb0-49c1-b47d-974e53cbdf3c\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"c44b4083-3bb0-49c1-b47d-974e53cbdf3c\"},\"workspaceId\":\"2544683828042939\",\"workspaceUrl\":\"adb-2544683828042939.19.azuredatabricks.net\",\"createdDateTime\":\"2020-09-04T05:51:16.81051Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/lucas-manual-test/providers/Microsoft.Databricks/workspaces/databricks-test01\",\"name\":\"databricks-test01\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"standard\"},\"location\":\"eastus\",\"tags\":{}},{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-databricks-test02-bqzbatbw36lbi\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":false},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelayhb5376x3xjj6u\"},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstoragehb5376x3xjj6u\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"c44b4083-3bb0-49c1-b47d-974e53cbdf3c\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"c44b4083-3bb0-49c1-b47d-974e53cbdf3c\"},\"workspaceId\":\"8404960597797031\",\"workspaceUrl\":\"adb-8404960597797031.11.azuredatabricks.net\",\"createdDateTime\":\"2020-09-15T07:01:15.2851442Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/lucas-manual-test/providers/Microsoft.Databricks/workspaces/databricks-test02\",\"name\":\"databricks-test02\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"standard\"},\"location\":\"eastus\",\"tags\":{}},{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-databricks-teste03-hnlzip0ym4k39\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":false},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelayqd5rwqevwjosy\"},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstorageqd5rwqevwjosy\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"5238715278509864\",\"workspaceUrl\":\"adb-5238715278509864.4.azuredatabricks.net\",\"createdDateTime\":\"2020-09-15T09:24:32.9145316Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/lucas-manual-test/providers/Microsoft.Databricks/workspaces/databricks-teste03\",\"name\":\"databricks-teste03\",\"type\":\"Microsoft.Databricks/workspaces\",\"location\":\"eastus\"},{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-group\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelayrzffe6zeb3r7g\"},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstoragerzffe6zeb3r7g\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"ce74a389-b5e8-4f16-89c7-787031ddd903\",\"puid\":\"1003200055C8A74B\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"ce74a389-b5e8-4f16-89c7-787031ddd903\",\"puid\":\"1003200055C8A74B\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"4743771561620089\",\"workspaceUrl\":\"adb-4743771561620089.9.azuredatabricks.net\",\"createdDateTime\":\"2020-06-01T06:16:05.8196403Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup/providers/Microsoft.Databricks/workspaces/databricks-test1\",\"name\":\"databricks-test1\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"standard\"},\"location\":\"eastus\"},{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-dbws-71xqd8cz6fh3i\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":true},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelayvcutjwknlwfhc\"},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstoragevcutjwknlwfhc\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\"puid\":\"10032000C9C0E8A2\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\"puid\":\"10032000C9C0E8A2\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"6127315796213932\",\"workspaceUrl\":\"adb-6127315796213932.12.azuredatabricks.net\",\"createdDateTime\":\"2020-09-02T08:28:13.902969Z\",\"storageAccountIdentity\":{\"principalId\":\"cdcd626d-ecc1-4b28-ada1-8021136f26db\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"}},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/yemingtemp/providers/Microsoft.Databricks/workspaces/dbws\",\"name\":\"dbws\",\"type\":\"Microsoft.Databricks/workspaces\",\"location\":\"eastus\"},{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-dbws03-9oeujdmcx3ah0\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":true},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelay66q2yo3gchw26\"},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstorage66q2yo3gchw26\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"},\"encryption\":{\"type\":\"Object\",\"value\":{\"keySource\":\"Microsoft.Keyvault\",\"keyvaulturi\":\"https://yemingkv01.vault.azure.net/\",\"KeyName\":\"cmk\",\"keyversion\":\"\"}}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\"puid\":\"10032000C9C0E8A2\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\"puid\":\"10032000C9C0E8A2\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"1229694867479045\",\"workspaceUrl\":\"adb-1229694867479045.5.azuredatabricks.net\",\"createdDateTime\":\"2020-09-02T08:54:09.7208805Z\",\"storageAccountIdentity\":{\"principalId\":\"61f1444e-b269-4822-be2d-4cd70bf5efdc\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"}},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/yemingtemp/providers/Microsoft.Databricks/workspaces/dbws03\",\"name\":\"dbws03\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"premium\"},\"location\":\"eastus\"},{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-dbws2-j4r2pazyce6qs\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":true},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelaywiyujzddlo5i4\"},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstoragewiyujzddlo5i4\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\"puid\":\"10032000C9C0E8A2\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\"puid\":\"10032000C9C0E8A2\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"8882492580913231\",\"workspaceUrl\":\"adb-8882492580913231.11.azuredatabricks.net\",\"createdDateTime\":\"2020-09-02T08:41:25.7655427Z\",\"storageAccountIdentity\":{\"principalId\":\"72e98e80-3491-443d-9633-abb37de04e8e\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"}},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/yemingtemp/providers/Microsoft.Databricks/workspaces/dbws2\",\"name\":\"dbws2\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"premium\"},\"location\":\"eastus\"},{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspace9beui8-szog17y8qlaf0\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":true},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelayvqdw6ydg5rv6q\"},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstoragevqdw6ydg5rv6q\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"},\"encryption\":{\"type\":\"Object\",\"value\":{\"keySource\":\"Default\"}}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"8296759595683497\",\"workspaceUrl\":\"adb-8296759595683497.17.azuredatabricks.net\",\"createdDateTime\":\"2020-09-15T08:17:07.7376655Z\",\"storageAccountIdentity\":{\"principalId\":\"8cc21aea-077f-48a5-a3e0-14fe357919c5\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"}},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspace9beui8\",\"name\":\"workspace9beui8\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"premium\"},\"location\":\"East US 2 EUAP\"},{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspace4odrch-6e84h3mitkw5a\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":true},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelay5vqgq563kjhyq\"},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstorage5vqgq563kjhyq\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"5352849925389252\",\"workspaceUrl\":\"adb-5352849925389252.12.azuredatabricks.net\",\"createdDateTime\":\"2020-09-15T07:33:30.2622146Z\",\"storageAccountIdentity\":{\"principalId\":\"d5beff2e-c80b-48c0-ae18-f02e11faa002\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"}},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-w0shp3/providers/Microsoft.Databricks/workspaces/workspace4odrch\",\"name\":\"workspace4odrch\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"premium\"},\"location\":\"East US 2 EUAP\"},{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspace1fukos-o7dfxph6ijg4w\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":true},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelayqzpylkt5vm4ws\"},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstorageqzpylkt5vm4ws\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"2429636786730004\",\"workspaceUrl\":\"adb-2429636786730004.4.azuredatabricks.net\",\"createdDateTime\":\"2020-09-15T07:53:06.3845292Z\",\"storageAccountIdentity\":{\"principalId\":\"3dbba9a2-1147-415d-bc76-2e9ad412c154\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"}},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-zw71k6/providers/Microsoft.Databricks/workspaces/workspace1fukos\",\"name\":\"workspace1fukos\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"premium\"},\"location\":\"East US 2 EUAP\"}]}" } }, - "Get-AzDatabricksWorkspace+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/workspacer4t17j?api-version=2018-04-01+1": { + "Get-AzDatabricksWorkspace+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspace2h9lsa?api-version=2018-04-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/workspacer4t17j?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspace2h9lsa?api-version=2018-04-01", "Content": null, "Headers": { "x-ms-unique-id": [ "2" ], - "x-ms-client-request-id": [ "47ebc639-cfab-40a4-818d-43c8db1c60fd" ], + "x-ms-client-request-id": [ "029f3916-6f38-4a0d-a32a-d48bb944204a" ], "CommandName": [ "Get-AzDatabricksWorkspace" ], "FullCommandName": [ "Get-AzDatabricksWorkspace_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -61,30 +61,30 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ "eastus:8ba0d172-500c-42e9-a456-9e3ab31e7464" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], - "x-ms-correlation-request-id": [ "031cf8c4-8e3a-45c6-898f-8a090749112a" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T012409Z:031cf8c4-8e3a-45c6-898f-8a090749112a" ], + "x-ms-request-id": [ "eastus:81f95fcf-55a0-4eca-8e68-8ae2adbcc0f6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], + "x-ms-correlation-request-id": [ "68f26d20-7a73-42a4-a71a-76914acfc42b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200917T033043Z:68f26d20-7a73-42a4-a71a-76914acfc42b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:24:08 GMT" ] + "Date": [ "Thu, 17 Sep 2020 03:30:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1920" ], + "Content-Length": [ "1942" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspacer4t17j-gvh3jmdk98b5e\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":false},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelaysqri6hhvo3znq\"},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstoragesqri6hhvo3znq\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"5053158997606644\",\"workspaceUrl\":\"adb-5053158997606644.4.azuredatabricks.net\",\"createdDateTime\":\"2020-07-28T10:14:30.6958761Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/workspacer4t17j\",\"name\":\"workspacer4t17j\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"standard\"},\"location\":\"eastus\"}" + "Content": "{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspace2h9lsa-91e5h3uw20k7d\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":false},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelayrkzgqo2p6bn56\"},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstoragerkzgqo2p6bn56\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"745942210722998\",\"workspaceUrl\":\"adb-745942210722998.18.azuredatabricks.net\",\"createdDateTime\":\"2020-09-15T08:12:13.3765851Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspace2h9lsa\",\"name\":\"workspace2h9lsa\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"standard\"},\"location\":\"eastus\",\"tags\":{\"mark\":\"home\"}}" } }, - "Get-AzDatabricksWorkspace+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces?api-version=2018-04-01+1": { + "Get-AzDatabricksWorkspace+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces?api-version=2018-04-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces?api-version=2018-04-01", "Content": null, "Headers": { "x-ms-unique-id": [ "3" ], - "x-ms-client-request-id": [ "3dd93b73-b915-48b1-950b-9b8f886ca1af" ], + "x-ms-client-request-id": [ "f95acbcd-a2e1-4b62-8a52-29ec511a6e42" ], "CommandName": [ "Get-AzDatabricksWorkspace" ], "FullCommandName": [ "Get-AzDatabricksWorkspace_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -99,31 +99,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "eastus:b9eab94e-cfe2-439e-aac3-9a2359256627", "eastus2:58f9d254-1ddb-4655-a8ca-f0c2757aae95" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-request-id": [ "3728b4eb-7686-44d6-90c4-ff02dbbe77af" ], - "x-ms-correlation-request-id": [ "3728b4eb-7686-44d6-90c4-ff02dbbe77af" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T012409Z:3728b4eb-7686-44d6-90c4-ff02dbbe77af" ], + "x-ms-original-request-ids": [ "eastus:f6922d2b-28ef-45e8-bb93-16fd6d5d069e", "eastus2euap:fff3812c-06c6-4458-abe4-b171dbbb59a9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], + "x-ms-request-id": [ "3e5579b3-e8c5-4ba9-8fce-b7f833caedcc" ], + "x-ms-correlation-request-id": [ "3e5579b3-e8c5-4ba9-8fce-b7f833caedcc" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200917T033044Z:3e5579b3-e8c5-4ba9-8fce-b7f833caedcc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:24:09 GMT" ] + "Date": [ "Thu, 17 Sep 2020 03:30:43 GMT" ] }, "ContentHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Content-Length": [ "5935" ] + "Content-Length": [ "6078" ] }, - "Content": "{\"value\":[{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspaceoucdxr-hyd8jzqbcfxa6\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":false},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelayi6xrwuupa5p5m\"},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstoragei6xrwuupa5p5m\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"4425921085288378\",\"workspaceUrl\":\"adb-4425921085288378.18.azuredatabricks.net\",\"createdDateTime\":\"2020-07-28T10:16:57.6256212Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/workspaceoucdxr\",\"name\":\"workspaceoucdxr\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"standard\"},\"location\":\"eastus\"},{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspacer4t17j-gvh3jmdk98b5e\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":false},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelaysqri6hhvo3znq\"},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstoragesqri6hhvo3znq\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"5053158997606644\",\"workspaceUrl\":\"adb-5053158997606644.4.azuredatabricks.net\",\"createdDateTime\":\"2020-07-28T10:14:30.6958761Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/workspacer4t17j\",\"name\":\"workspacer4t17j\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"standard\"},\"location\":\"eastus\"},{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspace15zbvr-s7axd0k1jctnf\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":true},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelayymocstdjbwtng\"},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstorageymocstdjbwtng\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"3752552724804541\",\"workspaceUrl\":\"adb-3752552724804541.1.azuredatabricks.net\",\"createdDateTime\":\"2020-07-28T10:19:25.7963578Z\",\"storageAccountIdentity\":{\"principalId\":\"8f08c73f-f31e-4c62-9d8f-1236b95c5c98\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"}},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/workspace15zbvr\",\"name\":\"workspace15zbvr\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"premium\"},\"location\":\"East US 2 EUAP\"}]}" + "Content": "{\"value\":[{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspace2h9lsa-91e5h3uw20k7d\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":false},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelayrkzgqo2p6bn56\"},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstoragerkzgqo2p6bn56\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"745942210722998\",\"workspaceUrl\":\"adb-745942210722998.18.azuredatabricks.net\",\"createdDateTime\":\"2020-09-15T08:12:13.3765851Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspace2h9lsa\",\"name\":\"workspace2h9lsa\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"standard\"},\"location\":\"eastus\",\"tags\":{\"mark\":\"home\"}},{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspaceoitxq9-ej05na4c7risu\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":false},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelaylydpgxwk636k6\"},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstoragelydpgxwk636k6\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"4524465090250551\",\"workspaceUrl\":\"adb-4524465090250551.11.azuredatabricks.net\",\"createdDateTime\":\"2020-09-15T08:14:39.7010037Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspaceoitxq9\",\"name\":\"workspaceoitxq9\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"standard\"},\"location\":\"eastus\",\"tags\":{\"owner\":\"Charlie\",\"mark\":\"home\",\"purpose\":\"job\"}},{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspace9beui8-szog17y8qlaf0\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":true},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelayvqdw6ydg5rv6q\"},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstoragevqdw6ydg5rv6q\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"},\"encryption\":{\"type\":\"Object\",\"value\":{\"keySource\":\"Default\"}}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"8296759595683497\",\"workspaceUrl\":\"adb-8296759595683497.17.azuredatabricks.net\",\"createdDateTime\":\"2020-09-15T08:17:07.7376655Z\",\"storageAccountIdentity\":{\"principalId\":\"8cc21aea-077f-48a5-a3e0-14fe357919c5\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"}},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspace9beui8\",\"name\":\"workspace9beui8\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"premium\"},\"location\":\"East US 2 EUAP\"}]}" } }, - "Get-AzDatabricksWorkspace+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/workspaceoucdxr?api-version=2018-04-01+1": { + "Get-AzDatabricksWorkspace+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspaceoitxq9?api-version=2018-04-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/workspaceoucdxr?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspaceoitxq9?api-version=2018-04-01", "Content": null, "Headers": { "x-ms-unique-id": [ "4" ], - "x-ms-client-request-id": [ "400587fb-0bfa-4c07-ba63-f5330daca9ad" ], + "x-ms-client-request-id": [ "7a3e1128-4357-4ed5-b751-962aae524838" ], "CommandName": [ "Get-AzDatabricksWorkspace" ], "FullCommandName": [ "Get-AzDatabricksWorkspace_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -139,30 +139,30 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ "eastus:28ac0452-30f1-465b-aa75-c584e6417fb8" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "ff355bba-6eba-4603-a75e-f83b6040cc33" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T012409Z:ff355bba-6eba-4603-a75e-f83b6040cc33" ], + "x-ms-request-id": [ "eastus:64880035-074d-4e10-b67c-3feb4555eb70" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], + "x-ms-correlation-request-id": [ "8c6a7241-6098-4ab8-9947-e37ce30186f2" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200917T033045Z:8c6a7241-6098-4ab8-9947-e37ce30186f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:24:09 GMT" ] + "Date": [ "Thu, 17 Sep 2020 03:30:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1921" ], + "Content-Length": [ "1978" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspaceoucdxr-hyd8jzqbcfxa6\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":false},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelayi6xrwuupa5p5m\"},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstoragei6xrwuupa5p5m\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"4425921085288378\",\"workspaceUrl\":\"adb-4425921085288378.18.azuredatabricks.net\",\"createdDateTime\":\"2020-07-28T10:16:57.6256212Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/workspaceoucdxr\",\"name\":\"workspaceoucdxr\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"standard\"},\"location\":\"eastus\"}" + "Content": "{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspaceoitxq9-ej05na4c7risu\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":false},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelaylydpgxwk636k6\"},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstoragelydpgxwk636k6\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"4524465090250551\",\"workspaceUrl\":\"adb-4524465090250551.11.azuredatabricks.net\",\"createdDateTime\":\"2020-09-15T08:14:39.7010037Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspaceoitxq9\",\"name\":\"workspaceoitxq9\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"standard\"},\"location\":\"eastus\",\"tags\":{\"owner\":\"Charlie\",\"mark\":\"home\",\"purpose\":\"job\"}}" } }, - "Get-AzDatabricksWorkspace+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/workspaceoucdxr?api-version=2018-04-01+2": { + "Get-AzDatabricksWorkspace+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspaceoitxq9?api-version=2018-04-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/workspaceoucdxr?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspaceoitxq9?api-version=2018-04-01", "Content": null, "Headers": { "x-ms-unique-id": [ "5" ], - "x-ms-client-request-id": [ "6e9d9f71-4337-4f12-8203-e7fbe6f5d77b" ], + "x-ms-client-request-id": [ "69e3650d-19de-4f6c-89d2-22ecbdac78e3" ], "CommandName": [ "Get-AzDatabricksWorkspace" ], "FullCommandName": [ "Get-AzDatabricksWorkspace_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -178,20 +178,20 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ "eastus:9248024e-c968-4d12-97cb-2bde1db81068" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "abd40f07-4252-4b2b-95e3-b30ff9e44691" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T012410Z:abd40f07-4252-4b2b-95e3-b30ff9e44691" ], + "x-ms-request-id": [ "eastus:8a07cbaa-4c54-48eb-850d-096b8d8a9f0d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], + "x-ms-correlation-request-id": [ "e45c2405-a654-416d-879a-09a184948b3a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200917T033045Z:e45c2405-a654-416d-879a-09a184948b3a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:24:09 GMT" ] + "Date": [ "Thu, 17 Sep 2020 03:30:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1921" ], + "Content-Length": [ "1978" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspaceoucdxr-hyd8jzqbcfxa6\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":false},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelayi6xrwuupa5p5m\"},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstoragei6xrwuupa5p5m\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"4425921085288378\",\"workspaceUrl\":\"adb-4425921085288378.18.azuredatabricks.net\",\"createdDateTime\":\"2020-07-28T10:16:57.6256212Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/workspaceoucdxr\",\"name\":\"workspaceoucdxr\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"standard\"},\"location\":\"eastus\"}" + "Content": "{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspaceoitxq9-ej05na4c7risu\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":false},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelaylydpgxwk636k6\"},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstoragelydpgxwk636k6\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"4524465090250551\",\"workspaceUrl\":\"adb-4524465090250551.11.azuredatabricks.net\",\"createdDateTime\":\"2020-09-15T08:14:39.7010037Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspaceoitxq9\",\"name\":\"workspaceoitxq9\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"standard\"},\"location\":\"eastus\",\"tags\":{\"owner\":\"Charlie\",\"mark\":\"home\",\"purpose\":\"job\"}}" } } } \ No newline at end of file diff --git a/src/Databricks/test/New-AzDatabricksVNetPeering.Recording.json b/src/Databricks/test/New-AzDatabricksVNetPeering.Recording.json new file mode 100644 index 000000000000..11946523093e --- /dev/null +++ b/src/Databricks/test/New-AzDatabricksVNetPeering.Recording.json @@ -0,0 +1,37 @@ +{ + "New-AzDatabricksVNetPeering+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspaceoitxq9/virtualNetworkPeerings/vnetpeering-qf6zgw?api-version=2018-04-01+1": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspaceoitxq9/virtualNetworkPeerings/vnetpeering-qf6zgw?api-version=2018-04-01", + "Content": "{\r\n \"properties\": {\r\n \"remoteVirtualNetwork\": {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Network/virtualNetworks/databricks-vnet-hkgl9r\"\r\n }\r\n }\r\n}", + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "236" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "X-Frame-Options": [ "SAMEORIGIN" ], + "X-XSS-Protection": [ "1; mode=block" ], + "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "e4a8793cdbb44cff8e2e444e1209dd1c" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], + "x-ms-correlation-request-id": [ "7f9fefcb-de77-4db4-8907-2976fa468650" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200917T032328Z:7f9fefcb-de77-4db4-8907-2976fa468650" ], + "Date": [ "Thu, 17 Sep 2020 03:23:28 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "926" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspaceoitxq9/virtualNetworkPeerings/vnetpeering-qf6zgw\",\"name\":\"vnetpeering-qf6zgw\",\"properties\":{\"allowVirtualNetworkAccess\":true,\"allowForwardedTraffic\":false,\"allowGatewayTransit\":false,\"useRemoteGateways\":false,\"remoteVirtualNetwork\":{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Network/virtualNetworks/databricks-vnet-hkgl9r\"},\"remoteAddressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"databricksVirtualNetwork\":{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspaceoitxq9-ej05na4c7risu/providers/Microsoft.Network/virtualNetworks/workers-vnet\"},\"databricksAddressSpace\":{\"addressPrefixes\":[\"10.139.0.0/16\"]},\"peeringState\":\"Initiated\",\"provisioningState\":\"Updating\"}}\n" + } + } +} \ No newline at end of file diff --git a/src/Databricks/test/New-AzDatabricksVNetPeering.Tests.ps1 b/src/Databricks/test/New-AzDatabricksVNetPeering.Tests.ps1 new file mode 100644 index 000000000000..2d63e25d4cc8 --- /dev/null +++ b/src/Databricks/test/New-AzDatabricksVNetPeering.Tests.ps1 @@ -0,0 +1,19 @@ +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' +} +. ($loadEnvPath) +$TestRecordingFile = Join-Path $PSScriptRoot 'New-AzDatabricksVNetPeering.Recording.json' +$currentPath = $PSScriptRoot +while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent +} +. ($mockingPath | Select-Object -First 1).FullName + +Describe 'New-AzDatabricksVNetPeering' { + It 'CreateExpanded' { + $ventPeering = New-AzDatabricksVNetPeering -Name $env.vnetpeeringname01 -WorkspaceName $env.testWorkspace2 -ResourceGroupName $env.resourceGroup -RemoteVirtualNetworkId $env.virtualNetwork + $ventPeering.ProvisioningState | Should -Be 'Updating' + } +} diff --git a/src/Databricks/test/New-AzDatabricksWorkspace.Recording.json b/src/Databricks/test/New-AzDatabricksWorkspace.Recording.json index e48f94b5d29c..53d2fe71b89e 100644 --- a/src/Databricks/test/New-AzDatabricksWorkspace.Recording.json +++ b/src/Databricks/test/New-AzDatabricksWorkspace.Recording.json @@ -1,14 +1,14 @@ { - "New-AzDatabricksWorkspace+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/databricks-test-69bkg2?api-version=2018-04-01+1": { + "New-AzDatabricksWorkspace+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/databricks-test-h6okbt?api-version=2018-04-01+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/databricks-test-69bkg2?api-version=2018-04-01", - "Content": "{\n \"location\": \"eastus\",\n \"properties\": {\n \"parameters\": {\n \"customPrivateSubnetName\": {\n \"value\": \"priv\"\n },\n \"customPublicSubnetName\": {\n \"value\": \"pub\"\n },\n \"customVirtualNetworkId\": {\n \"value\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Network/virtualNetworks/databricks-test-vn\"\n }\n },\n \"managedResourceGroupId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-databricks-test-69bkg2-l2m13ebzvksf7\"\n },\n \"sku\": {\n \"name\": \"standard\"\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/databricks-test-h6okbt?api-version=2018-04-01", + "Content": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"customVirtualNetworkId\": {\r\n \"value\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Network/virtualNetworks/databricks-vnet-hkgl9r\"\r\n },\r\n \"customPublicSubnetName\": {\r\n \"value\": \"pub\"\r\n },\r\n \"customPrivateSubnetName\": {\r\n \"value\": \"priv\"\r\n }\r\n },\r\n \"managedResourceGroupId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-databricks-test-h6okbt-p9csui7jy5z42\"\r\n },\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n }\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "611" ] + "Content-Length": [ "634" ] } }, "Response": { @@ -17,31 +17,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC02OWJrZzIiLCJqb2JJZCI6IkFwcGxpYW5jZVByb3Zpc2lvbmluZ0pvYjoyRFJHQToyRERBVEFCUklDS1M6M0EyRFJHOjNBMkQ3OUNXT0o6MkREQVRBQlJJQ0tTOjNBMkRURVNUOjNBMkQ2OUJLRzIifQ?api-version=2018-04-01" ], - "x-ms-request-id": [ "eastus:88018a9e-291d-4307-8d80-5f81b3858ca3" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1oNm9rYnQiLCJqb2JJZCI6IkFwcGxpYW5jZVByb3Zpc2lvbmluZ0pvYjoyRFJHQToyRERBVEFCUklDS1M6M0EyRFJHOjNBMkQyREZVRTY6MkREQVRBQlJJQ0tTOjNBMkRURVNUOjNBMkRINk9LQlQifQ?api-version=2018-04-01" ], + "x-ms-request-id": [ "eastus:c0b637b0-2315-4a23-a861-07a917dcbd76" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-correlation-request-id": [ "d388fee1-c3a8-468a-a0ed-c96a25152e1a" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T012453Z:d388fee1-c3a8-468a-a0ed-c96a25152e1a" ], + "x-ms-correlation-request-id": [ "eb51f714-c774-4961-a1d0-66a4c66195a3" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082654Z:eb51f714-c774-4961-a1d0-66a4c66195a3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:24:53 GMT" ] + "Date": [ "Tue, 15 Sep 2020 08:26:54 GMT" ] }, "ContentHeaders": { "Content-Length": [ "932" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-databricks-test-69bkg2-l2m13ebzvksf7\",\"provisioningState\":\"Accepted\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"createdDateTime\":\"2020-07-29T01:24:50.9346509Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/databricks-test-69bkg2\",\"name\":\"databricks-test-69bkg2\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"standard\"},\"location\":\"eastus\"}" + "Content": "{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-databricks-test-h6okbt-p9csui7jy5z42\",\"provisioningState\":\"Accepted\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"createdDateTime\":\"2020-09-15T08:26:52.3875425Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/databricks-test-h6okbt\",\"name\":\"databricks-test-h6okbt\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"standard\"},\"location\":\"eastus\"}" } }, - "New-AzDatabricksWorkspace+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC02OWJrZzIiLCJqb2JJZCI6IkFwcGxpYW5jZVByb3Zpc2lvbmluZ0pvYjoyRFJHQToyRERBVEFCUklDS1M6M0EyRFJHOjNBMkQ3OUNXT0o6MkREQVRBQlJJQ0tTOjNBMkRURVNUOjNBMkQ2OUJLRzIifQ?api-version=2018-04-01+2": { + "New-AzDatabricksWorkspace+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1oNm9rYnQiLCJqb2JJZCI6IkFwcGxpYW5jZVByb3Zpc2lvbmluZ0pvYjoyRFJHQToyRERBVEFCUklDS1M6M0EyRFJHOjNBMkQyREZVRTY6MkREQVRBQlJJQ0tTOjNBMkRURVNUOjNBMkRINk9LQlQifQ?api-version=2018-04-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC02OWJrZzIiLCJqb2JJZCI6IkFwcGxpYW5jZVByb3Zpc2lvbmluZ0pvYjoyRFJHQToyRERBVEFCUklDS1M6M0EyRFJHOjNBMkQ3OUNXT0o6MkREQVRBQlJJQ0tTOjNBMkRURVNUOjNBMkQ2OUJLRzIifQ?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1oNm9rYnQiLCJqb2JJZCI6IkFwcGxpYW5jZVByb3Zpc2lvbmluZ0pvYjoyRFJHQToyRERBVEFCUklDS1M6M0EyRFJHOjNBMkQyREZVRTY6MkREQVRBQlJJQ0tTOjNBMkRURVNUOjNBMkRINk9LQlQifQ?api-version=2018-04-01", "Content": null, "Headers": { "x-ms-unique-id": [ "1", "2" ], - "x-ms-client-request-id": [ "09089166-4d33-4ea0-92e9-4e4e15c97781", "09089166-4d33-4ea0-92e9-4e4e15c97781" ], + "x-ms-client-request-id": [ "c32cd5b0-6f1a-4495-aede-1500d8180051", "c32cd5b0-6f1a-4495-aede-1500d8180051" ], "CommandName": [ "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace" ], "FullCommandName": [ "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -56,13 +56,13 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eastus:1b9dc3a1-b537-49e8-bc99-12f3076426ee" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], - "x-ms-correlation-request-id": [ "198e8f3e-fa7f-449a-96e8-beb8c4e7ec26" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T012508Z:198e8f3e-fa7f-449a-96e8-beb8c4e7ec26" ], + "x-ms-request-id": [ "eastus:b9688fc3-975b-4a39-a0e9-ed28e4cc380c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11987" ], + "x-ms-correlation-request-id": [ "af09feac-346d-46d5-a74e-b869a2efb7c0" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082710Z:af09feac-346d-46d5-a74e-b869a2efb7c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:25:08 GMT" ] + "Date": [ "Tue, 15 Sep 2020 08:27:09 GMT" ] }, "ContentHeaders": { "Content-Length": [ "21" ], @@ -72,14 +72,14 @@ "Content": "{\"status\":\"Accepted\"}" } }, - "New-AzDatabricksWorkspace+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC02OWJrZzIiLCJqb2JJZCI6IkFwcGxpYW5jZVByb3Zpc2lvbmluZ0pvYjoyRFJHQToyRERBVEFCUklDS1M6M0EyRFJHOjNBMkQ3OUNXT0o6MkREQVRBQlJJQ0tTOjNBMkRURVNUOjNBMkQ2OUJLRzIifQ?api-version=2018-04-01+3": { + "New-AzDatabricksWorkspace+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1oNm9rYnQiLCJqb2JJZCI6IkFwcGxpYW5jZVByb3Zpc2lvbmluZ0pvYjoyRFJHQToyRERBVEFCUklDS1M6M0EyRFJHOjNBMkQyREZVRTY6MkREQVRBQlJJQ0tTOjNBMkRURVNUOjNBMkRINk9LQlQifQ?api-version=2018-04-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC02OWJrZzIiLCJqb2JJZCI6IkFwcGxpYW5jZVByb3Zpc2lvbmluZ0pvYjoyRFJHQToyRERBVEFCUklDS1M6M0EyRFJHOjNBMkQ3OUNXT0o6MkREQVRBQlJJQ0tTOjNBMkRURVNUOjNBMkQ2OUJLRzIifQ?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1oNm9rYnQiLCJqb2JJZCI6IkFwcGxpYW5jZVByb3Zpc2lvbmluZ0pvYjoyRFJHQToyRERBVEFCUklDS1M6M0EyRFJHOjNBMkQyREZVRTY6MkREQVRBQlJJQ0tTOjNBMkRURVNUOjNBMkRINk9LQlQifQ?api-version=2018-04-01", "Content": null, "Headers": { "x-ms-unique-id": [ "1", "2", "3" ], - "x-ms-client-request-id": [ "09089166-4d33-4ea0-92e9-4e4e15c97781", "09089166-4d33-4ea0-92e9-4e4e15c97781", "09089166-4d33-4ea0-92e9-4e4e15c97781" ], + "x-ms-client-request-id": [ "c32cd5b0-6f1a-4495-aede-1500d8180051", "c32cd5b0-6f1a-4495-aede-1500d8180051", "c32cd5b0-6f1a-4495-aede-1500d8180051" ], "CommandName": [ "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace" ], "FullCommandName": [ "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -94,13 +94,13 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eastus:2a816715-7352-453c-83b8-a0ccc12bad71" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], - "x-ms-correlation-request-id": [ "b9220d0f-0773-43e9-b54f-c36d130e3cac" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T012539Z:b9220d0f-0773-43e9-b54f-c36d130e3cac" ], + "x-ms-request-id": [ "eastus:8ad8575e-c367-44c6-8dd6-bf0e92287981" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11986" ], + "x-ms-correlation-request-id": [ "c9a0092b-84c7-4249-9e40-c8832bdc0abc" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082740Z:c9a0092b-84c7-4249-9e40-c8832bdc0abc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:25:38 GMT" ] + "Date": [ "Tue, 15 Sep 2020 08:27:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "21" ], @@ -110,14 +110,14 @@ "Content": "{\"status\":\"Accepted\"}" } }, - "New-AzDatabricksWorkspace+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC02OWJrZzIiLCJqb2JJZCI6IkFwcGxpYW5jZVByb3Zpc2lvbmluZ0pvYjoyRFJHQToyRERBVEFCUklDS1M6M0EyRFJHOjNBMkQ3OUNXT0o6MkREQVRBQlJJQ0tTOjNBMkRURVNUOjNBMkQ2OUJLRzIifQ?api-version=2018-04-01+4": { + "New-AzDatabricksWorkspace+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1oNm9rYnQiLCJqb2JJZCI6IkFwcGxpYW5jZVByb3Zpc2lvbmluZ0pvYjoyRFJHQToyRERBVEFCUklDS1M6M0EyRFJHOjNBMkQyREZVRTY6MkREQVRBQlJJQ0tTOjNBMkRURVNUOjNBMkRINk9LQlQifQ?api-version=2018-04-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC02OWJrZzIiLCJqb2JJZCI6IkFwcGxpYW5jZVByb3Zpc2lvbmluZ0pvYjoyRFJHQToyRERBVEFCUklDS1M6M0EyRFJHOjNBMkQ3OUNXT0o6MkREQVRBQlJJQ0tTOjNBMkRURVNUOjNBMkQ2OUJLRzIifQ?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1oNm9rYnQiLCJqb2JJZCI6IkFwcGxpYW5jZVByb3Zpc2lvbmluZ0pvYjoyRFJHQToyRERBVEFCUklDS1M6M0EyRFJHOjNBMkQyREZVRTY6MkREQVRBQlJJQ0tTOjNBMkRURVNUOjNBMkRINk9LQlQifQ?api-version=2018-04-01", "Content": null, "Headers": { "x-ms-unique-id": [ "1", "2", "3", "4" ], - "x-ms-client-request-id": [ "09089166-4d33-4ea0-92e9-4e4e15c97781", "09089166-4d33-4ea0-92e9-4e4e15c97781", "09089166-4d33-4ea0-92e9-4e4e15c97781", "09089166-4d33-4ea0-92e9-4e4e15c97781" ], + "x-ms-client-request-id": [ "c32cd5b0-6f1a-4495-aede-1500d8180051", "c32cd5b0-6f1a-4495-aede-1500d8180051", "c32cd5b0-6f1a-4495-aede-1500d8180051", "c32cd5b0-6f1a-4495-aede-1500d8180051" ], "CommandName": [ "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace" ], "FullCommandName": [ "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -132,13 +132,13 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eastus:c267d6ea-eac1-429d-bf32-548d97f8a14b" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "a72fa134-95ea-4d0c-afd5-54db9458832e" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T012609Z:a72fa134-95ea-4d0c-afd5-54db9458832e" ], + "x-ms-request-id": [ "eastus:eaf9faaa-1986-4c06-baca-b194c12e60e1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11985" ], + "x-ms-correlation-request-id": [ "9f75add9-de75-4be0-84de-6460ea5c88b8" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082811Z:9f75add9-de75-4be0-84de-6460ea5c88b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:26:08 GMT" ] + "Date": [ "Tue, 15 Sep 2020 08:28:11 GMT" ] }, "ContentHeaders": { "Content-Length": [ "21" ], @@ -148,14 +148,14 @@ "Content": "{\"status\":\"Accepted\"}" } }, - "New-AzDatabricksWorkspace+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC02OWJrZzIiLCJqb2JJZCI6IkFwcGxpYW5jZVByb3Zpc2lvbmluZ0pvYjoyRFJHQToyRERBVEFCUklDS1M6M0EyRFJHOjNBMkQ3OUNXT0o6MkREQVRBQlJJQ0tTOjNBMkRURVNUOjNBMkQ2OUJLRzIifQ?api-version=2018-04-01+5": { + "New-AzDatabricksWorkspace+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1oNm9rYnQiLCJqb2JJZCI6IkFwcGxpYW5jZVByb3Zpc2lvbmluZ0pvYjoyRFJHQToyRERBVEFCUklDS1M6M0EyRFJHOjNBMkQyREZVRTY6MkREQVRBQlJJQ0tTOjNBMkRURVNUOjNBMkRINk9LQlQifQ?api-version=2018-04-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC02OWJrZzIiLCJqb2JJZCI6IkFwcGxpYW5jZVByb3Zpc2lvbmluZ0pvYjoyRFJHQToyRERBVEFCUklDS1M6M0EyRFJHOjNBMkQ3OUNXT0o6MkREQVRBQlJJQ0tTOjNBMkRURVNUOjNBMkQ2OUJLRzIifQ?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1oNm9rYnQiLCJqb2JJZCI6IkFwcGxpYW5jZVByb3Zpc2lvbmluZ0pvYjoyRFJHQToyRERBVEFCUklDS1M6M0EyRFJHOjNBMkQyREZVRTY6MkREQVRBQlJJQ0tTOjNBMkRURVNUOjNBMkRINk9LQlQifQ?api-version=2018-04-01", "Content": null, "Headers": { "x-ms-unique-id": [ "1", "2", "3", "4", "5" ], - "x-ms-client-request-id": [ "09089166-4d33-4ea0-92e9-4e4e15c97781", "09089166-4d33-4ea0-92e9-4e4e15c97781", "09089166-4d33-4ea0-92e9-4e4e15c97781", "09089166-4d33-4ea0-92e9-4e4e15c97781", "09089166-4d33-4ea0-92e9-4e4e15c97781" ], + "x-ms-client-request-id": [ "c32cd5b0-6f1a-4495-aede-1500d8180051", "c32cd5b0-6f1a-4495-aede-1500d8180051", "c32cd5b0-6f1a-4495-aede-1500d8180051", "c32cd5b0-6f1a-4495-aede-1500d8180051", "c32cd5b0-6f1a-4495-aede-1500d8180051" ], "CommandName": [ "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace" ], "FullCommandName": [ "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -170,13 +170,13 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eastus:5e61eccd-145c-4327-b317-3075e0e24f1c" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "19d5bd50-a326-4ba4-bf2d-78021398cde7" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T012639Z:19d5bd50-a326-4ba4-bf2d-78021398cde7" ], + "x-ms-request-id": [ "eastus:3d51d0c4-d2f3-4510-a4c9-14ae537beb08" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11984" ], + "x-ms-correlation-request-id": [ "df1dd480-d991-48de-b563-1ae66188300f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082841Z:df1dd480-d991-48de-b563-1ae66188300f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:26:39 GMT" ] + "Date": [ "Tue, 15 Sep 2020 08:28:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "21" ], @@ -186,14 +186,14 @@ "Content": "{\"status\":\"Accepted\"}" } }, - "New-AzDatabricksWorkspace+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC02OWJrZzIiLCJqb2JJZCI6IkFwcGxpYW5jZVByb3Zpc2lvbmluZ0pvYjoyRFJHQToyRERBVEFCUklDS1M6M0EyRFJHOjNBMkQ3OUNXT0o6MkREQVRBQlJJQ0tTOjNBMkRURVNUOjNBMkQ2OUJLRzIifQ?api-version=2018-04-01+6": { + "New-AzDatabricksWorkspace+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1oNm9rYnQiLCJqb2JJZCI6IkFwcGxpYW5jZVByb3Zpc2lvbmluZ0pvYjoyRFJHQToyRERBVEFCUklDS1M6M0EyRFJHOjNBMkQyREZVRTY6MkREQVRBQlJJQ0tTOjNBMkRURVNUOjNBMkRINk9LQlQifQ?api-version=2018-04-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC02OWJrZzIiLCJqb2JJZCI6IkFwcGxpYW5jZVByb3Zpc2lvbmluZ0pvYjoyRFJHQToyRERBVEFCUklDS1M6M0EyRFJHOjNBMkQ3OUNXT0o6MkREQVRBQlJJQ0tTOjNBMkRURVNUOjNBMkQ2OUJLRzIifQ?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1oNm9rYnQiLCJqb2JJZCI6IkFwcGxpYW5jZVByb3Zpc2lvbmluZ0pvYjoyRFJHQToyRERBVEFCUklDS1M6M0EyRFJHOjNBMkQyREZVRTY6MkREQVRBQlJJQ0tTOjNBMkRURVNUOjNBMkRINk9LQlQifQ?api-version=2018-04-01", "Content": null, "Headers": { "x-ms-unique-id": [ "1", "2", "3", "4", "5", "6" ], - "x-ms-client-request-id": [ "09089166-4d33-4ea0-92e9-4e4e15c97781", "09089166-4d33-4ea0-92e9-4e4e15c97781", "09089166-4d33-4ea0-92e9-4e4e15c97781", "09089166-4d33-4ea0-92e9-4e4e15c97781", "09089166-4d33-4ea0-92e9-4e4e15c97781", "09089166-4d33-4ea0-92e9-4e4e15c97781" ], + "x-ms-client-request-id": [ "c32cd5b0-6f1a-4495-aede-1500d8180051", "c32cd5b0-6f1a-4495-aede-1500d8180051", "c32cd5b0-6f1a-4495-aede-1500d8180051", "c32cd5b0-6f1a-4495-aede-1500d8180051", "c32cd5b0-6f1a-4495-aede-1500d8180051", "c32cd5b0-6f1a-4495-aede-1500d8180051" ], "CommandName": [ "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace" ], "FullCommandName": [ "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -204,34 +204,35 @@ } }, "Response": { - "StatusCode": 202, + "StatusCode": 200, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eastus:598cff8d-bba2-4b88-92b7-26ef2984934b" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "05797fbe-66c8-4e21-819f-308e7d42a7b8" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T012710Z:05797fbe-66c8-4e21-819f-308e7d42a7b8" ], + "Vary": [ "Accept-Encoding" ], + "x-ms-request-id": [ "eastus:93ec378d-9581-4aac-82ea-424ab6379340" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11983" ], + "x-ms-correlation-request-id": [ "e007856f-53f3-4493-af54-f7d9ede0ec8a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082911Z:e007856f-53f3-4493-af54-f7d9ede0ec8a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:27:09 GMT" ] + "Date": [ "Tue, 15 Sep 2020 08:29:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "21" ], + "Content-Length": [ "22" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"status\":\"Accepted\"}" + "Content": "{\"status\":\"Succeeded\"}" } }, - "New-AzDatabricksWorkspace+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC02OWJrZzIiLCJqb2JJZCI6IkFwcGxpYW5jZVByb3Zpc2lvbmluZ0pvYjoyRFJHQToyRERBVEFCUklDS1M6M0EyRFJHOjNBMkQ3OUNXT0o6MkREQVRBQlJJQ0tTOjNBMkRURVNUOjNBMkQ2OUJLRzIifQ?api-version=2018-04-01+7": { + "New-AzDatabricksWorkspace+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/databricks-test-h6okbt?api-version=2018-04-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC02OWJrZzIiLCJqb2JJZCI6IkFwcGxpYW5jZVByb3Zpc2lvbmluZ0pvYjoyRFJHQToyRERBVEFCUklDS1M6M0EyRFJHOjNBMkQ3OUNXT0o6MkREQVRBQlJJQ0tTOjNBMkRURVNUOjNBMkQ2OUJLRzIifQ?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/databricks-test-h6okbt?api-version=2018-04-01", "Content": null, "Headers": { "x-ms-unique-id": [ "1", "2", "3", "4", "5", "6", "7" ], - "x-ms-client-request-id": [ "09089166-4d33-4ea0-92e9-4e4e15c97781", "09089166-4d33-4ea0-92e9-4e4e15c97781", "09089166-4d33-4ea0-92e9-4e4e15c97781", "09089166-4d33-4ea0-92e9-4e4e15c97781", "09089166-4d33-4ea0-92e9-4e4e15c97781", "09089166-4d33-4ea0-92e9-4e4e15c97781", "09089166-4d33-4ea0-92e9-4e4e15c97781" ], + "x-ms-client-request-id": [ "c32cd5b0-6f1a-4495-aede-1500d8180051", "c32cd5b0-6f1a-4495-aede-1500d8180051", "c32cd5b0-6f1a-4495-aede-1500d8180051", "c32cd5b0-6f1a-4495-aede-1500d8180051", "c32cd5b0-6f1a-4495-aede-1500d8180051", "c32cd5b0-6f1a-4495-aede-1500d8180051", "c32cd5b0-6f1a-4495-aede-1500d8180051" ], "CommandName": [ "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace" ], "FullCommandName": [ "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -247,69 +248,30 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ "eastus:a65ad5e8-1d9f-4db2-8217-bbaa1e3097a0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "b988c10d-ce36-4758-8193-e25d0b7fd8fa" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T012740Z:b988c10d-ce36-4758-8193-e25d0b7fd8fa" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:27:39 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "22" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"status\":\"Succeeded\"}" - } - }, - "New-AzDatabricksWorkspace+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/databricks-test-69bkg2?api-version=2018-04-01+8": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/databricks-test-69bkg2?api-version=2018-04-01", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "1", "2", "3", "4", "5", "6", "7", "8" ], - "x-ms-client-request-id": [ "09089166-4d33-4ea0-92e9-4e4e15c97781", "09089166-4d33-4ea0-92e9-4e4e15c97781", "09089166-4d33-4ea0-92e9-4e4e15c97781", "09089166-4d33-4ea0-92e9-4e4e15c97781", "09089166-4d33-4ea0-92e9-4e4e15c97781", "09089166-4d33-4ea0-92e9-4e4e15c97781", "09089166-4d33-4ea0-92e9-4e4e15c97781", "09089166-4d33-4ea0-92e9-4e4e15c97781" ], - "CommandName": [ "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace" ], - "FullCommandName": [ "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ "eastus:c27307a8-390b-4195-9a66-28a7bddf02d1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-correlation-request-id": [ "6cdfc877-9c67-45fc-b213-4fee0ca4b369" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T012740Z:6cdfc877-9c67-45fc-b213-4fee0ca4b369" ], + "x-ms-request-id": [ "eastus:8ebdbfa0-6b49-485d-af7f-7a854669bb2f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11982" ], + "x-ms-correlation-request-id": [ "b32ac40b-9eb5-49b3-a935-f8e847279146" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082912Z:b32ac40b-9eb5-49b3-a935-f8e847279146" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:27:39 GMT" ] + "Date": [ "Tue, 15 Sep 2020 08:29:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2098" ], + "Content-Length": [ "2102" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-databricks-test-69bkg2-l2m13ebzvksf7\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"priv\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"pub\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Network/virtualNetworks/databricks-test-vn\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":false},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelayczmiqb2jpu32i\"},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstorageczmiqb2jpu32i\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"5069580849698261\",\"workspaceUrl\":\"adb-5069580849698261.1.azuredatabricks.net\",\"createdDateTime\":\"2020-07-29T01:24:50.9346509Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/databricks-test-69bkg2\",\"name\":\"databricks-test-69bkg2\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"standard\"},\"location\":\"eastus\"}" + "Content": "{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-databricks-test-h6okbt-p9csui7jy5z42\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"priv\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"pub\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Network/virtualNetworks/databricks-vnet-hkgl9r\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":false},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelayh663wjvokihau\"},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstorageh663wjvokihau\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"3066078611271563\",\"workspaceUrl\":\"adb-3066078611271563.3.azuredatabricks.net\",\"createdDateTime\":\"2020-09-15T08:26:52.3875425Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/databricks-test-h6okbt\",\"name\":\"databricks-test-h6okbt\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"standard\"},\"location\":\"eastus\"}" } }, - "New-AzDatabricksWorkspace+[NoContext]+CreateExpanded+$DELETE+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/databricks-test-69bkg2?api-version=2018-04-01+9": { + "New-AzDatabricksWorkspace+[NoContext]+CreateExpanded+$DELETE+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/databricks-test-h6okbt?api-version=2018-04-01+8": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/databricks-test-69bkg2?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/databricks-test-h6okbt?api-version=2018-04-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "9" ], - "x-ms-client-request-id": [ "9f0ce7cc-4da7-4490-954d-5947aa71a93a" ], + "x-ms-unique-id": [ "8" ], + "x-ms-client-request-id": [ "f77ed909-5994-493c-ab67-a8951f4854bd" ], "CommandName": [ "Remove-AzDatabricksWorkspace" ], "FullCommandName": [ "Remove-AzDatabricksWorkspace_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -324,15 +286,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC02OWJrZzIiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyRDY5QktHMiJ9?api-version=2018-04-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1oNm9rYnQiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREg2T0tCVCJ9?api-version=2018-04-01" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "eastus:1a133b7b-9350-4907-8f70-a75ac05e6a67" ], + "x-ms-request-id": [ "eastus:852fb9de-da52-41dd-a71a-0ec35a3abc9c" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], - "x-ms-correlation-request-id": [ "2374ffde-fc2e-43a6-963a-f6b2a2e77bf1" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T012742Z:2374ffde-fc2e-43a6-963a-f6b2a2e77bf1" ], + "x-ms-correlation-request-id": [ "7e92b751-3353-4281-9745-d0074c6fac37" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082913Z:7e92b751-3353-4281-9745-d0074c6fac37" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:27:41 GMT" ] + "Date": [ "Tue, 15 Sep 2020 08:29:13 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -341,14 +303,14 @@ "Content": null } }, - "New-AzDatabricksWorkspace+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC02OWJrZzIiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyRDY5QktHMiJ9?api-version=2018-04-01+10": { + "New-AzDatabricksWorkspace+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1oNm9rYnQiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREg2T0tCVCJ9?api-version=2018-04-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC02OWJrZzIiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyRDY5QktHMiJ9?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1oNm9rYnQiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREg2T0tCVCJ9?api-version=2018-04-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "9", "10" ], - "x-ms-client-request-id": [ "9f0ce7cc-4da7-4490-954d-5947aa71a93a", "9f0ce7cc-4da7-4490-954d-5947aa71a93a" ], + "x-ms-unique-id": [ "8", "9" ], + "x-ms-client-request-id": [ "f77ed909-5994-493c-ab67-a8951f4854bd", "f77ed909-5994-493c-ab67-a8951f4854bd" ], "CommandName": [ "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace" ], "FullCommandName": [ "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -363,13 +325,13 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eastus:8eb55a7f-dde5-44a4-a276-0f8f46e7729a" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], - "x-ms-correlation-request-id": [ "34508de3-c100-498c-937b-07b78da1009c" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T012757Z:34508de3-c100-498c-937b-07b78da1009c" ], + "x-ms-request-id": [ "eastus:0f42d48b-f274-4bce-b602-f437ea2b3536" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11981" ], + "x-ms-correlation-request-id": [ "befde2bc-ae8e-4839-b29d-a8cbce34382b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082929Z:befde2bc-ae8e-4839-b29d-a8cbce34382b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:27:56 GMT" ] + "Date": [ "Tue, 15 Sep 2020 08:29:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "21" ], @@ -379,14 +341,14 @@ "Content": "{\"status\":\"Accepted\"}" } }, - "New-AzDatabricksWorkspace+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC02OWJrZzIiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyRDY5QktHMiJ9?api-version=2018-04-01+11": { + "New-AzDatabricksWorkspace+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1oNm9rYnQiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREg2T0tCVCJ9?api-version=2018-04-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC02OWJrZzIiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyRDY5QktHMiJ9?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1oNm9rYnQiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREg2T0tCVCJ9?api-version=2018-04-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "9", "10", "11" ], - "x-ms-client-request-id": [ "9f0ce7cc-4da7-4490-954d-5947aa71a93a", "9f0ce7cc-4da7-4490-954d-5947aa71a93a", "9f0ce7cc-4da7-4490-954d-5947aa71a93a" ], + "x-ms-unique-id": [ "8", "9", "10" ], + "x-ms-client-request-id": [ "f77ed909-5994-493c-ab67-a8951f4854bd", "f77ed909-5994-493c-ab67-a8951f4854bd", "f77ed909-5994-493c-ab67-a8951f4854bd" ], "CommandName": [ "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace" ], "FullCommandName": [ "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -401,13 +363,13 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eastus:527653c9-e925-4c31-829b-e6e70fb2de5c" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], - "x-ms-correlation-request-id": [ "8ea113c7-8365-4eb3-8722-1fc5d8e3ddaf" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T012827Z:8ea113c7-8365-4eb3-8722-1fc5d8e3ddaf" ], + "x-ms-request-id": [ "eastus:4b8a618e-5696-4c9b-be1b-2a0ab677ee81" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11980" ], + "x-ms-correlation-request-id": [ "002b7003-fb82-450a-a478-adaf872fc52f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082959Z:002b7003-fb82-450a-a478-adaf872fc52f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:28:27 GMT" ] + "Date": [ "Tue, 15 Sep 2020 08:29:58 GMT" ] }, "ContentHeaders": { "Content-Length": [ "21" ], @@ -417,14 +379,14 @@ "Content": "{\"status\":\"Accepted\"}" } }, - "New-AzDatabricksWorkspace+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC02OWJrZzIiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyRDY5QktHMiJ9?api-version=2018-04-01+12": { + "New-AzDatabricksWorkspace+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1oNm9rYnQiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREg2T0tCVCJ9?api-version=2018-04-01+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC02OWJrZzIiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyRDY5QktHMiJ9?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1oNm9rYnQiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREg2T0tCVCJ9?api-version=2018-04-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "9", "10", "11", "12" ], - "x-ms-client-request-id": [ "9f0ce7cc-4da7-4490-954d-5947aa71a93a", "9f0ce7cc-4da7-4490-954d-5947aa71a93a", "9f0ce7cc-4da7-4490-954d-5947aa71a93a", "9f0ce7cc-4da7-4490-954d-5947aa71a93a" ], + "x-ms-unique-id": [ "8", "9", "10", "11" ], + "x-ms-client-request-id": [ "f77ed909-5994-493c-ab67-a8951f4854bd", "f77ed909-5994-493c-ab67-a8951f4854bd", "f77ed909-5994-493c-ab67-a8951f4854bd", "f77ed909-5994-493c-ab67-a8951f4854bd" ], "CommandName": [ "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace" ], "FullCommandName": [ "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -439,13 +401,13 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eastus:c2d08fc5-6e2d-4a5c-af18-d4b78627d6d0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], - "x-ms-correlation-request-id": [ "b87acd43-5508-4908-b34e-5943cfe53342" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T012858Z:b87acd43-5508-4908-b34e-5943cfe53342" ], + "x-ms-request-id": [ "eastus:8b360eb6-c45d-40e5-aea3-566e55524bc5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11979" ], + "x-ms-correlation-request-id": [ "0942a91f-d4ae-48a7-b014-c25cab0bbb55" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083029Z:0942a91f-d4ae-48a7-b014-c25cab0bbb55" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:28:57 GMT" ] + "Date": [ "Tue, 15 Sep 2020 08:30:29 GMT" ] }, "ContentHeaders": { "Content-Length": [ "21" ], @@ -455,14 +417,14 @@ "Content": "{\"status\":\"Accepted\"}" } }, - "New-AzDatabricksWorkspace+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC02OWJrZzIiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyRDY5QktHMiJ9?api-version=2018-04-01+13": { + "New-AzDatabricksWorkspace+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1oNm9rYnQiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREg2T0tCVCJ9?api-version=2018-04-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC02OWJrZzIiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyRDY5QktHMiJ9?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1oNm9rYnQiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREg2T0tCVCJ9?api-version=2018-04-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "9", "10", "11", "12", "13" ], - "x-ms-client-request-id": [ "9f0ce7cc-4da7-4490-954d-5947aa71a93a", "9f0ce7cc-4da7-4490-954d-5947aa71a93a", "9f0ce7cc-4da7-4490-954d-5947aa71a93a", "9f0ce7cc-4da7-4490-954d-5947aa71a93a", "9f0ce7cc-4da7-4490-954d-5947aa71a93a" ], + "x-ms-unique-id": [ "8", "9", "10", "11", "12" ], + "x-ms-client-request-id": [ "f77ed909-5994-493c-ab67-a8951f4854bd", "f77ed909-5994-493c-ab67-a8951f4854bd", "f77ed909-5994-493c-ab67-a8951f4854bd", "f77ed909-5994-493c-ab67-a8951f4854bd", "f77ed909-5994-493c-ab67-a8951f4854bd" ], "CommandName": [ "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace" ], "FullCommandName": [ "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -477,13 +439,13 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eastus:8ee73c99-7671-4e02-9cbf-06e25e149b1a" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11989" ], - "x-ms-correlation-request-id": [ "62b16e32-bd43-4918-8dec-afdcafe87164" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T012929Z:62b16e32-bd43-4918-8dec-afdcafe87164" ], + "x-ms-request-id": [ "eastus:b2c55554-088f-4195-8aeb-783b4e73735a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11978" ], + "x-ms-correlation-request-id": [ "da7897f8-cbae-45e4-9623-71bc4310e480" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083100Z:da7897f8-cbae-45e4-9623-71bc4310e480" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:29:28 GMT" ] + "Date": [ "Tue, 15 Sep 2020 08:30:59 GMT" ] }, "ContentHeaders": { "Content-Length": [ "21" ], @@ -493,14 +455,14 @@ "Content": "{\"status\":\"Accepted\"}" } }, - "New-AzDatabricksWorkspace+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC02OWJrZzIiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyRDY5QktHMiJ9?api-version=2018-04-01+14": { + "New-AzDatabricksWorkspace+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1oNm9rYnQiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREg2T0tCVCJ9?api-version=2018-04-01+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC02OWJrZzIiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyRDY5QktHMiJ9?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1oNm9rYnQiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREg2T0tCVCJ9?api-version=2018-04-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "9", "10", "11", "12", "13", "14" ], - "x-ms-client-request-id": [ "9f0ce7cc-4da7-4490-954d-5947aa71a93a", "9f0ce7cc-4da7-4490-954d-5947aa71a93a", "9f0ce7cc-4da7-4490-954d-5947aa71a93a", "9f0ce7cc-4da7-4490-954d-5947aa71a93a", "9f0ce7cc-4da7-4490-954d-5947aa71a93a", "9f0ce7cc-4da7-4490-954d-5947aa71a93a" ], + "x-ms-unique-id": [ "8", "9", "10", "11", "12", "13" ], + "x-ms-client-request-id": [ "f77ed909-5994-493c-ab67-a8951f4854bd", "f77ed909-5994-493c-ab67-a8951f4854bd", "f77ed909-5994-493c-ab67-a8951f4854bd", "f77ed909-5994-493c-ab67-a8951f4854bd", "f77ed909-5994-493c-ab67-a8951f4854bd", "f77ed909-5994-493c-ab67-a8951f4854bd" ], "CommandName": [ "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace" ], "FullCommandName": [ "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -515,13 +477,13 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eastus:2af9f5c1-0044-4bf2-b668-7f326e9476dc" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11988" ], - "x-ms-correlation-request-id": [ "124812a4-b6ea-4930-b865-c3f5e7c25b96" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T012959Z:124812a4-b6ea-4930-b865-c3f5e7c25b96" ], + "x-ms-request-id": [ "eastus:b8ee8ac1-e458-45ef-aba7-a396a35e029d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11977" ], + "x-ms-correlation-request-id": [ "cb6332db-d04d-4970-8cf2-6bb1c6f325ba" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083130Z:cb6332db-d04d-4970-8cf2-6bb1c6f325ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:29:59 GMT" ] + "Date": [ "Tue, 15 Sep 2020 08:31:30 GMT" ] }, "ContentHeaders": { "Content-Length": [ "21" ], @@ -531,14 +493,14 @@ "Content": "{\"status\":\"Accepted\"}" } }, - "New-AzDatabricksWorkspace+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC02OWJrZzIiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyRDY5QktHMiJ9?api-version=2018-04-01+15": { + "New-AzDatabricksWorkspace+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1oNm9rYnQiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREg2T0tCVCJ9?api-version=2018-04-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC02OWJrZzIiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyRDY5QktHMiJ9?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1oNm9rYnQiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREg2T0tCVCJ9?api-version=2018-04-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "9", "10", "11", "12", "13", "14", "15" ], - "x-ms-client-request-id": [ "9f0ce7cc-4da7-4490-954d-5947aa71a93a", "9f0ce7cc-4da7-4490-954d-5947aa71a93a", "9f0ce7cc-4da7-4490-954d-5947aa71a93a", "9f0ce7cc-4da7-4490-954d-5947aa71a93a", "9f0ce7cc-4da7-4490-954d-5947aa71a93a", "9f0ce7cc-4da7-4490-954d-5947aa71a93a", "9f0ce7cc-4da7-4490-954d-5947aa71a93a" ], + "x-ms-unique-id": [ "8", "9", "10", "11", "12", "13", "14" ], + "x-ms-client-request-id": [ "f77ed909-5994-493c-ab67-a8951f4854bd", "f77ed909-5994-493c-ab67-a8951f4854bd", "f77ed909-5994-493c-ab67-a8951f4854bd", "f77ed909-5994-493c-ab67-a8951f4854bd", "f77ed909-5994-493c-ab67-a8951f4854bd", "f77ed909-5994-493c-ab67-a8951f4854bd", "f77ed909-5994-493c-ab67-a8951f4854bd" ], "CommandName": [ "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace" ], "FullCommandName": [ "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -553,13 +515,13 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eastus:fcf9c7f8-11fb-4afe-afe4-032a783b2dc9" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11987" ], - "x-ms-correlation-request-id": [ "dac6aa4d-ec9f-4875-b924-fb3ddcaf90a7" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T013030Z:dac6aa4d-ec9f-4875-b924-fb3ddcaf90a7" ], + "x-ms-request-id": [ "eastus:9c5fef7d-dfdc-4cd9-a9ba-b703c61dfe53" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11976" ], + "x-ms-correlation-request-id": [ "f25ebe6b-7e78-4170-af65-5020d4d1efc1" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083200Z:f25ebe6b-7e78-4170-af65-5020d4d1efc1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:30:29 GMT" ] + "Date": [ "Tue, 15 Sep 2020 08:32:00 GMT" ] }, "ContentHeaders": { "Content-Length": [ "21" ], @@ -569,14 +531,14 @@ "Content": "{\"status\":\"Accepted\"}" } }, - "New-AzDatabricksWorkspace+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC02OWJrZzIiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyRDY5QktHMiJ9?api-version=2018-04-01+16": { + "New-AzDatabricksWorkspace+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1oNm9rYnQiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREg2T0tCVCJ9?api-version=2018-04-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC02OWJrZzIiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyRDY5QktHMiJ9?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1oNm9rYnQiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREg2T0tCVCJ9?api-version=2018-04-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "9", "10", "11", "12", "13", "14", "15", "16" ], - "x-ms-client-request-id": [ "9f0ce7cc-4da7-4490-954d-5947aa71a93a", "9f0ce7cc-4da7-4490-954d-5947aa71a93a", "9f0ce7cc-4da7-4490-954d-5947aa71a93a", "9f0ce7cc-4da7-4490-954d-5947aa71a93a", "9f0ce7cc-4da7-4490-954d-5947aa71a93a", "9f0ce7cc-4da7-4490-954d-5947aa71a93a", "9f0ce7cc-4da7-4490-954d-5947aa71a93a", "9f0ce7cc-4da7-4490-954d-5947aa71a93a" ], + "x-ms-unique-id": [ "8", "9", "10", "11", "12", "13", "14", "15" ], + "x-ms-client-request-id": [ "f77ed909-5994-493c-ab67-a8951f4854bd", "f77ed909-5994-493c-ab67-a8951f4854bd", "f77ed909-5994-493c-ab67-a8951f4854bd", "f77ed909-5994-493c-ab67-a8951f4854bd", "f77ed909-5994-493c-ab67-a8951f4854bd", "f77ed909-5994-493c-ab67-a8951f4854bd", "f77ed909-5994-493c-ab67-a8951f4854bd", "f77ed909-5994-493c-ab67-a8951f4854bd" ], "CommandName": [ "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace" ], "FullCommandName": [ "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -591,13 +553,13 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eastus:7ad58de7-7240-4a67-b1ca-f0aa50f06c02" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11986" ], - "x-ms-correlation-request-id": [ "19c6f8d7-376e-433e-82b8-64a740deeff6" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T013100Z:19c6f8d7-376e-433e-82b8-64a740deeff6" ], + "x-ms-request-id": [ "eastus:22106f5c-97e9-4607-9532-3d4644465a03" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11975" ], + "x-ms-correlation-request-id": [ "d7942116-269f-4566-9cc4-8e1fbbe4a406" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083231Z:d7942116-269f-4566-9cc4-8e1fbbe4a406" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:30:59 GMT" ] + "Date": [ "Tue, 15 Sep 2020 08:32:30 GMT" ] }, "ContentHeaders": { "Content-Length": [ "21" ], @@ -607,14 +569,14 @@ "Content": "{\"status\":\"Accepted\"}" } }, - "New-AzDatabricksWorkspace+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC02OWJrZzIiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyRDY5QktHMiJ9?api-version=2018-04-01+17": { + "New-AzDatabricksWorkspace+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1oNm9rYnQiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREg2T0tCVCJ9?api-version=2018-04-01+16": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC02OWJrZzIiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyRDY5QktHMiJ9?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1oNm9rYnQiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREg2T0tCVCJ9?api-version=2018-04-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "9", "10", "11", "12", "13", "14", "15", "16", "17" ], - "x-ms-client-request-id": [ "9f0ce7cc-4da7-4490-954d-5947aa71a93a", "9f0ce7cc-4da7-4490-954d-5947aa71a93a", "9f0ce7cc-4da7-4490-954d-5947aa71a93a", "9f0ce7cc-4da7-4490-954d-5947aa71a93a", "9f0ce7cc-4da7-4490-954d-5947aa71a93a", "9f0ce7cc-4da7-4490-954d-5947aa71a93a", "9f0ce7cc-4da7-4490-954d-5947aa71a93a", "9f0ce7cc-4da7-4490-954d-5947aa71a93a", "9f0ce7cc-4da7-4490-954d-5947aa71a93a" ], + "x-ms-unique-id": [ "8", "9", "10", "11", "12", "13", "14", "15", "16" ], + "x-ms-client-request-id": [ "f77ed909-5994-493c-ab67-a8951f4854bd", "f77ed909-5994-493c-ab67-a8951f4854bd", "f77ed909-5994-493c-ab67-a8951f4854bd", "f77ed909-5994-493c-ab67-a8951f4854bd", "f77ed909-5994-493c-ab67-a8951f4854bd", "f77ed909-5994-493c-ab67-a8951f4854bd", "f77ed909-5994-493c-ab67-a8951f4854bd", "f77ed909-5994-493c-ab67-a8951f4854bd", "f77ed909-5994-493c-ab67-a8951f4854bd" ], "CommandName": [ "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace" ], "FullCommandName": [ "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -629,13 +591,13 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eastus:b28b08f6-289a-4c71-a38a-0a3b2522b8bc" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11985" ], - "x-ms-correlation-request-id": [ "424ea549-89f1-4a21-a0b6-2a7b901f11d1" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T013130Z:424ea549-89f1-4a21-a0b6-2a7b901f11d1" ], + "x-ms-request-id": [ "eastus:0e3f275c-6b22-4a6d-a119-e5247293fb23" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11974" ], + "x-ms-correlation-request-id": [ "99e73edd-40f1-4158-934e-cc82792affa2" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083301Z:99e73edd-40f1-4158-934e-cc82792affa2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:31:29 GMT" ] + "Date": [ "Tue, 15 Sep 2020 08:33:00 GMT" ] }, "ContentHeaders": { "Content-Length": [ "21" ], @@ -645,14 +607,14 @@ "Content": "{\"status\":\"Accepted\"}" } }, - "New-AzDatabricksWorkspace+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC02OWJrZzIiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyRDY5QktHMiJ9?api-version=2018-04-01+18": { + "New-AzDatabricksWorkspace+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1oNm9rYnQiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREg2T0tCVCJ9?api-version=2018-04-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC02OWJrZzIiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyRDY5QktHMiJ9?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1oNm9rYnQiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREg2T0tCVCJ9?api-version=2018-04-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "9", "10", "11", "12", "13", "14", "15", "16", "17", "18" ], - "x-ms-client-request-id": [ "9f0ce7cc-4da7-4490-954d-5947aa71a93a", "9f0ce7cc-4da7-4490-954d-5947aa71a93a", "9f0ce7cc-4da7-4490-954d-5947aa71a93a", "9f0ce7cc-4da7-4490-954d-5947aa71a93a", "9f0ce7cc-4da7-4490-954d-5947aa71a93a", "9f0ce7cc-4da7-4490-954d-5947aa71a93a", "9f0ce7cc-4da7-4490-954d-5947aa71a93a", "9f0ce7cc-4da7-4490-954d-5947aa71a93a", "9f0ce7cc-4da7-4490-954d-5947aa71a93a", "9f0ce7cc-4da7-4490-954d-5947aa71a93a" ], + "x-ms-unique-id": [ "8", "9", "10", "11", "12", "13", "14", "15", "16", "17" ], + "x-ms-client-request-id": [ "f77ed909-5994-493c-ab67-a8951f4854bd", "f77ed909-5994-493c-ab67-a8951f4854bd", "f77ed909-5994-493c-ab67-a8951f4854bd", "f77ed909-5994-493c-ab67-a8951f4854bd", "f77ed909-5994-493c-ab67-a8951f4854bd", "f77ed909-5994-493c-ab67-a8951f4854bd", "f77ed909-5994-493c-ab67-a8951f4854bd", "f77ed909-5994-493c-ab67-a8951f4854bd", "f77ed909-5994-493c-ab67-a8951f4854bd", "f77ed909-5994-493c-ab67-a8951f4854bd" ], "CommandName": [ "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace" ], "FullCommandName": [ "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -668,13 +630,13 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ "eastus:1d101011-f298-4d6d-8b70-d50cf0b9ccfc" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11984" ], - "x-ms-correlation-request-id": [ "9b380e59-6c49-487e-a4a0-46a65dfdfe08" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T013201Z:9b380e59-6c49-487e-a4a0-46a65dfdfe08" ], + "x-ms-request-id": [ "eastus:67fbb840-24fa-46a5-b847-f96a98346a58" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11973" ], + "x-ms-correlation-request-id": [ "20232bc6-26d3-473d-bbe6-cdfd818c310c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083333Z:20232bc6-26d3-473d-bbe6-cdfd818c310c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:32:01 GMT" ] + "Date": [ "Tue, 15 Sep 2020 08:33:32 GMT" ] }, "ContentHeaders": { "Content-Length": [ "22" ], @@ -684,14 +646,14 @@ "Content": "{\"status\":\"Succeeded\"}" } }, - "New-AzDatabricksWorkspace+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC02OWJrZzIiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyRDY5QktHMiJ9?api-version=2018-04-01+19": { + "New-AzDatabricksWorkspace+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1oNm9rYnQiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREg2T0tCVCJ9?api-version=2018-04-01+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC02OWJrZzIiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyRDY5QktHMiJ9?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1oNm9rYnQiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREg2T0tCVCJ9?api-version=2018-04-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19" ], - "x-ms-client-request-id": [ "9f0ce7cc-4da7-4490-954d-5947aa71a93a", "9f0ce7cc-4da7-4490-954d-5947aa71a93a", "9f0ce7cc-4da7-4490-954d-5947aa71a93a", "9f0ce7cc-4da7-4490-954d-5947aa71a93a", "9f0ce7cc-4da7-4490-954d-5947aa71a93a", "9f0ce7cc-4da7-4490-954d-5947aa71a93a", "9f0ce7cc-4da7-4490-954d-5947aa71a93a", "9f0ce7cc-4da7-4490-954d-5947aa71a93a", "9f0ce7cc-4da7-4490-954d-5947aa71a93a", "9f0ce7cc-4da7-4490-954d-5947aa71a93a", "9f0ce7cc-4da7-4490-954d-5947aa71a93a" ], + "x-ms-unique-id": [ "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18" ], + "x-ms-client-request-id": [ "f77ed909-5994-493c-ab67-a8951f4854bd", "f77ed909-5994-493c-ab67-a8951f4854bd", "f77ed909-5994-493c-ab67-a8951f4854bd", "f77ed909-5994-493c-ab67-a8951f4854bd", "f77ed909-5994-493c-ab67-a8951f4854bd", "f77ed909-5994-493c-ab67-a8951f4854bd", "f77ed909-5994-493c-ab67-a8951f4854bd", "f77ed909-5994-493c-ab67-a8951f4854bd", "f77ed909-5994-493c-ab67-a8951f4854bd", "f77ed909-5994-493c-ab67-a8951f4854bd", "f77ed909-5994-493c-ab67-a8951f4854bd" ], "CommandName": [ "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace" ], "FullCommandName": [ "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -707,13 +669,13 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ "eastus:98691598-1aea-4696-a88d-da4c8272b482" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11983" ], - "x-ms-correlation-request-id": [ "b5fbf71e-23aa-4245-83ce-c34ce68efcc5" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T013201Z:b5fbf71e-23aa-4245-83ce-c34ce68efcc5" ], + "x-ms-request-id": [ "eastus:6bd20df7-c847-4078-bbf6-b3d442e15b95" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11972" ], + "x-ms-correlation-request-id": [ "c72baa08-b806-4f4e-bc47-c795d097c77c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083333Z:c72baa08-b806-4f4e-bc47-c795d097c77c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:32:01 GMT" ] + "Date": [ "Tue, 15 Sep 2020 08:33:32 GMT" ] }, "ContentHeaders": { "Content-Length": [ "22" ], @@ -723,16 +685,16 @@ "Content": "{\"status\":\"Succeeded\"}" } }, - "New-AzDatabricksWorkspace+[NoContext]+CreateExpandedWithEncryption+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/databricks-test01-69bkg2?api-version=2018-04-01+1": { + "New-AzDatabricksWorkspace+[NoContext]+CreateExpandedWithEncryption+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/databricks-test01-h6okbt?api-version=2018-04-01+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/databricks-test01-69bkg2?api-version=2018-04-01", - "Content": "{\n \"location\": \"eastus\",\n \"properties\": {\n \"parameters\": {\n \"customPrivateSubnetName\": {\n \"value\": \"priv\"\n },\n \"customPublicSubnetName\": {\n \"value\": \"pub\"\n },\n \"customVirtualNetworkId\": {\n \"value\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Network/virtualNetworks/databricks-test-vn\"\n },\n \"requireInfrastructureEncryption\": {\n \"value\": true\n }\n },\n \"managedResourceGroupId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-databricks-test01-69bkg2-oz2m5qls7u6nf\"\n },\n \"sku\": {\n \"name\": \"premium\"\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/databricks-test01-h6okbt?api-version=2018-04-01", + "Content": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"customVirtualNetworkId\": {\r\n \"value\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Network/virtualNetworks/databricks-vnet-hkgl9r\"\r\n },\r\n \"customPublicSubnetName\": {\r\n \"value\": \"pub\"\r\n },\r\n \"customPrivateSubnetName\": {\r\n \"value\": \"priv\"\r\n },\r\n \"requireInfrastructureEncryption\": {\r\n \"value\": true\r\n }\r\n },\r\n \"managedResourceGroupId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-databricks-test01-h6okbt-ju9fin2hq786o\"\r\n },\r\n \"sku\": {\r\n \"name\": \"premium\"\r\n }\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "686" ] + "Content-Length": [ "712" ] } }, "Response": { @@ -741,31 +703,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLTY5YmtnMiIsImpvYklkIjoiQXBwbGlhbmNlUHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1QwMTozQTJENjlCS0cyIn0?api-version=2018-04-01" ], - "x-ms-request-id": [ "eastus:05f581aa-d520-400f-b497-f5119d79cde1" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLWg2b2tidCIsImpvYklkIjoiQXBwbGlhbmNlUHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1QwMTozQTJESDZPS0JUIn0?api-version=2018-04-01" ], + "x-ms-request-id": [ "eastus:947609a7-10ff-4391-b06c-8cbca1e2f7b3" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], - "x-ms-correlation-request-id": [ "ba9af9d3-06b0-4392-ab2f-0f1bf5049e2e" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T013209Z:ba9af9d3-06b0-4392-ab2f-0f1bf5049e2e" ], + "x-ms-correlation-request-id": [ "bafa31e8-be60-4991-9b7a-62a9937d7999" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083342Z:bafa31e8-be60-4991-9b7a-62a9937d7999" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:32:09 GMT" ] + "Date": [ "Tue, 15 Sep 2020 08:33:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "937" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-databricks-test01-69bkg2-oz2m5qls7u6nf\",\"provisioningState\":\"Accepted\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"createdDateTime\":\"2020-07-29T01:32:07.8019539Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/databricks-test01-69bkg2\",\"name\":\"databricks-test01-69bkg2\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"premium\"},\"location\":\"eastus\"}" + "Content": "{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-databricks-test01-h6okbt-ju9fin2hq786o\",\"provisioningState\":\"Accepted\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"createdDateTime\":\"2020-09-15T08:33:39.6582079Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/databricks-test01-h6okbt\",\"name\":\"databricks-test01-h6okbt\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"premium\"},\"location\":\"eastus\"}" } }, - "New-AzDatabricksWorkspace+[NoContext]+CreateExpandedWithEncryption+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLTY5YmtnMiIsImpvYklkIjoiQXBwbGlhbmNlUHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1QwMTozQTJENjlCS0cyIn0?api-version=2018-04-01+2": { + "New-AzDatabricksWorkspace+[NoContext]+CreateExpandedWithEncryption+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLWg2b2tidCIsImpvYklkIjoiQXBwbGlhbmNlUHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1QwMTozQTJESDZPS0JUIn0?api-version=2018-04-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLTY5YmtnMiIsImpvYklkIjoiQXBwbGlhbmNlUHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1QwMTozQTJENjlCS0cyIn0?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLWg2b2tidCIsImpvYklkIjoiQXBwbGlhbmNlUHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1QwMTozQTJESDZPS0JUIn0?api-version=2018-04-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "20", "21" ], - "x-ms-client-request-id": [ "18ceb922-d6db-4880-9787-f9ef487036a9", "18ceb922-d6db-4880-9787-f9ef487036a9" ], + "x-ms-unique-id": [ "19", "20" ], + "x-ms-client-request-id": [ "a49e9bad-08be-400c-bd61-2029cda0a85f", "a49e9bad-08be-400c-bd61-2029cda0a85f" ], "CommandName": [ "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace" ], "FullCommandName": [ "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -780,13 +742,13 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eastus:82460133-5f81-4a6c-81be-d73d186d5507" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11982" ], - "x-ms-correlation-request-id": [ "a9a257da-18ae-4e84-b2ee-6ff55924bcf8" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T013224Z:a9a257da-18ae-4e84-b2ee-6ff55924bcf8" ], + "x-ms-request-id": [ "eastus:0408f5d9-5ba8-456e-adf3-8f7ecd375587" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11971" ], + "x-ms-correlation-request-id": [ "d25e0ea8-4a94-447d-aa5c-a4ed3c28284d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083357Z:d25e0ea8-4a94-447d-aa5c-a4ed3c28284d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:32:24 GMT" ] + "Date": [ "Tue, 15 Sep 2020 08:33:57 GMT" ] }, "ContentHeaders": { "Content-Length": [ "21" ], @@ -796,14 +758,14 @@ "Content": "{\"status\":\"Accepted\"}" } }, - "New-AzDatabricksWorkspace+[NoContext]+CreateExpandedWithEncryption+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLTY5YmtnMiIsImpvYklkIjoiQXBwbGlhbmNlUHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1QwMTozQTJENjlCS0cyIn0?api-version=2018-04-01+3": { + "New-AzDatabricksWorkspace+[NoContext]+CreateExpandedWithEncryption+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLWg2b2tidCIsImpvYklkIjoiQXBwbGlhbmNlUHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1QwMTozQTJESDZPS0JUIn0?api-version=2018-04-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLTY5YmtnMiIsImpvYklkIjoiQXBwbGlhbmNlUHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1QwMTozQTJENjlCS0cyIn0?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLWg2b2tidCIsImpvYklkIjoiQXBwbGlhbmNlUHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1QwMTozQTJESDZPS0JUIn0?api-version=2018-04-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "20", "21", "22" ], - "x-ms-client-request-id": [ "18ceb922-d6db-4880-9787-f9ef487036a9", "18ceb922-d6db-4880-9787-f9ef487036a9", "18ceb922-d6db-4880-9787-f9ef487036a9" ], + "x-ms-unique-id": [ "19", "20", "21" ], + "x-ms-client-request-id": [ "a49e9bad-08be-400c-bd61-2029cda0a85f", "a49e9bad-08be-400c-bd61-2029cda0a85f", "a49e9bad-08be-400c-bd61-2029cda0a85f" ], "CommandName": [ "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace" ], "FullCommandName": [ "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -818,13 +780,13 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eastus:60ef3a5d-6d99-4698-bacf-6c7012ef6a1d" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11981" ], - "x-ms-correlation-request-id": [ "0fcf2f14-153c-4df4-b2f8-e765013e1032" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T013255Z:0fcf2f14-153c-4df4-b2f8-e765013e1032" ], + "x-ms-request-id": [ "eastus:e9805c1b-766a-4229-b4b4-b633c8ea8b04" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11970" ], + "x-ms-correlation-request-id": [ "9697f997-2067-48b9-af70-2933081fa8c5" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083428Z:9697f997-2067-48b9-af70-2933081fa8c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:32:54 GMT" ] + "Date": [ "Tue, 15 Sep 2020 08:34:27 GMT" ] }, "ContentHeaders": { "Content-Length": [ "21" ], @@ -834,14 +796,14 @@ "Content": "{\"status\":\"Accepted\"}" } }, - "New-AzDatabricksWorkspace+[NoContext]+CreateExpandedWithEncryption+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLTY5YmtnMiIsImpvYklkIjoiQXBwbGlhbmNlUHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1QwMTozQTJENjlCS0cyIn0?api-version=2018-04-01+4": { + "New-AzDatabricksWorkspace+[NoContext]+CreateExpandedWithEncryption+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLWg2b2tidCIsImpvYklkIjoiQXBwbGlhbmNlUHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1QwMTozQTJESDZPS0JUIn0?api-version=2018-04-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLTY5YmtnMiIsImpvYklkIjoiQXBwbGlhbmNlUHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1QwMTozQTJENjlCS0cyIn0?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLWg2b2tidCIsImpvYklkIjoiQXBwbGlhbmNlUHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1QwMTozQTJESDZPS0JUIn0?api-version=2018-04-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "20", "21", "22", "23" ], - "x-ms-client-request-id": [ "18ceb922-d6db-4880-9787-f9ef487036a9", "18ceb922-d6db-4880-9787-f9ef487036a9", "18ceb922-d6db-4880-9787-f9ef487036a9", "18ceb922-d6db-4880-9787-f9ef487036a9" ], + "x-ms-unique-id": [ "19", "20", "21", "22" ], + "x-ms-client-request-id": [ "a49e9bad-08be-400c-bd61-2029cda0a85f", "a49e9bad-08be-400c-bd61-2029cda0a85f", "a49e9bad-08be-400c-bd61-2029cda0a85f", "a49e9bad-08be-400c-bd61-2029cda0a85f" ], "CommandName": [ "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace" ], "FullCommandName": [ "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -856,13 +818,13 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eastus:45293f5d-86af-4e83-af50-7d5472ee8c3a" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11980" ], - "x-ms-correlation-request-id": [ "c60b8ea5-caf2-49ac-aa85-58f43c3f54ec" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T013325Z:c60b8ea5-caf2-49ac-aa85-58f43c3f54ec" ], + "x-ms-request-id": [ "eastus:57951863-2d92-4f39-b731-549d9cafe29b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11969" ], + "x-ms-correlation-request-id": [ "cb535b1e-33e0-4c3c-9b09-5bd4d323a0e6" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083458Z:cb535b1e-33e0-4c3c-9b09-5bd4d323a0e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:33:24 GMT" ] + "Date": [ "Tue, 15 Sep 2020 08:34:57 GMT" ] }, "ContentHeaders": { "Content-Length": [ "21" ], @@ -872,14 +834,14 @@ "Content": "{\"status\":\"Accepted\"}" } }, - "New-AzDatabricksWorkspace+[NoContext]+CreateExpandedWithEncryption+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLTY5YmtnMiIsImpvYklkIjoiQXBwbGlhbmNlUHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1QwMTozQTJENjlCS0cyIn0?api-version=2018-04-01+5": { + "New-AzDatabricksWorkspace+[NoContext]+CreateExpandedWithEncryption+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLWg2b2tidCIsImpvYklkIjoiQXBwbGlhbmNlUHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1QwMTozQTJESDZPS0JUIn0?api-version=2018-04-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLTY5YmtnMiIsImpvYklkIjoiQXBwbGlhbmNlUHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1QwMTozQTJENjlCS0cyIn0?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLWg2b2tidCIsImpvYklkIjoiQXBwbGlhbmNlUHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1QwMTozQTJESDZPS0JUIn0?api-version=2018-04-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "20", "21", "22", "23", "24" ], - "x-ms-client-request-id": [ "18ceb922-d6db-4880-9787-f9ef487036a9", "18ceb922-d6db-4880-9787-f9ef487036a9", "18ceb922-d6db-4880-9787-f9ef487036a9", "18ceb922-d6db-4880-9787-f9ef487036a9", "18ceb922-d6db-4880-9787-f9ef487036a9" ], + "x-ms-unique-id": [ "19", "20", "21", "22", "23" ], + "x-ms-client-request-id": [ "a49e9bad-08be-400c-bd61-2029cda0a85f", "a49e9bad-08be-400c-bd61-2029cda0a85f", "a49e9bad-08be-400c-bd61-2029cda0a85f", "a49e9bad-08be-400c-bd61-2029cda0a85f", "a49e9bad-08be-400c-bd61-2029cda0a85f" ], "CommandName": [ "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace" ], "FullCommandName": [ "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -894,13 +856,13 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eastus:f6ea975b-b952-412c-98b2-1e0ee8b06217" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11979" ], - "x-ms-correlation-request-id": [ "343cdf11-71e1-453e-8a8e-490407acc388" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T013355Z:343cdf11-71e1-453e-8a8e-490407acc388" ], + "x-ms-request-id": [ "eastus:7ffb8aa8-ea48-4a4d-9c9e-80c4986e6d9c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11968" ], + "x-ms-correlation-request-id": [ "4874ff33-e5a5-48db-889b-bd41d06c3b7b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083528Z:4874ff33-e5a5-48db-889b-bd41d06c3b7b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:33:55 GMT" ] + "Date": [ "Tue, 15 Sep 2020 08:35:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "21" ], @@ -910,14 +872,14 @@ "Content": "{\"status\":\"Accepted\"}" } }, - "New-AzDatabricksWorkspace+[NoContext]+CreateExpandedWithEncryption+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLTY5YmtnMiIsImpvYklkIjoiQXBwbGlhbmNlUHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1QwMTozQTJENjlCS0cyIn0?api-version=2018-04-01+6": { + "New-AzDatabricksWorkspace+[NoContext]+CreateExpandedWithEncryption+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLWg2b2tidCIsImpvYklkIjoiQXBwbGlhbmNlUHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1QwMTozQTJESDZPS0JUIn0?api-version=2018-04-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLTY5YmtnMiIsImpvYklkIjoiQXBwbGlhbmNlUHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1QwMTozQTJENjlCS0cyIn0?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLWg2b2tidCIsImpvYklkIjoiQXBwbGlhbmNlUHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1QwMTozQTJESDZPS0JUIn0?api-version=2018-04-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "20", "21", "22", "23", "24", "25" ], - "x-ms-client-request-id": [ "18ceb922-d6db-4880-9787-f9ef487036a9", "18ceb922-d6db-4880-9787-f9ef487036a9", "18ceb922-d6db-4880-9787-f9ef487036a9", "18ceb922-d6db-4880-9787-f9ef487036a9", "18ceb922-d6db-4880-9787-f9ef487036a9", "18ceb922-d6db-4880-9787-f9ef487036a9" ], + "x-ms-unique-id": [ "19", "20", "21", "22", "23", "24" ], + "x-ms-client-request-id": [ "a49e9bad-08be-400c-bd61-2029cda0a85f", "a49e9bad-08be-400c-bd61-2029cda0a85f", "a49e9bad-08be-400c-bd61-2029cda0a85f", "a49e9bad-08be-400c-bd61-2029cda0a85f", "a49e9bad-08be-400c-bd61-2029cda0a85f", "a49e9bad-08be-400c-bd61-2029cda0a85f" ], "CommandName": [ "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace" ], "FullCommandName": [ "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -932,13 +894,13 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eastus:23287ee6-22de-4fe1-82e9-479f618bf1f1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11978" ], - "x-ms-correlation-request-id": [ "d5e8949f-e4e5-46d2-91bc-bcb1922d23c8" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T013427Z:d5e8949f-e4e5-46d2-91bc-bcb1922d23c8" ], + "x-ms-request-id": [ "eastus:8388f9b1-17be-4ff0-a2c3-fb36874840bb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11967" ], + "x-ms-correlation-request-id": [ "7a4b0b71-4e8c-4263-ae6d-6b58a964ec39" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083559Z:7a4b0b71-4e8c-4263-ae6d-6b58a964ec39" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:34:27 GMT" ] + "Date": [ "Tue, 15 Sep 2020 08:35:59 GMT" ] }, "ContentHeaders": { "Content-Length": [ "21" ], @@ -948,14 +910,14 @@ "Content": "{\"status\":\"Accepted\"}" } }, - "New-AzDatabricksWorkspace+[NoContext]+CreateExpandedWithEncryption+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLTY5YmtnMiIsImpvYklkIjoiQXBwbGlhbmNlUHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1QwMTozQTJENjlCS0cyIn0?api-version=2018-04-01+7": { + "New-AzDatabricksWorkspace+[NoContext]+CreateExpandedWithEncryption+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLWg2b2tidCIsImpvYklkIjoiQXBwbGlhbmNlUHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1QwMTozQTJESDZPS0JUIn0?api-version=2018-04-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLTY5YmtnMiIsImpvYklkIjoiQXBwbGlhbmNlUHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1QwMTozQTJENjlCS0cyIn0?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLWg2b2tidCIsImpvYklkIjoiQXBwbGlhbmNlUHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1QwMTozQTJESDZPS0JUIn0?api-version=2018-04-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "20", "21", "22", "23", "24", "25", "26" ], - "x-ms-client-request-id": [ "18ceb922-d6db-4880-9787-f9ef487036a9", "18ceb922-d6db-4880-9787-f9ef487036a9", "18ceb922-d6db-4880-9787-f9ef487036a9", "18ceb922-d6db-4880-9787-f9ef487036a9", "18ceb922-d6db-4880-9787-f9ef487036a9", "18ceb922-d6db-4880-9787-f9ef487036a9", "18ceb922-d6db-4880-9787-f9ef487036a9" ], + "x-ms-unique-id": [ "19", "20", "21", "22", "23", "24", "25" ], + "x-ms-client-request-id": [ "a49e9bad-08be-400c-bd61-2029cda0a85f", "a49e9bad-08be-400c-bd61-2029cda0a85f", "a49e9bad-08be-400c-bd61-2029cda0a85f", "a49e9bad-08be-400c-bd61-2029cda0a85f", "a49e9bad-08be-400c-bd61-2029cda0a85f", "a49e9bad-08be-400c-bd61-2029cda0a85f", "a49e9bad-08be-400c-bd61-2029cda0a85f" ], "CommandName": [ "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace" ], "FullCommandName": [ "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -971,13 +933,13 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ "eastus:059fa518-6afe-4ca1-9168-8cc33d0e1274" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11977" ], - "x-ms-correlation-request-id": [ "4a4b64d5-2433-4a25-9a7a-cc386d34aae3" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T013457Z:4a4b64d5-2433-4a25-9a7a-cc386d34aae3" ], + "x-ms-request-id": [ "eastus:f27c5d9f-584d-4679-9713-55ada2004559" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11966" ], + "x-ms-correlation-request-id": [ "e5e17acd-cc8f-4222-9aa4-d52e1039415f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083629Z:e5e17acd-cc8f-4222-9aa4-d52e1039415f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:34:57 GMT" ] + "Date": [ "Tue, 15 Sep 2020 08:36:29 GMT" ] }, "ContentHeaders": { "Content-Length": [ "22" ], @@ -987,14 +949,14 @@ "Content": "{\"status\":\"Succeeded\"}" } }, - "New-AzDatabricksWorkspace+[NoContext]+CreateExpandedWithEncryption+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/databricks-test01-69bkg2?api-version=2018-04-01+8": { + "New-AzDatabricksWorkspace+[NoContext]+CreateExpandedWithEncryption+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/databricks-test01-h6okbt?api-version=2018-04-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/databricks-test01-69bkg2?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/databricks-test01-h6okbt?api-version=2018-04-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "20", "21", "22", "23", "24", "25", "26", "27" ], - "x-ms-client-request-id": [ "18ceb922-d6db-4880-9787-f9ef487036a9", "18ceb922-d6db-4880-9787-f9ef487036a9", "18ceb922-d6db-4880-9787-f9ef487036a9", "18ceb922-d6db-4880-9787-f9ef487036a9", "18ceb922-d6db-4880-9787-f9ef487036a9", "18ceb922-d6db-4880-9787-f9ef487036a9", "18ceb922-d6db-4880-9787-f9ef487036a9", "18ceb922-d6db-4880-9787-f9ef487036a9" ], + "x-ms-unique-id": [ "19", "20", "21", "22", "23", "24", "25", "26" ], + "x-ms-client-request-id": [ "a49e9bad-08be-400c-bd61-2029cda0a85f", "a49e9bad-08be-400c-bd61-2029cda0a85f", "a49e9bad-08be-400c-bd61-2029cda0a85f", "a49e9bad-08be-400c-bd61-2029cda0a85f", "a49e9bad-08be-400c-bd61-2029cda0a85f", "a49e9bad-08be-400c-bd61-2029cda0a85f", "a49e9bad-08be-400c-bd61-2029cda0a85f", "a49e9bad-08be-400c-bd61-2029cda0a85f" ], "CommandName": [ "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace" ], "FullCommandName": [ "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1010,30 +972,30 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ "eastus:2cd5e5ca-9172-4c02-a72a-d51768cf0728" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11976" ], - "x-ms-correlation-request-id": [ "76a60ec5-8d60-4b8a-8230-52a670550783" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T013458Z:76a60ec5-8d60-4b8a-8230-52a670550783" ], + "x-ms-request-id": [ "eastus:5dff78f6-b494-488a-81a3-9b492a8021c9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11965" ], + "x-ms-correlation-request-id": [ "ac1158d8-c02f-45c9-89fd-3edf06a3479a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083630Z:ac1158d8-c02f-45c9-89fd-3edf06a3479a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:34:57 GMT" ] + "Date": [ "Tue, 15 Sep 2020 08:36:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2103" ], + "Content-Length": [ "2107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-databricks-test01-69bkg2-oz2m5qls7u6nf\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"priv\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"pub\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Network/virtualNetworks/databricks-test-vn\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":false},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":true},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelayglb64ok7bkz6s\"},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstorageglb64ok7bkz6s\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"4385890673167896\",\"workspaceUrl\":\"adb-4385890673167896.16.azuredatabricks.net\",\"createdDateTime\":\"2020-07-29T01:32:07.8019539Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/databricks-test01-69bkg2\",\"name\":\"databricks-test01-69bkg2\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"premium\"},\"location\":\"eastus\"}" + "Content": "{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-databricks-test01-h6okbt-ju9fin2hq786o\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"priv\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"pub\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Network/virtualNetworks/databricks-vnet-hkgl9r\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":false},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelaynwskmbvkvn6hs\"},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":true},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstoragenwskmbvkvn6hs\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"1026542997831575\",\"workspaceUrl\":\"adb-1026542997831575.15.azuredatabricks.net\",\"createdDateTime\":\"2020-09-15T08:33:39.6582079Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/databricks-test01-h6okbt\",\"name\":\"databricks-test01-h6okbt\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"premium\"},\"location\":\"eastus\"}" } }, - "New-AzDatabricksWorkspace+[NoContext]+CreateExpandedWithEncryption+$DELETE+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/databricks-test01-69bkg2?api-version=2018-04-01+9": { + "New-AzDatabricksWorkspace+[NoContext]+CreateExpandedWithEncryption+$DELETE+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/databricks-test01-h6okbt?api-version=2018-04-01+9": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/databricks-test01-69bkg2?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/databricks-test01-h6okbt?api-version=2018-04-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "28" ], - "x-ms-client-request-id": [ "9c3233c6-1f66-4470-bfa4-0ec502bc70e6" ], + "x-ms-unique-id": [ "27" ], + "x-ms-client-request-id": [ "d9d69325-e18a-4074-ade8-7e169cb43dde" ], "CommandName": [ "Remove-AzDatabricksWorkspace" ], "FullCommandName": [ "Remove-AzDatabricksWorkspace_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1048,15 +1010,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLTY5YmtnMiIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJENzlDV09KOjJEREFUQUJSSUNLUzozQTJEVEVTVDAxOjNBMkQ2OUJLRzIifQ?api-version=2018-04-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLWg2b2tidCIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVDAxOjNBMkRINk9LQlQifQ?api-version=2018-04-01" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "eastus:51306398-ba85-4cb3-bb7e-62d0c10116e4" ], + "x-ms-request-id": [ "eastus:c2921164-0cdf-4da5-844c-88c7d273969a" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], - "x-ms-correlation-request-id": [ "b55be446-b311-46b9-be65-01e26ba6a4c1" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T013459Z:b55be446-b311-46b9-be65-01e26ba6a4c1" ], + "x-ms-correlation-request-id": [ "befd6b56-7f0f-4b48-bd6c-19e28ddce2a1" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083631Z:befd6b56-7f0f-4b48-bd6c-19e28ddce2a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:34:58 GMT" ] + "Date": [ "Tue, 15 Sep 2020 08:36:30 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1065,14 +1027,14 @@ "Content": null } }, - "New-AzDatabricksWorkspace+[NoContext]+CreateExpandedWithEncryption+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLTY5YmtnMiIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJENzlDV09KOjJEREFUQUJSSUNLUzozQTJEVEVTVDAxOjNBMkQ2OUJLRzIifQ?api-version=2018-04-01+10": { + "New-AzDatabricksWorkspace+[NoContext]+CreateExpandedWithEncryption+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLWg2b2tidCIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVDAxOjNBMkRINk9LQlQifQ?api-version=2018-04-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLTY5YmtnMiIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJENzlDV09KOjJEREFUQUJSSUNLUzozQTJEVEVTVDAxOjNBMkQ2OUJLRzIifQ?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLWg2b2tidCIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVDAxOjNBMkRINk9LQlQifQ?api-version=2018-04-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "28", "29" ], - "x-ms-client-request-id": [ "9c3233c6-1f66-4470-bfa4-0ec502bc70e6", "9c3233c6-1f66-4470-bfa4-0ec502bc70e6" ], + "x-ms-unique-id": [ "27", "28" ], + "x-ms-client-request-id": [ "d9d69325-e18a-4074-ade8-7e169cb43dde", "d9d69325-e18a-4074-ade8-7e169cb43dde" ], "CommandName": [ "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace" ], "FullCommandName": [ "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -1087,13 +1049,13 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eastus:64a6eb41-be9e-43db-8ba8-ef7a5748dc78" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11975" ], - "x-ms-correlation-request-id": [ "4cb83c98-7392-4c8b-8508-434373b9019c" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T013514Z:4cb83c98-7392-4c8b-8508-434373b9019c" ], + "x-ms-request-id": [ "eastus:242f4d54-ad85-4f68-a5fd-5ab46e4c0ed7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11964" ], + "x-ms-correlation-request-id": [ "72e1fd31-17f3-41ee-8ab3-2fe8ed94b9ce" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083646Z:72e1fd31-17f3-41ee-8ab3-2fe8ed94b9ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:35:14 GMT" ] + "Date": [ "Tue, 15 Sep 2020 08:36:46 GMT" ] }, "ContentHeaders": { "Content-Length": [ "21" ], @@ -1103,14 +1065,14 @@ "Content": "{\"status\":\"Accepted\"}" } }, - "New-AzDatabricksWorkspace+[NoContext]+CreateExpandedWithEncryption+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLTY5YmtnMiIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJENzlDV09KOjJEREFUQUJSSUNLUzozQTJEVEVTVDAxOjNBMkQ2OUJLRzIifQ?api-version=2018-04-01+11": { + "New-AzDatabricksWorkspace+[NoContext]+CreateExpandedWithEncryption+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLWg2b2tidCIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVDAxOjNBMkRINk9LQlQifQ?api-version=2018-04-01+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLTY5YmtnMiIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJENzlDV09KOjJEREFUQUJSSUNLUzozQTJEVEVTVDAxOjNBMkQ2OUJLRzIifQ?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLWg2b2tidCIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVDAxOjNBMkRINk9LQlQifQ?api-version=2018-04-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "28", "29", "30" ], - "x-ms-client-request-id": [ "9c3233c6-1f66-4470-bfa4-0ec502bc70e6", "9c3233c6-1f66-4470-bfa4-0ec502bc70e6", "9c3233c6-1f66-4470-bfa4-0ec502bc70e6" ], + "x-ms-unique-id": [ "27", "28", "29" ], + "x-ms-client-request-id": [ "d9d69325-e18a-4074-ade8-7e169cb43dde", "d9d69325-e18a-4074-ade8-7e169cb43dde", "d9d69325-e18a-4074-ade8-7e169cb43dde" ], "CommandName": [ "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace" ], "FullCommandName": [ "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1125,13 +1087,13 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eastus:0fbd2858-737f-4ecb-9858-62a60340ba39" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11974" ], - "x-ms-correlation-request-id": [ "dac09011-ef22-4dad-9bf6-317235a431af" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T013545Z:dac09011-ef22-4dad-9bf6-317235a431af" ], + "x-ms-request-id": [ "eastus:608602bb-f6c2-4718-bcf5-0a1acdda962c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11963" ], + "x-ms-correlation-request-id": [ "ab499738-b77d-454a-bebc-06ca17528580" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083716Z:ab499738-b77d-454a-bebc-06ca17528580" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:35:44 GMT" ] + "Date": [ "Tue, 15 Sep 2020 08:37:16 GMT" ] }, "ContentHeaders": { "Content-Length": [ "21" ], @@ -1141,14 +1103,14 @@ "Content": "{\"status\":\"Accepted\"}" } }, - "New-AzDatabricksWorkspace+[NoContext]+CreateExpandedWithEncryption+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLTY5YmtnMiIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJENzlDV09KOjJEREFUQUJSSUNLUzozQTJEVEVTVDAxOjNBMkQ2OUJLRzIifQ?api-version=2018-04-01+12": { + "New-AzDatabricksWorkspace+[NoContext]+CreateExpandedWithEncryption+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLWg2b2tidCIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVDAxOjNBMkRINk9LQlQifQ?api-version=2018-04-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLTY5YmtnMiIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJENzlDV09KOjJEREFUQUJSSUNLUzozQTJEVEVTVDAxOjNBMkQ2OUJLRzIifQ?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLWg2b2tidCIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVDAxOjNBMkRINk9LQlQifQ?api-version=2018-04-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "28", "29", "30", "31" ], - "x-ms-client-request-id": [ "9c3233c6-1f66-4470-bfa4-0ec502bc70e6", "9c3233c6-1f66-4470-bfa4-0ec502bc70e6", "9c3233c6-1f66-4470-bfa4-0ec502bc70e6", "9c3233c6-1f66-4470-bfa4-0ec502bc70e6" ], + "x-ms-unique-id": [ "27", "28", "29", "30" ], + "x-ms-client-request-id": [ "d9d69325-e18a-4074-ade8-7e169cb43dde", "d9d69325-e18a-4074-ade8-7e169cb43dde", "d9d69325-e18a-4074-ade8-7e169cb43dde", "d9d69325-e18a-4074-ade8-7e169cb43dde" ], "CommandName": [ "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace" ], "FullCommandName": [ "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1163,13 +1125,13 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eastus:cd0042f2-3e9a-4869-9bd5-60007bdb9edf" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11973" ], - "x-ms-correlation-request-id": [ "f58f81dd-c979-4e61-b6b3-070b8e73e0ed" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T013615Z:f58f81dd-c979-4e61-b6b3-070b8e73e0ed" ], + "x-ms-request-id": [ "eastus:2304c0cb-4b63-4fb9-b972-253bf3401079" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11962" ], + "x-ms-correlation-request-id": [ "6351ed1b-e015-43d5-8814-198ed4903db9" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083747Z:6351ed1b-e015-43d5-8814-198ed4903db9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:36:14 GMT" ] + "Date": [ "Tue, 15 Sep 2020 08:37:46 GMT" ] }, "ContentHeaders": { "Content-Length": [ "21" ], @@ -1179,14 +1141,14 @@ "Content": "{\"status\":\"Accepted\"}" } }, - "New-AzDatabricksWorkspace+[NoContext]+CreateExpandedWithEncryption+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLTY5YmtnMiIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJENzlDV09KOjJEREFUQUJSSUNLUzozQTJEVEVTVDAxOjNBMkQ2OUJLRzIifQ?api-version=2018-04-01+13": { + "New-AzDatabricksWorkspace+[NoContext]+CreateExpandedWithEncryption+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLWg2b2tidCIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVDAxOjNBMkRINk9LQlQifQ?api-version=2018-04-01+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLTY5YmtnMiIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJENzlDV09KOjJEREFUQUJSSUNLUzozQTJEVEVTVDAxOjNBMkQ2OUJLRzIifQ?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLWg2b2tidCIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVDAxOjNBMkRINk9LQlQifQ?api-version=2018-04-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "28", "29", "30", "31", "32" ], - "x-ms-client-request-id": [ "9c3233c6-1f66-4470-bfa4-0ec502bc70e6", "9c3233c6-1f66-4470-bfa4-0ec502bc70e6", "9c3233c6-1f66-4470-bfa4-0ec502bc70e6", "9c3233c6-1f66-4470-bfa4-0ec502bc70e6", "9c3233c6-1f66-4470-bfa4-0ec502bc70e6" ], + "x-ms-unique-id": [ "27", "28", "29", "30", "31" ], + "x-ms-client-request-id": [ "d9d69325-e18a-4074-ade8-7e169cb43dde", "d9d69325-e18a-4074-ade8-7e169cb43dde", "d9d69325-e18a-4074-ade8-7e169cb43dde", "d9d69325-e18a-4074-ade8-7e169cb43dde", "d9d69325-e18a-4074-ade8-7e169cb43dde" ], "CommandName": [ "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace" ], "FullCommandName": [ "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1201,13 +1163,13 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eastus:af4027a3-ffd7-41ab-a676-2d5b2c4d0125" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11972" ], - "x-ms-correlation-request-id": [ "18bbbdc1-5baf-4fbe-81e4-3c18d06e6e31" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T013645Z:18bbbdc1-5baf-4fbe-81e4-3c18d06e6e31" ], + "x-ms-request-id": [ "eastus:236e3f27-3f41-44f4-84e5-f58640ee96a2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11961" ], + "x-ms-correlation-request-id": [ "3c204570-bb4c-4031-8507-0243a69cc414" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083817Z:3c204570-bb4c-4031-8507-0243a69cc414" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:36:45 GMT" ] + "Date": [ "Tue, 15 Sep 2020 08:38:16 GMT" ] }, "ContentHeaders": { "Content-Length": [ "21" ], @@ -1217,14 +1179,14 @@ "Content": "{\"status\":\"Accepted\"}" } }, - "New-AzDatabricksWorkspace+[NoContext]+CreateExpandedWithEncryption+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLTY5YmtnMiIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJENzlDV09KOjJEREFUQUJSSUNLUzozQTJEVEVTVDAxOjNBMkQ2OUJLRzIifQ?api-version=2018-04-01+14": { + "New-AzDatabricksWorkspace+[NoContext]+CreateExpandedWithEncryption+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLWg2b2tidCIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVDAxOjNBMkRINk9LQlQifQ?api-version=2018-04-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLTY5YmtnMiIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJENzlDV09KOjJEREFUQUJSSUNLUzozQTJEVEVTVDAxOjNBMkQ2OUJLRzIifQ?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLWg2b2tidCIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVDAxOjNBMkRINk9LQlQifQ?api-version=2018-04-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "28", "29", "30", "31", "32", "33" ], - "x-ms-client-request-id": [ "9c3233c6-1f66-4470-bfa4-0ec502bc70e6", "9c3233c6-1f66-4470-bfa4-0ec502bc70e6", "9c3233c6-1f66-4470-bfa4-0ec502bc70e6", "9c3233c6-1f66-4470-bfa4-0ec502bc70e6", "9c3233c6-1f66-4470-bfa4-0ec502bc70e6", "9c3233c6-1f66-4470-bfa4-0ec502bc70e6" ], + "x-ms-unique-id": [ "27", "28", "29", "30", "31", "32" ], + "x-ms-client-request-id": [ "d9d69325-e18a-4074-ade8-7e169cb43dde", "d9d69325-e18a-4074-ade8-7e169cb43dde", "d9d69325-e18a-4074-ade8-7e169cb43dde", "d9d69325-e18a-4074-ade8-7e169cb43dde", "d9d69325-e18a-4074-ade8-7e169cb43dde", "d9d69325-e18a-4074-ade8-7e169cb43dde" ], "CommandName": [ "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace" ], "FullCommandName": [ "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1239,13 +1201,13 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eastus:37862a0d-fc26-417a-baeb-525134debc34" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11971" ], - "x-ms-correlation-request-id": [ "48b33600-fa38-40b4-892b-6736b0f4ea42" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T013716Z:48b33600-fa38-40b4-892b-6736b0f4ea42" ], + "x-ms-request-id": [ "eastus:58dfe5a1-c962-4c74-96c9-416a18c1b0a4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11960" ], + "x-ms-correlation-request-id": [ "1d251050-5a23-447f-b9c1-f15f9aa9ebc2" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083847Z:1d251050-5a23-447f-b9c1-f15f9aa9ebc2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:37:15 GMT" ] + "Date": [ "Tue, 15 Sep 2020 08:38:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "21" ], @@ -1255,14 +1217,14 @@ "Content": "{\"status\":\"Accepted\"}" } }, - "New-AzDatabricksWorkspace+[NoContext]+CreateExpandedWithEncryption+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLTY5YmtnMiIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJENzlDV09KOjJEREFUQUJSSUNLUzozQTJEVEVTVDAxOjNBMkQ2OUJLRzIifQ?api-version=2018-04-01+15": { + "New-AzDatabricksWorkspace+[NoContext]+CreateExpandedWithEncryption+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLWg2b2tidCIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVDAxOjNBMkRINk9LQlQifQ?api-version=2018-04-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLTY5YmtnMiIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJENzlDV09KOjJEREFUQUJSSUNLUzozQTJEVEVTVDAxOjNBMkQ2OUJLRzIifQ?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLWg2b2tidCIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVDAxOjNBMkRINk9LQlQifQ?api-version=2018-04-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "28", "29", "30", "31", "32", "33", "34" ], - "x-ms-client-request-id": [ "9c3233c6-1f66-4470-bfa4-0ec502bc70e6", "9c3233c6-1f66-4470-bfa4-0ec502bc70e6", "9c3233c6-1f66-4470-bfa4-0ec502bc70e6", "9c3233c6-1f66-4470-bfa4-0ec502bc70e6", "9c3233c6-1f66-4470-bfa4-0ec502bc70e6", "9c3233c6-1f66-4470-bfa4-0ec502bc70e6", "9c3233c6-1f66-4470-bfa4-0ec502bc70e6" ], + "x-ms-unique-id": [ "27", "28", "29", "30", "31", "32", "33" ], + "x-ms-client-request-id": [ "d9d69325-e18a-4074-ade8-7e169cb43dde", "d9d69325-e18a-4074-ade8-7e169cb43dde", "d9d69325-e18a-4074-ade8-7e169cb43dde", "d9d69325-e18a-4074-ade8-7e169cb43dde", "d9d69325-e18a-4074-ade8-7e169cb43dde", "d9d69325-e18a-4074-ade8-7e169cb43dde", "d9d69325-e18a-4074-ade8-7e169cb43dde" ], "CommandName": [ "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace" ], "FullCommandName": [ "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1277,13 +1239,13 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eastus:ac27cba3-a8ab-4ded-a249-0b1282927d5f" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11970" ], - "x-ms-correlation-request-id": [ "660ae120-79ed-4028-83fb-8b1301b19602" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T013746Z:660ae120-79ed-4028-83fb-8b1301b19602" ], + "x-ms-request-id": [ "eastus:6cbe7858-6040-4324-8bd0-ae9d6f53fdc6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11959" ], + "x-ms-correlation-request-id": [ "f0408fbf-3963-4949-98f1-ccdcf1c46b18" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083918Z:f0408fbf-3963-4949-98f1-ccdcf1c46b18" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:37:46 GMT" ] + "Date": [ "Tue, 15 Sep 2020 08:39:18 GMT" ] }, "ContentHeaders": { "Content-Length": [ "21" ], @@ -1293,14 +1255,14 @@ "Content": "{\"status\":\"Accepted\"}" } }, - "New-AzDatabricksWorkspace+[NoContext]+CreateExpandedWithEncryption+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLTY5YmtnMiIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJENzlDV09KOjJEREFUQUJSSUNLUzozQTJEVEVTVDAxOjNBMkQ2OUJLRzIifQ?api-version=2018-04-01+16": { + "New-AzDatabricksWorkspace+[NoContext]+CreateExpandedWithEncryption+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLWg2b2tidCIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVDAxOjNBMkRINk9LQlQifQ?api-version=2018-04-01+16": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLTY5YmtnMiIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJENzlDV09KOjJEREFUQUJSSUNLUzozQTJEVEVTVDAxOjNBMkQ2OUJLRzIifQ?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLWg2b2tidCIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVDAxOjNBMkRINk9LQlQifQ?api-version=2018-04-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "28", "29", "30", "31", "32", "33", "34", "35" ], - "x-ms-client-request-id": [ "9c3233c6-1f66-4470-bfa4-0ec502bc70e6", "9c3233c6-1f66-4470-bfa4-0ec502bc70e6", "9c3233c6-1f66-4470-bfa4-0ec502bc70e6", "9c3233c6-1f66-4470-bfa4-0ec502bc70e6", "9c3233c6-1f66-4470-bfa4-0ec502bc70e6", "9c3233c6-1f66-4470-bfa4-0ec502bc70e6", "9c3233c6-1f66-4470-bfa4-0ec502bc70e6", "9c3233c6-1f66-4470-bfa4-0ec502bc70e6" ], + "x-ms-unique-id": [ "27", "28", "29", "30", "31", "32", "33", "34" ], + "x-ms-client-request-id": [ "d9d69325-e18a-4074-ade8-7e169cb43dde", "d9d69325-e18a-4074-ade8-7e169cb43dde", "d9d69325-e18a-4074-ade8-7e169cb43dde", "d9d69325-e18a-4074-ade8-7e169cb43dde", "d9d69325-e18a-4074-ade8-7e169cb43dde", "d9d69325-e18a-4074-ade8-7e169cb43dde", "d9d69325-e18a-4074-ade8-7e169cb43dde", "d9d69325-e18a-4074-ade8-7e169cb43dde" ], "CommandName": [ "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace" ], "FullCommandName": [ "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1315,13 +1277,13 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eastus:8b2f2be1-9642-4867-91e2-a03192bcaf0b" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11969" ], - "x-ms-correlation-request-id": [ "060fcae9-9989-4914-a2fe-e92835f144c8" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T013817Z:060fcae9-9989-4914-a2fe-e92835f144c8" ], + "x-ms-request-id": [ "eastus:9ce4b31b-2962-4a0b-b7d5-a8bb6a928b91" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11958" ], + "x-ms-correlation-request-id": [ "5cba1be1-f6c8-4bd7-a152-01648a1583f4" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083948Z:5cba1be1-f6c8-4bd7-a152-01648a1583f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:38:17 GMT" ] + "Date": [ "Tue, 15 Sep 2020 08:39:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "21" ], @@ -1331,14 +1293,14 @@ "Content": "{\"status\":\"Accepted\"}" } }, - "New-AzDatabricksWorkspace+[NoContext]+CreateExpandedWithEncryption+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLTY5YmtnMiIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJENzlDV09KOjJEREFUQUJSSUNLUzozQTJEVEVTVDAxOjNBMkQ2OUJLRzIifQ?api-version=2018-04-01+17": { + "New-AzDatabricksWorkspace+[NoContext]+CreateExpandedWithEncryption+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLWg2b2tidCIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVDAxOjNBMkRINk9LQlQifQ?api-version=2018-04-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLTY5YmtnMiIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJENzlDV09KOjJEREFUQUJSSUNLUzozQTJEVEVTVDAxOjNBMkQ2OUJLRzIifQ?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLWg2b2tidCIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVDAxOjNBMkRINk9LQlQifQ?api-version=2018-04-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "28", "29", "30", "31", "32", "33", "34", "35", "36" ], - "x-ms-client-request-id": [ "9c3233c6-1f66-4470-bfa4-0ec502bc70e6", "9c3233c6-1f66-4470-bfa4-0ec502bc70e6", "9c3233c6-1f66-4470-bfa4-0ec502bc70e6", "9c3233c6-1f66-4470-bfa4-0ec502bc70e6", "9c3233c6-1f66-4470-bfa4-0ec502bc70e6", "9c3233c6-1f66-4470-bfa4-0ec502bc70e6", "9c3233c6-1f66-4470-bfa4-0ec502bc70e6", "9c3233c6-1f66-4470-bfa4-0ec502bc70e6", "9c3233c6-1f66-4470-bfa4-0ec502bc70e6" ], + "x-ms-unique-id": [ "27", "28", "29", "30", "31", "32", "33", "34", "35" ], + "x-ms-client-request-id": [ "d9d69325-e18a-4074-ade8-7e169cb43dde", "d9d69325-e18a-4074-ade8-7e169cb43dde", "d9d69325-e18a-4074-ade8-7e169cb43dde", "d9d69325-e18a-4074-ade8-7e169cb43dde", "d9d69325-e18a-4074-ade8-7e169cb43dde", "d9d69325-e18a-4074-ade8-7e169cb43dde", "d9d69325-e18a-4074-ade8-7e169cb43dde", "d9d69325-e18a-4074-ade8-7e169cb43dde", "d9d69325-e18a-4074-ade8-7e169cb43dde" ], "CommandName": [ "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace" ], "FullCommandName": [ "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1353,13 +1315,13 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eastus:9aa97964-ea94-495e-9275-ec65cabc7ae5" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11968" ], - "x-ms-correlation-request-id": [ "614958ad-e9a5-4042-b257-ba6fd451aeab" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T013847Z:614958ad-e9a5-4042-b257-ba6fd451aeab" ], + "x-ms-request-id": [ "eastus:f8141d02-b844-43ac-ba3e-7dbf6200acb2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11957" ], + "x-ms-correlation-request-id": [ "7bb49adb-dca3-45d2-ac19-5875d5f3aa7f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084020Z:7bb49adb-dca3-45d2-ac19-5875d5f3aa7f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:38:47 GMT" ] + "Date": [ "Tue, 15 Sep 2020 08:40:19 GMT" ] }, "ContentHeaders": { "Content-Length": [ "21" ], @@ -1369,14 +1331,14 @@ "Content": "{\"status\":\"Accepted\"}" } }, - "New-AzDatabricksWorkspace+[NoContext]+CreateExpandedWithEncryption+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLTY5YmtnMiIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJENzlDV09KOjJEREFUQUJSSUNLUzozQTJEVEVTVDAxOjNBMkQ2OUJLRzIifQ?api-version=2018-04-01+18": { + "New-AzDatabricksWorkspace+[NoContext]+CreateExpandedWithEncryption+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLWg2b2tidCIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVDAxOjNBMkRINk9LQlQifQ?api-version=2018-04-01+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLTY5YmtnMiIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJENzlDV09KOjJEREFUQUJSSUNLUzozQTJEVEVTVDAxOjNBMkQ2OUJLRzIifQ?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLWg2b2tidCIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVDAxOjNBMkRINk9LQlQifQ?api-version=2018-04-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "28", "29", "30", "31", "32", "33", "34", "35", "36", "37" ], - "x-ms-client-request-id": [ "9c3233c6-1f66-4470-bfa4-0ec502bc70e6", "9c3233c6-1f66-4470-bfa4-0ec502bc70e6", "9c3233c6-1f66-4470-bfa4-0ec502bc70e6", "9c3233c6-1f66-4470-bfa4-0ec502bc70e6", "9c3233c6-1f66-4470-bfa4-0ec502bc70e6", "9c3233c6-1f66-4470-bfa4-0ec502bc70e6", "9c3233c6-1f66-4470-bfa4-0ec502bc70e6", "9c3233c6-1f66-4470-bfa4-0ec502bc70e6", "9c3233c6-1f66-4470-bfa4-0ec502bc70e6", "9c3233c6-1f66-4470-bfa4-0ec502bc70e6" ], + "x-ms-unique-id": [ "27", "28", "29", "30", "31", "32", "33", "34", "35", "36" ], + "x-ms-client-request-id": [ "d9d69325-e18a-4074-ade8-7e169cb43dde", "d9d69325-e18a-4074-ade8-7e169cb43dde", "d9d69325-e18a-4074-ade8-7e169cb43dde", "d9d69325-e18a-4074-ade8-7e169cb43dde", "d9d69325-e18a-4074-ade8-7e169cb43dde", "d9d69325-e18a-4074-ade8-7e169cb43dde", "d9d69325-e18a-4074-ade8-7e169cb43dde", "d9d69325-e18a-4074-ade8-7e169cb43dde", "d9d69325-e18a-4074-ade8-7e169cb43dde", "d9d69325-e18a-4074-ade8-7e169cb43dde" ], "CommandName": [ "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace" ], "FullCommandName": [ "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1392,13 +1354,13 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ "eastus:71038a2b-1830-46b7-bb1b-a3ac6ea17736" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11967" ], - "x-ms-correlation-request-id": [ "1c5b6699-b12d-4826-9e4d-0d100fce320f" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T013919Z:1c5b6699-b12d-4826-9e4d-0d100fce320f" ], + "x-ms-request-id": [ "eastus:0679dacf-d517-49b1-991b-64c252b0c272" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11956" ], + "x-ms-correlation-request-id": [ "52c93232-affc-428a-a325-1dadbee49729" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084050Z:52c93232-affc-428a-a325-1dadbee49729" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:39:18 GMT" ] + "Date": [ "Tue, 15 Sep 2020 08:40:49 GMT" ] }, "ContentHeaders": { "Content-Length": [ "22" ], @@ -1408,14 +1370,14 @@ "Content": "{\"status\":\"Succeeded\"}" } }, - "New-AzDatabricksWorkspace+[NoContext]+CreateExpandedWithEncryption+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLTY5YmtnMiIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJENzlDV09KOjJEREFUQUJSSUNLUzozQTJEVEVTVDAxOjNBMkQ2OUJLRzIifQ?api-version=2018-04-01+19": { + "New-AzDatabricksWorkspace+[NoContext]+CreateExpandedWithEncryption+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLWg2b2tidCIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVDAxOjNBMkRINk9LQlQifQ?api-version=2018-04-01+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLTY5YmtnMiIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJENzlDV09KOjJEREFUQUJSSUNLUzozQTJEVEVTVDAxOjNBMkQ2OUJLRzIifQ?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdDAxLWg2b2tidCIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVDAxOjNBMkRINk9LQlQifQ?api-version=2018-04-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38" ], - "x-ms-client-request-id": [ "9c3233c6-1f66-4470-bfa4-0ec502bc70e6", "9c3233c6-1f66-4470-bfa4-0ec502bc70e6", "9c3233c6-1f66-4470-bfa4-0ec502bc70e6", "9c3233c6-1f66-4470-bfa4-0ec502bc70e6", "9c3233c6-1f66-4470-bfa4-0ec502bc70e6", "9c3233c6-1f66-4470-bfa4-0ec502bc70e6", "9c3233c6-1f66-4470-bfa4-0ec502bc70e6", "9c3233c6-1f66-4470-bfa4-0ec502bc70e6", "9c3233c6-1f66-4470-bfa4-0ec502bc70e6", "9c3233c6-1f66-4470-bfa4-0ec502bc70e6", "9c3233c6-1f66-4470-bfa4-0ec502bc70e6" ], + "x-ms-unique-id": [ "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37" ], + "x-ms-client-request-id": [ "d9d69325-e18a-4074-ade8-7e169cb43dde", "d9d69325-e18a-4074-ade8-7e169cb43dde", "d9d69325-e18a-4074-ade8-7e169cb43dde", "d9d69325-e18a-4074-ade8-7e169cb43dde", "d9d69325-e18a-4074-ade8-7e169cb43dde", "d9d69325-e18a-4074-ade8-7e169cb43dde", "d9d69325-e18a-4074-ade8-7e169cb43dde", "d9d69325-e18a-4074-ade8-7e169cb43dde", "d9d69325-e18a-4074-ade8-7e169cb43dde", "d9d69325-e18a-4074-ade8-7e169cb43dde", "d9d69325-e18a-4074-ade8-7e169cb43dde" ], "CommandName": [ "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace" ], "FullCommandName": [ "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1431,13 +1393,13 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ "eastus:b604d680-6976-4c82-845c-b3011fb451ac" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11966" ], - "x-ms-correlation-request-id": [ "00ae7c8f-076d-4361-a659-5a14bed972f3" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T013919Z:00ae7c8f-076d-4361-a659-5a14bed972f3" ], + "x-ms-request-id": [ "eastus:d3d67f14-263d-4a32-bdf4-0243d2f1f288" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11955" ], + "x-ms-correlation-request-id": [ "5cfa5e97-d257-40ec-a76a-71083ce06711" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084051Z:5cfa5e97-d257-40ec-a76a-71083ce06711" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:39:18 GMT" ] + "Date": [ "Tue, 15 Sep 2020 08:40:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "22" ], diff --git a/src/Databricks/test/Remove-AzDatabricksVNetPeering.Recording.json b/src/Databricks/test/Remove-AzDatabricksVNetPeering.Recording.json new file mode 100644 index 000000000000..0de4c11f62a5 --- /dev/null +++ b/src/Databricks/test/Remove-AzDatabricksVNetPeering.Recording.json @@ -0,0 +1,363 @@ +{ + "Remove-AzDatabricksVNetPeering+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspaceoitxq9/virtualNetworkPeerings/vnetpeering-qf6zgw?api-version=2018-04-01+1": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspaceoitxq9/virtualNetworkPeerings/vnetpeering-qf6zgw?api-version=2018-04-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1" ], + "x-ms-client-request-id": [ "a6211347-b2ec-45af-bfdf-fbb56a40a833" ], + "CommandName": [ "Remove-AzDatabricksVNetPeering" ], + "FullCommandName": [ "Remove-AzDatabricksVNetPeering_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Network/locations/eastus/operationResults/56ed4da8-4e0e-4bef-a2fd-d64dea20b052?api-version=2018-08-01" ], + "X-Frame-Options": [ "SAMEORIGIN" ], + "X-XSS-Protection": [ "1; mode=block" ], + "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "bc6f2e960f69443dbae62e4181fbb967" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], + "x-ms-correlation-request-id": [ "46c153d7-c5bc-4d42-82a1-b7596280dfb1" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200917T032825Z:46c153d7-c5bc-4d42-82a1-b7596280dfb1" ], + "Date": [ "Thu, 17 Sep 2020 03:28:25 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "3" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "\"\"\n" + } + }, + "Remove-AzDatabricksVNetPeering+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Network/locations/eastus/operationResults/56ed4da8-4e0e-4bef-a2fd-d64dea20b052?api-version=2018-08-01+2": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Network/locations/eastus/operationResults/56ed4da8-4e0e-4bef-a2fd-d64dea20b052?api-version=2018-08-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1", "2" ], + "x-ms-client-request-id": [ "a6211347-b2ec-45af-bfdf-fbb56a40a833", "a6211347-b2ec-45af-bfdf-fbb56a40a833" ], + "CommandName": [ "Remove-AzDatabricksVNetPeering", "Remove-AzDatabricksVNetPeering" ], + "FullCommandName": [ "Remove-AzDatabricksVNetPeering_Delete", "Remove-AzDatabricksVNetPeering_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 204, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Network/locations/eastus/operationResults/56ed4da8-4e0e-4bef-a2fd-d64dea20b052?api-version=2018-08-01" ], + "x-ms-request-id": [ "56ed4da8-4e0e-4bef-a2fd-d64dea20b052" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Network/locations/eastus/operations/56ed4da8-4e0e-4bef-a2fd-d64dea20b052?api-version=2018-08-01" ], + "x-ms-correlation-request-id": [ "dcd8d085-d786-42af-9ca9-2a8ede52fd7b" ], + "x-ms-arm-service-request-id": [ "958714b1-6111-43c3-a23a-953cf2ebf8b8" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200917T032856Z:5d07c9c3-3edb-4856-af0a-a1edf83cfefd" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 17 Sep 2020 03:28:56 GMT" ] + }, + "ContentHeaders": { + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": null + } + }, + "Remove-AzDatabricksVNetPeering+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Network/locations/eastus/operationResults/56ed4da8-4e0e-4bef-a2fd-d64dea20b052?api-version=2018-08-01+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Network/locations/eastus/operationResults/56ed4da8-4e0e-4bef-a2fd-d64dea20b052?api-version=2018-08-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1", "2", "3" ], + "x-ms-client-request-id": [ "a6211347-b2ec-45af-bfdf-fbb56a40a833", "a6211347-b2ec-45af-bfdf-fbb56a40a833", "a6211347-b2ec-45af-bfdf-fbb56a40a833" ], + "CommandName": [ "Remove-AzDatabricksVNetPeering", "Remove-AzDatabricksVNetPeering", "Remove-AzDatabricksVNetPeering" ], + "FullCommandName": [ "Remove-AzDatabricksVNetPeering_Delete", "Remove-AzDatabricksVNetPeering_Delete", "Remove-AzDatabricksVNetPeering_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 204, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Network/locations/eastus/operationResults/56ed4da8-4e0e-4bef-a2fd-d64dea20b052?api-version=2018-08-01" ], + "x-ms-request-id": [ "56ed4da8-4e0e-4bef-a2fd-d64dea20b052" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Network/locations/eastus/operations/56ed4da8-4e0e-4bef-a2fd-d64dea20b052?api-version=2018-08-01" ], + "x-ms-correlation-request-id": [ "dcd8d085-d786-42af-9ca9-2a8ede52fd7b" ], + "x-ms-arm-service-request-id": [ "958714b1-6111-43c3-a23a-953cf2ebf8b8" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200917T032856Z:5be42378-6b6c-4865-803b-62f359675b1d" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 17 Sep 2020 03:28:56 GMT" ] + }, + "ContentHeaders": { + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": null + } + }, + "Remove-AzDatabricksVNetPeering+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspaceoitxq9/virtualNetworkPeerings?api-version=2018-04-01+4": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspaceoitxq9/virtualNetworkPeerings?api-version=2018-04-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "4" ], + "x-ms-client-request-id": [ "a2a9e16c-6c37-499b-bef6-e18dffdf611b" ], + "CommandName": [ "Get-AzDatabricksVNetPeering" ], + "FullCommandName": [ "Get-AzDatabricksVNetPeering_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "X-Frame-Options": [ "SAMEORIGIN" ], + "X-XSS-Protection": [ "1; mode=block" ], + "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "1da19d1c965a4586bb9c5390f948e2e4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], + "x-ms-correlation-request-id": [ "bee0dc8b-6084-4bb7-97cd-89df28db8f17" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200917T032857Z:bee0dc8b-6084-4bb7-97cd-89df28db8f17" ], + "Date": [ "Thu, 17 Sep 2020 03:28:57 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "3" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{}\n" + } + }, + "Remove-AzDatabricksVNetPeering+[NoContext]+DeleteViaIdentity+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspaceoitxq9/virtualNetworkPeerings/vnetpeering-v0npx6?api-version=2018-04-01+1": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspaceoitxq9/virtualNetworkPeerings/vnetpeering-v0npx6?api-version=2018-04-01", + "Content": "{\r\n \"properties\": {\r\n \"remoteVirtualNetwork\": {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Network/virtualNetworks/databricks-vnet-hkgl9r\"\r\n }\r\n }\r\n}", + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "236" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "X-Frame-Options": [ "SAMEORIGIN" ], + "X-XSS-Protection": [ "1; mode=block" ], + "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "b8ed288ce7c141f285b7dbed32f92857" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], + "x-ms-correlation-request-id": [ "7e8e92ba-230c-4b2c-bec0-c87b23eae378" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200917T032858Z:7e8e92ba-230c-4b2c-bec0-c87b23eae378" ], + "Date": [ "Thu, 17 Sep 2020 03:28:58 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "926" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspaceoitxq9/virtualNetworkPeerings/vnetpeering-v0npx6\",\"name\":\"vnetpeering-v0npx6\",\"properties\":{\"allowVirtualNetworkAccess\":true,\"allowForwardedTraffic\":false,\"allowGatewayTransit\":false,\"useRemoteGateways\":false,\"remoteVirtualNetwork\":{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Network/virtualNetworks/databricks-vnet-hkgl9r\"},\"remoteAddressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"databricksVirtualNetwork\":{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspaceoitxq9-ej05na4c7risu/providers/Microsoft.Network/virtualNetworks/workers-vnet\"},\"databricksAddressSpace\":{\"addressPrefixes\":[\"10.139.0.0/16\"]},\"peeringState\":\"Initiated\",\"provisioningState\":\"Updating\"}}\n" + } + }, + "Remove-AzDatabricksVNetPeering+[NoContext]+DeleteViaIdentity+$DELETE+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspaceoitxq9/virtualNetworkPeerings/vnetpeering-v0npx6?api-version=2018-04-01+2": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspaceoitxq9/virtualNetworkPeerings/vnetpeering-v0npx6?api-version=2018-04-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "6" ], + "x-ms-client-request-id": [ "e8b3eece-7f2d-4133-a07b-051999c86f2e" ], + "CommandName": [ "Remove-AzDatabricksVNetPeering" ], + "FullCommandName": [ "Remove-AzDatabricksVNetPeering_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Network/locations/eastus/operationResults/18773afc-5e88-4491-814e-3ba920fa3b16?api-version=2018-08-01" ], + "X-Frame-Options": [ "SAMEORIGIN" ], + "X-XSS-Protection": [ "1; mode=block" ], + "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "7da2b323dd56421187456b4bdb347c17" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], + "x-ms-correlation-request-id": [ "6a4f5b9e-d9a0-484c-9890-6156a2c95e2b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200917T032859Z:6a4f5b9e-d9a0-484c-9890-6156a2c95e2b" ], + "Date": [ "Thu, 17 Sep 2020 03:28:59 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "3" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "\"\"\n" + } + }, + "Remove-AzDatabricksVNetPeering+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Network/locations/eastus/operationResults/18773afc-5e88-4491-814e-3ba920fa3b16?api-version=2018-08-01+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Network/locations/eastus/operationResults/18773afc-5e88-4491-814e-3ba920fa3b16?api-version=2018-08-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "6", "7" ], + "x-ms-client-request-id": [ "e8b3eece-7f2d-4133-a07b-051999c86f2e", "e8b3eece-7f2d-4133-a07b-051999c86f2e" ], + "CommandName": [ "Remove-AzDatabricksVNetPeering", "Remove-AzDatabricksVNetPeering" ], + "FullCommandName": [ "Remove-AzDatabricksVNetPeering_DeleteViaIdentity", "Remove-AzDatabricksVNetPeering_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 204, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Network/locations/eastus/operationResults/18773afc-5e88-4491-814e-3ba920fa3b16?api-version=2018-08-01" ], + "x-ms-request-id": [ "18773afc-5e88-4491-814e-3ba920fa3b16" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Network/locations/eastus/operations/18773afc-5e88-4491-814e-3ba920fa3b16?api-version=2018-08-01" ], + "x-ms-correlation-request-id": [ "95396375-f44e-4de5-a702-ef9c1bc01565" ], + "x-ms-arm-service-request-id": [ "8942e3a1-bd2b-4df8-a6b5-0374152ce75d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200917T032929Z:97757a6f-0d12-4ed4-be7c-314bc32d535f" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 17 Sep 2020 03:29:29 GMT" ] + }, + "ContentHeaders": { + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": null + } + }, + "Remove-AzDatabricksVNetPeering+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Network/locations/eastus/operationResults/18773afc-5e88-4491-814e-3ba920fa3b16?api-version=2018-08-01+4": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Network/locations/eastus/operationResults/18773afc-5e88-4491-814e-3ba920fa3b16?api-version=2018-08-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "6", "7", "8" ], + "x-ms-client-request-id": [ "e8b3eece-7f2d-4133-a07b-051999c86f2e", "e8b3eece-7f2d-4133-a07b-051999c86f2e", "e8b3eece-7f2d-4133-a07b-051999c86f2e" ], + "CommandName": [ "Remove-AzDatabricksVNetPeering", "Remove-AzDatabricksVNetPeering", "Remove-AzDatabricksVNetPeering" ], + "FullCommandName": [ "Remove-AzDatabricksVNetPeering_DeleteViaIdentity", "Remove-AzDatabricksVNetPeering_DeleteViaIdentity", "Remove-AzDatabricksVNetPeering_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 204, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Network/locations/eastus/operationResults/18773afc-5e88-4491-814e-3ba920fa3b16?api-version=2018-08-01" ], + "x-ms-request-id": [ "18773afc-5e88-4491-814e-3ba920fa3b16" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Network/locations/eastus/operations/18773afc-5e88-4491-814e-3ba920fa3b16?api-version=2018-08-01" ], + "x-ms-correlation-request-id": [ "95396375-f44e-4de5-a702-ef9c1bc01565" ], + "x-ms-arm-service-request-id": [ "8942e3a1-bd2b-4df8-a6b5-0374152ce75d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200917T032930Z:5896e5f4-226f-4692-b423-bc97ee91fab5" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 17 Sep 2020 03:29:29 GMT" ] + }, + "ContentHeaders": { + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": null + } + }, + "Remove-AzDatabricksVNetPeering+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspaceoitxq9/virtualNetworkPeerings?api-version=2018-04-01+5": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspaceoitxq9/virtualNetworkPeerings?api-version=2018-04-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "9" ], + "x-ms-client-request-id": [ "7639d1e7-e8c9-448e-8aba-8e455591d3aa" ], + "CommandName": [ "Get-AzDatabricksVNetPeering" ], + "FullCommandName": [ "Get-AzDatabricksVNetPeering_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "X-Frame-Options": [ "SAMEORIGIN" ], + "X-XSS-Protection": [ "1; mode=block" ], + "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "6439e58b294d4a3ca9f131ed667ff578" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], + "x-ms-correlation-request-id": [ "4b33537f-2e95-4f47-b714-ff5ed9f3ff0b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200917T032930Z:4b33537f-2e95-4f47-b714-ff5ed9f3ff0b" ], + "Date": [ "Thu, 17 Sep 2020 03:29:30 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "3" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{}\n" + } + } +} \ No newline at end of file diff --git a/src/Databricks/test/Remove-AzDatabricksVNetPeering.Tests.ps1 b/src/Databricks/test/Remove-AzDatabricksVNetPeering.Tests.ps1 new file mode 100644 index 000000000000..399521379d8c --- /dev/null +++ b/src/Databricks/test/Remove-AzDatabricksVNetPeering.Tests.ps1 @@ -0,0 +1,27 @@ +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' +} +. ($loadEnvPath) +$TestRecordingFile = Join-Path $PSScriptRoot 'Remove-AzDatabricksVNetPeering.Recording.json' +$currentPath = $PSScriptRoot +while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent +} +. ($mockingPath | Select-Object -First 1).FullName + +Describe 'Remove-AzDatabricksVNetPeering' { + It 'Delete' { + Remove-AzDatabricksVNetPeering -Name $env.vnetpeeringname01 -WorkspaceName $env.testWorkspace2 -ResourceGroupName $env.resourceGroup + $vnetPeeringList = Get-AzDatabricksVNetPeering -WorkspaceName $env.testWorkspace2 -ResourceGroupName $env.resourceGroup + $vnetPeeringList.Name | Should -Not -Contain $env.vnetpeeringname01 + } + + It 'DeleteViaIdentity' { + $ventPeering = New-AzDatabricksVNetPeering -Name $env.vnetpeeringname02 -WorkspaceName $env.testWorkspace2 -ResourceGroupName $env.resourceGroup -RemoteVirtualNetworkId $env.virtualNetwork + Remove-AzDatabricksVNetPeering -InputObject $ventPeering + $vnetPeeringList = Get-AzDatabricksVNetPeering -WorkspaceName $env.testWorkspace2 -ResourceGroupName $env.resourceGroup + $vnetPeeringList.Name | Should -Not -Contain $env.vnetpeeringname02 + } +} diff --git a/src/Databricks/test/Remove-AzDatabricksWorkspace.Recording.json b/src/Databricks/test/Remove-AzDatabricksWorkspace.Recording.json index 9ef490667d23..980b49bcb425 100644 --- a/src/Databricks/test/Remove-AzDatabricksWorkspace.Recording.json +++ b/src/Databricks/test/Remove-AzDatabricksWorkspace.Recording.json @@ -1,14 +1,14 @@ { - "Remove-AzDatabricksWorkspace+[NoContext]+Delete+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/databricks-test-d9nb7u?api-version=2018-04-01+1": { + "Remove-AzDatabricksWorkspace+[NoContext]+Delete+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/databricks-tests9xt4o?api-version=2018-04-01+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/databricks-test-d9nb7u?api-version=2018-04-01", - "Content": "{\n \"location\": \"eastus\",\n \"properties\": {\n \"managedResourceGroupId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-databricks-test-d9nb7u-7pmc2ax809oeu\"\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/databricks-tests9xt4o?api-version=2018-04-01", + "Content": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"managedResourceGroupId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-databricks-tests9xt4o-1kbqt29on0whs\"\r\n }\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "199" ] + "Content-Length": [ "203" ] } }, "Response": { @@ -17,31 +17,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZVByb3Zpc2lvbmluZ0pvYjoyRFJHQToyRERBVEFCUklDS1M6M0EyRFJHOjNBMkQ3OUNXT0o6MkREQVRBQlJJQ0tTOjNBMkRURVNUOjNBMkREOU5CN1UifQ?api-version=2018-04-01" ], - "x-ms-request-id": [ "eastus:31248a80-933e-4005-af97-c9e26e92b289" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], - "x-ms-correlation-request-id": [ "fbcfbb89-3b76-4b72-9886-ac49cd9ff1f7" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T014336Z:fbcfbb89-3b76-4b72-9886-ac49cd9ff1f7" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHM5eHQ0byIsImpvYklkIjoiQXBwbGlhbmNlUHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1RTOVhUNE8ifQ?api-version=2018-04-01" ], + "x-ms-request-id": [ "eastus:97777fae-6e72-4adb-a2c6-f89adfe6ec4d" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], + "x-ms-correlation-request-id": [ "5e05c057-1f01-4b41-ace3-980949b5208d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092847Z:5e05c057-1f01-4b41-ace3-980949b5208d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:43:36 GMT" ] + "Date": [ "Tue, 15 Sep 2020 09:28:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "906" ], + "Content-Length": [ "903" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-databricks-test-d9nb7u-7pmc2ax809oeu\",\"provisioningState\":\"Accepted\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"createdDateTime\":\"2020-07-29T01:43:35.4341693Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/databricks-test-d9nb7u\",\"name\":\"databricks-test-d9nb7u\",\"type\":\"Microsoft.Databricks/workspaces\",\"location\":\"eastus\"}" + "Content": "{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-databricks-tests9xt4o-1kbqt29on0whs\",\"provisioningState\":\"Accepted\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"createdDateTime\":\"2020-09-15T09:28:45.4729699Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/databricks-tests9xt4o\",\"name\":\"databricks-tests9xt4o\",\"type\":\"Microsoft.Databricks/workspaces\",\"location\":\"eastus\"}" } }, - "Remove-AzDatabricksWorkspace+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZVByb3Zpc2lvbmluZ0pvYjoyRFJHQToyRERBVEFCUklDS1M6M0EyRFJHOjNBMkQ3OUNXT0o6MkREQVRBQlJJQ0tTOjNBMkRURVNUOjNBMkREOU5CN1UifQ?api-version=2018-04-01+2": { + "Remove-AzDatabricksWorkspace+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHM5eHQ0byIsImpvYklkIjoiQXBwbGlhbmNlUHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1RTOVhUNE8ifQ?api-version=2018-04-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZVByb3Zpc2lvbmluZ0pvYjoyRFJHQToyRERBVEFCUklDS1M6M0EyRFJHOjNBMkQ3OUNXT0o6MkREQVRBQlJJQ0tTOjNBMkRURVNUOjNBMkREOU5CN1UifQ?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHM5eHQ0byIsImpvYklkIjoiQXBwbGlhbmNlUHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1RTOVhUNE8ifQ?api-version=2018-04-01", "Content": null, "Headers": { "x-ms-unique-id": [ "1", "2" ], - "x-ms-client-request-id": [ "ec2ce451-82b8-4f92-aebe-30da77e4fcb0", "ec2ce451-82b8-4f92-aebe-30da77e4fcb0" ], + "x-ms-client-request-id": [ "797660e6-c361-4d2c-8f7d-21299c3e71ef", "797660e6-c361-4d2c-8f7d-21299c3e71ef" ], "CommandName": [ "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace" ], "FullCommandName": [ "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -56,13 +56,13 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eastus:b3d167dd-93eb-4d9d-945e-373985b8fe42" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11965" ], - "x-ms-correlation-request-id": [ "5929775a-06a3-477c-9a75-36732978bd60" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T014352Z:5929775a-06a3-477c-9a75-36732978bd60" ], + "x-ms-request-id": [ "eastus:85434180-bc3c-4523-bf07-a773ca55fcd1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], + "x-ms-correlation-request-id": [ "ee607c8c-80a3-40fa-bc7b-d2eda017051f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092903Z:ee607c8c-80a3-40fa-bc7b-d2eda017051f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:43:51 GMT" ] + "Date": [ "Tue, 15 Sep 2020 09:29:02 GMT" ] }, "ContentHeaders": { "Content-Length": [ "21" ], @@ -72,14 +72,14 @@ "Content": "{\"status\":\"Accepted\"}" } }, - "Remove-AzDatabricksWorkspace+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZVByb3Zpc2lvbmluZ0pvYjoyRFJHQToyRERBVEFCUklDS1M6M0EyRFJHOjNBMkQ3OUNXT0o6MkREQVRBQlJJQ0tTOjNBMkRURVNUOjNBMkREOU5CN1UifQ?api-version=2018-04-01+3": { + "Remove-AzDatabricksWorkspace+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHM5eHQ0byIsImpvYklkIjoiQXBwbGlhbmNlUHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1RTOVhUNE8ifQ?api-version=2018-04-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZVByb3Zpc2lvbmluZ0pvYjoyRFJHQToyRERBVEFCUklDS1M6M0EyRFJHOjNBMkQ3OUNXT0o6MkREQVRBQlJJQ0tTOjNBMkRURVNUOjNBMkREOU5CN1UifQ?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHM5eHQ0byIsImpvYklkIjoiQXBwbGlhbmNlUHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1RTOVhUNE8ifQ?api-version=2018-04-01", "Content": null, "Headers": { "x-ms-unique-id": [ "1", "2", "3" ], - "x-ms-client-request-id": [ "ec2ce451-82b8-4f92-aebe-30da77e4fcb0", "ec2ce451-82b8-4f92-aebe-30da77e4fcb0", "ec2ce451-82b8-4f92-aebe-30da77e4fcb0" ], + "x-ms-client-request-id": [ "797660e6-c361-4d2c-8f7d-21299c3e71ef", "797660e6-c361-4d2c-8f7d-21299c3e71ef", "797660e6-c361-4d2c-8f7d-21299c3e71ef" ], "CommandName": [ "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace" ], "FullCommandName": [ "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -94,13 +94,13 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eastus:f729aa03-d7d7-4e08-a0a5-c993c78e28c0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11964" ], - "x-ms-correlation-request-id": [ "766ff3f4-6b44-4ca8-9667-bb4f31f46d25" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T014422Z:766ff3f4-6b44-4ca8-9667-bb4f31f46d25" ], + "x-ms-request-id": [ "eastus:a62154c5-f781-4c27-bd67-4845329d4a48" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], + "x-ms-correlation-request-id": [ "3252c701-505e-4af4-9cc8-d2678e56c069" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092933Z:3252c701-505e-4af4-9cc8-d2678e56c069" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:44:22 GMT" ] + "Date": [ "Tue, 15 Sep 2020 09:29:32 GMT" ] }, "ContentHeaders": { "Content-Length": [ "21" ], @@ -110,14 +110,14 @@ "Content": "{\"status\":\"Accepted\"}" } }, - "Remove-AzDatabricksWorkspace+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZVByb3Zpc2lvbmluZ0pvYjoyRFJHQToyRERBVEFCUklDS1M6M0EyRFJHOjNBMkQ3OUNXT0o6MkREQVRBQlJJQ0tTOjNBMkRURVNUOjNBMkREOU5CN1UifQ?api-version=2018-04-01+4": { + "Remove-AzDatabricksWorkspace+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHM5eHQ0byIsImpvYklkIjoiQXBwbGlhbmNlUHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1RTOVhUNE8ifQ?api-version=2018-04-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZVByb3Zpc2lvbmluZ0pvYjoyRFJHQToyRERBVEFCUklDS1M6M0EyRFJHOjNBMkQ3OUNXT0o6MkREQVRBQlJJQ0tTOjNBMkRURVNUOjNBMkREOU5CN1UifQ?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHM5eHQ0byIsImpvYklkIjoiQXBwbGlhbmNlUHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1RTOVhUNE8ifQ?api-version=2018-04-01", "Content": null, "Headers": { "x-ms-unique-id": [ "1", "2", "3", "4" ], - "x-ms-client-request-id": [ "ec2ce451-82b8-4f92-aebe-30da77e4fcb0", "ec2ce451-82b8-4f92-aebe-30da77e4fcb0", "ec2ce451-82b8-4f92-aebe-30da77e4fcb0", "ec2ce451-82b8-4f92-aebe-30da77e4fcb0" ], + "x-ms-client-request-id": [ "797660e6-c361-4d2c-8f7d-21299c3e71ef", "797660e6-c361-4d2c-8f7d-21299c3e71ef", "797660e6-c361-4d2c-8f7d-21299c3e71ef", "797660e6-c361-4d2c-8f7d-21299c3e71ef" ], "CommandName": [ "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace" ], "FullCommandName": [ "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -132,13 +132,13 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eastus:2fb1a901-ecf8-49c1-a3c7-0db76885f726" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11963" ], - "x-ms-correlation-request-id": [ "3ee81fe7-fced-4dca-8ce5-609cf592523f" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T014453Z:3ee81fe7-fced-4dca-8ce5-609cf592523f" ], + "x-ms-request-id": [ "eastus:19e4e6c7-9bf9-40af-90ef-76c64a4ace32" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], + "x-ms-correlation-request-id": [ "ee76e185-7121-44b8-b38d-339c5c7f783e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093004Z:ee76e185-7121-44b8-b38d-339c5c7f783e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:44:52 GMT" ] + "Date": [ "Tue, 15 Sep 2020 09:30:04 GMT" ] }, "ContentHeaders": { "Content-Length": [ "21" ], @@ -148,14 +148,14 @@ "Content": "{\"status\":\"Accepted\"}" } }, - "Remove-AzDatabricksWorkspace+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZVByb3Zpc2lvbmluZ0pvYjoyRFJHQToyRERBVEFCUklDS1M6M0EyRFJHOjNBMkQ3OUNXT0o6MkREQVRBQlJJQ0tTOjNBMkRURVNUOjNBMkREOU5CN1UifQ?api-version=2018-04-01+5": { + "Remove-AzDatabricksWorkspace+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHM5eHQ0byIsImpvYklkIjoiQXBwbGlhbmNlUHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1RTOVhUNE8ifQ?api-version=2018-04-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZVByb3Zpc2lvbmluZ0pvYjoyRFJHQToyRERBVEFCUklDS1M6M0EyRFJHOjNBMkQ3OUNXT0o6MkREQVRBQlJJQ0tTOjNBMkRURVNUOjNBMkREOU5CN1UifQ?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHM5eHQ0byIsImpvYklkIjoiQXBwbGlhbmNlUHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1RTOVhUNE8ifQ?api-version=2018-04-01", "Content": null, "Headers": { "x-ms-unique-id": [ "1", "2", "3", "4", "5" ], - "x-ms-client-request-id": [ "ec2ce451-82b8-4f92-aebe-30da77e4fcb0", "ec2ce451-82b8-4f92-aebe-30da77e4fcb0", "ec2ce451-82b8-4f92-aebe-30da77e4fcb0", "ec2ce451-82b8-4f92-aebe-30da77e4fcb0", "ec2ce451-82b8-4f92-aebe-30da77e4fcb0" ], + "x-ms-client-request-id": [ "797660e6-c361-4d2c-8f7d-21299c3e71ef", "797660e6-c361-4d2c-8f7d-21299c3e71ef", "797660e6-c361-4d2c-8f7d-21299c3e71ef", "797660e6-c361-4d2c-8f7d-21299c3e71ef", "797660e6-c361-4d2c-8f7d-21299c3e71ef" ], "CommandName": [ "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace" ], "FullCommandName": [ "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -170,13 +170,13 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eastus:f74e96f5-e5a3-4e79-b582-4663619f8fd9" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11962" ], - "x-ms-correlation-request-id": [ "97dd29f6-a831-40eb-be04-33300d07fffc" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T014523Z:97dd29f6-a831-40eb-be04-33300d07fffc" ], + "x-ms-request-id": [ "eastus:948a659d-e5b4-4c55-a012-65764374099e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], + "x-ms-correlation-request-id": [ "c2dbd3b1-2cd1-42b4-af92-c151cdcbc98d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093034Z:c2dbd3b1-2cd1-42b4-af92-c151cdcbc98d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:45:23 GMT" ] + "Date": [ "Tue, 15 Sep 2020 09:30:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "21" ], @@ -186,14 +186,14 @@ "Content": "{\"status\":\"Accepted\"}" } }, - "Remove-AzDatabricksWorkspace+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZVByb3Zpc2lvbmluZ0pvYjoyRFJHQToyRERBVEFCUklDS1M6M0EyRFJHOjNBMkQ3OUNXT0o6MkREQVRBQlJJQ0tTOjNBMkRURVNUOjNBMkREOU5CN1UifQ?api-version=2018-04-01+6": { + "Remove-AzDatabricksWorkspace+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHM5eHQ0byIsImpvYklkIjoiQXBwbGlhbmNlUHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1RTOVhUNE8ifQ?api-version=2018-04-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZVByb3Zpc2lvbmluZ0pvYjoyRFJHQToyRERBVEFCUklDS1M6M0EyRFJHOjNBMkQ3OUNXT0o6MkREQVRBQlJJQ0tTOjNBMkRURVNUOjNBMkREOU5CN1UifQ?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHM5eHQ0byIsImpvYklkIjoiQXBwbGlhbmNlUHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1RTOVhUNE8ifQ?api-version=2018-04-01", "Content": null, "Headers": { "x-ms-unique-id": [ "1", "2", "3", "4", "5", "6" ], - "x-ms-client-request-id": [ "ec2ce451-82b8-4f92-aebe-30da77e4fcb0", "ec2ce451-82b8-4f92-aebe-30da77e4fcb0", "ec2ce451-82b8-4f92-aebe-30da77e4fcb0", "ec2ce451-82b8-4f92-aebe-30da77e4fcb0", "ec2ce451-82b8-4f92-aebe-30da77e4fcb0", "ec2ce451-82b8-4f92-aebe-30da77e4fcb0" ], + "x-ms-client-request-id": [ "797660e6-c361-4d2c-8f7d-21299c3e71ef", "797660e6-c361-4d2c-8f7d-21299c3e71ef", "797660e6-c361-4d2c-8f7d-21299c3e71ef", "797660e6-c361-4d2c-8f7d-21299c3e71ef", "797660e6-c361-4d2c-8f7d-21299c3e71ef", "797660e6-c361-4d2c-8f7d-21299c3e71ef" ], "CommandName": [ "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace" ], "FullCommandName": [ "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -209,13 +209,13 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ "eastus:8491e8ba-5371-4505-a1e8-090d0b70d7b3" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11961" ], - "x-ms-correlation-request-id": [ "1f04811e-dccb-44e5-ad76-484bcde34a76" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T014553Z:1f04811e-dccb-44e5-ad76-484bcde34a76" ], + "x-ms-request-id": [ "eastus:b879f754-18d2-4143-bcce-c02883ad2c59" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], + "x-ms-correlation-request-id": [ "421f1ff6-8590-4a33-8d11-8f127def8cb5" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093105Z:421f1ff6-8590-4a33-8d11-8f127def8cb5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:45:53 GMT" ] + "Date": [ "Tue, 15 Sep 2020 09:31:04 GMT" ] }, "ContentHeaders": { "Content-Length": [ "22" ], @@ -225,14 +225,14 @@ "Content": "{\"status\":\"Succeeded\"}" } }, - "Remove-AzDatabricksWorkspace+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/databricks-test-d9nb7u?api-version=2018-04-01+7": { + "Remove-AzDatabricksWorkspace+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/databricks-tests9xt4o?api-version=2018-04-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/databricks-test-d9nb7u?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/databricks-tests9xt4o?api-version=2018-04-01", "Content": null, "Headers": { "x-ms-unique-id": [ "1", "2", "3", "4", "5", "6", "7" ], - "x-ms-client-request-id": [ "ec2ce451-82b8-4f92-aebe-30da77e4fcb0", "ec2ce451-82b8-4f92-aebe-30da77e4fcb0", "ec2ce451-82b8-4f92-aebe-30da77e4fcb0", "ec2ce451-82b8-4f92-aebe-30da77e4fcb0", "ec2ce451-82b8-4f92-aebe-30da77e4fcb0", "ec2ce451-82b8-4f92-aebe-30da77e4fcb0", "ec2ce451-82b8-4f92-aebe-30da77e4fcb0" ], + "x-ms-client-request-id": [ "797660e6-c361-4d2c-8f7d-21299c3e71ef", "797660e6-c361-4d2c-8f7d-21299c3e71ef", "797660e6-c361-4d2c-8f7d-21299c3e71ef", "797660e6-c361-4d2c-8f7d-21299c3e71ef", "797660e6-c361-4d2c-8f7d-21299c3e71ef", "797660e6-c361-4d2c-8f7d-21299c3e71ef", "797660e6-c361-4d2c-8f7d-21299c3e71ef" ], "CommandName": [ "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace" ], "FullCommandName": [ "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -248,30 +248,30 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ "eastus:29e1bcb5-56f5-4142-91de-85c07794ed97" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11960" ], - "x-ms-correlation-request-id": [ "4410ae50-577f-4eb2-b37c-8a779cd1734c" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T014554Z:4410ae50-577f-4eb2-b37c-8a779cd1734c" ], + "x-ms-request-id": [ "eastus:9313cdbc-9b12-4338-a373-3574ce0f30a7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], + "x-ms-correlation-request-id": [ "019930cf-3663-46de-8567-7447685e9c99" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093105Z:019930cf-3663-46de-8567-7447685e9c99" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:45:53 GMT" ] + "Date": [ "Tue, 15 Sep 2020 09:31:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1915" ], + "Content-Length": [ "1912" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-databricks-test-d9nb7u-7pmc2ax809oeu\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":false},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelayoas4zcdjwkyya\"},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstorageoas4zcdjwkyya\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"4409863248405340\",\"workspaceUrl\":\"adb-4409863248405340.0.azuredatabricks.net\",\"createdDateTime\":\"2020-07-29T01:43:35.4341693Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/databricks-test-d9nb7u\",\"name\":\"databricks-test-d9nb7u\",\"type\":\"Microsoft.Databricks/workspaces\",\"location\":\"eastus\"}" + "Content": "{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-databricks-tests9xt4o-1kbqt29on0whs\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":false},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelayashsurqtw6hhs\"},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstorageashsurqtw6hhs\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"8920510290208466\",\"workspaceUrl\":\"adb-8920510290208466.6.azuredatabricks.net\",\"createdDateTime\":\"2020-09-15T09:28:45.4729699Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/databricks-tests9xt4o\",\"name\":\"databricks-tests9xt4o\",\"type\":\"Microsoft.Databricks/workspaces\",\"location\":\"eastus\"}" } }, - "Remove-AzDatabricksWorkspace+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/databricks-test-d9nb7u?api-version=2018-04-01+8": { + "Remove-AzDatabricksWorkspace+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/databricks-tests9xt4o?api-version=2018-04-01+8": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/databricks-test-d9nb7u?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/databricks-tests9xt4o?api-version=2018-04-01", "Content": null, "Headers": { "x-ms-unique-id": [ "8" ], - "x-ms-client-request-id": [ "fdfb9f0d-39e2-4900-8968-aad446d18209" ], + "x-ms-client-request-id": [ "2641f573-a51b-4b02-acc0-e83949f1b8f8" ], "CommandName": [ "Remove-AzDatabricksWorkspace" ], "FullCommandName": [ "Remove-AzDatabricksWorkspace_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -286,15 +286,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREQ5TkI3VSJ9?api-version=2018-04-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHM5eHQ0byIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVFM5WFQ0TyJ9?api-version=2018-04-01" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "eastus:70cd8bd6-2f3f-4328-99e6-4881253bf954" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], - "x-ms-correlation-request-id": [ "a058dd5d-26b6-48b3-88bb-e2956fb21295" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T014555Z:a058dd5d-26b6-48b3-88bb-e2956fb21295" ], + "x-ms-request-id": [ "eastus:d1a06759-9cca-4dcd-b94b-e6d11a7d2cd4" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], + "x-ms-correlation-request-id": [ "3ea484d7-e3c0-4f68-826a-f5096006ce65" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093106Z:3ea484d7-e3c0-4f68-826a-f5096006ce65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:45:54 GMT" ] + "Date": [ "Tue, 15 Sep 2020 09:31:05 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -303,14 +303,14 @@ "Content": null } }, - "Remove-AzDatabricksWorkspace+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREQ5TkI3VSJ9?api-version=2018-04-01+9": { + "Remove-AzDatabricksWorkspace+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHM5eHQ0byIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVFM5WFQ0TyJ9?api-version=2018-04-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREQ5TkI3VSJ9?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHM5eHQ0byIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVFM5WFQ0TyJ9?api-version=2018-04-01", "Content": null, "Headers": { "x-ms-unique-id": [ "8", "9" ], - "x-ms-client-request-id": [ "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209" ], + "x-ms-client-request-id": [ "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8" ], "CommandName": [ "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace" ], "FullCommandName": [ "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -325,13 +325,13 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eastus:92ff1e1d-703a-4e79-8315-c60143738ece" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11959" ], - "x-ms-correlation-request-id": [ "50a293a8-2088-4495-898a-4175bb142df5" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T014610Z:50a293a8-2088-4495-898a-4175bb142df5" ], + "x-ms-request-id": [ "eastus:8cf972c0-a8f3-48ef-bc74-00d76f91e422" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], + "x-ms-correlation-request-id": [ "2f411c64-03a3-4f8b-959f-92610562be12" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093122Z:2f411c64-03a3-4f8b-959f-92610562be12" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:46:10 GMT" ] + "Date": [ "Tue, 15 Sep 2020 09:31:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "21" ], @@ -341,14 +341,14 @@ "Content": "{\"status\":\"Accepted\"}" } }, - "Remove-AzDatabricksWorkspace+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREQ5TkI3VSJ9?api-version=2018-04-01+10": { + "Remove-AzDatabricksWorkspace+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHM5eHQ0byIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVFM5WFQ0TyJ9?api-version=2018-04-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREQ5TkI3VSJ9?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHM5eHQ0byIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVFM5WFQ0TyJ9?api-version=2018-04-01", "Content": null, "Headers": { "x-ms-unique-id": [ "8", "9", "10" ], - "x-ms-client-request-id": [ "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209" ], + "x-ms-client-request-id": [ "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8" ], "CommandName": [ "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace" ], "FullCommandName": [ "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -363,13 +363,13 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eastus:2c60a17b-49a8-4454-9087-3836e3e50f52" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11958" ], - "x-ms-correlation-request-id": [ "092f1898-6fa7-4b6c-ab24-eacb8b775a38" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T014641Z:092f1898-6fa7-4b6c-ab24-eacb8b775a38" ], + "x-ms-request-id": [ "eastus:14ebc65c-3dae-4157-9692-758fbbac077a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], + "x-ms-correlation-request-id": [ "7dd3ed2e-30bc-4ae1-8a1e-6e9935530418" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093152Z:7dd3ed2e-30bc-4ae1-8a1e-6e9935530418" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:46:40 GMT" ] + "Date": [ "Tue, 15 Sep 2020 09:31:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "21" ], @@ -379,14 +379,14 @@ "Content": "{\"status\":\"Accepted\"}" } }, - "Remove-AzDatabricksWorkspace+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREQ5TkI3VSJ9?api-version=2018-04-01+11": { + "Remove-AzDatabricksWorkspace+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHM5eHQ0byIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVFM5WFQ0TyJ9?api-version=2018-04-01+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREQ5TkI3VSJ9?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHM5eHQ0byIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVFM5WFQ0TyJ9?api-version=2018-04-01", "Content": null, "Headers": { "x-ms-unique-id": [ "8", "9", "10", "11" ], - "x-ms-client-request-id": [ "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209" ], + "x-ms-client-request-id": [ "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8" ], "CommandName": [ "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace" ], "FullCommandName": [ "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -401,13 +401,13 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eastus:6d386c5a-44c0-4e19-b65f-4a4eceadbe3e" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11957" ], - "x-ms-correlation-request-id": [ "655d723e-6009-4099-87f4-3abd0dea053b" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T014711Z:655d723e-6009-4099-87f4-3abd0dea053b" ], + "x-ms-request-id": [ "eastus:44c3e652-5843-4cef-9861-f3f74481f705" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], + "x-ms-correlation-request-id": [ "9ddc4e40-c09c-408c-92bf-6927ceed754d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093222Z:9ddc4e40-c09c-408c-92bf-6927ceed754d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:47:11 GMT" ] + "Date": [ "Tue, 15 Sep 2020 09:32:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "21" ], @@ -417,14 +417,14 @@ "Content": "{\"status\":\"Accepted\"}" } }, - "Remove-AzDatabricksWorkspace+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREQ5TkI3VSJ9?api-version=2018-04-01+12": { + "Remove-AzDatabricksWorkspace+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHM5eHQ0byIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVFM5WFQ0TyJ9?api-version=2018-04-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREQ5TkI3VSJ9?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHM5eHQ0byIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVFM5WFQ0TyJ9?api-version=2018-04-01", "Content": null, "Headers": { "x-ms-unique-id": [ "8", "9", "10", "11", "12" ], - "x-ms-client-request-id": [ "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209" ], + "x-ms-client-request-id": [ "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8" ], "CommandName": [ "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace" ], "FullCommandName": [ "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -439,13 +439,13 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eastus:a93011e0-c0f4-4d8b-862c-026d45095271" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11956" ], - "x-ms-correlation-request-id": [ "6b82a199-3af3-4d1a-b0b2-2e963276d157" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T014741Z:6b82a199-3af3-4d1a-b0b2-2e963276d157" ], + "x-ms-request-id": [ "eastus:2389a1ff-ab6f-4848-956d-5a2c275f3ef0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11989" ], + "x-ms-correlation-request-id": [ "6e529ce4-fcea-4ffe-be62-7be15d2f8135" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093253Z:6e529ce4-fcea-4ffe-be62-7be15d2f8135" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:47:41 GMT" ] + "Date": [ "Tue, 15 Sep 2020 09:32:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "21" ], @@ -455,14 +455,14 @@ "Content": "{\"status\":\"Accepted\"}" } }, - "Remove-AzDatabricksWorkspace+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREQ5TkI3VSJ9?api-version=2018-04-01+13": { + "Remove-AzDatabricksWorkspace+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHM5eHQ0byIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVFM5WFQ0TyJ9?api-version=2018-04-01+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREQ5TkI3VSJ9?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHM5eHQ0byIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVFM5WFQ0TyJ9?api-version=2018-04-01", "Content": null, "Headers": { "x-ms-unique-id": [ "8", "9", "10", "11", "12", "13" ], - "x-ms-client-request-id": [ "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209" ], + "x-ms-client-request-id": [ "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8" ], "CommandName": [ "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace" ], "FullCommandName": [ "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -477,13 +477,13 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eastus:5aceb3bd-8b1a-4b92-bc84-3163a5457d43" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11955" ], - "x-ms-correlation-request-id": [ "7e2dba48-4b49-4c7a-b5a6-faf4d31b53bc" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T014812Z:7e2dba48-4b49-4c7a-b5a6-faf4d31b53bc" ], + "x-ms-request-id": [ "eastus:6b5dadeb-1718-4a49-9cde-48d950cfe73f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11988" ], + "x-ms-correlation-request-id": [ "5bad0854-ae51-4da9-990e-e7fd1064d624" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093323Z:5bad0854-ae51-4da9-990e-e7fd1064d624" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:48:11 GMT" ] + "Date": [ "Tue, 15 Sep 2020 09:33:23 GMT" ] }, "ContentHeaders": { "Content-Length": [ "21" ], @@ -493,14 +493,14 @@ "Content": "{\"status\":\"Accepted\"}" } }, - "Remove-AzDatabricksWorkspace+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREQ5TkI3VSJ9?api-version=2018-04-01+14": { + "Remove-AzDatabricksWorkspace+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHM5eHQ0byIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVFM5WFQ0TyJ9?api-version=2018-04-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREQ5TkI3VSJ9?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHM5eHQ0byIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVFM5WFQ0TyJ9?api-version=2018-04-01", "Content": null, "Headers": { "x-ms-unique-id": [ "8", "9", "10", "11", "12", "13", "14" ], - "x-ms-client-request-id": [ "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209" ], + "x-ms-client-request-id": [ "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8" ], "CommandName": [ "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace" ], "FullCommandName": [ "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -515,13 +515,13 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eastus:04dbcfa0-2f85-4d75-bbb8-8435b8e91adc" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11954" ], - "x-ms-correlation-request-id": [ "c0cb998d-3b8f-4462-8bdb-0dc043e835ea" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T014842Z:c0cb998d-3b8f-4462-8bdb-0dc043e835ea" ], + "x-ms-request-id": [ "eastus:f8f7dfd9-9297-4fe7-b906-30b8af3333e8" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11987" ], + "x-ms-correlation-request-id": [ "26d93420-28fb-4b6b-9dd8-f7107a51bed6" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093354Z:26d93420-28fb-4b6b-9dd8-f7107a51bed6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:48:41 GMT" ] + "Date": [ "Tue, 15 Sep 2020 09:33:53 GMT" ] }, "ContentHeaders": { "Content-Length": [ "21" ], @@ -531,14 +531,14 @@ "Content": "{\"status\":\"Accepted\"}" } }, - "Remove-AzDatabricksWorkspace+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREQ5TkI3VSJ9?api-version=2018-04-01+15": { + "Remove-AzDatabricksWorkspace+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHM5eHQ0byIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVFM5WFQ0TyJ9?api-version=2018-04-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREQ5TkI3VSJ9?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHM5eHQ0byIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVFM5WFQ0TyJ9?api-version=2018-04-01", "Content": null, "Headers": { "x-ms-unique-id": [ "8", "9", "10", "11", "12", "13", "14", "15" ], - "x-ms-client-request-id": [ "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209" ], + "x-ms-client-request-id": [ "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8" ], "CommandName": [ "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace" ], "FullCommandName": [ "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -553,13 +553,13 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eastus:3f82872c-5b13-42b4-a324-ef64bf047491" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11953" ], - "x-ms-correlation-request-id": [ "b2bb09eb-fb28-4fd1-a861-7eb286571625" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T014912Z:b2bb09eb-fb28-4fd1-a861-7eb286571625" ], + "x-ms-request-id": [ "eastus:b04e3fd2-e6cd-4bee-88d0-99c1bdae3107" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11986" ], + "x-ms-correlation-request-id": [ "dca13e0c-3b7a-4e48-b7da-ca5bfa829d16" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093424Z:dca13e0c-3b7a-4e48-b7da-ca5bfa829d16" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:49:12 GMT" ] + "Date": [ "Tue, 15 Sep 2020 09:34:23 GMT" ] }, "ContentHeaders": { "Content-Length": [ "21" ], @@ -569,14 +569,14 @@ "Content": "{\"status\":\"Accepted\"}" } }, - "Remove-AzDatabricksWorkspace+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREQ5TkI3VSJ9?api-version=2018-04-01+16": { + "Remove-AzDatabricksWorkspace+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHM5eHQ0byIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVFM5WFQ0TyJ9?api-version=2018-04-01+16": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREQ5TkI3VSJ9?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHM5eHQ0byIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVFM5WFQ0TyJ9?api-version=2018-04-01", "Content": null, "Headers": { "x-ms-unique-id": [ "8", "9", "10", "11", "12", "13", "14", "15", "16" ], - "x-ms-client-request-id": [ "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209" ], + "x-ms-client-request-id": [ "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8" ], "CommandName": [ "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace" ], "FullCommandName": [ "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -591,13 +591,13 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eastus:49619616-a98d-4bf1-b955-2682192123e5" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11952" ], - "x-ms-correlation-request-id": [ "d1508dcf-8ce1-4209-bb3f-103adc49f2bd" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T014943Z:d1508dcf-8ce1-4209-bb3f-103adc49f2bd" ], + "x-ms-request-id": [ "eastus:845b006d-b5e0-4b64-aea7-c13742d242d0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11985" ], + "x-ms-correlation-request-id": [ "49d3a4f0-ec45-418e-a716-ba4ce644ea37" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093454Z:49d3a4f0-ec45-418e-a716-ba4ce644ea37" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:49:42 GMT" ] + "Date": [ "Tue, 15 Sep 2020 09:34:54 GMT" ] }, "ContentHeaders": { "Content-Length": [ "21" ], @@ -607,14 +607,14 @@ "Content": "{\"status\":\"Accepted\"}" } }, - "Remove-AzDatabricksWorkspace+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREQ5TkI3VSJ9?api-version=2018-04-01+17": { + "Remove-AzDatabricksWorkspace+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHM5eHQ0byIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVFM5WFQ0TyJ9?api-version=2018-04-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREQ5TkI3VSJ9?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHM5eHQ0byIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVFM5WFQ0TyJ9?api-version=2018-04-01", "Content": null, "Headers": { "x-ms-unique-id": [ "8", "9", "10", "11", "12", "13", "14", "15", "16", "17" ], - "x-ms-client-request-id": [ "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209" ], + "x-ms-client-request-id": [ "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8" ], "CommandName": [ "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace" ], "FullCommandName": [ "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -629,13 +629,13 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eastus:6db1bc9a-7f38-4241-bf38-44d24f65a55f" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11951" ], - "x-ms-correlation-request-id": [ "86fa2853-be9b-4406-b719-51385f56127d" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T015014Z:86fa2853-be9b-4406-b719-51385f56127d" ], + "x-ms-request-id": [ "eastus:a13f1b6e-5996-4d65-8531-16c1385c3e23" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11984" ], + "x-ms-correlation-request-id": [ "ebda6790-c2c0-40fa-a9b4-2d03296b4283" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093526Z:ebda6790-c2c0-40fa-a9b4-2d03296b4283" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:50:13 GMT" ] + "Date": [ "Tue, 15 Sep 2020 09:35:26 GMT" ] }, "ContentHeaders": { "Content-Length": [ "21" ], @@ -645,14 +645,14 @@ "Content": "{\"status\":\"Accepted\"}" } }, - "Remove-AzDatabricksWorkspace+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREQ5TkI3VSJ9?api-version=2018-04-01+18": { + "Remove-AzDatabricksWorkspace+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHM5eHQ0byIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVFM5WFQ0TyJ9?api-version=2018-04-01+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREQ5TkI3VSJ9?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHM5eHQ0byIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVFM5WFQ0TyJ9?api-version=2018-04-01", "Content": null, "Headers": { "x-ms-unique-id": [ "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18" ], - "x-ms-client-request-id": [ "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209" ], + "x-ms-client-request-id": [ "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8" ], "CommandName": [ "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace" ], "FullCommandName": [ "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -667,13 +667,13 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eastus:afe4214f-5eb3-4f82-84fa-3b9b6a5504a3" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11950" ], - "x-ms-correlation-request-id": [ "ba7723f8-9a5b-4c01-9d09-ebb0126c4916" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T015044Z:ba7723f8-9a5b-4c01-9d09-ebb0126c4916" ], + "x-ms-request-id": [ "eastus:1a5c1b23-5ecc-4e6c-9fd6-97c4fa94807c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11983" ], + "x-ms-correlation-request-id": [ "1b1c8e69-a80e-40ec-b2ac-87506dae485e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093556Z:1b1c8e69-a80e-40ec-b2ac-87506dae485e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:50:44 GMT" ] + "Date": [ "Tue, 15 Sep 2020 09:35:56 GMT" ] }, "ContentHeaders": { "Content-Length": [ "21" ], @@ -683,14 +683,14 @@ "Content": "{\"status\":\"Accepted\"}" } }, - "Remove-AzDatabricksWorkspace+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREQ5TkI3VSJ9?api-version=2018-04-01+19": { + "Remove-AzDatabricksWorkspace+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHM5eHQ0byIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVFM5WFQ0TyJ9?api-version=2018-04-01+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREQ5TkI3VSJ9?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHM5eHQ0byIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVFM5WFQ0TyJ9?api-version=2018-04-01", "Content": null, "Headers": { "x-ms-unique-id": [ "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19" ], - "x-ms-client-request-id": [ "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209" ], + "x-ms-client-request-id": [ "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8" ], "CommandName": [ "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace" ], "FullCommandName": [ "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -701,35 +701,34 @@ } }, "Response": { - "StatusCode": 200, + "StatusCode": 202, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ "eastus:0c805ea0-2fad-444a-9725-b6212d917f4a" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11949" ], - "x-ms-correlation-request-id": [ "7127c727-01f0-47df-94b0-e5475d1fb5a6" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T015115Z:7127c727-01f0-47df-94b0-e5475d1fb5a6" ], + "x-ms-request-id": [ "eastus:36d7bf3a-17de-419e-87f5-abb7d74f57b5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11982" ], + "x-ms-correlation-request-id": [ "b6df2a90-de71-4fb6-9a16-beadd3002f75" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093627Z:b6df2a90-de71-4fb6-9a16-beadd3002f75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:51:14 GMT" ] + "Date": [ "Tue, 15 Sep 2020 09:36:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "22" ], + "Content-Length": [ "21" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"status\":\"Succeeded\"}" + "Content": "{\"status\":\"Accepted\"}" } }, - "Remove-AzDatabricksWorkspace+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREQ5TkI3VSJ9?api-version=2018-04-01+20": { + "Remove-AzDatabricksWorkspace+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHM5eHQ0byIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVFM5WFQ0TyJ9?api-version=2018-04-01+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREQ5TkI3VSJ9?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHM5eHQ0byIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVFM5WFQ0TyJ9?api-version=2018-04-01", "Content": null, "Headers": { "x-ms-unique-id": [ "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20" ], - "x-ms-client-request-id": [ "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209", "fdfb9f0d-39e2-4900-8968-aad446d18209" ], + "x-ms-client-request-id": [ "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8" ], "CommandName": [ "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace" ], "FullCommandName": [ "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -745,13 +744,52 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ "eastus:de56cc25-c6ae-4b70-93d3-14fc83525c22" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11948" ], - "x-ms-correlation-request-id": [ "cce7f3ec-1879-4ad2-b65e-7354391f461f" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T015115Z:cce7f3ec-1879-4ad2-b65e-7354391f461f" ], + "x-ms-request-id": [ "eastus:5ed5aed6-53a4-4647-8c39-9e8540f118bb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11981" ], + "x-ms-correlation-request-id": [ "3705ba42-391e-4031-9a95-a25543c7edfb" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093657Z:3705ba42-391e-4031-9a95-a25543c7edfb" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:36:57 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "22" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"status\":\"Succeeded\"}" + } + }, + "Remove-AzDatabricksWorkspace+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHM5eHQ0byIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVFM5WFQ0TyJ9?api-version=2018-04-01+21": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHM5eHQ0byIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVFM5WFQ0TyJ9?api-version=2018-04-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21" ], + "x-ms-client-request-id": [ "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8", "2641f573-a51b-4b02-acc0-e83949f1b8f8" ], + "CommandName": [ "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace" ], + "FullCommandName": [ "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete", "Remove-AzDatabricksWorkspace_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Vary": [ "Accept-Encoding" ], + "x-ms-request-id": [ "eastus:a72adf4b-efa1-4ed3-8bdc-d78413e5b542" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11980" ], + "x-ms-correlation-request-id": [ "3c1ae231-a1f2-4acd-bb56-f0040647f6a1" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093658Z:3c1ae231-a1f2-4acd-bb56-f0040647f6a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:51:14 GMT" ] + "Date": [ "Tue, 15 Sep 2020 09:36:57 GMT" ] }, "ContentHeaders": { "Content-Length": [ "22" ], @@ -761,16 +799,16 @@ "Content": "{\"status\":\"Succeeded\"}" } }, - "Remove-AzDatabricksWorkspace+[NoContext]+DeleteViaIdentity+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/databricks-test-d9nb7u?api-version=2018-04-01+1": { + "Remove-AzDatabricksWorkspace+[NoContext]+DeleteViaIdentity+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/databricks-testsds56o?api-version=2018-04-01+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/databricks-test-d9nb7u?api-version=2018-04-01", - "Content": "{\n \"location\": \"eastus\",\n \"properties\": {\n \"managedResourceGroupId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-databricks-test-d9nb7u-mwc56k4hver1x\"\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/databricks-testsds56o?api-version=2018-04-01", + "Content": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"managedResourceGroupId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-databricks-testsds56o-1y92vklfpqzeg\"\r\n }\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "199" ] + "Content-Length": [ "203" ] } }, "Response": { @@ -779,31 +817,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZVByb3Zpc2lvbmluZ0pvYjoyRFJHQToyRERBVEFCUklDS1M6M0EyRFJHOjNBMkQ3OUNXT0o6MkREQVRBQlJJQ0tTOjNBMkRURVNUOjNBMkREOU5CN1UifQ?api-version=2018-04-01" ], - "x-ms-request-id": [ "eastus:ae2a9775-dcda-4107-b5b2-173d0dd8312c" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], - "x-ms-correlation-request-id": [ "ae76a2b7-3ed1-4a54-9a42-0a30483ee61f" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T015123Z:ae76a2b7-3ed1-4a54-9a42-0a30483ee61f" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHNkczU2byIsImpvYklkIjoiQXBwbGlhbmNlUHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1RTRFM1Nk8ifQ?api-version=2018-04-01" ], + "x-ms-request-id": [ "eastus:a610a48e-e457-4ba5-bcbb-e037cbbec983" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], + "x-ms-correlation-request-id": [ "3071aafe-6dc0-4805-9392-d9cf1b1c29c9" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093706Z:3071aafe-6dc0-4805-9392-d9cf1b1c29c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:51:23 GMT" ] + "Date": [ "Tue, 15 Sep 2020 09:37:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "906" ], + "Content-Length": [ "903" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-databricks-test-d9nb7u-mwc56k4hver1x\",\"provisioningState\":\"Accepted\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"createdDateTime\":\"2020-07-29T01:51:21.7052932Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/databricks-test-d9nb7u\",\"name\":\"databricks-test-d9nb7u\",\"type\":\"Microsoft.Databricks/workspaces\",\"location\":\"eastus\"}" + "Content": "{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-databricks-testsds56o-1y92vklfpqzeg\",\"provisioningState\":\"Accepted\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"createdDateTime\":\"2020-09-15T09:37:04.6901768Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/databricks-testsds56o\",\"name\":\"databricks-testsds56o\",\"type\":\"Microsoft.Databricks/workspaces\",\"location\":\"eastus\"}" } }, - "Remove-AzDatabricksWorkspace+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZVByb3Zpc2lvbmluZ0pvYjoyRFJHQToyRERBVEFCUklDS1M6M0EyRFJHOjNBMkQ3OUNXT0o6MkREQVRBQlJJQ0tTOjNBMkRURVNUOjNBMkREOU5CN1UifQ?api-version=2018-04-01+2": { + "Remove-AzDatabricksWorkspace+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHNkczU2byIsImpvYklkIjoiQXBwbGlhbmNlUHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1RTRFM1Nk8ifQ?api-version=2018-04-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZVByb3Zpc2lvbmluZ0pvYjoyRFJHQToyRERBVEFCUklDS1M6M0EyRFJHOjNBMkQ3OUNXT0o6MkREQVRBQlJJQ0tTOjNBMkRURVNUOjNBMkREOU5CN1UifQ?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHNkczU2byIsImpvYklkIjoiQXBwbGlhbmNlUHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1RTRFM1Nk8ifQ?api-version=2018-04-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "21", "22" ], - "x-ms-client-request-id": [ "fc9fd51c-5556-402c-9af7-20dcc3dd232a", "fc9fd51c-5556-402c-9af7-20dcc3dd232a" ], + "x-ms-unique-id": [ "22", "23" ], + "x-ms-client-request-id": [ "dab89020-ff4c-420b-ae1f-57e3ce75a2a5", "dab89020-ff4c-420b-ae1f-57e3ce75a2a5" ], "CommandName": [ "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace" ], "FullCommandName": [ "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -818,13 +856,13 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eastus:f8970d59-6f8b-41a9-ad56-0a15222d0140" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11947" ], - "x-ms-correlation-request-id": [ "66615ad8-40b3-471c-865c-039ce01829a9" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T015139Z:66615ad8-40b3-471c-865c-039ce01829a9" ], + "x-ms-request-id": [ "eastus:14be84f7-5b2d-4282-a603-5c28b57c7356" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11979" ], + "x-ms-correlation-request-id": [ "b86b4afb-5e26-458e-a483-1e678ba29923" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093721Z:b86b4afb-5e26-458e-a483-1e678ba29923" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:51:38 GMT" ] + "Date": [ "Tue, 15 Sep 2020 09:37:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "21" ], @@ -834,14 +872,14 @@ "Content": "{\"status\":\"Accepted\"}" } }, - "Remove-AzDatabricksWorkspace+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZVByb3Zpc2lvbmluZ0pvYjoyRFJHQToyRERBVEFCUklDS1M6M0EyRFJHOjNBMkQ3OUNXT0o6MkREQVRBQlJJQ0tTOjNBMkRURVNUOjNBMkREOU5CN1UifQ?api-version=2018-04-01+3": { + "Remove-AzDatabricksWorkspace+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHNkczU2byIsImpvYklkIjoiQXBwbGlhbmNlUHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1RTRFM1Nk8ifQ?api-version=2018-04-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZVByb3Zpc2lvbmluZ0pvYjoyRFJHQToyRERBVEFCUklDS1M6M0EyRFJHOjNBMkQ3OUNXT0o6MkREQVRBQlJJQ0tTOjNBMkRURVNUOjNBMkREOU5CN1UifQ?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHNkczU2byIsImpvYklkIjoiQXBwbGlhbmNlUHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1RTRFM1Nk8ifQ?api-version=2018-04-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "21", "22", "23" ], - "x-ms-client-request-id": [ "fc9fd51c-5556-402c-9af7-20dcc3dd232a", "fc9fd51c-5556-402c-9af7-20dcc3dd232a", "fc9fd51c-5556-402c-9af7-20dcc3dd232a" ], + "x-ms-unique-id": [ "22", "23", "24" ], + "x-ms-client-request-id": [ "dab89020-ff4c-420b-ae1f-57e3ce75a2a5", "dab89020-ff4c-420b-ae1f-57e3ce75a2a5", "dab89020-ff4c-420b-ae1f-57e3ce75a2a5" ], "CommandName": [ "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace" ], "FullCommandName": [ "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -856,13 +894,13 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eastus:d3f2d88d-cb77-4a47-823b-00242574f0e7" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11946" ], - "x-ms-correlation-request-id": [ "5a41b880-0385-401f-8ae6-d5290475e496" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T015209Z:5a41b880-0385-401f-8ae6-d5290475e496" ], + "x-ms-request-id": [ "eastus:1a5020a1-24a1-4c5e-b752-d60751f579f4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11978" ], + "x-ms-correlation-request-id": [ "52642979-b708-41fa-bad4-378221699a4e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093752Z:52642979-b708-41fa-bad4-378221699a4e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:52:09 GMT" ] + "Date": [ "Tue, 15 Sep 2020 09:37:51 GMT" ] }, "ContentHeaders": { "Content-Length": [ "21" ], @@ -872,14 +910,14 @@ "Content": "{\"status\":\"Accepted\"}" } }, - "Remove-AzDatabricksWorkspace+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZVByb3Zpc2lvbmluZ0pvYjoyRFJHQToyRERBVEFCUklDS1M6M0EyRFJHOjNBMkQ3OUNXT0o6MkREQVRBQlJJQ0tTOjNBMkRURVNUOjNBMkREOU5CN1UifQ?api-version=2018-04-01+4": { + "Remove-AzDatabricksWorkspace+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHNkczU2byIsImpvYklkIjoiQXBwbGlhbmNlUHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1RTRFM1Nk8ifQ?api-version=2018-04-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZVByb3Zpc2lvbmluZ0pvYjoyRFJHQToyRERBVEFCUklDS1M6M0EyRFJHOjNBMkQ3OUNXT0o6MkREQVRBQlJJQ0tTOjNBMkRURVNUOjNBMkREOU5CN1UifQ?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHNkczU2byIsImpvYklkIjoiQXBwbGlhbmNlUHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1RTRFM1Nk8ifQ?api-version=2018-04-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "21", "22", "23", "24" ], - "x-ms-client-request-id": [ "fc9fd51c-5556-402c-9af7-20dcc3dd232a", "fc9fd51c-5556-402c-9af7-20dcc3dd232a", "fc9fd51c-5556-402c-9af7-20dcc3dd232a", "fc9fd51c-5556-402c-9af7-20dcc3dd232a" ], + "x-ms-unique-id": [ "22", "23", "24", "25" ], + "x-ms-client-request-id": [ "dab89020-ff4c-420b-ae1f-57e3ce75a2a5", "dab89020-ff4c-420b-ae1f-57e3ce75a2a5", "dab89020-ff4c-420b-ae1f-57e3ce75a2a5", "dab89020-ff4c-420b-ae1f-57e3ce75a2a5" ], "CommandName": [ "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace" ], "FullCommandName": [ "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -894,13 +932,13 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eastus:6a1034f1-0008-4959-9153-8b13420c4053" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11945" ], - "x-ms-correlation-request-id": [ "6ea332ce-ae9e-40c1-82f1-1e21912be2b7" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T015239Z:6ea332ce-ae9e-40c1-82f1-1e21912be2b7" ], + "x-ms-request-id": [ "eastus:c84ec495-b424-4041-b10a-eafa20fc9382" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11977" ], + "x-ms-correlation-request-id": [ "a7676996-4a85-493b-b38e-9f866cb23ae9" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093822Z:a7676996-4a85-493b-b38e-9f866cb23ae9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:52:39 GMT" ] + "Date": [ "Tue, 15 Sep 2020 09:38:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "21" ], @@ -910,14 +948,14 @@ "Content": "{\"status\":\"Accepted\"}" } }, - "Remove-AzDatabricksWorkspace+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZVByb3Zpc2lvbmluZ0pvYjoyRFJHQToyRERBVEFCUklDS1M6M0EyRFJHOjNBMkQ3OUNXT0o6MkREQVRBQlJJQ0tTOjNBMkRURVNUOjNBMkREOU5CN1UifQ?api-version=2018-04-01+5": { + "Remove-AzDatabricksWorkspace+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHNkczU2byIsImpvYklkIjoiQXBwbGlhbmNlUHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1RTRFM1Nk8ifQ?api-version=2018-04-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZVByb3Zpc2lvbmluZ0pvYjoyRFJHQToyRERBVEFCUklDS1M6M0EyRFJHOjNBMkQ3OUNXT0o6MkREQVRBQlJJQ0tTOjNBMkRURVNUOjNBMkREOU5CN1UifQ?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHNkczU2byIsImpvYklkIjoiQXBwbGlhbmNlUHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1RTRFM1Nk8ifQ?api-version=2018-04-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "21", "22", "23", "24", "25" ], - "x-ms-client-request-id": [ "fc9fd51c-5556-402c-9af7-20dcc3dd232a", "fc9fd51c-5556-402c-9af7-20dcc3dd232a", "fc9fd51c-5556-402c-9af7-20dcc3dd232a", "fc9fd51c-5556-402c-9af7-20dcc3dd232a", "fc9fd51c-5556-402c-9af7-20dcc3dd232a" ], + "x-ms-unique-id": [ "22", "23", "24", "25", "26" ], + "x-ms-client-request-id": [ "dab89020-ff4c-420b-ae1f-57e3ce75a2a5", "dab89020-ff4c-420b-ae1f-57e3ce75a2a5", "dab89020-ff4c-420b-ae1f-57e3ce75a2a5", "dab89020-ff4c-420b-ae1f-57e3ce75a2a5", "dab89020-ff4c-420b-ae1f-57e3ce75a2a5" ], "CommandName": [ "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace" ], "FullCommandName": [ "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -932,13 +970,13 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eastus:0e5fdfbd-7c14-44f5-b8d6-f12cb0bdfb3e" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11944" ], - "x-ms-correlation-request-id": [ "cf1cff07-ed55-470d-b849-f8c694847a14" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T015310Z:cf1cff07-ed55-470d-b849-f8c694847a14" ], + "x-ms-request-id": [ "eastus:35d70e4c-7935-4cb3-b52c-dcc39a38d05d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11976" ], + "x-ms-correlation-request-id": [ "419baf35-afb1-4406-83ab-a078364e6dba" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093853Z:419baf35-afb1-4406-83ab-a078364e6dba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:53:09 GMT" ] + "Date": [ "Tue, 15 Sep 2020 09:38:53 GMT" ] }, "ContentHeaders": { "Content-Length": [ "21" ], @@ -948,14 +986,14 @@ "Content": "{\"status\":\"Accepted\"}" } }, - "Remove-AzDatabricksWorkspace+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZVByb3Zpc2lvbmluZ0pvYjoyRFJHQToyRERBVEFCUklDS1M6M0EyRFJHOjNBMkQ3OUNXT0o6MkREQVRBQlJJQ0tTOjNBMkRURVNUOjNBMkREOU5CN1UifQ?api-version=2018-04-01+6": { + "Remove-AzDatabricksWorkspace+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHNkczU2byIsImpvYklkIjoiQXBwbGlhbmNlUHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1RTRFM1Nk8ifQ?api-version=2018-04-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZVByb3Zpc2lvbmluZ0pvYjoyRFJHQToyRERBVEFCUklDS1M6M0EyRFJHOjNBMkQ3OUNXT0o6MkREQVRBQlJJQ0tTOjNBMkRURVNUOjNBMkREOU5CN1UifQ?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHNkczU2byIsImpvYklkIjoiQXBwbGlhbmNlUHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDJERlVFNjoyRERBVEFCUklDS1M6M0EyRFRFU1RTRFM1Nk8ifQ?api-version=2018-04-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "21", "22", "23", "24", "25", "26" ], - "x-ms-client-request-id": [ "fc9fd51c-5556-402c-9af7-20dcc3dd232a", "fc9fd51c-5556-402c-9af7-20dcc3dd232a", "fc9fd51c-5556-402c-9af7-20dcc3dd232a", "fc9fd51c-5556-402c-9af7-20dcc3dd232a", "fc9fd51c-5556-402c-9af7-20dcc3dd232a", "fc9fd51c-5556-402c-9af7-20dcc3dd232a" ], + "x-ms-unique-id": [ "22", "23", "24", "25", "26", "27" ], + "x-ms-client-request-id": [ "dab89020-ff4c-420b-ae1f-57e3ce75a2a5", "dab89020-ff4c-420b-ae1f-57e3ce75a2a5", "dab89020-ff4c-420b-ae1f-57e3ce75a2a5", "dab89020-ff4c-420b-ae1f-57e3ce75a2a5", "dab89020-ff4c-420b-ae1f-57e3ce75a2a5", "dab89020-ff4c-420b-ae1f-57e3ce75a2a5" ], "CommandName": [ "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace" ], "FullCommandName": [ "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -971,13 +1009,13 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ "eastus:d8dbe267-9984-4c17-a2ab-3322c2d5ed82" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11943" ], - "x-ms-correlation-request-id": [ "2849babe-1c2d-4380-a440-685787a1f0bd" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T015340Z:2849babe-1c2d-4380-a440-685787a1f0bd" ], + "x-ms-request-id": [ "eastus:c738efef-fb84-4c8e-8f04-38e5d4ec93c4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11975" ], + "x-ms-correlation-request-id": [ "dfffa5b8-2b6a-48e5-a4ce-6ece89b3b9f0" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093923Z:dfffa5b8-2b6a-48e5-a4ce-6ece89b3b9f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:53:39 GMT" ] + "Date": [ "Tue, 15 Sep 2020 09:39:23 GMT" ] }, "ContentHeaders": { "Content-Length": [ "22" ], @@ -987,14 +1025,14 @@ "Content": "{\"status\":\"Succeeded\"}" } }, - "Remove-AzDatabricksWorkspace+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/databricks-test-d9nb7u?api-version=2018-04-01+7": { + "Remove-AzDatabricksWorkspace+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/databricks-testsds56o?api-version=2018-04-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/databricks-test-d9nb7u?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/databricks-testsds56o?api-version=2018-04-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "21", "22", "23", "24", "25", "26", "27" ], - "x-ms-client-request-id": [ "fc9fd51c-5556-402c-9af7-20dcc3dd232a", "fc9fd51c-5556-402c-9af7-20dcc3dd232a", "fc9fd51c-5556-402c-9af7-20dcc3dd232a", "fc9fd51c-5556-402c-9af7-20dcc3dd232a", "fc9fd51c-5556-402c-9af7-20dcc3dd232a", "fc9fd51c-5556-402c-9af7-20dcc3dd232a", "fc9fd51c-5556-402c-9af7-20dcc3dd232a" ], + "x-ms-unique-id": [ "22", "23", "24", "25", "26", "27", "28" ], + "x-ms-client-request-id": [ "dab89020-ff4c-420b-ae1f-57e3ce75a2a5", "dab89020-ff4c-420b-ae1f-57e3ce75a2a5", "dab89020-ff4c-420b-ae1f-57e3ce75a2a5", "dab89020-ff4c-420b-ae1f-57e3ce75a2a5", "dab89020-ff4c-420b-ae1f-57e3ce75a2a5", "dab89020-ff4c-420b-ae1f-57e3ce75a2a5", "dab89020-ff4c-420b-ae1f-57e3ce75a2a5" ], "CommandName": [ "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace", "Az.Databricks.internal\\New-AzDatabricksWorkspace" ], "FullCommandName": [ "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded", "New-AzDatabricksWorkspace_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1010,30 +1048,30 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ "eastus:0aacc6ea-4c8f-439d-961a-da7ebf9268fa" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11942" ], - "x-ms-correlation-request-id": [ "6e98124d-40c1-4e16-ba7d-50a40e9b218d" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T015341Z:6e98124d-40c1-4e16-ba7d-50a40e9b218d" ], + "x-ms-request-id": [ "eastus:a8715903-6087-4859-9baa-6d15c9717095" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11974" ], + "x-ms-correlation-request-id": [ "77ff587c-6d82-4b4e-9268-611b3d13f31f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093924Z:77ff587c-6d82-4b4e-9268-611b3d13f31f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:53:40 GMT" ] + "Date": [ "Tue, 15 Sep 2020 09:39:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1915" ], + "Content-Length": [ "1912" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-databricks-test-d9nb7u-mwc56k4hver1x\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":false},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelayplxigf3di6b4o\"},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstorageplxigf3di6b4o\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"4816051414412001\",\"workspaceUrl\":\"adb-4816051414412001.1.azuredatabricks.net\",\"createdDateTime\":\"2020-07-29T01:51:21.7052932Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/databricks-test-d9nb7u\",\"name\":\"databricks-test-d9nb7u\",\"type\":\"Microsoft.Databricks/workspaces\",\"location\":\"eastus\"}" + "Content": "{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-databricks-testsds56o-1y92vklfpqzeg\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":false},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelaytvk3edasecyva\"},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstoragetvk3edasecyva\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"2057727266461269\",\"workspaceUrl\":\"adb-2057727266461269.9.azuredatabricks.net\",\"createdDateTime\":\"2020-09-15T09:37:04.6901768Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/databricks-testsds56o\",\"name\":\"databricks-testsds56o\",\"type\":\"Microsoft.Databricks/workspaces\",\"location\":\"eastus\"}" } }, - "Remove-AzDatabricksWorkspace+[NoContext]+DeleteViaIdentity+$DELETE+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/databricks-test-d9nb7u?api-version=2018-04-01+8": { + "Remove-AzDatabricksWorkspace+[NoContext]+DeleteViaIdentity+$DELETE+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/databricks-testsds56o?api-version=2018-04-01+8": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/databricks-test-d9nb7u?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/databricks-testsds56o?api-version=2018-04-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "28" ], - "x-ms-client-request-id": [ "374b21f0-2907-4225-8e74-0e7a8b10165e" ], + "x-ms-unique-id": [ "29" ], + "x-ms-client-request-id": [ "8b82d996-ded2-4b00-84be-5edd30ef208b" ], "CommandName": [ "Remove-AzDatabricksWorkspace" ], "FullCommandName": [ "Remove-AzDatabricksWorkspace_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1048,15 +1086,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREQ5TkI3VSJ9?api-version=2018-04-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHNkczU2byIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVFNEUzU2TyJ9?api-version=2018-04-01" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "eastus:71a2df79-d4d3-47e8-b574-82c385b58a4b" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14996" ], - "x-ms-correlation-request-id": [ "b959a222-7774-483e-90bb-e6d03860991e" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T015342Z:b959a222-7774-483e-90bb-e6d03860991e" ], + "x-ms-request-id": [ "eastus:459f3c12-3585-4ca9-87c1-7bc83d5aef9b" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], + "x-ms-correlation-request-id": [ "fb0bf2a7-2a8a-4603-99d8-1a0642d2d566" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093925Z:fb0bf2a7-2a8a-4603-99d8-1a0642d2d566" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:53:41 GMT" ] + "Date": [ "Tue, 15 Sep 2020 09:39:25 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1065,14 +1103,14 @@ "Content": null } }, - "Remove-AzDatabricksWorkspace+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREQ5TkI3VSJ9?api-version=2018-04-01+9": { + "Remove-AzDatabricksWorkspace+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHNkczU2byIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVFNEUzU2TyJ9?api-version=2018-04-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREQ5TkI3VSJ9?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHNkczU2byIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVFNEUzU2TyJ9?api-version=2018-04-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "28", "29" ], - "x-ms-client-request-id": [ "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e" ], + "x-ms-unique-id": [ "29", "30" ], + "x-ms-client-request-id": [ "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b" ], "CommandName": [ "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace" ], "FullCommandName": [ "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -1087,13 +1125,13 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eastus:589ad931-7094-48b4-9e4c-ae5a9c78a0a4" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11941" ], - "x-ms-correlation-request-id": [ "14d72424-5052-4702-99f3-3862d165eff2" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T015357Z:14d72424-5052-4702-99f3-3862d165eff2" ], + "x-ms-request-id": [ "eastus:1d450884-0f45-48e1-a60c-371512c65421" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11973" ], + "x-ms-correlation-request-id": [ "93557844-c5af-4c3e-88c4-79e91772faf4" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093940Z:93557844-c5af-4c3e-88c4-79e91772faf4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:53:56 GMT" ] + "Date": [ "Tue, 15 Sep 2020 09:39:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "21" ], @@ -1103,14 +1141,14 @@ "Content": "{\"status\":\"Accepted\"}" } }, - "Remove-AzDatabricksWorkspace+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREQ5TkI3VSJ9?api-version=2018-04-01+10": { + "Remove-AzDatabricksWorkspace+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHNkczU2byIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVFNEUzU2TyJ9?api-version=2018-04-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREQ5TkI3VSJ9?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHNkczU2byIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVFNEUzU2TyJ9?api-version=2018-04-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "28", "29", "30" ], - "x-ms-client-request-id": [ "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e" ], + "x-ms-unique-id": [ "29", "30", "31" ], + "x-ms-client-request-id": [ "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b" ], "CommandName": [ "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace" ], "FullCommandName": [ "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1125,13 +1163,13 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eastus:d7b690ea-05e3-4799-ac1b-b951cde0339f" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11940" ], - "x-ms-correlation-request-id": [ "0716b88d-6a83-404e-bf6b-df56ae30b24a" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T015428Z:0716b88d-6a83-404e-bf6b-df56ae30b24a" ], + "x-ms-request-id": [ "eastus:11e8a70a-3376-4bcd-b3a0-78f68f7300aa" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11972" ], + "x-ms-correlation-request-id": [ "ca4f6987-158f-427a-b361-1df628e30382" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094011Z:ca4f6987-158f-427a-b361-1df628e30382" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:54:27 GMT" ] + "Date": [ "Tue, 15 Sep 2020 09:40:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "21" ], @@ -1141,14 +1179,14 @@ "Content": "{\"status\":\"Accepted\"}" } }, - "Remove-AzDatabricksWorkspace+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREQ5TkI3VSJ9?api-version=2018-04-01+11": { + "Remove-AzDatabricksWorkspace+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHNkczU2byIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVFNEUzU2TyJ9?api-version=2018-04-01+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREQ5TkI3VSJ9?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHNkczU2byIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVFNEUzU2TyJ9?api-version=2018-04-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "28", "29", "30", "31" ], - "x-ms-client-request-id": [ "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e" ], + "x-ms-unique-id": [ "29", "30", "31", "32" ], + "x-ms-client-request-id": [ "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b" ], "CommandName": [ "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace" ], "FullCommandName": [ "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1163,13 +1201,13 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eastus:8a9201b7-c711-4cf5-b9fe-af5fedc88164" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11939" ], - "x-ms-correlation-request-id": [ "b90bcad0-e353-46d8-b4ba-cb7d7f828ffe" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T015458Z:b90bcad0-e353-46d8-b4ba-cb7d7f828ffe" ], + "x-ms-request-id": [ "eastus:cc33d09c-6cd9-4749-ae9d-6b190a18a9ed" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11971" ], + "x-ms-correlation-request-id": [ "c9e83d3a-0f7d-4428-ba61-9609e28ba079" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094041Z:c9e83d3a-0f7d-4428-ba61-9609e28ba079" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:54:57 GMT" ] + "Date": [ "Tue, 15 Sep 2020 09:40:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "21" ], @@ -1179,14 +1217,14 @@ "Content": "{\"status\":\"Accepted\"}" } }, - "Remove-AzDatabricksWorkspace+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREQ5TkI3VSJ9?api-version=2018-04-01+12": { + "Remove-AzDatabricksWorkspace+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHNkczU2byIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVFNEUzU2TyJ9?api-version=2018-04-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREQ5TkI3VSJ9?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHNkczU2byIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVFNEUzU2TyJ9?api-version=2018-04-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "28", "29", "30", "31", "32" ], - "x-ms-client-request-id": [ "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e" ], + "x-ms-unique-id": [ "29", "30", "31", "32", "33" ], + "x-ms-client-request-id": [ "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b" ], "CommandName": [ "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace" ], "FullCommandName": [ "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1201,13 +1239,13 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eastus:6e872ffa-a881-4954-914a-e1aa29f8aa1b" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11938" ], - "x-ms-correlation-request-id": [ "44345aad-25dc-41fe-bd80-761cd75d261d" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T015528Z:44345aad-25dc-41fe-bd80-761cd75d261d" ], + "x-ms-request-id": [ "eastus:d4010081-6b3f-49bb-a2f7-f9cee4b0b072" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11970" ], + "x-ms-correlation-request-id": [ "c08389c1-5890-4bc8-b52c-45fe1556639d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094111Z:c08389c1-5890-4bc8-b52c-45fe1556639d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:55:27 GMT" ] + "Date": [ "Tue, 15 Sep 2020 09:41:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "21" ], @@ -1217,14 +1255,14 @@ "Content": "{\"status\":\"Accepted\"}" } }, - "Remove-AzDatabricksWorkspace+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREQ5TkI3VSJ9?api-version=2018-04-01+13": { + "Remove-AzDatabricksWorkspace+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHNkczU2byIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVFNEUzU2TyJ9?api-version=2018-04-01+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREQ5TkI3VSJ9?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHNkczU2byIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVFNEUzU2TyJ9?api-version=2018-04-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "28", "29", "30", "31", "32", "33" ], - "x-ms-client-request-id": [ "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e" ], + "x-ms-unique-id": [ "29", "30", "31", "32", "33", "34" ], + "x-ms-client-request-id": [ "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b" ], "CommandName": [ "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace" ], "FullCommandName": [ "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1239,13 +1277,13 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eastus:b6c05dbc-5e44-41e7-87dd-51a16ccabdbb" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11937" ], - "x-ms-correlation-request-id": [ "f8f9bcf0-5e9f-4a39-842d-6d6eb63ee9f8" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T015559Z:f8f9bcf0-5e9f-4a39-842d-6d6eb63ee9f8" ], + "x-ms-request-id": [ "eastus:88bf1f00-26b1-4517-869a-940e390468f5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11969" ], + "x-ms-correlation-request-id": [ "cfea3d75-b6e5-4210-b4bd-8a0d078dd395" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094143Z:cfea3d75-b6e5-4210-b4bd-8a0d078dd395" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:55:59 GMT" ] + "Date": [ "Tue, 15 Sep 2020 09:41:43 GMT" ] }, "ContentHeaders": { "Content-Length": [ "21" ], @@ -1255,14 +1293,14 @@ "Content": "{\"status\":\"Accepted\"}" } }, - "Remove-AzDatabricksWorkspace+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREQ5TkI3VSJ9?api-version=2018-04-01+14": { + "Remove-AzDatabricksWorkspace+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHNkczU2byIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVFNEUzU2TyJ9?api-version=2018-04-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREQ5TkI3VSJ9?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHNkczU2byIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVFNEUzU2TyJ9?api-version=2018-04-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "28", "29", "30", "31", "32", "33", "34" ], - "x-ms-client-request-id": [ "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e" ], + "x-ms-unique-id": [ "29", "30", "31", "32", "33", "34", "35" ], + "x-ms-client-request-id": [ "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b" ], "CommandName": [ "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace" ], "FullCommandName": [ "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1277,13 +1315,13 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eastus:4cb68658-be1b-45e0-8f66-729b12faee06" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11936" ], - "x-ms-correlation-request-id": [ "c7fc7a45-ee79-4b03-ab01-bf961698a523" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T015631Z:c7fc7a45-ee79-4b03-ab01-bf961698a523" ], + "x-ms-request-id": [ "eastus:9e69c40b-b29d-42b7-895b-2de795483ac8" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11968" ], + "x-ms-correlation-request-id": [ "6a12846a-4db2-4ecf-a9df-a017853db835" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094213Z:6a12846a-4db2-4ecf-a9df-a017853db835" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:56:30 GMT" ] + "Date": [ "Tue, 15 Sep 2020 09:42:13 GMT" ] }, "ContentHeaders": { "Content-Length": [ "21" ], @@ -1293,14 +1331,14 @@ "Content": "{\"status\":\"Accepted\"}" } }, - "Remove-AzDatabricksWorkspace+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREQ5TkI3VSJ9?api-version=2018-04-01+15": { + "Remove-AzDatabricksWorkspace+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHNkczU2byIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVFNEUzU2TyJ9?api-version=2018-04-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREQ5TkI3VSJ9?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHNkczU2byIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVFNEUzU2TyJ9?api-version=2018-04-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "28", "29", "30", "31", "32", "33", "34", "35" ], - "x-ms-client-request-id": [ "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e" ], + "x-ms-unique-id": [ "29", "30", "31", "32", "33", "34", "35", "36" ], + "x-ms-client-request-id": [ "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b" ], "CommandName": [ "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace" ], "FullCommandName": [ "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1315,13 +1353,13 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eastus:1e7bc89a-978b-48c9-81ca-0d7bfd6214fd" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11935" ], - "x-ms-correlation-request-id": [ "54184b72-b45e-4e4b-8005-97d92298185e" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T015701Z:54184b72-b45e-4e4b-8005-97d92298185e" ], + "x-ms-request-id": [ "eastus:71b75903-f4f1-4bf0-9cb2-110d804b3819" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11967" ], + "x-ms-correlation-request-id": [ "6b5023c2-494f-4bc2-ae12-7eaff915d8b0" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094244Z:6b5023c2-494f-4bc2-ae12-7eaff915d8b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:57:00 GMT" ] + "Date": [ "Tue, 15 Sep 2020 09:42:43 GMT" ] }, "ContentHeaders": { "Content-Length": [ "21" ], @@ -1331,14 +1369,14 @@ "Content": "{\"status\":\"Accepted\"}" } }, - "Remove-AzDatabricksWorkspace+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREQ5TkI3VSJ9?api-version=2018-04-01+16": { + "Remove-AzDatabricksWorkspace+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHNkczU2byIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVFNEUzU2TyJ9?api-version=2018-04-01+16": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREQ5TkI3VSJ9?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHNkczU2byIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVFNEUzU2TyJ9?api-version=2018-04-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "28", "29", "30", "31", "32", "33", "34", "35", "36" ], - "x-ms-client-request-id": [ "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e" ], + "x-ms-unique-id": [ "29", "30", "31", "32", "33", "34", "35", "36", "37" ], + "x-ms-client-request-id": [ "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b" ], "CommandName": [ "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace" ], "FullCommandName": [ "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1353,13 +1391,13 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eastus:69d6e7e3-f3d9-46b7-ba6e-879793b4ed61" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11934" ], - "x-ms-correlation-request-id": [ "685878e6-93df-4c71-a56e-c9159c71f7b4" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T015731Z:685878e6-93df-4c71-a56e-c9159c71f7b4" ], + "x-ms-request-id": [ "eastus:3187dcd0-7b8d-4088-9cfb-e820d2ca4d90" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11966" ], + "x-ms-correlation-request-id": [ "8fff428a-0393-4aa6-b3f4-188b2f53f2c5" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094314Z:8fff428a-0393-4aa6-b3f4-188b2f53f2c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:57:31 GMT" ] + "Date": [ "Tue, 15 Sep 2020 09:43:13 GMT" ] }, "ContentHeaders": { "Content-Length": [ "21" ], @@ -1369,14 +1407,14 @@ "Content": "{\"status\":\"Accepted\"}" } }, - "Remove-AzDatabricksWorkspace+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREQ5TkI3VSJ9?api-version=2018-04-01+17": { + "Remove-AzDatabricksWorkspace+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHNkczU2byIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVFNEUzU2TyJ9?api-version=2018-04-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREQ5TkI3VSJ9?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHNkczU2byIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVFNEUzU2TyJ9?api-version=2018-04-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "28", "29", "30", "31", "32", "33", "34", "35", "36", "37" ], - "x-ms-client-request-id": [ "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e" ], + "x-ms-unique-id": [ "29", "30", "31", "32", "33", "34", "35", "36", "37", "38" ], + "x-ms-client-request-id": [ "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b" ], "CommandName": [ "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace" ], "FullCommandName": [ "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1391,13 +1429,13 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eastus:0d70f0d2-5153-431a-af74-38521cbd4152" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11933" ], - "x-ms-correlation-request-id": [ "c3bb4a66-8532-4f70-81aa-ebb518ed14a4" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T015802Z:c3bb4a66-8532-4f70-81aa-ebb518ed14a4" ], + "x-ms-request-id": [ "eastus:073fd1e0-34ca-4a8d-8dd0-d5cd3f8c8d64" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11965" ], + "x-ms-correlation-request-id": [ "31352696-09d8-4208-a515-b3bdc0a39bd6" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094344Z:31352696-09d8-4208-a515-b3bdc0a39bd6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:58:02 GMT" ] + "Date": [ "Tue, 15 Sep 2020 09:43:44 GMT" ] }, "ContentHeaders": { "Content-Length": [ "21" ], @@ -1407,14 +1445,14 @@ "Content": "{\"status\":\"Accepted\"}" } }, - "Remove-AzDatabricksWorkspace+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREQ5TkI3VSJ9?api-version=2018-04-01+18": { + "Remove-AzDatabricksWorkspace+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHNkczU2byIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVFNEUzU2TyJ9?api-version=2018-04-01+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREQ5TkI3VSJ9?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHNkczU2byIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVFNEUzU2TyJ9?api-version=2018-04-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38" ], - "x-ms-client-request-id": [ "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e" ], + "x-ms-unique-id": [ "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39" ], + "x-ms-client-request-id": [ "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b" ], "CommandName": [ "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace" ], "FullCommandName": [ "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1425,35 +1463,34 @@ } }, "Response": { - "StatusCode": 200, + "StatusCode": 202, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ "eastus:07f3cce1-074a-47da-b51d-f23a9f736eba" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11932" ], - "x-ms-correlation-request-id": [ "d724b868-35b5-4f1c-9d46-8fe17c9e021a" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T015832Z:d724b868-35b5-4f1c-9d46-8fe17c9e021a" ], + "x-ms-request-id": [ "eastus:97332b1b-739a-4c1a-98e5-6c9cea083fda" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11964" ], + "x-ms-correlation-request-id": [ "0fd95a69-b1d8-4f0b-9fcc-9d7576dfa2d2" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094415Z:0fd95a69-b1d8-4f0b-9fcc-9d7576dfa2d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:58:32 GMT" ] + "Date": [ "Tue, 15 Sep 2020 09:44:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "22" ], + "Content-Length": [ "21" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"status\":\"Succeeded\"}" + "Content": "{\"status\":\"Accepted\"}" } }, - "Remove-AzDatabricksWorkspace+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREQ5TkI3VSJ9?api-version=2018-04-01+19": { + "Remove-AzDatabricksWorkspace+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHNkczU2byIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVFNEUzU2TyJ9?api-version=2018-04-01+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctNzljd29qL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdC1kOW5iN3UiLCJqb2JJZCI6IkFwcGxpYW5jZURlcHJvdmlzaW9uaW5nSm9iOjJEUkdBOjJEREFUQUJSSUNLUzozQTJEUkc6M0EyRDc5Q1dPSjoyRERBVEFCUklDS1M6M0EyRFRFU1Q6M0EyREQ5TkI3VSJ9?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHNkczU2byIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVFNEUzU2TyJ9?api-version=2018-04-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39" ], - "x-ms-client-request-id": [ "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e", "374b21f0-2907-4225-8e74-0e7a8b10165e" ], + "x-ms-unique-id": [ "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40" ], + "x-ms-client-request-id": [ "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b" ], "CommandName": [ "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace" ], "FullCommandName": [ "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1463,19 +1500,96 @@ "ContentHeaders": { } }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "eastus:a180a565-83ae-465f-a12f-ace12c4b11a1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11963" ], + "x-ms-correlation-request-id": [ "dbb55401-b918-4615-99a2-15f5419bddcd" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094445Z:dbb55401-b918-4615-99a2-15f5419bddcd" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:44:45 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "21" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"status\":\"Accepted\"}" + } + }, + "Remove-AzDatabricksWorkspace+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHNkczU2byIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVFNEUzU2TyJ9?api-version=2018-04-01+20": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHNkczU2byIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVFNEUzU2TyJ9?api-version=2018-04-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41" ], + "x-ms-client-request-id": [ "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b" ], + "CommandName": [ "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace" ], + "FullCommandName": [ "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Vary": [ "Accept-Encoding" ], + "x-ms-request-id": [ "eastus:00e68f7b-da96-499b-b540-89bbfdd7ef79" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11962" ], + "x-ms-correlation-request-id": [ "199b76ba-3f52-4715-bd4e-82aa141f38f9" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094516Z:199b76ba-3f52-4715-bd4e-82aa141f38f9" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:45:15 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "22" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"status\":\"Succeeded\"}" + } + }, + "Remove-AzDatabricksWorkspace+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHNkczU2byIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVFNEUzU2TyJ9?api-version=2018-04-01+21": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/locations/eastus/operationStatuses/eyJmdWxseVF1YWxpZmllZEFwcGxpYW5jZUlkIjoiL3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2RhdGFicmlja3MtcmctMmRmdWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YWJyaWNrcy93b3Jrc3BhY2VzL2RhdGFicmlja3MtdGVzdHNkczU2byIsImpvYklkIjoiQXBwbGlhbmNlRGVwcm92aXNpb25pbmdKb2I6MkRSR0E6MkREQVRBQlJJQ0tTOjNBMkRSRzozQTJEMkRGVUU2OjJEREFUQUJSSUNLUzozQTJEVEVTVFNEUzU2TyJ9?api-version=2018-04-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42" ], + "x-ms-client-request-id": [ "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b", "8b82d996-ded2-4b00-84be-5edd30ef208b" ], + "CommandName": [ "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace", "Remove-AzDatabricksWorkspace" ], + "FullCommandName": [ "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity", "Remove-AzDatabricksWorkspace_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, "Response": { "StatusCode": 200, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ "eastus:d05df066-5b9a-44dc-a12a-628e4dad584f" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11931" ], - "x-ms-correlation-request-id": [ "59049654-060e-4c80-b651-e19a28317d88" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T015833Z:59049654-060e-4c80-b651-e19a28317d88" ], + "x-ms-request-id": [ "eastus:87056799-4b64-430a-a3fe-a0e2dd667ca2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11961" ], + "x-ms-correlation-request-id": [ "adb0a024-a239-45d3-a242-c7b501873bd2" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094516Z:adb0a024-a239-45d3-a242-c7b501873bd2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 01:58:32 GMT" ] + "Date": [ "Tue, 15 Sep 2020 09:45:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "22" ], diff --git a/src/Databricks/test/Remove-AzDatabricksWorkspace.Tests.ps1 b/src/Databricks/test/Remove-AzDatabricksWorkspace.Tests.ps1 index d487d689bac8..418794155e01 100644 --- a/src/Databricks/test/Remove-AzDatabricksWorkspace.Tests.ps1 +++ b/src/Databricks/test/Remove-AzDatabricksWorkspace.Tests.ps1 @@ -13,13 +13,13 @@ while(-not $mockingPath) { Describe 'Remove-AzDatabricksWorkspace' { It 'Delete' { - $name = "databricks-test-" + $env.rstr5 + $name = "databricks-test" + $env.rstr5 New-AzDatabricksWorkspace -Name $name -ResourceGroupName $env.resourceGroup -Location eastus { Remove-AzDatabricksWorkspace -Name $name -ResourceGroupName $env.resourceGroup } | Should -Not -Throw } It 'DeleteViaIdentity' { - $name = "databricks-test-" + $env.rstr5 + $name = "databricks-test" + $env.rstr7 $res = New-AzDatabricksWorkspace -Name $name -ResourceGroupName $env.resourceGroup -Location eastus { Remove-AzDatabricksWorkspace -InputObject $res } | Should -Not -Throw } diff --git a/src/Databricks/test/Update-AzDatabricksVNetPeering.Recording.json b/src/Databricks/test/Update-AzDatabricksVNetPeering.Recording.json new file mode 100644 index 000000000000..2938e7cc5f93 --- /dev/null +++ b/src/Databricks/test/Update-AzDatabricksVNetPeering.Recording.json @@ -0,0 +1,192 @@ +{ + "Update-AzDatabricksVNetPeering+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspace2h9lsa/virtualNetworkPeerings/vnetpeering-qf6zgw?api-version=2018-04-01+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspace2h9lsa/virtualNetworkPeerings/vnetpeering-qf6zgw?api-version=2018-04-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1" ], + "x-ms-client-request-id": [ "a3fa7f9b-7770-4388-bf68-384c03ae9dd4" ], + "CommandName": [ "Get-AzDatabricksVNetPeering" ], + "FullCommandName": [ "Get-AzDatabricksVNetPeering_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "X-Frame-Options": [ "SAMEORIGIN" ], + "X-XSS-Protection": [ "1; mode=block" ], + "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "204b52c8755943eda3c137b53ef5bacb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], + "x-ms-correlation-request-id": [ "27ee36c9-d362-42a9-b813-a04d98974870" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200917T033011Z:27ee36c9-d362-42a9-b813-a04d98974870" ], + "Date": [ "Thu, 17 Sep 2020 03:30:10 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "927" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspace2h9lsa/virtualNetworkPeerings/vnetpeering-qf6zgw\",\"name\":\"vnetpeering-qf6zgw\",\"properties\":{\"allowVirtualNetworkAccess\":true,\"allowForwardedTraffic\":false,\"allowGatewayTransit\":false,\"useRemoteGateways\":false,\"remoteVirtualNetwork\":{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Network/virtualNetworks/databricks-vnet-hkgl9r\"},\"remoteAddressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"databricksVirtualNetwork\":{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspace2h9lsa-91e5h3uw20k7d/providers/Microsoft.Network/virtualNetworks/workers-vnet\"},\"databricksAddressSpace\":{\"addressPrefixes\":[\"10.139.0.0/16\"]},\"peeringState\":\"Initiated\",\"provisioningState\":\"Succeeded\"}}\n" + } + }, + "Update-AzDatabricksVNetPeering+[NoContext]+UpdateExpanded+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspace2h9lsa/virtualNetworkPeerings/vnetpeering-qf6zgw?api-version=2018-04-01+2": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspace2h9lsa/virtualNetworkPeerings/vnetpeering-qf6zgw?api-version=2018-04-01", + "Content": "{\r\n \"properties\": {\r\n \"databricksVirtualNetwork\": {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspace2h9lsa-91e5h3uw20k7d/providers/Microsoft.Network/virtualNetworks/workers-vnet\"\r\n },\r\n \"databricksAddressSpace\": {\r\n \"addressPrefixes\": [ \"10.139.0.0/16\" ]\r\n },\r\n \"remoteVirtualNetwork\": {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Network/virtualNetworks/databricks-vnet-hkgl9r\"\r\n },\r\n \"remoteAddressSpace\": {\r\n \"addressPrefixes\": [ \"10.0.0.0/16\" ]\r\n },\r\n \"allowVirtualNetworkAccess\": true,\r\n \"allowForwardedTraffic\": true,\r\n \"allowGatewayTransit\": false,\r\n \"useRemoteGateways\": false\r\n }\r\n}", + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "774" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "X-Frame-Options": [ "SAMEORIGIN" ], + "X-XSS-Protection": [ "1; mode=block" ], + "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "74a27544caeb418fad56587bc51e5301" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], + "x-ms-correlation-request-id": [ "54402289-fd64-4bbc-be7b-93e40fbb4f28" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200917T033012Z:54402289-fd64-4bbc-be7b-93e40fbb4f28" ], + "Date": [ "Thu, 17 Sep 2020 03:30:12 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "925" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspace2h9lsa/virtualNetworkPeerings/vnetpeering-qf6zgw\",\"name\":\"vnetpeering-qf6zgw\",\"properties\":{\"allowVirtualNetworkAccess\":true,\"allowForwardedTraffic\":true,\"allowGatewayTransit\":false,\"useRemoteGateways\":false,\"remoteVirtualNetwork\":{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Network/virtualNetworks/databricks-vnet-hkgl9r\"},\"remoteAddressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"databricksVirtualNetwork\":{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspace2h9lsa-91e5h3uw20k7d/providers/Microsoft.Network/virtualNetworks/workers-vnet\"},\"databricksAddressSpace\":{\"addressPrefixes\":[\"10.139.0.0/16\"]},\"peeringState\":\"Initiated\",\"provisioningState\":\"Updating\"}}\n" + } + }, + "Update-AzDatabricksVNetPeering+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspace2h9lsa/virtualNetworkPeerings/vnetpeering-qf6zgw?api-version=2018-04-01+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspace2h9lsa/virtualNetworkPeerings/vnetpeering-qf6zgw?api-version=2018-04-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "3" ], + "x-ms-client-request-id": [ "9708fc19-a730-4ba8-95b5-fbf032656c19" ], + "CommandName": [ "Get-AzDatabricksVNetPeering" ], + "FullCommandName": [ "Get-AzDatabricksVNetPeering_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "X-Frame-Options": [ "SAMEORIGIN" ], + "X-XSS-Protection": [ "1; mode=block" ], + "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "eef70da66bf946eeb8828c72cc936660" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], + "x-ms-correlation-request-id": [ "8fb95c46-7d76-463a-a9bf-559fdc634e9f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200917T033013Z:8fb95c46-7d76-463a-a9bf-559fdc634e9f" ], + "Date": [ "Thu, 17 Sep 2020 03:30:13 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "926" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspace2h9lsa/virtualNetworkPeerings/vnetpeering-qf6zgw\",\"name\":\"vnetpeering-qf6zgw\",\"properties\":{\"allowVirtualNetworkAccess\":true,\"allowForwardedTraffic\":true,\"allowGatewayTransit\":false,\"useRemoteGateways\":false,\"remoteVirtualNetwork\":{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Network/virtualNetworks/databricks-vnet-hkgl9r\"},\"remoteAddressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"databricksVirtualNetwork\":{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspace2h9lsa-91e5h3uw20k7d/providers/Microsoft.Network/virtualNetworks/workers-vnet\"},\"databricksAddressSpace\":{\"addressPrefixes\":[\"10.139.0.0/16\"]},\"peeringState\":\"Initiated\",\"provisioningState\":\"Succeeded\"}}\n" + } + }, + "Update-AzDatabricksVNetPeering+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspace2h9lsa/virtualNetworkPeerings/vnetpeering-qf6zgw?api-version=2018-04-01+2": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspace2h9lsa/virtualNetworkPeerings/vnetpeering-qf6zgw?api-version=2018-04-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "4" ], + "x-ms-client-request-id": [ "f8bd2516-b726-419c-ae20-eba5c8599a6e" ], + "CommandName": [ "Get-AzDatabricksVNetPeering" ], + "FullCommandName": [ "Get-AzDatabricksVNetPeering_GetViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "X-Frame-Options": [ "SAMEORIGIN" ], + "X-XSS-Protection": [ "1; mode=block" ], + "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "21374c99441946949212c5692570fbc0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], + "x-ms-correlation-request-id": [ "4dbfbb5c-4991-4bf7-8664-409f8679ab23" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200917T033014Z:4dbfbb5c-4991-4bf7-8664-409f8679ab23" ], + "Date": [ "Thu, 17 Sep 2020 03:30:13 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "926" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspace2h9lsa/virtualNetworkPeerings/vnetpeering-qf6zgw\",\"name\":\"vnetpeering-qf6zgw\",\"properties\":{\"allowVirtualNetworkAccess\":true,\"allowForwardedTraffic\":true,\"allowGatewayTransit\":false,\"useRemoteGateways\":false,\"remoteVirtualNetwork\":{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Network/virtualNetworks/databricks-vnet-hkgl9r\"},\"remoteAddressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"databricksVirtualNetwork\":{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspace2h9lsa-91e5h3uw20k7d/providers/Microsoft.Network/virtualNetworks/workers-vnet\"},\"databricksAddressSpace\":{\"addressPrefixes\":[\"10.139.0.0/16\"]},\"peeringState\":\"Initiated\",\"provisioningState\":\"Succeeded\"}}\n" + } + }, + "Update-AzDatabricksVNetPeering+[NoContext]+UpdateViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspace2h9lsa/virtualNetworkPeerings/vnetpeering-qf6zgw?api-version=2018-04-01+3": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspace2h9lsa/virtualNetworkPeerings/vnetpeering-qf6zgw?api-version=2018-04-01", + "Content": "{\r\n \"properties\": {\r\n \"databricksVirtualNetwork\": {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspace2h9lsa-91e5h3uw20k7d/providers/Microsoft.Network/virtualNetworks/workers-vnet\"\r\n },\r\n \"databricksAddressSpace\": {\r\n \"addressPrefixes\": [ \"10.139.0.0/16\" ]\r\n },\r\n \"remoteVirtualNetwork\": {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Network/virtualNetworks/databricks-vnet-hkgl9r\"\r\n },\r\n \"remoteAddressSpace\": {\r\n \"addressPrefixes\": [ \"10.0.0.0/16\" ]\r\n },\r\n \"allowVirtualNetworkAccess\": true,\r\n \"allowForwardedTraffic\": false,\r\n \"allowGatewayTransit\": false,\r\n \"useRemoteGateways\": false\r\n }\r\n}", + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "775" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "X-Frame-Options": [ "SAMEORIGIN" ], + "X-XSS-Protection": [ "1; mode=block" ], + "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "47b5836a24a745d69100d2e88437a0a5" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], + "x-ms-correlation-request-id": [ "79cf6615-a47c-4af4-ac90-9c65ecf9f3f2" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200917T033015Z:79cf6615-a47c-4af4-ac90-9c65ecf9f3f2" ], + "Date": [ "Thu, 17 Sep 2020 03:30:14 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "926" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspace2h9lsa/virtualNetworkPeerings/vnetpeering-qf6zgw\",\"name\":\"vnetpeering-qf6zgw\",\"properties\":{\"allowVirtualNetworkAccess\":true,\"allowForwardedTraffic\":false,\"allowGatewayTransit\":false,\"useRemoteGateways\":false,\"remoteVirtualNetwork\":{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Network/virtualNetworks/databricks-vnet-hkgl9r\"},\"remoteAddressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"databricksVirtualNetwork\":{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspace2h9lsa-91e5h3uw20k7d/providers/Microsoft.Network/virtualNetworks/workers-vnet\"},\"databricksAddressSpace\":{\"addressPrefixes\":[\"10.139.0.0/16\"]},\"peeringState\":\"Initiated\",\"provisioningState\":\"Updating\"}}\n" + } + } +} \ No newline at end of file diff --git a/src/Databricks/test/Update-AzDatabricksVNetPeering.Tests.ps1 b/src/Databricks/test/Update-AzDatabricksVNetPeering.Tests.ps1 new file mode 100644 index 000000000000..c8844fbdfe41 --- /dev/null +++ b/src/Databricks/test/Update-AzDatabricksVNetPeering.Tests.ps1 @@ -0,0 +1,25 @@ +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' +} +. ($loadEnvPath) +$TestRecordingFile = Join-Path $PSScriptRoot 'Update-AzDatabricksVNetPeering.Recording.json' +$currentPath = $PSScriptRoot +while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent +} +. ($mockingPath | Select-Object -First 1).FullName + +Describe 'Update-AzDatabricksVNetPeering' { + It 'UpdateExpanded' { + $vnetPeering = Update-AzDatabricksVNetPeering -Name $env.vnetpeeringname01 -WorkspaceName $env.testWorkspace1 -ResourceGroupName $env.resourceGroup -AllowForwardedTraffic $True + $vnetPeering.AllowForwardedTraffic | Should -Be $True + } + + It 'UpdateViaIdentityExpanded' { + $vnetPeering = Get-AzDatabricksVNetPeering -Name $env.vnetpeeringname01 -WorkspaceName $env.testWorkspace1 -ResourceGroupName $env.resourceGroup + $vnetPeering = Update-AzDatabricksVNetPeering -InputObject $vnetPeering -AllowForwardedTraffic $False + $vnetPeering.AllowForwardedTraffic | Should -Be $False + } +} diff --git a/src/Databricks/test/Update-AzDatabricksWorkspace.Recording.json b/src/Databricks/test/Update-AzDatabricksWorkspace.Recording.json index fdde705d870e..64d148c6acf3 100644 --- a/src/Databricks/test/Update-AzDatabricksWorkspace.Recording.json +++ b/src/Databricks/test/Update-AzDatabricksWorkspace.Recording.json @@ -1,12 +1,12 @@ { - "Update-AzDatabricksWorkspace+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/workspacer4t17j?api-version=2018-04-01+1": { + "Update-AzDatabricksWorkspace+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspace2h9lsa?api-version=2018-04-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/workspacer4t17j?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspace2h9lsa?api-version=2018-04-01", "Content": null, "Headers": { "x-ms-unique-id": [ "1" ], - "x-ms-client-request-id": [ "83e363b9-d27d-4c76-ab3a-7e62e8ab381b" ], + "x-ms-client-request-id": [ "19baea49-5ad1-40ca-b753-667a86cc00f3" ], "CommandName": [ "Get-AzDatabricksWorkspace" ], "FullCommandName": [ "Get-AzDatabricksWorkspace_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -22,32 +22,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ "eastus:de2d524e-2ebe-45aa-9fce-047491883072" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], - "x-ms-correlation-request-id": [ "e5128297-ab5a-4938-8f2c-d630d0491c76" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T020253Z:e5128297-ab5a-4938-8f2c-d630d0491c76" ], + "x-ms-request-id": [ "eastus:27a0f433-3c1b-4780-93a7-2cb7ea439507" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11951" ], + "x-ms-correlation-request-id": [ "e7b32c4a-5f33-4073-a53e-ea85ebccd533" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090612Z:e7b32c4a-5f33-4073-a53e-ea85ebccd533" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 02:02:52 GMT" ] + "Date": [ "Tue, 15 Sep 2020 09:06:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1943" ], + "Content-Length": [ "1919" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspacer4t17j-gvh3jmdk98b5e\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":false},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelaysqri6hhvo3znq\"},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstoragesqri6hhvo3znq\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"5053158997606644\",\"workspaceUrl\":\"adb-5053158997606644.4.azuredatabricks.net\",\"createdDateTime\":\"2020-07-28T10:14:30.6958761Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/workspacer4t17j\",\"name\":\"workspacer4t17j\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"standard\"},\"location\":\"eastus\",\"tags\":{\"mark\":\"home\"}}" + "Content": "{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspace2h9lsa-91e5h3uw20k7d\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":false},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelayrkzgqo2p6bn56\"},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstoragerkzgqo2p6bn56\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"745942210722998\",\"workspaceUrl\":\"adb-745942210722998.18.azuredatabricks.net\",\"createdDateTime\":\"2020-09-15T08:12:13.3765851Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspace2h9lsa\",\"name\":\"workspace2h9lsa\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"standard\"},\"location\":\"eastus\"}" } }, - "Update-AzDatabricksWorkspace+[NoContext]+UpdateExpanded+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/workspacer4t17j?api-version=2018-04-01+2": { + "Update-AzDatabricksWorkspace+[NoContext]+UpdateExpanded+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspace2h9lsa?api-version=2018-04-01+2": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/workspacer4t17j?api-version=2018-04-01", - "Content": "{\n \"location\": \"eastus\",\n \"tags\": {\n \"mark\": \"home\"\n },\n \"properties\": {\n \"parameters\": {\n \"amlWorkspaceId\": {\n \"value\": \"\"\n },\n \"customPrivateSubnetName\": {\n \"value\": \"\"\n },\n \"customPublicSubnetName\": {\n \"value\": \"\"\n },\n \"customVirtualNetworkId\": {\n \"value\": \"\"\n },\n \"enableNoPublicIp\": {\n \"value\": false\n },\n \"prepareEncryption\": {\n \"value\": false\n },\n \"requireInfrastructureEncryption\": {\n \"value\": false\n }\n },\n \"authorizations\": [\n {\n \"principalId\": \"9a74af6f-d153-4348-988a-e2672920bee9\",\n \"roleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\n }\n ],\n \"managedResourceGroupId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspacer4t17j-gvh3jmdk98b5e\"\n },\n \"sku\": {\n \"name\": \"standard\"\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspace2h9lsa?api-version=2018-04-01", + "Content": "{\r\n \"tags\": {\r\n \"mark\": \"home\"\r\n },\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"amlWorkspaceId\": {\r\n \"value\": \"\"\r\n },\r\n \"customVirtualNetworkId\": {\r\n \"value\": \"\"\r\n },\r\n \"customPublicSubnetName\": {\r\n \"value\": \"\"\r\n },\r\n \"customPrivateSubnetName\": {\r\n \"value\": \"\"\r\n },\r\n \"enableNoPublicIp\": {\r\n \"value\": false\r\n },\r\n \"prepareEncryption\": {\r\n \"value\": false\r\n },\r\n \"requireInfrastructureEncryption\": {\r\n \"value\": false\r\n }\r\n },\r\n \"managedResourceGroupId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspace2h9lsa-91e5h3uw20k7d\",\r\n \"authorizations\": [\r\n {\r\n \"principalId\": \"9a74af6f-d153-4348-988a-e2672920bee9\",\r\n \"roleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n }\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "911" ] + "Content-Length": [ "951" ] } }, "Response": { @@ -56,30 +56,30 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ "eastus:bb1a7d4a-5641-4cfb-a25b-c0f0ff6ef6b5" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-correlation-request-id": [ "c7d01d03-5650-46cf-adba-d72caf1d3498" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T020254Z:c7d01d03-5650-46cf-adba-d72caf1d3498" ], + "x-ms-request-id": [ "eastus:3c03dba5-ccc2-4c0c-ba28-215be1fce268" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], + "x-ms-correlation-request-id": [ "358cf1e1-e078-4323-9636-e81590d562ed" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090617Z:358cf1e1-e078-4323-9636-e81590d562ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 02:02:53 GMT" ] + "Date": [ "Tue, 15 Sep 2020 09:06:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1943" ], + "Content-Length": [ "1942" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspacer4t17j-gvh3jmdk98b5e\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":false},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelaysqri6hhvo3znq\"},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstoragesqri6hhvo3znq\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"5053158997606644\",\"workspaceUrl\":\"adb-5053158997606644.4.azuredatabricks.net\",\"createdDateTime\":\"2020-07-28T10:14:30.6958761Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/workspacer4t17j\",\"name\":\"workspacer4t17j\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"standard\"},\"location\":\"eastus\",\"tags\":{\"mark\":\"home\"}}" + "Content": "{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspace2h9lsa-91e5h3uw20k7d\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":false},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelayrkzgqo2p6bn56\"},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstoragerkzgqo2p6bn56\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"745942210722998\",\"workspaceUrl\":\"adb-745942210722998.18.azuredatabricks.net\",\"createdDateTime\":\"2020-09-15T08:12:13.3765851Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspace2h9lsa\",\"name\":\"workspace2h9lsa\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"standard\"},\"location\":\"eastus\",\"tags\":{\"mark\":\"home\"}}" } }, - "Update-AzDatabricksWorkspace+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/workspaceoucdxr?api-version=2018-04-01+1": { + "Update-AzDatabricksWorkspace+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspaceoitxq9?api-version=2018-04-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/workspaceoucdxr?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspaceoitxq9?api-version=2018-04-01", "Content": null, "Headers": { "x-ms-unique-id": [ "3" ], - "x-ms-client-request-id": [ "c39048f6-58c6-4203-bf77-3cd14b5aab96" ], + "x-ms-client-request-id": [ "dee99d34-b3f8-4402-8536-e232296a7794" ], "CommandName": [ "Get-AzDatabricksWorkspace" ], "FullCommandName": [ "Get-AzDatabricksWorkspace_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -95,30 +95,30 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ "eastus:69faa795-d645-4ea3-b878-0c4c3cd9afeb" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], - "x-ms-correlation-request-id": [ "a8b9f314-9657-4e06-9d8d-34d9be5ff98a" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T020254Z:a8b9f314-9657-4e06-9d8d-34d9be5ff98a" ], + "x-ms-request-id": [ "eastus:754927e1-29b6-4f2e-8bc0-dbce3def017f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11950" ], + "x-ms-correlation-request-id": [ "c4b75991-bd24-4419-a519-c7f8982dc37e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090618Z:c4b75991-bd24-4419-a519-c7f8982dc37e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 02:02:54 GMT" ] + "Date": [ "Tue, 15 Sep 2020 09:06:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1978" ], + "Content-Length": [ "1921" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspaceoucdxr-hyd8jzqbcfxa6\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":false},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelayi6xrwuupa5p5m\"},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstoragei6xrwuupa5p5m\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"4425921085288378\",\"workspaceUrl\":\"adb-4425921085288378.18.azuredatabricks.net\",\"createdDateTime\":\"2020-07-28T10:16:57.6256212Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/workspaceoucdxr\",\"name\":\"workspaceoucdxr\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"standard\"},\"location\":\"eastus\",\"tags\":{\"purpose\":\"job\",\"mark\":\"home\",\"owner\":\"Charlie\"}}" + "Content": "{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspaceoitxq9-ej05na4c7risu\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":false},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelaylydpgxwk636k6\"},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstoragelydpgxwk636k6\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"4524465090250551\",\"workspaceUrl\":\"adb-4524465090250551.11.azuredatabricks.net\",\"createdDateTime\":\"2020-09-15T08:14:39.7010037Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspaceoitxq9\",\"name\":\"workspaceoitxq9\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"standard\"},\"location\":\"eastus\"}" } }, - "Update-AzDatabricksWorkspace+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/workspaceoucdxr?api-version=2018-04-01+2": { + "Update-AzDatabricksWorkspace+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspaceoitxq9?api-version=2018-04-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/workspaceoucdxr?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspaceoitxq9?api-version=2018-04-01", "Content": null, "Headers": { "x-ms-unique-id": [ "4" ], - "x-ms-client-request-id": [ "097886c5-0a72-47e9-bab2-76e64152070d" ], + "x-ms-client-request-id": [ "dc003a86-8c5a-49ab-8ecf-ff4aa703a436" ], "CommandName": [ "Get-AzDatabricksWorkspace" ], "FullCommandName": [ "Get-AzDatabricksWorkspace_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -134,32 +134,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ "eastus:b0359785-26e7-4c11-a8f3-5b12eb02ace5" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "535c87b3-623e-42f0-89f2-4120a55f3ec2" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T020255Z:535c87b3-623e-42f0-89f2-4120a55f3ec2" ], + "x-ms-request-id": [ "eastus:3641b8ec-0f45-4099-a19f-238b0af37ab9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11949" ], + "x-ms-correlation-request-id": [ "42b30c47-0050-4f16-8b4d-0a0fee1968ab" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090618Z:42b30c47-0050-4f16-8b4d-0a0fee1968ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 02:02:54 GMT" ] + "Date": [ "Tue, 15 Sep 2020 09:06:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1978" ], + "Content-Length": [ "1921" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspaceoucdxr-hyd8jzqbcfxa6\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":false},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelayi6xrwuupa5p5m\"},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstoragei6xrwuupa5p5m\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"4425921085288378\",\"workspaceUrl\":\"adb-4425921085288378.18.azuredatabricks.net\",\"createdDateTime\":\"2020-07-28T10:16:57.6256212Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/workspaceoucdxr\",\"name\":\"workspaceoucdxr\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"standard\"},\"location\":\"eastus\",\"tags\":{\"purpose\":\"job\",\"mark\":\"home\",\"owner\":\"Charlie\"}}" + "Content": "{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspaceoitxq9-ej05na4c7risu\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":false},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelaylydpgxwk636k6\"},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstoragelydpgxwk636k6\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"4524465090250551\",\"workspaceUrl\":\"adb-4524465090250551.11.azuredatabricks.net\",\"createdDateTime\":\"2020-09-15T08:14:39.7010037Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspaceoitxq9\",\"name\":\"workspaceoitxq9\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"standard\"},\"location\":\"eastus\"}" } }, - "Update-AzDatabricksWorkspace+[NoContext]+UpdateViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/workspaceoucdxr?api-version=2018-04-01+3": { + "Update-AzDatabricksWorkspace+[NoContext]+UpdateViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspaceoitxq9?api-version=2018-04-01+3": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/workspaceoucdxr?api-version=2018-04-01", - "Content": "{\n \"location\": \"eastus\",\n \"tags\": {\n \"purpose\": \"job\",\n \"mark\": \"home\",\n \"owner\": \"Charlie\"\n },\n \"properties\": {\n \"parameters\": {\n \"amlWorkspaceId\": {\n \"value\": \"\"\n },\n \"customPrivateSubnetName\": {\n \"value\": \"\"\n },\n \"customPublicSubnetName\": {\n \"value\": \"\"\n },\n \"customVirtualNetworkId\": {\n \"value\": \"\"\n },\n \"enableNoPublicIp\": {\n \"value\": false\n },\n \"prepareEncryption\": {\n \"value\": false\n },\n \"requireInfrastructureEncryption\": {\n \"value\": false\n }\n },\n \"authorizations\": [\n {\n \"principalId\": \"9a74af6f-d153-4348-988a-e2672920bee9\",\n \"roleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\n }\n ],\n \"managedResourceGroupId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspaceoucdxr-hyd8jzqbcfxa6\"\n },\n \"sku\": {\n \"name\": \"standard\"\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspaceoitxq9?api-version=2018-04-01", + "Content": "{\r\n \"tags\": {\r\n \"owner\": \"Charlie\",\r\n \"mark\": \"home\",\r\n \"purpose\": \"job\"\r\n },\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"amlWorkspaceId\": {\r\n \"value\": \"\"\r\n },\r\n \"customVirtualNetworkId\": {\r\n \"value\": \"\"\r\n },\r\n \"customPublicSubnetName\": {\r\n \"value\": \"\"\r\n },\r\n \"customPrivateSubnetName\": {\r\n \"value\": \"\"\r\n },\r\n \"enableNoPublicIp\": {\r\n \"value\": false\r\n },\r\n \"prepareEncryption\": {\r\n \"value\": false\r\n },\r\n \"requireInfrastructureEncryption\": {\r\n \"value\": false\r\n }\r\n },\r\n \"managedResourceGroupId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspaceoitxq9-ej05na4c7risu\",\r\n \"authorizations\": [\r\n {\r\n \"principalId\": \"9a74af6f-d153-4348-988a-e2672920bee9\",\r\n \"roleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n }\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "957" ] + "Content-Length": [ "999" ] } }, "Response": { @@ -168,30 +168,30 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ "eastus:f8c91c11-302c-4a82-968d-5ed613c68092" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], - "x-ms-correlation-request-id": [ "b28f4735-6bbb-4f96-9150-55e1433fe74a" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T020256Z:b28f4735-6bbb-4f96-9150-55e1433fe74a" ], + "x-ms-request-id": [ "eastus:7aa88754-2948-4216-82a5-5451d1f3cf7e" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1195" ], + "x-ms-correlation-request-id": [ "90ce2733-acc8-4b67-a624-79f5611eaffe" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090622Z:90ce2733-acc8-4b67-a624-79f5611eaffe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 02:02:55 GMT" ] + "Date": [ "Tue, 15 Sep 2020 09:06:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1978" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspaceoucdxr-hyd8jzqbcfxa6\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":false},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelayi6xrwuupa5p5m\"},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstoragei6xrwuupa5p5m\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"4425921085288378\",\"workspaceUrl\":\"adb-4425921085288378.18.azuredatabricks.net\",\"createdDateTime\":\"2020-07-28T10:16:57.6256212Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/workspaceoucdxr\",\"name\":\"workspaceoucdxr\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"standard\"},\"location\":\"eastus\",\"tags\":{\"purpose\":\"job\",\"mark\":\"home\",\"owner\":\"Charlie\"}}" + "Content": "{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspaceoitxq9-ej05na4c7risu\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":false},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelaylydpgxwk636k6\"},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstoragelydpgxwk636k6\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"4524465090250551\",\"workspaceUrl\":\"adb-4524465090250551.11.azuredatabricks.net\",\"createdDateTime\":\"2020-09-15T08:14:39.7010037Z\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspaceoitxq9\",\"name\":\"workspaceoitxq9\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"standard\"},\"location\":\"eastus\",\"tags\":{\"owner\":\"Charlie\",\"mark\":\"home\",\"purpose\":\"job\"}}" } }, - "Update-AzDatabricksWorkspace+[NoContext]+UpdateViaIdentityForEncryption+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/workspace15zbvr?api-version=2018-04-01+1": { + "Update-AzDatabricksWorkspace+[NoContext]+UpdateViaIdentityForEncryption+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspace9beui8?api-version=2018-04-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/workspace15zbvr?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspace9beui8?api-version=2018-04-01", "Content": null, "Headers": { "x-ms-unique-id": [ "6" ], - "x-ms-client-request-id": [ "4b4ded4b-6458-489e-9be2-13c4aec00da9" ], + "x-ms-client-request-id": [ "5c876934-d609-464c-8edb-cceffa4ef796" ], "CommandName": [ "Get-AzDatabricksWorkspace" ], "FullCommandName": [ "Get-AzDatabricksWorkspace_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -207,30 +207,30 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ "eastus2:1635a8af-6724-4e81-8d89-e592b55e9709" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "cb5adf3c-0a06-4e8c-a0fa-4600c7dfab11" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T020257Z:cb5adf3c-0a06-4e8c-a0fa-4600c7dfab11" ], + "x-ms-request-id": [ "eastus2euap:ea82e991-2453-4ff6-8a0e-e3c1416d2027" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11948" ], + "x-ms-correlation-request-id": [ "9c83b23c-61f6-41c9-91c0-3e740e981feb" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090624Z:9c83b23c-61f6-41c9-91c0-3e740e981feb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 02:02:57 GMT" ] + "Date": [ "Tue, 15 Sep 2020 09:06:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2143" ], + "Content-Length": [ "2081" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspace15zbvr-s7axd0k1jctnf\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":true},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelayymocstdjbwtng\"},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstorageymocstdjbwtng\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"},\"encryption\":{\"type\":\"Object\",\"value\":{\"keySource\":\"Default\"}}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"3752552724804541\",\"workspaceUrl\":\"adb-3752552724804541.1.azuredatabricks.net\",\"createdDateTime\":\"2020-07-28T10:19:25.7963578Z\",\"storageAccountIdentity\":{\"principalId\":\"8f08c73f-f31e-4c62-9d8f-1236b95c5c98\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"}},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/workspace15zbvr\",\"name\":\"workspace15zbvr\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"premium\"},\"location\":\"East US 2 EUAP\"}" + "Content": "{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspace9beui8-szog17y8qlaf0\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":true},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelayvqdw6ydg5rv6q\"},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstoragevqdw6ydg5rv6q\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"8296759595683497\",\"workspaceUrl\":\"adb-8296759595683497.17.azuredatabricks.net\",\"createdDateTime\":\"2020-09-15T08:17:07.7376655Z\",\"storageAccountIdentity\":{\"principalId\":\"8cc21aea-077f-48a5-a3e0-14fe357919c5\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"}},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspace9beui8\",\"name\":\"workspace9beui8\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"premium\"},\"location\":\"East US 2 EUAP\"}" } }, - "Update-AzDatabricksWorkspace+[NoContext]+UpdateViaIdentityForEncryption+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/workspace15zbvr?api-version=2018-04-01+2": { + "Update-AzDatabricksWorkspace+[NoContext]+UpdateViaIdentityForEncryption+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspace9beui8?api-version=2018-04-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/workspace15zbvr?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspace9beui8?api-version=2018-04-01", "Content": null, "Headers": { "x-ms-unique-id": [ "7" ], - "x-ms-client-request-id": [ "7ff56737-e1f1-4a55-bb49-1ded9bcf3fb0" ], + "x-ms-client-request-id": [ "dfe9e213-a427-4482-89e3-d74d2a1156ac" ], "CommandName": [ "Get-AzDatabricksWorkspace" ], "FullCommandName": [ "Get-AzDatabricksWorkspace_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -246,32 +246,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ "eastus2:5414e0ec-153b-4174-b9fa-bfe3ffdca494" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "dacd913e-7dad-49da-8a7f-6853c77f1491" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T020258Z:dacd913e-7dad-49da-8a7f-6853c77f1491" ], + "x-ms-request-id": [ "eastus2euap:7776c00d-0338-477d-818b-f0414d0df9d1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11947" ], + "x-ms-correlation-request-id": [ "db5f07e1-662d-4661-bea4-668b19795c70" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090625Z:db5f07e1-662d-4661-bea4-668b19795c70" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 02:02:58 GMT" ] + "Date": [ "Tue, 15 Sep 2020 09:06:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2143" ], + "Content-Length": [ "2081" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspace15zbvr-s7axd0k1jctnf\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":true},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelayymocstdjbwtng\"},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstorageymocstdjbwtng\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"},\"encryption\":{\"type\":\"Object\",\"value\":{\"keySource\":\"Default\"}}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"3752552724804541\",\"workspaceUrl\":\"adb-3752552724804541.1.azuredatabricks.net\",\"createdDateTime\":\"2020-07-28T10:19:25.7963578Z\",\"storageAccountIdentity\":{\"principalId\":\"8f08c73f-f31e-4c62-9d8f-1236b95c5c98\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"}},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/workspace15zbvr\",\"name\":\"workspace15zbvr\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"premium\"},\"location\":\"East US 2 EUAP\"}" + "Content": "{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspace9beui8-szog17y8qlaf0\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":true},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelayvqdw6ydg5rv6q\"},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstoragevqdw6ydg5rv6q\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"8296759595683497\",\"workspaceUrl\":\"adb-8296759595683497.17.azuredatabricks.net\",\"createdDateTime\":\"2020-09-15T08:17:07.7376655Z\",\"storageAccountIdentity\":{\"principalId\":\"8cc21aea-077f-48a5-a3e0-14fe357919c5\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"}},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspace9beui8\",\"name\":\"workspace9beui8\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"premium\"},\"location\":\"East US 2 EUAP\"}" } }, - "Update-AzDatabricksWorkspace+[NoContext]+UpdateViaIdentityForEncryption+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/workspace15zbvr?api-version=2018-04-01+3": { + "Update-AzDatabricksWorkspace+[NoContext]+UpdateViaIdentityForEncryption+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspace9beui8?api-version=2018-04-01+3": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/workspace15zbvr?api-version=2018-04-01", - "Content": "{\n \"location\": \"East US 2 EUAP\",\n \"properties\": {\n \"parameters\": {\n \"amlWorkspaceId\": {\n \"value\": \"\"\n },\n \"customPrivateSubnetName\": {\n \"value\": \"\"\n },\n \"customPublicSubnetName\": {\n \"value\": \"\"\n },\n \"customVirtualNetworkId\": {\n \"value\": \"\"\n },\n \"enableNoPublicIp\": {\n \"value\": false\n },\n \"encryption\": {\n \"value\": {\n \"KeyName\": \"key-e4zv2d\",\n \"keySource\": \"Microsoft.KeyVault\",\n \"keyvaulturi\": \"https://keyvalult-3yvhci.vault.azure.net/\",\n \"keyversion\": \"bfd2090894e740b48c7d2d35d32b418b\"\n }\n },\n \"prepareEncryption\": {\n \"value\": true\n },\n \"requireInfrastructureEncryption\": {\n \"value\": false\n }\n },\n \"authorizations\": [\n {\n \"principalId\": \"9a74af6f-d153-4348-988a-e2672920bee9\",\n \"roleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\n }\n ],\n \"managedResourceGroupId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspace15zbvr-s7axd0k1jctnf\"\n },\n \"sku\": {\n \"name\": \"premium\"\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspace9beui8?api-version=2018-04-01", + "Content": "{\r\n \"location\": \"East US 2 EUAP\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"amlWorkspaceId\": {\r\n \"value\": \"\"\r\n },\r\n \"customVirtualNetworkId\": {\r\n \"value\": \"\"\r\n },\r\n \"customPublicSubnetName\": {\r\n \"value\": \"\"\r\n },\r\n \"customPrivateSubnetName\": {\r\n \"value\": \"\"\r\n },\r\n \"enableNoPublicIp\": {\r\n \"value\": false\r\n },\r\n \"prepareEncryption\": {\r\n \"value\": true\r\n },\r\n \"encryption\": {\r\n \"value\": {\r\n \"keySource\": \"Microsoft.KeyVault\",\r\n \"KeyName\": \"key-teqwlk\",\r\n \"keyversion\": \"7d432edb08704e02a36cdf6281f6d538\",\r\n \"keyvaulturi\": \"https://keyvalult-42fem7.vault.azure.net/\"\r\n }\r\n },\r\n \"requireInfrastructureEncryption\": {\r\n \"value\": false\r\n }\r\n },\r\n \"managedResourceGroupId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspace9beui8-szog17y8qlaf0\",\r\n \"authorizations\": [\r\n {\r\n \"principalId\": \"9a74af6f-d153-4348-988a-e2672920bee9\",\r\n \"roleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"premium\"\r\n }\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "1150" ] + "Content-Length": [ "1195" ] } }, "Response": { @@ -280,30 +280,30 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ "eastus2:1d07e474-55a7-4098-bcd1-a10cfd01ef89" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], - "x-ms-correlation-request-id": [ "3fe62676-6c65-4b52-a593-c0a365da2b51" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T020300Z:3fe62676-6c65-4b52-a593-c0a365da2b51" ], + "x-ms-request-id": [ "eastus2euap:e64fdd7a-562b-4c18-a18e-b0ae7b5c4d92" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1194" ], + "x-ms-correlation-request-id": [ "535ba81c-e71f-4fa8-aadd-af41b1db8740" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090628Z:535ba81c-e71f-4fa8-aadd-af41b1db8740" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 02:03:00 GMT" ] + "Date": [ "Tue, 15 Sep 2020 09:06:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2283" ], + "Content-Length": [ "2284" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspace15zbvr-s7axd0k1jctnf\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":true},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelayymocstdjbwtng\"},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstorageymocstdjbwtng\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"},\"encryption\":{\"type\":\"Object\",\"value\":{\"keySource\":\"Microsoft.Keyvault\",\"keyvaulturi\":\"https://keyvalult-3yvhci.vault.azure.net/\",\"KeyName\":\"key-e4zv2d\",\"keyversion\":\"bfd2090894e740b48c7d2d35d32b418b\"}}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"3752552724804541\",\"workspaceUrl\":\"adb-3752552724804541.1.azuredatabricks.net\",\"createdDateTime\":\"2020-07-28T10:19:25.7963578Z\",\"storageAccountIdentity\":{\"principalId\":\"8f08c73f-f31e-4c62-9d8f-1236b95c5c98\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"}},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/workspace15zbvr\",\"name\":\"workspace15zbvr\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"premium\"},\"location\":\"East US 2 EUAP\"}" + "Content": "{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspace9beui8-szog17y8qlaf0\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":true},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelayvqdw6ydg5rv6q\"},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstoragevqdw6ydg5rv6q\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"},\"encryption\":{\"type\":\"Object\",\"value\":{\"keySource\":\"Microsoft.Keyvault\",\"keyvaulturi\":\"https://keyvalult-42fem7.vault.azure.net/\",\"KeyName\":\"key-teqwlk\",\"keyversion\":\"7d432edb08704e02a36cdf6281f6d538\"}}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"8296759595683497\",\"workspaceUrl\":\"adb-8296759595683497.17.azuredatabricks.net\",\"createdDateTime\":\"2020-09-15T08:17:07.7376655Z\",\"storageAccountIdentity\":{\"principalId\":\"8cc21aea-077f-48a5-a3e0-14fe357919c5\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"}},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspace9beui8\",\"name\":\"workspace9beui8\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"premium\"},\"location\":\"East US 2 EUAP\"}" } }, - "Update-AzDatabricksWorkspace+[NoContext]+UpdateViaIdentityForEncryption+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/workspace15zbvr?api-version=2018-04-01+4": { + "Update-AzDatabricksWorkspace+[NoContext]+UpdateViaIdentityForEncryption+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspace9beui8?api-version=2018-04-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/workspace15zbvr?api-version=2018-04-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspace9beui8?api-version=2018-04-01", "Content": null, "Headers": { "x-ms-unique-id": [ "9" ], - "x-ms-client-request-id": [ "95f39a31-5901-428c-bf09-0f5b26f0bfac" ], + "x-ms-client-request-id": [ "ad0cc024-29ba-4a42-9a74-55b6bcc6ddec" ], "CommandName": [ "Get-AzDatabricksWorkspace" ], "FullCommandName": [ "Get-AzDatabricksWorkspace_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -319,32 +319,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ "eastus2:31883bde-24e7-47fa-bf0c-32fa80535325" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "c1951ad5-f1b9-44ae-80e2-5cafad429171" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T020300Z:c1951ad5-f1b9-44ae-80e2-5cafad429171" ], + "x-ms-request-id": [ "eastus2euap:14b994ed-10f1-479e-81e8-60bac9d33cc0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11946" ], + "x-ms-correlation-request-id": [ "5386978d-4699-402f-9ee3-f0b6d4fe8a54" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090629Z:5386978d-4699-402f-9ee3-f0b6d4fe8a54" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 02:03:00 GMT" ] + "Date": [ "Tue, 15 Sep 2020 09:06:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2283" ], + "Content-Length": [ "2284" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspace15zbvr-s7axd0k1jctnf\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":true},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelayymocstdjbwtng\"},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstorageymocstdjbwtng\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"},\"encryption\":{\"type\":\"Object\",\"value\":{\"keySource\":\"Microsoft.Keyvault\",\"keyvaulturi\":\"https://keyvalult-3yvhci.vault.azure.net/\",\"KeyName\":\"key-e4zv2d\",\"keyversion\":\"bfd2090894e740b48c7d2d35d32b418b\"}}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"3752552724804541\",\"workspaceUrl\":\"adb-3752552724804541.1.azuredatabricks.net\",\"createdDateTime\":\"2020-07-28T10:19:25.7963578Z\",\"storageAccountIdentity\":{\"principalId\":\"8f08c73f-f31e-4c62-9d8f-1236b95c5c98\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"}},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/workspace15zbvr\",\"name\":\"workspace15zbvr\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"premium\"},\"location\":\"East US 2 EUAP\"}" + "Content": "{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspace9beui8-szog17y8qlaf0\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":true},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelayvqdw6ydg5rv6q\"},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstoragevqdw6ydg5rv6q\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"},\"encryption\":{\"type\":\"Object\",\"value\":{\"keySource\":\"Microsoft.Keyvault\",\"keyvaulturi\":\"https://keyvalult-42fem7.vault.azure.net/\",\"KeyName\":\"key-teqwlk\",\"keyversion\":\"7d432edb08704e02a36cdf6281f6d538\"}}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"8296759595683497\",\"workspaceUrl\":\"adb-8296759595683497.17.azuredatabricks.net\",\"createdDateTime\":\"2020-09-15T08:17:07.7376655Z\",\"storageAccountIdentity\":{\"principalId\":\"8cc21aea-077f-48a5-a3e0-14fe357919c5\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"}},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspace9beui8\",\"name\":\"workspace9beui8\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"premium\"},\"location\":\"East US 2 EUAP\"}" } }, - "Update-AzDatabricksWorkspace+[NoContext]+UpdateViaIdentityForEncryption+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/workspace15zbvr?api-version=2018-04-01+5": { + "Update-AzDatabricksWorkspace+[NoContext]+UpdateViaIdentityForEncryption+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspace9beui8?api-version=2018-04-01+5": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/workspace15zbvr?api-version=2018-04-01", - "Content": "{\n \"location\": \"East US 2 EUAP\",\n \"properties\": {\n \"parameters\": {\n \"amlWorkspaceId\": {\n \"value\": \"\"\n },\n \"customPrivateSubnetName\": {\n \"value\": \"\"\n },\n \"customPublicSubnetName\": {\n \"value\": \"\"\n },\n \"customVirtualNetworkId\": {\n \"value\": \"\"\n },\n \"enableNoPublicIp\": {\n \"value\": false\n },\n \"encryption\": {\n \"value\": {\n \"KeyName\": \"key-e4zv2d\",\n \"keySource\": \"Default\",\n \"keyvaulturi\": \"https://keyvalult-3yvhci.vault.azure.net/\",\n \"keyversion\": \"bfd2090894e740b48c7d2d35d32b418b\"\n }\n },\n \"prepareEncryption\": {\n \"value\": true\n },\n \"requireInfrastructureEncryption\": {\n \"value\": false\n }\n },\n \"authorizations\": [\n {\n \"principalId\": \"9a74af6f-d153-4348-988a-e2672920bee9\",\n \"roleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\n }\n ],\n \"managedResourceGroupId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspace15zbvr-s7axd0k1jctnf\"\n },\n \"sku\": {\n \"name\": \"premium\"\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspace9beui8?api-version=2018-04-01", + "Content": "{\r\n \"location\": \"East US 2 EUAP\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"amlWorkspaceId\": {\r\n \"value\": \"\"\r\n },\r\n \"customVirtualNetworkId\": {\r\n \"value\": \"\"\r\n },\r\n \"customPublicSubnetName\": {\r\n \"value\": \"\"\r\n },\r\n \"customPrivateSubnetName\": {\r\n \"value\": \"\"\r\n },\r\n \"enableNoPublicIp\": {\r\n \"value\": false\r\n },\r\n \"prepareEncryption\": {\r\n \"value\": true\r\n },\r\n \"encryption\": {\r\n \"value\": {\r\n \"keySource\": \"Default\",\r\n \"KeyName\": \"key-teqwlk\",\r\n \"keyversion\": \"7d432edb08704e02a36cdf6281f6d538\",\r\n \"keyvaulturi\": \"https://keyvalult-42fem7.vault.azure.net/\"\r\n }\r\n },\r\n \"requireInfrastructureEncryption\": {\r\n \"value\": false\r\n }\r\n },\r\n \"managedResourceGroupId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspace9beui8-szog17y8qlaf0\",\r\n \"authorizations\": [\r\n {\r\n \"principalId\": \"9a74af6f-d153-4348-988a-e2672920bee9\",\r\n \"roleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"premium\"\r\n }\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "1139" ] + "Content-Length": [ "1184" ] } }, "Response": { @@ -353,20 +353,20 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ "eastus2:e4d549f9-9136-4e34-9be5-02b2b7a03228" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], - "x-ms-correlation-request-id": [ "e66a3c4d-62f4-4df3-8e7f-38e4b26344fd" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200729T020333Z:e66a3c4d-62f4-4df3-8e7f-38e4b26344fd" ], + "x-ms-request-id": [ "eastus2euap:5beef815-2166-4e89-bad1-992037bc568e" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1193" ], + "x-ms-correlation-request-id": [ "5cf09268-d7ce-442c-be99-7647d1fcec28" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090631Z:5cf09268-d7ce-442c-be99-7647d1fcec28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 29 Jul 2020 02:03:32 GMT" ] + "Date": [ "Tue, 15 Sep 2020 09:06:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2143" ], + "Content-Length": [ "2144" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspace15zbvr-s7axd0k1jctnf\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":true},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelayymocstdjbwtng\"},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstorageymocstdjbwtng\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"},\"encryption\":{\"type\":\"Object\",\"value\":{\"keySource\":\"Default\"}}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"3752552724804541\",\"workspaceUrl\":\"adb-3752552724804541.1.azuredatabricks.net\",\"createdDateTime\":\"2020-07-28T10:19:25.7963578Z\",\"storageAccountIdentity\":{\"principalId\":\"8f08c73f-f31e-4c62-9d8f-1236b95c5c98\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"}},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Databricks/workspaces/workspace15zbvr\",\"name\":\"workspace15zbvr\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"premium\"},\"location\":\"East US 2 EUAP\"}" + "Content": "{\"properties\":{\"managedResourceGroupId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-workspace9beui8-szog17y8qlaf0\",\"parameters\":{\"amlWorkspaceId\":{\"type\":\"String\",\"value\":\"\"},\"customPrivateSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customPublicSubnetName\":{\"type\":\"String\",\"value\":\"\"},\"customVirtualNetworkId\":{\"type\":\"String\",\"value\":\"\"},\"enableFedRampCertification\":{\"type\":\"Bool\",\"value\":false},\"enableNoPublicIp\":{\"type\":\"Bool\",\"value\":false},\"loadBalancerBackendPoolName\":{\"type\":\"String\",\"value\":\"\"},\"loadBalancerId\":{\"type\":\"String\",\"value\":\"\"},\"prepareEncryption\":{\"type\":\"Bool\",\"value\":true},\"relayNamespaceName\":{\"type\":\"String\",\"value\":\"dbrelayvqdw6ydg5rv6q\"},\"requireInfrastructureEncryption\":{\"type\":\"Bool\",\"value\":false},\"resourceTags\":{\"type\":\"Object\",\"value\":{\"application\":\"databricks\",\"databricks-environment\":\"true\"}},\"storageAccountName\":{\"type\":\"String\",\"value\":\"dbstoragevqdw6ydg5rv6q\"},\"storageAccountSkuName\":{\"type\":\"String\",\"value\":\"Standard_GRS\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.139\"},\"encryption\":{\"type\":\"Object\",\"value\":{\"keySource\":\"Default\"}}},\"provisioningState\":\"Succeeded\",\"authorizations\":[{\"principalId\":\"9a74af6f-d153-4348-988a-e2672920bee9\",\"roleDefinitionId\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"}],\"createdBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"updatedBy\":{\"oid\":\"97deab6c-e478-40b4-b4da-e7d9353dc1e8\",\"puid\":\"100320004B7AE8A5\",\"applicationId\":\"1950a258-227b-4e31-a9cf-717495945fc2\"},\"workspaceId\":\"8296759595683497\",\"workspaceUrl\":\"adb-8296759595683497.17.azuredatabricks.net\",\"createdDateTime\":\"2020-09-15T08:17:07.7376655Z\",\"storageAccountIdentity\":{\"principalId\":\"8cc21aea-077f-48a5-a3e0-14fe357919c5\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"}},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Databricks/workspaces/workspace9beui8\",\"name\":\"workspace9beui8\",\"type\":\"Microsoft.Databricks/workspaces\",\"sku\":{\"name\":\"premium\"},\"location\":\"East US 2 EUAP\"}" } } } \ No newline at end of file diff --git a/src/Databricks/test/deployment-templates/key-vault/parameters.json b/src/Databricks/test/deployment-templates/key-vault/parameters.json index b3ad1a03eb39..0fbd5578743f 100644 --- a/src/Databricks/test/deployment-templates/key-vault/parameters.json +++ b/src/Databricks/test/deployment-templates/key-vault/parameters.json @@ -3,10 +3,10 @@ "contentVersion": "1.0.0.0", "parameters": { "keyvault_name": { - "value": "keyvalult-3yvhci" + "value": "keyvalult-42fem7" }, "storageaccount_principalid": { - "value": "8f08c73f-f31e-4c62-9d8f-1236b95c5c98" + "value": "8cc21aea-077f-48a5-a3e0-14fe357919c5" } } } diff --git a/src/Databricks/test/deployment-templates/security-network-group/parameters.json b/src/Databricks/test/deployment-templates/security-network-group/parameters.json index 6f46e37c8d40..d6013a9632b7 100644 --- a/src/Databricks/test/deployment-templates/security-network-group/parameters.json +++ b/src/Databricks/test/deployment-templates/security-network-group/parameters.json @@ -1,12 +1,12 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", - "contentVersion": "1.0.0.0", - "parameters": { - "networkSecurityGroupName": { - "value": "databricks-test-nsg" - }, - "location": { - "value": "eastus" - } + "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "networkSecurityGroupName": { + "value": "vnet-security-5ricpz" + }, + "location": { + "value": "eastus" } -} \ No newline at end of file + } +} diff --git a/src/Databricks/test/deployment-templates/virtual-network/parameters.json b/src/Databricks/test/deployment-templates/virtual-network/parameters.json index 804e72ca0184..97d37cf7572a 100644 --- a/src/Databricks/test/deployment-templates/virtual-network/parameters.json +++ b/src/Databricks/test/deployment-templates/virtual-network/parameters.json @@ -3,10 +3,10 @@ "contentVersion": "1.0.0.0", "parameters": { "virtualNetworks_dbrvn_name": { - "value": "databricks-test-vn" + "value": "databricks-vnet-hkgl9r" }, "networkSecurityGroups_dolaulinsg_externalid": { - "value": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Network/networkSecurityGroups/databricks-test-nsg" + "value": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Network/networkSecurityGroups/vnet-security-5ricpz" } } } diff --git a/src/Databricks/test/env.json b/src/Databricks/test/env.json index 58260ef48780..8583a8262b1d 100644 --- a/src/Databricks/test/env.json +++ b/src/Databricks/test/env.json @@ -1,14 +1,19 @@ { - "testWorkspace3": "workspace15zbvr", - "SubscriptionId": "9e223dbe-3399-4e19-88eb-0975f02ac87f", - "virtualNetwork": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-79cwoj/providers/Microsoft.Network/virtualNetworks/databricks-test-vn", - "keyVaultKeyName": "key-e4zv2d", - "resourceGroup": "databricks-rg-79cwoj", - "testWorkspace2": "workspaceoucdxr", - "rstr5": "d9nb7u", - "keyVaultUri": "https://keyvalult-3yvhci.vault.azure.net/", - "keyVaultKeyVersion": "bfd2090894e740b48c7d2d35d32b418b", - "rstr4": "69bkg2", + "rstr4": "h6okbt", + "vnetpeeringname03": "vnetpeering-1cmrlu", + "vnetpeeringname02": "vnetpeering-v0npx6", "Tenant": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "testWorkspace1": "workspacer4t17j" + "SubscriptionId": "9e223dbe-3399-4e19-88eb-0975f02ac87f", + "rstr5": "s9xt4o", + "rstr7": "sds56o", + "testWorkspace1": "workspace2h9lsa", + "keyVaultKeyVersion": "7d432edb08704e02a36cdf6281f6d538", + "resourceGroup": "databricks-rg-2dfue6", + "keyVaultKeyName": "key-teqwlk", + "virtualNetwork": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/databricks-rg-2dfue6/providers/Microsoft.Network/virtualNetworks/databricks-vnet-hkgl9r", + "keyVaultUri": "https://keyvalult-42fem7.vault.azure.net/", + "testWorkspace2": "workspaceoitxq9", + "vnetpeeringname04": "vnetpeering-h3jixd", + "vnetpeeringname01": "vnetpeering-qf6zgw", + "testWorkspace3": "workspace9beui8" } diff --git a/src/Databricks/test/utils.ps1 b/src/Databricks/test/utils.ps1 index 467b8179a0a0..51eb01d264c1 100644 --- a/src/Databricks/test/utils.ps1 +++ b/src/Databricks/test/utils.ps1 @@ -8,6 +8,7 @@ function RandomString([bool]$allChars, [int32]$len) { $env = @{} function setupEnv() { Write-Host -ForegroundColor Yellow "WARNING: Need to use Az.KeyVault module, Please check if installed Az.KeyVault(2.0.0 or Greater)." + # Import-Module -Name Az.KeyVault # Preload subscriptionId and tenant from context, which will be used in test # as default. You could change them if needed. $env.SubscriptionId = (Get-AzContext).Subscription.Id @@ -21,8 +22,20 @@ function setupEnv() { # Follow random strings will be used in the test directly, so add it to $env $rstr4 = RandomString -allChars $false -len 6 $rstr5 = RandomString -allChars $false -len 6 + $rstr7 = RandomString -allChars $false -len 6 $null = $env.Add("rstr4", $rstr4) $null = $env.Add("rstr5", $rstr5) + $null = $env.Add("rstr7", $rstr7) + + # Generate some vent peering name for use in the test. + $vnetpeeringname01 = "vnetpeering-" + (RandomString -allChars $false -len 6) + $vnetpeeringname02 = "vnetpeering-" + (RandomString -allChars $false -len 6) + $vnetpeeringname03 = "vnetpeering-" + (RandomString -allChars $false -len 6) + $vnetpeeringname04 = "vnetpeering-" + (RandomString -allChars $false -len 6) + $null = $env.Add("vnetpeeringname01", $vnetpeeringname01) + $null = $env.Add("vnetpeeringname02", $vnetpeeringname02) + $null = $env.Add("vnetpeeringname03", $vnetpeeringname03) + $null = $env.Add("vnetpeeringname04", $vnetpeeringname04) # Create the test group write-host "start to create test group" @@ -43,17 +56,30 @@ function setupEnv() { $null = $env.Add("testWorkspace3", $testWorkspace3) Write-Host -ForegroundColor Green "Create completed" - # Deploy virtual network and network security group for test + # Deploy two virtual network and network security group for test Write-Host -ForegroundColor Green "Deloying network..." - $virtualNetwork = "databricks-test-vn" $subscriptionId = $env.SubscriptionId + + $virtualNetwork = "databricks-vnet-" + (RandomString -allChars $false -len 6) + $securityNetworkGroup = "vnet-security-" + (RandomString -allChars $false -len 6) + + $securityVnPara = Get-Content .\test\deployment-templates\security-network-group\parameters.json | ConvertFrom-Json + $securityVnPara.parameters.networkSecurityGroupName.value = $securityNetworkGroup + Set-Content -Path .\test\deployment-templates\security-network-group\parameters.json -Value (ConvertTo-Json $securityVnPara) New-AzDeployment -Mode Incremental -TemplateFile .\test\deployment-templates\security-network-group\template.json -TemplateParameterFile .\test\deployment-templates\security-network-group\parameters.json -Name nsg -ResourceGroupName $resourceGroup $null = $env.Add("virtualNetwork", "/subscriptions/$subscriptionId/resourceGroups/$resourceGroup/providers/Microsoft.Network/virtualNetworks/$virtualNetwork") $vnPara = Get-Content .\test\deployment-templates\virtual-network\parameters.json | ConvertFrom-Json - $vnPara.parameters.networkSecurityGroups_dolaulinsg_externalid.value = "/subscriptions/$subscriptionId/resourceGroups/$resourceGroup/providers/Microsoft.Network/networkSecurityGroups/databricks-test-nsg" - set-content -Path .\test\deployment-templates\virtual-network\parameters.json -Value (ConvertTo-Json $vnPara) + $vnPara.parameters.virtualNetworks_dbrvn_name.value = $virtualNetwork + $vnPara.parameters.networkSecurityGroups_dolaulinsg_externalid.value = "/subscriptions/$subscriptionId/resourceGroups/$resourceGroup/providers/Microsoft.Network/networkSecurityGroups/$securityNetworkGroup" + Set-Content -Path .\test\deployment-templates\virtual-network\parameters.json -Value (ConvertTo-Json $vnPara) New-AzDeployment -Mode Incremental -TemplateFile .\test\deployment-templates\virtual-network\template.json -TemplateParameterFile .\test\deployment-templates\virtual-network\parameters.json -Name vn -ResourceGroupName $resourceGroup + Start-Sleep -Seconds 60 Write-Host -ForegroundColor Green "Network deploy completed." + + # Create two vnet peering for test + Write-Host -ForegroundColor Green "Create vnet peering for test..." + New-AzDatabricksVNetPeering -Name $env.vnetpeeringname01 -WorkspaceName $testWorkspace1 -ResourceGroupName $resourceGroup -RemoteVirtualNetworkId $env.virtualNetwork + Write-Host -ForegroundColor Green "Vnet peering create completed." # Deploy keyvault for test Write-Host -ForegroundColor Green "Deloying Key Vault..." @@ -71,7 +97,7 @@ function setupEnv() { $null = $env.Add('keyVaultKeyName', $key.Name) $null = $env.Add('keyVaultKeyVersion', $key.Version) Write-Host -ForegroundColor Green "key Vault deploy completed." - + $envFile = 'env.json' if ($TestMode -eq 'live') { $envFile = 'localEnv.json' diff --git a/src/DedicatedHsm/Az.DedicatedHsm.csproj b/src/DedicatedHsm/Az.DedicatedHsm.csproj new file mode 100644 index 000000000000..db6842c159b8 --- /dev/null +++ b/src/DedicatedHsm/Az.DedicatedHsm.csproj @@ -0,0 +1,7 @@ + + + DedicatedHsm + + + + diff --git a/src/DedicatedHsm/Az.DedicatedHsm.format.ps1xml b/src/DedicatedHsm/Az.DedicatedHsm.format.ps1xml new file mode 100644 index 000000000000..3c57dae9521b --- /dev/null +++ b/src/DedicatedHsm/Az.DedicatedHsm.format.ps1xml @@ -0,0 +1,381 @@ + + + + + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.DedicatedHsmIdentity + + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.DedicatedHsmIdentity + + + + + + + + + + + + + + + + + + Name + + + ResourceGroupName + + + SubscriptionId + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.DedicatedHsm + + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.DedicatedHsm + + + + + + + + + + + + + + + + + + + + + Name + + + ProvisioningState + + + SkuName + + + Location + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.DedicatedHsmListResult + + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.DedicatedHsmListResult + + + + + + + + + + + + NextLink + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.DedicatedHsmOperation + + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.DedicatedHsmOperation + + + + + + + + + + + + + + + IsDataAction + + + Name + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.DedicatedHsmOperationDisplay + + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.DedicatedHsmOperationDisplay + + + + + + + + + + + + + + + + + + + + + Description + + + Operation + + + Provider + + + Resource + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.DedicatedHsmPatchParametersTags + + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.DedicatedHsmPatchParametersTags + + + + + + + + + + + + Item + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.DedicatedHsmProperties + + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.DedicatedHsmProperties + + + + + + + + + + + + + + + + + + ProvisioningState + + + StampId + + + StatusMessage + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.Error + + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.Error + + + + + + + + + + + + + + + Code + + + Message + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.NetworkInterface + + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.NetworkInterface + + + + + + + + + + + + PrivateIPAddress + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.Resource + + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.Resource + + + + + + + + + + + + + + + + + + + + + Location + + + Name + + + Type + + + Zone + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.ResourceListResult + + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.ResourceListResult + + + + + + + + + + + + NextLink + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.ResourceTags + + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.ResourceTags + + + + + + + + + + + + Item + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.Sku + + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.Sku + + + + + + + + + + + + Name + + + + + + + + \ No newline at end of file diff --git a/src/DedicatedHsm/Az.DedicatedHsm.psd1 b/src/DedicatedHsm/Az.DedicatedHsm.psd1 new file mode 100644 index 000000000000..060841de320a --- /dev/null +++ b/src/DedicatedHsm/Az.DedicatedHsm.psd1 @@ -0,0 +1,133 @@ +# +# Module manifest for module 'Az.DedicatedHsm' +# +# Generated by: Microsoft Corporation +# +# Generated on: 9/24/2020 +# + +@{ + +# Script module or binary module file associated with this manifest. +RootModule = './Az.DedicatedHsm.psm1' + +# Version number of this module. +ModuleVersion = '0.1.0' + +# Supported PSEditions +CompatiblePSEditions = 'Core', 'Desktop' + +# ID used to uniquely identify this module +GUID = '841c2fad-e8c0-4924-b9b9-9d27d0f40b48' + +# Author of this module +Author = 'Microsoft Corporation' + +# Company or vendor of this module +CompanyName = 'Microsoft Corporation' + +# Copyright statement for this module +Copyright = 'Microsoft Corporation. All rights reserved.' + +# Description of the functionality provided by this module +Description = 'Microsoft Azure PowerShell: DedicatedHsm cmdlets' + +# Minimum version of the PowerShell engine required by this module +PowerShellVersion = '5.1' + +# Name of the PowerShell host required by this module +# PowerShellHostName = '' + +# Minimum version of the PowerShell host required by this module +# PowerShellHostVersion = '' + +# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only. +DotNetFrameworkVersion = '4.7.2' + +# Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only. +# ClrVersion = '' + +# Processor architecture (None, X86, Amd64) required by this module +# ProcessorArchitecture = '' + +# Modules that must be imported into the global environment prior to importing this module +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.9.4'; }) + +# Assemblies that must be loaded prior to importing this module +RequiredAssemblies = './bin/Az.DedicatedHsm.private.dll' + +# Script files (.ps1) that are run in the caller's environment prior to importing this module. +# ScriptsToProcess = @() + +# Type files (.ps1xml) to be loaded when importing this module +# TypesToProcess = @() + +# Format files (.ps1xml) to be loaded when importing this module +FormatsToProcess = './Az.DedicatedHsm.format.ps1xml' + +# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess +# NestedModules = @() + +# 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 = 'Get-AzDedicatedHsm', 'New-AzDedicatedHsm', 'Remove-AzDedicatedHsm', + 'Update-AzDedicatedHsm' + +# 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 = @() + +# Variables to export from this module +# VariablesToExport = @() + +# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export. +AliasesToExport = '*' + +# DSC resources to export from this module +# DscResourcesToExport = @() + +# List of all modules packaged with this module +# ModuleList = @() + +# List of all files packaged with this module +# FileList = @() + +# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell. +PrivateData = @{ + + PSData = @{ + + # Tags applied to this module. These help with module discovery in online galleries. + Tags = 'Azure','ResourceManager','ARM','PSModule','DedicatedHsm' + + # A URL to the license for this module. + LicenseUri = 'https://aka.ms/azps-license' + + # A URL to the main website for this project. + ProjectUri = 'https://github.com/Azure/azure-powershell' + + # A URL to an icon representing this module. + # IconUri = '' + + # ReleaseNotes of this module + # ReleaseNotes = '' + + # Prerelease string of this module + # Prerelease = '' + + # Flag to indicate whether the module requires explicit user acceptance for install/update/save + # RequireLicenseAcceptance = $false + + # External dependent modules of this module + # ExternalModuleDependencies = @() + + } # End of PSData hashtable + + } # End of PrivateData hashtable + +# HelpInfo URI of this module +# HelpInfoURI = '' + +# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. +# DefaultCommandPrefix = '' + +} + diff --git a/src/DedicatedHsm/Az.DedicatedHsm.psm1 b/src/DedicatedHsm/Az.DedicatedHsm.psm1 new file mode 100644 index 000000000000..e990c30025c2 --- /dev/null +++ b/src/DedicatedHsm/Az.DedicatedHsm.psm1 @@ -0,0 +1,109 @@ +# region Generated + # ---------------------------------------------------------------------------------- + # + # 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. + # ---------------------------------------------------------------------------------- + # Load required Az.Accounts module + $accountsName = 'Az.Accounts' + $accountsModule = Get-Module -Name $accountsName + if(-not $accountsModule) { + $localAccountsPath = Join-Path $PSScriptRoot 'generated\modules' + if(Test-Path -Path $localAccountsPath) { + $localAccounts = Get-ChildItem -Path $localAccountsPath -Recurse -Include 'Az.Accounts.psd1' | Select-Object -Last 1 + if($localAccounts) { + $accountsModule = Import-Module -Name ($localAccounts.FullName) -Scope Global -PassThru + } + } + if(-not $accountsModule) { + $hasAdequateVersion = (Get-Module -Name $accountsName -ListAvailable | Where-Object { $_.Version -ge [System.Version]'1.7.4' } | Measure-Object).Count -gt 0 + if($hasAdequateVersion) { + $accountsModule = Import-Module -Name $accountsName -MinimumVersion 1.7.4 -Scope Global -PassThru + } + } + } + + if(-not $accountsModule) { + Write-Error "`nThis module requires $accountsName version 1.7.4 or greater. For installation instructions, please see: https://docs.microsoft.com/en-us/powershell/azure/install-az-ps" -ErrorAction Stop + } elseif (($accountsModule.Version -lt [System.Version]'1.7.4') -and (-not $localAccounts)) { + Write-Error "`nThis module requires $accountsName version 1.7.4 or greater. An earlier version of Az.Accounts is imported in the current PowerShell session. If you are running test, please try to remove '.PSSharedModules' in your home directory. Otherwise please open a new PowerShell session and import this module again.`nAdditionally, this error could indicate that multiple incompatible versions of Azure PowerShell modules are installed on your system. For troubleshooting information, please see: https://aka.ms/azps-version-error" -ErrorAction Stop + } + Write-Information "Loaded Module '$($accountsModule.Name)'" + + # Load the private module dll + $null = Import-Module -Name (Join-Path $PSScriptRoot './bin/Az.DedicatedHsm.private.dll') + + # Get the private module's instance + $instance = [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Module]::Instance + + # Ask for the shared functionality table + $VTable = Register-AzModule + + # Tweaks the pipeline on module load + $instance.OnModuleLoad = $VTable.OnModuleLoad + + # Tweaks the pipeline per call + $instance.OnNewRequest = $VTable.OnNewRequest + + # Gets shared parameter values + $instance.GetParameterValue = $VTable.GetParameterValue + + # Allows shared module to listen to events from this module + $instance.EventListener = $VTable.EventListener + + # Gets shared argument completers + $instance.ArgumentCompleter = $VTable.ArgumentCompleter + + # The name of the currently selected Azure profile + $instance.ProfileName = $VTable.ProfileName + + + # Load the custom module + $customModulePath = Join-Path $PSScriptRoot './custom/Az.DedicatedHsm.custom.psm1' + if(Test-Path $customModulePath) { + $null = Import-Module -Name $customModulePath + } + + # Export nothing to clear implicit exports + Export-ModuleMember + + # Export proxy cmdlet scripts + $exportsPath = Join-Path $PSScriptRoot './exports' + $directories = Get-ChildItem -Directory -Path $exportsPath + $profileDirectory = $null + if($instance.ProfileName) { + if(($directories | ForEach-Object { $_.Name }) -contains $instance.ProfileName) { + $profileDirectory = $directories | Where-Object { $_.Name -eq $instance.ProfileName } + } else { + # Don't export anything if the profile doesn't exist for the module + $exportsPath = $null + Write-Warning "Selected Azure profile '$($instance.ProfileName)' does not exist for module '$($instance.Name)'. No cmdlets were loaded." + } + } elseif(($directories | Measure-Object).Count -gt 0) { + # Load the last folder if no profile is selected + $profileDirectory = $directories | Select-Object -Last 1 + } + + if($profileDirectory) { + Write-Information "Loaded Azure profile '$($profileDirectory.Name)' for module '$($instance.Name)'" + $exportsPath = $profileDirectory.FullName + } + + if($exportsPath) { + Get-ChildItem -Path $exportsPath -Recurse -Include '*.ps1' -File | ForEach-Object { . $_.FullName } + $cmdletNames = Get-ScriptCmdlet -ScriptFolder $exportsPath + Export-ModuleMember -Function $cmdletNames -Alias (Get-ScriptCmdlet -ScriptFolder $exportsPath -AsAlias) + } + + # Finalize initialization of this module + $instance.Init(); + Write-Information "Loaded Module '$($instance.Name)'" +# endregion diff --git a/src/DedicatedHsm/Changelog.md b/src/DedicatedHsm/Changelog.md new file mode 100644 index 000000000000..bc6e50bfdb4a --- /dev/null +++ b/src/DedicatedHsm/Changelog.md @@ -0,0 +1,24 @@ + +## Upcoming Release + +## Version 0.1.0 +* First preview release for module Az.DedicatedHsm + diff --git a/src/DedicatedHsm/DedicatedHsm.sln b/src/DedicatedHsm/DedicatedHsm.sln new file mode 100644 index 000000000000..519b59fcb334 --- /dev/null +++ b/src/DedicatedHsm/DedicatedHsm.sln @@ -0,0 +1,48 @@ +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29709.97 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Accounts", "..\Accounts\Accounts\Accounts.csproj", "{142D7B0B-388A-4CEB-A228-7F6D423C5C2E}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Authentication", "..\Accounts\Authentication\Authentication.csproj", "{62843FE6-7575-4D88-B989-7DF7EEC0BC01}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Authentication.ResourceManager", "..\Accounts\Authentication.ResourceManager\Authentication.ResourceManager.csproj", "{442C609B-A431-4A71-B289-08F0B63C83E5}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Authenticators", "..\Accounts\Authenticators\Authenticators.csproj", "{59E8F6B8-8F0E-403F-B88B-9736DBC396D9}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Az.DedicatedHsm", "Az.DedicatedHsm.csproj", "{1C203C0C-E0FD-40D2-B79E-C6DA52E4E350}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Release|Any CPU.Build.0 = Release|Any CPU + {62843FE6-7575-4D88-B989-7DF7EEC0BC01}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {62843FE6-7575-4D88-B989-7DF7EEC0BC01}.Debug|Any CPU.Build.0 = Debug|Any CPU + {62843FE6-7575-4D88-B989-7DF7EEC0BC01}.Release|Any CPU.ActiveCfg = Release|Any CPU + {62843FE6-7575-4D88-B989-7DF7EEC0BC01}.Release|Any CPU.Build.0 = Release|Any CPU + {442C609B-A431-4A71-B289-08F0B63C83E5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {442C609B-A431-4A71-B289-08F0B63C83E5}.Debug|Any CPU.Build.0 = Debug|Any CPU + {442C609B-A431-4A71-B289-08F0B63C83E5}.Release|Any CPU.ActiveCfg = Release|Any CPU + {442C609B-A431-4A71-B289-08F0B63C83E5}.Release|Any CPU.Build.0 = Release|Any CPU + {59E8F6B8-8F0E-403F-B88B-9736DBC396D9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {59E8F6B8-8F0E-403F-B88B-9736DBC396D9}.Debug|Any CPU.Build.0 = Debug|Any CPU + {59E8F6B8-8F0E-403F-B88B-9736DBC396D9}.Release|Any CPU.ActiveCfg = Release|Any CPU + {59E8F6B8-8F0E-403F-B88B-9736DBC396D9}.Release|Any CPU.Build.0 = Release|Any CPU + {1C203C0C-E0FD-40D2-B79E-C6DA52E4E350}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {1C203C0C-E0FD-40D2-B79E-C6DA52E4E350}.Debug|Any CPU.Build.0 = Debug|Any CPU + {1C203C0C-E0FD-40D2-B79E-C6DA52E4E350}.Release|Any CPU.ActiveCfg = Release|Any CPU + {1C203C0C-E0FD-40D2-B79E-C6DA52E4E350}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {F9B3D96E-9680-40BE-A917-02EE655D6030} + EndGlobalSection +EndGlobal diff --git a/src/DedicatedHsm/Properties/AssemblyInfo.cs b/src/DedicatedHsm/Properties/AssemblyInfo.cs new file mode 100644 index 000000000000..c83d3b14d6e7 --- /dev/null +++ b/src/DedicatedHsm/Properties/AssemblyInfo.cs @@ -0,0 +1,28 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Reflection; +using System.Runtime.InteropServices; + +[assembly: AssemblyTitle("Microsoft Azure Powershell - DedicatedHsm")] +[assembly: AssemblyCompany(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyCompany)] +[assembly: AssemblyProduct(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyProduct)] +[assembly: AssemblyCopyright(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyCopyright)] + +[assembly: ComVisible(false)] +[assembly: CLSCompliant(false)] +[assembly: Guid("143d9b8f-1e5c-4407-9e4a-733c808600c9")] +[assembly: AssemblyVersion("0.1.0")] +[assembly: AssemblyFileVersion("0.1.0")] diff --git a/src/DedicatedHsm/build-module.ps1 b/src/DedicatedHsm/build-module.ps1 new file mode 100644 index 000000000000..43fc7f6d6241 --- /dev/null +++ b/src/DedicatedHsm/build-module.ps1 @@ -0,0 +1,153 @@ +# ---------------------------------------------------------------------------------- +# +# 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. +# ---------------------------------------------------------------------------------- +param([switch]$Isolated, [switch]$Run, [switch]$Test, [switch]$Docs, [switch]$Pack, [switch]$Code, [switch]$Release, [switch]$Debugger, [switch]$NoDocs) +$ErrorActionPreference = 'Stop' + +if($PSEdition -ne 'Core') { + Write-Error 'This script requires PowerShell Core to execute. [Note] Generated cmdlets will work in both PowerShell Core or Windows PowerShell.' +} + +if(-not $Isolated -and -not $Debugger) { + Write-Host -ForegroundColor Green 'Creating isolated process...' + $pwsh = [System.Diagnostics.Process]::GetCurrentProcess().Path + & "$pwsh" -NonInteractive -NoLogo -NoProfile -File $MyInvocation.MyCommand.Path @PSBoundParameters -Isolated + + if($LastExitCode -ne 0) { + # Build failed. Don't attempt to run the module. + return + } + + if($Test) { + . (Join-Path $PSScriptRoot 'test-module.ps1') + if($LastExitCode -ne 0) { + # Tests failed. Don't attempt to run the module. + return + } + } + + if($Docs) { + . (Join-Path $PSScriptRoot 'generate-help.ps1') + if($LastExitCode -ne 0) { + # Docs generation failed. Don't attempt to run the module. + return + } + } + + if($Pack) { + . (Join-Path $PSScriptRoot 'pack-module.ps1') + if($LastExitCode -ne 0) { + # Packing failed. Don't attempt to run the module. + return + } + } + + $runModulePath = Join-Path $PSScriptRoot 'run-module.ps1' + if($Code) { + . $runModulePath -Code + } elseif($Run) { + . $runModulePath + } else { + Write-Host -ForegroundColor Cyan "To run this module in an isolated PowerShell session, run the 'run-module.ps1' script or provide the '-Run' parameter to this script." + } + return +} + +$binFolder = Join-Path $PSScriptRoot 'bin' +$objFolder = Join-Path $PSScriptRoot 'obj' + +if(-not $Debugger) { + Write-Host -ForegroundColor Green 'Cleaning build folders...' + $null = Remove-Item -Recurse -ErrorAction SilentlyContinue -Path $binFolder, $objFolder + + if((Test-Path $binFolder) -or (Test-Path $objFolder)) { + Write-Host -ForegroundColor Cyan 'Did you forget to exit your isolated module session before rebuilding?' + Write-Error 'Unable to clean ''bin'' or ''obj'' folder. A process may have an open handle.' + } + + Write-Host -ForegroundColor Green 'Compiling module...' + $buildConfig = 'Debug' + if($Release) { + $buildConfig = 'Release' + } + dotnet publish $PSScriptRoot --verbosity quiet --configuration $buildConfig /nologo + if($LastExitCode -ne 0) { + Write-Error 'Compilation failed.' + } + + $null = Remove-Item -Recurse -ErrorAction SilentlyContinue -Path (Join-Path $binFolder 'Debug'), (Join-Path $binFolder 'Release') +} + +$dll = Join-Path $PSScriptRoot 'bin\Az.DedicatedHsm.private.dll' +if(-not (Test-Path $dll)) { + Write-Error "Unable to find output assembly in '$binFolder'." +} + +# Load DLL to use build-time cmdlets +$null = Import-Module -Name $dll + +$modulePaths = $dll +$customPsm1 = Join-Path $PSScriptRoot 'custom\Az.DedicatedHsm.custom.psm1' +if(Test-Path $customPsm1) { + $modulePaths = @($dll, $customPsm1) +} + +$exportsFolder = Join-Path $PSScriptRoot 'exports' +if(Test-Path $exportsFolder) { + $null = Get-ChildItem -Path $exportsFolder -Recurse -Exclude 'readme.md' | Remove-Item -Recurse -ErrorAction SilentlyContinue +} +$null = New-Item -ItemType Directory -Force -Path $exportsFolder + +$internalFolder = Join-Path $PSScriptRoot 'internal' +if(Test-Path $internalFolder) { + $null = Get-ChildItem -Path $internalFolder -Recurse -Exclude '*.psm1', 'readme.md' | Remove-Item -Recurse -ErrorAction SilentlyContinue +} +$null = New-Item -ItemType Directory -Force -Path $internalFolder + +$psd1 = Join-Path $PSScriptRoot './Az.DedicatedHsm.psd1' +$guid = Get-ModuleGuid -Psd1Path $psd1 +$moduleName = 'Az.DedicatedHsm' +$examplesFolder = Join-Path $PSScriptRoot 'examples' +$null = New-Item -ItemType Directory -Force -Path $examplesFolder + +if($NoDocs) { + Write-Host -ForegroundColor Green 'Creating exports...' + Export-ProxyCmdlet -ModuleName $moduleName -ModulePath $modulePaths -ExportsFolder $exportsFolder -InternalFolder $internalFolder -ExcludeDocs +} else { + Write-Host -ForegroundColor Green 'Creating exports and docs...' + $moduleDescription = 'Microsoft Azure PowerShell: DedicatedHsm cmdlets' + $docsFolder = Join-Path $PSScriptRoot 'docs' + if(Test-Path $docsFolder) { + $null = Get-ChildItem -Path $docsFolder -Recurse -Exclude 'readme.md' | Remove-Item -Recurse -ErrorAction SilentlyContinue + } + $null = New-Item -ItemType Directory -Force -Path $docsFolder + Export-ProxyCmdlet -ModuleName $moduleName -ModulePath $modulePaths -ExportsFolder $exportsFolder -InternalFolder $internalFolder -ModuleDescription $moduleDescription -DocsFolder $docsFolder -ExamplesFolder $examplesFolder -ModuleGuid $guid +} + +Write-Host -ForegroundColor Green 'Creating format.ps1xml...' +$formatPs1xml = Join-Path $PSScriptRoot './Az.DedicatedHsm.format.ps1xml' +Export-FormatPs1xml -FilePath $formatPs1xml + +Write-Host -ForegroundColor Green 'Creating psd1...' +$customFolder = Join-Path $PSScriptRoot 'custom' +Export-Psd1 -ExportsFolder $exportsFolder -CustomFolder $customFolder -Psd1Path $psd1 -ModuleGuid $guid + +Write-Host -ForegroundColor Green 'Creating test stubs...' +$testFolder = Join-Path $PSScriptRoot 'test' +$null = New-Item -ItemType Directory -Force -Path $testFolder +Export-TestStub -ModuleName $moduleName -ExportsFolder $exportsFolder -OutputFolder $testFolder + +Write-Host -ForegroundColor Green 'Creating example stubs...' +Export-ExampleStub -ExportsFolder $exportsFolder -OutputFolder $examplesFolder + +Write-Host -ForegroundColor Green '-------------Done-------------' diff --git a/src/DedicatedHsm/check-dependencies.ps1 b/src/DedicatedHsm/check-dependencies.ps1 new file mode 100644 index 000000000000..23ee92268fde --- /dev/null +++ b/src/DedicatedHsm/check-dependencies.ps1 @@ -0,0 +1,64 @@ +# ---------------------------------------------------------------------------------- +# +# 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. +# ---------------------------------------------------------------------------------- +param([switch]$Isolated, [switch]$Accounts, [switch]$Pester, [switch]$Resources) +$ErrorActionPreference = 'Stop' + +if(-not $Isolated) { + Write-Host -ForegroundColor Green 'Creating isolated process...' + $pwsh = [System.Diagnostics.Process]::GetCurrentProcess().Path + & "$pwsh" -NoExit -NoLogo -NoProfile -File $MyInvocation.MyCommand.Path @PSBoundParameters -Isolated + return +} + +function DownloadModule ([bool]$predicate, [string]$path, [string]$moduleName, [string]$versionMinimum, [string]$requiredVersion) { + if($predicate) { + $module = Get-Module -ListAvailable -Name $moduleName + if((-not $module) -or ($versionMinimum -and ($module | ForEach-Object { $_.Version } | Where-Object { $_ -ge [System.Version]$versionMinimum } | Measure-Object).Count -eq 0)) { + $null = New-Item -ItemType Directory -Force -Path $path + Write-Host -ForegroundColor Green "Installing local $moduleName module into '$path'..." + if ($requiredVersion) { + Find-Module -Name $moduleName -RequiredVersion $requiredVersion -Repository PSGallery | Save-Module -Path $path + }elseif($versionMinimum) { + Find-Module -Name $moduleName -MinimumVersion $versionMinimum -Repository PSGallery | Save-Module -Path $path + } else { + Find-Module -Name $moduleName -Repository PSGallery | Save-Module -Path $path + } + } + } +} + +$ProgressPreference = 'SilentlyContinue' +$all = (@($Accounts.IsPresent, $Pester.IsPresent) | Select-Object -Unique | Measure-Object).Count -eq 1 + +$localModulesPath = Join-Path $PSScriptRoot 'generated\modules' +if(Test-Path -Path $localModulesPath) { + $env:PSModulePath = "$localModulesPath$([IO.Path]::PathSeparator)$env:PSModulePath" +} + +DownloadModule -predicate ($all -or $Accounts) -path $localModulesPath -moduleName 'Az.Accounts' -versionMinimum '1.7.4' +DownloadModule -predicate ($all -or $Pester) -path $localModulesPath -moduleName 'Pester' -requiredVersion '4.10.1' + +$tools = Join-Path $PSScriptRoot 'tools' +$resourceDir = Join-Path $tools 'Resources' +$resourceModule = Join-Path $HOME '.PSSharedModules\Resources\Az.Resources.TestSupport.psm1' + +if ($Resources.IsPresent -and (-not (Test-Path -Path $resourceModule))) { + Write-Host -ForegroundColor Green "Building local Resource module used for test..." + Set-Location $resourceDir + $null = autorest-beta .\readme.md --output-folder=$HOME/.PSSharedModules/Resources + $null = Copy-Item custom/* $HOME/.PSSharedModules/Resources/custom/ + Set-Location $HOME/.PSSharedModules/Resources + $null = .\build-module.ps1 + Set-Location $PSScriptRoot +} diff --git a/src/DedicatedHsm/custom/Az.DedicatedHsm.custom.psm1 b/src/DedicatedHsm/custom/Az.DedicatedHsm.custom.psm1 new file mode 100644 index 000000000000..4c2b3b6766e6 --- /dev/null +++ b/src/DedicatedHsm/custom/Az.DedicatedHsm.custom.psm1 @@ -0,0 +1,17 @@ +# region Generated + # Load the private module dll + $null = Import-Module -PassThru -Name (Join-Path $PSScriptRoot '..\bin\Az.DedicatedHsm.private.dll') + + # Load the internal module + $internalModulePath = Join-Path $PSScriptRoot '..\internal\Az.DedicatedHsm.internal.psm1' + if(Test-Path $internalModulePath) { + $null = Import-Module -Name $internalModulePath + } + + # Export nothing to clear implicit exports + Export-ModuleMember + + # Export script cmdlets + Get-ChildItem -Path $PSScriptRoot -Recurse -Include '*.ps1' -File | ForEach-Object { . $_.FullName } + Export-ModuleMember -Function (Get-ScriptCmdlet -ScriptFolder $PSScriptRoot) -Alias (Get-ScriptCmdlet -ScriptFolder $PSScriptRoot -AsAlias) +# endregion diff --git a/src/DedicatedHsm/custom/readme.md b/src/DedicatedHsm/custom/readme.md new file mode 100644 index 000000000000..9df24d44faf6 --- /dev/null +++ b/src/DedicatedHsm/custom/readme.md @@ -0,0 +1,41 @@ +# Custom +This directory contains custom implementation for non-generated cmdlets for the `Az.DedicatedHsm` module. Both scripts (`.ps1`) and C# files (`.cs`) can be implemented here. They will be used during the build process in `build-module.ps1`, and create cmdlets into the `..\exports` folder. The only generated file into this folder is the `Az.DedicatedHsm.custom.psm1`. This file should not be modified. + +## Info +- Modifiable: yes +- Generated: partial +- Committed: yes +- Packaged: yes + +## Details +For `Az.DedicatedHsm` to use custom cmdlets, it does this two different ways. We **highly recommend** creating script cmdlets, as they are easier to write and allow access to the other exported cmdlets. C# cmdlets *cannot access exported cmdlets*. + +For C# cmdlets, they are compiled with the rest of the generated low-level cmdlets into the `./bin/Az.DedicatedHsm.private.dll`. The names of the cmdlets (methods) and files must follow the `[cmdletName]_[variantName]` syntax used for generated cmdlets. The `variantName` is used as the `ParameterSetName`, so use something appropriate that doesn't clash with already created variant or parameter set names. You cannot use the `ParameterSetName` property in the `Parameter` attribute on C# cmdlets. Each cmdlet must be separated into variants using the same pattern as seen in the `generated/cmdlets` folder. + +For script cmdlets, these are loaded via the `Az.DedicatedHsm.custom.psm1`. Then, during the build process, this module is loaded and processed in the same manner as the C# cmdlets. The fundemental difference is the script cmdlets use the `ParameterSetName` attribute and C# cmdlets do not. To create a script cmdlet variant of a generated cmdlet, simply decorate all parameters in the script with the new `ParameterSetName` in the `Parameter` attribute. This will appropriately treat each parameter set as a separate variant when processed to be exported during the build. + +## Purpose +This allows the modules to have cmdlets that were not defined in the REST specification. It also allows combining logic using generated cmdlets. This is a level of customization beyond what can be done using the [readme configuration options](https://github.com/Azure/autorest/blob/master/docs/powershell/options.md) that are currently available. These custom cmdlets are then referenced by the cmdlets created at build-time in the `..\exports` folder. + +## Usage +The easiest way currently to start developing custom cmdlets is to copy an existing cmdlet. For C# cmdlets, copy one from the `generated/cmdlets` folder. For script cmdlets, build the project using `build-module.ps1` and copy one of the scripts from the `..\exports` folder. After that, if you want to add new parameter sets, follow the guidelines in the `Details` section above. For implementing a new cmdlets, at minimum, please keep these parameters: +- Break +- DefaultProfile +- HttpPipelineAppend +- HttpPipelinePrepend +- Proxy +- ProxyCredential +- ProxyUseDefaultCredentials + +These provide functionality to our HTTP pipeline and other useful features. In script, you can forward these parameters using `$PSBoundParameters` to the other cmdlets you're calling within `Az.DedicatedHsm`. For C#, follow the usage seen in the `ProcessRecordAsync` method. + +### Attributes +For processing the cmdlets, we've created some additional attributes: +- `Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.DescriptionAttribute` + - Used in C# cmdlets to provide a high-level description of the cmdlet. This is propegated to reference documentation via [help comments](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_comment_based_help) in the exported scripts. +- `Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.DoNotExportAttribute` + - Used in C# and script cmdlets to suppress creating an exported cmdlet at build-time. These cmdlets will *not be exposed* by `Az.DedicatedHsm`. +- `Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.InternalExportAttribute` + - Used in C# cmdlets to route exported cmdlets to the `..\internal`, which are *not exposed* by `Az.DedicatedHsm`. For more information, see [readme.md](..\internal/readme.md) in the `..\internal` folder. +- `Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.ProfileAttribute` + - Used in C# and script cmdlets to define which Azure profiles the cmdlet supports. This is only supported for Azure (`--azure`) modules. \ No newline at end of file diff --git a/src/DedicatedHsm/examples/Get-AzDedicatedHsm.md b/src/DedicatedHsm/examples/Get-AzDedicatedHsm.md new file mode 100644 index 000000000000..4772568483f8 --- /dev/null +++ b/src/DedicatedHsm/examples/Get-AzDedicatedHsm.md @@ -0,0 +1,46 @@ +### Example 1: Get all Dedicated HSM under a subscription +```powershell +PS C:\> Get-AzDedicatedHsm + +Name Provisioning State SKU Location +---- ------------------ --- -------- +hsm-7t2xaf Succeeded SafeNet Luna Network HSM A790 eastus +yeminghsm Succeeded SafeNet Luna Network HSM A790 eastus +``` + +This command gets all Dedicated HSM under a subscription + +### Example 2: Get all Dedicated HSM under a resource group. +```powershell +PS C:\> Get-AzDedicatedHsm -ResourceGroupName dedicatedhsm-rg-n359cz + +Name Provisioning State SKU Location +---- ------------------ --- -------- +hsm-7t2xaf Succeeded SafeNet Luna Network HSM A790 eastus +``` + +This command gets all Dedicated HSM under a resource group. + +### Example 3: Get a Dedicated HSM by name +```powershell +PS C:\> Get-AzDedicatedHsm -Name hsm-7t2xaf -ResourceGroupName dedicatedhsm-rg-n359cz + +Name Provisioning State SKU Location +---- ------------------ --- -------- +hsm-7t2xaf Succeeded SafeNet Luna Network HSM A790 eastus +``` + +This command gets a Dedicated HSM by name. + +### Example 4: Get a Dedicated HSM by object +```powershell +PS C:\> $hsm = New-AzDedicatedHsm -Name hsm-n7wfxi -ResourceGroupName dedicatedhsm-rg-n359cz -Location eastus -Sku "SafeNet Luna Network HSM A790" -StampId stamp1 -SubnetId "/subscriptions/xxxx-xxxx-xxx-xxx/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.Network/virtualNetworks/vnetq30la9/subnets/hsmsubnet" -NetworkInterface @{PrivateIPAddress = '10.2.1.120' } +PS C:\> Get-AzDedicatedHsm -InputObject $hsm + +Name Provisioning State SKU Location +---- ------------------ --- -------- +hsm-n7wfxi Succeeded SafeNet Luna Network HSM A790 eastus +``` + +This command gets a Dedicated HSM by object. + diff --git a/src/DedicatedHsm/examples/New-AzDedicatedHsm.md b/src/DedicatedHsm/examples/New-AzDedicatedHsm.md new file mode 100644 index 000000000000..1a21572a8013 --- /dev/null +++ b/src/DedicatedHsm/examples/New-AzDedicatedHsm.md @@ -0,0 +1,12 @@ +### Example 1: Create a Dedicated HSM into an existing virtual network +```powershell +PS C:\> New-AzDedicatedHsm -Name hsm-n7wfxi -ResourceGroupName dedicatedhsm-rg-n359cz -Location eastus -Sku "SafeNet Luna Network HSM A790" -StampId stamp1 -SubnetId "/subscriptions/xxxx-xxxx-xxx-xxx/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.Network/virtualNetworks/vnetq30la9/subnets/hsmsubnet" -NetworkInterface @{PrivateIPAddress = '10.2.1.120' } + +Name Provisioning State SKU Location +---- ------------------ --- -------- +hsm-n7wfxi Succeeded SafeNet Luna Network HSM A790 eastus +``` + +This command creates a Dedicated HSM into an existing virtual network. + +**NOTE:** Currently `New-AzDedicatedHsm` has a limitation that it returns before the HSM is fully provisioned on Azure. Therefore after creating a new HSM, please query its state by `Get-AzDedicatedHsm` and make sure its `Provisioning State` is `Succeeded` before using it. \ No newline at end of file diff --git a/src/DedicatedHsm/examples/Remove-AzDedicatedHsm.md b/src/DedicatedHsm/examples/Remove-AzDedicatedHsm.md new file mode 100644 index 000000000000..5d0777c62f29 --- /dev/null +++ b/src/DedicatedHsm/examples/Remove-AzDedicatedHsm.md @@ -0,0 +1,17 @@ +### Example 1: Remove a Dedicated HSM by name +```powershell +PS C:\> Remove-AzDedicatedHsm -Name hsm-7t2xaf -ResourceGroupName lucas-manual-test + +``` + +This commnad removes a hardware security module(HSM) by name. + +### Example 2: Remove a Dedicated HSM by object +```powershell +PS C:\> $hsm = Get-AzDedicatedHsm -Name hsm-7t2xaf -ResourceGroupName dedicatedhsm-rg-n359cz +PS C:\> Remove-AzDedicatedHsm -InputObject $hsm + +``` + +This commnad removes a Dedicated HSM by object. + diff --git a/src/DedicatedHsm/examples/Update-AzDedicatedHsm.md b/src/DedicatedHsm/examples/Update-AzDedicatedHsm.md new file mode 100644 index 000000000000..c21d7618aba8 --- /dev/null +++ b/src/DedicatedHsm/examples/Update-AzDedicatedHsm.md @@ -0,0 +1,23 @@ +### Example 1: Update the parameter tag of the Dedicated HSM by name +```powershell +PS C:\> Update-AzDedicatedHsm -Name hsm-n7wfxi -ResourceGroupName dedicatedhsm-rg-n359cz -Tag @{'key1' = '1'; 'key2' = 2; 'key3' = 3} + +Name Provisioning State SKU Location +---- ------------------ --- -------- +hsm-n7wfxi Succeeded SafeNet Luna Network HSM A790 eastus +``` + +This command updates the parameter tag of the Dedicated HSM by name + +### Example 2: Update the parameter tag of the Dedicated HSM by object +```powershell +PS C:\> $hsm = Get-AzDedicatedHsm -Name hsm-n7wfxi -ResourceGroupName dedicatedhsm-rg-n359cz +PS C:\> Update-AzDedicatedHsm -InputObject -Tag @{'key1' = '1'; 'key2' = 2; 'key3' = 3} + +Name Provisioning State SKU Location +---- ------------------ --- -------- +hsm-n7wfxi Succeeded SafeNet Luna Network HSM A790 eastus +``` + +This command updates the parameter tag of the Dedicated HSM by object + diff --git a/src/DedicatedHsm/export-surface.ps1 b/src/DedicatedHsm/export-surface.ps1 new file mode 100644 index 000000000000..501e521144ac --- /dev/null +++ b/src/DedicatedHsm/export-surface.ps1 @@ -0,0 +1,40 @@ +# ---------------------------------------------------------------------------------- +# +# 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. +# ---------------------------------------------------------------------------------- +param([switch]$Isolated, [switch]$IncludeGeneralParameters, [switch]$UseExpandedFormat) +$ErrorActionPreference = 'Stop' + +$pwsh = [System.Diagnostics.Process]::GetCurrentProcess().Path +if(-not $Isolated) { + Write-Host -ForegroundColor Green 'Creating isolated process...' + & "$pwsh" -NonInteractive -NoLogo -NoProfile -File $MyInvocation.MyCommand.Path @PSBoundParameters -Isolated + return +} + +$dll = Join-Path $PSScriptRoot 'bin\Az.DedicatedHsm.private.dll' +if(-not (Test-Path $dll)) { + Write-Error "Unable to find output assembly in '$binFolder'." +} +$null = Import-Module -Name $dll + +$moduleName = 'Az.DedicatedHsm' +$exportsFolder = Join-Path $PSScriptRoot 'exports' +$resourcesFolder = Join-Path $PSScriptRoot 'resources' + +Export-CmdletSurface -ModuleName $moduleName -CmdletFolder $exportsFolder -OutputFolder $resourcesFolder -IncludeGeneralParameters $IncludeGeneralParameters.IsPresent -UseExpandedFormat $UseExpandedFormat.IsPresent +Write-Host -ForegroundColor Green "CmdletSurface file(s) created in '$resourcesFolder'" + +Export-ModelSurface -OutputFolder $resourcesFolder -UseExpandedFormat $UseExpandedFormat.IsPresent +Write-Host -ForegroundColor Green "ModelSurface file created in '$resourcesFolder'" + +Write-Host -ForegroundColor Green '-------------Done-------------' \ No newline at end of file diff --git a/src/DedicatedHsm/exports/Get-AzDedicatedHsm.ps1 b/src/DedicatedHsm/exports/Get-AzDedicatedHsm.ps1 new file mode 100644 index 000000000000..1c5ee30ad770 --- /dev/null +++ b/src/DedicatedHsm/exports/Get-AzDedicatedHsm.ps1 @@ -0,0 +1,194 @@ + +# ---------------------------------------------------------------------------------- +# +# 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 +Gets the specified Azure dedicated HSM. +.Description +Gets the specified Azure dedicated HSM. +.Example +PS C:\> Get-AzDedicatedHsm + +Name Provisioning State SKU Location +---- ------------------ --- -------- +hsm-7t2xaf Succeeded SafeNet Luna Network HSM A790 eastus +yeminghsm Succeeded SafeNet Luna Network HSM A790 eastus +.Example +PS C:\> Get-AzDedicatedHsm -ResourceGroupName dedicatedhsm-rg-n359cz + +Name Provisioning State SKU Location +---- ------------------ --- -------- +hsm-7t2xaf Succeeded SafeNet Luna Network HSM A790 eastus +.Example +PS C:\> Get-AzDedicatedHsm -Name hsm-7t2xaf -ResourceGroupName dedicatedhsm-rg-n359cz + +Name Provisioning State SKU Location +---- ------------------ --- -------- +hsm-7t2xaf Succeeded SafeNet Luna Network HSM A790 eastus +.Example +PS C:\> $hsm = New-AzDedicatedHsm -Name hsm-n7wfxi -ResourceGroupName dedicatedhsm-rg-n359cz -Location eastus -Sku "SafeNet Luna Network HSM A790" -StampId stamp1 -SubnetId "/subscriptions/xxxx-xxxx-xxx-xxx/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.Network/virtualNetworks/vnetq30la9/subnets/hsmsubnet" -NetworkInterface @{PrivateIPAddress = '10.2.1.120' } +PS C:\> Get-AzDedicatedHsm -InputObject $hsm + +Name Provisioning State SKU Location +---- ------------------ --- -------- +hsm-n7wfxi Succeeded SafeNet Luna Network HSM A790 eastus + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.IDedicatedHsmIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsm +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [Id ]: Resource identity path + [Name ]: Name of the dedicated Hsm + [ResourceGroupName ]: The name of the Resource Group to which the resource belongs. + [SubscriptionId ]: Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. +.Link +https://docs.microsoft.com/en-us/powershell/module/az.dedicatedhsm/get-azdedicatedhsm +#> +function Get-AzDedicatedHsm { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsm])] +[CmdletBinding(DefaultParameterSetName='List1', PositionalBinding=$false)] +param( + [Parameter(ParameterSetName='Get', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Path')] + [System.String] + # The name of the dedicated HSM. + ${Name}, + + [Parameter(ParameterSetName='Get', Mandatory)] + [Parameter(ParameterSetName='List', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Path')] + [System.String] + # The name of the Resource Group to which the dedicated hsm belongs. + ${ResourceGroupName}, + + [Parameter(ParameterSetName='Get')] + [Parameter(ParameterSetName='List')] + [Parameter(ParameterSetName='List1')] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String[]] + # Subscription credentials which uniquely identify Microsoft Azure subscription. + # The subscription ID forms part of the URI for every service call. + ${SubscriptionId}, + + [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.IDedicatedHsmIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter(ParameterSetName='List')] + [Parameter(ParameterSetName='List1')] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Query')] + [System.Int32] + # Maximum number of results to return. + ${Top}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + Get = 'Az.DedicatedHsm.private\Get-AzDedicatedHsm_Get'; + GetViaIdentity = 'Az.DedicatedHsm.private\Get-AzDedicatedHsm_GetViaIdentity'; + List = 'Az.DedicatedHsm.private\Get-AzDedicatedHsm_List'; + List1 = 'Az.DedicatedHsm.private\Get-AzDedicatedHsm_List1'; + } + if (('Get', 'List', 'List1') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} diff --git a/src/DedicatedHsm/exports/New-AzDedicatedHsm.ps1 b/src/DedicatedHsm/exports/New-AzDedicatedHsm.ps1 new file mode 100644 index 000000000000..d91ad2cee943 --- /dev/null +++ b/src/DedicatedHsm/exports/New-AzDedicatedHsm.ps1 @@ -0,0 +1,205 @@ + +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.Synopsis +Create or Update a dedicated HSM in the specified subscription. +.Description +Create or Update a dedicated HSM in the specified subscription. +.Example +PS C:\> New-AzDedicatedHsm -Name hsm-n7wfxi -ResourceGroupName dedicatedhsm-rg-n359cz -Location eastus -Sku "SafeNet Luna Network HSM A790" -StampId stamp1 -SubnetId "/subscriptions/xxxx-xxxx-xxx-xxx/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.Network/virtualNetworks/vnetq30la9/subnets/hsmsubnet" -NetworkInterface @{PrivateIPAddress = '10.2.1.120' } + +Name Provisioning State SKU Location +---- ------------------ --- -------- +hsm-n7wfxi Succeeded SafeNet Luna Network HSM A790 eastus + +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsm +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +NETWORKINTERFACE : Specifies the list of resource Ids for the network interfaces associated with the dedicated HSM. + [PrivateIPAddress ]: Private Ip address of the interface +.Link +https://docs.microsoft.com/en-us/powershell/module/az.dedicatedhsm/new-azdedicatedhsm +#> +function New-AzDedicatedHsm { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsm])] +[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Path')] + [System.String] + # Name of the dedicated Hsm + ${Name}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Path')] + [System.String] + # The name of the Resource Group to which the resource belongs. + ${ResourceGroupName}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # Subscription credentials which uniquely identify Microsoft Azure subscription. + # The subscription ID forms part of the URI for every service call. + ${SubscriptionId}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Body')] + [System.String] + # The supported Azure location where the dedicated HSM should be created. + ${Location}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkInterface[]] + # Specifies the list of resource Ids for the network interfaces associated with the dedicated HSM. + # To construct, see NOTES section for NETWORKINTERFACE properties and create a hash table. + ${NetworkInterface}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Body')] + [System.String] + # SKU of the dedicated HSM + ${Sku}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Body')] + [System.String] + # This field will be used when RP does not support Availability zones. + ${StampId}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Body')] + [System.String] + # The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/... + ${SubnetId}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceTags]))] + [System.Collections.Hashtable] + # Resource tags + ${Tag}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Body')] + [System.String[]] + # The Dedicated Hsm zones. + ${Zone}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + CreateExpanded = 'Az.DedicatedHsm.private\New-AzDedicatedHsm_CreateExpanded'; + } + if (('CreateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} diff --git a/src/DedicatedHsm/exports/ProxyCmdletDefinitions.ps1 b/src/DedicatedHsm/exports/ProxyCmdletDefinitions.ps1 new file mode 100644 index 000000000000..88104c5f9c51 --- /dev/null +++ b/src/DedicatedHsm/exports/ProxyCmdletDefinitions.ps1 @@ -0,0 +1,768 @@ + +# ---------------------------------------------------------------------------------- +# +# 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 +Gets the specified Azure dedicated HSM. +.Description +Gets the specified Azure dedicated HSM. +.Example +PS C:\> Get-AzDedicatedHsm + +Name Provisioning State SKU Location +---- ------------------ --- -------- +hsm-7t2xaf Succeeded SafeNet Luna Network HSM A790 eastus +yeminghsm Succeeded SafeNet Luna Network HSM A790 eastus +.Example +PS C:\> Get-AzDedicatedHsm -ResourceGroupName dedicatedhsm-rg-n359cz + +Name Provisioning State SKU Location +---- ------------------ --- -------- +hsm-7t2xaf Succeeded SafeNet Luna Network HSM A790 eastus +.Example +PS C:\> Get-AzDedicatedHsm -Name hsm-7t2xaf -ResourceGroupName dedicatedhsm-rg-n359cz + +Name Provisioning State SKU Location +---- ------------------ --- -------- +hsm-7t2xaf Succeeded SafeNet Luna Network HSM A790 eastus +.Example +PS C:\> $hsm = New-AzDedicatedHsm -Name hsm-n7wfxi -ResourceGroupName dedicatedhsm-rg-n359cz -Location eastus -Sku "SafeNet Luna Network HSM A790" -StampId stamp1 -SubnetId "/subscriptions/xxxx-xxxx-xxx-xxx/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.Network/virtualNetworks/vnetq30la9/subnets/hsmsubnet" -NetworkInterface @{PrivateIPAddress = '10.2.1.120' } +PS C:\> Get-AzDedicatedHsm -InputObject $hsm + +Name Provisioning State SKU Location +---- ------------------ --- -------- +hsm-n7wfxi Succeeded SafeNet Luna Network HSM A790 eastus + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.IDedicatedHsmIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsm +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [Id ]: Resource identity path + [Name ]: Name of the dedicated Hsm + [ResourceGroupName ]: The name of the Resource Group to which the resource belongs. + [SubscriptionId ]: Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. +.Link +https://docs.microsoft.com/en-us/powershell/module/az.dedicatedhsm/get-azdedicatedhsm +#> +function Get-AzDedicatedHsm { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsm])] +[CmdletBinding(DefaultParameterSetName='List1', PositionalBinding=$false)] +param( + [Parameter(ParameterSetName='Get', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Path')] + [System.String] + # The name of the dedicated HSM. + ${Name}, + + [Parameter(ParameterSetName='Get', Mandatory)] + [Parameter(ParameterSetName='List', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Path')] + [System.String] + # The name of the Resource Group to which the dedicated hsm belongs. + ${ResourceGroupName}, + + [Parameter(ParameterSetName='Get')] + [Parameter(ParameterSetName='List')] + [Parameter(ParameterSetName='List1')] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String[]] + # Subscription credentials which uniquely identify Microsoft Azure subscription. + # The subscription ID forms part of the URI for every service call. + ${SubscriptionId}, + + [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.IDedicatedHsmIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter(ParameterSetName='List')] + [Parameter(ParameterSetName='List1')] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Query')] + [System.Int32] + # Maximum number of results to return. + ${Top}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + Get = 'Az.DedicatedHsm.private\Get-AzDedicatedHsm_Get'; + GetViaIdentity = 'Az.DedicatedHsm.private\Get-AzDedicatedHsm_GetViaIdentity'; + List = 'Az.DedicatedHsm.private\Get-AzDedicatedHsm_List'; + List1 = 'Az.DedicatedHsm.private\Get-AzDedicatedHsm_List1'; + } + if (('Get', 'List', 'List1') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} + +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.Synopsis +Create or Update a dedicated HSM in the specified subscription. +.Description +Create or Update a dedicated HSM in the specified subscription. +.Example +PS C:\> New-AzDedicatedHsm -Name hsm-n7wfxi -ResourceGroupName dedicatedhsm-rg-n359cz -Location eastus -Sku "SafeNet Luna Network HSM A790" -StampId stamp1 -SubnetId "/subscriptions/xxxx-xxxx-xxx-xxx/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.Network/virtualNetworks/vnetq30la9/subnets/hsmsubnet" -NetworkInterface @{PrivateIPAddress = '10.2.1.120' } + +Name Provisioning State SKU Location +---- ------------------ --- -------- +hsm-n7wfxi Succeeded SafeNet Luna Network HSM A790 eastus + +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsm +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +NETWORKINTERFACE : Specifies the list of resource Ids for the network interfaces associated with the dedicated HSM. + [PrivateIPAddress ]: Private Ip address of the interface +.Link +https://docs.microsoft.com/en-us/powershell/module/az.dedicatedhsm/new-azdedicatedhsm +#> +function New-AzDedicatedHsm { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsm])] +[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Path')] + [System.String] + # Name of the dedicated Hsm + ${Name}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Path')] + [System.String] + # The name of the Resource Group to which the resource belongs. + ${ResourceGroupName}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # Subscription credentials which uniquely identify Microsoft Azure subscription. + # The subscription ID forms part of the URI for every service call. + ${SubscriptionId}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Body')] + [System.String] + # The supported Azure location where the dedicated HSM should be created. + ${Location}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkInterface[]] + # Specifies the list of resource Ids for the network interfaces associated with the dedicated HSM. + # To construct, see NOTES section for NETWORKINTERFACE properties and create a hash table. + ${NetworkInterface}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Body')] + [System.String] + # SKU of the dedicated HSM + ${Sku}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Body')] + [System.String] + # This field will be used when RP does not support Availability zones. + ${StampId}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Body')] + [System.String] + # The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/... + ${SubnetId}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceTags]))] + [System.Collections.Hashtable] + # Resource tags + ${Tag}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Body')] + [System.String[]] + # The Dedicated Hsm zones. + ${Zone}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + CreateExpanded = 'Az.DedicatedHsm.private\New-AzDedicatedHsm_CreateExpanded'; + } + if (('CreateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} + +# ---------------------------------------------------------------------------------- +# +# 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 +Deletes the specified Azure Dedicated HSM. +.Description +Deletes the specified Azure Dedicated HSM. +.Example +PS C:\> Remove-AzDedicatedHsm -Name hsm-7t2xaf -ResourceGroupName lucas-manual-test + +.Example +PS C:\> $hsm = Get-AzDedicatedHsm -Name hsm-7t2xaf -ResourceGroupName dedicatedhsm-rg-n359cz +PS C:\> Remove-AzDedicatedHsm -InputObject $hsm + + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.IDedicatedHsmIdentity +.Outputs +System.Boolean +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [Id ]: Resource identity path + [Name ]: Name of the dedicated Hsm + [ResourceGroupName ]: The name of the Resource Group to which the resource belongs. + [SubscriptionId ]: Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. +.Link +https://docs.microsoft.com/en-us/powershell/module/az.dedicatedhsm/remove-azdedicatedhsm +#> +function Remove-AzDedicatedHsm { +[OutputType([System.Boolean])] +[CmdletBinding(DefaultParameterSetName='Delete', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(ParameterSetName='Delete', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Path')] + [System.String] + # The name of the dedicated HSM to delete + ${Name}, + + [Parameter(ParameterSetName='Delete', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Path')] + [System.String] + # The name of the Resource Group to which the dedicated HSM belongs. + ${ResourceGroupName}, + + [Parameter(ParameterSetName='Delete')] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # Subscription credentials which uniquely identify Microsoft Azure subscription. + # The subscription ID forms part of the URI for every service call. + ${SubscriptionId}, + + [Parameter(ParameterSetName='DeleteViaIdentity', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.IDedicatedHsmIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Returns true when the command succeeds + ${PassThru}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + Delete = 'Az.DedicatedHsm.private\Remove-AzDedicatedHsm_Delete'; + DeleteViaIdentity = 'Az.DedicatedHsm.private\Remove-AzDedicatedHsm_DeleteViaIdentity'; + } + if (('Delete') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} + +# ---------------------------------------------------------------------------------- +# +# 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 +Update a dedicated HSM in the specified subscription. +.Description +Update a dedicated HSM in the specified subscription. +.Example +PS C:\> Update-AzDedicatedHsm -Name hsm-n7wfxi -ResourceGroupName dedicatedhsm-rg-n359cz -Tag @{'key1' = '1'; 'key2' = 2; 'key3' = 3} + +Name Provisioning State SKU Location +---- ------------------ --- -------- +hsm-n7wfxi Succeeded SafeNet Luna Network HSM A790 eastus +.Example +PS C:\> $hsm = Get-AzDedicatedHsm -Name hsm-n7wfxi -ResourceGroupName dedicatedhsm-rg-n359cz +PS C:\> Update-AzDedicatedHsm -InputObject -Tag @{'key1' = '1'; 'key2' = 2; 'key3' = 3} + +Name Provisioning State SKU Location +---- ------------------ --- -------- +hsm-n7wfxi Succeeded SafeNet Luna Network HSM A790 eastus + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.IDedicatedHsmIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsm +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [Id ]: Resource identity path + [Name ]: Name of the dedicated Hsm + [ResourceGroupName ]: The name of the Resource Group to which the resource belongs. + [SubscriptionId ]: Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. +.Link +https://docs.microsoft.com/en-us/powershell/module/az.dedicatedhsm/update-azdedicatedhsm +#> +function Update-AzDedicatedHsm { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsm])] +[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Path')] + [System.String] + # Name of the dedicated HSM + ${Name}, + + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Path')] + [System.String] + # The name of the Resource Group to which the server belongs. + ${ResourceGroupName}, + + [Parameter(ParameterSetName='UpdateExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # Subscription credentials which uniquely identify Microsoft Azure subscription. + # The subscription ID forms part of the URI for every service call. + ${SubscriptionId}, + + [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.IDedicatedHsmIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPatchParametersTags]))] + [System.Collections.Hashtable] + # Resource tags + ${Tag}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + UpdateExpanded = 'Az.DedicatedHsm.private\Update-AzDedicatedHsm_UpdateExpanded'; + UpdateViaIdentityExpanded = 'Az.DedicatedHsm.private\Update-AzDedicatedHsm_UpdateViaIdentityExpanded'; + } + if (('UpdateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} diff --git a/src/DedicatedHsm/exports/Remove-AzDedicatedHsm.ps1 b/src/DedicatedHsm/exports/Remove-AzDedicatedHsm.ps1 new file mode 100644 index 000000000000..916066bfd979 --- /dev/null +++ b/src/DedicatedHsm/exports/Remove-AzDedicatedHsm.ps1 @@ -0,0 +1,181 @@ + +# ---------------------------------------------------------------------------------- +# +# 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 +Deletes the specified Azure Dedicated HSM. +.Description +Deletes the specified Azure Dedicated HSM. +.Example +PS C:\> Remove-AzDedicatedHsm -Name hsm-7t2xaf -ResourceGroupName lucas-manual-test + +.Example +PS C:\> $hsm = Get-AzDedicatedHsm -Name hsm-7t2xaf -ResourceGroupName dedicatedhsm-rg-n359cz +PS C:\> Remove-AzDedicatedHsm -InputObject $hsm + + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.IDedicatedHsmIdentity +.Outputs +System.Boolean +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [Id ]: Resource identity path + [Name ]: Name of the dedicated Hsm + [ResourceGroupName ]: The name of the Resource Group to which the resource belongs. + [SubscriptionId ]: Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. +.Link +https://docs.microsoft.com/en-us/powershell/module/az.dedicatedhsm/remove-azdedicatedhsm +#> +function Remove-AzDedicatedHsm { +[OutputType([System.Boolean])] +[CmdletBinding(DefaultParameterSetName='Delete', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(ParameterSetName='Delete', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Path')] + [System.String] + # The name of the dedicated HSM to delete + ${Name}, + + [Parameter(ParameterSetName='Delete', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Path')] + [System.String] + # The name of the Resource Group to which the dedicated HSM belongs. + ${ResourceGroupName}, + + [Parameter(ParameterSetName='Delete')] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # Subscription credentials which uniquely identify Microsoft Azure subscription. + # The subscription ID forms part of the URI for every service call. + ${SubscriptionId}, + + [Parameter(ParameterSetName='DeleteViaIdentity', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.IDedicatedHsmIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Returns true when the command succeeds + ${PassThru}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + Delete = 'Az.DedicatedHsm.private\Remove-AzDedicatedHsm_Delete'; + DeleteViaIdentity = 'Az.DedicatedHsm.private\Remove-AzDedicatedHsm_DeleteViaIdentity'; + } + if (('Delete') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} diff --git a/src/DedicatedHsm/exports/Update-AzDedicatedHsm.ps1 b/src/DedicatedHsm/exports/Update-AzDedicatedHsm.ps1 new file mode 100644 index 000000000000..b8f851d3b3b0 --- /dev/null +++ b/src/DedicatedHsm/exports/Update-AzDedicatedHsm.ps1 @@ -0,0 +1,188 @@ + +# ---------------------------------------------------------------------------------- +# +# 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 +Update a dedicated HSM in the specified subscription. +.Description +Update a dedicated HSM in the specified subscription. +.Example +PS C:\> Update-AzDedicatedHsm -Name hsm-n7wfxi -ResourceGroupName dedicatedhsm-rg-n359cz -Tag @{'key1' = '1'; 'key2' = 2; 'key3' = 3} + +Name Provisioning State SKU Location +---- ------------------ --- -------- +hsm-n7wfxi Succeeded SafeNet Luna Network HSM A790 eastus +.Example +PS C:\> $hsm = Get-AzDedicatedHsm -Name hsm-n7wfxi -ResourceGroupName dedicatedhsm-rg-n359cz +PS C:\> Update-AzDedicatedHsm -InputObject -Tag @{'key1' = '1'; 'key2' = 2; 'key3' = 3} + +Name Provisioning State SKU Location +---- ------------------ --- -------- +hsm-n7wfxi Succeeded SafeNet Luna Network HSM A790 eastus + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.IDedicatedHsmIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsm +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [Id ]: Resource identity path + [Name ]: Name of the dedicated Hsm + [ResourceGroupName ]: The name of the Resource Group to which the resource belongs. + [SubscriptionId ]: Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. +.Link +https://docs.microsoft.com/en-us/powershell/module/az.dedicatedhsm/update-azdedicatedhsm +#> +function Update-AzDedicatedHsm { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsm])] +[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Path')] + [System.String] + # Name of the dedicated HSM + ${Name}, + + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Path')] + [System.String] + # The name of the Resource Group to which the server belongs. + ${ResourceGroupName}, + + [Parameter(ParameterSetName='UpdateExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # Subscription credentials which uniquely identify Microsoft Azure subscription. + # The subscription ID forms part of the URI for every service call. + ${SubscriptionId}, + + [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.IDedicatedHsmIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPatchParametersTags]))] + [System.Collections.Hashtable] + # Resource tags + ${Tag}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + UpdateExpanded = 'Az.DedicatedHsm.private\Update-AzDedicatedHsm_UpdateExpanded'; + UpdateViaIdentityExpanded = 'Az.DedicatedHsm.private\Update-AzDedicatedHsm_UpdateViaIdentityExpanded'; + } + if (('UpdateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} diff --git a/src/DedicatedHsm/exports/readme.md b/src/DedicatedHsm/exports/readme.md new file mode 100644 index 000000000000..ca8c86d0a4cb --- /dev/null +++ b/src/DedicatedHsm/exports/readme.md @@ -0,0 +1,20 @@ +# Exports +This directory contains the cmdlets *exported by* `Az.DedicatedHsm`. No other cmdlets in this repository are directly exported. What that means is the `Az.DedicatedHsm` module will run [Export-ModuleMember](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/export-modulemember) on the cmldets in this directory. The cmdlets in this directory are generated at **build-time**. Do not put any custom code, files, cmdlets, etc. into this directory. Please use `..\custom` for all custom implementation. + +## Info +- Modifiable: no +- Generated: all +- Committed: no +- Packaged: yes + +## Details +The cmdlets generated here are created every time you run `build-module.ps1`. These cmdlets are a merge of all (excluding `InternalExport`) cmdlets from the private binary (`..\bin\Az.DedicatedHsm.private.dll`) and from the `..\custom\Az.DedicatedHsm.custom.psm1` module. Cmdlets that are *not merged* from those directories are decorated with the `InternalExport` attribute. This happens when you set the cmdlet to **hide** from configuration. For more information on hiding, see [cmdlet hiding](https://github.com/Azure/autorest/blob/master/docs/powershell/options.md#cmdlet-hiding-exportation-suppression) or the [readme.md](..\internal/readme.md) in the `..\internal` folder. + +## Purpose +We generate script cmdlets out of the binary cmdlets and custom cmdlets. The format of script cmdlets are simplistic; thus, easier to generate at build time. Generating the cmdlets is required as to allow merging of generated binary, hand-written binary, and hand-written custom cmdlets. For Azure cmdlets, having script cmdlets simplifies the mechanism for exporting Azure profiles. + +## Structure +The cmdlets generated here will flat in the directory (no sub-folders) as long as there are no Azure profiles specified for any cmdlets. Azure profiles (the `Profiles` attribute) is only applied when generating with the `--azure` attribute (or `azure: true` in the configuration). When Azure profiles are applied, the folder structure has a folder per profile. Each profile folder has only those cmdlets that apply to that profile. + +## Usage +When `./Az.DedicatedHsm.psm1` is loaded, it dynamically exports cmdlets here based on the folder structure and on the selected profile. If there are no sub-folders, it exports all cmdlets at the root of this folder. If there are sub-folders, it checks to see the selected profile. If no profile is selected, it exports the cmdlets in the last sub-folder (alphabetically). If a profile is selected, it exports the cmdlets in the sub-folder that matches the profile name. If there is no sub-folder that matches the profile name, it exports no cmdlets and writes a warning message. \ No newline at end of file diff --git a/src/DedicatedHsm/generate-help.ps1 b/src/DedicatedHsm/generate-help.ps1 new file mode 100644 index 000000000000..07a73bff4ef1 --- /dev/null +++ b/src/DedicatedHsm/generate-help.ps1 @@ -0,0 +1,73 @@ +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- +param([switch]$Isolated) +$ErrorActionPreference = 'Stop' + +$pwsh = [System.Diagnostics.Process]::GetCurrentProcess().Path +if(-not $Isolated) { + Write-Host -ForegroundColor Green 'Creating isolated process...' + & "$pwsh" -NonInteractive -NoLogo -NoProfile -File $MyInvocation.MyCommand.Path @PSBoundParameters -Isolated + return +} + +$exportsFolder = Join-Path $PSScriptRoot 'exports' +if(-not (Test-Path $exportsFolder)) { + Write-Error "Exports folder '$exportsFolder' was not found." +} + +$directories = Get-ChildItem -Directory -Path $exportsFolder +$hasProfiles = ($directories | Measure-Object).Count -gt 0 +if(-not $hasProfiles) { + $directories = Get-Item -Path $exportsFolder +} + +$docsFolder = Join-Path $PSScriptRoot 'docs' +if(Test-Path $docsFolder) { + $null = Get-ChildItem -Path $docsFolder -Recurse -Exclude 'readme.md' | Remove-Item -Recurse -ErrorAction SilentlyContinue +} +$null = New-Item -ItemType Directory -Force -Path $docsFolder -ErrorAction SilentlyContinue +$examplesFolder = Join-Path $PSScriptRoot 'examples' + +$modulePsd1 = Get-Item -Path (Join-Path $PSScriptRoot './Az.DedicatedHsm.psd1') +$modulePath = $modulePsd1.FullName +$moduleName = $modulePsd1.BaseName + +# Load DLL to use build-time cmdlets +Import-Module -Name $modulePath +Import-Module -Name (Join-Path $PSScriptRoot './bin/Az.DedicatedHsm.private.dll') +$instance = [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Module]::Instance +# Module info is shared per profile +$moduleInfo = Get-Module -Name $moduleName + +foreach($directory in $directories) +{ + if($hasProfiles) { + Select-AzProfile -Name $directory.Name + } + # Reload module per profile + Import-Module -Name $modulePath -Force + + $cmdletNames = Get-ScriptCmdlet -ScriptFolder $directory.FullName + $cmdletHelpInfo = $cmdletNames | ForEach-Object { Get-Help -Name $_ -Full } + $cmdletFunctionInfo = Get-ScriptCmdlet -ScriptFolder $directory.FullName -AsFunctionInfo + + $docsPath = Join-Path $docsFolder $directory.Name + $null = New-Item -ItemType Directory -Force -Path $docsPath -ErrorAction SilentlyContinue + $examplesPath = Join-Path $examplesFolder $directory.Name + + Export-HelpMarkdown -ModuleInfo $moduleInfo -FunctionInfo $cmdletFunctionInfo -HelpInfo $cmdletHelpInfo -DocsFolder $docsPath -ExamplesFolder $examplesPath + Write-Host -ForegroundColor Green "Created documentation in '$docsPath'" +} + +Write-Host -ForegroundColor Green '-------------Done-------------' \ No newline at end of file diff --git a/src/DedicatedHsm/generated/Module.cs b/src/DedicatedHsm/generated/Module.cs new file mode 100644 index 000000000000..c551dded688c --- /dev/null +++ b/src/DedicatedHsm/generated/Module.cs @@ -0,0 +1,158 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm +{ + using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Extensions; + using SendAsyncStepDelegate = global::System.Func, global::System.Threading.Tasks.Task>, global::System.Func, global::System.Threading.Tasks.Task>, global::System.Threading.Tasks.Task>, global::System.Threading.Tasks.Task>; + using PipelineChangeDelegate = global::System.Action, global::System.Threading.Tasks.Task>, global::System.Func, global::System.Threading.Tasks.Task>, global::System.Threading.Tasks.Task>, global::System.Threading.Tasks.Task>>; + using GetParameterDelegate = global::System.Func; + using ModuleLoadPipelineDelegate = global::System.Action, global::System.Threading.Tasks.Task>, global::System.Func, global::System.Threading.Tasks.Task>, global::System.Threading.Tasks.Task>, global::System.Threading.Tasks.Task>>, global::System.Action, global::System.Threading.Tasks.Task>, global::System.Func, global::System.Threading.Tasks.Task>, global::System.Threading.Tasks.Task>, global::System.Threading.Tasks.Task>>>; + using NewRequestPipelineDelegate = global::System.Action, global::System.Threading.Tasks.Task>, global::System.Func, global::System.Threading.Tasks.Task>, global::System.Threading.Tasks.Task>, global::System.Threading.Tasks.Task>>, global::System.Action, global::System.Threading.Tasks.Task>, global::System.Func, global::System.Threading.Tasks.Task>, global::System.Threading.Tasks.Task>, global::System.Threading.Tasks.Task>>>; + using ArgumentCompleterDelegate = global::System.Func; + using SignalDelegate = global::System.Func, global::System.Threading.Tasks.Task>; + using EventListenerDelegate = global::System.Func, global::System.Func, global::System.Threading.Tasks.Task>, global::System.Management.Automation.InvocationInfo, string, string, string, global::System.Exception, global::System.Threading.Tasks.Task>; + using NextDelegate = global::System.Func, global::System.Threading.Tasks.Task>, global::System.Threading.Tasks.Task>; + + /// A class that contains the module-common code and data. + public partial class Module + { + /// The currently selected profile. + public string Profile = global::System.String.Empty; + + public global::System.Net.Http.HttpClientHandler _handler = new global::System.Net.Http.HttpClientHandler(); + + /// the ISendAsync pipeline instance + private Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.HttpPipeline _pipeline; + + /// the ISendAsync pipeline instance (when proxy is enabled) + private Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.HttpPipeline _pipelineWithProxy; + + public global::System.Net.WebProxy _webProxy = new global::System.Net.WebProxy(); + + /// Gets completion data for azure specific fields + public ArgumentCompleterDelegate ArgumentCompleter { get; set; } + + /// The instance of the Client API + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.DedicatedHsm ClientAPI { get; set; } + + /// A delegate that gets called for each signalled event + public EventListenerDelegate EventListener { get; set; } + + /// The delegate to call to get parameter data from a common module. + public GetParameterDelegate GetParameterValue { get; set; } + + /// Backing field for property. + private static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Module _instance; + + /// the singleton of this module class + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Module Instance => Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Module._instance?? (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Module._instance = new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Module()); + + /// The Name of this module + public string Name => @"Az.DedicatedHsm"; + + /// The delegate to call when this module is loaded (supporting a commmon module). + public ModuleLoadPipelineDelegate OnModuleLoad { get; set; } + + /// The delegate to call before each new request (supporting a commmon module). + public NewRequestPipelineDelegate OnNewRequest { get; set; } + + /// The name of the currently selected Azure profile + public global::System.String ProfileName { get; set; } + + /// The ResourceID for this module (azure arm). + public string ResourceId => @"Az.DedicatedHsm"; + + /// The from the cmdlet + /// The HttpPipeline for the request + + partial void AfterCreatePipeline(global::System.Management.Automation.InvocationInfo invocationInfo, ref Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.HttpPipeline pipeline); + + /// The from the cmdlet + /// The HttpPipeline for the request + + partial void BeforeCreatePipeline(global::System.Management.Automation.InvocationInfo invocationInfo, ref Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.HttpPipeline pipeline); + + partial void CustomInit(); + + /// Creates an instance of the HttpPipeline for each call. + /// The from the cmdlet + /// the cmdlet's correlation id. + /// the cmdlet's process record correlation id. + /// the cmdlet's parameterset name. + /// An instance of Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.HttpPipeline for the remote call. + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.HttpPipeline CreatePipeline(global::System.Management.Automation.InvocationInfo invocationInfo, string correlationId, string processRecordId, string parameterSetName = null) + { + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.HttpPipeline pipeline = null; + BeforeCreatePipeline(invocationInfo, ref pipeline); + pipeline = (pipeline ?? (_handler.UseProxy ? _pipelineWithProxy : _pipeline)).Clone(); + AfterCreatePipeline(invocationInfo, ref pipeline); + pipeline.Append(new Runtime.CmdInfoHandler(processRecordId, invocationInfo, parameterSetName).SendAsync); + OnNewRequest?.Invoke( invocationInfo, correlationId,processRecordId, (step)=> { pipeline.Prepend(step); } , (step)=> { pipeline.Append(step); } ); + return pipeline; + } + + /// Gets parameters from a common module. + /// The from the cmdlet + /// the cmdlet's correlation id. + /// The name of the parameter to get the value for. + /// + /// The parameter value from the common module. (Note: this should be type converted on the way back) + /// + public object GetParameter(global::System.Management.Automation.InvocationInfo invocationInfo, string correlationId, string parameterName) => GetParameterValue?.Invoke( ResourceId, Name, invocationInfo, correlationId,parameterName ); + + /// Initialization steps performed after the module is loaded. + public void Init() + { + OnModuleLoad?.Invoke( ResourceId, Name ,(step)=> { _pipeline.Prepend(step); } , (step)=> { _pipeline.Append(step); } ); + OnModuleLoad?.Invoke( ResourceId, Name ,(step)=> { _pipelineWithProxy.Prepend(step); } , (step)=> { _pipelineWithProxy.Append(step); } ); + CustomInit(); + } + + /// Creates the module instance. + private Module() + { + /// constructor + ClientAPI = new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.DedicatedHsm(); + _handler.Proxy = _webProxy; + _pipeline = new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.HttpPipeline(new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.HttpClientFactory(new global::System.Net.Http.HttpClient())); + _pipelineWithProxy = new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.HttpPipeline(new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.HttpClientFactory(new global::System.Net.Http.HttpClient(_handler))); + } + + /// The HTTP Proxy to use. + /// The HTTP Proxy Credentials + /// True if the proxy should use default credentials + public void SetProxyConfiguration(global::System.Uri proxy, global::System.Management.Automation.PSCredential proxyCredential, bool proxyUseDefaultCredentials) + { + // set the proxy configuration + _webProxy.Address = proxy; + _webProxy.BypassProxyOnLocal = false; + _webProxy.Credentials = proxyCredential ?.GetNetworkCredential(); + _webProxy.UseDefaultCredentials = proxyUseDefaultCredentials; + _handler.UseProxy = proxy != null; + } + + /// Called to dispatch events to the common module listener + /// The ID of the event + /// The cancellation token for the event + /// A delegate to get the detailed event data + /// The callback for the event dispatcher + /// The from the cmdlet + /// the cmdlet's parameterset name. + /// the cmdlet's correlation id. + /// the cmdlet's process record correlation id. + /// the exception that is being thrown (if available) + /// + /// A that will be complete when handling of the event is completed. + /// + public async global::System.Threading.Tasks.Task Signal(string id, global::System.Threading.CancellationToken token, global::System.Func getEventData, SignalDelegate signal, global::System.Management.Automation.InvocationInfo invocationInfo, string parameterSetName, string correlationId, string processRecordId, global::System.Exception exception) + { + using( NoSynchronizationContext ) + { + await EventListener?.Invoke(id,token,getEventData, signal, invocationInfo, parameterSetName, correlationId,processRecordId,exception); + } + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/DedicatedHsm.cs b/src/DedicatedHsm/generated/api/DedicatedHsm.cs new file mode 100644 index 000000000000..416e35304f4f --- /dev/null +++ b/src/DedicatedHsm/generated/api/DedicatedHsm.cs @@ -0,0 +1,1469 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm +{ + using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Extensions; + + /// + /// Low-level API implementation for the DedicatedHsm service. + /// + public partial class DedicatedHsm + { + + /// Create or Update a dedicated HSM in the specified subscription. + /// The name of the Resource Group to which the resource belongs. + /// Name of the dedicated Hsm + /// Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription + /// ID forms part of the URI for every service call. + /// Parameters to create or update the dedicated hsm + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task DedicatedHsmCreateOrUpdate(string resourceGroupName, string name, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsm body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.ISendAsync sender) + { + var apiVersion = @"2018-10-31"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + global::System.Uri.EscapeDataString(subscriptionId) + + "/resourceGroups/" + + global::System.Uri.EscapeDataString(resourceGroupName) + + "/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/" + + global::System.Uri.EscapeDataString(name) + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Method.Put, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // set body content + request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.BodyContentSet, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.DedicatedHsmCreateOrUpdate_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// Create or Update a dedicated HSM in the specified subscription. + /// + /// Parameters to create or update the dedicated hsm + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task DedicatedHsmCreateOrUpdateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsm body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.ISendAsync sender) + { + var apiVersion = @"2018-10-31"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // verify that Identity format is an exact match for uri + + var _match = new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/(?[^/]+)$").Match(viaIdentity); + if (!_match.Success) + { + throw new global::System.Exception("Invalid identity for URI '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/{name}'"); + } + + // replace URI parameters with values from identity + var resourceGroupName = _match.Groups["resourceGroupName"].Value; + var name = _match.Groups["name"].Value; + var subscriptionId = _match.Groups["subscriptionId"].Value; + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + subscriptionId + + "/resourceGroups/" + + resourceGroupName + + "/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/" + + name + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Method.Put, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // set body content + request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.BodyContentSet, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.DedicatedHsmCreateOrUpdate_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// Actual wire call for method. + /// the prepared HttpRequestMessage to send. + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task DedicatedHsmCreateOrUpdate_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.ISendAsync sender) + { + using( NoSynchronizationContext ) + { + global::System.Net.Http.HttpResponseMessage _response = null; + try + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + // this operation supports x-ms-long-running-operation + var _originalUri = request.RequestUri.AbsoluteUri; + // declared final-state-via: default + var asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = _response.GetFirstHeader(@"Location"); + while (_response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + { + + // get the delay before polling. (default to 30 seconds if not present) + int delay = (int)(_response.Headers.RetryAfter?.Delta?.TotalSeconds ?? 30); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.DelayBeforePolling, $"Delaying {delay} seconds before polling.", _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + // start the delay timer (we'll await later...) + var waiting = global::System.Threading.Tasks.Task.Delay(delay * 1000, eventListener.Token ); + + // while we wait, let's grab the headers and get ready to poll. + if (!System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Azure-AsyncOperation"))) { + asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + } + if (!global::System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Location"))) { + location = _response.GetFirstHeader(@"Location"); + } + var _uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? _originalUri : location : asyncOperation; + request = request.CloneAndDispose(new global::System.Uri(_uri), Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Method.Get); + + // and let's look at the current response body and see if we have some information we can give back to the listener + var content = await _response.Content.ReadAsStringAsync(); + await waiting; + + // check for cancellation + if( eventListener.Token.IsCancellationRequested ) { return; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Polling, $"Polling {_uri}.", _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + // drop the old response + _response?.Dispose(); + + // make the polling call + _response = await sender.SendAsync(request, eventListener); + + // if we got back an OK, take a peek inside and see if it's done + if( _response.StatusCode == global::System.Net.HttpStatusCode.OK) + { + try { + if( Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode.Parse(await _response.Content.ReadAsStringAsync()) is Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json) + { + var state = json.Property("properties")?.PropertyT("provisioningState") ?? json.PropertyT("status"); + if( state is null ) + { + // the body doesn't contain any information that has the state of the LRO + // we're going to just get out, and let the consumer have the result + break; + } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Polling, $"Polled {_uri} provisioning state {state}.", _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + switch( state?.ToString()?.ToLower() ) + { + case "succeeded": + case "failed": + case "canceled": + // we're done polling. + break; + + default: + // need to keep polling! + _response.StatusCode = global::System.Net.HttpStatusCode.Created; + continue; + } + } + } catch { + // if we run into a problem peeking into the result, + // we really don't want to do anything special. + } + } + + // check for terminal status code + if (_response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + { + continue; + } + // we are done polling, do a request on final target? + if (!string.IsNullOrWhiteSpace(_originalUri)) + { + // create a new request with the final uri + request = request.CloneAndDispose(new global::System.Uri(_originalUri), Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Method.Get); + + // drop the old response + _response?.Dispose(); + + // make the final call + _response = await sender.SendAsync(request, eventListener); + break; + } + } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.DedicatedHsm.FromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.DedicatedHsmError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Finally, request, _response); + _response?.Dispose(); + request?.Dispose(); + } + } + } + + /// + /// Validation method for method. Call this like the actual call, but you will get + /// validation events back. + /// + /// The name of the Resource Group to which the resource belongs. + /// Name of the dedicated Hsm + /// Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription + /// ID forms part of the URI for every service call. + /// Parameters to create or update the dedicated hsm + /// an instance that will receive events. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task DedicatedHsmCreateOrUpdate_Validate(string resourceGroupName, string name, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsm body, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener eventListener) + { + using( NoSynchronizationContext ) + { + await eventListener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); + await eventListener.AssertNotNull(nameof(name),name); + await eventListener.AssertRegEx(nameof(name),name,@"^[a-zA-Z0-9-]{3,24}$"); + await eventListener.AssertNotNull(nameof(subscriptionId),subscriptionId); + await eventListener.AssertNotNull(nameof(body), body); + await eventListener.AssertObjectIsValid(nameof(body), body); + } + } + + /// Deletes the specified Azure Dedicated HSM. + /// The name of the Resource Group to which the dedicated HSM belongs. + /// The name of the dedicated HSM to delete + /// Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription + /// ID forms part of the URI for every service call. + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns 204 (NoContent). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task DedicatedHsmDelete(string resourceGroupName, string name, string subscriptionId, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.ISendAsync sender) + { + var apiVersion = @"2018-10-31"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + global::System.Uri.EscapeDataString(subscriptionId) + + "/resourceGroups/" + + global::System.Uri.EscapeDataString(resourceGroupName) + + "/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/" + + global::System.Uri.EscapeDataString(name) + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Method.Delete, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.DedicatedHsmDelete_Call(request,onOk,onNoContent,onDefault,eventListener,sender); + } + } + + /// Deletes the specified Azure Dedicated HSM. + /// + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns 204 (NoContent). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task DedicatedHsmDeleteViaIdentity(global::System.String viaIdentity, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.ISendAsync sender) + { + var apiVersion = @"2018-10-31"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // verify that Identity format is an exact match for uri + + var _match = new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/(?[^/]+)$").Match(viaIdentity); + if (!_match.Success) + { + throw new global::System.Exception("Invalid identity for URI '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/{name}'"); + } + + // replace URI parameters with values from identity + var resourceGroupName = _match.Groups["resourceGroupName"].Value; + var name = _match.Groups["name"].Value; + var subscriptionId = _match.Groups["subscriptionId"].Value; + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + subscriptionId + + "/resourceGroups/" + + resourceGroupName + + "/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/" + + name + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Method.Delete, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.DedicatedHsmDelete_Call(request,onOk,onNoContent,onDefault,eventListener,sender); + } + } + + /// Actual wire call for method. + /// the prepared HttpRequestMessage to send. + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns 204 (NoContent). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task DedicatedHsmDelete_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.ISendAsync sender) + { + using( NoSynchronizationContext ) + { + global::System.Net.Http.HttpResponseMessage _response = null; + try + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + // this operation supports x-ms-long-running-operation + var _originalUri = request.RequestUri.AbsoluteUri; + // declared final-state-via: default + var _finalUri = _response.GetFirstHeader(@"Location"); + var asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = _response.GetFirstHeader(@"Location"); + while (_response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + { + + // get the delay before polling. (default to 30 seconds if not present) + int delay = (int)(_response.Headers.RetryAfter?.Delta?.TotalSeconds ?? 30); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.DelayBeforePolling, $"Delaying {delay} seconds before polling.", _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + // start the delay timer (we'll await later...) + var waiting = global::System.Threading.Tasks.Task.Delay(delay * 1000, eventListener.Token ); + + // while we wait, let's grab the headers and get ready to poll. + if (!System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Azure-AsyncOperation"))) { + asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + } + if (!global::System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Location"))) { + location = _response.GetFirstHeader(@"Location"); + } + var _uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? _originalUri : location : asyncOperation; + request = request.CloneAndDispose(new global::System.Uri(_uri), Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Method.Get); + + // and let's look at the current response body and see if we have some information we can give back to the listener + var content = await _response.Content.ReadAsStringAsync(); + await waiting; + + // check for cancellation + if( eventListener.Token.IsCancellationRequested ) { return; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Polling, $"Polling {_uri}.", _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + // drop the old response + _response?.Dispose(); + + // make the polling call + _response = await sender.SendAsync(request, eventListener); + + // if we got back an OK, take a peek inside and see if it's done + if( _response.StatusCode == global::System.Net.HttpStatusCode.OK) + { + try { + if( Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode.Parse(await _response.Content.ReadAsStringAsync()) is Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json) + { + var state = json.Property("properties")?.PropertyT("provisioningState") ?? json.PropertyT("status"); + if( state is null ) + { + // the body doesn't contain any information that has the state of the LRO + // we're going to just get out, and let the consumer have the result + break; + } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Polling, $"Polled {_uri} provisioning state {state}.", _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + switch( state?.ToString()?.ToLower() ) + { + case "succeeded": + case "failed": + case "canceled": + // we're done polling. + break; + + default: + // need to keep polling! + _response.StatusCode = global::System.Net.HttpStatusCode.Created; + continue; + } + } + } catch { + // if we run into a problem peeking into the result, + // we really don't want to do anything special. + } + } + + // check for terminal status code + if (_response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + { + continue; + } + // we are done polling, do a request on final target? + if (!string.IsNullOrWhiteSpace(_finalUri)) + { + // create a new request with the final uri + request = request.CloneAndDispose(new global::System.Uri(_finalUri), Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Method.Get); + + // drop the old response + _response?.Dispose(); + + // make the final call + _response = await sender.SendAsync(request, eventListener); + break; + } + } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onOk(_response); + break; + } + case global::System.Net.HttpStatusCode.NoContent: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onNoContent(_response); + break; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.DedicatedHsmError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Finally, request, _response); + _response?.Dispose(); + request?.Dispose(); + } + } + } + + /// + /// Validation method for method. Call this like the actual call, but you will get validation + /// events back. + /// + /// The name of the Resource Group to which the dedicated HSM belongs. + /// The name of the dedicated HSM to delete + /// Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription + /// ID forms part of the URI for every service call. + /// an instance that will receive events. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task DedicatedHsmDelete_Validate(string resourceGroupName, string name, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener eventListener) + { + using( NoSynchronizationContext ) + { + await eventListener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); + await eventListener.AssertNotNull(nameof(name),name); + await eventListener.AssertNotNull(nameof(subscriptionId),subscriptionId); + } + } + + /// Gets the specified Azure dedicated HSM. + /// The name of the Resource Group to which the dedicated hsm belongs. + /// The name of the dedicated HSM. + /// Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription + /// ID forms part of the URI for every service call. + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task DedicatedHsmGet(string resourceGroupName, string name, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.ISendAsync sender) + { + var apiVersion = @"2018-10-31"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + global::System.Uri.EscapeDataString(subscriptionId) + + "/resourceGroups/" + + global::System.Uri.EscapeDataString(resourceGroupName) + + "/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/" + + global::System.Uri.EscapeDataString(name) + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.DedicatedHsmGet_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// Gets the specified Azure dedicated HSM. + /// + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task DedicatedHsmGetViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.ISendAsync sender) + { + var apiVersion = @"2018-10-31"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // verify that Identity format is an exact match for uri + + var _match = new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/(?[^/]+)$").Match(viaIdentity); + if (!_match.Success) + { + throw new global::System.Exception("Invalid identity for URI '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/{name}'"); + } + + // replace URI parameters with values from identity + var resourceGroupName = _match.Groups["resourceGroupName"].Value; + var name = _match.Groups["name"].Value; + var subscriptionId = _match.Groups["subscriptionId"].Value; + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + subscriptionId + + "/resourceGroups/" + + resourceGroupName + + "/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/" + + name + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.DedicatedHsmGet_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// Actual wire call for method. + /// the prepared HttpRequestMessage to send. + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task DedicatedHsmGet_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.ISendAsync sender) + { + using( NoSynchronizationContext ) + { + global::System.Net.Http.HttpResponseMessage _response = null; + try + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.DedicatedHsm.FromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.DedicatedHsmError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Finally, request, _response); + _response?.Dispose(); + request?.Dispose(); + } + } + } + + /// + /// Validation method for method. Call this like the actual call, but you will get validation + /// events back. + /// + /// The name of the Resource Group to which the dedicated hsm belongs. + /// The name of the dedicated HSM. + /// Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription + /// ID forms part of the URI for every service call. + /// an instance that will receive events. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task DedicatedHsmGet_Validate(string resourceGroupName, string name, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener eventListener) + { + using( NoSynchronizationContext ) + { + await eventListener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); + await eventListener.AssertNotNull(nameof(name),name); + await eventListener.AssertNotNull(nameof(subscriptionId),subscriptionId); + } + } + + /// + /// The List operation gets information about the dedicated hsms associated with the subscription and within the specified + /// resource group. + /// + /// The name of the Resource Group to which the dedicated HSM belongs. + /// Maximum number of results to return. + /// Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription + /// ID forms part of the URI for every service call. + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task DedicatedHsmListByResourceGroup(string resourceGroupName, int? Top, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.ISendAsync sender) + { + var apiVersion = @"2018-10-31"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + global::System.Uri.EscapeDataString(subscriptionId) + + "/resourceGroups/" + + global::System.Uri.EscapeDataString(resourceGroupName) + + "/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs" + + "?" + + (null == Top ? global::System.String.Empty : "$top=" + global::System.Uri.EscapeDataString(Top.ToString())) + + "&" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.DedicatedHsmListByResourceGroup_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// + /// The List operation gets information about the dedicated hsms associated with the subscription and within the specified + /// resource group. + /// + /// + /// Maximum number of results to return. + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task DedicatedHsmListByResourceGroupViaIdentity(global::System.String viaIdentity, int? Top, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.ISendAsync sender) + { + var apiVersion = @"2018-10-31"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // verify that Identity format is an exact match for uri + + var _match = new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs$").Match(viaIdentity); + if (!_match.Success) + { + throw new global::System.Exception("Invalid identity for URI '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs'"); + } + + // replace URI parameters with values from identity + var resourceGroupName = _match.Groups["resourceGroupName"].Value; + var subscriptionId = _match.Groups["subscriptionId"].Value; + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + subscriptionId + + "/resourceGroups/" + + resourceGroupName + + "/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs" + + "?" + + (null == Top ? global::System.String.Empty : "$top=" + global::System.Uri.EscapeDataString(Top.ToString())) + + "&" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.DedicatedHsmListByResourceGroup_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// Actual wire call for method. + /// the prepared HttpRequestMessage to send. + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task DedicatedHsmListByResourceGroup_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.ISendAsync sender) + { + using( NoSynchronizationContext ) + { + global::System.Net.Http.HttpResponseMessage _response = null; + try + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.DedicatedHsmListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.DedicatedHsmError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Finally, request, _response); + _response?.Dispose(); + request?.Dispose(); + } + } + } + + /// + /// Validation method for method. Call this like the actual call, but you will + /// get validation events back. + /// + /// The name of the Resource Group to which the dedicated HSM belongs. + /// Maximum number of results to return. + /// Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription + /// ID forms part of the URI for every service call. + /// an instance that will receive events. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task DedicatedHsmListByResourceGroup_Validate(string resourceGroupName, int? Top, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener eventListener) + { + using( NoSynchronizationContext ) + { + await eventListener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); + await eventListener.AssertNotNull(nameof(subscriptionId),subscriptionId); + } + } + + /// + /// The List operation gets information about the dedicated HSMs associated with the subscription. + /// + /// Maximum number of results to return. + /// Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription + /// ID forms part of the URI for every service call. + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task DedicatedHsmListBySubscription(int? Top, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.ISendAsync sender) + { + var apiVersion = @"2018-10-31"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + global::System.Uri.EscapeDataString(subscriptionId) + + "/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs" + + "?" + + (null == Top ? global::System.String.Empty : "$top=" + global::System.Uri.EscapeDataString(Top.ToString())) + + "&" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.DedicatedHsmListBySubscription_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// + /// The List operation gets information about the dedicated HSMs associated with the subscription. + /// + /// + /// Maximum number of results to return. + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task DedicatedHsmListBySubscriptionViaIdentity(global::System.String viaIdentity, int? Top, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.ISendAsync sender) + { + var apiVersion = @"2018-10-31"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // verify that Identity format is an exact match for uri + + var _match = new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs$").Match(viaIdentity); + if (!_match.Success) + { + throw new global::System.Exception("Invalid identity for URI '/subscriptions/{subscriptionId}/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs'"); + } + + // replace URI parameters with values from identity + var subscriptionId = _match.Groups["subscriptionId"].Value; + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + subscriptionId + + "/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs" + + "?" + + (null == Top ? global::System.String.Empty : "$top=" + global::System.Uri.EscapeDataString(Top.ToString())) + + "&" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.DedicatedHsmListBySubscription_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// Actual wire call for method. + /// the prepared HttpRequestMessage to send. + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task DedicatedHsmListBySubscription_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.ISendAsync sender) + { + using( NoSynchronizationContext ) + { + global::System.Net.Http.HttpResponseMessage _response = null; + try + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.DedicatedHsmListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.DedicatedHsmError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Finally, request, _response); + _response?.Dispose(); + request?.Dispose(); + } + } + } + + /// + /// Validation method for method. Call this like the actual call, but you will + /// get validation events back. + /// + /// Maximum number of results to return. + /// Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription + /// ID forms part of the URI for every service call. + /// an instance that will receive events. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task DedicatedHsmListBySubscription_Validate(int? Top, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener eventListener) + { + using( NoSynchronizationContext ) + { + await eventListener.AssertNotNull(nameof(subscriptionId),subscriptionId); + } + } + + /// Update a dedicated HSM in the specified subscription. + /// The name of the Resource Group to which the server belongs. + /// Name of the dedicated HSM + /// Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription + /// ID forms part of the URI for every service call. + /// Parameters to patch the dedicated HSM + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task DedicatedHsmUpdate(string resourceGroupName, string name, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPatchParameters body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.ISendAsync sender) + { + var apiVersion = @"2018-10-31"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + global::System.Uri.EscapeDataString(subscriptionId) + + "/resourceGroups/" + + global::System.Uri.EscapeDataString(resourceGroupName) + + "/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/" + + global::System.Uri.EscapeDataString(name) + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Method.Patch, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // set body content + request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.BodyContentSet, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.DedicatedHsmUpdate_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// Update a dedicated HSM in the specified subscription. + /// + /// Parameters to patch the dedicated HSM + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task DedicatedHsmUpdateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPatchParameters body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.ISendAsync sender) + { + var apiVersion = @"2018-10-31"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // verify that Identity format is an exact match for uri + + var _match = new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/(?[^/]+)$").Match(viaIdentity); + if (!_match.Success) + { + throw new global::System.Exception("Invalid identity for URI '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/{name}'"); + } + + // replace URI parameters with values from identity + var resourceGroupName = _match.Groups["resourceGroupName"].Value; + var name = _match.Groups["name"].Value; + var subscriptionId = _match.Groups["subscriptionId"].Value; + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + subscriptionId + + "/resourceGroups/" + + resourceGroupName + + "/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/" + + name + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Method.Patch, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // set body content + request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.BodyContentSet, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.DedicatedHsmUpdate_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// Actual wire call for method. + /// the prepared HttpRequestMessage to send. + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task DedicatedHsmUpdate_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.ISendAsync sender) + { + using( NoSynchronizationContext ) + { + global::System.Net.Http.HttpResponseMessage _response = null; + try + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + // this operation supports x-ms-long-running-operation + var _originalUri = request.RequestUri.AbsoluteUri; + // declared final-state-via: default + var asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = _response.GetFirstHeader(@"Location"); + while (_response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + { + + // get the delay before polling. (default to 30 seconds if not present) + int delay = (int)(_response.Headers.RetryAfter?.Delta?.TotalSeconds ?? 30); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.DelayBeforePolling, $"Delaying {delay} seconds before polling.", _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + // start the delay timer (we'll await later...) + var waiting = global::System.Threading.Tasks.Task.Delay(delay * 1000, eventListener.Token ); + + // while we wait, let's grab the headers and get ready to poll. + if (!System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Azure-AsyncOperation"))) { + asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + } + if (!global::System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Location"))) { + location = _response.GetFirstHeader(@"Location"); + } + var _uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? _originalUri : location : asyncOperation; + request = request.CloneAndDispose(new global::System.Uri(_uri), Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Method.Get); + + // and let's look at the current response body and see if we have some information we can give back to the listener + var content = await _response.Content.ReadAsStringAsync(); + await waiting; + + // check for cancellation + if( eventListener.Token.IsCancellationRequested ) { return; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Polling, $"Polling {_uri}.", _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + // drop the old response + _response?.Dispose(); + + // make the polling call + _response = await sender.SendAsync(request, eventListener); + + // if we got back an OK, take a peek inside and see if it's done + if( _response.StatusCode == global::System.Net.HttpStatusCode.OK) + { + try { + if( Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode.Parse(await _response.Content.ReadAsStringAsync()) is Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json) + { + var state = json.Property("properties")?.PropertyT("provisioningState") ?? json.PropertyT("status"); + if( state is null ) + { + // the body doesn't contain any information that has the state of the LRO + // we're going to just get out, and let the consumer have the result + break; + } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Polling, $"Polled {_uri} provisioning state {state}.", _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + switch( state?.ToString()?.ToLower() ) + { + case "succeeded": + case "failed": + case "canceled": + // we're done polling. + break; + + default: + // need to keep polling! + _response.StatusCode = global::System.Net.HttpStatusCode.Created; + continue; + } + } + } catch { + // if we run into a problem peeking into the result, + // we really don't want to do anything special. + } + } + + // check for terminal status code + if (_response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + { + continue; + } + // we are done polling, do a request on final target? + if (!string.IsNullOrWhiteSpace(_originalUri)) + { + // create a new request with the final uri + request = request.CloneAndDispose(new global::System.Uri(_originalUri), Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Method.Get); + + // drop the old response + _response?.Dispose(); + + // make the final call + _response = await sender.SendAsync(request, eventListener); + break; + } + } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.DedicatedHsm.FromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.DedicatedHsmError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Finally, request, _response); + _response?.Dispose(); + request?.Dispose(); + } + } + } + + /// + /// Validation method for method. Call this like the actual call, but you will get validation + /// events back. + /// + /// The name of the Resource Group to which the server belongs. + /// Name of the dedicated HSM + /// Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription + /// ID forms part of the URI for every service call. + /// Parameters to patch the dedicated HSM + /// an instance that will receive events. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task DedicatedHsmUpdate_Validate(string resourceGroupName, string name, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPatchParameters body, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener eventListener) + { + using( NoSynchronizationContext ) + { + await eventListener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); + await eventListener.AssertNotNull(nameof(name),name); + await eventListener.AssertRegEx(nameof(name),name,@"^[a-zA-Z0-9-]{3,24}$"); + await eventListener.AssertNotNull(nameof(subscriptionId),subscriptionId); + await eventListener.AssertNotNull(nameof(body), body); + await eventListener.AssertObjectIsValid(nameof(body), body); + } + } + + /// Get a list of Dedicated HSM operations. + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task OperationsList(global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.ISendAsync sender) + { + var apiVersion = @"2018-10-31"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/providers/Microsoft.HardwareSecurityModules/operations" + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.OperationsList_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// Get a list of Dedicated HSM operations. + /// + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task OperationsListViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.ISendAsync sender) + { + var apiVersion = @"2018-10-31"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // verify that Identity format is an exact match for uri + + var _match = new global::System.Text.RegularExpressions.Regex("^/providers/Microsoft.HardwareSecurityModules/operations$").Match(viaIdentity); + if (!_match.Success) + { + throw new global::System.Exception("Invalid identity for URI '/providers/Microsoft.HardwareSecurityModules/operations'"); + } + + // replace URI parameters with values from identity + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/providers/Microsoft.HardwareSecurityModules/operations" + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.OperationsList_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// Actual wire call for method. + /// the prepared HttpRequestMessage to send. + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task OperationsList_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.ISendAsync sender) + { + using( NoSynchronizationContext ) + { + global::System.Net.Http.HttpResponseMessage _response = null; + try + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.DedicatedHsmOperationListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.DedicatedHsmError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Finally, request, _response); + _response?.Dispose(); + request?.Dispose(); + } + } + } + + /// + /// Validation method for method. Call this like the actual call, but you will get validation + /// events back. + /// + /// an instance that will receive events. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task OperationsList_Validate(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener eventListener) + { + using( NoSynchronizationContext ) + { + + } + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/ApiEntityReference.PowerShell.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/ApiEntityReference.PowerShell.cs new file mode 100644 index 000000000000..b255b000491d --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/ApiEntityReference.PowerShell.cs @@ -0,0 +1,131 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell; + + /// The API entity reference. + [System.ComponentModel.TypeConverter(typeof(ApiEntityReferenceTypeConverter))] + public partial class ApiEntityReference + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal ApiEntityReference(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IApiEntityReferenceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IApiEntityReferenceInternal)this).Id, global::System.Convert.ToString); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal ApiEntityReference(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IApiEntityReferenceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IApiEntityReferenceInternal)this).Id, global::System.Convert.ToString); + AfterDeserializePSObject(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IApiEntityReference DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new ApiEntityReference(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IApiEntityReference DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new ApiEntityReference(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IApiEntityReference FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// The API entity reference. + [System.ComponentModel.TypeConverter(typeof(ApiEntityReferenceTypeConverter))] + public partial interface IApiEntityReference + + { + + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/ApiEntityReference.TypeConverter.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/ApiEntityReference.TypeConverter.cs new file mode 100644 index 000000000000..bb018422b777 --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/ApiEntityReference.TypeConverter.cs @@ -0,0 +1,142 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class ApiEntityReferenceTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IApiEntityReference ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IApiEntityReference).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return ApiEntityReference.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return ApiEntityReference.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return ApiEntityReference.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/ApiEntityReference.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/ApiEntityReference.cs new file mode 100644 index 000000000000..818bee68d12f --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/ApiEntityReference.cs @@ -0,0 +1,52 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Extensions; + + /// The API entity reference. + public partial class ApiEntityReference : + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IApiEntityReference, + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IApiEntityReferenceInternal + { + + /// Backing field for property. + private string _id; + + /// + /// The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/... + /// + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Owned)] + public string Id { get => this._id; set => this._id = value; } + + /// Creates an new instance. + public ApiEntityReference() + { + + } + } + /// The API entity reference. + public partial interface IApiEntityReference : + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IJsonSerializable + { + /// + /// The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/... + /// + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...", + SerializedName = @"id", + PossibleTypes = new [] { typeof(string) })] + string Id { get; set; } + + } + /// The API entity reference. + internal partial interface IApiEntityReferenceInternal + + { + /// + /// The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/... + /// + string Id { get; set; } + + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/ApiEntityReference.json.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/ApiEntityReference.json.cs new file mode 100644 index 000000000000..9505e9dbf16f --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/ApiEntityReference.json.cs @@ -0,0 +1,101 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Extensions; + + /// The API entity reference. + public partial class ApiEntityReference + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject instance to deserialize from. + internal ApiEntityReference(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_id = If( json?.PropertyT("id"), out var __jsonId) ? (string)__jsonId : (string)Id;} + AfterFromJson(json); + } + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IApiEntityReference. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IApiEntityReference. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IApiEntityReference FromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json ? new ApiEntityReference(json) : null; + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + AddIf( null != (((object)this._id)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonString(this._id.ToString()) : null, "id" ,container.Add ); + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsm.PowerShell.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsm.PowerShell.cs new file mode 100644 index 000000000000..b0fa925cc96d --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsm.PowerShell.cs @@ -0,0 +1,161 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell; + + /// Resource information with extended details. + [System.ComponentModel.TypeConverter(typeof(DedicatedHsmTypeConverter))] + public partial class DedicatedHsm + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal DedicatedHsm(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.DedicatedHsmPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).SkuName = (string) content.GetValueForProperty("SkuName",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).SkuName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Sku = (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.ISku) content.GetValueForProperty("Sku",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Sku, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.SkuTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Location, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.ResourceTagsTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Zone = (string[]) content.GetValueForProperty("Zone",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Zone, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmInternal)this).NetworkProfile = (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkProfile) content.GetValueForProperty("NetworkProfile",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmInternal)this).NetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.NetworkProfileTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Support.JsonWebKeyType?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Support.JsonWebKeyType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmInternal)this).StampId = (string) content.GetValueForProperty("StampId",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmInternal)this).StampId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmInternal)this).StatusMessage = (string) content.GetValueForProperty("StatusMessage",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmInternal)this).StatusMessage, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmInternal)this).NetworkProfileNetworkInterface = (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkInterface[]) content.GetValueForProperty("NetworkProfileNetworkInterface",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmInternal)this).NetworkProfileNetworkInterface, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.NetworkInterfaceTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmInternal)this).NetworkProfileSubnet = (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IApiEntityReference) content.GetValueForProperty("NetworkProfileSubnet",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmInternal)this).NetworkProfileSubnet, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.ApiEntityReferenceTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmInternal)this).SubnetId = (string) content.GetValueForProperty("SubnetId",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmInternal)this).SubnetId, global::System.Convert.ToString); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal DedicatedHsm(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.DedicatedHsmPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).SkuName = (string) content.GetValueForProperty("SkuName",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).SkuName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Sku = (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.ISku) content.GetValueForProperty("Sku",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Sku, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.SkuTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Location, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.ResourceTagsTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Zone = (string[]) content.GetValueForProperty("Zone",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Zone, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmInternal)this).NetworkProfile = (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkProfile) content.GetValueForProperty("NetworkProfile",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmInternal)this).NetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.NetworkProfileTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Support.JsonWebKeyType?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Support.JsonWebKeyType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmInternal)this).StampId = (string) content.GetValueForProperty("StampId",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmInternal)this).StampId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmInternal)this).StatusMessage = (string) content.GetValueForProperty("StatusMessage",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmInternal)this).StatusMessage, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmInternal)this).NetworkProfileNetworkInterface = (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkInterface[]) content.GetValueForProperty("NetworkProfileNetworkInterface",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmInternal)this).NetworkProfileNetworkInterface, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.NetworkInterfaceTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmInternal)this).NetworkProfileSubnet = (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IApiEntityReference) content.GetValueForProperty("NetworkProfileSubnet",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmInternal)this).NetworkProfileSubnet, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.ApiEntityReferenceTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmInternal)this).SubnetId = (string) content.GetValueForProperty("SubnetId",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmInternal)this).SubnetId, global::System.Convert.ToString); + AfterDeserializePSObject(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsm DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new DedicatedHsm(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsm DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new DedicatedHsm(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsm FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// Resource information with extended details. + [System.ComponentModel.TypeConverter(typeof(DedicatedHsmTypeConverter))] + public partial interface IDedicatedHsm + + { + + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsm.TypeConverter.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsm.TypeConverter.cs new file mode 100644 index 000000000000..847b62c2e76e --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsm.TypeConverter.cs @@ -0,0 +1,142 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class DedicatedHsmTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsm ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsm).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return DedicatedHsm.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return DedicatedHsm.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return DedicatedHsm.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsm.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsm.cs new file mode 100644 index 000000000000..2cb860a724c0 --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsm.cs @@ -0,0 +1,213 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Extensions; + + /// Resource information with extended details. + public partial class DedicatedHsm : + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsm, + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmInternal, + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IValidates + { + /// + /// Backing field for Inherited model + /// + private Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResource __resource = new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.Resource(); + + /// The Azure Resource Manager resource ID for the dedicated HSM. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Inherited)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.DoNotFormat] + public string Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)__resource).Id; } + + /// The supported Azure location where the dedicated HSM should be created. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Inherited)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.FormatTable(Index = 3)] + public string Location { get => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)__resource).Location; set => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)__resource).Location = value; } + + /// Internal Acessors for NetworkProfile + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkProfile Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmInternal.NetworkProfile { get => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPropertiesInternal)Property).NetworkProfile; set => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPropertiesInternal)Property).NetworkProfile = value; } + + /// Internal Acessors for NetworkProfileSubnet + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IApiEntityReference Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmInternal.NetworkProfileSubnet { get => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPropertiesInternal)Property).NetworkProfileSubnet; set => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPropertiesInternal)Property).NetworkProfileSubnet = value; } + + /// Internal Acessors for Property + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmProperties Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.DedicatedHsmProperties()); set { {_property = value;} } } + + /// Internal Acessors for ProvisioningState + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Support.JsonWebKeyType? Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmInternal.ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPropertiesInternal)Property).ProvisioningState; set => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPropertiesInternal)Property).ProvisioningState = value; } + + /// Internal Acessors for StatusMessage + string Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmInternal.StatusMessage { get => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPropertiesInternal)Property).StatusMessage; set => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPropertiesInternal)Property).StatusMessage = value; } + + /// Internal Acessors for Id + string Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)__resource).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)__resource).Id = value; } + + /// Internal Acessors for Name + string Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal.Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)__resource).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)__resource).Name = value; } + + /// Internal Acessors for Type + string Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)__resource).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)__resource).Type = value; } + + /// The name of the dedicated HSM. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Inherited)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.FormatTable(Index = 0)] + public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)__resource).Name; } + + /// + /// Specifies the list of resource Ids for the network interfaces associated with the dedicated HSM. + /// + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Inlined)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.DoNotFormat] + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkInterface[] NetworkProfileNetworkInterface { get => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPropertiesInternal)Property).NetworkProfileNetworkInterface; set => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPropertiesInternal)Property).NetworkProfileNetworkInterface = value; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmProperties _property; + + /// Properties of the dedicated HSM + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Owned)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.DoNotFormat] + internal Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.DedicatedHsmProperties()); set => this._property = value; } + + /// Provisioning state. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Inlined)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.FormatTable(Index = 1, Label = @"Provisioning State")] + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Support.JsonWebKeyType? ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPropertiesInternal)Property).ProvisioningState; } + + /// SKU details + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Inherited)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.DoNotFormat] + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.ISku Sku { get => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)__resource).Sku; set => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)__resource).Sku = value; } + + /// SKU of the dedicated HSM + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Inherited)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.FormatTable(Index = 2, Label = @"SKU")] + public string SkuName { get => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)__resource).SkuName; set => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)__resource).SkuName = value; } + + /// This field will be used when RP does not support Availability zones. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Inlined)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.DoNotFormat] + public string StampId { get => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPropertiesInternal)Property).StampId; set => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPropertiesInternal)Property).StampId = value; } + + /// Resource Status Message. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Inlined)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.DoNotFormat] + public string StatusMessage { get => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPropertiesInternal)Property).StatusMessage; } + + /// + /// The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/... + /// + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Inlined)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.DoNotFormat] + public string SubnetId { get => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPropertiesInternal)Property).SubnetId; set => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPropertiesInternal)Property).SubnetId = value; } + + /// Resource tags + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Inherited)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.DoNotFormat] + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceTags Tag { get => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)__resource).Tag; set => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)__resource).Tag = value; } + + /// The resource type of the dedicated HSM. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Inherited)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.DoNotFormat] + public string Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)__resource).Type; } + + /// The Dedicated Hsm zones. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Inherited)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.DoNotFormat] + public string[] Zone { get => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)__resource).Zone; set => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)__resource).Zone = value; } + + /// Creates an new instance. + public DedicatedHsm() + { + + } + + /// Validates that this object meets the validation criteria. + /// an instance that will receive validation + /// events. + /// + /// A < see cref = "global::System.Threading.Tasks.Task" /> that will be complete when validation is completed. + /// + public async global::System.Threading.Tasks.Task Validate(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener eventListener) + { + await eventListener.AssertNotNull(nameof(__resource), __resource); + await eventListener.AssertObjectIsValid(nameof(__resource), __resource); + } + } + /// Resource information with extended details. + public partial interface IDedicatedHsm : + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IJsonSerializable, + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResource + { + /// + /// Specifies the list of resource Ids for the network interfaces associated with the dedicated HSM. + /// + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Specifies the list of resource Ids for the network interfaces associated with the dedicated HSM.", + SerializedName = @"networkInterfaces", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkInterface) })] + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkInterface[] NetworkProfileNetworkInterface { get; set; } + /// Provisioning state. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"Provisioning state.", + SerializedName = @"provisioningState", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Support.JsonWebKeyType) })] + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Support.JsonWebKeyType? ProvisioningState { get; } + /// This field will be used when RP does not support Availability zones. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"This field will be used when RP does not support Availability zones.", + SerializedName = @"stampId", + PossibleTypes = new [] { typeof(string) })] + string StampId { get; set; } + /// Resource Status Message. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"Resource Status Message.", + SerializedName = @"statusMessage", + PossibleTypes = new [] { typeof(string) })] + string StatusMessage { get; } + /// + /// The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/... + /// + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...", + SerializedName = @"id", + PossibleTypes = new [] { typeof(string) })] + string SubnetId { get; set; } + + } + /// Resource information with extended details. + internal partial interface IDedicatedHsmInternal : + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal + { + /// Specifies the network interfaces of the dedicated hsm. + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkProfile NetworkProfile { get; set; } + /// + /// Specifies the list of resource Ids for the network interfaces associated with the dedicated HSM. + /// + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkInterface[] NetworkProfileNetworkInterface { get; set; } + /// Specifies the identifier of the subnet. + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IApiEntityReference NetworkProfileSubnet { get; set; } + /// Properties of the dedicated HSM + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmProperties Property { get; set; } + /// Provisioning state. + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Support.JsonWebKeyType? ProvisioningState { get; set; } + /// This field will be used when RP does not support Availability zones. + string StampId { get; set; } + /// Resource Status Message. + string StatusMessage { get; set; } + /// + /// The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/... + /// + string SubnetId { get; set; } + + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsm.json.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsm.json.cs new file mode 100644 index 000000000000..515a37fd2db7 --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsm.json.cs @@ -0,0 +1,103 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Extensions; + + /// Resource information with extended details. + public partial class DedicatedHsm + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject instance to deserialize from. + internal DedicatedHsm(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + __resource = new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.Resource(json); + {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.DedicatedHsmProperties.FromJson(__jsonProperties) : Property;} + AfterFromJson(json); + } + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsm. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsm. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsm FromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json ? new DedicatedHsm(json) : null; + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + __resource?.ToJson(container, serializationMode); + AddIf( null != this._property ? (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode) this._property.ToJson(null,serializationMode) : null, "properties" ,container.Add ); + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmError.PowerShell.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmError.PowerShell.cs new file mode 100644 index 000000000000..43f37d3212df --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmError.PowerShell.cs @@ -0,0 +1,131 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell; + + /// The error exception. + [System.ComponentModel.TypeConverter(typeof(DedicatedHsmErrorTypeConverter))] + public partial class DedicatedHsmError + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal DedicatedHsmError(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmErrorInternal)this).Error = (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IError) content.GetValueForProperty("Error",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmErrorInternal)this).Error, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.ErrorTypeConverter.ConvertFrom); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal DedicatedHsmError(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmErrorInternal)this).Error = (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IError) content.GetValueForProperty("Error",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmErrorInternal)this).Error, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.ErrorTypeConverter.ConvertFrom); + AfterDeserializePSObject(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmError DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new DedicatedHsmError(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmError DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new DedicatedHsmError(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmError FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// The error exception. + [System.ComponentModel.TypeConverter(typeof(DedicatedHsmErrorTypeConverter))] + public partial interface IDedicatedHsmError + + { + + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmError.TypeConverter.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmError.TypeConverter.cs new file mode 100644 index 000000000000..3aba593d86fc --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmError.TypeConverter.cs @@ -0,0 +1,142 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class DedicatedHsmErrorTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmError ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmError).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return DedicatedHsmError.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return DedicatedHsmError.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return DedicatedHsmError.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmError.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmError.cs new file mode 100644 index 000000000000..cecbb22dae79 --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmError.cs @@ -0,0 +1,49 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Extensions; + + /// The error exception. + public partial class DedicatedHsmError : + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmError, + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmErrorInternal + { + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IError _error; + + /// The key vault server error. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IError Error { get => (this._error = this._error ?? new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.Error()); } + + /// Internal Acessors for Error + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IError Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmErrorInternal.Error { get => (this._error = this._error ?? new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.Error()); set { {_error = value;} } } + + /// Creates an new instance. + public DedicatedHsmError() + { + + } + } + /// The error exception. + public partial interface IDedicatedHsmError : + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IJsonSerializable + { + /// The key vault server error. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The key vault server error.", + SerializedName = @"error", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IError) })] + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IError Error { get; } + + } + /// The error exception. + internal partial interface IDedicatedHsmErrorInternal + + { + /// The key vault server error. + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IError Error { get; set; } + + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmError.json.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmError.json.cs new file mode 100644 index 000000000000..a14d69dc3b34 --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmError.json.cs @@ -0,0 +1,104 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Extensions; + + /// The error exception. + public partial class DedicatedHsmError + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject instance to deserialize from. + internal DedicatedHsmError(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_error = If( json?.PropertyT("error"), out var __jsonError) ? Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.Error.FromJson(__jsonError) : Error;} + AfterFromJson(json); + } + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmError. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmError. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmError FromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json ? new DedicatedHsmError(json) : null; + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != this._error ? (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode) this._error.ToJson(null,serializationMode) : null, "error" ,container.Add ); + } + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmListResult.PowerShell.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmListResult.PowerShell.cs new file mode 100644 index 000000000000..0ce0d70f7296 --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmListResult.PowerShell.cs @@ -0,0 +1,135 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell; + + /// List of dedicated HSMs + [System.ComponentModel.TypeConverter(typeof(DedicatedHsmListResultTypeConverter))] + public partial class DedicatedHsmListResult + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal DedicatedHsmListResult(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmListResultInternal)this).NextLink, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsm[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.DedicatedHsmTypeConverter.ConvertFrom)); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal DedicatedHsmListResult(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmListResultInternal)this).NextLink, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsm[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.DedicatedHsmTypeConverter.ConvertFrom)); + AfterDeserializePSObject(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new DedicatedHsmListResult(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new DedicatedHsmListResult(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// List of dedicated HSMs + [System.ComponentModel.TypeConverter(typeof(DedicatedHsmListResultTypeConverter))] + public partial interface IDedicatedHsmListResult + + { + + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmListResult.TypeConverter.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmListResult.TypeConverter.cs new file mode 100644 index 000000000000..6831533af5e0 --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmListResult.TypeConverter.cs @@ -0,0 +1,142 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class DedicatedHsmListResultTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmListResult ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmListResult).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return DedicatedHsmListResult.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return DedicatedHsmListResult.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return DedicatedHsmListResult.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmListResult.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmListResult.cs new file mode 100644 index 000000000000..5a47547a502e --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmListResult.cs @@ -0,0 +1,63 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Extensions; + + /// List of dedicated HSMs + public partial class DedicatedHsmListResult : + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmListResult, + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmListResultInternal + { + + /// Backing field for property. + private string _nextLink; + + /// The URL to get the next set of dedicated hsms. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Owned)] + public string NextLink { get => this._nextLink; set => this._nextLink = value; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsm[] _value; + + /// The list of dedicated HSMs. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsm[] Value { get => this._value; set => this._value = value; } + + /// Creates an new instance. + public DedicatedHsmListResult() + { + + } + } + /// List of dedicated HSMs + public partial interface IDedicatedHsmListResult : + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IJsonSerializable + { + /// The URL to get the next set of dedicated hsms. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The URL to get the next set of dedicated hsms.", + SerializedName = @"nextLink", + PossibleTypes = new [] { typeof(string) })] + string NextLink { get; set; } + /// The list of dedicated HSMs. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The list of dedicated HSMs.", + SerializedName = @"value", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsm) })] + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsm[] Value { get; set; } + + } + /// List of dedicated HSMs + internal partial interface IDedicatedHsmListResultInternal + + { + /// The URL to get the next set of dedicated hsms. + string NextLink { get; set; } + /// The list of dedicated HSMs. + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsm[] Value { get; set; } + + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmListResult.json.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmListResult.json.cs new file mode 100644 index 000000000000..e4310c441939 --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmListResult.json.cs @@ -0,0 +1,111 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Extensions; + + /// List of dedicated HSMs + public partial class DedicatedHsmListResult + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject instance to deserialize from. + internal DedicatedHsmListResult(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_nextLink = If( json?.PropertyT("nextLink"), out var __jsonNextLink) ? (string)__jsonNextLink : (string)NextLink;} + {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsm) (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.DedicatedHsm.FromJson(__u) )) ))() : null : Value;} + AfterFromJson(json); + } + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmListResult. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmListResult. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json ? new DedicatedHsmListResult(json) : null; + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + AddIf( null != (((object)this._nextLink)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonString(this._nextLink.ToString()) : null, "nextLink" ,container.Add ); + if (null != this._value) + { + var __w = new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.XNodeArray(); + foreach( var __x in this._value ) + { + AddIf(__x?.ToJson(null, serializationMode) ,__w.Add); + } + container.Add("value",__w); + } + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmOperation.PowerShell.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmOperation.PowerShell.cs new file mode 100644 index 000000000000..d0410f942203 --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmOperation.PowerShell.cs @@ -0,0 +1,143 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell; + + /// REST API operation + [System.ComponentModel.TypeConverter(typeof(DedicatedHsmOperationTypeConverter))] + public partial class DedicatedHsmOperation + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal DedicatedHsmOperation(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationInternal)this).Display = (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationDisplay) content.GetValueForProperty("Display",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationInternal)this).Display, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.DedicatedHsmOperationDisplayTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationInternal)this).IsDataAction = (string) content.GetValueForProperty("IsDataAction",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationInternal)this).IsDataAction, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationInternal)this).DisplayDescription = (string) content.GetValueForProperty("DisplayDescription",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationInternal)this).DisplayDescription, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationInternal)this).DisplayOperation = (string) content.GetValueForProperty("DisplayOperation",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationInternal)this).DisplayOperation, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationInternal)this).DisplayProvider = (string) content.GetValueForProperty("DisplayProvider",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationInternal)this).DisplayProvider, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationInternal)this).DisplayResource = (string) content.GetValueForProperty("DisplayResource",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationInternal)this).DisplayResource, global::System.Convert.ToString); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal DedicatedHsmOperation(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationInternal)this).Display = (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationDisplay) content.GetValueForProperty("Display",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationInternal)this).Display, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.DedicatedHsmOperationDisplayTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationInternal)this).IsDataAction = (string) content.GetValueForProperty("IsDataAction",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationInternal)this).IsDataAction, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationInternal)this).DisplayDescription = (string) content.GetValueForProperty("DisplayDescription",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationInternal)this).DisplayDescription, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationInternal)this).DisplayOperation = (string) content.GetValueForProperty("DisplayOperation",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationInternal)this).DisplayOperation, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationInternal)this).DisplayProvider = (string) content.GetValueForProperty("DisplayProvider",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationInternal)this).DisplayProvider, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationInternal)this).DisplayResource = (string) content.GetValueForProperty("DisplayResource",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationInternal)this).DisplayResource, global::System.Convert.ToString); + AfterDeserializePSObject(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperation DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new DedicatedHsmOperation(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperation DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new DedicatedHsmOperation(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperation FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// REST API operation + [System.ComponentModel.TypeConverter(typeof(DedicatedHsmOperationTypeConverter))] + public partial interface IDedicatedHsmOperation + + { + + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmOperation.TypeConverter.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmOperation.TypeConverter.cs new file mode 100644 index 000000000000..f023d87f5f9f --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmOperation.TypeConverter.cs @@ -0,0 +1,142 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class DedicatedHsmOperationTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperation ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperation).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return DedicatedHsmOperation.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return DedicatedHsmOperation.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return DedicatedHsmOperation.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmOperation.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmOperation.cs new file mode 100644 index 000000000000..0c5c8897012e --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmOperation.cs @@ -0,0 +1,132 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Extensions; + + /// REST API operation + public partial class DedicatedHsmOperation : + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperation, + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationInternal + { + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationDisplay _display; + + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Owned)] + internal Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationDisplay Display { get => (this._display = this._display ?? new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.DedicatedHsmOperationDisplay()); set => this._display = value; } + + /// The object that represents the operation. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Inlined)] + public string DisplayDescription { get => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationDisplayInternal)Display).Description; set => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationDisplayInternal)Display).Description = value; } + + /// Operation type: Read, write, delete, etc. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Inlined)] + public string DisplayOperation { get => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationDisplayInternal)Display).Operation; set => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationDisplayInternal)Display).Operation = value; } + + /// The Resource Provider of the operation + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Inlined)] + public string DisplayProvider { get => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationDisplayInternal)Display).Provider; set => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationDisplayInternal)Display).Provider = value; } + + /// Resource on which the operation is performed. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Inlined)] + public string DisplayResource { get => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationDisplayInternal)Display).Resource; set => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationDisplayInternal)Display).Resource = value; } + + /// Backing field for property. + private string _isDataAction; + + /// Gets or sets a value indicating whether it is a data plane action + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Owned)] + public string IsDataAction { get => this._isDataAction; } + + /// Internal Acessors for Display + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationDisplay Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationInternal.Display { get => (this._display = this._display ?? new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.DedicatedHsmOperationDisplay()); set { {_display = value;} } } + + /// Internal Acessors for IsDataAction + string Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationInternal.IsDataAction { get => this._isDataAction; set { {_isDataAction = value;} } } + + /// Backing field for property. + private string _name; + + /// The name of the Dedicated HSM Resource Provider Operation. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Owned)] + public string Name { get => this._name; set => this._name = value; } + + /// Creates an new instance. + public DedicatedHsmOperation() + { + + } + } + /// REST API operation + public partial interface IDedicatedHsmOperation : + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IJsonSerializable + { + /// The object that represents the operation. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The object that represents the operation.", + SerializedName = @"description", + PossibleTypes = new [] { typeof(string) })] + string DisplayDescription { get; set; } + /// Operation type: Read, write, delete, etc. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Operation type: Read, write, delete, etc.", + SerializedName = @"operation", + PossibleTypes = new [] { typeof(string) })] + string DisplayOperation { get; set; } + /// The Resource Provider of the operation + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The Resource Provider of the operation", + SerializedName = @"provider", + PossibleTypes = new [] { typeof(string) })] + string DisplayProvider { get; set; } + /// Resource on which the operation is performed. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Resource on which the operation is performed.", + SerializedName = @"resource", + PossibleTypes = new [] { typeof(string) })] + string DisplayResource { get; set; } + /// Gets or sets a value indicating whether it is a data plane action + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"Gets or sets a value indicating whether it is a data plane action", + SerializedName = @"isDataAction", + PossibleTypes = new [] { typeof(string) })] + string IsDataAction { get; } + /// The name of the Dedicated HSM Resource Provider Operation. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The name of the Dedicated HSM Resource Provider Operation.", + SerializedName = @"name", + PossibleTypes = new [] { typeof(string) })] + string Name { get; set; } + + } + /// REST API operation + internal partial interface IDedicatedHsmOperationInternal + + { + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationDisplay Display { get; set; } + /// The object that represents the operation. + string DisplayDescription { get; set; } + /// Operation type: Read, write, delete, etc. + string DisplayOperation { get; set; } + /// The Resource Provider of the operation + string DisplayProvider { get; set; } + /// Resource on which the operation is performed. + string DisplayResource { get; set; } + /// Gets or sets a value indicating whether it is a data plane action + string IsDataAction { get; set; } + /// The name of the Dedicated HSM Resource Provider Operation. + string Name { get; set; } + + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmOperation.json.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmOperation.json.cs new file mode 100644 index 000000000000..2c049e0432fa --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmOperation.json.cs @@ -0,0 +1,108 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Extensions; + + /// REST API operation + public partial class DedicatedHsmOperation + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject instance to deserialize from. + internal DedicatedHsmOperation(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_display = If( json?.PropertyT("display"), out var __jsonDisplay) ? Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.DedicatedHsmOperationDisplay.FromJson(__jsonDisplay) : Display;} + {_name = If( json?.PropertyT("name"), out var __jsonName) ? (string)__jsonName : (string)Name;} + {_isDataAction = If( json?.PropertyT("isDataAction"), out var __jsonIsDataAction) ? (string)__jsonIsDataAction : (string)IsDataAction;} + AfterFromJson(json); + } + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperation. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperation. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperation FromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json ? new DedicatedHsmOperation(json) : null; + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + AddIf( null != this._display ? (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode) this._display.ToJson(null,serializationMode) : null, "display" ,container.Add ); + AddIf( null != (((object)this._name)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonString(this._name.ToString()) : null, "name" ,container.Add ); + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._isDataAction)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonString(this._isDataAction.ToString()) : null, "isDataAction" ,container.Add ); + } + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmOperationDisplay.PowerShell.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmOperationDisplay.PowerShell.cs new file mode 100644 index 000000000000..578f9df6ec19 --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmOperationDisplay.PowerShell.cs @@ -0,0 +1,137 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell; + + [System.ComponentModel.TypeConverter(typeof(DedicatedHsmOperationDisplayTypeConverter))] + public partial class DedicatedHsmOperationDisplay + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal DedicatedHsmOperationDisplay(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationDisplayInternal)this).Description = (string) content.GetValueForProperty("Description",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationDisplayInternal)this).Description, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationDisplayInternal)this).Operation = (string) content.GetValueForProperty("Operation",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationDisplayInternal)this).Operation, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationDisplayInternal)this).Provider = (string) content.GetValueForProperty("Provider",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationDisplayInternal)this).Provider, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationDisplayInternal)this).Resource = (string) content.GetValueForProperty("Resource",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationDisplayInternal)this).Resource, global::System.Convert.ToString); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal DedicatedHsmOperationDisplay(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationDisplayInternal)this).Description = (string) content.GetValueForProperty("Description",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationDisplayInternal)this).Description, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationDisplayInternal)this).Operation = (string) content.GetValueForProperty("Operation",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationDisplayInternal)this).Operation, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationDisplayInternal)this).Provider = (string) content.GetValueForProperty("Provider",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationDisplayInternal)this).Provider, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationDisplayInternal)this).Resource = (string) content.GetValueForProperty("Resource",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationDisplayInternal)this).Resource, global::System.Convert.ToString); + AfterDeserializePSObject(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationDisplay DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new DedicatedHsmOperationDisplay(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationDisplay DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new DedicatedHsmOperationDisplay(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationDisplay FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + [System.ComponentModel.TypeConverter(typeof(DedicatedHsmOperationDisplayTypeConverter))] + public partial interface IDedicatedHsmOperationDisplay + + { + + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmOperationDisplay.TypeConverter.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmOperationDisplay.TypeConverter.cs new file mode 100644 index 000000000000..a85e68fa39a9 --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmOperationDisplay.TypeConverter.cs @@ -0,0 +1,142 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class DedicatedHsmOperationDisplayTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationDisplay ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationDisplay).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return DedicatedHsmOperationDisplay.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return DedicatedHsmOperationDisplay.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return DedicatedHsmOperationDisplay.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmOperationDisplay.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmOperationDisplay.cs new file mode 100644 index 000000000000..df942f4e042a --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmOperationDisplay.cs @@ -0,0 +1,94 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Extensions; + + public partial class DedicatedHsmOperationDisplay : + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationDisplay, + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationDisplayInternal + { + + /// Backing field for property. + private string _description; + + /// The object that represents the operation. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Owned)] + public string Description { get => this._description; set => this._description = value; } + + /// Backing field for property. + private string _operation; + + /// Operation type: Read, write, delete, etc. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Owned)] + public string Operation { get => this._operation; set => this._operation = value; } + + /// Backing field for property. + private string _provider; + + /// The Resource Provider of the operation + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Owned)] + public string Provider { get => this._provider; set => this._provider = value; } + + /// Backing field for property. + private string _resource; + + /// Resource on which the operation is performed. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Owned)] + public string Resource { get => this._resource; set => this._resource = value; } + + /// Creates an new instance. + public DedicatedHsmOperationDisplay() + { + + } + } + public partial interface IDedicatedHsmOperationDisplay : + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IJsonSerializable + { + /// The object that represents the operation. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The object that represents the operation.", + SerializedName = @"description", + PossibleTypes = new [] { typeof(string) })] + string Description { get; set; } + /// Operation type: Read, write, delete, etc. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Operation type: Read, write, delete, etc.", + SerializedName = @"operation", + PossibleTypes = new [] { typeof(string) })] + string Operation { get; set; } + /// The Resource Provider of the operation + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The Resource Provider of the operation", + SerializedName = @"provider", + PossibleTypes = new [] { typeof(string) })] + string Provider { get; set; } + /// Resource on which the operation is performed. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Resource on which the operation is performed.", + SerializedName = @"resource", + PossibleTypes = new [] { typeof(string) })] + string Resource { get; set; } + + } + internal partial interface IDedicatedHsmOperationDisplayInternal + + { + /// The object that represents the operation. + string Description { get; set; } + /// Operation type: Read, write, delete, etc. + string Operation { get; set; } + /// The Resource Provider of the operation + string Provider { get; set; } + /// Resource on which the operation is performed. + string Resource { get; set; } + + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmOperationDisplay.json.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmOperationDisplay.json.cs new file mode 100644 index 000000000000..d00cd1d7ebf0 --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmOperationDisplay.json.cs @@ -0,0 +1,106 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Extensions; + + public partial class DedicatedHsmOperationDisplay + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject instance to deserialize from. + internal DedicatedHsmOperationDisplay(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_description = If( json?.PropertyT("description"), out var __jsonDescription) ? (string)__jsonDescription : (string)Description;} + {_operation = If( json?.PropertyT("operation"), out var __jsonOperation) ? (string)__jsonOperation : (string)Operation;} + {_provider = If( json?.PropertyT("provider"), out var __jsonProvider) ? (string)__jsonProvider : (string)Provider;} + {_resource = If( json?.PropertyT("resource"), out var __jsonResource) ? (string)__jsonResource : (string)Resource;} + AfterFromJson(json); + } + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationDisplay. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationDisplay. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationDisplay FromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json ? new DedicatedHsmOperationDisplay(json) : null; + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + AddIf( null != (((object)this._description)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonString(this._description.ToString()) : null, "description" ,container.Add ); + AddIf( null != (((object)this._operation)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonString(this._operation.ToString()) : null, "operation" ,container.Add ); + AddIf( null != (((object)this._provider)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonString(this._provider.ToString()) : null, "provider" ,container.Add ); + AddIf( null != (((object)this._resource)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonString(this._resource.ToString()) : null, "resource" ,container.Add ); + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmOperationListResult.PowerShell.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmOperationListResult.PowerShell.cs new file mode 100644 index 000000000000..25026015c084 --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmOperationListResult.PowerShell.cs @@ -0,0 +1,135 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell; + + /// + /// Result of the request to list Dedicated HSM Provider operations. It contains a list of operations. + /// + [System.ComponentModel.TypeConverter(typeof(DedicatedHsmOperationListResultTypeConverter))] + public partial class DedicatedHsmOperationListResult + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal DedicatedHsmOperationListResult(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperation[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.DedicatedHsmOperationTypeConverter.ConvertFrom)); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal DedicatedHsmOperationListResult(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperation[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.DedicatedHsmOperationTypeConverter.ConvertFrom)); + AfterDeserializePSObject(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new DedicatedHsmOperationListResult(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new DedicatedHsmOperationListResult(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// Result of the request to list Dedicated HSM Provider operations. It contains a list of operations. + [System.ComponentModel.TypeConverter(typeof(DedicatedHsmOperationListResultTypeConverter))] + public partial interface IDedicatedHsmOperationListResult + + { + + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmOperationListResult.TypeConverter.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmOperationListResult.TypeConverter.cs new file mode 100644 index 000000000000..c0925a440ae0 --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmOperationListResult.TypeConverter.cs @@ -0,0 +1,142 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class DedicatedHsmOperationListResultTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationListResult ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationListResult).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return DedicatedHsmOperationListResult.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return DedicatedHsmOperationListResult.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return DedicatedHsmOperationListResult.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmOperationListResult.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmOperationListResult.cs new file mode 100644 index 000000000000..c1a0781954fa --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmOperationListResult.cs @@ -0,0 +1,48 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Extensions; + + /// + /// Result of the request to list Dedicated HSM Provider operations. It contains a list of operations. + /// + public partial class DedicatedHsmOperationListResult : + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationListResult, + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationListResultInternal + { + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperation[] _value; + + /// List of Dedicated HSM Resource Provider operations. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperation[] Value { get => this._value; set => this._value = value; } + + /// Creates an new instance. + public DedicatedHsmOperationListResult() + { + + } + } + /// Result of the request to list Dedicated HSM Provider operations. It contains a list of operations. + public partial interface IDedicatedHsmOperationListResult : + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IJsonSerializable + { + /// List of Dedicated HSM Resource Provider operations. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"List of Dedicated HSM Resource Provider operations.", + SerializedName = @"value", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperation) })] + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperation[] Value { get; set; } + + } + /// Result of the request to list Dedicated HSM Provider operations. It contains a list of operations. + internal partial interface IDedicatedHsmOperationListResultInternal + + { + /// List of Dedicated HSM Resource Provider operations. + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperation[] Value { get; set; } + + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmOperationListResult.json.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmOperationListResult.json.cs new file mode 100644 index 000000000000..f860faeed199 --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmOperationListResult.json.cs @@ -0,0 +1,111 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Extensions; + + /// + /// Result of the request to list Dedicated HSM Provider operations. It contains a list of operations. + /// + public partial class DedicatedHsmOperationListResult + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject instance to deserialize from. + internal DedicatedHsmOperationListResult(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperation) (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.DedicatedHsmOperation.FromJson(__u) )) ))() : null : Value;} + AfterFromJson(json); + } + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationListResult. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationListResult. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperationListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json ? new DedicatedHsmOperationListResult(json) : null; + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + if (null != this._value) + { + var __w = new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.XNodeArray(); + foreach( var __x in this._value ) + { + AddIf(__x?.ToJson(null, serializationMode) ,__w.Add); + } + container.Add("value",__w); + } + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmPatchParameters.PowerShell.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmPatchParameters.PowerShell.cs new file mode 100644 index 000000000000..66ad5f057d98 --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmPatchParameters.PowerShell.cs @@ -0,0 +1,133 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell; + + /// Patchable properties of the dedicated HSM + [System.ComponentModel.TypeConverter(typeof(DedicatedHsmPatchParametersTypeConverter))] + public partial class DedicatedHsmPatchParameters + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal DedicatedHsmPatchParameters(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPatchParametersInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPatchParametersTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPatchParametersInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.DedicatedHsmPatchParametersTagsTypeConverter.ConvertFrom); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal DedicatedHsmPatchParameters(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPatchParametersInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPatchParametersTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPatchParametersInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.DedicatedHsmPatchParametersTagsTypeConverter.ConvertFrom); + AfterDeserializePSObject(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPatchParameters DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new DedicatedHsmPatchParameters(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPatchParameters DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new DedicatedHsmPatchParameters(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPatchParameters FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// Patchable properties of the dedicated HSM + [System.ComponentModel.TypeConverter(typeof(DedicatedHsmPatchParametersTypeConverter))] + public partial interface IDedicatedHsmPatchParameters + + { + + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmPatchParameters.TypeConverter.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmPatchParameters.TypeConverter.cs new file mode 100644 index 000000000000..0dca0d0cb778 --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmPatchParameters.TypeConverter.cs @@ -0,0 +1,142 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class DedicatedHsmPatchParametersTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPatchParameters ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPatchParameters).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return DedicatedHsmPatchParameters.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return DedicatedHsmPatchParameters.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return DedicatedHsmPatchParameters.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmPatchParameters.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmPatchParameters.cs new file mode 100644 index 000000000000..27979281d49d --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmPatchParameters.cs @@ -0,0 +1,46 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Extensions; + + /// Patchable properties of the dedicated HSM + public partial class DedicatedHsmPatchParameters : + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPatchParameters, + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPatchParametersInternal + { + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPatchParametersTags _tag; + + /// Resource tags + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPatchParametersTags Tag { get => (this._tag = this._tag ?? new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.DedicatedHsmPatchParametersTags()); set => this._tag = value; } + + /// Creates an new instance. + public DedicatedHsmPatchParameters() + { + + } + } + /// Patchable properties of the dedicated HSM + public partial interface IDedicatedHsmPatchParameters : + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IJsonSerializable + { + /// Resource tags + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Resource tags", + SerializedName = @"tags", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPatchParametersTags) })] + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPatchParametersTags Tag { get; set; } + + } + /// Patchable properties of the dedicated HSM + internal partial interface IDedicatedHsmPatchParametersInternal + + { + /// Resource tags + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPatchParametersTags Tag { get; set; } + + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmPatchParameters.json.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmPatchParameters.json.cs new file mode 100644 index 000000000000..d435baf5db6a --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmPatchParameters.json.cs @@ -0,0 +1,101 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Extensions; + + /// Patchable properties of the dedicated HSM + public partial class DedicatedHsmPatchParameters + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject instance to deserialize from. + internal DedicatedHsmPatchParameters(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_tag = If( json?.PropertyT("tags"), out var __jsonTags) ? Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.DedicatedHsmPatchParametersTags.FromJson(__jsonTags) : Tag;} + AfterFromJson(json); + } + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPatchParameters. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPatchParameters. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPatchParameters FromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json ? new DedicatedHsmPatchParameters(json) : null; + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + AddIf( null != this._tag ? (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode) this._tag.ToJson(null,serializationMode) : null, "tags" ,container.Add ); + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmPatchParametersTags.PowerShell.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmPatchParametersTags.PowerShell.cs new file mode 100644 index 000000000000..918c2a8c66ff --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmPatchParametersTags.PowerShell.cs @@ -0,0 +1,135 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell; + + /// Resource tags + [System.ComponentModel.TypeConverter(typeof(DedicatedHsmPatchParametersTagsTypeConverter))] + public partial class DedicatedHsmPatchParametersTags + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal DedicatedHsmPatchParametersTags(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + // this type is a dictionary; copy elements from source to here. + CopyFrom(content); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal DedicatedHsmPatchParametersTags(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + // this type is a dictionary; copy elements from source to here. + CopyFrom(content); + AfterDeserializePSObject(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPatchParametersTags DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new DedicatedHsmPatchParametersTags(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPatchParametersTags DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new DedicatedHsmPatchParametersTags(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPatchParametersTags FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// Resource tags + [System.ComponentModel.TypeConverter(typeof(DedicatedHsmPatchParametersTagsTypeConverter))] + public partial interface IDedicatedHsmPatchParametersTags + + { + + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmPatchParametersTags.TypeConverter.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmPatchParametersTags.TypeConverter.cs new file mode 100644 index 000000000000..605a31a31acd --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmPatchParametersTags.TypeConverter.cs @@ -0,0 +1,142 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class DedicatedHsmPatchParametersTagsTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPatchParametersTags ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPatchParametersTags).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return DedicatedHsmPatchParametersTags.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return DedicatedHsmPatchParametersTags.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return DedicatedHsmPatchParametersTags.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmPatchParametersTags.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmPatchParametersTags.cs new file mode 100644 index 000000000000..afac096c9f88 --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmPatchParametersTags.cs @@ -0,0 +1,30 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Extensions; + + /// Resource tags + public partial class DedicatedHsmPatchParametersTags : + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPatchParametersTags, + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPatchParametersTagsInternal + { + + /// Creates an new instance. + public DedicatedHsmPatchParametersTags() + { + + } + } + /// Resource tags + public partial interface IDedicatedHsmPatchParametersTags : + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IJsonSerializable, + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IAssociativeArray + { + + } + /// Resource tags + internal partial interface IDedicatedHsmPatchParametersTagsInternal + + { + + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmPatchParametersTags.dictionary.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmPatchParametersTags.dictionary.cs new file mode 100644 index 000000000000..1dbb418e639d --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmPatchParametersTags.dictionary.cs @@ -0,0 +1,70 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Extensions; + + public partial class DedicatedHsmPatchParametersTags : + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IAssociativeArray + { + protected global::System.Collections.Generic.Dictionary __additionalProperties = new global::System.Collections.Generic.Dictionary(); + + global::System.Collections.Generic.IDictionary Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IAssociativeArray.AdditionalProperties { get => __additionalProperties; } + + int Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IAssociativeArray.Count { get => __additionalProperties.Count; } + + global::System.Collections.Generic.IEnumerable Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IAssociativeArray.Keys { get => __additionalProperties.Keys; } + + global::System.Collections.Generic.IEnumerable Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IAssociativeArray.Values { get => __additionalProperties.Values; } + + public string this[global::System.String index] { get => __additionalProperties[index]; set => __additionalProperties[index] = value; } + + /// + /// + public void Add(global::System.String key, string value) => __additionalProperties.Add( key, value); + + public void Clear() => __additionalProperties.Clear(); + + /// + public bool ContainsKey(global::System.String key) => __additionalProperties.ContainsKey( key); + + /// + public void CopyFrom(global::System.Collections.IDictionary source) + { + if (null != source) + { + foreach( var property in Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.TypeConverterExtensions.GetFilteredProperties(source, new global::System.Collections.Generic.HashSet() { } ) ) + { + if ((null != property.Key && null != property.Value)) + { + this.__additionalProperties.Add(property.Key.ToString(), global::System.Management.Automation.LanguagePrimitives.ConvertTo( property.Value)); + } + } + } + } + + /// + public void CopyFrom(global::System.Management.Automation.PSObject source) + { + if (null != source) + { + foreach( var property in Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.TypeConverterExtensions.GetFilteredProperties(source, new global::System.Collections.Generic.HashSet() { } ) ) + { + if ((null != property.Key && null != property.Value)) + { + this.__additionalProperties.Add(property.Key.ToString(), global::System.Management.Automation.LanguagePrimitives.ConvertTo( property.Value)); + } + } + } + } + + /// + public bool Remove(global::System.String key) => __additionalProperties.Remove( key); + + /// + /// + public bool TryGetValue(global::System.String key, out string value) => __additionalProperties.TryGetValue( key, out value); + + /// + + public static implicit operator global::System.Collections.Generic.Dictionary(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.DedicatedHsmPatchParametersTags source) => source.__additionalProperties; + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmPatchParametersTags.json.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmPatchParametersTags.json.cs new file mode 100644 index 000000000000..d3f3736968ba --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmPatchParametersTags.json.cs @@ -0,0 +1,102 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Extensions; + + /// Resource tags + public partial class DedicatedHsmPatchParametersTags + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject instance to deserialize from. + /// + internal DedicatedHsmPatchParametersTags(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json, global::System.Collections.Generic.HashSet exclusions = null) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.JsonSerializable.FromJson( json, ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IAssociativeArray)this).AdditionalProperties, null ,exclusions ); + AfterFromJson(json); + } + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPatchParametersTags. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPatchParametersTags. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPatchParametersTags FromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json ? new DedicatedHsmPatchParametersTags(json) : null; + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.JsonSerializable.ToJson( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IAssociativeArray)this).AdditionalProperties, container); + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmProperties.PowerShell.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmProperties.PowerShell.cs new file mode 100644 index 000000000000..d84f68b22d7e --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmProperties.PowerShell.cs @@ -0,0 +1,145 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell; + + /// Properties of the dedicated hsm + [System.ComponentModel.TypeConverter(typeof(DedicatedHsmPropertiesTypeConverter))] + public partial class DedicatedHsmProperties + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal DedicatedHsmProperties(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPropertiesInternal)this).NetworkProfile = (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkProfile) content.GetValueForProperty("NetworkProfile",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPropertiesInternal)this).NetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.NetworkProfileTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPropertiesInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Support.JsonWebKeyType?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPropertiesInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Support.JsonWebKeyType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPropertiesInternal)this).StampId = (string) content.GetValueForProperty("StampId",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPropertiesInternal)this).StampId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPropertiesInternal)this).StatusMessage = (string) content.GetValueForProperty("StatusMessage",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPropertiesInternal)this).StatusMessage, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPropertiesInternal)this).NetworkProfileNetworkInterface = (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkInterface[]) content.GetValueForProperty("NetworkProfileNetworkInterface",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPropertiesInternal)this).NetworkProfileNetworkInterface, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.NetworkInterfaceTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPropertiesInternal)this).NetworkProfileSubnet = (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IApiEntityReference) content.GetValueForProperty("NetworkProfileSubnet",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPropertiesInternal)this).NetworkProfileSubnet, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.ApiEntityReferenceTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPropertiesInternal)this).SubnetId = (string) content.GetValueForProperty("SubnetId",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPropertiesInternal)this).SubnetId, global::System.Convert.ToString); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal DedicatedHsmProperties(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPropertiesInternal)this).NetworkProfile = (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkProfile) content.GetValueForProperty("NetworkProfile",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPropertiesInternal)this).NetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.NetworkProfileTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPropertiesInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Support.JsonWebKeyType?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPropertiesInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Support.JsonWebKeyType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPropertiesInternal)this).StampId = (string) content.GetValueForProperty("StampId",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPropertiesInternal)this).StampId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPropertiesInternal)this).StatusMessage = (string) content.GetValueForProperty("StatusMessage",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPropertiesInternal)this).StatusMessage, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPropertiesInternal)this).NetworkProfileNetworkInterface = (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkInterface[]) content.GetValueForProperty("NetworkProfileNetworkInterface",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPropertiesInternal)this).NetworkProfileNetworkInterface, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.NetworkInterfaceTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPropertiesInternal)this).NetworkProfileSubnet = (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IApiEntityReference) content.GetValueForProperty("NetworkProfileSubnet",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPropertiesInternal)this).NetworkProfileSubnet, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.ApiEntityReferenceTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPropertiesInternal)this).SubnetId = (string) content.GetValueForProperty("SubnetId",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPropertiesInternal)this).SubnetId, global::System.Convert.ToString); + AfterDeserializePSObject(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new DedicatedHsmProperties(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new DedicatedHsmProperties(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// Properties of the dedicated hsm + [System.ComponentModel.TypeConverter(typeof(DedicatedHsmPropertiesTypeConverter))] + public partial interface IDedicatedHsmProperties + + { + + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmProperties.TypeConverter.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmProperties.TypeConverter.cs new file mode 100644 index 000000000000..cdd3d03c335e --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmProperties.TypeConverter.cs @@ -0,0 +1,142 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class DedicatedHsmPropertiesTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmProperties ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmProperties).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return DedicatedHsmProperties.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return DedicatedHsmProperties.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return DedicatedHsmProperties.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmProperties.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmProperties.cs new file mode 100644 index 000000000000..d1f9f2c4b4b6 --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmProperties.cs @@ -0,0 +1,143 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Extensions; + + /// Properties of the dedicated hsm + public partial class DedicatedHsmProperties : + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmProperties, + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPropertiesInternal + { + + /// Internal Acessors for NetworkProfile + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkProfile Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPropertiesInternal.NetworkProfile { get => (this._networkProfile = this._networkProfile ?? new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.NetworkProfile()); set { {_networkProfile = value;} } } + + /// Internal Acessors for NetworkProfileSubnet + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IApiEntityReference Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPropertiesInternal.NetworkProfileSubnet { get => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkProfileInternal)NetworkProfile).Subnet; set => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkProfileInternal)NetworkProfile).Subnet = value; } + + /// Internal Acessors for ProvisioningState + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Support.JsonWebKeyType? Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPropertiesInternal.ProvisioningState { get => this._provisioningState; set { {_provisioningState = value;} } } + + /// Internal Acessors for StatusMessage + string Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPropertiesInternal.StatusMessage { get => this._statusMessage; set { {_statusMessage = value;} } } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkProfile _networkProfile; + + /// Specifies the network interfaces of the dedicated hsm. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Owned)] + internal Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkProfile NetworkProfile { get => (this._networkProfile = this._networkProfile ?? new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.NetworkProfile()); set => this._networkProfile = value; } + + /// + /// Specifies the list of resource Ids for the network interfaces associated with the dedicated HSM. + /// + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkInterface[] NetworkProfileNetworkInterface { get => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkProfileInternal)NetworkProfile).NetworkInterface; set => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkProfileInternal)NetworkProfile).NetworkInterface = value; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Support.JsonWebKeyType? _provisioningState; + + /// Provisioning state. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Support.JsonWebKeyType? ProvisioningState { get => this._provisioningState; } + + /// Backing field for property. + private string _stampId; + + /// This field will be used when RP does not support Availability zones. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Owned)] + public string StampId { get => this._stampId; set => this._stampId = value; } + + /// Backing field for property. + private string _statusMessage; + + /// Resource Status Message. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Owned)] + public string StatusMessage { get => this._statusMessage; } + + /// + /// The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/... + /// + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Inlined)] + public string SubnetId { get => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkProfileInternal)NetworkProfile).SubnetId; set => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkProfileInternal)NetworkProfile).SubnetId = value; } + + /// Creates an new instance. + public DedicatedHsmProperties() + { + + } + } + /// Properties of the dedicated hsm + public partial interface IDedicatedHsmProperties : + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IJsonSerializable + { + /// + /// Specifies the list of resource Ids for the network interfaces associated with the dedicated HSM. + /// + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Specifies the list of resource Ids for the network interfaces associated with the dedicated HSM.", + SerializedName = @"networkInterfaces", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkInterface) })] + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkInterface[] NetworkProfileNetworkInterface { get; set; } + /// Provisioning state. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"Provisioning state.", + SerializedName = @"provisioningState", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Support.JsonWebKeyType) })] + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Support.JsonWebKeyType? ProvisioningState { get; } + /// This field will be used when RP does not support Availability zones. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"This field will be used when RP does not support Availability zones.", + SerializedName = @"stampId", + PossibleTypes = new [] { typeof(string) })] + string StampId { get; set; } + /// Resource Status Message. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"Resource Status Message.", + SerializedName = @"statusMessage", + PossibleTypes = new [] { typeof(string) })] + string StatusMessage { get; } + /// + /// The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/... + /// + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...", + SerializedName = @"id", + PossibleTypes = new [] { typeof(string) })] + string SubnetId { get; set; } + + } + /// Properties of the dedicated hsm + internal partial interface IDedicatedHsmPropertiesInternal + + { + /// Specifies the network interfaces of the dedicated hsm. + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkProfile NetworkProfile { get; set; } + /// + /// Specifies the list of resource Ids for the network interfaces associated with the dedicated HSM. + /// + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkInterface[] NetworkProfileNetworkInterface { get; set; } + /// Specifies the identifier of the subnet. + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IApiEntityReference NetworkProfileSubnet { get; set; } + /// Provisioning state. + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Support.JsonWebKeyType? ProvisioningState { get; set; } + /// This field will be used when RP does not support Availability zones. + string StampId { get; set; } + /// Resource Status Message. + string StatusMessage { get; set; } + /// + /// The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/... + /// + string SubnetId { get; set; } + + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmProperties.json.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmProperties.json.cs new file mode 100644 index 000000000000..b89063f54b6e --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/DedicatedHsmProperties.json.cs @@ -0,0 +1,113 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Extensions; + + /// Properties of the dedicated hsm + public partial class DedicatedHsmProperties + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject instance to deserialize from. + internal DedicatedHsmProperties(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_networkProfile = If( json?.PropertyT("networkProfile"), out var __jsonNetworkProfile) ? Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.NetworkProfile.FromJson(__jsonNetworkProfile) : NetworkProfile;} + {_provisioningState = If( json?.PropertyT("provisioningState"), out var __jsonProvisioningState) ? (string)__jsonProvisioningState : (string)ProvisioningState;} + {_stampId = If( json?.PropertyT("stampId"), out var __jsonStampId) ? (string)__jsonStampId : (string)StampId;} + {_statusMessage = If( json?.PropertyT("statusMessage"), out var __jsonStatusMessage) ? (string)__jsonStatusMessage : (string)StatusMessage;} + AfterFromJson(json); + } + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmProperties. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmProperties. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json ? new DedicatedHsmProperties(json) : null; + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + AddIf( null != this._networkProfile ? (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode) this._networkProfile.ToJson(null,serializationMode) : null, "networkProfile" ,container.Add ); + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._provisioningState)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonString(this._provisioningState.ToString()) : null, "provisioningState" ,container.Add ); + } + AddIf( null != (((object)this._stampId)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonString(this._stampId.ToString()) : null, "stampId" ,container.Add ); + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._statusMessage)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonString(this._statusMessage.ToString()) : null, "statusMessage" ,container.Add ); + } + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/Error.PowerShell.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/Error.PowerShell.cs new file mode 100644 index 000000000000..39b9ee6e1737 --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/Error.PowerShell.cs @@ -0,0 +1,135 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell; + + /// The key vault server error. + [System.ComponentModel.TypeConverter(typeof(ErrorTypeConverter))] + public partial class Error + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IError DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new Error(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IError DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new Error(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal Error(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IErrorInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IErrorInternal)this).Code, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IErrorInternal)this).Innererror = (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IError) content.GetValueForProperty("Innererror",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IErrorInternal)this).Innererror, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.ErrorTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IErrorInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IErrorInternal)this).Message, global::System.Convert.ToString); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal Error(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IErrorInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IErrorInternal)this).Code, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IErrorInternal)this).Innererror = (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IError) content.GetValueForProperty("Innererror",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IErrorInternal)this).Innererror, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.ErrorTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IErrorInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IErrorInternal)this).Message, global::System.Convert.ToString); + AfterDeserializePSObject(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IError FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// The key vault server error. + [System.ComponentModel.TypeConverter(typeof(ErrorTypeConverter))] + public partial interface IError + + { + + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/Error.TypeConverter.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/Error.TypeConverter.cs new file mode 100644 index 000000000000..0aa9b0d38732 --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/Error.TypeConverter.cs @@ -0,0 +1,142 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class ErrorTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IError ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IError).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return Error.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return Error.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return Error.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/Error.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/Error.cs new file mode 100644 index 000000000000..dec726097d7e --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/Error.cs @@ -0,0 +1,89 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Extensions; + + /// The key vault server error. + public partial class Error : + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IError, + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IErrorInternal + { + + /// Backing field for property. + private string _code; + + /// The error code. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Owned)] + public string Code { get => this._code; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IError _innererror; + + /// The key vault server error. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IError Innererror { get => (this._innererror = this._innererror ?? new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.Error()); } + + /// Backing field for property. + private string _message; + + /// The error message. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Owned)] + public string Message { get => this._message; } + + /// Internal Acessors for Code + string Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IErrorInternal.Code { get => this._code; set { {_code = value;} } } + + /// Internal Acessors for Innererror + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IError Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IErrorInternal.Innererror { get => (this._innererror = this._innererror ?? new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.Error()); set { {_innererror = value;} } } + + /// Internal Acessors for Message + string Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IErrorInternal.Message { get => this._message; set { {_message = value;} } } + + /// Creates an new instance. + public Error() + { + + } + } + /// The key vault server error. + public partial interface IError : + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IJsonSerializable + { + /// The error code. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The error code.", + SerializedName = @"code", + PossibleTypes = new [] { typeof(string) })] + string Code { get; } + /// The key vault server error. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The key vault server error.", + SerializedName = @"innererror", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IError) })] + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IError Innererror { get; } + /// The error message. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The error message.", + SerializedName = @"message", + PossibleTypes = new [] { typeof(string) })] + string Message { get; } + + } + /// The key vault server error. + internal partial interface IErrorInternal + + { + /// The error code. + string Code { get; set; } + /// The key vault server error. + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IError Innererror { get; set; } + /// The error message. + string Message { get; set; } + + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/Error.json.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/Error.json.cs new file mode 100644 index 000000000000..e06f41055c26 --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/Error.json.cs @@ -0,0 +1,114 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Extensions; + + /// The key vault server error. + public partial class Error + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject instance to deserialize from. + internal Error(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_code = If( json?.PropertyT("code"), out var __jsonCode) ? (string)__jsonCode : (string)Code;} + {_innererror = If( json?.PropertyT("innererror"), out var __jsonInnererror) ? Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.Error.FromJson(__jsonInnererror) : Innererror;} + {_message = If( json?.PropertyT("message"), out var __jsonMessage) ? (string)__jsonMessage : (string)Message;} + AfterFromJson(json); + } + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IError. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IError. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IError FromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json ? new Error(json) : null; + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._code)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonString(this._code.ToString()) : null, "code" ,container.Add ); + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != this._innererror ? (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode) this._innererror.ToJson(null,serializationMode) : null, "innererror" ,container.Add ); + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._message)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonString(this._message.ToString()) : null, "message" ,container.Add ); + } + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/NetworkInterface.PowerShell.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/NetworkInterface.PowerShell.cs new file mode 100644 index 000000000000..e9708d2ac90d --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/NetworkInterface.PowerShell.cs @@ -0,0 +1,133 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell; + + /// The network interface definition. + [System.ComponentModel.TypeConverter(typeof(NetworkInterfaceTypeConverter))] + public partial class NetworkInterface + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkInterface DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new NetworkInterface(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkInterface DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new NetworkInterface(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkInterface FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal NetworkInterface(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkInterfaceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkInterfaceInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkInterfaceInternal)this).PrivateIPAddress = (string) content.GetValueForProperty("PrivateIPAddress",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkInterfaceInternal)this).PrivateIPAddress, global::System.Convert.ToString); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal NetworkInterface(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkInterfaceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkInterfaceInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkInterfaceInternal)this).PrivateIPAddress = (string) content.GetValueForProperty("PrivateIPAddress",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkInterfaceInternal)this).PrivateIPAddress, global::System.Convert.ToString); + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// The network interface definition. + [System.ComponentModel.TypeConverter(typeof(NetworkInterfaceTypeConverter))] + public partial interface INetworkInterface + + { + + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/NetworkInterface.TypeConverter.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/NetworkInterface.TypeConverter.cs new file mode 100644 index 000000000000..6b09600a7835 --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/NetworkInterface.TypeConverter.cs @@ -0,0 +1,142 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class NetworkInterfaceTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkInterface ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkInterface).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return NetworkInterface.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return NetworkInterface.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return NetworkInterface.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/NetworkInterface.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/NetworkInterface.cs new file mode 100644 index 000000000000..526f45188ee1 --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/NetworkInterface.cs @@ -0,0 +1,72 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Extensions; + + /// The network interface definition. + public partial class NetworkInterface : + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkInterface, + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkInterfaceInternal + { + + /// Backing field for property. + private string _id; + + /// + /// The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/... + /// + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Owned)] + public string Id { get => this._id; } + + /// Internal Acessors for Id + string Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkInterfaceInternal.Id { get => this._id; set { {_id = value;} } } + + /// Backing field for property. + private string _privateIPAddress; + + /// Private Ip address of the interface + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Owned)] + public string PrivateIPAddress { get => this._privateIPAddress; set => this._privateIPAddress = value; } + + /// Creates an new instance. + public NetworkInterface() + { + + } + } + /// The network interface definition. + public partial interface INetworkInterface : + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IJsonSerializable + { + /// + /// The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/... + /// + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...", + SerializedName = @"id", + PossibleTypes = new [] { typeof(string) })] + string Id { get; } + /// Private Ip address of the interface + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Private Ip address of the interface", + SerializedName = @"privateIpAddress", + PossibleTypes = new [] { typeof(string) })] + string PrivateIPAddress { get; set; } + + } + /// The network interface definition. + internal partial interface INetworkInterfaceInternal + + { + /// + /// The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/... + /// + string Id { get; set; } + /// Private Ip address of the interface + string PrivateIPAddress { get; set; } + + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/NetworkInterface.json.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/NetworkInterface.json.cs new file mode 100644 index 000000000000..9c7666ca5aa5 --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/NetworkInterface.json.cs @@ -0,0 +1,106 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Extensions; + + /// The network interface definition. + public partial class NetworkInterface + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkInterface. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkInterface. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkInterface FromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json ? new NetworkInterface(json) : null; + } + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject instance to deserialize from. + internal NetworkInterface(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_id = If( json?.PropertyT("id"), out var __jsonId) ? (string)__jsonId : (string)Id;} + {_privateIPAddress = If( json?.PropertyT("privateIpAddress"), out var __jsonPrivateIPAddress) ? (string)__jsonPrivateIPAddress : (string)PrivateIPAddress;} + AfterFromJson(json); + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._id)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonString(this._id.ToString()) : null, "id" ,container.Add ); + } + AddIf( null != (((object)this._privateIPAddress)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonString(this._privateIPAddress.ToString()) : null, "privateIpAddress" ,container.Add ); + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/NetworkProfile.PowerShell.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/NetworkProfile.PowerShell.cs new file mode 100644 index 000000000000..392719d345fd --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/NetworkProfile.PowerShell.cs @@ -0,0 +1,133 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell; + + [System.ComponentModel.TypeConverter(typeof(NetworkProfileTypeConverter))] + public partial class NetworkProfile + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkProfile DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new NetworkProfile(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkProfile DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new NetworkProfile(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkProfile FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal NetworkProfile(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkProfileInternal)this).Subnet = (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IApiEntityReference) content.GetValueForProperty("Subnet",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkProfileInternal)this).Subnet, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.ApiEntityReferenceTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkProfileInternal)this).NetworkInterface = (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkInterface[]) content.GetValueForProperty("NetworkInterface",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkProfileInternal)this).NetworkInterface, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.NetworkInterfaceTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkProfileInternal)this).SubnetId = (string) content.GetValueForProperty("SubnetId",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkProfileInternal)this).SubnetId, global::System.Convert.ToString); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal NetworkProfile(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkProfileInternal)this).Subnet = (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IApiEntityReference) content.GetValueForProperty("Subnet",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkProfileInternal)this).Subnet, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.ApiEntityReferenceTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkProfileInternal)this).NetworkInterface = (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkInterface[]) content.GetValueForProperty("NetworkInterface",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkProfileInternal)this).NetworkInterface, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.NetworkInterfaceTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkProfileInternal)this).SubnetId = (string) content.GetValueForProperty("SubnetId",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkProfileInternal)this).SubnetId, global::System.Convert.ToString); + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + [System.ComponentModel.TypeConverter(typeof(NetworkProfileTypeConverter))] + public partial interface INetworkProfile + + { + + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/NetworkProfile.TypeConverter.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/NetworkProfile.TypeConverter.cs new file mode 100644 index 000000000000..f48a716640b5 --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/NetworkProfile.TypeConverter.cs @@ -0,0 +1,142 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class NetworkProfileTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkProfile ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkProfile).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return NetworkProfile.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return NetworkProfile.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return NetworkProfile.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/NetworkProfile.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/NetworkProfile.cs new file mode 100644 index 000000000000..eba1da38213e --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/NetworkProfile.cs @@ -0,0 +1,81 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Extensions; + + public partial class NetworkProfile : + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkProfile, + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkProfileInternal + { + + /// Internal Acessors for Subnet + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IApiEntityReference Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkProfileInternal.Subnet { get => (this._subnet = this._subnet ?? new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.ApiEntityReference()); set { {_subnet = value;} } } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkInterface[] _networkInterface; + + /// + /// Specifies the list of resource Ids for the network interfaces associated with the dedicated HSM. + /// + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkInterface[] NetworkInterface { get => this._networkInterface; set => this._networkInterface = value; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IApiEntityReference _subnet; + + /// Specifies the identifier of the subnet. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Owned)] + internal Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IApiEntityReference Subnet { get => (this._subnet = this._subnet ?? new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.ApiEntityReference()); set => this._subnet = value; } + + /// + /// The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/... + /// + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Inlined)] + public string SubnetId { get => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IApiEntityReferenceInternal)Subnet).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IApiEntityReferenceInternal)Subnet).Id = value; } + + /// Creates an new instance. + public NetworkProfile() + { + + } + } + public partial interface INetworkProfile : + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IJsonSerializable + { + /// + /// Specifies the list of resource Ids for the network interfaces associated with the dedicated HSM. + /// + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Specifies the list of resource Ids for the network interfaces associated with the dedicated HSM.", + SerializedName = @"networkInterfaces", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkInterface) })] + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkInterface[] NetworkInterface { get; set; } + /// + /// The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/... + /// + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...", + SerializedName = @"id", + PossibleTypes = new [] { typeof(string) })] + string SubnetId { get; set; } + + } + internal partial interface INetworkProfileInternal + + { + /// + /// Specifies the list of resource Ids for the network interfaces associated with the dedicated HSM. + /// + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkInterface[] NetworkInterface { get; set; } + /// Specifies the identifier of the subnet. + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IApiEntityReference Subnet { get; set; } + /// + /// The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/... + /// + string SubnetId { get; set; } + + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/NetworkProfile.json.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/NetworkProfile.json.cs new file mode 100644 index 000000000000..f76ee24ae34e --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/NetworkProfile.json.cs @@ -0,0 +1,110 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Extensions; + + public partial class NetworkProfile + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkProfile. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkProfile. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkProfile FromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json ? new NetworkProfile(json) : null; + } + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject instance to deserialize from. + internal NetworkProfile(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_subnet = If( json?.PropertyT("subnet"), out var __jsonSubnet) ? Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.ApiEntityReference.FromJson(__jsonSubnet) : Subnet;} + {_networkInterface = If( json?.PropertyT("networkInterfaces"), out var __jsonNetworkInterfaces) ? If( __jsonNetworkInterfaces as Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkInterface) (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.NetworkInterface.FromJson(__u) )) ))() : null : NetworkInterface;} + AfterFromJson(json); + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + AddIf( null != this._subnet ? (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode) this._subnet.ToJson(null,serializationMode) : null, "subnet" ,container.Add ); + if (null != this._networkInterface) + { + var __w = new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.XNodeArray(); + foreach( var __x in this._networkInterface ) + { + AddIf(__x?.ToJson(null, serializationMode) ,__w.Add); + } + container.Add("networkInterfaces",__w); + } + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/Resource.PowerShell.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/Resource.PowerShell.cs new file mode 100644 index 000000000000..3727ba20fca7 --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/Resource.PowerShell.cs @@ -0,0 +1,145 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell; + + /// Dedicated HSM resource + [System.ComponentModel.TypeConverter(typeof(ResourceTypeConverter))] + public partial class Resource + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResource DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new Resource(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResource DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new Resource(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResource FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal Resource(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Sku = (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.ISku) content.GetValueForProperty("Sku",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Sku, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.SkuTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Location, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.ResourceTagsTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Zone = (string[]) content.GetValueForProperty("Zone",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Zone, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).SkuName = (string) content.GetValueForProperty("SkuName",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).SkuName, global::System.Convert.ToString); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal Resource(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Sku = (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.ISku) content.GetValueForProperty("Sku",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Sku, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.SkuTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Location, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.ResourceTagsTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Zone = (string[]) content.GetValueForProperty("Zone",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).Zone, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).SkuName = (string) content.GetValueForProperty("SkuName",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal)this).SkuName, global::System.Convert.ToString); + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// Dedicated HSM resource + [System.ComponentModel.TypeConverter(typeof(ResourceTypeConverter))] + public partial interface IResource + + { + + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/Resource.TypeConverter.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/Resource.TypeConverter.cs new file mode 100644 index 000000000000..94d328b2477c --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/Resource.TypeConverter.cs @@ -0,0 +1,142 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class ResourceTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResource ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResource).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return Resource.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return Resource.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return Resource.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/Resource.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/Resource.cs new file mode 100644 index 000000000000..f12849d6c47c --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/Resource.cs @@ -0,0 +1,166 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Extensions; + + /// Dedicated HSM resource + public partial class Resource : + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResource, + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal + { + + /// Backing field for property. + private string _id; + + /// The Azure Resource Manager resource ID for the dedicated HSM. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Owned)] + public string Id { get => this._id; } + + /// Backing field for property. + private string _location; + + /// The supported Azure location where the dedicated HSM should be created. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Owned)] + public string Location { get => this._location; set => this._location = value; } + + /// Internal Acessors for Id + string Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal.Id { get => this._id; set { {_id = value;} } } + + /// Internal Acessors for Name + string Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal.Name { get => this._name; set { {_name = value;} } } + + /// Internal Acessors for Sku + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.ISku Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal.Sku { get => (this._sku = this._sku ?? new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.Sku()); set { {_sku = value;} } } + + /// Internal Acessors for Type + string Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceInternal.Type { get => this._type; set { {_type = value;} } } + + /// Backing field for property. + private string _name; + + /// The name of the dedicated HSM. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Owned)] + public string Name { get => this._name; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.ISku _sku; + + /// SKU details + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Owned)] + internal Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.ISku Sku { get => (this._sku = this._sku ?? new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.Sku()); set => this._sku = value; } + + /// SKU of the dedicated HSM + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Inlined)] + public string SkuName { get => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.ISkuInternal)Sku).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.ISkuInternal)Sku).Name = value; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceTags _tag; + + /// Resource tags + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceTags Tag { get => (this._tag = this._tag ?? new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.ResourceTags()); set => this._tag = value; } + + /// Backing field for property. + private string _type; + + /// The resource type of the dedicated HSM. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Owned)] + public string Type { get => this._type; } + + /// Backing field for property. + private string[] _zone; + + /// The Dedicated Hsm zones. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Owned)] + public string[] Zone { get => this._zone; set => this._zone = value; } + + /// Creates an new instance. + public Resource() + { + + } + } + /// Dedicated HSM resource + public partial interface IResource : + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IJsonSerializable + { + /// The Azure Resource Manager resource ID for the dedicated HSM. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The Azure Resource Manager resource ID for the dedicated HSM.", + SerializedName = @"id", + PossibleTypes = new [] { typeof(string) })] + string Id { get; } + /// The supported Azure location where the dedicated HSM should be created. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The supported Azure location where the dedicated HSM should be created.", + SerializedName = @"location", + PossibleTypes = new [] { typeof(string) })] + string Location { get; set; } + /// The name of the dedicated HSM. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The name of the dedicated HSM.", + SerializedName = @"name", + PossibleTypes = new [] { typeof(string) })] + string Name { get; } + /// SKU of the dedicated HSM + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"SKU of the dedicated HSM", + SerializedName = @"name", + PossibleTypes = new [] { typeof(string) })] + string SkuName { get; set; } + /// Resource tags + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Resource tags", + SerializedName = @"tags", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceTags) })] + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceTags Tag { get; set; } + /// The resource type of the dedicated HSM. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The resource type of the dedicated HSM.", + SerializedName = @"type", + PossibleTypes = new [] { typeof(string) })] + string Type { get; } + /// The Dedicated Hsm zones. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The Dedicated Hsm zones.", + SerializedName = @"zones", + PossibleTypes = new [] { typeof(string) })] + string[] Zone { get; set; } + + } + /// Dedicated HSM resource + internal partial interface IResourceInternal + + { + /// The Azure Resource Manager resource ID for the dedicated HSM. + string Id { get; set; } + /// The supported Azure location where the dedicated HSM should be created. + string Location { get; set; } + /// The name of the dedicated HSM. + string Name { get; set; } + /// SKU details + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.ISku Sku { get; set; } + /// SKU of the dedicated HSM + string SkuName { get; set; } + /// Resource tags + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceTags Tag { get; set; } + /// The resource type of the dedicated HSM. + string Type { get; set; } + /// The Dedicated Hsm zones. + string[] Zone { get; set; } + + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/Resource.json.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/Resource.json.cs new file mode 100644 index 000000000000..d9aa348c6cd1 --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/Resource.json.cs @@ -0,0 +1,130 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Extensions; + + /// Dedicated HSM resource + public partial class Resource + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResource. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResource. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResource FromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json ? new Resource(json) : null; + } + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject instance to deserialize from. + internal Resource(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_sku = If( json?.PropertyT("sku"), out var __jsonSku) ? Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.Sku.FromJson(__jsonSku) : Sku;} + {_name = If( json?.PropertyT("name"), out var __jsonName) ? (string)__jsonName : (string)Name;} + {_type = If( json?.PropertyT("type"), out var __jsonType) ? (string)__jsonType : (string)Type;} + {_id = If( json?.PropertyT("id"), out var __jsonId) ? (string)__jsonId : (string)Id;} + {_location = If( json?.PropertyT("location"), out var __jsonLocation) ? (string)__jsonLocation : (string)Location;} + {_tag = If( json?.PropertyT("tags"), out var __jsonTags) ? Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.ResourceTags.FromJson(__jsonTags) : Tag;} + {_zone = If( json?.PropertyT("zones"), out var __jsonZones) ? If( __jsonZones as Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(string) (__u is Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonString __t ? (string)(__t.ToString()) : null)) ))() : null : Zone;} + AfterFromJson(json); + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + AddIf( null != this._sku ? (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode) this._sku.ToJson(null,serializationMode) : null, "sku" ,container.Add ); + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._name)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonString(this._name.ToString()) : null, "name" ,container.Add ); + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._type)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonString(this._type.ToString()) : null, "type" ,container.Add ); + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._id)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonString(this._id.ToString()) : null, "id" ,container.Add ); + } + AddIf( null != (((object)this._location)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonString(this._location.ToString()) : null, "location" ,container.Add ); + AddIf( null != this._tag ? (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode) this._tag.ToJson(null,serializationMode) : null, "tags" ,container.Add ); + if (null != this._zone) + { + var __w = new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.XNodeArray(); + foreach( var __x in this._zone ) + { + AddIf(null != (((object)__x)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonString(__x.ToString()) : null ,__w.Add); + } + container.Add("zones",__w); + } + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/ResourceListResult.PowerShell.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/ResourceListResult.PowerShell.cs new file mode 100644 index 000000000000..89845ee31f6b --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/ResourceListResult.PowerShell.cs @@ -0,0 +1,133 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell; + + /// List of dedicated HSM resources. + [System.ComponentModel.TypeConverter(typeof(ResourceListResultTypeConverter))] + public partial class ResourceListResult + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new ResourceListResult(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new ResourceListResult(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal ResourceListResult(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceListResultInternal)this).NextLink, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResource[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.ResourceTypeConverter.ConvertFrom)); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal ResourceListResult(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceListResultInternal)this).NextLink, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResource[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.ResourceTypeConverter.ConvertFrom)); + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// List of dedicated HSM resources. + [System.ComponentModel.TypeConverter(typeof(ResourceListResultTypeConverter))] + public partial interface IResourceListResult + + { + + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/ResourceListResult.TypeConverter.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/ResourceListResult.TypeConverter.cs new file mode 100644 index 000000000000..1ed63164930b --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/ResourceListResult.TypeConverter.cs @@ -0,0 +1,142 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class ResourceListResultTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceListResult ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceListResult).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return ResourceListResult.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return ResourceListResult.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return ResourceListResult.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/ResourceListResult.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/ResourceListResult.cs new file mode 100644 index 000000000000..87eac422dc1d --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/ResourceListResult.cs @@ -0,0 +1,63 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Extensions; + + /// List of dedicated HSM resources. + public partial class ResourceListResult : + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceListResult, + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceListResultInternal + { + + /// Backing field for property. + private string _nextLink; + + /// The URL to get the next set of dedicated HSM resources. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Owned)] + public string NextLink { get => this._nextLink; set => this._nextLink = value; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResource[] _value; + + /// The list of dedicated HSM resources. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResource[] Value { get => this._value; set => this._value = value; } + + /// Creates an new instance. + public ResourceListResult() + { + + } + } + /// List of dedicated HSM resources. + public partial interface IResourceListResult : + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IJsonSerializable + { + /// The URL to get the next set of dedicated HSM resources. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The URL to get the next set of dedicated HSM resources.", + SerializedName = @"nextLink", + PossibleTypes = new [] { typeof(string) })] + string NextLink { get; set; } + /// The list of dedicated HSM resources. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The list of dedicated HSM resources.", + SerializedName = @"value", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResource) })] + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResource[] Value { get; set; } + + } + /// List of dedicated HSM resources. + internal partial interface IResourceListResultInternal + + { + /// The URL to get the next set of dedicated HSM resources. + string NextLink { get; set; } + /// The list of dedicated HSM resources. + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResource[] Value { get; set; } + + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/ResourceListResult.json.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/ResourceListResult.json.cs new file mode 100644 index 000000000000..dcbc5521a44e --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/ResourceListResult.json.cs @@ -0,0 +1,111 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Extensions; + + /// List of dedicated HSM resources. + public partial class ResourceListResult + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceListResult. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceListResult. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json ? new ResourceListResult(json) : null; + } + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject instance to deserialize from. + internal ResourceListResult(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_nextLink = If( json?.PropertyT("nextLink"), out var __jsonNextLink) ? (string)__jsonNextLink : (string)NextLink;} + {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResource) (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.Resource.FromJson(__u) )) ))() : null : Value;} + AfterFromJson(json); + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + AddIf( null != (((object)this._nextLink)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonString(this._nextLink.ToString()) : null, "nextLink" ,container.Add ); + if (null != this._value) + { + var __w = new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.XNodeArray(); + foreach( var __x in this._value ) + { + AddIf(__x?.ToJson(null, serializationMode) ,__w.Add); + } + container.Add("value",__w); + } + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/ResourceTags.PowerShell.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/ResourceTags.PowerShell.cs new file mode 100644 index 000000000000..55acec1dd312 --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/ResourceTags.PowerShell.cs @@ -0,0 +1,133 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell; + + /// Resource tags + [System.ComponentModel.TypeConverter(typeof(ResourceTagsTypeConverter))] + public partial class ResourceTags + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceTags DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new ResourceTags(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceTags DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new ResourceTags(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceTags FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal ResourceTags(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + // this type is a dictionary; copy elements from source to here. + CopyFrom(content); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal ResourceTags(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + // this type is a dictionary; copy elements from source to here. + CopyFrom(content); + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// Resource tags + [System.ComponentModel.TypeConverter(typeof(ResourceTagsTypeConverter))] + public partial interface IResourceTags + + { + + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/ResourceTags.TypeConverter.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/ResourceTags.TypeConverter.cs new file mode 100644 index 000000000000..addc175920e6 --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/ResourceTags.TypeConverter.cs @@ -0,0 +1,142 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class ResourceTagsTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceTags ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceTags).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return ResourceTags.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return ResourceTags.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return ResourceTags.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/ResourceTags.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/ResourceTags.cs new file mode 100644 index 000000000000..9187023a9be4 --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/ResourceTags.cs @@ -0,0 +1,30 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Extensions; + + /// Resource tags + public partial class ResourceTags : + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceTags, + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceTagsInternal + { + + /// Creates an new instance. + public ResourceTags() + { + + } + } + /// Resource tags + public partial interface IResourceTags : + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IJsonSerializable, + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IAssociativeArray + { + + } + /// Resource tags + internal partial interface IResourceTagsInternal + + { + + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/ResourceTags.dictionary.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/ResourceTags.dictionary.cs new file mode 100644 index 000000000000..643af008cdae --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/ResourceTags.dictionary.cs @@ -0,0 +1,70 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Extensions; + + public partial class ResourceTags : + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IAssociativeArray + { + protected global::System.Collections.Generic.Dictionary __additionalProperties = new global::System.Collections.Generic.Dictionary(); + + global::System.Collections.Generic.IDictionary Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IAssociativeArray.AdditionalProperties { get => __additionalProperties; } + + int Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IAssociativeArray.Count { get => __additionalProperties.Count; } + + global::System.Collections.Generic.IEnumerable Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IAssociativeArray.Keys { get => __additionalProperties.Keys; } + + global::System.Collections.Generic.IEnumerable Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IAssociativeArray.Values { get => __additionalProperties.Values; } + + public string this[global::System.String index] { get => __additionalProperties[index]; set => __additionalProperties[index] = value; } + + /// + /// + public void Add(global::System.String key, string value) => __additionalProperties.Add( key, value); + + public void Clear() => __additionalProperties.Clear(); + + /// + public bool ContainsKey(global::System.String key) => __additionalProperties.ContainsKey( key); + + /// + public void CopyFrom(global::System.Collections.IDictionary source) + { + if (null != source) + { + foreach( var property in Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.TypeConverterExtensions.GetFilteredProperties(source, new global::System.Collections.Generic.HashSet() { } ) ) + { + if ((null != property.Key && null != property.Value)) + { + this.__additionalProperties.Add(property.Key.ToString(), global::System.Management.Automation.LanguagePrimitives.ConvertTo( property.Value)); + } + } + } + } + + /// + public void CopyFrom(global::System.Management.Automation.PSObject source) + { + if (null != source) + { + foreach( var property in Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.TypeConverterExtensions.GetFilteredProperties(source, new global::System.Collections.Generic.HashSet() { } ) ) + { + if ((null != property.Key && null != property.Value)) + { + this.__additionalProperties.Add(property.Key.ToString(), global::System.Management.Automation.LanguagePrimitives.ConvertTo( property.Value)); + } + } + } + } + + /// + public bool Remove(global::System.String key) => __additionalProperties.Remove( key); + + /// + /// + public bool TryGetValue(global::System.String key, out string value) => __additionalProperties.TryGetValue( key, out value); + + /// + + public static implicit operator global::System.Collections.Generic.Dictionary(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.ResourceTags source) => source.__additionalProperties; + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/ResourceTags.json.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/ResourceTags.json.cs new file mode 100644 index 000000000000..2dd697aa6d84 --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/ResourceTags.json.cs @@ -0,0 +1,102 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Extensions; + + /// Resource tags + public partial class ResourceTags + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceTags. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceTags. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceTags FromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json ? new ResourceTags(json) : null; + } + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject instance to deserialize from. + /// + internal ResourceTags(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json, global::System.Collections.Generic.HashSet exclusions = null) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.JsonSerializable.FromJson( json, ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IAssociativeArray)this).AdditionalProperties, null ,exclusions ); + AfterFromJson(json); + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.JsonSerializable.ToJson( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IAssociativeArray)this).AdditionalProperties, container); + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/Sku.PowerShell.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/Sku.PowerShell.cs new file mode 100644 index 000000000000..66720f4c710f --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/Sku.PowerShell.cs @@ -0,0 +1,129 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell; + + [System.ComponentModel.TypeConverter(typeof(SkuTypeConverter))] + public partial class Sku + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.ISku DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new Sku(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.ISku DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new Sku(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.ISku FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal Sku(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.ISkuInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.ISkuInternal)this).Name, global::System.Convert.ToString); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal Sku(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.ISkuInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.ISkuInternal)this).Name, global::System.Convert.ToString); + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + [System.ComponentModel.TypeConverter(typeof(SkuTypeConverter))] + public partial interface ISku + + { + + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/Sku.TypeConverter.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/Sku.TypeConverter.cs new file mode 100644 index 000000000000..f1cdf5e6f460 --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/Sku.TypeConverter.cs @@ -0,0 +1,142 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class SkuTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.ISku ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.ISku).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return Sku.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return Sku.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return Sku.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/Sku.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/Sku.cs new file mode 100644 index 000000000000..ee2a4741d7ad --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/Sku.cs @@ -0,0 +1,43 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Extensions; + + public partial class Sku : + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.ISku, + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.ISkuInternal + { + + /// Backing field for property. + private string _name; + + /// SKU of the dedicated HSM + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Owned)] + public string Name { get => this._name; set => this._name = value; } + + /// Creates an new instance. + public Sku() + { + + } + } + public partial interface ISku : + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IJsonSerializable + { + /// SKU of the dedicated HSM + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"SKU of the dedicated HSM", + SerializedName = @"name", + PossibleTypes = new [] { typeof(string) })] + string Name { get; set; } + + } + internal partial interface ISkuInternal + + { + /// SKU of the dedicated HSM + string Name { get; set; } + + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/Api20181031/Sku.json.cs b/src/DedicatedHsm/generated/api/Models/Api20181031/Sku.json.cs new file mode 100644 index 000000000000..5eaff4bd5eba --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/Api20181031/Sku.json.cs @@ -0,0 +1,100 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Extensions; + + public partial class Sku + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.ISku. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.ISku. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.ISku FromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json ? new Sku(json) : null; + } + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject instance to deserialize from. + internal Sku(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_name = If( json?.PropertyT("name"), out var __jsonName) ? (string)__jsonName : (string)Name;} + AfterFromJson(json); + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + AddIf( null != (((object)this._name)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonString(this._name.ToString()) : null, "name" ,container.Add ); + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/DedicatedHsmIdentity.PowerShell.cs b/src/DedicatedHsm/generated/api/Models/DedicatedHsmIdentity.PowerShell.cs new file mode 100644 index 000000000000..d752b2a5473c --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/DedicatedHsmIdentity.PowerShell.cs @@ -0,0 +1,140 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models +{ + using Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell; + + [System.ComponentModel.TypeConverter(typeof(DedicatedHsmIdentityTypeConverter))] + public partial class DedicatedHsmIdentity + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal DedicatedHsmIdentity(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.IDedicatedHsmIdentityInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.IDedicatedHsmIdentityInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.IDedicatedHsmIdentityInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.IDedicatedHsmIdentityInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.IDedicatedHsmIdentityInternal)this).ResourceGroupName = (string) content.GetValueForProperty("ResourceGroupName",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.IDedicatedHsmIdentityInternal)this).ResourceGroupName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.IDedicatedHsmIdentityInternal)this).SubscriptionId = (string) content.GetValueForProperty("SubscriptionId",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.IDedicatedHsmIdentityInternal)this).SubscriptionId, global::System.Convert.ToString); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal DedicatedHsmIdentity(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.IDedicatedHsmIdentityInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.IDedicatedHsmIdentityInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.IDedicatedHsmIdentityInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.IDedicatedHsmIdentityInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.IDedicatedHsmIdentityInternal)this).ResourceGroupName = (string) content.GetValueForProperty("ResourceGroupName",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.IDedicatedHsmIdentityInternal)this).ResourceGroupName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.IDedicatedHsmIdentityInternal)this).SubscriptionId = (string) content.GetValueForProperty("SubscriptionId",((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.IDedicatedHsmIdentityInternal)this).SubscriptionId, global::System.Convert.ToString); + AfterDeserializePSObject(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.IDedicatedHsmIdentity DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new DedicatedHsmIdentity(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.IDedicatedHsmIdentity DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new DedicatedHsmIdentity(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.IDedicatedHsmIdentity FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + [System.ComponentModel.TypeConverter(typeof(DedicatedHsmIdentityTypeConverter))] + public partial interface IDedicatedHsmIdentity + + { + + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/DedicatedHsmIdentity.TypeConverter.cs b/src/DedicatedHsm/generated/api/Models/DedicatedHsmIdentity.TypeConverter.cs new file mode 100644 index 000000000000..469c960c98fc --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/DedicatedHsmIdentity.TypeConverter.cs @@ -0,0 +1,157 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models +{ + using Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class DedicatedHsmIdentityTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + // we allow string conversion too. + if (type == typeof(global::System.String)) + { + return true; + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.IDedicatedHsmIdentity ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + // support direct string to id type conversion. + if (type == typeof(global::System.String)) + { + return new DedicatedHsmIdentity { Id = sourceValue }; + } + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.IDedicatedHsmIdentity).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return DedicatedHsmIdentity.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return DedicatedHsmIdentity.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return DedicatedHsmIdentity.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/DedicatedHsmIdentity.cs b/src/DedicatedHsm/generated/api/Models/DedicatedHsmIdentity.cs new file mode 100644 index 000000000000..b692133bfacc --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/DedicatedHsmIdentity.cs @@ -0,0 +1,108 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models +{ + using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Extensions; + + public partial class DedicatedHsmIdentity : + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.IDedicatedHsmIdentity, + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.IDedicatedHsmIdentityInternal + { + + /// Backing field for property. + private string _id; + + /// Resource identity path + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Owned)] + public string Id { get => this._id; set => this._id = value; } + + /// Backing field for property. + private string _name; + + /// Name of the dedicated Hsm + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Owned)] + public string Name { get => this._name; set => this._name = value; } + + /// Backing field for property. + private string _resourceGroupName; + + /// The name of the Resource Group to which the resource belongs. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Owned)] + public string ResourceGroupName { get => this._resourceGroupName; set => this._resourceGroupName = value; } + + /// Backing field for property. + private string _subscriptionId; + + /// + /// Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI + /// for every service call. + /// + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Origin(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.PropertyOrigin.Owned)] + public string SubscriptionId { get => this._subscriptionId; set => this._subscriptionId = value; } + + /// Creates an new instance. + public DedicatedHsmIdentity() + { + + } + } + public partial interface IDedicatedHsmIdentity : + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IJsonSerializable + { + /// Resource identity path + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Resource identity path", + SerializedName = @"id", + PossibleTypes = new [] { typeof(string) })] + string Id { get; set; } + /// Name of the dedicated Hsm + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Name of the dedicated Hsm", + SerializedName = @"name", + PossibleTypes = new [] { typeof(string) })] + string Name { get; set; } + /// The name of the Resource Group to which the resource belongs. + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The name of the Resource Group to which the resource belongs.", + SerializedName = @"resourceGroupName", + PossibleTypes = new [] { typeof(string) })] + string ResourceGroupName { get; set; } + /// + /// Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI + /// for every service call. + /// + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.", + SerializedName = @"subscriptionId", + PossibleTypes = new [] { typeof(string) })] + string SubscriptionId { get; set; } + + } + internal partial interface IDedicatedHsmIdentityInternal + + { + /// Resource identity path + string Id { get; set; } + /// Name of the dedicated Hsm + string Name { get; set; } + /// The name of the Resource Group to which the resource belongs. + string ResourceGroupName { get; set; } + /// + /// Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI + /// for every service call. + /// + string SubscriptionId { get; set; } + + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Models/DedicatedHsmIdentity.json.cs b/src/DedicatedHsm/generated/api/Models/DedicatedHsmIdentity.json.cs new file mode 100644 index 000000000000..caaa8bac568b --- /dev/null +++ b/src/DedicatedHsm/generated/api/Models/DedicatedHsmIdentity.json.cs @@ -0,0 +1,111 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models +{ + using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Extensions; + + public partial class DedicatedHsmIdentity + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject instance to deserialize from. + internal DedicatedHsmIdentity(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_name = If( json?.PropertyT("name"), out var __jsonName) ? (string)__jsonName : (string)Name;} + {_id = If( json?.PropertyT("id"), out var __jsonId) ? (string)__jsonId : (string)Id;} + {_resourceGroupName = If( json?.PropertyT("resourceGroupName"), out var __jsonResourceGroupName) ? (string)__jsonResourceGroupName : (string)ResourceGroupName;} + {_subscriptionId = If( json?.PropertyT("subscriptionId"), out var __jsonSubscriptionId) ? (string)__jsonSubscriptionId : (string)SubscriptionId;} + AfterFromJson(json); + } + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.IDedicatedHsmIdentity. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.IDedicatedHsmIdentity. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.IDedicatedHsmIdentity FromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json ? new DedicatedHsmIdentity(json) : null; + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + AddIf( null != (((object)this._name)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonString(this._name.ToString()) : null, "name" ,container.Add ); + AddIf( null != (((object)this._id)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonString(this._id.ToString()) : null, "id" ,container.Add ); + AddIf( null != (((object)this._resourceGroupName)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonString(this._resourceGroupName.ToString()) : null, "resourceGroupName" ,container.Add ); + AddIf( null != (((object)this._subscriptionId)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonString(this._subscriptionId.ToString()) : null, "subscriptionId" ,container.Add ); + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Support/JsonWebKeyType.Completer.cs b/src/DedicatedHsm/generated/api/Support/JsonWebKeyType.Completer.cs new file mode 100644 index 000000000000..2cfee37fcb30 --- /dev/null +++ b/src/DedicatedHsm/generated/api/Support/JsonWebKeyType.Completer.cs @@ -0,0 +1,59 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Support +{ + + /// Argument completer implementation for JsonWebKeyType. + [System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Support.JsonWebKeyTypeTypeConverter))] + public partial struct JsonWebKeyType : + System.Management.Automation.IArgumentCompleter + { + + /// + /// Implementations of this function are called by PowerShell to complete arguments. + /// + /// The name of the command that needs argument completion. + /// The name of the parameter that needs argument completion. + /// The (possibly empty) word being completed. + /// The command ast in case it is needed for completion. + /// This parameter is similar to $PSBoundParameters, except that sometimes PowerShell cannot + /// or will not attempt to evaluate an argument, in which case you may need to use commandAst. + /// + /// A collection of completion results, most like with ResultType set to ParameterValue. + /// + public global::System.Collections.Generic.IEnumerable CompleteArgument(global::System.String commandName, global::System.String parameterName, global::System.String wordToComplete, global::System.Management.Automation.Language.CommandAst commandAst, global::System.Collections.IDictionary fakeBoundParameters) + { + if (global::System.String.IsNullOrEmpty(wordToComplete) || "Succeeded".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("Succeeded", "Succeeded", global::System.Management.Automation.CompletionResultType.ParameterValue, "Succeeded"); + } + if (global::System.String.IsNullOrEmpty(wordToComplete) || "Provisioning".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("Provisioning", "Provisioning", global::System.Management.Automation.CompletionResultType.ParameterValue, "Provisioning"); + } + if (global::System.String.IsNullOrEmpty(wordToComplete) || "Allocating".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("Allocating", "Allocating", global::System.Management.Automation.CompletionResultType.ParameterValue, "Allocating"); + } + if (global::System.String.IsNullOrEmpty(wordToComplete) || "Connecting".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("Connecting", "Connecting", global::System.Management.Automation.CompletionResultType.ParameterValue, "Connecting"); + } + if (global::System.String.IsNullOrEmpty(wordToComplete) || "Failed".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("Failed", "Failed", global::System.Management.Automation.CompletionResultType.ParameterValue, "Failed"); + } + if (global::System.String.IsNullOrEmpty(wordToComplete) || "CheckingQuota".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("CheckingQuota", "CheckingQuota", global::System.Management.Automation.CompletionResultType.ParameterValue, "CheckingQuota"); + } + if (global::System.String.IsNullOrEmpty(wordToComplete) || "Deleting".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("Deleting", "Deleting", global::System.Management.Automation.CompletionResultType.ParameterValue, "Deleting"); + } + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Support/JsonWebKeyType.TypeConverter.cs b/src/DedicatedHsm/generated/api/Support/JsonWebKeyType.TypeConverter.cs new file mode 100644 index 000000000000..3f82de28cf9a --- /dev/null +++ b/src/DedicatedHsm/generated/api/Support/JsonWebKeyType.TypeConverter.cs @@ -0,0 +1,59 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Support +{ + + /// TypeConverter implementation for JsonWebKeyType. + public partial class JsonWebKeyTypeTypeConverter : + global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => true; + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => JsonWebKeyType.CreateFrom(sourceValue); + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/api/Support/JsonWebKeyType.cs b/src/DedicatedHsm/generated/api/Support/JsonWebKeyType.cs new file mode 100644 index 000000000000..64a029bc54c8 --- /dev/null +++ b/src/DedicatedHsm/generated/api/Support/JsonWebKeyType.cs @@ -0,0 +1,116 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Support +{ + + public partial struct JsonWebKeyType : + System.IEquatable + { + /// A device is currently being allocated for the dedicated HSM resource. + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Support.JsonWebKeyType Allocating = @"Allocating"; + + /// + /// Validating the subscription has sufficient quota to allocate a dedicated HSM device. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Support.JsonWebKeyType CheckingQuota = @"CheckingQuota"; + + /// The dedicated HSM is being connected to the virtual network. + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Support.JsonWebKeyType Connecting = @"Connecting"; + + /// The dedicated HSM is currently being deleted. + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Support.JsonWebKeyType Deleting = @"Deleting"; + + /// Provisioning of the dedicated HSM has failed. + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Support.JsonWebKeyType Failed = @"Failed"; + + /// The dedicated HSM is currently being provisioned. + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Support.JsonWebKeyType Provisioning = @"Provisioning"; + + /// The dedicated HSM has been full provisioned. + public static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Support.JsonWebKeyType Succeeded = @"Succeeded"; + + /// the value for an instance of the Enum. + private string _value { get; set; } + + /// Conversion from arbitrary object to JsonWebKeyType + /// the value to convert to an instance of . + internal static object CreateFrom(object value) + { + return new JsonWebKeyType(System.Convert.ToString(value)); + } + + /// Compares values of enum type JsonWebKeyType + /// the value to compare against this instance. + /// true if the two instances are equal to the same value + public bool Equals(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Support.JsonWebKeyType e) + { + return _value.Equals(e._value); + } + + /// Compares values of enum type JsonWebKeyType (override for Object) + /// the value to compare against this instance. + /// true if the two instances are equal to the same value + public override bool Equals(object obj) + { + return obj is JsonWebKeyType && Equals((JsonWebKeyType)obj); + } + + /// Returns hashCode for enum JsonWebKeyType + /// The hashCode of the value + public override int GetHashCode() + { + return this._value.GetHashCode(); + } + + /// Creates an instance of the + /// the value to create an instance for. + private JsonWebKeyType(string underlyingValue) + { + this._value = underlyingValue; + } + + /// Returns string representation for JsonWebKeyType + /// A string for this value. + public override string ToString() + { + return this._value; + } + + /// Implicit operator to convert string to JsonWebKeyType + /// the value to convert to an instance of . + + public static implicit operator JsonWebKeyType(string value) + { + return new JsonWebKeyType(value); + } + + /// Implicit operator to convert JsonWebKeyType to string + /// the value to convert to an instance of . + + public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Support.JsonWebKeyType e) + { + return e._value; + } + + /// Overriding != operator for enum JsonWebKeyType + /// the value to compare against + /// the value to compare against + /// true if the two instances are not equal to the same value + public static bool operator !=(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Support.JsonWebKeyType e1, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Support.JsonWebKeyType e2) + { + return !e2.Equals(e1); + } + + /// Overriding == operator for enum JsonWebKeyType + /// the value to compare against + /// the value to compare against + /// true if the two instances are equal to the same value + public static bool operator ==(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Support.JsonWebKeyType e1, Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Support.JsonWebKeyType e2) + { + return e2.Equals(e1); + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/cmdlets/GetAzDedicatedHsmOperation_List.cs b/src/DedicatedHsm/generated/cmdlets/GetAzDedicatedHsmOperation_List.cs new file mode 100644 index 000000000000..0c220d840c18 --- /dev/null +++ b/src/DedicatedHsm/generated/cmdlets/GetAzDedicatedHsmOperation_List.cs @@ -0,0 +1,339 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Extensions; + + /// Get a list of Dedicated HSM operations. + /// + /// [OpenAPI] Operations_List=>GET:"/providers/Microsoft.HardwareSecurityModules/operations" + /// + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.InternalExport] + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzDedicatedHsmOperation_List")] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperation))] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Description(@"Get a list of Dedicated HSM operations.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Generated] + public partial class GetAzDedicatedHsmOperation_List : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.DedicatedHsm Client => Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Module.Instance.ClientAPI; + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletEndProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public GetAzDedicatedHsmOperation_List() + { + + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Information: + { + var data = messageData(); + WriteInformation(data, new[] { data.Message }); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token); + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletProcessRecordAsyncStart); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.OperationsList(onOk, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // response should be returning an array of some kind. +Pageable + // pageable / value / + WriteObject((await response).Value, true); + } + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/cmdlets/GetAzDedicatedHsm_Get.cs b/src/DedicatedHsm/generated/cmdlets/GetAzDedicatedHsm_Get.cs new file mode 100644 index 000000000000..ca7c322fabd6 --- /dev/null +++ b/src/DedicatedHsm/generated/cmdlets/GetAzDedicatedHsm_Get.cs @@ -0,0 +1,389 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Extensions; + + /// Gets the specified Azure dedicated HSM. + /// + /// [OpenAPI] DedicatedHsm_Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/{name}" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzDedicatedHsm_Get")] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsm))] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Description(@"Gets the specified Azure dedicated HSM.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Generated] + public partial class GetAzDedicatedHsm_Get : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.DedicatedHsm Client => Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Module.Instance.ClientAPI; + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// Backing field for property. + private string _name; + + /// The name of the dedicated HSM. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of the dedicated HSM.")] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The name of the dedicated HSM.", + SerializedName = @"name", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Path)] + public string Name { get => this._name; set => this._name = value; } + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Backing field for property. + private string _resourceGroupName; + + /// The name of the Resource Group to which the dedicated hsm belongs. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of the Resource Group to which the dedicated hsm belongs.")] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The name of the Resource Group to which the dedicated hsm belongs.", + SerializedName = @"resourceGroupName", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Path)] + public string ResourceGroupName { get => this._resourceGroupName; set => this._resourceGroupName = value; } + + /// Backing field for property. + private string[] _subscriptionId; + + /// + /// Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI + /// for every service call. + /// + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.")] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.", + SerializedName = @"subscriptionId", + PossibleTypes = new [] { typeof(string) })] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.DefaultInfo( + Name = @"", + Description =@"", + Script = @"(Get-AzContext).Subscription.Id")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Path)] + public string[] SubscriptionId { get => this._subscriptionId; set => this._subscriptionId = value; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletEndProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public GetAzDedicatedHsm_Get() + { + + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Information: + { + var data = messageData(); + WriteInformation(data, new[] { data.Message }); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token); + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletProcessRecordAsyncStart); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + foreach( var SubscriptionId in this.SubscriptionId ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.DedicatedHsmGet(ResourceGroupName, Name, SubscriptionId, onOk, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName,Name=Name,SubscriptionId=SubscriptionId}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName, Name=Name, SubscriptionId=SubscriptionId }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsm + WriteObject((await response)); + } + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/cmdlets/GetAzDedicatedHsm_GetViaIdentity.cs b/src/DedicatedHsm/generated/cmdlets/GetAzDedicatedHsm_GetViaIdentity.cs new file mode 100644 index 000000000000..5cb4e5628f6a --- /dev/null +++ b/src/DedicatedHsm/generated/cmdlets/GetAzDedicatedHsm_GetViaIdentity.cs @@ -0,0 +1,365 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Extensions; + + /// Gets the specified Azure dedicated HSM. + /// + /// [OpenAPI] DedicatedHsm_Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/{name}" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzDedicatedHsm_GetViaIdentity")] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsm))] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Description(@"Gets the specified Azure dedicated HSM.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Generated] + public partial class GetAzDedicatedHsm_GetViaIdentity : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.DedicatedHsm Client => Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Module.Instance.ClientAPI; + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.IDedicatedHsmIdentity _inputObject; + + /// Identity Parameter + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Identity Parameter", ValueFromPipeline = true)] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Path)] + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.IDedicatedHsmIdentity InputObject { get => this._inputObject; set => this._inputObject = value; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletEndProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public GetAzDedicatedHsm_GetViaIdentity() + { + + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Information: + { + var data = messageData(); + WriteInformation(data, new[] { data.Message }); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token); + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletProcessRecordAsyncStart); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + if (InputObject?.Id != null) + { + await this.Client.DedicatedHsmGetViaIdentity(InputObject.Id, onOk, onDefault, this, Pipeline); + } + else + { + // try to call with PATH parameters from Input Object + if (null == InputObject.ResourceGroupName) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.ResourceGroupName"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + if (null == InputObject.Name) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.Name"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + if (null == InputObject.SubscriptionId) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.SubscriptionId"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + await this.Client.DedicatedHsmGet(InputObject.ResourceGroupName ?? null, InputObject.Name ?? null, InputObject.SubscriptionId ?? null, onOk, onDefault, this, Pipeline); + } + await ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsm + WriteObject((await response)); + } + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/cmdlets/GetAzDedicatedHsm_List.cs b/src/DedicatedHsm/generated/cmdlets/GetAzDedicatedHsm_List.cs new file mode 100644 index 000000000000..1d98ec1499b2 --- /dev/null +++ b/src/DedicatedHsm/generated/cmdlets/GetAzDedicatedHsm_List.cs @@ -0,0 +1,403 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Extensions; + + /// + /// The List operation gets information about the dedicated hsms associated with the subscription and within the specified + /// resource group. + /// + /// + /// [OpenAPI] DedicatedHsm_ListByResourceGroup=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzDedicatedHsm_List")] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsm))] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Description(@"The List operation gets information about the dedicated hsms associated with the subscription and within the specified resource group.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Generated] + public partial class GetAzDedicatedHsm_List : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.DedicatedHsm Client => Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Module.Instance.ClientAPI; + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Backing field for property. + private string _resourceGroupName; + + /// The name of the Resource Group to which the dedicated HSM belongs. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of the Resource Group to which the dedicated HSM belongs.")] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The name of the Resource Group to which the dedicated HSM belongs.", + SerializedName = @"resourceGroupName", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Path)] + public string ResourceGroupName { get => this._resourceGroupName; set => this._resourceGroupName = value; } + + /// Backing field for property. + private string[] _subscriptionId; + + /// + /// Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI + /// for every service call. + /// + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.")] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.", + SerializedName = @"subscriptionId", + PossibleTypes = new [] { typeof(string) })] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.DefaultInfo( + Name = @"", + Description =@"", + Script = @"(Get-AzContext).Subscription.Id")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Path)] + public string[] SubscriptionId { get => this._subscriptionId; set => this._subscriptionId = value; } + + /// Backing field for property. + private int _top; + + /// Maximum number of results to return. + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Maximum number of results to return.")] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Maximum number of results to return.", + SerializedName = @"$top", + PossibleTypes = new [] { typeof(int) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Query)] + public int Top { get => this._top; set => this._top = value; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletEndProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public GetAzDedicatedHsm_List() + { + + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Information: + { + var data = messageData(); + WriteInformation(data, new[] { data.Message }); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token); + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletProcessRecordAsyncStart); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + foreach( var SubscriptionId in this.SubscriptionId ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.DedicatedHsmListByResourceGroup(ResourceGroupName, this.InvocationInformation.BoundParameters.ContainsKey("Top") ? Top : default(int?), SubscriptionId, onOk, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName,Top=this.InvocationInformation.BoundParameters.ContainsKey("Top") ? Top : default(int?),SubscriptionId=SubscriptionId}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName, Top=this.InvocationInformation.BoundParameters.ContainsKey("Top") ? Top : default(int?), SubscriptionId=SubscriptionId }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // response should be returning an array of some kind. +Pageable + // pageable / value / nextLink + var result = await response; + WriteObject(result.Value,true); + if (result.NextLink != null) + { + if (responseMessage.RequestMessage is System.Net.Http.HttpRequestMessage requestMessage ) + { + requestMessage = requestMessage.Clone(new global::System.Uri( result.NextLink ),Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Method.Get ); + await ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.FollowingNextLink); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.DedicatedHsmListByResourceGroup_Call(requestMessage, onOk, onDefault, this, Pipeline); + } + } + } + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/cmdlets/GetAzDedicatedHsm_List1.cs b/src/DedicatedHsm/generated/cmdlets/GetAzDedicatedHsm_List1.cs new file mode 100644 index 000000000000..0d0642e8fe8e --- /dev/null +++ b/src/DedicatedHsm/generated/cmdlets/GetAzDedicatedHsm_List1.cs @@ -0,0 +1,388 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Extensions; + + /// + /// The List operation gets information about the dedicated HSMs associated with the subscription. + /// + /// + /// [OpenAPI] DedicatedHsm_ListBySubscription=>GET:"/subscriptions/{subscriptionId}/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzDedicatedHsm_List1")] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsm))] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Description(@"The List operation gets information about the dedicated HSMs associated with the subscription.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Generated] + public partial class GetAzDedicatedHsm_List1 : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.DedicatedHsm Client => Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Module.Instance.ClientAPI; + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Backing field for property. + private string[] _subscriptionId; + + /// + /// Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI + /// for every service call. + /// + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.")] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.", + SerializedName = @"subscriptionId", + PossibleTypes = new [] { typeof(string) })] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.DefaultInfo( + Name = @"", + Description =@"", + Script = @"(Get-AzContext).Subscription.Id")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Path)] + public string[] SubscriptionId { get => this._subscriptionId; set => this._subscriptionId = value; } + + /// Backing field for property. + private int _top; + + /// Maximum number of results to return. + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Maximum number of results to return.")] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Maximum number of results to return.", + SerializedName = @"$top", + PossibleTypes = new [] { typeof(int) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Query)] + public int Top { get => this._top; set => this._top = value; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletEndProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public GetAzDedicatedHsm_List1() + { + + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Information: + { + var data = messageData(); + WriteInformation(data, new[] { data.Message }); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token); + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletProcessRecordAsyncStart); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + foreach( var SubscriptionId in this.SubscriptionId ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.DedicatedHsmListBySubscription(this.InvocationInformation.BoundParameters.ContainsKey("Top") ? Top : default(int?), SubscriptionId, onOk, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Top=this.InvocationInformation.BoundParameters.ContainsKey("Top") ? Top : default(int?),SubscriptionId=SubscriptionId}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Top=this.InvocationInformation.BoundParameters.ContainsKey("Top") ? Top : default(int?), SubscriptionId=SubscriptionId }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // response should be returning an array of some kind. +Pageable + // pageable / value / nextLink + var result = await response; + WriteObject(result.Value,true); + if (result.NextLink != null) + { + if (responseMessage.RequestMessage is System.Net.Http.HttpRequestMessage requestMessage ) + { + requestMessage = requestMessage.Clone(new global::System.Uri( result.NextLink ),Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Method.Get ); + await ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.FollowingNextLink); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.DedicatedHsmListBySubscription_Call(requestMessage, onOk, onDefault, this, Pipeline); + } + } + } + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/cmdlets/NewAzDedicatedHsm_CreateExpanded.cs b/src/DedicatedHsm/generated/cmdlets/NewAzDedicatedHsm_CreateExpanded.cs new file mode 100644 index 000000000000..6656e1544826 --- /dev/null +++ b/src/DedicatedHsm/generated/cmdlets/NewAzDedicatedHsm_CreateExpanded.cs @@ -0,0 +1,546 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Extensions; + + /// Create or Update a dedicated HSM in the specified subscription. + /// + /// [OpenAPI] DedicatedHsm_CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/{name}" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzDedicatedHsm_CreateExpanded", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsm))] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Description(@"Create or Update a dedicated HSM in the specified subscription.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Generated] + public partial class NewAzDedicatedHsm_CreateExpanded : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// when specified, runs this cmdlet as a PowerShell job + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command as a job")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter AsJob { get; set; } + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.DedicatedHsm Client => Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Module.Instance.ClientAPI; + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// The supported Azure location where the dedicated HSM should be created. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The supported Azure location where the dedicated HSM should be created.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The supported Azure location where the dedicated HSM should be created.", + SerializedName = @"location", + PossibleTypes = new [] { typeof(string) })] + public string Location { get => ParametersBody.Location ?? null; set => ParametersBody.Location = value; } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// Backing field for property. + private string _name; + + /// Name of the dedicated Hsm + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Name of the dedicated Hsm")] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Name of the dedicated Hsm", + SerializedName = @"name", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Path)] + public string Name { get => this._name; set => this._name = value; } + + /// + /// Specifies the list of resource Ids for the network interfaces associated with the dedicated HSM. + /// + [global::System.Management.Automation.AllowEmptyCollection] + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Specifies the list of resource Ids for the network interfaces associated with the dedicated HSM.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Specifies the list of resource Ids for the network interfaces associated with the dedicated HSM.", + SerializedName = @"networkInterfaces", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkInterface) })] + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkInterface[] NetworkInterface { get => ParametersBody.NetworkProfileNetworkInterface ?? null /* arrayOf */; set => ParametersBody.NetworkProfileNetworkInterface = value; } + + /// + /// when specified, will make the remote call, and return an AsyncOperationResponse, letting the remote operation continue + /// asynchronously. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command asynchronously")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter NoWait { get; set; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsm _parametersBody= new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.DedicatedHsm(); + + /// Resource information with extended details. + private Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsm ParametersBody { get => this._parametersBody; set => this._parametersBody = value; } + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Backing field for property. + private string _resourceGroupName; + + /// The name of the Resource Group to which the resource belongs. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of the Resource Group to which the resource belongs.")] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The name of the Resource Group to which the resource belongs.", + SerializedName = @"resourceGroupName", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Path)] + public string ResourceGroupName { get => this._resourceGroupName; set => this._resourceGroupName = value; } + + /// SKU of the dedicated HSM + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "SKU of the dedicated HSM")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"SKU of the dedicated HSM", + SerializedName = @"name", + PossibleTypes = new [] { typeof(string) })] + public string Sku { get => ParametersBody.SkuName ?? null; set => ParametersBody.SkuName = value; } + + /// This field will be used when RP does not support Availability zones. + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "This field will be used when RP does not support Availability zones.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"This field will be used when RP does not support Availability zones.", + SerializedName = @"stampId", + PossibleTypes = new [] { typeof(string) })] + public string StampId { get => ParametersBody.StampId ?? null; set => ParametersBody.StampId = value; } + + /// + /// The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/... + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...", + SerializedName = @"id", + PossibleTypes = new [] { typeof(string) })] + public string SubnetId { get => ParametersBody.SubnetId ?? null; set => ParametersBody.SubnetId = value; } + + /// Backing field for property. + private string _subscriptionId; + + /// + /// Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI + /// for every service call. + /// + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.")] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.", + SerializedName = @"subscriptionId", + PossibleTypes = new [] { typeof(string) })] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.DefaultInfo( + Name = @"", + Description =@"", + Script = @"(Get-AzContext).Subscription.Id")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Path)] + public string SubscriptionId { get => this._subscriptionId; set => this._subscriptionId = value; } + + /// Resource tags + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ExportAs(typeof(global::System.Collections.Hashtable))] + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Resource tags")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Resource tags", + SerializedName = @"tags", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceTags) })] + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IResourceTags Tag { get => ParametersBody.Tag ?? null /* object */; set => ParametersBody.Tag = value; } + + /// The Dedicated Hsm zones. + [global::System.Management.Automation.AllowEmptyCollection] + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The Dedicated Hsm zones.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The Dedicated Hsm zones.", + SerializedName = @"zones", + PossibleTypes = new [] { typeof(string) })] + public string[] Zone { get => ParametersBody.Zone ?? null /* arrayOf */; set => ParametersBody.Zone = value; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Creates a duplicate instance of this cmdlet (via JSON serialization). + /// a duplicate instance of NewAzDedicatedHsm_CreateExpanded + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Cmdlets.NewAzDedicatedHsm_CreateExpanded Clone() + { + var clone = new NewAzDedicatedHsm_CreateExpanded(); + clone.__correlationId = this.__correlationId; + clone.__processRecordId = this.__processRecordId; + clone.DefaultProfile = this.DefaultProfile; + clone.InvocationInformation = this.InvocationInformation; + clone.Proxy = this.Proxy; + clone.Pipeline = this.Pipeline; + clone.AsJob = this.AsJob; + clone.Break = this.Break; + clone.ProxyCredential = this.ProxyCredential; + clone.ProxyUseDefaultCredentials = this.ProxyUseDefaultCredentials; + clone.HttpPipelinePrepend = this.HttpPipelinePrepend; + clone.HttpPipelineAppend = this.HttpPipelineAppend; + clone.ParametersBody = this.ParametersBody; + clone.ResourceGroupName = this.ResourceGroupName; + clone.Name = this.Name; + clone.SubscriptionId = this.SubscriptionId; + return clone; + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletEndProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Information: + { + // When an operation supports asjob, Information messages must go thru verbose. + WriteVerbose($"INFORMATION: {(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.DelayBeforePolling: + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("NoWait")) + { + var data = messageData(); + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + var asyncOperation = response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = response.GetFirstHeader(@"Location"); + var uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? response.RequestMessage.RequestUri.AbsoluteUri : location : asyncOperation; + WriteObject(new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.AsyncOperationResponse { Target = uri }); + // do nothing more. + data.Cancel(); + return; + } + } + break; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public NewAzDedicatedHsm_CreateExpanded() + { + + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'DedicatedHsmCreateOrUpdate' operation")) + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("AsJob")) + { + var instance = this.Clone(); + var job = new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.AsyncJob(instance, this.MyInvocation.Line, this.MyInvocation.MyCommand.Name, this._cancellationTokenSource.Token, this._cancellationTokenSource.Cancel); + JobRepository.Add(job); + var task = instance.ProcessRecordAsync(); + job.Monitor(task); + WriteObject(job); + } + else + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token); + } + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletProcessRecordAsyncStart); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.DedicatedHsmCreateOrUpdate(ResourceGroupName, Name, SubscriptionId, ParametersBody, onOk, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName,Name=Name,SubscriptionId=SubscriptionId,body=ParametersBody}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName, Name=Name, SubscriptionId=SubscriptionId, body=ParametersBody }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsm + WriteObject((await response)); + } + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/cmdlets/RemoveAzDedicatedHsm_Delete.cs b/src/DedicatedHsm/generated/cmdlets/RemoveAzDedicatedHsm_Delete.cs new file mode 100644 index 000000000000..585ded0a3835 --- /dev/null +++ b/src/DedicatedHsm/generated/cmdlets/RemoveAzDedicatedHsm_Delete.cs @@ -0,0 +1,494 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Extensions; + + /// Deletes the specified Azure Dedicated HSM. + /// + /// [OpenAPI] DedicatedHsm_Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/{name}" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzDedicatedHsm_Delete", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(bool))] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Description(@"Deletes the specified Azure Dedicated HSM.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Generated] + public partial class RemoveAzDedicatedHsm_Delete : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// when specified, runs this cmdlet as a PowerShell job + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command as a job")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter AsJob { get; set; } + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.DedicatedHsm Client => Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Module.Instance.ClientAPI; + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// Backing field for property. + private string _name; + + /// The name of the dedicated HSM to delete + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of the dedicated HSM to delete")] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The name of the dedicated HSM to delete", + SerializedName = @"name", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Path)] + public string Name { get => this._name; set => this._name = value; } + + /// + /// when specified, will make the remote call, and return an AsyncOperationResponse, letting the remote operation continue + /// asynchronously. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command asynchronously")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter NoWait { get; set; } + + /// + /// When specified, forces the cmdlet return a 'bool' given that there isn't a return type by default. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Returns true when the command succeeds")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter PassThru { get; set; } + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Backing field for property. + private string _resourceGroupName; + + /// The name of the Resource Group to which the dedicated HSM belongs. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of the Resource Group to which the dedicated HSM belongs.")] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The name of the Resource Group to which the dedicated HSM belongs.", + SerializedName = @"resourceGroupName", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Path)] + public string ResourceGroupName { get => this._resourceGroupName; set => this._resourceGroupName = value; } + + /// Backing field for property. + private string _subscriptionId; + + /// + /// Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI + /// for every service call. + /// + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.")] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.", + SerializedName = @"subscriptionId", + PossibleTypes = new [] { typeof(string) })] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.DefaultInfo( + Name = @"", + Description =@"", + Script = @"(Get-AzContext).Subscription.Id")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Path)] + public string SubscriptionId { get => this._subscriptionId; set => this._subscriptionId = value; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnNoContent will be called before the regular onNoContent has been processed, allowing customization of + /// what happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// /// Determines if the rest of the onNoContent method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnNoContent(global::System.Net.Http.HttpResponseMessage responseMessage, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Creates a duplicate instance of this cmdlet (via JSON serialization). + /// a duplicate instance of RemoveAzDedicatedHsm_Delete + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Cmdlets.RemoveAzDedicatedHsm_Delete Clone() + { + var clone = new RemoveAzDedicatedHsm_Delete(); + clone.__correlationId = this.__correlationId; + clone.__processRecordId = this.__processRecordId; + clone.DefaultProfile = this.DefaultProfile; + clone.InvocationInformation = this.InvocationInformation; + clone.Proxy = this.Proxy; + clone.Pipeline = this.Pipeline; + clone.AsJob = this.AsJob; + clone.Break = this.Break; + clone.ProxyCredential = this.ProxyCredential; + clone.ProxyUseDefaultCredentials = this.ProxyUseDefaultCredentials; + clone.HttpPipelinePrepend = this.HttpPipelinePrepend; + clone.HttpPipelineAppend = this.HttpPipelineAppend; + clone.ResourceGroupName = this.ResourceGroupName; + clone.Name = this.Name; + clone.SubscriptionId = this.SubscriptionId; + return clone; + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletEndProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Information: + { + // When an operation supports asjob, Information messages must go thru verbose. + WriteVerbose($"INFORMATION: {(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.DelayBeforePolling: + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("NoWait")) + { + var data = messageData(); + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + var asyncOperation = response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = response.GetFirstHeader(@"Location"); + var uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? response.RequestMessage.RequestUri.AbsoluteUri : location : asyncOperation; + WriteObject(new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.AsyncOperationResponse { Target = uri }); + // do nothing more. + data.Cancel(); + return; + } + } + break; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'DedicatedHsmDelete' operation")) + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("AsJob")) + { + var instance = this.Clone(); + var job = new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.AsyncJob(instance, this.MyInvocation.Line, this.MyInvocation.MyCommand.Name, this._cancellationTokenSource.Token, this._cancellationTokenSource.Cancel); + JobRepository.Add(job); + var task = instance.ProcessRecordAsync(); + job.Monitor(task); + WriteObject(job); + } + else + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token); + } + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletProcessRecordAsyncStart); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.DedicatedHsmDelete(ResourceGroupName, Name, SubscriptionId, onOk, onNoContent, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName,Name=Name,SubscriptionId=SubscriptionId}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public RemoveAzDedicatedHsm_Delete() + { + + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName, Name=Name, SubscriptionId=SubscriptionId }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + } + + /// a delegate that is called when the remote service returns 204 (NoContent). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onNoContent(global::System.Net.Http.HttpResponseMessage responseMessage) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnNoContent(responseMessage, ref _returnNow); + // if overrideOnNoContent has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onNoContent - response for 204 / + if (true == MyInvocation?.BoundParameters?.ContainsKey("PassThru")) + { + WriteObject(true); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / + if (true == MyInvocation?.BoundParameters?.ContainsKey("PassThru")) + { + WriteObject(true); + } + } + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/cmdlets/RemoveAzDedicatedHsm_DeleteViaIdentity.cs b/src/DedicatedHsm/generated/cmdlets/RemoveAzDedicatedHsm_DeleteViaIdentity.cs new file mode 100644 index 000000000000..40ef84a6db74 --- /dev/null +++ b/src/DedicatedHsm/generated/cmdlets/RemoveAzDedicatedHsm_DeleteViaIdentity.cs @@ -0,0 +1,470 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Extensions; + + /// Deletes the specified Azure Dedicated HSM. + /// + /// [OpenAPI] DedicatedHsm_Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/{name}" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzDedicatedHsm_DeleteViaIdentity", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(bool))] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Description(@"Deletes the specified Azure Dedicated HSM.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Generated] + public partial class RemoveAzDedicatedHsm_DeleteViaIdentity : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// when specified, runs this cmdlet as a PowerShell job + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command as a job")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter AsJob { get; set; } + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.DedicatedHsm Client => Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Module.Instance.ClientAPI; + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.IDedicatedHsmIdentity _inputObject; + + /// Identity Parameter + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Identity Parameter", ValueFromPipeline = true)] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Path)] + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.IDedicatedHsmIdentity InputObject { get => this._inputObject; set => this._inputObject = value; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// when specified, will make the remote call, and return an AsyncOperationResponse, letting the remote operation continue + /// asynchronously. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command asynchronously")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter NoWait { get; set; } + + /// + /// When specified, forces the cmdlet return a 'bool' given that there isn't a return type by default. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Returns true when the command succeeds")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter PassThru { get; set; } + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnNoContent will be called before the regular onNoContent has been processed, allowing customization of + /// what happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// /// Determines if the rest of the onNoContent method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnNoContent(global::System.Net.Http.HttpResponseMessage responseMessage, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Creates a duplicate instance of this cmdlet (via JSON serialization). + /// a duplicate instance of RemoveAzDedicatedHsm_DeleteViaIdentity + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Cmdlets.RemoveAzDedicatedHsm_DeleteViaIdentity Clone() + { + var clone = new RemoveAzDedicatedHsm_DeleteViaIdentity(); + clone.__correlationId = this.__correlationId; + clone.__processRecordId = this.__processRecordId; + clone.DefaultProfile = this.DefaultProfile; + clone.InvocationInformation = this.InvocationInformation; + clone.Proxy = this.Proxy; + clone.Pipeline = this.Pipeline; + clone.AsJob = this.AsJob; + clone.Break = this.Break; + clone.ProxyCredential = this.ProxyCredential; + clone.ProxyUseDefaultCredentials = this.ProxyUseDefaultCredentials; + clone.HttpPipelinePrepend = this.HttpPipelinePrepend; + clone.HttpPipelineAppend = this.HttpPipelineAppend; + return clone; + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletEndProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Information: + { + // When an operation supports asjob, Information messages must go thru verbose. + WriteVerbose($"INFORMATION: {(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.DelayBeforePolling: + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("NoWait")) + { + var data = messageData(); + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + var asyncOperation = response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = response.GetFirstHeader(@"Location"); + var uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? response.RequestMessage.RequestUri.AbsoluteUri : location : asyncOperation; + WriteObject(new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.AsyncOperationResponse { Target = uri }); + // do nothing more. + data.Cancel(); + return; + } + } + break; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'DedicatedHsmDelete' operation")) + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("AsJob")) + { + var instance = this.Clone(); + var job = new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.AsyncJob(instance, this.MyInvocation.Line, this.MyInvocation.MyCommand.Name, this._cancellationTokenSource.Token, this._cancellationTokenSource.Cancel); + JobRepository.Add(job); + var task = instance.ProcessRecordAsync(); + job.Monitor(task); + WriteObject(job); + } + else + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token); + } + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletProcessRecordAsyncStart); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + if (InputObject?.Id != null) + { + await this.Client.DedicatedHsmDeleteViaIdentity(InputObject.Id, onOk, onNoContent, onDefault, this, Pipeline); + } + else + { + // try to call with PATH parameters from Input Object + if (null == InputObject.ResourceGroupName) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.ResourceGroupName"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + if (null == InputObject.Name) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.Name"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + if (null == InputObject.SubscriptionId) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.SubscriptionId"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + await this.Client.DedicatedHsmDelete(InputObject.ResourceGroupName ?? null, InputObject.Name ?? null, InputObject.SubscriptionId ?? null, onOk, onNoContent, onDefault, this, Pipeline); + } + await ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public RemoveAzDedicatedHsm_DeleteViaIdentity() + { + + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + } + + /// a delegate that is called when the remote service returns 204 (NoContent). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onNoContent(global::System.Net.Http.HttpResponseMessage responseMessage) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnNoContent(responseMessage, ref _returnNow); + // if overrideOnNoContent has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onNoContent - response for 204 / + if (true == MyInvocation?.BoundParameters?.ContainsKey("PassThru")) + { + WriteObject(true); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / + if (true == MyInvocation?.BoundParameters?.ContainsKey("PassThru")) + { + WriteObject(true); + } + } + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/cmdlets/UpdateAzDedicatedHsm_UpdateExpanded.cs b/src/DedicatedHsm/generated/cmdlets/UpdateAzDedicatedHsm_UpdateExpanded.cs new file mode 100644 index 000000000000..d88a98733368 --- /dev/null +++ b/src/DedicatedHsm/generated/cmdlets/UpdateAzDedicatedHsm_UpdateExpanded.cs @@ -0,0 +1,474 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Extensions; + + /// Update a dedicated HSM in the specified subscription. + /// + /// [OpenAPI] DedicatedHsm_Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/{name}" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzDedicatedHsm_UpdateExpanded", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsm))] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Description(@"Update a dedicated HSM in the specified subscription.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Generated] + public partial class UpdateAzDedicatedHsm_UpdateExpanded : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// when specified, runs this cmdlet as a PowerShell job + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command as a job")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter AsJob { get; set; } + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.DedicatedHsm Client => Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Module.Instance.ClientAPI; + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// Backing field for property. + private string _name; + + /// Name of the dedicated HSM + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Name of the dedicated HSM")] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Name of the dedicated HSM", + SerializedName = @"name", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Path)] + public string Name { get => this._name; set => this._name = value; } + + /// + /// when specified, will make the remote call, and return an AsyncOperationResponse, letting the remote operation continue + /// asynchronously. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command asynchronously")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter NoWait { get; set; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPatchParameters _parametersBody= new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.DedicatedHsmPatchParameters(); + + /// Patchable properties of the dedicated HSM + private Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPatchParameters ParametersBody { get => this._parametersBody; set => this._parametersBody = value; } + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Backing field for property. + private string _resourceGroupName; + + /// The name of the Resource Group to which the server belongs. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of the Resource Group to which the server belongs.")] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The name of the Resource Group to which the server belongs.", + SerializedName = @"resourceGroupName", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Path)] + public string ResourceGroupName { get => this._resourceGroupName; set => this._resourceGroupName = value; } + + /// Backing field for property. + private string _subscriptionId; + + /// + /// Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI + /// for every service call. + /// + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.")] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.", + SerializedName = @"subscriptionId", + PossibleTypes = new [] { typeof(string) })] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.DefaultInfo( + Name = @"", + Description =@"", + Script = @"(Get-AzContext).Subscription.Id")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Path)] + public string SubscriptionId { get => this._subscriptionId; set => this._subscriptionId = value; } + + /// Resource tags + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ExportAs(typeof(global::System.Collections.Hashtable))] + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Resource tags")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Resource tags", + SerializedName = @"tags", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPatchParametersTags) })] + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPatchParametersTags Tag { get => ParametersBody.Tag ?? null /* object */; set => ParametersBody.Tag = value; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Creates a duplicate instance of this cmdlet (via JSON serialization). + /// a duplicate instance of UpdateAzDedicatedHsm_UpdateExpanded + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Cmdlets.UpdateAzDedicatedHsm_UpdateExpanded Clone() + { + var clone = new UpdateAzDedicatedHsm_UpdateExpanded(); + clone.__correlationId = this.__correlationId; + clone.__processRecordId = this.__processRecordId; + clone.DefaultProfile = this.DefaultProfile; + clone.InvocationInformation = this.InvocationInformation; + clone.Proxy = this.Proxy; + clone.Pipeline = this.Pipeline; + clone.AsJob = this.AsJob; + clone.Break = this.Break; + clone.ProxyCredential = this.ProxyCredential; + clone.ProxyUseDefaultCredentials = this.ProxyUseDefaultCredentials; + clone.HttpPipelinePrepend = this.HttpPipelinePrepend; + clone.HttpPipelineAppend = this.HttpPipelineAppend; + clone.ParametersBody = this.ParametersBody; + clone.ResourceGroupName = this.ResourceGroupName; + clone.Name = this.Name; + clone.SubscriptionId = this.SubscriptionId; + return clone; + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletEndProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Information: + { + // When an operation supports asjob, Information messages must go thru verbose. + WriteVerbose($"INFORMATION: {(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.DelayBeforePolling: + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("NoWait")) + { + var data = messageData(); + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + var asyncOperation = response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = response.GetFirstHeader(@"Location"); + var uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? response.RequestMessage.RequestUri.AbsoluteUri : location : asyncOperation; + WriteObject(new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.AsyncOperationResponse { Target = uri }); + // do nothing more. + data.Cancel(); + return; + } + } + break; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'DedicatedHsmUpdate' operation")) + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("AsJob")) + { + var instance = this.Clone(); + var job = new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.AsyncJob(instance, this.MyInvocation.Line, this.MyInvocation.MyCommand.Name, this._cancellationTokenSource.Token, this._cancellationTokenSource.Cancel); + JobRepository.Add(job); + var task = instance.ProcessRecordAsync(); + job.Monitor(task); + WriteObject(job); + } + else + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token); + } + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletProcessRecordAsyncStart); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.DedicatedHsmUpdate(ResourceGroupName, Name, SubscriptionId, ParametersBody, onOk, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName,Name=Name,SubscriptionId=SubscriptionId,body=ParametersBody}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public UpdateAzDedicatedHsm_UpdateExpanded() + { + + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName, Name=Name, SubscriptionId=SubscriptionId, body=ParametersBody }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsm + WriteObject((await response)); + } + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/cmdlets/UpdateAzDedicatedHsm_UpdateViaIdentityExpanded.cs b/src/DedicatedHsm/generated/cmdlets/UpdateAzDedicatedHsm_UpdateViaIdentityExpanded.cs new file mode 100644 index 000000000000..5a49d9519344 --- /dev/null +++ b/src/DedicatedHsm/generated/cmdlets/UpdateAzDedicatedHsm_UpdateViaIdentityExpanded.cs @@ -0,0 +1,450 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Extensions; + + /// Update a dedicated HSM in the specified subscription. + /// + /// [OpenAPI] DedicatedHsm_Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/{name}" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzDedicatedHsm_UpdateViaIdentityExpanded", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsm))] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Description(@"Update a dedicated HSM in the specified subscription.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Generated] + public partial class UpdateAzDedicatedHsm_UpdateViaIdentityExpanded : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// when specified, runs this cmdlet as a PowerShell job + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command as a job")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter AsJob { get; set; } + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.DedicatedHsm Client => Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Module.Instance.ClientAPI; + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.IDedicatedHsmIdentity _inputObject; + + /// Identity Parameter + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Identity Parameter", ValueFromPipeline = true)] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Path)] + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.IDedicatedHsmIdentity InputObject { get => this._inputObject; set => this._inputObject = value; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// when specified, will make the remote call, and return an AsyncOperationResponse, letting the remote operation continue + /// asynchronously. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command asynchronously")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter NoWait { get; set; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPatchParameters _parametersBody= new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.DedicatedHsmPatchParameters(); + + /// Patchable properties of the dedicated HSM + private Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPatchParameters ParametersBody { get => this._parametersBody; set => this._parametersBody = value; } + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Resource tags + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ExportAs(typeof(global::System.Collections.Hashtable))] + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Resource tags")] + [global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category(global::Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Resource tags", + SerializedName = @"tags", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPatchParametersTags) })] + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmPatchParametersTags Tag { get => ParametersBody.Tag ?? null /* object */; set => ParametersBody.Tag = value; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Creates a duplicate instance of this cmdlet (via JSON serialization). + /// a duplicate instance of UpdateAzDedicatedHsm_UpdateViaIdentityExpanded + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Cmdlets.UpdateAzDedicatedHsm_UpdateViaIdentityExpanded Clone() + { + var clone = new UpdateAzDedicatedHsm_UpdateViaIdentityExpanded(); + clone.__correlationId = this.__correlationId; + clone.__processRecordId = this.__processRecordId; + clone.DefaultProfile = this.DefaultProfile; + clone.InvocationInformation = this.InvocationInformation; + clone.Proxy = this.Proxy; + clone.Pipeline = this.Pipeline; + clone.AsJob = this.AsJob; + clone.Break = this.Break; + clone.ProxyCredential = this.ProxyCredential; + clone.ProxyUseDefaultCredentials = this.ProxyUseDefaultCredentials; + clone.HttpPipelinePrepend = this.HttpPipelinePrepend; + clone.HttpPipelineAppend = this.HttpPipelineAppend; + clone.ParametersBody = this.ParametersBody; + return clone; + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletEndProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Information: + { + // When an operation supports asjob, Information messages must go thru verbose. + WriteVerbose($"INFORMATION: {(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.DelayBeforePolling: + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("NoWait")) + { + var data = messageData(); + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + var asyncOperation = response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = response.GetFirstHeader(@"Location"); + var uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? response.RequestMessage.RequestUri.AbsoluteUri : location : asyncOperation; + WriteObject(new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.AsyncOperationResponse { Target = uri }); + // do nothing more. + data.Cancel(); + return; + } + } + break; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'DedicatedHsmUpdate' operation")) + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("AsJob")) + { + var instance = this.Clone(); + var job = new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.AsyncJob(instance, this.MyInvocation.Line, this.MyInvocation.MyCommand.Name, this._cancellationTokenSource.Token, this._cancellationTokenSource.Cancel); + JobRepository.Add(job); + var task = instance.ProcessRecordAsync(); + job.Monitor(task); + WriteObject(job); + } + else + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token); + } + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletProcessRecordAsyncStart); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + if (InputObject?.Id != null) + { + await this.Client.DedicatedHsmUpdateViaIdentity(InputObject.Id, ParametersBody, onOk, onDefault, this, Pipeline); + } + else + { + // try to call with PATH parameters from Input Object + if (null == InputObject.ResourceGroupName) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.ResourceGroupName"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + if (null == InputObject.Name) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.Name"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + if (null == InputObject.SubscriptionId) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.SubscriptionId"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + await this.Client.DedicatedHsmUpdate(InputObject.ResourceGroupName ?? null, InputObject.Name ?? null, InputObject.SubscriptionId ?? null, ParametersBody, onOk, onDefault, this, Pipeline); + } + await ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=ParametersBody}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public UpdateAzDedicatedHsm_UpdateViaIdentityExpanded() + { + + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=ParametersBody }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsm + WriteObject((await response)); + } + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/AsyncCommandRuntime.cs b/src/DedicatedHsm/generated/runtime/AsyncCommandRuntime.cs new file mode 100644 index 000000000000..eed297a0b13c --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/AsyncCommandRuntime.cs @@ -0,0 +1,828 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell +{ + using System.Management.Automation; + using System.Management.Automation.Host; + using System.Threading; + using System.Linq; + + internal interface IAsyncCommandRuntimeExtensions + { + Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SendAsyncStep Wrap(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SendAsyncStep func); + System.Collections.Generic.IEnumerable Wrap(System.Collections.Generic.IEnumerable funcs); + + T ExecuteSync(System.Func step); + } + + public class AsyncCommandRuntime : System.Management.Automation.ICommandRuntime2, IAsyncCommandRuntimeExtensions, System.IDisposable + { + private ICommandRuntime2 originalCommandRuntime; + private System.Threading.Thread originalThread; + public bool AllowInteractive { get; set; } = false; + + public CancellationToken cancellationToken; + SemaphoreSlim semaphore = new SemaphoreSlim(1, 1); + ManualResetEventSlim readyToRun = new ManualResetEventSlim(false); + ManualResetEventSlim completed = new ManualResetEventSlim(false); + + System.Action runOnMainThread; + + private System.Management.Automation.PSCmdlet cmdlet; + + internal AsyncCommandRuntime(System.Management.Automation.PSCmdlet cmdlet, CancellationToken cancellationToken) + { + this.originalCommandRuntime = cmdlet.CommandRuntime as ICommandRuntime2; + this.originalThread = System.Threading.Thread.CurrentThread; + this.cancellationToken = cancellationToken; + this.cmdlet = cmdlet; + cmdlet.CommandRuntime = this; + } + + public PSHost Host => this.originalCommandRuntime.Host; + + public PSTransactionContext CurrentPSTransaction => this.originalCommandRuntime.CurrentPSTransaction; + + private void CheckForInteractive() + { + // This is an interactive call -- if we are not on the original thread, this will only work if this was done at ACR creation time; + if (!AllowInteractive) + { + throw new System.Exception("AsyncCommandRuntime is not configured for interactive calls"); + } + } + private void WaitOurTurn() + { + // wait for our turn to play + semaphore?.Wait(cancellationToken); + + // ensure that completed is not set + completed.Reset(); + } + + private void WaitForCompletion() + { + // wait for the result (or cancellation!) + WaitHandle.WaitAny(new[] { cancellationToken.WaitHandle, completed?.WaitHandle }); + + // let go of the semaphore + semaphore?.Release(); + + } + + public bool ShouldContinue(string query, string caption, bool hasSecurityImpact, ref bool yesToAll, ref bool noToAll) + { + // if we are on the original thread, just call straight thru. + if (this.originalThread == System.Threading.Thread.CurrentThread) + { + return originalCommandRuntime.ShouldContinue(query, caption, hasSecurityImpact, ref yesToAll, ref noToAll); + } + + CheckForInteractive(); + + // otherwise, queue up the request and wait for the main thread to do the right thing. + try + { + // wait for our turn to talk to the main thread + WaitOurTurn(); + + bool yta = yesToAll; + bool nta = noToAll; + bool result = false; + + // set the function to run + runOnMainThread = () => result = originalCommandRuntime.ShouldContinue(query, caption, hasSecurityImpact, ref yta, ref nta); + + // tell the main thread to go ahead + readyToRun.Set(); + + // wait for the result (or cancellation!) + WaitForCompletion(); + + // set the output variables + yesToAll = yta; + noToAll = nta; + return result; + } + catch (System.OperationCanceledException exception) + { + // maybe don't even worry? + throw exception; + } + } + + public bool ShouldContinue(string query, string caption) + { + // if we are on the original thread, just call straight thru. + if (this.originalThread == System.Threading.Thread.CurrentThread) + { + return originalCommandRuntime.ShouldContinue(query, caption); + } + + CheckForInteractive(); + + // otherwise, queue up the request and wait for the main thread to do the right thing. + try + { + // wait for our turn to talk to the main thread + WaitOurTurn(); + + bool result = false; + + // set the function to run + runOnMainThread = () => result = originalCommandRuntime.ShouldContinue(query, caption); + + // tell the main thread to go ahead + readyToRun.Set(); + + // wait for the result (or cancellation!) + WaitForCompletion(); + + // set the output variables + return result; + } + catch (System.OperationCanceledException exception) + { + // maybe don't even worry? + throw exception; + } + } + + public bool ShouldContinue(string query, string caption, ref bool yesToAll, ref bool noToAll) + { + // if we are on the original thread, just call straight thru. + if (this.originalThread == System.Threading.Thread.CurrentThread) + { + return originalCommandRuntime.ShouldContinue(query, caption, ref yesToAll, ref noToAll); + } + + CheckForInteractive(); + + // otherwise, queue up the request and wait for the main thread to do the right thing. + try + { + // wait for our turn to talk to the main thread + WaitOurTurn(); + + bool yta = yesToAll; + bool nta = noToAll; + bool result = false; + + // set the function to run + runOnMainThread = () => result = originalCommandRuntime.ShouldContinue(query, caption, ref yta, ref nta); + + // tell the main thread to go ahead + readyToRun.Set(); + + // wait for the result (or cancellation!) + WaitForCompletion(); + + // set the output variables + yesToAll = yta; + noToAll = nta; + return result; + } + catch (System.OperationCanceledException exception) + { + // maybe don't even worry? + throw exception; + } + } + + public bool ShouldProcess(string target) + { + // if we are on the original thread, just call straight thru. + if (this.originalThread == System.Threading.Thread.CurrentThread) + { + return originalCommandRuntime.ShouldProcess(target); + } + + CheckForInteractive(); + + // otherwise, queue up the request and wait for the main thread to do the right thing. + try + { + // wait for our turn to talk to the main thread + WaitOurTurn(); + + bool result = false; + + // set the function to run + runOnMainThread = () => result = originalCommandRuntime.ShouldProcess(target); + + // tell the main thread to go ahead + readyToRun.Set(); + + // wait for the result (or cancellation!) + WaitForCompletion(); + + // set the output variables + return result; + } + catch (System.OperationCanceledException exception) + { + // maybe don't even worry? + throw exception; + } + } + + public bool ShouldProcess(string target, string action) + { + // if we are on the original thread, just call straight thru. + if (this.originalThread == System.Threading.Thread.CurrentThread) + { + return originalCommandRuntime.ShouldProcess(target, action); + } + + CheckForInteractive(); + + // otherwise, queue up the request and wait for the main thread to do the right thing. + try + { + // wait for our turn to talk to the main thread + WaitOurTurn(); + + bool result = false; + + // set the function to run + runOnMainThread = () => result = originalCommandRuntime.ShouldProcess(target, action); + + // tell the main thread to go ahead + readyToRun.Set(); + + // wait for the result (or cancellation!) + WaitForCompletion(); + + // set the output variables + return result; + } + catch (System.OperationCanceledException exception) + { + // maybe don't even worry? + throw exception; + } + } + + public bool ShouldProcess(string verboseDescription, string verboseWarning, string caption) + { + // if we are on the original thread, just call straight thru. + if (this.originalThread == System.Threading.Thread.CurrentThread) + { + return originalCommandRuntime.ShouldProcess(verboseDescription, verboseWarning, caption); + } + + CheckForInteractive(); + + // otherwise, queue up the request and wait for the main thread to do the right thing. + try + { + // wait for our turn to talk to the main thread + WaitOurTurn(); + + bool result = false; + + // set the function to run + runOnMainThread = () => result = originalCommandRuntime.ShouldProcess(verboseDescription, verboseWarning, caption); + + // tell the main thread to go ahead + readyToRun.Set(); + + // wait for the result (or cancellation!) + WaitForCompletion(); + + // set the output variables + return result; + } + catch (System.OperationCanceledException exception) + { + // maybe don't even worry? + throw exception; + } + } + + public bool ShouldProcess(string verboseDescription, string verboseWarning, string caption, out ShouldProcessReason shouldProcessReason) + { + // if we are on the original thread, just call straight thru. + if (this.originalThread == System.Threading.Thread.CurrentThread) + { + return originalCommandRuntime.ShouldProcess(verboseDescription, verboseWarning, caption, out shouldProcessReason); + } + + CheckForInteractive(); + + // otherwise, queue up the request and wait for the main thread to do the right thing. + try + { + // wait for our turn to talk to the main thread + WaitOurTurn(); + + bool result = false; + ShouldProcessReason reason = ShouldProcessReason.None; + + // set the function to run + runOnMainThread = () => result = originalCommandRuntime.ShouldProcess(verboseDescription, verboseWarning, caption, out reason); + + // tell the main thread to go ahead + readyToRun.Set(); + + // wait for the result (or cancellation!) + WaitForCompletion(); + + // set the output variables + shouldProcessReason = reason; + return result; + } + catch (System.OperationCanceledException exception) + { + // maybe don't even worry? + throw exception; + } + } + + public void ThrowTerminatingError(ErrorRecord errorRecord) + { + // if we are on the original thread, just call straight thru. + if (this.originalThread == System.Threading.Thread.CurrentThread) + { + originalCommandRuntime.ThrowTerminatingError(errorRecord); + return; + } + + // otherwise, queue up the request and wait for the main thread to do the right thing. + try + { + // wait for our turn to talk to the main thread + WaitOurTurn(); + + // set the function to run + runOnMainThread = () => originalCommandRuntime.ThrowTerminatingError(errorRecord); + + // tell the main thread to go ahead + readyToRun.Set(); + + // wait for the result (or cancellation!) + WaitForCompletion(); + + // return + return; + } + catch (System.OperationCanceledException exception) + { + // maybe don't even worry? + throw exception; + } + } + + public bool TransactionAvailable() + { + // if we are on the original thread, just call straight thru. + if (this.originalThread == System.Threading.Thread.CurrentThread) + { + return originalCommandRuntime.TransactionAvailable(); + } + + // otherwise, queue up the request and wait for the main thread to do the right thing. + try + { + // wait for our turn to talk to the main thread + WaitOurTurn(); + + bool result = false; + + // set the function to run + runOnMainThread = () => result = originalCommandRuntime.TransactionAvailable(); + + // tell the main thread to go ahead + readyToRun.Set(); + + // wait for the result (or cancellation!) + WaitForCompletion(); + + // set the output variables + return result; + } + catch (System.OperationCanceledException exception) + { + // maybe don't even worry? + throw exception; + } + } + + public void WriteCommandDetail(string text) + { + // if we are on the original thread, just call straight thru. + if (this.originalThread == System.Threading.Thread.CurrentThread) + { + originalCommandRuntime.WriteCommandDetail(text); + return; + } + + // otherwise, queue up the request and wait for the main thread to do the right thing. + try + { + // wait for our turn to talk to the main thread + WaitOurTurn(); + + // set the function to run + runOnMainThread = () => originalCommandRuntime.WriteCommandDetail(text); + + // tell the main thread to go ahead + readyToRun.Set(); + + // wait for the result (or cancellation!) + WaitForCompletion(); + + // return + return; + } + catch (System.OperationCanceledException exception) + { + // maybe don't even worry? + throw exception; + } + } + + public void WriteDebug(string text) + { + // if we are on the original thread, just call straight thru. + if (this.originalThread == System.Threading.Thread.CurrentThread) + { + originalCommandRuntime.WriteDebug(text); + return; + } + + // otherwise, queue up the request and wait for the main thread to do the right thing. + try + { + // wait for our turn to talk to the main thread + WaitOurTurn(); + + // set the function to run + runOnMainThread = () => originalCommandRuntime.WriteDebug(text); + + // tell the main thread to go ahead + readyToRun.Set(); + + // wait for the result (or cancellation!) + WaitForCompletion(); + + // return + return; + } + catch (System.OperationCanceledException exception) + { + // maybe don't even worry? + throw exception; + } + } + + public void WriteError(ErrorRecord errorRecord) + { + // if we are on the original thread, just call straight thru. + if (this.originalThread == System.Threading.Thread.CurrentThread) + { + originalCommandRuntime.WriteError(errorRecord); + return; + } + + // otherwise, queue up the request and wait for the main thread to do the right thing. + try + { + // wait for our turn to talk to the main thread + WaitOurTurn(); + + // set the function to run + runOnMainThread = () => originalCommandRuntime.WriteError(errorRecord); + + // tell the main thread to go ahead + readyToRun.Set(); + + // wait for the result (or cancellation!) + WaitForCompletion(); + + // return + return; + } + catch (System.OperationCanceledException exception) + { + // maybe don't even worry? + throw exception; + } + } + + public void WriteInformation(InformationRecord informationRecord) + { + // if we are on the original thread, just call straight thru. + if (this.originalThread == System.Threading.Thread.CurrentThread) + { + originalCommandRuntime.WriteInformation(informationRecord); + return; + } + + // otherwise, queue up the request and wait for the main thread to do the right thing. + try + { + // wait for our turn to talk to the main thread + WaitOurTurn(); + + // set the function to run + runOnMainThread = () => originalCommandRuntime.WriteInformation(informationRecord); + + // tell the main thread to go ahead + readyToRun.Set(); + + // wait for the result (or cancellation!) + WaitForCompletion(); + + // return + return; + } + catch (System.OperationCanceledException exception) + { + // maybe don't even worry? + throw exception; + } + } + + public void WriteObject(object sendToPipeline) + { + // if we are on the original thread, just call straight thru. + if (this.originalThread == System.Threading.Thread.CurrentThread) + { + originalCommandRuntime.WriteObject(sendToPipeline); + return; + } + + // otherwise, queue up the request and wait for the main thread to do the right thing. + try + { + // wait for our turn to talk to the main thread + WaitOurTurn(); + + // set the function to run + runOnMainThread = () => originalCommandRuntime.WriteObject(sendToPipeline); + + // tell the main thread to go ahead + readyToRun.Set(); + + // wait for the result (or cancellation!) + WaitForCompletion(); + + // return + return; + } + catch (System.OperationCanceledException exception) + { + // maybe don't even worry? + throw exception; + } + } + + public void WriteObject(object sendToPipeline, bool enumerateCollection) + { + // if we are on the original thread, just call straight thru. + if (this.originalThread == System.Threading.Thread.CurrentThread) + { + originalCommandRuntime.WriteObject(sendToPipeline, enumerateCollection); + return; + } + + // otherwise, queue up the request and wait for the main thread to do the right thing. + try + { + // wait for our turn to talk to the main thread + WaitOurTurn(); + + // set the function to run + runOnMainThread = () => originalCommandRuntime.WriteObject(sendToPipeline, enumerateCollection); + + // tell the main thread to go ahead + readyToRun.Set(); + + // wait for the result (or cancellation!) + WaitForCompletion(); + + // return + return; + } + catch (System.OperationCanceledException exception) + { + // maybe don't even worry? + throw exception; + } + } + + public void WriteProgress(ProgressRecord progressRecord) + { + // if we are on the original thread, just call straight thru. + if (this.originalThread == System.Threading.Thread.CurrentThread) + { + originalCommandRuntime.WriteProgress(progressRecord); + return; + } + + // otherwise, queue up the request and wait for the main thread to do the right thing. + try + { + // wait for our turn to talk to the main thread + WaitOurTurn(); + + // set the function to run + runOnMainThread = () => originalCommandRuntime.WriteProgress(progressRecord); + + // tell the main thread to go ahead + readyToRun.Set(); + + // wait for the result (or cancellation!) + WaitForCompletion(); + + // return + return; + } + catch (System.OperationCanceledException exception) + { + // maybe don't even worry? + throw exception; + } + } + + public void WriteProgress(long sourceId, ProgressRecord progressRecord) + { + // if we are on the original thread, just call straight thru. + if (this.originalThread == System.Threading.Thread.CurrentThread) + { + originalCommandRuntime.WriteProgress(sourceId, progressRecord); + return; + } + + // otherwise, queue up the request and wait for the main thread to do the right thing. + try + { + // wait for our turn to talk to the main thread + WaitOurTurn(); + + // set the function to run + runOnMainThread = () => originalCommandRuntime.WriteProgress(sourceId, progressRecord); + + // tell the main thread to go ahead + readyToRun.Set(); + + // wait for the result (or cancellation!) + WaitForCompletion(); + + // return + return; + } + catch (System.OperationCanceledException exception) + { + // maybe don't even worry? + throw exception; + } + } + + public void WriteVerbose(string text) + { + // if we are on the original thread, just call straight thru. + if (this.originalThread == System.Threading.Thread.CurrentThread) + { + originalCommandRuntime.WriteVerbose(text); + return; + } + + // otherwise, queue up the request and wait for the main thread to do the right thing. + try + { + // wait for our turn to talk to the main thread + WaitOurTurn(); + + // set the function to run + runOnMainThread = () => originalCommandRuntime.WriteVerbose(text); + + // tell the main thread to go ahead + readyToRun.Set(); + + // wait for the result (or cancellation!) + WaitForCompletion(); + + // return + return; + } + catch (System.OperationCanceledException exception) + { + // maybe don't even worry? + throw exception; + } + } + + public void WriteWarning(string text) + { + // if we are on the original thread, just call straight thru. + if (this.originalThread == System.Threading.Thread.CurrentThread) + { + originalCommandRuntime.WriteWarning(text); + return; + } + + // otherwise, queue up the request and wait for the main thread to do the right thing. + try + { + // wait for our turn to talk to the main thread + WaitOurTurn(); + + // set the function to run + runOnMainThread = () => originalCommandRuntime.WriteWarning(text); + + // tell the main thread to go ahead + readyToRun.Set(); + + // wait for the result (or cancellation!) + WaitForCompletion(); + + // return + return; + } + catch (System.OperationCanceledException exception) + { + // maybe don't even worry? + throw exception; + } + } + + public void Wait(System.Threading.Tasks.Task ProcessRecordAsyncTask, System.Threading.CancellationToken cancellationToken) + { + do + { + WaitHandle.WaitAny(new[] { readyToRun.WaitHandle, ((System.IAsyncResult)ProcessRecordAsyncTask).AsyncWaitHandle }); + if (readyToRun.IsSet) + { + // reset the request for the next time + readyToRun.Reset(); + + // run the delegate on this thread + runOnMainThread(); + + // tell the originator everything is complete + completed.Set(); + } + } + while (!ProcessRecordAsyncTask.IsCompleted); + if (ProcessRecordAsyncTask.IsFaulted) + { + // don't unwrap a Aggregate Exception -- we'll lose the stack trace of the actual exception. + // if( ProcessRecordAsyncTask.Exception is System.AggregateException aggregate ) { + // throw aggregate.InnerException; + // } + throw ProcessRecordAsyncTask.Exception; + } + } + public Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SendAsyncStep Wrap(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SendAsyncStep func) => func.Target.GetType().Name != "Closure" ? func : (p1, p2, p3) => ExecuteSync>(() => func(p1, p2, p3)); + public System.Collections.Generic.IEnumerable Wrap(System.Collections.Generic.IEnumerable funcs) => funcs?.Select(Wrap); + + public T ExecuteSync(System.Func step) + { + // if we are on the original thread, just call straight thru. + if (this.originalThread == System.Threading.Thread.CurrentThread) + { + return step(); + } + + T result = default(T); + try + { + // wait for our turn to talk to the main thread + WaitOurTurn(); + // set the function to run + runOnMainThread = () => { result = step(); }; + // tell the main thread to go ahead + readyToRun.Set(); + // wait for the result (or cancellation!) + WaitForCompletion(); + // return + return result; + } + catch (System.OperationCanceledException exception) + { + // maybe don't even worry? + throw exception; + } + } + + public void Dispose() + { + if (cmdlet != null) + { + cmdlet.CommandRuntime = this.originalCommandRuntime; + cmdlet = null; + } + + semaphore?.Dispose(); + semaphore = null; + readyToRun?.Dispose(); + readyToRun = null; + completed?.Dispose(); + completed = null; + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/AsyncJob.cs b/src/DedicatedHsm/generated/runtime/AsyncJob.cs new file mode 100644 index 000000000000..3acd6763e1e4 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/AsyncJob.cs @@ -0,0 +1,270 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell +{ + using System.Management.Automation; + using System.Management.Automation.Host; + using System.Threading; + + using System.Threading.Tasks; + + public class LongRunningJobCancelledException : System.Exception + { + public LongRunningJobCancelledException(string message) : base(message) + { + + } + } + + public class AsyncJob : Job, System.Management.Automation.ICommandRuntime2 + { + const int MaxRecords = 1000; + + private string _statusMessage = string.Empty; + + public override string StatusMessage => _statusMessage; + + public override bool HasMoreData => Output.Count > 0 || Progress.Count > 0 || Error.Count > 0 || Warning.Count > 0 || Verbose.Count > 0 || Debug.Count > 0; + + public override string Location => "localhost"; + + public PSHost Host => originalCommandRuntime.Host; + + public PSTransactionContext CurrentPSTransaction => originalCommandRuntime.CurrentPSTransaction; + + public override void StopJob() + { + Cancel(); + } + + private readonly PSCmdlet cmdlet; + private readonly ICommandRuntime2 originalCommandRuntime; + private readonly System.Threading.Thread originalThread; + + private void CheckForInteractive() + { + // This is an interactive call -- We should never allow interactivity in AsnycJob cmdlets. + throw new System.Exception("Cmdlets in AsyncJob; interactive calls are not permitted."); + } + private bool IsJobDone => CancellationToken.IsCancellationRequested || this.JobStateInfo.State == JobState.Failed || this.JobStateInfo.State == JobState.Stopped || this.JobStateInfo.State == JobState.Stopping || this.JobStateInfo.State == JobState.Completed; + + private readonly System.Action Cancel; + private readonly CancellationToken CancellationToken; + + internal AsyncJob(PSCmdlet cmdlet, string line, string name, CancellationToken cancellationToken, System.Action cancelMethod) : base(line, name) + { + SetJobState(JobState.NotStarted); + // know how to cancel/check for cancelation + this.CancellationToken = cancellationToken; + this.Cancel = cancelMethod; + + // we might need these. + this.originalCommandRuntime = cmdlet.CommandRuntime as ICommandRuntime2; + this.originalThread = System.Threading.Thread.CurrentThread; + + // the instance of the cmdlet we're going to run + this.cmdlet = cmdlet; + + // set the command runtime to the AsyncJob + cmdlet.CommandRuntime = this; + } + + /// + /// Monitors the task (which should be ProcessRecordAsync) to control + /// the lifetime of the job itself + /// + /// + public void Monitor(Task task) + { + SetJobState(JobState.Running); + task.ContinueWith(antecedent => + { + if (antecedent.IsCanceled) + { + // if the task was canceled, we're just going to call it completed. + SetJobState(JobState.Completed); + } + else if (antecedent.IsFaulted) + { + foreach (var innerException in antecedent.Exception.Flatten().InnerExceptions) + { + WriteError(new System.Management.Automation.ErrorRecord(innerException, string.Empty, System.Management.Automation.ErrorCategory.NotSpecified, null)); + } + + // a fault indicates an actual failure + SetJobState(JobState.Failed); + } + else + { + // otherwiser it's a completed state. + SetJobState(JobState.Completed); + } + }, CancellationToken); + } + + private void CheckForCancellation() + { + if (IsJobDone) + { + throw new LongRunningJobCancelledException("Long running job is canceled or stopping, continuation of the cmdlet is not permitted."); + } + } + + public void WriteInformation(InformationRecord informationRecord) + { + CheckForCancellation(); + + this.Information.Add(informationRecord); + } + + public bool ShouldContinue(string query, string caption, bool hasSecurityImpact, ref bool yesToAll, ref bool noToAll) + { + CheckForInteractive(); + return false; + } + + public void WriteDebug(string text) + { + _statusMessage = text; + CheckForCancellation(); + + if (Debug.IsOpen && Debug.Count < MaxRecords) + { + Debug.Add(new DebugRecord(text)); + } + } + + public void WriteError(ErrorRecord errorRecord) + { + if (Error.IsOpen) + { + Error.Add(errorRecord); + } + } + + public void WriteObject(object sendToPipeline) + { + CheckForCancellation(); + + if (Output.IsOpen) + { + Output.Add(new PSObject(sendToPipeline)); + } + } + + public void WriteObject(object sendToPipeline, bool enumerateCollection) + { + CheckForCancellation(); + + if (enumerateCollection && sendToPipeline is System.Collections.IEnumerable enumerable) + { + foreach (var item in enumerable) + { + WriteObject(item); + } + } + else + { + WriteObject(sendToPipeline); + } + } + + public void WriteProgress(ProgressRecord progressRecord) + { + CheckForCancellation(); + + if (Progress.IsOpen && Progress.Count < MaxRecords) + { + Progress.Add(progressRecord); + } + } + + public void WriteProgress(long sourceId, ProgressRecord progressRecord) + { + CheckForCancellation(); + + if (Progress.IsOpen && Progress.Count < MaxRecords) + { + Progress.Add(progressRecord); + } + } + + public void WriteVerbose(string text) + { + CheckForCancellation(); + + if (Verbose.IsOpen && Verbose.Count < MaxRecords) + { + Verbose.Add(new VerboseRecord(text)); + } + } + + public void WriteWarning(string text) + { + CheckForCancellation(); + + if (Warning.IsOpen && Warning.Count < MaxRecords) + { + Warning.Add(new WarningRecord(text)); + } + } + + public void WriteCommandDetail(string text) + { + WriteVerbose(text); + } + + public bool ShouldProcess(string target) + { + CheckForInteractive(); + return false; + } + + public bool ShouldProcess(string target, string action) + { + CheckForInteractive(); + return false; + } + + public bool ShouldProcess(string verboseDescription, string verboseWarning, string caption) + { + CheckForInteractive(); + return false; + } + + public bool ShouldProcess(string verboseDescription, string verboseWarning, string caption, out ShouldProcessReason shouldProcessReason) + { + CheckForInteractive(); + shouldProcessReason = ShouldProcessReason.None; + return false; + } + + public bool ShouldContinue(string query, string caption) + { + CheckForInteractive(); + return false; + } + + public bool ShouldContinue(string query, string caption, ref bool yesToAll, ref bool noToAll) + { + CheckForInteractive(); + return false; + } + + public bool TransactionAvailable() + { + // interactivity required? + return false; + } + + public void ThrowTerminatingError(ErrorRecord errorRecord) + { + if (Error.IsOpen) + { + Error.Add(errorRecord); + } + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/AsyncOperationResponse.cs b/src/DedicatedHsm/generated/runtime/AsyncOperationResponse.cs new file mode 100644 index 000000000000..9bd1c50297a8 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/AsyncOperationResponse.cs @@ -0,0 +1,177 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell +{ + using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Extensions; + + [System.ComponentModel.TypeConverter(typeof(AsyncOperationResponseTypeConverter))] + public class AsyncOperationResponse + { + private string _target; + public string Target { get => _target; set => _target = value; } + public AsyncOperationResponse() + { + } + internal AsyncOperationResponse(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json) + { + // pull target + { Target = If(json?.PropertyT("target"), out var _v) ? (string)_v : (string)Target; } + } + public string ToJsonString() + { + return $"{{ \"target\" : \"{this.Target}\" }}"; + } + + public static AsyncOperationResponse FromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject json ? new AsyncOperationResponse(json) : null; + } + + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static AsyncOperationResponse FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode.Parse(jsonText)); + + } + + public partial class AsyncOperationResponseTypeConverter : System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static object ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(AsyncOperationResponse).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return AsyncOperationResponse.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString()); ; + } + catch + { + // Unable to use JSON pattern + } + + if (typeof(System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return new AsyncOperationResponse { Target = (sourceValue as System.Management.Automation.PSObject).GetValueForProperty("target", "", global::System.Convert.ToString) }; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return new AsyncOperationResponse { Target = (sourceValue as global::System.Collections.IDictionary).GetValueForProperty("target", "", global::System.Convert.ToString) }; + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/BuildTime/Cmdlets/ExportCmdletSurface.cs b/src/DedicatedHsm/generated/runtime/BuildTime/Cmdlets/ExportCmdletSurface.cs new file mode 100644 index 000000000000..6bad03fa53c2 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/BuildTime/Cmdlets/ExportCmdletSurface.cs @@ -0,0 +1,113 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Management.Automation; +using System.Text; +using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.PsHelpers; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell +{ + [Cmdlet(VerbsData.Export, "CmdletSurface")] + [DoNotExport] + public class ExportCmdletSurface : PSCmdlet + { + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public string ModuleName { get; set; } + + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public string CmdletFolder { get; set; } + + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public string OutputFolder { get; set; } + + [Parameter] + public bool IncludeGeneralParameters { get; set; } + + [Parameter] + public bool UseExpandedFormat { get; set; } + + protected override void ProcessRecord() + { + try + { + var variants = GetScriptCmdlets(this, CmdletFolder) + .SelectMany(fi => fi.ToVariants()) + .Where(v => !v.IsDoNotExport) + .ToArray(); + var allProfiles = variants.SelectMany(v => v.Profiles).Distinct().ToArray(); + var profileGroups = allProfiles.Any() + ? variants + .SelectMany(v => (v.Profiles.Any() ? v.Profiles : allProfiles).Select(p => (profile: p, variant: v))) + .GroupBy(pv => pv.profile) + .Select(pvg => new ProfileGroup(pvg.Select(pv => pv.variant).ToArray(), pvg.Key)) + : new[] { new ProfileGroup(variants) }; + foreach (var profileGroup in profileGroups) + { + var variantGroups = profileGroup.Variants + .GroupBy(v => new { v.CmdletName }) + .Select(vg => new VariantGroup(ModuleName, vg.Key.CmdletName, vg.Select(v => v).ToArray(), String.Empty, profileGroup.ProfileName)); + var sb = UseExpandedFormat ? ExpandedFormat(variantGroups) : CondensedFormat(variantGroups); + Directory.CreateDirectory(OutputFolder); + File.WriteAllText(Path.Combine(OutputFolder, $"CmdletSurface-{profileGroup.ProfileName}.md"), sb.ToString()); + } + } + catch (Exception ee) + { + Console.WriteLine($"${ee.GetType().Name}/{ee.StackTrace}"); + throw ee; + } + } + + private StringBuilder ExpandedFormat(IEnumerable variantGroups) + { + var sb = new StringBuilder(); + foreach (var variantGroup in variantGroups.OrderBy(vg => vg.CmdletName)) + { + sb.Append($"### {variantGroup.CmdletName}{Environment.NewLine}"); + var parameterGroups = variantGroup.ParameterGroups + .Where(pg => !pg.DontShow && (IncludeGeneralParameters || (pg.OrderCategory != ParameterCategory.Azure && pg.OrderCategory != ParameterCategory.Runtime))); + foreach (var parameterGroup in parameterGroups) + { + sb.Append($" - {parameterGroup.ParameterName} `{parameterGroup.ParameterType.ToSyntaxTypeName()}`{Environment.NewLine}"); + } + sb.AppendLine(); + } + + return sb; + } + + private StringBuilder CondensedFormat(IEnumerable variantGroups) + { + var sb = new StringBuilder(); + var condensedGroups = variantGroups + .GroupBy(vg => vg.CmdletNoun) + .Select(vgg => ( + CmdletNoun: vgg.Key, + CmdletVerbs: vgg.Select(vg => vg.CmdletVerb).OrderBy(cv => cv).ToArray(), + ParameterGroups: vgg.SelectMany(vg => vg.ParameterGroups).DistinctBy(p => p.ParameterName).ToArray(), + OutputTypes: vgg.SelectMany(vg => vg.OutputTypes).Select(ot => ot.Type).DistinctBy(t => t.Name).Select(t => t.ToSyntaxTypeName()).ToArray())) + .OrderBy(vg => vg.CmdletNoun); + foreach (var condensedGroup in condensedGroups) + { + sb.Append($"### {condensedGroup.CmdletNoun} [{String.Join(", ", condensedGroup.CmdletVerbs)}] `{String.Join(", ", condensedGroup.OutputTypes)}`{Environment.NewLine}"); + var parameterGroups = condensedGroup.ParameterGroups + .Where(pg => !pg.DontShow && (IncludeGeneralParameters || (pg.OrderCategory != ParameterCategory.Azure && pg.OrderCategory != ParameterCategory.Runtime))); + foreach (var parameterGroup in parameterGroups) + { + sb.Append($" - {parameterGroup.ParameterName} `{parameterGroup.ParameterType.ToSyntaxTypeName()}`{Environment.NewLine}"); + } + sb.AppendLine(); + } + + return sb; + } + } +} diff --git a/src/DedicatedHsm/generated/runtime/BuildTime/Cmdlets/ExportExampleStub.cs b/src/DedicatedHsm/generated/runtime/BuildTime/Cmdlets/ExportExampleStub.cs new file mode 100644 index 000000000000..4692e46989d8 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/BuildTime/Cmdlets/ExportExampleStub.cs @@ -0,0 +1,74 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.IO; +using System.Linq; +using System.Management.Automation; +using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.MarkdownTypesExtensions; +using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.PsHelpers; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell +{ + [Cmdlet(VerbsData.Export, "ExampleStub")] + [DoNotExport] + public class ExportExampleStub : PSCmdlet + { + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public string ExportsFolder { get; set; } + + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public string OutputFolder { get; set; } + + protected override void ProcessRecord() + { + try + { + if (!Directory.Exists(ExportsFolder)) + { + throw new ArgumentException($"Exports folder '{ExportsFolder}' does not exist"); + } + + var exportDirectories = Directory.GetDirectories(ExportsFolder); + if (!exportDirectories.Any()) + { + exportDirectories = new[] { ExportsFolder }; + } + + var exampleText = String.Join(String.Empty, DefaultExampleHelpInfos.Select(ehi => ehi.ToHelpExampleOutput())); + foreach (var exportDirectory in exportDirectories) + { + var outputFolder = OutputFolder; + if (exportDirectory != ExportsFolder) + { + outputFolder = Path.Combine(OutputFolder, Path.GetFileName(exportDirectory)); + Directory.CreateDirectory(outputFolder); + } + + var cmdletFilePaths = GetScriptCmdlets(exportDirectory).Select(fi => Path.Combine(outputFolder, $"{fi.Name}.md")).ToArray(); + var currentExamplesFilePaths = Directory.GetFiles(outputFolder).ToArray(); + // Remove examples of non-existing cmdlets + var removedCmdletFilePaths = currentExamplesFilePaths.Except(cmdletFilePaths); + foreach (var removedCmdletFilePath in removedCmdletFilePaths) + { + File.Delete(removedCmdletFilePath); + } + + // Only create example stubs if they don't exist + foreach (var cmdletFilePath in cmdletFilePaths.Except(currentExamplesFilePaths)) + { + File.WriteAllText(cmdletFilePath, exampleText); + } + } + } + catch (Exception ee) + { + Console.WriteLine($"${ee.GetType().Name}/{ee.StackTrace}"); + throw ee; + } + } + } +} diff --git a/src/DedicatedHsm/generated/runtime/BuildTime/Cmdlets/ExportFormatPs1xml.cs b/src/DedicatedHsm/generated/runtime/BuildTime/Cmdlets/ExportFormatPs1xml.cs new file mode 100644 index 000000000000..7d917e24951d --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/BuildTime/Cmdlets/ExportFormatPs1xml.cs @@ -0,0 +1,99 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Management.Automation; +using System.Reflection; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell +{ + [Cmdlet(VerbsData.Export, "FormatPs1xml")] + [DoNotExport] + public class ExportFormatPs1xml : PSCmdlet + { + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public string FilePath { get; set; } + + private const string ModelNamespace = @"Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models"; + private const string SupportNamespace = @"Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Support"; + private static readonly bool IsAzure = Convert.ToBoolean(@"true"); + + protected override void ProcessRecord() + { + try + { + var viewModels = GetFilteredViewParameters().Select(CreateViewModel).ToList(); + var ps1xml = new Configuration + { + ViewDefinitions = new ViewDefinitions + { + Views = viewModels + } + }; + File.WriteAllText(FilePath, ps1xml.ToXmlString()); + } + catch (Exception ee) + { + Console.WriteLine($"${ee.GetType().Name}/{ee.StackTrace}"); + throw ee; + } + } + + private static IEnumerable GetFilteredViewParameters() + { + //https://stackoverflow.com/a/79738/294804 + //https://stackoverflow.com/a/949285/294804 + var types = Assembly.GetExecutingAssembly().GetExportedTypes() + .Where(t => t.IsClass + && (t.Namespace.StartsWith(ModelNamespace) || t.Namespace.StartsWith(SupportNamespace)) + && !t.GetCustomAttributes().Any()); + return types.Select(t => new ViewParameters(t, t.GetProperties() + .Select(p => new PropertyFormat(p)) + .Where(pf => !pf.Property.GetCustomAttributes().Any() + && (!IsAzure || pf.Property.Name != "Id") + && (pf.FormatTable != null || (pf.Origin != PropertyOrigin.Inlined && pf.Property.PropertyType.IsPsSimple()))) + .OrderByDescending(pf => pf.Index.HasValue) + .ThenBy(pf => pf.Index) + .ThenByDescending(pf => pf.Origin.HasValue) + .ThenBy(pf => pf.Origin))).Where(vp => vp.Properties.Any()); + } + + private static View CreateViewModel(ViewParameters viewParameters) + { + var entries = viewParameters.Properties.Select(pf => + (TableColumnHeader: new TableColumnHeader { Label = pf.Label, Width = pf.Width }, + TableColumnItem: new TableColumnItem { PropertyName = pf.Property.Name })).ToArray(); + + return new View + { + Name = viewParameters.Type.FullName, + ViewSelectedBy = new ViewSelectedBy + { + TypeName = viewParameters.Type.FullName + }, + TableControl = new TableControl + { + TableHeaders = new TableHeaders + { + TableColumnHeaders = entries.Select(e => e.TableColumnHeader).ToList() + }, + TableRowEntries = new TableRowEntries + { + TableRowEntry = new TableRowEntry + { + TableColumnItems = new TableColumnItems + { + TableItems = entries.Select(e => e.TableColumnItem).ToList() + } + } + } + } + }; + } + } +} diff --git a/src/DedicatedHsm/generated/runtime/BuildTime/Cmdlets/ExportHelpMarkdown.cs b/src/DedicatedHsm/generated/runtime/BuildTime/Cmdlets/ExportHelpMarkdown.cs new file mode 100644 index 000000000000..26198e17075e --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/BuildTime/Cmdlets/ExportHelpMarkdown.cs @@ -0,0 +1,53 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Linq; +using System.Management.Automation; +using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.MarkdownRenderer; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell +{ + [Cmdlet(VerbsData.Export, "HelpMarkdown")] + [DoNotExport] + public class ExportHelpMarkdown : PSCmdlet + { + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public PSModuleInfo ModuleInfo { get; set; } + + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public PSObject[] FunctionInfo { get; set; } + + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public PSObject[] HelpInfo { get; set; } + + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public string DocsFolder { get; set; } + + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public string ExamplesFolder { get; set; } + + protected override void ProcessRecord() + { + try + { + var helpInfos = HelpInfo.Select(hi => hi.ToPsHelpInfo()); + var variantGroups = FunctionInfo.Select(fi => fi.BaseObject).Cast() + .Join(helpInfos, fi => fi.Name, phi => phi.CmdletName, (fi, phi) => fi.ToVariants(phi)) + .Select(va => new VariantGroup(ModuleInfo.Name, va.First().CmdletName, va, String.Empty)); + WriteMarkdowns(variantGroups, ModuleInfo.ToModuleInfo(), DocsFolder, ExamplesFolder); + } + catch (Exception ee) + { + Console.WriteLine($"${ee.GetType().Name}/{ee.StackTrace}"); + throw ee; + } + } + } +} diff --git a/src/DedicatedHsm/generated/runtime/BuildTime/Cmdlets/ExportModelSurface.cs b/src/DedicatedHsm/generated/runtime/BuildTime/Cmdlets/ExportModelSurface.cs new file mode 100644 index 000000000000..8b99a1230bd1 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/BuildTime/Cmdlets/ExportModelSurface.cs @@ -0,0 +1,117 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Management.Automation; +using System.Reflection; +using System.Text; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell +{ + [Cmdlet(VerbsData.Export, "ModelSurface")] + [DoNotExport] + public class ExportModelSurface : PSCmdlet + { + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public string OutputFolder { get; set; } + + [Parameter] + public bool UseExpandedFormat { get; set; } + + private const string ModelNamespace = @"Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models"; + private const string SupportNamespace = @"Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Support"; + + protected override void ProcessRecord() + { + try + { + var types = Assembly.GetExecutingAssembly().GetExportedTypes() + .Where(t => t.IsClass && (t.Namespace.StartsWith(ModelNamespace) || t.Namespace.StartsWith(SupportNamespace))); + var typeInfos = types.Select(t => new ModelTypeInfo + { + Type = t, + TypeName = t.Name, + Properties = t.GetProperties(BindingFlags.Public | BindingFlags.Instance).Where(p => !p.GetIndexParameters().Any()).OrderBy(p => p.Name).ToArray(), + NamespaceGroup = t.Namespace.Split('.').LastOrDefault().EmptyIfNull() + }).Where(mti => mti.Properties.Any()); + var sb = UseExpandedFormat ? ExpandedFormat(typeInfos) : CondensedFormat(typeInfos); + Directory.CreateDirectory(OutputFolder); + File.WriteAllText(Path.Combine(OutputFolder, "ModelSurface.md"), sb.ToString()); + } + catch (Exception ee) + { + Console.WriteLine($"${ee.GetType().Name}/{ee.StackTrace}"); + throw ee; + } + } + + private static StringBuilder ExpandedFormat(IEnumerable typeInfos) + { + var sb = new StringBuilder(); + foreach (var typeInfo in typeInfos.OrderBy(mti => mti.TypeName).ThenBy(mti => mti.NamespaceGroup)) + { + sb.Append($"### {typeInfo.TypeName} [{typeInfo.NamespaceGroup}]{Environment.NewLine}"); + foreach (var property in typeInfo.Properties) + { + sb.Append($" - {property.Name} `{property.PropertyType.ToSyntaxTypeName()}`{Environment.NewLine}"); + } + sb.AppendLine(); + } + + return sb; + } + + private static StringBuilder CondensedFormat(IEnumerable typeInfos) + { + var sb = new StringBuilder(); + var typeGroups = typeInfos + .GroupBy(mti => mti.TypeName) + .Select(tig => ( + Types: tig.Select(mti => mti.Type).ToArray(), + TypeName: tig.Key, + Properties: tig.SelectMany(mti => mti.Properties).DistinctBy(p => p.Name).OrderBy(p => p.Name).ToArray(), + NamespaceGroups: tig.Select(mti => mti.NamespaceGroup).OrderBy(ng => ng).ToArray() + )) + .OrderBy(tg => tg.TypeName); + foreach (var typeGroup in typeGroups) + { + var aType = typeGroup.Types.Select(GetAssociativeType).FirstOrDefault(t => t != null); + var aText = aType != null ? $@" \<{aType.ToSyntaxTypeName()}\>" : String.Empty; + sb.Append($"### {typeGroup.TypeName}{aText} [{String.Join(", ", typeGroup.NamespaceGroups)}]{Environment.NewLine}"); + foreach (var property in typeGroup.Properties) + { + var propertyAType = GetAssociativeType(property.PropertyType); + var propertyAText = propertyAType != null ? $" <{propertyAType.ToSyntaxTypeName()}>" : String.Empty; + var enumNames = GetEnumFieldNames(property.PropertyType.Unwrap()); + var enumNamesText = enumNames.Any() ? $" **{{{String.Join(", ", enumNames)}}}**" : String.Empty; + sb.Append($" - {property.Name} `{property.PropertyType.ToSyntaxTypeName()}{propertyAText}`{enumNamesText}{Environment.NewLine}"); + } + sb.AppendLine(); + } + + return sb; + } + + //https://stackoverflow.com/a/4963190/294804 + private static Type GetAssociativeType(Type type) => + type.GetInterfaces().FirstOrDefault(i => i.IsGenericType && i.GetGenericTypeDefinition() == typeof(IAssociativeArray<>))?.GetGenericArguments().First(); + + private static string[] GetEnumFieldNames(Type type) => + type.IsValueType && !type.IsPrimitive && type != typeof(decimal) && type != typeof(DateTime) + ? type.GetFields(BindingFlags.Public | BindingFlags.Static).Where(f => f.FieldType == type).Select(p => p.Name).ToArray() + : new string[] { }; + + private class ModelTypeInfo + { + public Type Type { get; set; } + public string TypeName { get; set; } + public PropertyInfo[] Properties { get; set; } + public string NamespaceGroup { get; set; } + } + } +} diff --git a/src/DedicatedHsm/generated/runtime/BuildTime/Cmdlets/ExportProxyCmdlet.cs b/src/DedicatedHsm/generated/runtime/BuildTime/Cmdlets/ExportProxyCmdlet.cs new file mode 100644 index 000000000000..4f77a9636de0 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/BuildTime/Cmdlets/ExportProxyCmdlet.cs @@ -0,0 +1,159 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.IO; +using System.Linq; +using System.Management.Automation; +using System.Text; +using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.PsHelpers; +using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.MarkdownRenderer; +using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.PsProxyTypeExtensions; +using System.Collections.Generic; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell +{ + [Cmdlet(VerbsData.Export, "ProxyCmdlet", DefaultParameterSetName = "Docs")] + [DoNotExport] + public class ExportProxyCmdlet : PSCmdlet + { + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public string ModuleName { get; set; } + + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public string[] ModulePath { get; set; } + + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public string ExportsFolder { get; set; } + + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public string InternalFolder { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = "Docs")] + [AllowEmptyString] + public string ModuleDescription { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = "Docs")] + [ValidateNotNullOrEmpty] + public string DocsFolder { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = "Docs")] + [ValidateNotNullOrEmpty] + public string ExamplesFolder { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = "Docs")] + public Guid ModuleGuid { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = "NoDocs")] + public SwitchParameter ExcludeDocs { get; set; } + + protected override void ProcessRecord() + { + try { + var variants = GetModuleCmdletsAndHelpInfo(this, ModulePath).SelectMany(ci => ci.ToVariants()).Where(v => !v.IsDoNotExport).ToArray(); + var allProfiles = variants.SelectMany(v => v.Profiles).Distinct().ToArray(); + var profileGroups = allProfiles.Any() + ? variants + .SelectMany(v => (v.Profiles.Any() ? v.Profiles : allProfiles).Select(p => (profile: p, variant: v))) + .GroupBy(pv => pv.profile) + .Select(pvg => new ProfileGroup(pvg.Select(pv => pv.variant).ToArray(), pvg.Key)) + : new[] { new ProfileGroup(variants) }; + var variantGroups = profileGroups.SelectMany(pg => pg.Variants + .GroupBy(v => new { v.CmdletName, v.IsInternal }) + .Select(vg => new VariantGroup(ModuleName, vg.Key.CmdletName, vg.Select(v => v).ToArray(), + Path.Combine(vg.Key.IsInternal ? InternalFolder : ExportsFolder, pg.ProfileFolder), pg.ProfileName, isInternal: vg.Key.IsInternal))) + .ToArray(); + + foreach (var variantGroup in variantGroups) + { + var parameterGroups = variantGroup.ParameterGroups.ToList(); + var isValidProfile = !String.IsNullOrEmpty(variantGroup.ProfileName) && variantGroup.ProfileName != NoProfiles; + var examplesFolder = isValidProfile ? Path.Combine(ExamplesFolder, variantGroup.ProfileName) : ExamplesFolder; + var markdownInfo = new MarkdownHelpInfo(variantGroup, examplesFolder); + List examples = new List(); + foreach (var it in markdownInfo.Examples) + { + examples.Add(it); + } + variantGroup.HelpInfo.Examples = examples.ToArray(); + var sb = new StringBuilder(); + sb.Append(@" +# ---------------------------------------------------------------------------------- +# +# 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. +# ---------------------------------------------------------------------------------- +"); + sb.Append($"{Environment.NewLine}"); + sb.Append(variantGroup.ToHelpCommentOutput()); + sb.Append($"function {variantGroup.CmdletName} {{{Environment.NewLine}"); + sb.Append(variantGroup.Aliases.ToAliasOutput()); + sb.Append(variantGroup.OutputTypes.ToOutputTypeOutput()); + sb.Append(variantGroup.ToCmdletBindingOutput()); + sb.Append(variantGroup.ProfileName.ToProfileOutput()); + + sb.Append("param("); + sb.Append($"{(parameterGroups.Any() ? Environment.NewLine : String.Empty)}"); + foreach (var parameterGroup in parameterGroups) + { + var parameters = parameterGroup.HasAllVariants ? parameterGroup.Parameters.Take(1) : parameterGroup.Parameters; + foreach (var parameter in parameters) + { + sb.Append(parameter.ToParameterOutput(variantGroup.HasMultipleVariants, parameterGroup.HasAllVariants)); + } + sb.Append(parameterGroup.Aliases.ToAliasOutput(true)); + sb.Append(parameterGroup.HasValidateNotNull.ToValidateNotNullOutput()); + sb.Append(parameterGroup.CompleterInfo.ToArgumentCompleterOutput()); + sb.Append(parameterGroup.OrderCategory.ToParameterCategoryOutput()); + sb.Append(parameterGroup.InfoAttribute.ToInfoOutput(parameterGroup.ParameterType)); + sb.Append(parameterGroup.ToDefaultInfoOutput()); + sb.Append(parameterGroup.ParameterType.ToParameterTypeOutput()); + sb.Append(parameterGroup.Description.ToParameterDescriptionOutput()); + sb.Append(parameterGroup.ParameterName.ToParameterNameOutput(parameterGroups.IndexOf(parameterGroup) == parameterGroups.Count - 1)); + } + sb.Append($"){Environment.NewLine}{Environment.NewLine}"); + + sb.Append(variantGroup.ToBeginOutput()); + sb.Append(variantGroup.ToProcessOutput()); + sb.Append(variantGroup.ToEndOutput()); + + sb.Append($"}}{Environment.NewLine}"); + + Directory.CreateDirectory(variantGroup.OutputFolder); + File.WriteAllText(variantGroup.FilePath, sb.ToString()); + + File.AppendAllText(Path.Combine(variantGroup.OutputFolder, "ProxyCmdletDefinitions.ps1"), sb.ToString()); + } + + if (!ExcludeDocs) + { + var moduleInfo = new PsModuleHelpInfo(ModuleName, ModuleGuid, ModuleDescription); + foreach (var variantGroupsByProfile in variantGroups.GroupBy(vg => vg.ProfileName)) + { + var profileName = variantGroupsByProfile.Key; + var isValidProfile = !String.IsNullOrEmpty(profileName) && profileName != NoProfiles; + var docsFolder = isValidProfile ? Path.Combine(DocsFolder, profileName) : DocsFolder; + var examplesFolder = isValidProfile ? Path.Combine(ExamplesFolder, profileName) : ExamplesFolder; + WriteMarkdowns(variantGroupsByProfile, moduleInfo, docsFolder, examplesFolder); + } + } + } catch (Exception ee) { + Console.WriteLine($"${ee.GetType().Name}/{ee.StackTrace}"); + throw ee; + } + } + } +} diff --git a/src/DedicatedHsm/generated/runtime/BuildTime/Cmdlets/ExportPsd1.cs b/src/DedicatedHsm/generated/runtime/BuildTime/Cmdlets/ExportPsd1.cs new file mode 100644 index 000000000000..7cde505be98f --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/BuildTime/Cmdlets/ExportPsd1.cs @@ -0,0 +1,125 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.IO; +using System.Linq; +using System.Management.Automation; +using System.Text; +using System.Text.RegularExpressions; +using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.PsHelpers; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell +{ + [Cmdlet(VerbsData.Export, "Psd1")] + [DoNotExport] + public class ExportPsd1 : PSCmdlet + { + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public string ExportsFolder { get; set; } + + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public string CustomFolder { get; set; } + + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public string Psd1Path { get; set; } + + [Parameter(Mandatory = true)] + public Guid ModuleGuid { get; set; } + + private static readonly bool IsAzure = Convert.ToBoolean(@"true"); + private const string CustomFolderRelative = "./custom"; + private const string Indent = Psd1Indent; + + protected override void ProcessRecord() + { + try + { + if (!Directory.Exists(ExportsFolder)) + { + throw new ArgumentException($"Exports folder '{ExportsFolder}' does not exist"); + } + + if (!Directory.Exists(CustomFolder)) + { + throw new ArgumentException($"Custom folder '{CustomFolder}' does not exist"); + } + + string version = Convert.ToString(@"0.1.0"); + // Validate the module version should be semantic version + // Following regex is official from https://semver.org/ + Regex rx = new Regex(@"^(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)(?:-((?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?$", RegexOptions.Compiled); + if (rx.Matches(version).Count != 1) + { + throw new ArgumentException("Module-version is not a valid Semantic Version"); + } + + string previewVersion = null; + if (version.Contains('-')) + { + string[] versions = version.Split("-".ToCharArray(), 2); + version = versions[0]; + previewVersion = versions[1]; + } + + var sb = new StringBuilder(); + sb.AppendLine("@{"); + sb.AppendLine($@"{GuidStart} = '{ModuleGuid}'"); + sb.AppendLine($@"{Indent}RootModule = '{"./Az.DedicatedHsm.psm1"}'"); + sb.AppendLine($@"{Indent}ModuleVersion = '{version}'"); + sb.AppendLine($@"{Indent}CompatiblePSEditions = 'Core', 'Desktop'"); + sb.AppendLine($@"{Indent}Author = '{"Microsoft Corporation"}'"); + sb.AppendLine($@"{Indent}CompanyName = '{"Microsoft Corporation"}'"); + sb.AppendLine($@"{Indent}Copyright = '{"Microsoft Corporation. All rights reserved."}'"); + sb.AppendLine($@"{Indent}Description = '{"Microsoft Azure PowerShell: DedicatedHsm cmdlets"}'"); + sb.AppendLine($@"{Indent}PowerShellVersion = '5.1'"); + sb.AppendLine($@"{Indent}DotNetFrameworkVersion = '4.7.2'"); + sb.AppendLine($@"{Indent}RequiredAssemblies = '{"./bin/Az.DedicatedHsm.private.dll"}'"); + + var customFormatPs1xmlFiles = Directory.GetFiles(CustomFolder) + .Where(f => f.EndsWith(".format.ps1xml")) + .Select(f => $"{CustomFolderRelative}/{Path.GetFileName(f)}"); + var formatList = customFormatPs1xmlFiles.Prepend("./Az.DedicatedHsm.format.ps1xml").ToPsList(); + sb.AppendLine($@"{Indent}FormatsToProcess = {formatList}"); + + var functionInfos = GetScriptCmdlets(ExportsFolder).ToArray(); + var cmdletsList = functionInfos.Select(fi => fi.Name).Distinct().Append("*").ToPsList(); + sb.AppendLine($@"{Indent}FunctionsToExport = {cmdletsList}"); + var aliasesList = functionInfos.SelectMany(fi => fi.ScriptBlock.Attributes).ToAliasNames().Append("*").ToPsList(); + sb.AppendLine($@"{Indent}AliasesToExport = {aliasesList}"); + + sb.AppendLine($@"{Indent}PrivateData = @{{"); + sb.AppendLine($@"{Indent}{Indent}PSData = @{{"); + + if (previewVersion != null) + { + sb.AppendLine($@"{Indent}{Indent}{Indent}Prerelease = {previewVersion}"); + } + sb.AppendLine($@"{Indent}{Indent}{Indent}Tags = {"Azure ResourceManager ARM PSModule DedicatedHsm".Split(' ').ToPsList().NullIfEmpty() ?? "''"}"); + sb.AppendLine($@"{Indent}{Indent}{Indent}LicenseUri = '{"https://aka.ms/azps-license"}'"); + sb.AppendLine($@"{Indent}{Indent}{Indent}ProjectUri = '{"https://github.com/Azure/azure-powershell"}'"); + sb.AppendLine($@"{Indent}{Indent}{Indent}ReleaseNotes = ''"); + var profilesList = ""; + if (IsAzure && !String.IsNullOrEmpty(profilesList)) + { + sb.AppendLine($@"{Indent}{Indent}{Indent}Profiles = {profilesList}"); + } + + sb.AppendLine($@"{Indent}{Indent}}}"); + sb.AppendLine($@"{Indent}}}"); + sb.AppendLine(@"}"); + + File.WriteAllText(Psd1Path, sb.ToString()); + } + catch (Exception ee) + { + Console.WriteLine($"${ee.GetType().Name}/{ee.StackTrace}"); + throw ee; + } + } + } +} diff --git a/src/DedicatedHsm/generated/runtime/BuildTime/Cmdlets/ExportTestStub.cs b/src/DedicatedHsm/generated/runtime/BuildTime/Cmdlets/ExportTestStub.cs new file mode 100644 index 000000000000..ecea6617a8af --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/BuildTime/Cmdlets/ExportTestStub.cs @@ -0,0 +1,137 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.IO; +using System.Linq; +using System.Management.Automation; +using System.Text; +using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.PsProxyOutputExtensions; +using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.PsHelpers; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell +{ + [Cmdlet(VerbsData.Export, "TestStub")] + [DoNotExport] + public class ExportTestStub : PSCmdlet + { + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public string ModuleName { get; set; } + + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public string ExportsFolder { get; set; } + + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public string OutputFolder { get; set; } + + [Parameter] + public SwitchParameter IncludeGenerated { get; set; } + + protected override void ProcessRecord() + { + try + { + if (!Directory.Exists(ExportsFolder)) + { + throw new ArgumentException($"Exports folder '{ExportsFolder}' does not exist"); + } + + var exportDirectories = Directory.GetDirectories(ExportsFolder); + if (!exportDirectories.Any()) + { + exportDirectories = new[] { ExportsFolder }; + } + var utilFile = Path.Combine(OutputFolder, "utils.ps1"); + if (!File.Exists(utilFile)) + { + var sc = new StringBuilder(); + sc.AppendLine(@"function RandomString([bool]$allChars, [int32]$len) { + if ($allChars) { + return -join ((33..126) | Get-Random -Count $len | % {[char]$_}) + } else { + return -join ((48..57) + (97..122) | Get-Random -Count $len | % {[char]$_}) + } +} +$env = @{} +function setupEnv() { + # Preload subscriptionId and tenant from context, which will be used in test + # as default. You could change them if needed. + $env.SubscriptionId = (Get-AzContext).Subscription.Id + $env.Tenant = (Get-AzContext).Tenant.Id + # For any resources you created for test, you should add it to $env here. + $envFile = 'env.json' + if ($TestMode -eq 'live') { + $envFile = 'localEnv.json' + } + set-content -Path (Join-Path $PSScriptRoot $envFile) -Value (ConvertTo-Json $env) +} +function cleanupEnv() { + # Clean resources you create for testing +} +"); + File.WriteAllText(utilFile, sc.ToString()); + } + foreach (var exportDirectory in exportDirectories) + { + var outputFolder = OutputFolder; + if (exportDirectory != ExportsFolder) + { + outputFolder = Path.Combine(OutputFolder, Path.GetFileName(exportDirectory)); + Directory.CreateDirectory(outputFolder); + } + + var variantGroups = GetScriptCmdlets(exportDirectory) + .SelectMany(fi => fi.ToVariants()) + .Where(v => !v.IsDoNotExport) + .GroupBy(v => v.CmdletName) + .Select(vg => new VariantGroup(ModuleName, vg.Key, vg.Select(v => v).ToArray(), outputFolder, isTest: true)) + .Where(vtg => !File.Exists(vtg.FilePath) && (IncludeGenerated || !vtg.IsGenerated)); + + foreach (var variantGroup in variantGroups) + { + var sb = new StringBuilder(); + sb.AppendLine(@"$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' +} +. ($loadEnvPath)" +); + sb.AppendLine($@"$TestRecordingFile = Join-Path $PSScriptRoot '{variantGroup.CmdletName}.Recording.json'"); + sb.AppendLine(@"$currentPath = $PSScriptRoot +while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent +} +. ($mockingPath | Select-Object -First 1).FullName +"); + + sb.AppendLine($"Describe '{variantGroup.CmdletName}' {{"); + var variants = variantGroup.Variants + .Where(v => IncludeGenerated || !v.Attributes.OfType().Any()) + .ToList(); + + foreach (var variant in variants) + { + sb.AppendLine($"{Indent}It '{variant.VariantName}' -skip {{"); + sb.AppendLine($"{Indent}{Indent}{{ throw [System.NotImplementedException] }} | Should -Not -Throw"); + var variantSeparator = variants.IndexOf(variant) == variants.Count - 1 ? String.Empty : Environment.NewLine; + sb.AppendLine($"{Indent}}}{variantSeparator}"); + } + sb.AppendLine("}"); + + File.WriteAllText(variantGroup.FilePath, sb.ToString()); + } + } + } + catch (Exception ee) + { + Console.WriteLine($"${ee.GetType().Name}/{ee.StackTrace}"); + throw ee; + } + } + } +} diff --git a/src/DedicatedHsm/generated/runtime/BuildTime/Cmdlets/GetCommonParameter.cs b/src/DedicatedHsm/generated/runtime/BuildTime/Cmdlets/GetCommonParameter.cs new file mode 100644 index 000000000000..53ba69eedac2 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/BuildTime/Cmdlets/GetCommonParameter.cs @@ -0,0 +1,52 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System.Collections.Generic; +using System.Linq; +using System.Management.Automation; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell +{ + [Cmdlet(VerbsCommon.Get, "CommonParameter")] + [OutputType(typeof(Dictionary))] + [DoNotExport] + public class GetCommonParameter : PSCmdlet + { + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public PSCmdlet PSCmdlet { get; set; } + + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public Dictionary PSBoundParameter { get; set; } + + protected override void ProcessRecord() + { + try + { + var variants = PSCmdlet.MyInvocation.MyCommand.ToVariants(); + var commonParameterNames = variants.ToParameterGroups() + .Where(pg => pg.OrderCategory == ParameterCategory.Azure || pg.OrderCategory == ParameterCategory.Runtime) + .Select(pg => pg.ParameterName); + if (variants.Any(v => v.SupportsShouldProcess)) + { + commonParameterNames = commonParameterNames.Append("Confirm").Append("WhatIf"); + } + if (variants.Any(v => v.SupportsPaging)) + { + commonParameterNames = commonParameterNames.Append("First").Append("Skip").Append("IncludeTotalCount"); + } + + var names = commonParameterNames.ToArray(); + var keys = PSBoundParameter.Keys.Where(k => names.Contains(k)); + WriteObject(keys.ToDictionary(key => key, key => PSBoundParameter[key]), true); + } + catch (System.Exception ee) + { + System.Console.WriteLine($"${ee.GetType().Name}/{ee.StackTrace}"); + throw ee; + } + } + } +} diff --git a/src/DedicatedHsm/generated/runtime/BuildTime/Cmdlets/GetModuleGuid.cs b/src/DedicatedHsm/generated/runtime/BuildTime/Cmdlets/GetModuleGuid.cs new file mode 100644 index 000000000000..7d6a834567f3 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/BuildTime/Cmdlets/GetModuleGuid.cs @@ -0,0 +1,31 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System.Management.Automation; +using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.PsHelpers; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell +{ + [Cmdlet(VerbsCommon.Get, "ModuleGuid")] + [DoNotExport] + public class GetModuleGuid : PSCmdlet + { + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public string Psd1Path { get; set; } + + protected override void ProcessRecord() + { + try + { + WriteObject(ReadGuidFromPsd1(Psd1Path)); + } + catch (System.Exception ee) + { + System.Console.WriteLine($"${ee.GetType().Name}/{ee.StackTrace}"); + throw ee; + } + } + } +} diff --git a/src/DedicatedHsm/generated/runtime/BuildTime/Cmdlets/GetScriptCmdlet.cs b/src/DedicatedHsm/generated/runtime/BuildTime/Cmdlets/GetScriptCmdlet.cs new file mode 100644 index 000000000000..0d25305635f2 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/BuildTime/Cmdlets/GetScriptCmdlet.cs @@ -0,0 +1,53 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System.Linq; +using System.Management.Automation; +using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.PsHelpers; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell +{ + [Cmdlet(VerbsCommon.Get, "ScriptCmdlet")] + [OutputType(typeof(string[]))] + [DoNotExport] + public class GetScriptCmdlet : PSCmdlet + { + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public string ScriptFolder { get; set; } + + [Parameter] + public SwitchParameter IncludeDoNotExport { get; set; } + + [Parameter] + public SwitchParameter AsAlias { get; set; } + + [Parameter] + public SwitchParameter AsFunctionInfo { get; set; } + + protected override void ProcessRecord() + { + try + { + var functionInfos = GetScriptCmdlets(this, ScriptFolder) + .Where(fi => IncludeDoNotExport || !fi.ScriptBlock.Attributes.OfType().Any()) + .ToArray(); + if (AsFunctionInfo) + { + WriteObject(functionInfos, true); + return; + } + var aliases = functionInfos.SelectMany(i => i.ScriptBlock.Attributes).ToAliasNames(); + var names = functionInfos.Select(fi => fi.Name).Distinct(); + var output = (AsAlias ? aliases : names).DefaultIfEmpty("''").ToArray(); + WriteObject(output, true); + } + catch (System.Exception ee) + { + System.Console.WriteLine($"${ee.GetType().Name}/{ee.StackTrace}"); + throw ee; + } + } + } +} diff --git a/src/DedicatedHsm/generated/runtime/BuildTime/CollectionExtensions.cs b/src/DedicatedHsm/generated/runtime/BuildTime/CollectionExtensions.cs new file mode 100644 index 000000000000..0365668e9290 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/BuildTime/CollectionExtensions.cs @@ -0,0 +1,20 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Collections.Generic; +using System.Linq; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell +{ + internal static class CollectionExtensions + { + public static T[] NullIfEmpty(this T[] collection) => (collection?.Any() ?? false) ? collection : null; + public static IEnumerable EmptyIfNull(this IEnumerable collection) => collection ?? Enumerable.Empty(); + + // https://stackoverflow.com/a/4158364/294804 + public static IEnumerable DistinctBy(this IEnumerable collection, Func selector) => + collection.GroupBy(selector).Select(group => group.First()); + } +} diff --git a/src/DedicatedHsm/generated/runtime/BuildTime/MarkdownRenderer.cs b/src/DedicatedHsm/generated/runtime/BuildTime/MarkdownRenderer.cs new file mode 100644 index 000000000000..d645fad5dcb0 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/BuildTime/MarkdownRenderer.cs @@ -0,0 +1,121 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Text; +using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.MarkdownTypesExtensions; +using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.PsProxyOutputExtensions; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell +{ + internal static class MarkdownRenderer + { + public static void WriteMarkdowns(IEnumerable variantGroups, PsModuleHelpInfo moduleHelpInfo, string docsFolder, string examplesFolder) + { + Directory.CreateDirectory(docsFolder); + var markdownInfos = variantGroups.Where(vg => !vg.IsInternal).Select(vg => new MarkdownHelpInfo(vg, examplesFolder)).OrderBy(mhi => mhi.CmdletName).ToArray(); + + foreach (var markdownInfo in markdownInfos) + { + var sb = new StringBuilder(); + sb.Append(markdownInfo.ToHelpMetadataOutput()); + sb.Append($"# {markdownInfo.CmdletName}{Environment.NewLine}{Environment.NewLine}"); + sb.Append($"## SYNOPSIS{Environment.NewLine}{markdownInfo.Synopsis.ToDescriptionFormat()}{Environment.NewLine}{Environment.NewLine}"); + + sb.Append($"## SYNTAX{Environment.NewLine}{Environment.NewLine}"); + var hasMultipleParameterSets = markdownInfo.SyntaxInfos.Length > 1; + foreach (var syntaxInfo in markdownInfo.SyntaxInfos) + { + sb.Append(syntaxInfo.ToHelpSyntaxOutput(hasMultipleParameterSets)); + } + + sb.Append($"## DESCRIPTION{Environment.NewLine}{markdownInfo.Description.ToDescriptionFormat()}{Environment.NewLine}{Environment.NewLine}"); + + sb.Append($"## EXAMPLES{Environment.NewLine}{Environment.NewLine}"); + foreach (var exampleInfo in markdownInfo.Examples) + { + sb.Append(exampleInfo.ToHelpExampleOutput()); + } + + sb.Append($"## PARAMETERS{Environment.NewLine}{Environment.NewLine}"); + foreach (var parameter in markdownInfo.Parameters) + { + sb.Append(parameter.ToHelpParameterOutput()); + } + if (markdownInfo.SupportsShouldProcess) + { + foreach (var parameter in SupportsShouldProcessParameters) + { + sb.Append(parameter.ToHelpParameterOutput()); + } + } + if (markdownInfo.SupportsPaging) + { + foreach (var parameter in SupportsPagingParameters) + { + sb.Append(parameter.ToHelpParameterOutput()); + } + } + + sb.Append($"### CommonParameters{Environment.NewLine}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).{Environment.NewLine}{Environment.NewLine}"); + + sb.Append($"## INPUTS{Environment.NewLine}{Environment.NewLine}"); + foreach (var input in markdownInfo.Inputs) + { + sb.Append($"### {input}{Environment.NewLine}{Environment.NewLine}"); + } + + sb.Append($"## OUTPUTS{Environment.NewLine}{Environment.NewLine}"); + foreach (var output in markdownInfo.Outputs) + { + sb.Append($"### {output}{Environment.NewLine}{Environment.NewLine}"); + } + + sb.Append($"## NOTES{Environment.NewLine}{Environment.NewLine}"); + sb.Append($"ALIASES{Environment.NewLine}{Environment.NewLine}"); + foreach (var alias in markdownInfo.Aliases) + { + sb.Append($"### {alias}{Environment.NewLine}{Environment.NewLine}"); + } + if (markdownInfo.ComplexInterfaceInfos.Any()) + { + sb.Append($"{ComplexParameterHeader}{Environment.NewLine}"); + } + foreach (var complexInterfaceInfo in markdownInfo.ComplexInterfaceInfos) + { + sb.Append($"{complexInterfaceInfo.ToNoteOutput(includeDashes: true, includeBackticks: true)}{Environment.NewLine}{Environment.NewLine}"); + } + + sb.Append($"## RELATED LINKS{Environment.NewLine}{Environment.NewLine}"); + foreach (var relatedLink in markdownInfo.RelatedLinks) + { + sb.Append($"{relatedLink}{Environment.NewLine}{Environment.NewLine}"); + } + + File.WriteAllText(Path.Combine(docsFolder, $"{markdownInfo.CmdletName}.md"), sb.ToString()); + } + + WriteModulePage(moduleHelpInfo, markdownInfos, docsFolder); + } + + private static void WriteModulePage(PsModuleHelpInfo moduleInfo, MarkdownHelpInfo[] markdownInfos, string docsFolder) + { + var sb = new StringBuilder(); + sb.Append(moduleInfo.ToModulePageMetadataOutput()); + sb.Append($"# {moduleInfo.Name} Module{Environment.NewLine}"); + sb.Append($"## Description{Environment.NewLine}{moduleInfo.Description.ToDescriptionFormat()}{Environment.NewLine}{Environment.NewLine}"); + + sb.Append($"## {moduleInfo.Name} Cmdlets{Environment.NewLine}"); + foreach (var markdownInfo in markdownInfos) + { + sb.Append(markdownInfo.ToModulePageCmdletOutput()); + } + + File.WriteAllText(Path.Combine(docsFolder, $"{moduleInfo.Name}.md"), sb.ToString()); + } + } +} diff --git a/src/DedicatedHsm/generated/runtime/BuildTime/Models/PsFormatTypes.cs b/src/DedicatedHsm/generated/runtime/BuildTime/Models/PsFormatTypes.cs new file mode 100644 index 000000000000..86b7aad07dac --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/BuildTime/Models/PsFormatTypes.cs @@ -0,0 +1,138 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Reflection; +using System.Xml.Serialization; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell +{ + internal class ViewParameters + { + public Type Type { get; } + public IEnumerable Properties { get; } + + public ViewParameters(Type type, IEnumerable properties) + { + Type = type; + Properties = properties; + } + } + + internal class PropertyFormat + { + public PropertyInfo Property { get; } + public FormatTableAttribute FormatTable { get; } + + public int? Index { get; } + public string Label { get; } + public int? Width { get; } + public PropertyOrigin? Origin { get; } + + public PropertyFormat(PropertyInfo propertyInfo) + { + Property = propertyInfo; + FormatTable = Property.GetCustomAttributes().FirstOrDefault(); + var origin = Property.GetCustomAttributes().FirstOrDefault(); + + Index = FormatTable?.HasIndex ?? false ? (int?)FormatTable.Index : null; + Label = FormatTable?.Label ?? propertyInfo.Name; + Width = FormatTable?.HasWidth ?? false ? (int?)FormatTable.Width : null; + // If we have an index, we don't want to use Origin. + Origin = FormatTable?.HasIndex ?? false ? null : origin?.Origin; + } + } + + [Serializable] + [XmlRoot(nameof(Configuration))] + public class Configuration + { + [XmlElement("ViewDefinitions")] + public ViewDefinitions ViewDefinitions { get; set; } + } + + [Serializable] + public class ViewDefinitions + { + //https://stackoverflow.com/a/10518657/294804 + [XmlElement("View")] + public List Views { get; set; } + } + + [Serializable] + public class View + { + [XmlElement(nameof(Name))] + public string Name { get; set; } + [XmlElement(nameof(ViewSelectedBy))] + public ViewSelectedBy ViewSelectedBy { get; set; } + [XmlElement(nameof(TableControl))] + public TableControl TableControl { get; set; } + } + + [Serializable] + public class ViewSelectedBy + { + [XmlElement(nameof(TypeName))] + public string TypeName { get; set; } + } + + [Serializable] + public class TableControl + { + [XmlElement(nameof(TableHeaders))] + public TableHeaders TableHeaders { get; set; } + [XmlElement(nameof(TableRowEntries))] + public TableRowEntries TableRowEntries { get; set; } + } + + [Serializable] + public class TableHeaders + { + [XmlElement("TableColumnHeader")] + public List TableColumnHeaders { get; set; } + } + + [Serializable] + public class TableColumnHeader + { + [XmlElement(nameof(Label))] + public string Label { get; set; } + [XmlElement(nameof(Width))] + public int? Width { get; set; } + + //https://stackoverflow.com/a/4095225/294804 + public bool ShouldSerializeWidth() => Width.HasValue; + } + + [Serializable] + public class TableRowEntries + { + [XmlElement(nameof(TableRowEntry))] + public TableRowEntry TableRowEntry { get; set; } + } + + [Serializable] + public class TableRowEntry + { + [XmlElement(nameof(TableColumnItems))] + public TableColumnItems TableColumnItems { get; set; } + } + + [Serializable] + public class TableColumnItems + { + [XmlElement("TableColumnItem")] + public List TableItems { get; set; } + } + + [Serializable] + public class TableColumnItem + { + [XmlElement(nameof(PropertyName))] + public string PropertyName { get; set; } + } +} diff --git a/src/DedicatedHsm/generated/runtime/BuildTime/Models/PsHelpMarkdownOutputs.cs b/src/DedicatedHsm/generated/runtime/BuildTime/Models/PsHelpMarkdownOutputs.cs new file mode 100644 index 000000000000..0d9cfd781e1b --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/BuildTime/Models/PsHelpMarkdownOutputs.cs @@ -0,0 +1,177 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Linq; +using System.Management.Automation; +using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.PsHelpOutputExtensions; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell +{ + internal class HelpMetadataOutput + { + public MarkdownHelpInfo HelpInfo { get; } + + public HelpMetadataOutput(MarkdownHelpInfo helpInfo) + { + HelpInfo = helpInfo; + } + + public override string ToString() => $@"--- +external help file:{(!String.IsNullOrEmpty(HelpInfo.ExternalHelpFilename) ? $" {HelpInfo.ExternalHelpFilename}" : String.Empty)} +Module Name: {HelpInfo.ModuleName} +online version: {HelpInfo.OnlineVersion} +schema: {HelpInfo.Schema.ToString(3)} +--- + +"; + } + + internal class HelpSyntaxOutput + { + public MarkdownSyntaxHelpInfo SyntaxInfo { get; } + public bool HasMultipleParameterSets { get; } + + public HelpSyntaxOutput(MarkdownSyntaxHelpInfo syntaxInfo, bool hasMultipleParameterSets) + { + SyntaxInfo = syntaxInfo; + HasMultipleParameterSets = hasMultipleParameterSets; + } + + public override string ToString() + { + var psnText = HasMultipleParameterSets ? $"### {SyntaxInfo.ParameterSetName}{(SyntaxInfo.IsDefault ? " (Default)" : String.Empty)}{Environment.NewLine}" : String.Empty; + return $@"{psnText}``` +{SyntaxInfo.SyntaxText} +``` + +"; + } + } + + internal class HelpExampleOutput + { + public MarkdownExampleHelpInfo ExampleInfo { get; } + + public HelpExampleOutput(MarkdownExampleHelpInfo exampleInfo) + { + ExampleInfo = exampleInfo; + } + + public override string ToString() => $@"{ExampleNameHeader}{ExampleInfo.Name} +{ExampleCodeHeader} +{ExampleInfo.Code} +{ExampleCodeFooter} + +{ExampleInfo.Description.ToDescriptionFormat()} + +"; + } + + + internal class HelpParameterOutput + { + public MarkdownParameterHelpInfo ParameterInfo { get; } + + public HelpParameterOutput(MarkdownParameterHelpInfo parameterInfo) + { + ParameterInfo = parameterInfo; + } + + public override string ToString() + { + var pipelineInputTypes = new[] + { + ParameterInfo.AcceptsPipelineByValue ? "ByValue" : String.Empty, + ParameterInfo.AcceptsPipelineByPropertyName ? "ByPropertyName" : String.Empty + }.JoinIgnoreEmpty(", "); + var pipelineInput = ParameterInfo.AcceptsPipelineByValue || ParameterInfo.AcceptsPipelineByPropertyName + ? $@"{true} ({pipelineInputTypes})" + : false.ToString(); + + return $@"### -{ParameterInfo.Name} +{ParameterInfo.Description.ToDescriptionFormat()} + +```yaml +Type: {ParameterInfo.Type.FullName} +Parameter Sets: {(ParameterInfo.HasAllParameterSets ? "(All)" : ParameterInfo.ParameterSetNames.JoinIgnoreEmpty(", "))} +Aliases:{(ParameterInfo.Aliases.Any() ? $" {ParameterInfo.Aliases.JoinIgnoreEmpty(", ")}" : String.Empty)} + +Required: {ParameterInfo.IsRequired} +Position: {ParameterInfo.Position} +Default value: {ParameterInfo.DefaultValue} +Accept pipeline input: {pipelineInput} +Accept wildcard characters: {ParameterInfo.AcceptsWildcardCharacters} +``` + +"; + } + } + + internal class ModulePageMetadataOutput + { + public PsModuleHelpInfo ModuleInfo { get; } + + private static string HelpLinkPrefix { get; } = @"https://docs.microsoft.com/en-us/powershell/module/"; + + public ModulePageMetadataOutput(PsModuleHelpInfo moduleInfo) + { + ModuleInfo = moduleInfo; + } + + public override string ToString() => $@"--- +Module Name: {ModuleInfo.Name} +Module Guid: {ModuleInfo.Guid} +Download Help Link: {HelpLinkPrefix}{ModuleInfo.Name.ToLowerInvariant()} +Help Version: 1.0.0.0 +Locale: en-US +--- + +"; + } + + internal class ModulePageCmdletOutput + { + public MarkdownHelpInfo HelpInfo { get; } + + public ModulePageCmdletOutput(MarkdownHelpInfo helpInfo) + { + HelpInfo = helpInfo; + } + + public override string ToString() => $@"### [{HelpInfo.CmdletName}]({HelpInfo.CmdletName}.md) +{HelpInfo.Description.ToDescriptionFormat()} + +"; + } + + internal static class PsHelpOutputExtensions + { + public static string EscapeAngleBrackets(this string text) => text?.Replace("<", @"\<").Replace(">", @"\>"); + public static string ReplaceSentenceEndWithNewline(this string text) => text?.Replace(". ", $".{Environment.NewLine}").Replace(". ", $".{Environment.NewLine}"); + public static string ReplaceBrWithNewline(this string text) => text?.Replace("
", $"{Environment.NewLine}"); + public static string ToDescriptionFormat(this string text, bool escapeAngleBrackets = true) + { + var description = text?.ReplaceBrWithNewline(); + description = escapeAngleBrackets ? description?.EscapeAngleBrackets() : description; + return description?.ReplaceSentenceEndWithNewline().Trim(); + } + + public const string ExampleNameHeader = "### "; + public const string ExampleCodeHeader = "```powershell"; + public const string ExampleCodeFooter = "```"; + + public static HelpMetadataOutput ToHelpMetadataOutput(this MarkdownHelpInfo helpInfo) => new HelpMetadataOutput(helpInfo); + + public static HelpSyntaxOutput ToHelpSyntaxOutput(this MarkdownSyntaxHelpInfo syntaxInfo, bool hasMultipleParameterSets) => new HelpSyntaxOutput(syntaxInfo, hasMultipleParameterSets); + + public static HelpExampleOutput ToHelpExampleOutput(this MarkdownExampleHelpInfo exampleInfo) => new HelpExampleOutput(exampleInfo); + + public static HelpParameterOutput ToHelpParameterOutput(this MarkdownParameterHelpInfo parameterInfo) => new HelpParameterOutput(parameterInfo); + + public static ModulePageMetadataOutput ToModulePageMetadataOutput(this PsModuleHelpInfo moduleInfo) => new ModulePageMetadataOutput(moduleInfo); + + public static ModulePageCmdletOutput ToModulePageCmdletOutput(this MarkdownHelpInfo helpInfo) => new ModulePageCmdletOutput(helpInfo); + } +} diff --git a/src/DedicatedHsm/generated/runtime/BuildTime/Models/PsHelpTypes.cs b/src/DedicatedHsm/generated/runtime/BuildTime/Models/PsHelpTypes.cs new file mode 100644 index 000000000000..2354e1753a05 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/BuildTime/Models/PsHelpTypes.cs @@ -0,0 +1,199 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Management.Automation; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell +{ + internal class PsHelpInfo + { + public string CmdletName { get; } + public string ModuleName { get; } + public string Synopsis { get; } + public string Description { get; } + public string AlertText { get; } + public string Category { get; } + public PsHelpLinkInfo OnlineVersion { get; } + public PsHelpLinkInfo[] RelatedLinks { get; } + public bool? HasCommonParameters { get; } + public bool? HasWorkflowCommonParameters { get; } + + public PsHelpTypeInfo[] InputTypes { get; } + public PsHelpTypeInfo[] OutputTypes { get; } + public PsHelpExampleInfo[] Examples { get; set; } + public string[] Aliases { get; } + + public PsParameterHelpInfo[] Parameters { get; } + public PsHelpSyntaxInfo[] Syntax { get; } + + public object Component { get; } + public object Functionality { get; } + public object PsSnapIn { get; } + public object Role { get; } + public string NonTerminatingErrors { get; } + + public PsHelpInfo(PSObject helpObject = null) + { + helpObject = helpObject ?? new PSObject(); + CmdletName = helpObject.GetProperty("Name").NullIfEmpty() ?? helpObject.GetNestedProperty("details", "name"); + ModuleName = helpObject.GetProperty("ModuleName"); + Synopsis = helpObject.GetProperty("Synopsis"); + Description = helpObject.GetProperty("description").EmptyIfNull().ToDescriptionText().NullIfEmpty() ?? + helpObject.GetNestedProperty("details", "description").EmptyIfNull().ToDescriptionText(); + AlertText = helpObject.GetNestedProperty("alertSet", "alert").EmptyIfNull().ToDescriptionText(); + Category = helpObject.GetProperty("Category"); + HasCommonParameters = helpObject.GetProperty("CommonParameters").ToNullableBool(); + HasWorkflowCommonParameters = helpObject.GetProperty("WorkflowCommonParameters").ToNullableBool(); + + var links = helpObject.GetNestedProperty("relatedLinks", "navigationLink").EmptyIfNull().Select(nl => nl.ToLinkInfo()).ToArray(); + OnlineVersion = links.FirstOrDefault(l => l.Text?.ToLowerInvariant().StartsWith("online version:") ?? links.Length == 1); + RelatedLinks = links.Where(l => !l.Text?.ToLowerInvariant().StartsWith("online version:") ?? links.Length != 1).ToArray(); + + InputTypes = helpObject.GetNestedProperty("inputTypes", "inputType").EmptyIfNull().Select(it => it.ToTypeInfo()).ToArray(); + OutputTypes = helpObject.GetNestedProperty("returnValues", "returnValue").EmptyIfNull().Select(rv => rv.ToTypeInfo()).ToArray(); + Examples = helpObject.GetNestedProperty("examples", "example").EmptyIfNull().Select(e => e.ToExampleInfo()).ToArray(); + Aliases = helpObject.GetProperty("aliases").EmptyIfNull().Split(new[] { Environment.NewLine }, StringSplitOptions.RemoveEmptyEntries); + + Parameters = helpObject.GetNestedProperty("parameters", "parameter").EmptyIfNull().Select(p => p.ToPsParameterHelpInfo()).ToArray(); + Syntax = helpObject.GetNestedProperty("syntax", "syntaxItem").EmptyIfNull().Select(si => si.ToSyntaxInfo()).ToArray(); + + Component = helpObject.GetProperty("Component"); + Functionality = helpObject.GetProperty("Functionality"); + PsSnapIn = helpObject.GetProperty("PSSnapIn"); + Role = helpObject.GetProperty("Role"); + NonTerminatingErrors = helpObject.GetProperty("nonTerminatingErrors"); + } + } + + internal class PsHelpTypeInfo + { + public string Name { get; } + public string Description { get; } + + public PsHelpTypeInfo(PSObject typeObject) + { + Name = typeObject.GetNestedProperty("type", "name").EmptyIfNull().Trim(); + Description = typeObject.GetProperty("description").EmptyIfNull().ToDescriptionText(); + } + } + + internal class PsHelpLinkInfo + { + public string Uri { get; } + public string Text { get; } + + public PsHelpLinkInfo(PSObject linkObject) + { + Uri = linkObject.GetProperty("uri"); + Text = linkObject.GetProperty("linkText"); + } + } + + internal class PsHelpSyntaxInfo + { + public string CmdletName { get; } + public PsParameterHelpInfo[] Parameters { get; } + + public PsHelpSyntaxInfo(PSObject syntaxObject) + { + CmdletName = syntaxObject.GetProperty("name"); + Parameters = syntaxObject.GetProperty("parameter").EmptyIfNull().Select(p => p.ToPsParameterHelpInfo()).ToArray(); + } + } + + internal class PsHelpExampleInfo + { + public string Title { get; } + public string Code { get; } + public string Remarks { get; } + + public PsHelpExampleInfo(PSObject exampleObject) + { + Title = exampleObject.GetProperty("title"); + Code = exampleObject.GetProperty("code"); + Remarks = exampleObject.GetProperty("remarks").EmptyIfNull().ToDescriptionText(); + } + public PsHelpExampleInfo(MarkdownExampleHelpInfo markdownExample) + { + Title = markdownExample.Name; + Code = markdownExample.Code; + Remarks = markdownExample.Description; + } + + public static implicit operator PsHelpExampleInfo(MarkdownExampleHelpInfo markdownExample) => new PsHelpExampleInfo(markdownExample); + } + + internal class PsParameterHelpInfo + { + public string DefaultValueAsString { get; } + + public string Name { get; } + public string TypeName { get; } + public string Description { get; } + public string SupportsPipelineInput { get; } + public string PositionText { get; } + public string[] ParameterSetNames { get; } + public string[] Aliases { get; } + + public bool? SupportsGlobbing { get; } + public bool? IsRequired { get; } + public bool? IsVariableLength { get; } + public bool? IsDynamic { get; } + + public PsParameterHelpInfo(PSObject parameterHelpObject = null) + { + parameterHelpObject = parameterHelpObject ?? new PSObject(); + DefaultValueAsString = parameterHelpObject.GetProperty("defaultValue"); + Name = parameterHelpObject.GetProperty("name"); + TypeName = parameterHelpObject.GetProperty("parameterValue").NullIfEmpty() ?? parameterHelpObject.GetNestedProperty("type", "name"); + Description = parameterHelpObject.GetProperty("Description").EmptyIfNull().ToDescriptionText(); + SupportsPipelineInput = parameterHelpObject.GetProperty("pipelineInput"); + PositionText = parameterHelpObject.GetProperty("position"); + ParameterSetNames = parameterHelpObject.GetProperty("parameterSetName").EmptyIfNull().Split(new[] { ", " }, StringSplitOptions.RemoveEmptyEntries); + Aliases = parameterHelpObject.GetProperty("aliases").EmptyIfNull().Split(new[] { ", " }, StringSplitOptions.RemoveEmptyEntries); + + SupportsGlobbing = parameterHelpObject.GetProperty("globbing").ToNullableBool(); + IsRequired = parameterHelpObject.GetProperty("required").ToNullableBool(); + IsVariableLength = parameterHelpObject.GetProperty("variableLength").ToNullableBool(); + IsDynamic = parameterHelpObject.GetProperty("isDynamic").ToNullableBool(); + } + } + + internal class PsModuleHelpInfo + { + public string Name { get; } + public Guid Guid { get; } + public string Description { get; } + + public PsModuleHelpInfo(PSModuleInfo moduleInfo) + : this(moduleInfo?.Name ?? String.Empty, moduleInfo?.Guid ?? Guid.NewGuid(), moduleInfo?.Description ?? String.Empty) + { + } + + public PsModuleHelpInfo(string name, Guid guid, string description) + { + Name = name; + Guid = guid; + Description = description; + } + } + + internal static class HelpTypesExtensions + { + public static PsHelpInfo ToPsHelpInfo(this PSObject helpObject) => new PsHelpInfo(helpObject); + public static PsParameterHelpInfo ToPsParameterHelpInfo(this PSObject parameterHelpObject) => new PsParameterHelpInfo(parameterHelpObject); + + public static string ToDescriptionText(this IEnumerable descriptionObject) => descriptionObject != null + ? String.Join(Environment.NewLine, descriptionObject.Select(dl => dl.GetProperty("Text").EmptyIfNull())).NullIfWhiteSpace() + : null; + public static PsHelpTypeInfo ToTypeInfo(this PSObject typeObject) => new PsHelpTypeInfo(typeObject); + public static PsHelpExampleInfo ToExampleInfo(this PSObject exampleObject) => new PsHelpExampleInfo(exampleObject); + public static PsHelpLinkInfo ToLinkInfo(this PSObject linkObject) => new PsHelpLinkInfo(linkObject); + public static PsHelpSyntaxInfo ToSyntaxInfo(this PSObject syntaxObject) => new PsHelpSyntaxInfo(syntaxObject); + public static PsModuleHelpInfo ToModuleInfo(this PSModuleInfo moduleInfo) => new PsModuleHelpInfo(moduleInfo); + } +} diff --git a/src/DedicatedHsm/generated/runtime/BuildTime/Models/PsMarkdownTypes.cs b/src/DedicatedHsm/generated/runtime/BuildTime/Models/PsMarkdownTypes.cs new file mode 100644 index 000000000000..29d8337c41d9 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/BuildTime/Models/PsMarkdownTypes.cs @@ -0,0 +1,291 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Management.Automation; +using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.MarkdownTypesExtensions; +using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.PsHelpOutputExtensions; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell +{ + internal class MarkdownHelpInfo + { + public string ExternalHelpFilename { get; } + public string ModuleName { get; } + public string OnlineVersion { get; } + public Version Schema { get; } + + public string CmdletName { get; } + public string[] Aliases { get; } + public string Synopsis { get; } + public string Description { get; } + + public MarkdownSyntaxHelpInfo[] SyntaxInfos { get; } + public MarkdownExampleHelpInfo[] Examples { get; } + public MarkdownParameterHelpInfo[] Parameters { get; } + + public string[] Inputs { get; } + public string[] Outputs { get; } + public ComplexInterfaceInfo[] ComplexInterfaceInfos { get; } + public string[] RelatedLinks { get; } + + public bool SupportsShouldProcess { get; } + public bool SupportsPaging { get; } + + public MarkdownHelpInfo(VariantGroup variantGroup, string examplesFolder, string externalHelpFilename = "") + { + ExternalHelpFilename = externalHelpFilename; + ModuleName = variantGroup.ModuleName; + var helpInfo = variantGroup.HelpInfo; + var commentInfo = variantGroup.CommentInfo; + Schema = Version.Parse("2.0.0"); + + CmdletName = variantGroup.CmdletName; + Aliases = (variantGroup.Aliases.NullIfEmpty() ?? helpInfo.Aliases).Where(a => a != "None").ToArray(); + Synopsis = commentInfo.Synopsis; + Description = commentInfo.Description; + + SyntaxInfos = variantGroup.Variants + .Select(v => new MarkdownSyntaxHelpInfo(v, variantGroup.ParameterGroups, v.VariantName == variantGroup.DefaultParameterSetName)) + .OrderByDescending(v => v.IsDefault).ThenBy(v => v.ParameterSetName).ToArray(); + Examples = GetExamplesFromMarkdown(examplesFolder).NullIfEmpty() + ?? helpInfo.Examples.Select(e => e.ToExampleHelpInfo()).ToArray().NullIfEmpty() + ?? DefaultExampleHelpInfos; + + Parameters = variantGroup.ParameterGroups + .Where(pg => !pg.DontShow) + .Select(pg => new MarkdownParameterHelpInfo( + variantGroup.Variants.SelectMany(v => v.HelpInfo.Parameters).Where(phi => phi.Name == pg.ParameterName).ToArray(), pg)) + .OrderBy(phi => phi.Name).ToArray(); + + Inputs = commentInfo.Inputs; + Outputs = commentInfo.Outputs; + + ComplexInterfaceInfos = variantGroup.ComplexInterfaceInfos; + OnlineVersion = commentInfo.OnlineVersion; + RelatedLinks = commentInfo.RelatedLinks; + + SupportsShouldProcess = variantGroup.SupportsShouldProcess; + SupportsPaging = variantGroup.SupportsPaging; + } + + private MarkdownExampleHelpInfo[] GetExamplesFromMarkdown(string examplesFolder) + { + var filePath = Path.Combine(examplesFolder, $"{CmdletName}.md"); + if (!Directory.Exists(examplesFolder) || !File.Exists(filePath)) return null; + + var lines = File.ReadAllLines(filePath); + var nameIndices = lines.Select((l, i) => l.StartsWith(ExampleNameHeader) ? i : -1).Where(i => i != -1).ToArray(); + //https://codereview.stackexchange.com/a/187148/68772 + var indexCountGroups = nameIndices.Skip(1).Append(lines.Length).Zip(nameIndices, (next, current) => (NameIndex: current, LineCount: next - current)); + var exampleGroups = indexCountGroups.Select(icg => lines.Skip(icg.NameIndex).Take(icg.LineCount).ToArray()); + return exampleGroups.Select(eg => + { + var name = eg.First().Replace(ExampleNameHeader, String.Empty); + var codeStartIndex = eg.Select((l, i) => l.StartsWith(ExampleCodeHeader) ? (int?)i : null).FirstOrDefault(i => i.HasValue); + var codeEndIndex = eg.Select((l, i) => l.StartsWith(ExampleCodeFooter) ? (int?)i : null).FirstOrDefault(i => i.HasValue && i != codeStartIndex); + var code = codeStartIndex.HasValue && codeEndIndex.HasValue + ? String.Join(Environment.NewLine, eg.Skip(codeStartIndex.Value + 1).Take(codeEndIndex.Value - (codeStartIndex.Value + 1))) + : String.Empty; + var descriptionStartIndex = (codeEndIndex ?? 0) + 1; + descriptionStartIndex = String.IsNullOrWhiteSpace(eg[descriptionStartIndex]) ? descriptionStartIndex + 1 : descriptionStartIndex; + var descriptionEndIndex = eg.Length - 1; + descriptionEndIndex = String.IsNullOrWhiteSpace(eg[descriptionEndIndex]) ? descriptionEndIndex - 1 : descriptionEndIndex; + var description = String.Join(Environment.NewLine, eg.Skip(descriptionStartIndex).Take((descriptionEndIndex + 1) - descriptionStartIndex)); + return new MarkdownExampleHelpInfo(name, code, description); + }).ToArray(); + } + } + + internal class MarkdownSyntaxHelpInfo + { + public Variant Variant { get; } + public bool IsDefault { get; } + public string ParameterSetName { get; } + public Parameter[] Parameters { get; } + public string SyntaxText { get; } + + public MarkdownSyntaxHelpInfo(Variant variant, ParameterGroup[] parameterGroups, bool isDefault) + { + Variant = variant; + IsDefault = isDefault; + ParameterSetName = Variant.VariantName; + Parameters = Variant.Parameters + .Where(p => !p.DontShow).OrderByDescending(p => p.IsMandatory) + //https://stackoverflow.com/a/6461526/294804 + .ThenByDescending(p => p.Position.HasValue).ThenBy(p => p.Position) + // Use the OrderCategory of the parameter group because the final order category is the highest of the group, and not the order category of the individual parameters from the variants. + .ThenBy(p => parameterGroups.First(pg => pg.ParameterName == p.ParameterName).OrderCategory).ThenBy(p => p.ParameterName).ToArray(); + SyntaxText = CreateSyntaxFormat(); + } + + //https://github.com/PowerShell/platyPS/blob/a607a926bfffe1e1a1e53c19e0057eddd0c07611/src/Markdown.MAML/Renderer/Markdownv2Renderer.cs#L29-L32 + private const int SyntaxLineWidth = 110; + private string CreateSyntaxFormat() + { + var parameterStrings = Parameters.Select(p => p.ToPropertySyntaxOutput().ToString()); + if (Variant.SupportsShouldProcess) + { + parameterStrings = parameterStrings.Append(" [-Confirm]").Append(" [-WhatIf]"); + } + if (Variant.SupportsPaging) + { + parameterStrings = parameterStrings.Append(" [-First ]").Append(" [-IncludeTotalCount]").Append(" [-Skip ]"); + } + parameterStrings = parameterStrings.Append(" []"); + + var lines = new List(20); + return parameterStrings.Aggregate(Variant.CmdletName, (current, ps) => + { + var combined = current + ps; + if (combined.Length <= SyntaxLineWidth) return combined; + + lines.Add(current); + return ps; + }, last => + { + lines.Add(last); + return String.Join(Environment.NewLine, lines); + }); + } + } + + internal class MarkdownExampleHelpInfo + { + public string Name { get; } + public string Code { get; } + public string Description { get; } + + public MarkdownExampleHelpInfo(string name, string code, string description) + { + Name = name; + Code = code; + Description = description; + } + } + + internal class MarkdownParameterHelpInfo + { + public string Name { get; set; } + public string Description { get; set; } + public Type Type { get; set; } + public string Position { get; set; } + public string DefaultValue { get; set; } + + public bool HasAllParameterSets { get; set; } + public string[] ParameterSetNames { get; set; } + public string[] Aliases { get; set; } + + public bool IsRequired { get; set; } + public bool IsDynamic { get; set; } + public bool AcceptsPipelineByValue { get; set; } + public bool AcceptsPipelineByPropertyName { get; set; } + public bool AcceptsWildcardCharacters { get; set; } + + // For use by common parameters that have no backing data in the objects themselves. + public MarkdownParameterHelpInfo() { } + + public MarkdownParameterHelpInfo(PsParameterHelpInfo[] parameterHelpInfos, ParameterGroup parameterGroup) + { + Name = parameterGroup.ParameterName; + Description = parameterGroup.Description.NullIfEmpty() + ?? parameterHelpInfos.Select(phi => phi.Description).FirstOrDefault(d => !String.IsNullOrEmpty(d)).EmptyIfNull(); + Type = parameterGroup.ParameterType; + Position = parameterGroup.FirstPosition?.ToString() + ?? parameterHelpInfos.Select(phi => phi.PositionText).FirstOrDefault(d => !String.IsNullOrEmpty(d)).ToUpperFirstCharacter().NullIfEmpty() + ?? "Named"; + // This no longer uses firstHelpInfo.DefaultValueAsString since it seems to be broken. For example, it has a value of 0 for Int32, but no default value was declared. + DefaultValue = parameterGroup.DefaultInfo?.Script ?? "None"; + + HasAllParameterSets = parameterGroup.HasAllVariants; + ParameterSetNames = (parameterGroup.Parameters.Select(p => p.VariantName).ToArray().NullIfEmpty() + ?? parameterHelpInfos.SelectMany(phi => phi.ParameterSetNames).Distinct()) + .OrderBy(psn => psn).ToArray(); + Aliases = parameterGroup.Aliases.NullIfEmpty() ?? parameterHelpInfos.SelectMany(phi => phi.Aliases).ToArray(); + + IsRequired = parameterHelpInfos.Select(phi => phi.IsRequired).FirstOrDefault(r => r == true) ?? parameterGroup.Parameters.Any(p => p.IsMandatory); + IsDynamic = parameterHelpInfos.Select(phi => phi.IsDynamic).FirstOrDefault(d => d == true) ?? false; + AcceptsPipelineByValue = parameterHelpInfos.Select(phi => phi.SupportsPipelineInput?.Contains("ByValue")).FirstOrDefault(bv => bv == true) ?? parameterGroup.ValueFromPipeline; + AcceptsPipelineByPropertyName = parameterHelpInfos.Select(phi => phi.SupportsPipelineInput?.Contains("ByPropertyName")).FirstOrDefault(bv => bv == true) ?? parameterGroup.ValueFromPipelineByPropertyName; + AcceptsWildcardCharacters = parameterGroup.SupportsWildcards; + } + } + + internal static class MarkdownTypesExtensions + { + public static MarkdownExampleHelpInfo ToExampleHelpInfo(this PsHelpExampleInfo exampleInfo) => new MarkdownExampleHelpInfo(exampleInfo.Title, exampleInfo.Code, exampleInfo.Remarks); + + public static MarkdownExampleHelpInfo[] DefaultExampleHelpInfos = + { + new MarkdownExampleHelpInfo("Example 1: {{ Add title here }}", $@"PS C:\> {{{{ Add code here }}}}{Environment.NewLine}{Environment.NewLine}{{{{ Add output here }}}}", @"{{ Add description here }}"), + new MarkdownExampleHelpInfo("Example 2: {{ Add title here }}", $@"PS C:\> {{{{ Add code here }}}}{Environment.NewLine}{Environment.NewLine}{{{{ Add output here }}}}", @"{{ Add description here }}") + }; + + public static MarkdownParameterHelpInfo[] SupportsShouldProcessParameters = + { + new MarkdownParameterHelpInfo + { + Name = "Confirm", + Description ="Prompts you for confirmation before running the cmdlet.", + Type = typeof(SwitchParameter), + Position = "Named", + DefaultValue = "None", + HasAllParameterSets = true, + ParameterSetNames = new [] { "(All)" }, + Aliases = new [] { "cf" } + }, + new MarkdownParameterHelpInfo + { + Name = "WhatIf", + Description ="Shows what would happen if the cmdlet runs. The cmdlet is not run.", + Type = typeof(SwitchParameter), + Position = "Named", + DefaultValue = "None", + HasAllParameterSets = true, + ParameterSetNames = new [] { "(All)" }, + Aliases = new [] { "wi" } + } + }; + + public static MarkdownParameterHelpInfo[] SupportsPagingParameters = + { + new MarkdownParameterHelpInfo + { + Name = "First", + Description ="Gets only the first 'n' objects.", + Type = typeof(ulong), + Position = "Named", + DefaultValue = "None", + HasAllParameterSets = true, + ParameterSetNames = new [] { "(All)" }, + Aliases = new string[0] + }, + new MarkdownParameterHelpInfo + { + Name = "IncludeTotalCount", + Description ="Reports the number of objects in the data set (an integer) followed by the objects. If the cmdlet cannot determine the total count, it returns \"Unknown total count\".", + Type = typeof(SwitchParameter), + Position = "Named", + DefaultValue = "None", + HasAllParameterSets = true, + ParameterSetNames = new [] { "(All)" }, + Aliases = new string[0] + }, + new MarkdownParameterHelpInfo + { + Name = "Skip", + Description ="Ignores the first 'n' objects and then gets the remaining objects.", + Type = typeof(ulong), + Position = "Named", + DefaultValue = "None", + HasAllParameterSets = true, + ParameterSetNames = new [] { "(All)" }, + Aliases = new string[0] + } + }; + } +} diff --git a/src/DedicatedHsm/generated/runtime/BuildTime/Models/PsProxyOutputs.cs b/src/DedicatedHsm/generated/runtime/BuildTime/Models/PsProxyOutputs.cs new file mode 100644 index 000000000000..959e70159fd5 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/BuildTime/Models/PsProxyOutputs.cs @@ -0,0 +1,513 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Management.Automation; +using System.Text; +using System.Text.RegularExpressions; +using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.PsProxyOutputExtensions; +using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.PsProxyTypeExtensions; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell +{ + internal class OutputTypeOutput + { + public PSTypeName[] OutputTypes { get; } + + public OutputTypeOutput(IEnumerable outputTypes) + { + OutputTypes = outputTypes.ToArray(); + } + + public override string ToString() => OutputTypes != null && OutputTypes.Any() ? $"[OutputType({OutputTypes.Select(ot => $"[{ot}]").JoinIgnoreEmpty(ItemSeparator)})]{Environment.NewLine}" : String.Empty; + } + + internal class CmdletBindingOutput + { + public VariantGroup VariantGroup { get; } + + public CmdletBindingOutput(VariantGroup variantGroup) + { + VariantGroup = variantGroup; + } + + public override string ToString() + { + var dpsText = VariantGroup.DefaultParameterSetName.IsValidDefaultParameterSetName() ? $"DefaultParameterSetName='{VariantGroup.DefaultParameterSetName}'" : String.Empty; + var sspText = VariantGroup.SupportsShouldProcess ? $"SupportsShouldProcess{ItemSeparator}ConfirmImpact='Medium'" : String.Empty; + var pbText = $"PositionalBinding={false.ToPsBool()}"; + var propertyText = new[] { dpsText, pbText, sspText }.JoinIgnoreEmpty(ItemSeparator); + return $"[CmdletBinding({propertyText})]{Environment.NewLine}"; + } + } + + internal class ParameterOutput + { + public Parameter Parameter { get; } + public bool HasMultipleVariantsInVariantGroup { get; } + public bool HasAllVariantsInParameterGroup { get; } + + public ParameterOutput(Parameter parameter, bool hasMultipleVariantsInVariantGroup, bool hasAllVariantsInParameterGroup) + { + Parameter = parameter; + HasMultipleVariantsInVariantGroup = hasMultipleVariantsInVariantGroup; + HasAllVariantsInParameterGroup = hasAllVariantsInParameterGroup; + } + + public override string ToString() + { + var psnText = HasMultipleVariantsInVariantGroup && !HasAllVariantsInParameterGroup ? $"ParameterSetName='{Parameter.VariantName}'" : String.Empty; + var positionText = Parameter.Position != null ? $"Position={Parameter.Position}" : String.Empty; + var mandatoryText = Parameter.IsMandatory ? "Mandatory" : String.Empty; + var dontShowText = Parameter.DontShow ? "DontShow" : String.Empty; + var vfpText = Parameter.ValueFromPipeline ? "ValueFromPipeline" : String.Empty; + var vfpbpnText = Parameter.ValueFromPipelineByPropertyName ? "ValueFromPipelineByPropertyName" : String.Empty; + var propertyText = new[] { psnText, positionText, mandatoryText, dontShowText, vfpText, vfpbpnText }.JoinIgnoreEmpty(ItemSeparator); + return $"{Indent}[Parameter({propertyText})]{Environment.NewLine}"; + } + } + + internal class AliasOutput + { + public string[] Aliases { get; } + public bool IncludeIndent { get; } + + public AliasOutput(string[] aliases, bool includeIndent = false) + { + Aliases = aliases; + IncludeIndent = includeIndent; + } + + public override string ToString() => Aliases?.Any() ?? false ? $"{(IncludeIndent ? Indent : String.Empty)}[Alias({Aliases.Select(an => $"'{an}'").JoinIgnoreEmpty(ItemSeparator)})]{Environment.NewLine}" : String.Empty; + } + + internal class ValidateNotNullOutput + { + public bool HasValidateNotNull { get; } + + public ValidateNotNullOutput(bool hasValidateNotNull) + { + HasValidateNotNull = hasValidateNotNull; + } + + public override string ToString() => HasValidateNotNull ? $"{Indent}[ValidateNotNull()]{Environment.NewLine}" : String.Empty; + } + + internal class ArgumentCompleterOutput + { + public CompleterInfo CompleterInfo { get; } + + public ArgumentCompleterOutput(CompleterInfo completerInfo) + { + CompleterInfo = completerInfo; + } + + public override string ToString() => CompleterInfo != null + ? $"{Indent}[ArgumentCompleter({(CompleterInfo.IsTypeCompleter ? $"[{CompleterInfo.Type.Unwrap().ToPsType()}]" : $"{{{CompleterInfo.Script.ToPsSingleLine("; ")}}}")})]{Environment.NewLine}" + : String.Empty; + } + + internal class DefaultInfoOutput + { + public bool HasDefaultInfo { get; } + public DefaultInfo DefaultInfo { get; } + + public DefaultInfoOutput(ParameterGroup parameterGroup) + { + HasDefaultInfo = parameterGroup.HasDefaultInfo; + DefaultInfo = parameterGroup.DefaultInfo; + } + + public override string ToString() + { + var nameText = !String.IsNullOrEmpty(DefaultInfo?.Name) ? $"Name='{DefaultInfo?.Name}'" : String.Empty; + var descriptionText = !String.IsNullOrEmpty(DefaultInfo?.Description) ? $"Description='{DefaultInfo?.Description.ToPsStringLiteral()}'" : String.Empty; + var scriptText = !String.IsNullOrEmpty(DefaultInfo?.Script) ? $"Script='{DefaultInfo?.Script.ToPsSingleLine("; ")}'" : String.Empty; + var propertyText = new[] { nameText, descriptionText, scriptText }.JoinIgnoreEmpty(ItemSeparator); + return HasDefaultInfo ? $"{Indent}[{typeof(DefaultInfoAttribute).ToPsAttributeType()}({propertyText})]{Environment.NewLine}" : String.Empty; + } + } + + internal class ParameterTypeOutput + { + public Type ParameterType { get; } + + public ParameterTypeOutput(Type parameterType) + { + ParameterType = parameterType; + } + + public override string ToString() => $"{Indent}[{ParameterType.ToPsType()}]{Environment.NewLine}"; + } + + internal class ParameterNameOutput + { + public string ParameterName { get; } + public bool IsLast { get; } + + public ParameterNameOutput(string parameterName, bool isLast) + { + ParameterName = parameterName; + IsLast = isLast; + } + + public override string ToString() => $"{Indent}${{{ParameterName}}}{(IsLast ? String.Empty : $",{Environment.NewLine}")}{Environment.NewLine}"; + } + + internal class BeginOutput + { + public VariantGroup VariantGroup { get; } + + public BeginOutput(VariantGroup variantGroup) + { + VariantGroup = variantGroup; + } + + public override string ToString() => $@"begin {{ +{Indent}try {{ +{Indent}{Indent}$outBuffer = $null +{Indent}{Indent}if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) {{ +{Indent}{Indent}{Indent}$PSBoundParameters['OutBuffer'] = 1 +{Indent}{Indent}}} +{Indent}{Indent}$parameterSet = $PSCmdlet.ParameterSetName +{GetParameterSetToCmdletMapping()}{GetDefaultValuesStatements()} +{Indent}{Indent}$wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) +{Indent}{Indent}$scriptCmd = {{& $wrappedCmd @PSBoundParameters}} +{Indent}{Indent}$steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) +{Indent}{Indent}$steppablePipeline.Begin($PSCmdlet) +{Indent}}} catch {{ +{Indent}{Indent}throw +{Indent}}} +}} + +"; + + private string GetParameterSetToCmdletMapping() + { + var sb = new StringBuilder(); + sb.AppendLine($"{Indent}{Indent}$mapping = @{{"); + foreach (var variant in VariantGroup.Variants) + { + sb.AppendLine($@"{Indent}{Indent}{Indent}{variant.VariantName} = '{variant.PrivateModuleName}\{variant.PrivateCmdletName}';"); + } + sb.Append($"{Indent}{Indent}}}"); + return sb.ToString(); + } + + private string GetDefaultValuesStatements() + { + var defaultInfos = VariantGroup.ParameterGroups.Where(pg => pg.HasDefaultInfo).Select(pg => pg.DefaultInfo).ToArray(); + var sb = new StringBuilder(); + + foreach (var defaultInfo in defaultInfos) + { + var variantListString = defaultInfo.ParameterGroup.VariantNames.ToPsList(); + var parameterName = defaultInfo.ParameterGroup.ParameterName; + sb.AppendLine(); + sb.AppendLine($"{Indent}{Indent}if (({variantListString}) -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('{parameterName}')) {{"); + sb.AppendLine($"{Indent}{Indent}{Indent}$PSBoundParameters['{parameterName}'] = {defaultInfo.Script}"); + sb.Append($"{Indent}{Indent}}}"); + } + return sb.ToString(); + } + } + + internal class ProcessOutput + { + public override string ToString() => $@"process {{ +{Indent}try {{ +{Indent}{Indent}$steppablePipeline.Process($_) +{Indent}}} catch {{ +{Indent}{Indent}throw +{Indent}}} +}} + +"; + } + + internal class EndOutput + { + public override string ToString() => $@"end {{ +{Indent}try {{ +{Indent}{Indent}$steppablePipeline.End() +{Indent}}} catch {{ +{Indent}{Indent}throw +{Indent}}} +}} +"; + } + + internal class HelpCommentOutput + { + public VariantGroup VariantGroup { get; } + public CommentInfo CommentInfo { get; } + + public HelpCommentOutput(VariantGroup variantGroup) + { + VariantGroup = variantGroup; + CommentInfo = variantGroup.CommentInfo; + } + + public override string ToString() + { + var inputs = String.Join(Environment.NewLine, CommentInfo.Inputs.Select(i => $".Inputs{Environment.NewLine}{i}")); + var inputsText = !String.IsNullOrEmpty(inputs) ? $"{Environment.NewLine}{inputs}" : String.Empty; + var outputs = String.Join(Environment.NewLine, CommentInfo.Outputs.Select(o => $".Outputs{Environment.NewLine}{o}")); + var outputsText = !String.IsNullOrEmpty(outputs) ? $"{Environment.NewLine}{outputs}" : String.Empty; + var notes = String.Join($"{Environment.NewLine}{Environment.NewLine}", VariantGroup.ComplexInterfaceInfos.Select(cii => cii.ToNoteOutput())); + var notesText = !String.IsNullOrEmpty(notes) ? $"{Environment.NewLine}.Notes{Environment.NewLine}{ComplexParameterHeader}{notes}" : String.Empty; + var relatedLinks = String.Join(Environment.NewLine, CommentInfo.RelatedLinks.Select(l => $".Link{Environment.NewLine}{l}")); + var relatedLinksText = !String.IsNullOrEmpty(relatedLinks) ? $"{Environment.NewLine}{relatedLinks}" : String.Empty; + var examples = ""; + foreach (var example in VariantGroup.HelpInfo.Examples) + { + examples = examples + ".Example" + "\r\n" + example.Code + "\r\n"; + } + return $@"<# +.Synopsis +{CommentInfo.Synopsis.ToDescriptionFormat(false)} +.Description +{CommentInfo.Description.ToDescriptionFormat(false)} +{examples}{inputsText}{outputsText}{notesText} +.Link +{CommentInfo.OnlineVersion}{relatedLinksText} +#> +"; + } + } + + internal class ParameterDescriptionOutput + { + public string Description { get; } + + public ParameterDescriptionOutput(string description) + { + Description = description; + } + + public override string ToString() => !String.IsNullOrEmpty(Description) + ? Description.ToDescriptionFormat(false).NormalizeNewLines() + .Split(new [] { Environment.NewLine }, StringSplitOptions.None) + .Aggregate(String.Empty, (c, n) => c + $"{Indent}# {n}{Environment.NewLine}") + : String.Empty; + } + + internal class ProfileOutput + { + public string ProfileName { get; } + + public ProfileOutput(string profileName) + { + ProfileName = profileName; + } + + public override string ToString() => ProfileName != NoProfiles ? $"[{typeof(ProfileAttribute).ToPsAttributeType()}('{ProfileName}')]{Environment.NewLine}" : String.Empty; + } + + internal class DescriptionOutput + { + public string Description { get; } + + public DescriptionOutput(string description) + { + Description = description; + } + + public override string ToString() => !String.IsNullOrEmpty(Description) ? $"[{typeof(DescriptionAttribute).ToPsAttributeType()}('{Description.ToPsStringLiteral()}')]{Environment.NewLine}" : String.Empty; + } + + internal class ParameterCategoryOutput + { + public ParameterCategory Category { get; } + + public ParameterCategoryOutput(ParameterCategory category) + { + Category = category; + } + + public override string ToString() => $"{Indent}[{typeof(CategoryAttribute).ToPsAttributeType()}('{Category}')]{Environment.NewLine}"; + } + + internal class InfoOutput + { + public InfoAttribute Info { get; } + public Type ParameterType { get; } + + public InfoOutput(InfoAttribute info, Type parameterType) + { + Info = info; + ParameterType = parameterType; + } + + public override string ToString() + { + // Rendering of InfoAttribute members that are not used currently + /*var serializedNameText = Info.SerializedName != null ? $"SerializedName='{Info.SerializedName}'" : String.Empty; + var readOnlyText = Info.ReadOnly ? "ReadOnly" : String.Empty; + var descriptionText = !String.IsNullOrEmpty(Info.Description) ? $"Description='{Info.Description.ToPsStringLiteral()}'" : String.Empty;*/ + + var requiredText = Info.Required ? "Required" : String.Empty; + var unwrappedType = ParameterType.Unwrap(); + var hasValidPossibleTypes = Info.PossibleTypes.Any(pt => pt != unwrappedType); + var possibleTypesText = hasValidPossibleTypes + ? $"PossibleTypes=({Info.PossibleTypes.Select(pt => $"[{pt.ToPsType()}]").JoinIgnoreEmpty(ItemSeparator)})" + : String.Empty; + var propertyText = new[] { /*serializedNameText, */requiredText,/* readOnlyText,*/ possibleTypesText/*, descriptionText*/ }.JoinIgnoreEmpty(ItemSeparator); + return hasValidPossibleTypes ? $"{Indent}[{typeof(InfoAttribute).ToPsAttributeType()}({propertyText})]{Environment.NewLine}" : String.Empty; + } + } + + internal class PropertySyntaxOutput + { + public string ParameterName { get; } + public Type ParameterType { get; } + public bool IsMandatory { get; } + public int? Position { get; } + + public bool IncludeSpace { get; } + public bool IncludeDash { get; } + + public PropertySyntaxOutput(Parameter parameter) + { + ParameterName = parameter.ParameterName; + ParameterType = parameter.ParameterType; + IsMandatory = parameter.IsMandatory; + Position = parameter.Position; + IncludeSpace = true; + IncludeDash = true; + } + + public PropertySyntaxOutput(ComplexInterfaceInfo complexInterfaceInfo) + { + ParameterName = complexInterfaceInfo.Name; + ParameterType = complexInterfaceInfo.Type; + IsMandatory = complexInterfaceInfo.Required; + Position = null; + IncludeSpace = false; + IncludeDash = false; + } + + public override string ToString() + { + var leftOptional = !IsMandatory ? "[" : String.Empty; + var leftPositional = Position != null ? "[" : String.Empty; + var rightPositional = Position != null ? "]" : String.Empty; + var type = ParameterType != typeof(SwitchParameter) ? $" <{ParameterType.ToSyntaxTypeName()}>" : String.Empty; + var rightOptional = !IsMandatory ? "]" : String.Empty; + var space = IncludeSpace ? " " : String.Empty; + var dash = IncludeDash ? "-" : String.Empty; + return $"{space}{leftOptional}{leftPositional}{dash}{ParameterName}{rightPositional}{type}{rightOptional}"; + } + } + + internal static class PsProxyOutputExtensions + { + public const string NoParameters = "__NoParameters"; + + public const string AllParameterSets = "__AllParameterSets"; + + public const string HalfIndent = " "; + + public const string Indent = HalfIndent + HalfIndent; + + public const string ItemSeparator = ", "; + + public static readonly string ComplexParameterHeader = $"COMPLEX PARAMETER PROPERTIES{Environment.NewLine}{Environment.NewLine}To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables.{Environment.NewLine}{Environment.NewLine}"; + + public static string ToPsBool(this bool value) => $"${value.ToString().ToLowerInvariant()}"; + + public static string ToPsType(this Type type) + { + var regex = new Regex(@"^(.*)`{1}\d+(.*)$"); + var typeText = type.ToString(); + var match = regex.Match(typeText); + return match.Success ? $"{match.Groups[1]}{match.Groups[2]}" : typeText; + } + + public static string ToPsAttributeType(this Type type) => type.ToPsType().RemoveEnd("Attribute"); + + // https://stackoverflow.com/a/5284606/294804 + private static string RemoveEnd(this string text, string suffix) => text.EndsWith(suffix) ? text.Substring(0, text.Length - suffix.Length) : text; + + public static string ToPsSingleLine(this string value, string replacer = " ") => value.ReplaceNewLines(replacer, new []{"
", "\r\n", "\n"}); + + public static string ToPsStringLiteral(this string value) => value?.Replace("'", "''").Replace("‘", "''").Replace("’", "''").ToPsSingleLine().Trim() ?? String.Empty; + + public static string JoinIgnoreEmpty(this IEnumerable values, string separator) => String.Join(separator, values?.Where(v => !String.IsNullOrEmpty(v))); + + // https://stackoverflow.com/a/41961738/294804 + public static string ToSyntaxTypeName(this Type type) + { + if (type.IsGenericType && type.GetGenericTypeDefinition() == typeof(Nullable<>)) + { + return $"{type.GetGenericArguments().First().ToSyntaxTypeName()}?"; + } + + if (type.IsGenericType) + { + var genericTypes = String.Join(ItemSeparator, type.GetGenericArguments().Select(ToSyntaxTypeName)); + return $"{type.Name.Split('`').First()}<{genericTypes}>"; + } + + return type.Name; + } + + public static OutputTypeOutput ToOutputTypeOutput(this IEnumerable outputTypes) => new OutputTypeOutput(outputTypes); + + public static CmdletBindingOutput ToCmdletBindingOutput(this VariantGroup variantGroup) => new CmdletBindingOutput(variantGroup); + + public static ParameterOutput ToParameterOutput(this Parameter parameter, bool hasMultipleVariantsInVariantGroup, bool hasAllVariantsInParameterGroup) => new ParameterOutput(parameter, hasMultipleVariantsInVariantGroup, hasAllVariantsInParameterGroup); + + public static AliasOutput ToAliasOutput(this string[] aliases, bool includeIndent = false) => new AliasOutput(aliases, includeIndent); + + public static ValidateNotNullOutput ToValidateNotNullOutput(this bool hasValidateNotNull) => new ValidateNotNullOutput(hasValidateNotNull); + + public static ArgumentCompleterOutput ToArgumentCompleterOutput(this CompleterInfo completerInfo) => new ArgumentCompleterOutput(completerInfo); + + public static DefaultInfoOutput ToDefaultInfoOutput(this ParameterGroup parameterGroup) => new DefaultInfoOutput(parameterGroup); + + public static ParameterTypeOutput ToParameterTypeOutput(this Type parameterType) => new ParameterTypeOutput(parameterType); + + public static ParameterNameOutput ToParameterNameOutput(this string parameterName, bool isLast) => new ParameterNameOutput(parameterName, isLast); + + public static BeginOutput ToBeginOutput(this VariantGroup variantGroup) => new BeginOutput(variantGroup); + + public static ProcessOutput ToProcessOutput(this VariantGroup variantGroup) => new ProcessOutput(); + + public static EndOutput ToEndOutput(this VariantGroup variantGroup) => new EndOutput(); + + public static HelpCommentOutput ToHelpCommentOutput(this VariantGroup variantGroup) => new HelpCommentOutput(variantGroup); + + public static ParameterDescriptionOutput ToParameterDescriptionOutput(this string description) => new ParameterDescriptionOutput(description); + + public static ProfileOutput ToProfileOutput(this string profileName) => new ProfileOutput(profileName); + + public static DescriptionOutput ToDescriptionOutput(this string description) => new DescriptionOutput(description); + + public static ParameterCategoryOutput ToParameterCategoryOutput(this ParameterCategory category) => new ParameterCategoryOutput(category); + + public static PropertySyntaxOutput ToPropertySyntaxOutput(this Parameter parameter) => new PropertySyntaxOutput(parameter); + + public static PropertySyntaxOutput ToPropertySyntaxOutput(this ComplexInterfaceInfo complexInterfaceInfo) => new PropertySyntaxOutput(complexInterfaceInfo); + + public static InfoOutput ToInfoOutput(this InfoAttribute info, Type parameterType) => new InfoOutput(info, parameterType); + + public static string ToNoteOutput(this ComplexInterfaceInfo complexInterfaceInfo, string currentIndent = "", bool includeDashes = false, bool includeBackticks = false, bool isFirst = true) + { + string RenderProperty(ComplexInterfaceInfo info, string indent, bool dash, bool backtick) => + $"{indent}{(dash ? "- " : String.Empty)}{(backtick ? "`" : String.Empty)}{info.ToPropertySyntaxOutput()}{(backtick ? "`" : String.Empty)}: {info.Description}"; + + var nested = complexInterfaceInfo.NestedInfos.Select(ni => + { + var nestedIndent = $"{currentIndent}{HalfIndent}"; + return ni.IsComplexInterface + ? ni.ToNoteOutput(nestedIndent, includeDashes, includeBackticks, false) + : RenderProperty(ni, nestedIndent, includeDashes, includeBackticks); + }).Prepend(RenderProperty(complexInterfaceInfo, currentIndent, !isFirst && includeDashes, !isFirst && includeBackticks)); + return String.Join(Environment.NewLine, nested); + } + } +} diff --git a/src/DedicatedHsm/generated/runtime/BuildTime/Models/PsProxyTypes.cs b/src/DedicatedHsm/generated/runtime/BuildTime/Models/PsProxyTypes.cs new file mode 100644 index 000000000000..01f66f798d55 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/BuildTime/Models/PsProxyTypes.cs @@ -0,0 +1,499 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Management.Automation; +using System.Reflection; +using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.PsProxyOutputExtensions; +using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell.PsProxyTypeExtensions; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell +{ + internal class ProfileGroup + { + public string ProfileName { get; } + public Variant[] Variants { get; } + public string ProfileFolder { get; } + + public ProfileGroup(Variant[] variants, string profileName = NoProfiles) + { + ProfileName = profileName; + Variants = variants; + ProfileFolder = ProfileName != NoProfiles ? ProfileName : String.Empty; + } + } + + internal class VariantGroup + { + public string ModuleName { get; } + public string CmdletName { get; } + public string CmdletVerb { get; } + public string CmdletNoun { get; } + public string ProfileName { get; } + public Variant[] Variants { get; } + public ParameterGroup[] ParameterGroups { get; } + public ComplexInterfaceInfo[] ComplexInterfaceInfos { get; } + + public string[] Aliases { get; } + public PSTypeName[] OutputTypes { get; } + public bool SupportsShouldProcess { get; } + public bool SupportsPaging { get; } + public string DefaultParameterSetName { get; } + public bool HasMultipleVariants { get; } + public PsHelpInfo HelpInfo { get; } + public bool IsGenerated { get; } + public bool IsInternal { get; } + + public string OutputFolder { get; } + public string FileName { get; } + public string FilePath { get; } + + public CommentInfo CommentInfo { get; } + + public VariantGroup(string moduleName, string cmdletName, Variant[] variants, string outputFolder, string profileName = NoProfiles, bool isTest = false, bool isInternal = false) + { + ModuleName = moduleName; + CmdletName = cmdletName; + var cmdletNameParts = CmdletName.Split('-'); + CmdletVerb = cmdletNameParts.First(); + CmdletNoun = cmdletNameParts.Last(); + ProfileName = profileName; + Variants = variants; + ParameterGroups = Variants.ToParameterGroups().OrderBy(pg => pg.OrderCategory).ThenByDescending(pg => pg.IsMandatory).ToArray(); + var aliasDuplicates = ParameterGroups.SelectMany(pg => pg.Aliases) + //https://stackoverflow.com/a/18547390/294804 + .GroupBy(a => a).Where(g => g.Count() > 1).Select(g => g.Key).ToArray(); + if (aliasDuplicates.Any()) + { + throw new ParsingMetadataException($"The alias(es) [{String.Join(", ", aliasDuplicates)}] are defined on multiple parameters for cmdlet '{CmdletName}', which is not supported."); + } + ComplexInterfaceInfos = ParameterGroups.Where(pg => !pg.DontShow && pg.IsComplexInterface).OrderBy(pg => pg.ParameterName).Select(pg => pg.ComplexInterfaceInfo).ToArray(); + + Aliases = Variants.SelectMany(v => v.Attributes).ToAliasNames().ToArray(); + OutputTypes = Variants.SelectMany(v => v.Info.OutputType).Where(ot => ot.Type != null).GroupBy(ot => ot.Type).Select(otg => otg.First()).ToArray(); + SupportsShouldProcess = Variants.Any(v => v.SupportsShouldProcess); + SupportsPaging = Variants.Any(v => v.SupportsPaging); + DefaultParameterSetName = DetermineDefaultParameterSetName(); + HasMultipleVariants = Variants.Length > 1; + HelpInfo = Variants.Select(v => v.HelpInfo).FirstOrDefault() ?? new PsHelpInfo(); + IsGenerated = Variants.All(v => v.Attributes.OfType().Any()); + IsInternal = isInternal; + + OutputFolder = outputFolder; + FileName = $"{CmdletName}{(isTest ? ".Tests" : String.Empty)}.ps1"; + FilePath = Path.Combine(OutputFolder, FileName); + + CommentInfo = new CommentInfo(this); + } + + private string DetermineDefaultParameterSetName() + { + var defaultParameterSet = Variants + .Select(v => v.Metadata.DefaultParameterSetName) + .LastOrDefault(dpsn => dpsn.IsValidDefaultParameterSetName()); + + if (String.IsNullOrEmpty(defaultParameterSet)) + { + var variantParamCountGroups = Variants + .Select(v => ( + variant: v.VariantName, + paramCount: v.CmdletOnlyParameters.Count(p => p.IsMandatory), + isSimple: v.CmdletOnlyParameters.Where(p => p.IsMandatory).All(p => p.ParameterType.IsPsSimple()))) + .GroupBy(vpc => vpc.isSimple) + .ToArray(); + var variantParameterCounts = (variantParamCountGroups.Any(g => g.Key) ? variantParamCountGroups.Where(g => g.Key) : variantParamCountGroups).SelectMany(g => g).ToArray(); + var smallestParameterCount = variantParameterCounts.Min(vpc => vpc.paramCount); + defaultParameterSet = variantParameterCounts.First(vpc => vpc.paramCount == smallestParameterCount).variant; + } + + return defaultParameterSet; + } + } + + internal class Variant + { + public string CmdletName { get; } + public string VariantName { get; } + public CommandInfo Info { get; } + public CommandMetadata Metadata { get; } + public PsHelpInfo HelpInfo { get; } + public bool HasParameterSets { get; } + public bool IsFunction { get; } + public string PrivateModuleName { get; } + public string PrivateCmdletName { get; } + public bool SupportsShouldProcess { get; } + public bool SupportsPaging { get; } + + public Attribute[] Attributes { get; } + public Parameter[] Parameters { get; } + public Parameter[] CmdletOnlyParameters { get; } + public bool IsInternal { get; } + public bool IsDoNotExport { get; } + public string[] Profiles { get; } + + public Variant(string cmdletName, string variantName, CommandInfo info, CommandMetadata metadata, bool hasParameterSets = false, PsHelpInfo helpInfo = null) + { + CmdletName = cmdletName; + VariantName = variantName; + Info = info; + HelpInfo = helpInfo ?? new PsHelpInfo(); + Metadata = metadata; + HasParameterSets = hasParameterSets; + IsFunction = Info.CommandType == CommandTypes.Function; + PrivateModuleName = Info.Source; + PrivateCmdletName = Metadata.Name; + SupportsShouldProcess = Metadata.SupportsShouldProcess; + SupportsPaging = Metadata.SupportsPaging; + + Attributes = this.ToAttributes(); + Parameters = this.ToParameters().OrderBy(p => p.OrderCategory).ThenByDescending(p => p.IsMandatory).ToArray(); + IsInternal = Attributes.OfType().Any(); + IsDoNotExport = Attributes.OfType().Any(); + CmdletOnlyParameters = Parameters.Where(p => !p.Categories.Any(c => c == ParameterCategory.Azure || c == ParameterCategory.Runtime)).ToArray(); + Profiles = Attributes.OfType().SelectMany(pa => pa.Profiles).ToArray(); + } + } + + internal class ParameterGroup + { + public string ParameterName { get; } + public Parameter[] Parameters { get; } + + public string[] VariantNames { get; } + public string[] AllVariantNames { get; } + public bool HasAllVariants { get; } + public Type ParameterType { get; } + public string Description { get; } + + public string[] Aliases { get; } + public bool HasValidateNotNull { get; } + public CompleterInfo CompleterInfo { get; } + public DefaultInfo DefaultInfo { get; } + public bool HasDefaultInfo { get; } + public ParameterCategory OrderCategory { get; } + public bool DontShow { get; } + public bool IsMandatory { get; } + public bool SupportsWildcards { get; } + public bool IsComplexInterface { get; } + public ComplexInterfaceInfo ComplexInterfaceInfo { get; } + public InfoAttribute InfoAttribute { get; } + + public int? FirstPosition { get; } + public bool ValueFromPipeline { get; } + public bool ValueFromPipelineByPropertyName { get; } + public bool IsInputType { get; } + + public ParameterGroup(string parameterName, Parameter[] parameters, string[] allVariantNames) + { + ParameterName = parameterName; + Parameters = parameters; + + VariantNames = Parameters.Select(p => p.VariantName).ToArray(); + AllVariantNames = allVariantNames; + HasAllVariants = VariantNames.Any(vn => vn == AllParameterSets) || !AllVariantNames.Except(VariantNames).Any(); + var types = Parameters.Select(p => p.ParameterType).Distinct().ToArray(); + if (types.Length > 1) + { + throw new ParsingMetadataException($"The parameter '{ParameterName}' has multiple parameter types [{String.Join(", ", types.Select(t => t.Name))}] defined, which is not supported."); + } + ParameterType = types.First(); + Description = Parameters.Select(p => p.Description).FirstOrDefault(d => !String.IsNullOrEmpty(d)).EmptyIfNull(); + + Aliases = Parameters.SelectMany(p => p.Attributes).ToAliasNames().ToArray(); + HasValidateNotNull = Parameters.SelectMany(p => p.Attributes.OfType()).Any(); + CompleterInfo = Parameters.Select(p => p.CompleterInfoAttribute).FirstOrDefault()?.ToCompleterInfo() + ?? Parameters.Select(p => p.ArgumentCompleterAttribute).FirstOrDefault()?.ToCompleterInfo(); + DefaultInfo = Parameters.Select(p => p.DefaultInfoAttribute).FirstOrDefault()?.ToDefaultInfo(this) + ?? Parameters.Select(p => p.DefaultValueAttribute).FirstOrDefault(dv => dv != null)?.ToDefaultInfo(this); + HasDefaultInfo = DefaultInfo != null && !String.IsNullOrEmpty(DefaultInfo.Script); + // When DefaultInfo is present, force all parameters from this group to be optional. + if (HasDefaultInfo) + { + foreach (var parameter in Parameters) + { + parameter.IsMandatory = false; + } + } + OrderCategory = Parameters.Select(p => p.OrderCategory).Distinct().DefaultIfEmpty(ParameterCategory.Body).Min(); + DontShow = Parameters.All(p => p.DontShow); + IsMandatory = HasAllVariants && Parameters.Any(p => p.IsMandatory); + SupportsWildcards = Parameters.Any(p => p.SupportsWildcards); + IsComplexInterface = Parameters.Any(p => p.IsComplexInterface); + ComplexInterfaceInfo = Parameters.Where(p => p.IsComplexInterface).Select(p => p.ComplexInterfaceInfo).FirstOrDefault(); + InfoAttribute = Parameters.Select(p => p.InfoAttribute).First(); + + FirstPosition = Parameters.Select(p => p.Position).FirstOrDefault(p => p != null); + ValueFromPipeline = Parameters.Any(p => p.ValueFromPipeline); + ValueFromPipelineByPropertyName = Parameters.Any(p => p.ValueFromPipelineByPropertyName); + IsInputType = ValueFromPipeline || ValueFromPipelineByPropertyName; + } + } + + internal class Parameter + { + public string VariantName { get; } + public string ParameterName { get; } + public ParameterMetadata Metadata { get; } + public PsParameterHelpInfo HelpInfo { get; } + public Type ParameterType { get; } + + public Attribute[] Attributes { get; } + public ParameterCategory[] Categories { get; } + public ParameterCategory OrderCategory { get; } + public PSDefaultValueAttribute DefaultValueAttribute { get; } + public DefaultInfoAttribute DefaultInfoAttribute { get; } + public ParameterAttribute ParameterAttribute { get; } + public bool SupportsWildcards { get; } + public CompleterInfoAttribute CompleterInfoAttribute { get; } + public ArgumentCompleterAttribute ArgumentCompleterAttribute { get; } + + public bool ValueFromPipeline { get; } + public bool ValueFromPipelineByPropertyName { get; } + public int? Position { get; } + public bool DontShow { get; } + public bool IsMandatory { get; set; } + + public InfoAttribute InfoAttribute { get; } + public ComplexInterfaceInfo ComplexInterfaceInfo { get; } + public bool IsComplexInterface { get; } + public string Description { get; } + + public Parameter(string variantName, string parameterName, ParameterMetadata metadata, PsParameterHelpInfo helpInfo = null) + { + VariantName = variantName; + ParameterName = parameterName; + Metadata = metadata; + HelpInfo = helpInfo ?? new PsParameterHelpInfo(); + + Attributes = Metadata.Attributes.ToArray(); + ParameterType = Attributes.OfType().FirstOrDefault()?.Type ?? Metadata.ParameterType; + Categories = Attributes.OfType().SelectMany(ca => ca.Categories).Distinct().ToArray(); + OrderCategory = Categories.DefaultIfEmpty(ParameterCategory.Body).Min(); + DefaultValueAttribute = Attributes.OfType().FirstOrDefault(); + DefaultInfoAttribute = Attributes.OfType().FirstOrDefault(); + ParameterAttribute = Attributes.OfType().FirstOrDefault(pa => pa.ParameterSetName == VariantName || pa.ParameterSetName == AllParameterSets); + if (ParameterAttribute == null) + { + throw new ParsingMetadataException($"The variant '{VariantName}' has multiple parameter sets defined, which is not supported."); + } + SupportsWildcards = Attributes.OfType().Any(); + CompleterInfoAttribute = Attributes.OfType().FirstOrDefault(); + ArgumentCompleterAttribute = Attributes.OfType().FirstOrDefault(); + + ValueFromPipeline = ParameterAttribute.ValueFromPipeline; + ValueFromPipelineByPropertyName = ParameterAttribute.ValueFromPipelineByPropertyName; + Position = ParameterAttribute.Position == Int32.MinValue ? (int?)null : ParameterAttribute.Position; + DontShow = ParameterAttribute.DontShow; + IsMandatory = ParameterAttribute.Mandatory; + + var complexParameterName = ParameterName.ToUpperInvariant(); + var complexMessage = $"{Environment.NewLine}To construct, see NOTES section for {complexParameterName} properties and create a hash table."; + var description = ParameterAttribute.HelpMessage.NullIfEmpty() ?? HelpInfo.Description.NullIfEmpty() ?? InfoAttribute?.Description.NullIfEmpty() ?? String.Empty; + // Remove the complex type message as it will be reinserted if this is a complex type + description = description.NormalizeNewLines().Replace(complexMessage, String.Empty).Replace(complexMessage.ToPsSingleLine(), String.Empty); + // Make an InfoAttribute for processing only if one isn't provided + InfoAttribute = Attributes.OfType().FirstOrDefault() ?? new InfoAttribute { PossibleTypes = new[] { ParameterType.Unwrap() }, Required = IsMandatory }; + // Set the description if the InfoAttribute does not have one since they are exported without a description + InfoAttribute.Description = String.IsNullOrEmpty(InfoAttribute.Description) ? description : InfoAttribute.Description; + ComplexInterfaceInfo = InfoAttribute.ToComplexInterfaceInfo(complexParameterName, ParameterType, true); + IsComplexInterface = ComplexInterfaceInfo.IsComplexInterface; + Description = $"{description}{(IsComplexInterface ? complexMessage : String.Empty)}"; + } + } + + internal class ComplexInterfaceInfo + { + public InfoAttribute InfoAttribute { get; } + + public string Name { get; } + public Type Type { get; } + public bool Required { get; } + public bool ReadOnly { get; } + public string Description { get; } + + public ComplexInterfaceInfo[] NestedInfos { get; } + public bool IsComplexInterface { get; } + + public ComplexInterfaceInfo(string name, Type type, InfoAttribute infoAttribute, bool? required, List seenTypes) + { + Name = name; + Type = type; + InfoAttribute = infoAttribute; + + Required = required ?? InfoAttribute.Required; + ReadOnly = InfoAttribute.ReadOnly; + Description = InfoAttribute.Description.ToPsSingleLine(); + + var unwrappedType = Type.Unwrap(); + var hasBeenSeen = seenTypes?.Contains(unwrappedType) ?? false; + (seenTypes ?? (seenTypes = new List())).Add(unwrappedType); + NestedInfos = hasBeenSeen ? new ComplexInterfaceInfo[]{} : + unwrappedType.GetInterfaces() + .Concat(InfoAttribute.PossibleTypes) + .SelectMany(pt => pt.GetProperties() + .SelectMany(pi => pi.GetCustomAttributes(true).OfType() + .Select(ia => ia.ToComplexInterfaceInfo(pi.Name, pi.PropertyType, seenTypes: seenTypes)))) + .Where(cii => !cii.ReadOnly).OrderByDescending(cii => cii.Required).ToArray(); + // https://stackoverflow.com/a/503359/294804 + var associativeArrayInnerType = Type.GetInterfaces() + .FirstOrDefault(i => i.IsGenericType && i.GetGenericTypeDefinition() == typeof(IAssociativeArray<>)) + ?.GetTypeInfo().GetGenericArguments().First(); + if (!hasBeenSeen && associativeArrayInnerType != null) + { + var anyInfo = new InfoAttribute { Description = "This indicates any property can be added to this object." }; + NestedInfos = NestedInfos.Prepend(anyInfo.ToComplexInterfaceInfo("(Any)", associativeArrayInnerType)).ToArray(); + } + IsComplexInterface = NestedInfos.Any(); + } + } + + internal class CommentInfo + { + public string Description { get; } + public string Synopsis { get; } + + public string[] Examples { get; } + public string[] Inputs { get; } + public string[] Outputs { get; } + + public string OnlineVersion { get; } + public string[] RelatedLinks { get; } + + private const string HelpLinkPrefix = @"https://docs.microsoft.com/en-us/powershell/module/"; + + public CommentInfo(VariantGroup variantGroup) + { + var helpInfo = variantGroup.HelpInfo; + Description = variantGroup.Variants.SelectMany(v => v.Attributes).OfType().FirstOrDefault()?.Description.NullIfEmpty() + ?? helpInfo.Description.EmptyIfNull(); + // If there is no Synopsis, PowerShell may put in the Syntax string as the Synopsis. This seems unintended, so we remove the Synopsis in this situation. + var synopsis = helpInfo.Synopsis.EmptyIfNull().Trim().StartsWith(variantGroup.CmdletName) ? String.Empty : helpInfo.Synopsis; + Synopsis = synopsis.NullIfEmpty() ?? Description; + + Examples = helpInfo.Examples.Select(rl => rl.Code).ToArray(); + + Inputs = (variantGroup.ParameterGroups.Where(pg => pg.IsInputType).Select(pg => pg.ParameterType.FullName).ToArray().NullIfEmpty() ?? + helpInfo.InputTypes.Where(it => it.Name.NullIfWhiteSpace() != null).Select(it => it.Name).ToArray()) + .Where(i => i != "None").Distinct().OrderBy(i => i).ToArray(); + Outputs = (variantGroup.OutputTypes.Select(ot => ot.Type.FullName).ToArray().NullIfEmpty() ?? + helpInfo.OutputTypes.Where(it => it.Name.NullIfWhiteSpace() != null).Select(ot => ot.Name).ToArray()) + .Where(o => o != "None").Distinct().OrderBy(o => o).ToArray(); + + OnlineVersion = helpInfo.OnlineVersion?.Uri.NullIfEmpty() ?? $@"{HelpLinkPrefix}{variantGroup.ModuleName.ToLowerInvariant()}/{variantGroup.CmdletName.ToLowerInvariant()}"; + RelatedLinks = helpInfo.RelatedLinks.Select(rl => rl.Text).ToArray(); + } + } + + internal class CompleterInfo + { + public string Name { get; } + public string Description { get; } + public string Script { get; } + public Type Type { get; } + public bool IsTypeCompleter { get; } + + public CompleterInfo(CompleterInfoAttribute infoAttribute) + { + Name = infoAttribute.Name; + Description = infoAttribute.Description; + Script = infoAttribute.Script; + } + + public CompleterInfo(ArgumentCompleterAttribute completerAttribute) + { + Script = completerAttribute.ScriptBlock?.ToString(); + if (completerAttribute.Type != null) + { + Type = completerAttribute.Type; + IsTypeCompleter = true; + } + } + } + + internal class DefaultInfo + { + public string Name { get; } + public string Description { get; } + public string Script { get; } + public ParameterGroup ParameterGroup { get; } + + public DefaultInfo(DefaultInfoAttribute infoAttribute, ParameterGroup parameterGroup) + { + Name = infoAttribute.Name; + Description = infoAttribute.Description; + Script = infoAttribute.Script; + ParameterGroup = parameterGroup; + } + + public DefaultInfo(PSDefaultValueAttribute defaultValueAttribute, ParameterGroup parameterGroup) + { + Description = defaultValueAttribute.Help; + ParameterGroup = parameterGroup; + if (defaultValueAttribute.Value != null) + { + Script = defaultValueAttribute.Value.ToString(); + } + } + } + + internal static class PsProxyTypeExtensions + { + public const string NoProfiles = "__NoProfiles"; + + public static bool IsValidDefaultParameterSetName(this string parameterSetName) => + !String.IsNullOrEmpty(parameterSetName) && parameterSetName != AllParameterSets; + + public static Variant[] ToVariants(this CommandInfo info, PsHelpInfo helpInfo) + { + var metadata = new CommandMetadata(info); + var privateCmdletName = metadata.Name.Split('!').First(); + var parts = privateCmdletName.Split('_'); + return parts.Length > 1 + ? new[] { new Variant(parts[0], parts[1], info, metadata, helpInfo: helpInfo) } + // Process multiple parameter sets, so we declare a variant per parameter set. + : info.ParameterSets.Select(ps => new Variant(privateCmdletName, ps.Name, info, metadata, true, helpInfo)).ToArray(); + } + + public static Variant[] ToVariants(this CmdletAndHelpInfo info) => info.CommandInfo.ToVariants(info.HelpInfo); + + public static Variant[] ToVariants(this CommandInfo info, PSObject helpInfo = null) => info.ToVariants(helpInfo?.ToPsHelpInfo()); + + public static Parameter[] ToParameters(this Variant variant) + { + var parameters = variant.Metadata.Parameters.AsEnumerable(); + var parameterHelp = variant.HelpInfo.Parameters.AsEnumerable(); + if (variant.HasParameterSets) + { + parameters = parameters.Where(p => p.Value.ParameterSets.Keys.Any(k => k == variant.VariantName || k == AllParameterSets)); + parameterHelp = parameterHelp.Where(ph => !ph.ParameterSetNames.Any() || ph.ParameterSetNames.Any(psn => psn == variant.VariantName || psn == AllParameterSets)); + } + return parameters.Select(p => new Parameter(variant.VariantName, p.Key, p.Value, parameterHelp.FirstOrDefault(ph => ph.Name == p.Key))).ToArray(); + } + + public static Attribute[] ToAttributes(this Variant variant) => variant.IsFunction + ? ((FunctionInfo)variant.Info).ScriptBlock.Attributes.ToArray() + : variant.Metadata.CommandType.GetCustomAttributes(false).Cast().ToArray(); + + public static IEnumerable ToParameterGroups(this Variant[] variants) + { + var allVariantNames = variants.Select(vg => vg.VariantName).ToArray(); + return variants + .SelectMany(v => v.Parameters) + .GroupBy(p => p.ParameterName, StringComparer.InvariantCultureIgnoreCase) + .Select(pg => new ParameterGroup(pg.Key, pg.Select(p => p).ToArray(), allVariantNames)); + } + + public static ComplexInterfaceInfo ToComplexInterfaceInfo(this InfoAttribute infoAttribute, string name, Type type, bool? required = null, List seenTypes = null) + => new ComplexInterfaceInfo(name, type, infoAttribute, required, seenTypes); + + public static CompleterInfo ToCompleterInfo(this CompleterInfoAttribute infoAttribute) => new CompleterInfo(infoAttribute); + public static CompleterInfo ToCompleterInfo(this ArgumentCompleterAttribute completerAttribute) => new CompleterInfo(completerAttribute); + + public static DefaultInfo ToDefaultInfo(this DefaultInfoAttribute infoAttribute, ParameterGroup parameterGroup) => new DefaultInfo(infoAttribute, parameterGroup); + public static DefaultInfo ToDefaultInfo(this PSDefaultValueAttribute defaultValueAttribute, ParameterGroup parameterGroup) => new DefaultInfo(defaultValueAttribute, parameterGroup); + } +} diff --git a/src/DedicatedHsm/generated/runtime/BuildTime/PsAttributes.cs b/src/DedicatedHsm/generated/runtime/BuildTime/PsAttributes.cs new file mode 100644 index 000000000000..f15babf589a3 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/BuildTime/PsAttributes.cs @@ -0,0 +1,114 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm +{ + [AttributeUsage(AttributeTargets.Class)] + public class DescriptionAttribute : Attribute + { + public string Description { get; } + + public DescriptionAttribute(string description) + { + Description = description; + } + } + + [AttributeUsage(AttributeTargets.Class)] + public class DoNotExportAttribute : Attribute + { + } + + [AttributeUsage(AttributeTargets.Class)] + public class InternalExportAttribute : Attribute + { + } + + [AttributeUsage(AttributeTargets.Class)] + public class GeneratedAttribute : Attribute + { + } + + [AttributeUsage(AttributeTargets.Class | AttributeTargets.Property)] + public class DoNotFormatAttribute : Attribute + { + } + + [AttributeUsage(AttributeTargets.Class)] + public class ProfileAttribute : Attribute + { + public string[] Profiles { get; } + + public ProfileAttribute(params string[] profiles) + { + Profiles = profiles; + } + } + + [AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)] + public class CategoryAttribute : Attribute + { + public ParameterCategory[] Categories { get; } + + public CategoryAttribute(params ParameterCategory[] categories) + { + Categories = categories; + } + } + + [AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)] + public class ExportAsAttribute : Attribute + { + public Type Type { get; set; } + + public ExportAsAttribute(Type type) + { + Type = type; + } + } + + public enum ParameterCategory + { + // Note: Order is significant + Uri = 0, + Path, + Query, + Header, + Cookie, + Body, + Azure, + Runtime + } + + [AttributeUsage(AttributeTargets.Property)] + public class OriginAttribute : Attribute + { + public PropertyOrigin Origin { get; } + + public OriginAttribute(PropertyOrigin origin) + { + Origin = origin; + } + } + + public enum PropertyOrigin + { + // Note: Order is significant + Inherited = 0, + Owned, + Inlined + } + + [AttributeUsage(AttributeTargets.Property)] + public class FormatTableAttribute : Attribute + { + public int Index { get; set; } = -1; + public bool HasIndex => Index != -1; + public string Label { get; set; } + public int Width { get; set; } = -1; + public bool HasWidth => Width != -1; + } +} diff --git a/src/DedicatedHsm/generated/runtime/BuildTime/PsExtensions.cs b/src/DedicatedHsm/generated/runtime/BuildTime/PsExtensions.cs new file mode 100644 index 000000000000..c99d50c7cc4d --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/BuildTime/PsExtensions.cs @@ -0,0 +1,160 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Collections; +using System.Collections.Generic; +using System.Linq; +using System.Management.Automation; +using System.Reflection; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell +{ + internal static class PsExtensions + { + // https://stackoverflow.com/a/863944/294804 + // https://stackoverflow.com/a/4452598/294804 + // https://stackoverflow.com/a/28701974/294804 + // Note: This will unwrap nested collections, but we don't generate nested collections. + public static Type Unwrap(this Type type) + { + if (type.IsArray) + { + return type.GetElementType().Unwrap(); + } + + var typeInfo = type.GetTypeInfo(); + if (typeInfo.IsGenericType + && (typeInfo.GetGenericTypeDefinition() == typeof(Nullable<>) || typeof(IEnumerable<>).IsAssignableFrom(type))) + { + return typeInfo.GetGenericArguments().First().Unwrap(); + } + + return type; + } + + // https://stackoverflow.com/a/863944/294804 + private static bool IsSimple(this Type type) + { + var typeInfo = type.GetTypeInfo(); + return typeInfo.IsPrimitive + || typeInfo.IsEnum + || type == typeof(string) + || type == typeof(decimal); + } + + // https://stackoverflow.com/a/32025393/294804 + private static bool HasImplicitConversion(this Type baseType, Type targetType) => + baseType.GetMethods(BindingFlags.Public | BindingFlags.Static) + .Where(mi => mi.Name == "op_Implicit" && mi.ReturnType == targetType) + .Any(mi => mi.GetParameters().FirstOrDefault()?.ParameterType == baseType); + + public static bool IsPsSimple(this Type type) + { + var unwrappedType = type.Unwrap(); + return unwrappedType.IsSimple() + || unwrappedType == typeof(SwitchParameter) + || unwrappedType == typeof(Hashtable) + || unwrappedType == typeof(PSCredential) + || unwrappedType == typeof(ScriptBlock) + || unwrappedType == typeof(DateTime) + || unwrappedType == typeof(Uri) + || unwrappedType.HasImplicitConversion(typeof(string)); + } + + public static string ToPsList(this IEnumerable items) => String.Join(", ", items.Select(i => $"'{i}'")); + + public static IEnumerable ToAliasNames(this IEnumerable attributes) => attributes.OfType().SelectMany(aa => aa.AliasNames).Distinct(); + + public static bool IsArrayAndElementTypeIsT(this object item) + { + var itemType = item.GetType(); + var tType = typeof(T); + return itemType.IsArray && !tType.IsArray && tType.IsAssignableFrom(itemType.GetElementType()); + } + + public static bool IsTArrayAndElementTypeIsItem(this object item) + { + var itemType = item.GetType(); + var tType = typeof(T); + return !itemType.IsArray && tType.IsArray && (tType.GetElementType()?.IsAssignableFrom(itemType) ?? false); + } + + public static bool IsTypeOrArrayOfType(this object item) => item is T || item.IsArrayAndElementTypeIsT() || item.IsTArrayAndElementTypeIsItem(); + + public static T NormalizeArrayType(this object item) + { + if (item is T result) + { + return result; + } + + if (item.IsArrayAndElementTypeIsT()) + { + var array = (T[])Convert.ChangeType(item, typeof(T[])); + return array.FirstOrDefault(); + } + + if (item.IsTArrayAndElementTypeIsItem()) + { + var tType = typeof(T); + var array = Array.CreateInstance(tType.GetElementType(), 1); + array.SetValue(item, 0); + return (T)Convert.ChangeType(array, tType); + } + + return default(T); + } + + public static T GetNestedProperty(this PSObject psObject, params string[] names) => psObject.Properties.GetNestedProperty(names); + + public static T GetNestedProperty(this PSMemberInfoCollection properties, params string[] names) + { + var lastName = names.Last(); + var nestedProperties = names.Take(names.Length - 1).Aggregate(properties, (p, n) => p?.GetProperty(n)?.Properties); + return nestedProperties != null ? nestedProperties.GetProperty(lastName) : default(T); + } + + public static T GetProperty(this PSObject psObject, string name) => psObject.Properties.GetProperty(name); + + public static T GetProperty(this PSMemberInfoCollection properties, string name) + { + switch (properties[name]?.Value) + { + case PSObject psObject when psObject.BaseObject is PSCustomObject && psObject.ImmediateBaseObject.IsTypeOrArrayOfType(): + return psObject.ImmediateBaseObject.NormalizeArrayType(); + case PSObject psObject when psObject.BaseObject.IsTypeOrArrayOfType(): + return psObject.BaseObject.NormalizeArrayType(); + case object value when value.IsTypeOrArrayOfType(): + return value.NormalizeArrayType(); + default: + return default(T); + } + } + + public static IEnumerable RunScript(this PSCmdlet cmdlet, string script) + => PsHelpers.RunScript(cmdlet.InvokeCommand, script); + + public static void RunScript(this PSCmdlet cmdlet, string script) + => cmdlet.RunScript(script); + + public static IEnumerable RunScript(this EngineIntrinsics engineIntrinsics, string script) + => PsHelpers.RunScript(engineIntrinsics.InvokeCommand, script); + + public static void RunScript(this EngineIntrinsics engineIntrinsics, string script) + => engineIntrinsics.RunScript(script); + + public static IEnumerable RunScript(this PSCmdlet cmdlet, ScriptBlock block) + => PsHelpers.RunScript(cmdlet.InvokeCommand, block.ToString()); + + public static void RunScript(this PSCmdlet cmdlet, ScriptBlock block) + => cmdlet.RunScript(block.ToString()); + + public static IEnumerable RunScript(this EngineIntrinsics engineIntrinsics, ScriptBlock block) + => PsHelpers.RunScript(engineIntrinsics.InvokeCommand, block.ToString()); + + public static void RunScript(this EngineIntrinsics engineIntrinsics, ScriptBlock block) + => engineIntrinsics.RunScript(block.ToString()); + } +} diff --git a/src/DedicatedHsm/generated/runtime/BuildTime/PsHelpers.cs b/src/DedicatedHsm/generated/runtime/BuildTime/PsHelpers.cs new file mode 100644 index 000000000000..1c01e3540a0c --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/BuildTime/PsHelpers.cs @@ -0,0 +1,104 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Collections; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Management.Automation; +using Pwsh = System.Management.Automation.PowerShell; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell +{ + internal static class PsHelpers + { + public static IEnumerable RunScript(string script) + => Pwsh.Create().AddScript(script).Invoke(); + + public static void RunScript(string script) + => RunScript(script); + + public static IEnumerable RunScript(CommandInvocationIntrinsics cii, string script) + => cii.InvokeScript(script).Select(o => o?.BaseObject).Where(o => o != null).OfType(); + + public static void RunScript(CommandInvocationIntrinsics cii, string script) + => RunScript(cii, script); + + public static IEnumerable GetModuleCmdlets(PSCmdlet cmdlet, params string[] modulePaths) + { + var getCmdletsCommand = String.Join(" + ", modulePaths.Select(mp => $"(Get-Command -Module (Import-Module '{mp}' -PassThru))")); + return (cmdlet?.RunScript(getCmdletsCommand) ?? RunScript(getCmdletsCommand)) + .Where(ci => ci.CommandType != CommandTypes.Alias); + } + + public static IEnumerable GetModuleCmdlets(params string[] modulePaths) + => GetModuleCmdlets(null, modulePaths); + + public static IEnumerable GetScriptCmdlets(PSCmdlet cmdlet, string scriptFolder) + { + // https://stackoverflow.com/a/40969712/294804 + var getCmdletsCommand = $@" +$currentFunctions = Get-ChildItem function: +Get-ChildItem -Path '{scriptFolder}' -Recurse -Include '*.ps1' -File | ForEach-Object {{ . $_.FullName }} +Get-ChildItem function: | Where-Object {{ ($currentFunctions -notcontains $_) -and $_.CmdletBinding }} +"; + return cmdlet?.RunScript(getCmdletsCommand) ?? RunScript(getCmdletsCommand); + } + + public static IEnumerable GetScriptCmdlets(string scriptFolder) + => GetScriptCmdlets(null, scriptFolder); + + public static IEnumerable GetScriptHelpInfo(PSCmdlet cmdlet, params string[] modulePaths) + { + var importModules = String.Join(Environment.NewLine, modulePaths.Select(mp => $"Import-Module '{mp}'")); + var getHelpCommand = $@" +$currentFunctions = Get-ChildItem function: +{importModules} +Get-ChildItem function: | Where-Object {{ ($currentFunctions -notcontains $_) -and $_.CmdletBinding }} | ForEach-Object {{ Get-Help -Name $_.Name -Full }} +"; + return cmdlet?.RunScript(getHelpCommand) ?? RunScript(getHelpCommand); + } + + public static IEnumerable GetScriptHelpInfo(params string[] modulePaths) + => GetScriptHelpInfo(null, modulePaths); + + public static IEnumerable GetModuleCmdletsAndHelpInfo(PSCmdlet cmdlet, params string[] modulePaths) + { + var getCmdletAndHelp = String.Join(" + ", modulePaths.Select(mp => + $@"(Get-Command -Module (Import-Module '{mp}' -PassThru) | Where-Object {{ $_.CommandType -ne 'Alias' }} | ForEach-Object {{ @{{ CommandInfo = $_; HelpInfo = ( invoke-command {{ try {{ Get-Help -Name $_.Name -Full }} catch{{ '' }} }} ) }} }})" + )); + return (cmdlet?.RunScript(getCmdletAndHelp) ?? RunScript(getCmdletAndHelp)) + .Select(h => new CmdletAndHelpInfo { CommandInfo = (h["CommandInfo"] as PSObject)?.BaseObject as CommandInfo, HelpInfo = h["HelpInfo"] as PSObject }); + } + + public static IEnumerable GetModuleCmdletsAndHelpInfo(params string[] modulePaths) + => GetModuleCmdletsAndHelpInfo(null, modulePaths); + + public static CmdletAndHelpInfo ToCmdletAndHelpInfo(this CommandInfo commandInfo, PSObject helpInfo) => new CmdletAndHelpInfo { CommandInfo = commandInfo, HelpInfo = helpInfo }; + + public const string Psd1Indent = " "; + public const string GuidStart = Psd1Indent + "GUID"; + + public static Guid ReadGuidFromPsd1(string psd1Path) + { + var guid = Guid.NewGuid(); + if (File.Exists(psd1Path)) + { + var currentGuid = File.ReadAllLines(psd1Path) + .FirstOrDefault(l => l.StartsWith(GuidStart))?.Split(new[] { " = " }, StringSplitOptions.RemoveEmptyEntries) + .LastOrDefault()?.Replace("'", String.Empty); + guid = currentGuid != null ? Guid.Parse(currentGuid) : guid; + } + + return guid; + } + } + + internal class CmdletAndHelpInfo + { + public CommandInfo CommandInfo { get; set; } + public PSObject HelpInfo { get; set; } + } +} diff --git a/src/DedicatedHsm/generated/runtime/BuildTime/StringExtensions.cs b/src/DedicatedHsm/generated/runtime/BuildTime/StringExtensions.cs new file mode 100644 index 000000000000..16577a9b52d7 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/BuildTime/StringExtensions.cs @@ -0,0 +1,24 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Linq; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell +{ + internal static class StringExtensions + { + public static string NullIfEmpty(this string text) => String.IsNullOrEmpty(text) ? null : text; + public static string NullIfWhiteSpace(this string text) => String.IsNullOrWhiteSpace(text) ? null : text; + public static string EmptyIfNull(this string text) => text ?? String.Empty; + + public static bool? ToNullableBool(this string text) => String.IsNullOrEmpty(text) ? (bool?)null : Convert.ToBoolean(text.ToLowerInvariant()); + + public static string ToUpperFirstCharacter(this string text) => String.IsNullOrEmpty(text) ? text : $"{text[0].ToString().ToUpperInvariant()}{text.Remove(0, 1)}"; + + public static string ReplaceNewLines(this string value, string replacer = " ", string[] newLineSymbols = null) + => (newLineSymbols ?? new []{ "\r\n", "\n" }).Aggregate(value.EmptyIfNull(), (current, symbol) => current.Replace(symbol, replacer)); + public static string NormalizeNewLines(this string value) => value.ReplaceNewLines("\u00A0").Replace("\u00A0", Environment.NewLine); + } +} diff --git a/src/DedicatedHsm/generated/runtime/BuildTime/XmlExtensions.cs b/src/DedicatedHsm/generated/runtime/BuildTime/XmlExtensions.cs new file mode 100644 index 000000000000..3e34039cd015 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/BuildTime/XmlExtensions.cs @@ -0,0 +1,28 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System.IO; +using System.Xml; +using System.Xml.Serialization; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell +{ + internal static class XmlExtensions + { + public static string ToXmlString(this T inputObject, bool excludeDeclaration = false) + { + var serializer = new XmlSerializer(typeof(T)); + //https://stackoverflow.com/a/760290/294804 + //https://stackoverflow.com/a/3732234/294804 + var namespaces = new XmlSerializerNamespaces(new[] { XmlQualifiedName.Empty }); + var xmlSettings = new XmlWriterSettings { OmitXmlDeclaration = excludeDeclaration, Indent = true }; + using (var stringWriter = new StringWriter()) + using (var xmlWriter = XmlWriter.Create(stringWriter, xmlSettings)) + { + serializer.Serialize(xmlWriter, inputObject, namespaces); + return stringWriter.ToString(); + } + } + } +} diff --git a/src/DedicatedHsm/generated/runtime/CmdInfoHandler.cs b/src/DedicatedHsm/generated/runtime/CmdInfoHandler.cs new file mode 100644 index 000000000000..8c4fbf375479 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/CmdInfoHandler.cs @@ -0,0 +1,40 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Management.Automation; +using System.Net.Http; +using System.Threading; +using System.Threading.Tasks; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime +{ + using NextDelegate = Func, Task>, Task>; + using SignalDelegate = Func, Task>; + + public class CmdInfoHandler + { + private readonly string processRecordId; + private readonly string parameterSetName; + private readonly InvocationInfo invocationInfo; + + public CmdInfoHandler(string processRecordId, InvocationInfo invocationInfo, string parameterSetName) + { + this.processRecordId = processRecordId; + this.parameterSetName = parameterSetName; + this.invocationInfo = invocationInfo; + } + + public Task SendAsync(HttpRequestMessage request, CancellationToken token, Action cancel, SignalDelegate signal, NextDelegate next) + { + request.Headers.Add("x-ms-client-request-id", processRecordId); + request.Headers.Add("CommandName", invocationInfo?.InvocationName); + request.Headers.Add("FullCommandName", invocationInfo?.MyCommand?.Name); + request.Headers.Add("ParameterSetName", parameterSetName); + + // continue with pipeline. + return next(request, token, cancel, signal); + } + } +} diff --git a/src/DedicatedHsm/generated/runtime/Conversions/ConversionException.cs b/src/DedicatedHsm/generated/runtime/Conversions/ConversionException.cs new file mode 100644 index 000000000000..643cf2a0cf23 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Conversions/ConversionException.cs @@ -0,0 +1,17 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + internal class ConversionException : Exception + { + internal ConversionException(string message) + : base(message) { } + + internal ConversionException(JsonNode node, Type targetType) + : base($"Cannot convert '{node.Type}' to a {targetType.Name}") { } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Conversions/IJsonConverter.cs b/src/DedicatedHsm/generated/runtime/Conversions/IJsonConverter.cs new file mode 100644 index 000000000000..4f838113320e --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Conversions/IJsonConverter.cs @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + internal interface IJsonConverter + { + JsonNode ToJson(object value); + + object FromJson(JsonNode node); + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Conversions/Instances/BinaryConverter.cs b/src/DedicatedHsm/generated/runtime/Conversions/Instances/BinaryConverter.cs new file mode 100644 index 000000000000..53bf6d2f3a9b --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Conversions/Instances/BinaryConverter.cs @@ -0,0 +1,24 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + public sealed class BinaryConverter : JsonConverter + { + internal override JsonNode ToJson(byte[] value) => new XBinary(value); + + internal override byte[] FromJson(JsonNode node) + { + switch (node.Type) + { + case JsonType.String : return Convert.FromBase64String(node.ToString()); // Base64 Encoded + case JsonType.Binary : return ((XBinary)node).Value; + } + + throw new ConversionException(node, typeof(byte[])); + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Conversions/Instances/BooleanConverter.cs b/src/DedicatedHsm/generated/runtime/Conversions/Instances/BooleanConverter.cs new file mode 100644 index 000000000000..0bfdaa627d22 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Conversions/Instances/BooleanConverter.cs @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + public sealed class BooleanConverter : JsonConverter + { + internal override JsonNode ToJson(bool value) => new JsonBoolean(value); + + internal override bool FromJson(JsonNode node) => (bool)node; + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Conversions/Instances/DateTimeConverter.cs b/src/DedicatedHsm/generated/runtime/Conversions/Instances/DateTimeConverter.cs new file mode 100644 index 000000000000..7f0cbcb76c72 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Conversions/Instances/DateTimeConverter.cs @@ -0,0 +1,18 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + public sealed class DateTimeConverter : JsonConverter + { + internal override JsonNode ToJson(DateTime value) + { + return new JsonDate(value); + } + + internal override DateTime FromJson(JsonNode node) => (DateTime)node; + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Conversions/Instances/DateTimeOffsetConverter.cs b/src/DedicatedHsm/generated/runtime/Conversions/Instances/DateTimeOffsetConverter.cs new file mode 100644 index 000000000000..5d28399ae079 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Conversions/Instances/DateTimeOffsetConverter.cs @@ -0,0 +1,15 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + public sealed class DateTimeOffsetConverter : JsonConverter + { + internal override JsonNode ToJson(DateTimeOffset value) => new JsonDate(value); + + internal override DateTimeOffset FromJson(JsonNode node) => (DateTimeOffset)node; + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Conversions/Instances/DecimalConverter.cs b/src/DedicatedHsm/generated/runtime/Conversions/Instances/DecimalConverter.cs new file mode 100644 index 000000000000..99bbdc000b60 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Conversions/Instances/DecimalConverter.cs @@ -0,0 +1,16 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + public sealed class DecimalConverter : JsonConverter + { + internal override JsonNode ToJson(decimal value) => new JsonNumber(value.ToString()); + + internal override decimal FromJson(JsonNode node) + { + return (decimal)node; + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Conversions/Instances/DoubleConverter.cs b/src/DedicatedHsm/generated/runtime/Conversions/Instances/DoubleConverter.cs new file mode 100644 index 000000000000..7ad562830ed2 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Conversions/Instances/DoubleConverter.cs @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + public sealed class DoubleConverter : JsonConverter + { + internal override JsonNode ToJson(double value) => new JsonNumber(value); + + internal override double FromJson(JsonNode node) => (double)node; + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Conversions/Instances/EnumConverter.cs b/src/DedicatedHsm/generated/runtime/Conversions/Instances/EnumConverter.cs new file mode 100644 index 000000000000..cc7b0d3935d3 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Conversions/Instances/EnumConverter.cs @@ -0,0 +1,30 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + public sealed class EnumConverter : IJsonConverter + { + private readonly Type type; + + internal EnumConverter(Type type) + { + this.type = type ?? throw new ArgumentNullException(nameof(type)); + } + + public JsonNode ToJson(object value) => new JsonString(value.ToString()); + + public object FromJson(JsonNode node) + { + if (node.Type == JsonType.Number) + { + return Enum.ToObject(type, (int)node); + } + + return Enum.Parse(type, node.ToString(), ignoreCase: true); + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Conversions/Instances/GuidConverter.cs b/src/DedicatedHsm/generated/runtime/Conversions/Instances/GuidConverter.cs new file mode 100644 index 000000000000..36378d485502 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Conversions/Instances/GuidConverter.cs @@ -0,0 +1,15 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + public sealed class GuidConverter : JsonConverter + { + internal override JsonNode ToJson(Guid value) => new JsonString(value.ToString()); + + internal override Guid FromJson(JsonNode node) => (Guid)node; + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Conversions/Instances/HashSet'1Converter.cs b/src/DedicatedHsm/generated/runtime/Conversions/Instances/HashSet'1Converter.cs new file mode 100644 index 000000000000..df38666c0338 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Conversions/Instances/HashSet'1Converter.cs @@ -0,0 +1,27 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System.Collections.Generic; +using System.Linq; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + public sealed class HashSetConverter : JsonConverter> + { + internal override JsonNode ToJson(HashSet value) + { + return new XSet(value); + } + + internal override HashSet FromJson(JsonNode node) + { + var collection = node as ICollection; + + if (collection.Count == 0) return null; + + // TODO: Remove Linq depedency + return new HashSet(collection.Cast()); + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Conversions/Instances/Int16Converter.cs b/src/DedicatedHsm/generated/runtime/Conversions/Instances/Int16Converter.cs new file mode 100644 index 000000000000..3eb027ca55b9 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Conversions/Instances/Int16Converter.cs @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + public sealed class Int16Converter : JsonConverter + { + internal override JsonNode ToJson(short value) => new JsonNumber(value); + + internal override short FromJson(JsonNode node) => (short)node; + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Conversions/Instances/Int32Converter.cs b/src/DedicatedHsm/generated/runtime/Conversions/Instances/Int32Converter.cs new file mode 100644 index 000000000000..90317f0c79b6 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Conversions/Instances/Int32Converter.cs @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + public sealed class Int32Converter : JsonConverter + { + internal override JsonNode ToJson(int value) => new JsonNumber(value); + + internal override int FromJson(JsonNode node) => (int)node; + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Conversions/Instances/Int64Converter.cs b/src/DedicatedHsm/generated/runtime/Conversions/Instances/Int64Converter.cs new file mode 100644 index 000000000000..6a0df147c596 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Conversions/Instances/Int64Converter.cs @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + public sealed class Int64Converter : JsonConverter + { + internal override JsonNode ToJson(long value) => new JsonNumber(value); + + internal override long FromJson(JsonNode node) => (long)node; + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Conversions/Instances/JsonArrayConverter.cs b/src/DedicatedHsm/generated/runtime/Conversions/Instances/JsonArrayConverter.cs new file mode 100644 index 000000000000..0b81eb6ac708 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Conversions/Instances/JsonArrayConverter.cs @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + public sealed class JsonArrayConverter : JsonConverter + { + internal override JsonNode ToJson(JsonArray value) => value; + + internal override JsonArray FromJson(JsonNode node) => (JsonArray)node; + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Conversions/Instances/JsonObjectConverter.cs b/src/DedicatedHsm/generated/runtime/Conversions/Instances/JsonObjectConverter.cs new file mode 100644 index 000000000000..58b6ccab7fcf --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Conversions/Instances/JsonObjectConverter.cs @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + public sealed class JsonObjectConverter : JsonConverter + { + internal override JsonNode ToJson(JsonObject value) => value; + + internal override JsonObject FromJson(JsonNode node) => (JsonObject)node; + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Conversions/Instances/SingleConverter.cs b/src/DedicatedHsm/generated/runtime/Conversions/Instances/SingleConverter.cs new file mode 100644 index 000000000000..3d84ee923d44 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Conversions/Instances/SingleConverter.cs @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + public sealed class SingleConverter : JsonConverter + { + internal override JsonNode ToJson(float value) => new JsonNumber(value.ToString()); + + internal override float FromJson(JsonNode node) => (float)node; + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Conversions/Instances/StringConverter.cs b/src/DedicatedHsm/generated/runtime/Conversions/Instances/StringConverter.cs new file mode 100644 index 000000000000..b81c01ce4804 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Conversions/Instances/StringConverter.cs @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + public sealed class StringConverter : JsonConverter + { + internal override JsonNode ToJson(string value) => new JsonString(value); + + internal override string FromJson(JsonNode node) => node.ToString(); + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Conversions/Instances/TimeSpanConverter.cs b/src/DedicatedHsm/generated/runtime/Conversions/Instances/TimeSpanConverter.cs new file mode 100644 index 000000000000..ffbcd6fb5945 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Conversions/Instances/TimeSpanConverter.cs @@ -0,0 +1,15 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + public sealed class TimeSpanConverter : JsonConverter + { + internal override JsonNode ToJson(TimeSpan value) => new JsonString(value.ToString()); + + internal override TimeSpan FromJson(JsonNode node) => (TimeSpan)node; + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Conversions/Instances/UInt16Converter.cs b/src/DedicatedHsm/generated/runtime/Conversions/Instances/UInt16Converter.cs new file mode 100644 index 000000000000..bfafabe10bd2 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Conversions/Instances/UInt16Converter.cs @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + public sealed class UInt16Converter : JsonConverter + { + internal override JsonNode ToJson(ushort value) => new JsonNumber(value); + + internal override ushort FromJson(JsonNode node) => (ushort)node; + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Conversions/Instances/UInt32Converter.cs b/src/DedicatedHsm/generated/runtime/Conversions/Instances/UInt32Converter.cs new file mode 100644 index 000000000000..20d11d4d2092 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Conversions/Instances/UInt32Converter.cs @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + public sealed class UInt32Converter : JsonConverter + { + internal override JsonNode ToJson(uint value) => new JsonNumber(value); + + internal override uint FromJson(JsonNode node) => (uint)node; + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Conversions/Instances/UInt64Converter.cs b/src/DedicatedHsm/generated/runtime/Conversions/Instances/UInt64Converter.cs new file mode 100644 index 000000000000..efc5471e2e1c --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Conversions/Instances/UInt64Converter.cs @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + public sealed class UInt64Converter : JsonConverter + { + internal override JsonNode ToJson(ulong value) => new JsonNumber(value.ToString()); + + internal override ulong FromJson(JsonNode node) => (ulong)node; + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Conversions/Instances/UriConverter.cs b/src/DedicatedHsm/generated/runtime/Conversions/Instances/UriConverter.cs new file mode 100644 index 000000000000..d2992780f9d3 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Conversions/Instances/UriConverter.cs @@ -0,0 +1,15 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + public sealed class UriConverter : JsonConverter + { + internal override JsonNode ToJson(Uri value) => new JsonString(value.AbsoluteUri); + + internal override Uri FromJson(JsonNode node) => (Uri)node; + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Conversions/JsonConverter.cs b/src/DedicatedHsm/generated/runtime/Conversions/JsonConverter.cs new file mode 100644 index 000000000000..f4b26b2b77ea --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Conversions/JsonConverter.cs @@ -0,0 +1,21 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + public abstract class JsonConverter : IJsonConverter + { + internal abstract T FromJson(JsonNode node); + + internal abstract JsonNode ToJson(T value); + + #region IConverter + + object IJsonConverter.FromJson(JsonNode node) => FromJson(node); + + JsonNode IJsonConverter.ToJson(object value) => ToJson((T)value); + + #endregion + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Conversions/JsonConverterAttribute.cs b/src/DedicatedHsm/generated/runtime/Conversions/JsonConverterAttribute.cs new file mode 100644 index 000000000000..903a68d5cec4 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Conversions/JsonConverterAttribute.cs @@ -0,0 +1,18 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + public sealed class JsonConverterAttribute : Attribute + { + internal JsonConverterAttribute(Type type) + { + Converter = (IJsonConverter)Activator.CreateInstance(type); + } + + internal IJsonConverter Converter { get; } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Conversions/JsonConverterFactory.cs b/src/DedicatedHsm/generated/runtime/Conversions/JsonConverterFactory.cs new file mode 100644 index 000000000000..42e951cbfe28 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Conversions/JsonConverterFactory.cs @@ -0,0 +1,91 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Collections.Generic; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + public sealed class JsonConverterFactory + { + private static readonly Dictionary converters = new Dictionary(); + + static JsonConverterFactory() + { + AddInternal(new BooleanConverter()); + AddInternal(new DateTimeConverter()); + AddInternal(new DateTimeOffsetConverter()); + AddInternal(new BinaryConverter()); + AddInternal(new DecimalConverter()); + AddInternal(new DoubleConverter()); + AddInternal(new GuidConverter()); + AddInternal(new Int16Converter()); + AddInternal(new Int32Converter()); + AddInternal(new Int64Converter()); + AddInternal(new SingleConverter()); + AddInternal(new StringConverter()); + AddInternal(new TimeSpanConverter()); + AddInternal(new UInt16Converter()); + AddInternal(new UInt32Converter()); + AddInternal(new UInt64Converter()); + AddInternal(new UriConverter()); + + // Hash sets + AddInternal(new HashSetConverter()); + AddInternal(new HashSetConverter()); + AddInternal(new HashSetConverter()); + AddInternal(new HashSetConverter()); + AddInternal(new HashSetConverter()); + AddInternal(new HashSetConverter()); + + // JSON + + AddInternal(new JsonObjectConverter()); + AddInternal(new JsonArrayConverter()); + } + + internal static Dictionary Instances => converters; + + internal static IJsonConverter Get(Type type) + { + var details = TypeDetails.Get(type); + + if (details.JsonConverter == null) + { + throw new ConversionException($"No converter found for '{type.Name}'."); + } + + return details.JsonConverter; + } + + internal static bool TryGet(Type type, out IJsonConverter converter) + { + var typeDetails = TypeDetails.Get(type); + + converter = typeDetails.JsonConverter; + + return converter != null; + } + + private static void AddInternal(JsonConverter converter) + => converters.Add(typeof(T), converter); + + private static void AddInternal(IJsonConverter converter) + => converters.Add(typeof(T), converter); + + internal static void Add(JsonConverter converter) + { + if (converter == null) + { + throw new ArgumentNullException(nameof(converter)); + } + + AddInternal(converter); + + var type = TypeDetails.Get(); + + type.JsonConverter = converter; + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Conversions/StringLikeConverter.cs b/src/DedicatedHsm/generated/runtime/Conversions/StringLikeConverter.cs new file mode 100644 index 000000000000..d1852215d962 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Conversions/StringLikeConverter.cs @@ -0,0 +1,45 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Reflection; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + public sealed class StringLikeConverter : IJsonConverter + { + private readonly Type type; + private readonly MethodInfo parseMethod; + + internal StringLikeConverter(Type type) + { + this.type = type ?? throw new ArgumentNullException(nameof(type)); + this.parseMethod = StringLikeHelper.GetParseMethod(type); + } + + public object FromJson(JsonNode node) => + parseMethod.Invoke(null, new[] { node.ToString() }); + + public JsonNode ToJson(object value) => new JsonString(value.ToString()); + } + + internal static class StringLikeHelper + { + private static readonly Type[] parseMethodParamaterTypes = new[] { typeof(string) }; + + internal static bool IsStringLike(Type type) + { + return GetParseMethod(type) != null; + } + + internal static MethodInfo GetParseMethod(Type type) + { + MethodInfo method = type.GetMethod("Parse", parseMethodParamaterTypes); + + if (method?.IsPublic != true) return null; + + return method; + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Customizations/IJsonSerializable.cs b/src/DedicatedHsm/generated/runtime/Customizations/IJsonSerializable.cs new file mode 100644 index 000000000000..9df21f087883 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Customizations/IJsonSerializable.cs @@ -0,0 +1,249 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +using Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json; +using System; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime +{ + public interface IJsonSerializable + { + JsonNode ToJson(JsonObject container = null, SerializationMode serializationMode = SerializationMode.None); + } + internal static class JsonSerializable + { + /// + /// Serializes an enumerable and returns a JsonNode. + /// + /// an IEnumerable collection of items + /// A JsonNode that contains the collection of items serialized. + private static JsonNode ToJsonValue(System.Collections.IEnumerable enumerable) + { + if (enumerable != null) + { + // is it a byte array of some kind? + if (enumerable is System.Collections.Generic.IEnumerable byteEnumerable) + { + return new XBinary(System.Linq.Enumerable.ToArray(byteEnumerable)); + } + + var hasValues = false; + // just create an array of value nodes. + var result = new XNodeArray(); + foreach (var each in enumerable) + { + // we had at least one value. + hasValues = true; + + // try to serialize it. + var node = ToJsonValue(each); + if (null != node) + { + result.Add(node); + } + } + + // if we were able to add values, (or it was just empty), return it. + if (result.Count > 0 || !hasValues) + { + return result; + } + } + + // we couldn't serialize the values. Sorry. + return null; + } + + /// + /// Serializes a valuetype to a JsonNode. + /// + /// a ValueType (ie, a primitive, enum or struct) to be serialized + /// a JsonNode with the serialized value + private static JsonNode ToJsonValue(ValueType vValue) + { + // numeric type + if (vValue is SByte || vValue is Int16 || vValue is Int32 || vValue is Int64 || vValue is Byte || vValue is UInt16 || vValue is UInt32 || vValue is UInt64 || vValue is decimal || vValue is float || vValue is double) + { + return new JsonNumber(vValue.ToString()); + } + + // boolean type + if (vValue is bool bValue) + { + return new JsonBoolean(bValue); + } + + // dates + if (vValue is DateTime dtValue) + { + return new JsonDate(dtValue); + } + + // sorry, no idea. + return null; + } + /// + /// Attempts to serialize an object by using ToJson() or ToJsonString() if they exist. + /// + /// the object to be serialized. + /// the serialized JsonNode (if successful), otherwise, null + private static JsonNode TryToJsonValue(dynamic oValue) + { + object jsonValue = null; + dynamic v = oValue; + try + { + jsonValue = v.ToJson().ToString(); + } + catch + { + // no harm... + try + { + jsonValue = v.ToJsonString().ToString(); + } + catch + { + // no worries here either. + } + } + + // if we got something out, let's use it. + if (null != jsonValue) + { + // JsonNumber is really a literal json value. Just don't try to cast that back to an actual number, ok? + return new JsonNumber(jsonValue.ToString()); + } + + return null; + } + + /// + /// Serialize an object by using a variety of methods. + /// + /// the object to be serialized. + /// the serialized JsonNode (if successful), otherwise, null + internal static JsonNode ToJsonValue(object value) + { + // things that implement our interface are preferred. + if (value is Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IJsonSerializable jsonSerializable) + { + return jsonSerializable.ToJson(); + } + + // strings are easy. + if (value is string || value is char) + { + return new JsonString(value.ToString()); + } + + // value types are fairly straightforward (fallback to ToJson()/ToJsonString() or literal JsonString ) + if (value is System.ValueType vValue) + { + return ToJsonValue(vValue) ?? TryToJsonValue(vValue) ?? new JsonString(vValue.ToString()); + } + + // dictionaries are objects that should be able to serialize + if (value is System.Collections.Generic.IDictionary dictionary) + { + return Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.JsonSerializable.ToJson(dictionary, null); + } + + // enumerable collections are handled like arrays (again, fallback to ToJson()/ToJsonString() or literal JsonString) + if (value is System.Collections.IEnumerable enumerableValue) + { + // some kind of enumerable value + return ToJsonValue(enumerableValue) ?? TryToJsonValue(value) ?? new JsonString(value.ToString()); + } + + // at this point, we're going to fallback to a string literal here, since we really have no idea what it is. + return new JsonString(value.ToString()); + } + + internal static JsonObject ToJson(System.Collections.Generic.Dictionary dictionary, JsonObject container) => ToJson((System.Collections.Generic.IDictionary)dictionary, container); + + /// + /// Serializes a dictionary into a JsonObject container. + /// + /// The dictionary to serailize + /// the container to serialize the dictionary into + /// the container + internal static JsonObject ToJson(System.Collections.Generic.IDictionary dictionary, JsonObject container) + { + container = container ?? new JsonObject(); + if (dictionary != null && dictionary.Count > 0) + { + foreach (var key in dictionary) + { + // currently, we don't serialize null values. + if (null != key.Value) + { + container.Add(key.Key, ToJsonValue(key.Value)); + continue; + } + } + } + return container; + } + + internal static Func> DeserializeDictionary(Func> dictionaryFactory) + { + return (node) => FromJson(node, dictionaryFactory(), (object)(DeserializeDictionary(dictionaryFactory)) as Func); + } + + internal static System.Collections.Generic.IDictionary FromJson(JsonObject json, System.Collections.Generic.Dictionary container, System.Func objectFactory, System.Collections.Generic.HashSet excludes = null) => FromJson(json, (System.Collections.Generic.IDictionary)container, objectFactory, excludes); + + + internal static System.Collections.Generic.IDictionary FromJson(JsonObject json, System.Collections.Generic.IDictionary container, System.Func objectFactory, System.Collections.Generic.HashSet excludes = null) + { + if (null == json) + { + return container; + } + + foreach (var key in json.Keys) + { + if (true == excludes?.Contains(key)) + { + continue; + } + + var value = json[key]; + try + { + switch (value.Type) + { + case JsonType.Null: + // skip null values. + continue; + + case JsonType.Array: + case JsonType.Boolean: + case JsonType.Date: + case JsonType.Binary: + case JsonType.Number: + case JsonType.String: + container.Add(key, (V)value.ToValue()); + break; + case JsonType.Object: + if (objectFactory != null) + { + var v = objectFactory(value as JsonObject); + if (null != v) + { + container.Add(key, v); + } + } + break; + } + } + catch + { + } + } + return container; + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Customizations/JsonArray.cs b/src/DedicatedHsm/generated/runtime/Customizations/JsonArray.cs new file mode 100644 index 000000000000..eb4b46620431 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Customizations/JsonArray.cs @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + public partial class JsonArray + { + internal override object ToValue() => Count == 0 ? new object[0] : System.Linq.Enumerable.ToArray(System.Linq.Enumerable.Select(this, each => each.ToValue())); + } + + +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Customizations/JsonBoolean.cs b/src/DedicatedHsm/generated/runtime/Customizations/JsonBoolean.cs new file mode 100644 index 000000000000..515a91fd41b7 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Customizations/JsonBoolean.cs @@ -0,0 +1,16 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + internal partial class JsonBoolean + { + internal static JsonBoolean Create(bool? value) => value is bool b ? new JsonBoolean(b) : null; + internal bool ToBoolean() => Value; + + internal override object ToValue() => Value; + } + + +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Customizations/JsonNode.cs b/src/DedicatedHsm/generated/runtime/Customizations/JsonNode.cs new file mode 100644 index 000000000000..704623b0114f --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Customizations/JsonNode.cs @@ -0,0 +1,21 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + using System; + using System.Collections.Generic; + + public partial class JsonNode + { + /// + /// Returns the content of this node as the underlying value. + /// Will default to the string representation if not overridden in child classes. + /// + /// an object with the underlying value of the node. + internal virtual object ToValue() { + return this.ToString(); + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Customizations/JsonNumber.cs b/src/DedicatedHsm/generated/runtime/Customizations/JsonNumber.cs new file mode 100644 index 000000000000..a5f03e828c48 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Customizations/JsonNumber.cs @@ -0,0 +1,78 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + using System; + + public partial class JsonNumber + { + internal static readonly DateTime EpochDate = new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc); + private static long ToUnixTime(DateTime dateTime) + { + return (long)dateTime.Subtract(EpochDate).TotalSeconds; + } + private static DateTime FromUnixTime(long totalSeconds) + { + return EpochDate.AddSeconds(totalSeconds); + } + internal byte ToByte() => this; + internal int ToInt() => this; + internal long ToLong() => this; + internal short ToShort() => this; + internal UInt16 ToUInt16() => this; + internal UInt32 ToUInt32() => this; + internal UInt64 ToUInt64() => this; + internal decimal ToDecimal() => this; + internal double ToDouble() => this; + internal float ToFloat() => this; + + internal static JsonNumber Create(int? value) => value is int n ? new JsonNumber(n) : null; + internal static JsonNumber Create(long? value) => value is long n ? new JsonNumber(n) : null; + internal static JsonNumber Create(float? value) => value is float n ? new JsonNumber(n) : null; + internal static JsonNumber Create(double? value) => value is double n ? new JsonNumber(n) : null; + internal static JsonNumber Create(decimal? value) => value is decimal n ? new JsonNumber(n) : null; + internal static JsonNumber Create(DateTime? value) => value is DateTime date ? new JsonNumber(ToUnixTime(date)) : null; + + public static implicit operator DateTime(JsonNumber number) => FromUnixTime(number); + internal DateTime ToDateTime() => this; + + internal JsonNumber(decimal value) + { + this.value = value.ToString(); + } + internal override object ToValue() + { + if (IsInteger) + { + if (int.TryParse(this.value, out int iValue)) + { + return iValue; + } + if (long.TryParse(this.value, out long lValue)) + { + return lValue; + } + } + else + { + if (float.TryParse(this.value, out float fValue)) + { + return fValue; + } + if (double.TryParse(this.value, out double dValue)) + { + return dValue; + } + if (decimal.TryParse(this.value, out decimal dcValue)) + { + return dcValue; + } + } + return null; + } + } + + +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Customizations/JsonObject.cs b/src/DedicatedHsm/generated/runtime/Customizations/JsonObject.cs new file mode 100644 index 000000000000..8bb589de694d --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Customizations/JsonObject.cs @@ -0,0 +1,183 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + using System; + using System.Collections.Generic; + + public partial class JsonObject + { + internal override object ToValue() => Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.JsonSerializable.FromJson(this, new System.Collections.Generic.Dictionary(), (obj) => obj.ToValue()); + + internal void SafeAdd(string name, Func valueFn) + { + if (valueFn != null) + { + var value = valueFn(); + if (null != value) + { + items.Add(name, value); + } + } + } + + internal void SafeAdd(string name, JsonNode value) + { + if (null != value) + { + items.Add(name, value); + } + } + + internal T NullableProperty(string propertyName) where T : JsonNode + { + if (this.TryGetValue(propertyName, out JsonNode value)) + { + if (value.IsNull) + { + return null; + } + if (value is T tval) + { + return tval; + } + /* it's present, but not the correct type... */ + //throw new Exception($"Property {propertyName} in object expected type {typeof(T).Name} but value of type {value.Type.ToString()} was found."); + } + return null; + } + + internal JsonObject Property(string propertyName) + { + return PropertyT(propertyName); + } + + internal T PropertyT(string propertyName) where T : JsonNode + { + if (this.TryGetValue(propertyName, out JsonNode value)) + { + if (value.IsNull) + { + return null; // we're going to assume that the consumer knows what to do if null is explicity returned? + } + + if (value is T tval) + { + return tval; + } + /* it's present, but not the correct type... */ + // throw new Exception($"Property {propertyName} in object expected type {typeof(T).Name} but value of type {value.Type.ToString()} was found."); + } + return null; + } + + internal int NumberProperty(string propertyName, ref int output) => output = this.PropertyT(propertyName)?.ToInt() ?? output; + internal float NumberProperty(string propertyName, ref float output) => output = this.PropertyT(propertyName)?.ToFloat() ?? output; + internal byte NumberProperty(string propertyName, ref byte output) => output = this.PropertyT(propertyName)?.ToByte() ?? output; + internal long NumberProperty(string propertyName, ref long output) => output = this.PropertyT(propertyName)?.ToLong() ?? output; + internal double NumberProperty(string propertyName, ref double output) => output = this.PropertyT(propertyName)?.ToDouble() ?? output; + internal decimal NumberProperty(string propertyName, ref decimal output) => output = this.PropertyT(propertyName)?.ToDecimal() ?? output; + internal short NumberProperty(string propertyName, ref short output) => output = this.PropertyT(propertyName)?.ToShort() ?? output; + internal DateTime NumberProperty(string propertyName, ref DateTime output) => output = this.PropertyT(propertyName)?.ToDateTime() ?? output; + + internal int? NumberProperty(string propertyName, ref int? output) => output = this.NullableProperty(propertyName)?.ToInt() ?? null; + internal float? NumberProperty(string propertyName, ref float? output) => output = this.NullableProperty(propertyName)?.ToFloat() ?? null; + internal byte? NumberProperty(string propertyName, ref byte? output) => output = this.NullableProperty(propertyName)?.ToByte() ?? null; + internal long? NumberProperty(string propertyName, ref long? output) => output = this.NullableProperty(propertyName)?.ToLong() ?? null; + internal double? NumberProperty(string propertyName, ref double? output) => output = this.NullableProperty(propertyName)?.ToDouble() ?? null; + internal decimal? NumberProperty(string propertyName, ref decimal? output) => output = this.NullableProperty(propertyName)?.ToDecimal() ?? null; + internal short? NumberProperty(string propertyName, ref short? output) => output = this.NullableProperty(propertyName)?.ToShort() ?? null; + + internal DateTime? NumberProperty(string propertyName, ref DateTime? output) => output = this.NullableProperty(propertyName)?.ToDateTime() ?? null; + + + internal string StringProperty(string propertyName) => this.PropertyT(propertyName)?.ToString(); + internal string StringProperty(string propertyName, ref string output) => output = this.PropertyT(propertyName)?.ToString() ?? output; + internal char StringProperty(string propertyName, ref char output) => output = this.PropertyT(propertyName)?.ToChar() ?? output; + internal char? StringProperty(string propertyName, ref char? output) => output = this.PropertyT(propertyName)?.ToChar() ?? null; + + internal DateTime StringProperty(string propertyName, ref DateTime output) => DateTime.TryParse(this.PropertyT(propertyName)?.ToString(), out output) ? output : output; + internal DateTime? StringProperty(string propertyName, ref DateTime? output) => output = DateTime.TryParse(this.PropertyT(propertyName)?.ToString(), out var o) ? o : output; + + + internal bool BooleanProperty(string propertyName, ref bool output) => output = this.PropertyT(propertyName)?.ToBoolean() ?? output; + internal bool? BooleanProperty(string propertyName, ref bool? output) => output = this.PropertyT(propertyName)?.ToBoolean() ?? null; + + internal T[] ArrayProperty(string propertyName, ref T[] output, Func deserializer) + { + var array = this.PropertyT(propertyName); + if (array != null) + { + output = new T[array.Count]; + for (var i = 0; i < output.Length; i++) + { + output[i] = deserializer(array[i]); + } + } + return output; + } + internal T[] ArrayProperty(string propertyName, Func deserializer) + { + var array = this.PropertyT(propertyName); + if (array != null) + { + var output = new T[array.Count]; + for (var i = 0; i < output.Length; i++) + { + output[i] = deserializer(array[i]); + } + return output; + } + return new T[0]; + } + internal void IterateArrayProperty(string propertyName, Action deserializer) + { + var array = this.PropertyT(propertyName); + if (array != null) + { + for (var i = 0; i < array.Count; i++) + { + deserializer(array[i]); + } + } + } + + internal Dictionary DictionaryProperty(string propertyName, ref Dictionary output, Func deserializer) + { + var dictionary = this.PropertyT(propertyName); + if (output == null) + { + output = new Dictionary(); + } + else + { + output.Clear(); + } + if (dictionary != null) + { + foreach (var key in dictionary.Keys) + { + output[key] = deserializer(dictionary[key]); + } + } + return output; + } + + internal static JsonObject Create(IDictionary source, Func selector) + { + if (source == null || selector == null) + { + return null; + } + var result = new JsonObject(); + + foreach (var key in source.Keys) + { + result.SafeAdd(key, selector(source[key])); + } + return result; + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Customizations/JsonString.cs b/src/DedicatedHsm/generated/runtime/Customizations/JsonString.cs new file mode 100644 index 000000000000..f8af7762ec93 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Customizations/JsonString.cs @@ -0,0 +1,34 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + using System; + using System.Globalization; + using System.Linq; + + public partial class JsonString + { + internal static string DateFormat = "yyyy-MM-dd"; + internal static string DateTimeFormat = "yyyy'-'MM'-'dd'T'HH':'mm':'ss.FFFFFFFK"; + internal static string DateTimeRfc1123Format = "R"; + + internal static JsonString Create(string value) => value == null ? null : new JsonString(value); + internal static JsonString Create(char? value) => value is char c ? new JsonString(c.ToString()) : null; + + internal static JsonString CreateDate(DateTime? value) => value is DateTime date ? new JsonString(date.ToString(DateFormat, CultureInfo.CurrentCulture)) : null; + internal static JsonString CreateDateTime(DateTime? value) => value is DateTime date ? new JsonString(date.ToString(DateTimeFormat, CultureInfo.CurrentCulture)) : null; + internal static JsonString CreateDateTimeRfc1123(DateTime? value) => value is DateTime date ? new JsonString(date.ToString(DateTimeRfc1123Format, CultureInfo.CurrentCulture)) : null; + + internal char ToChar() => this.Value?.ToString()?.FirstOrDefault() ?? default(char); + public static implicit operator char(JsonString value) => value?.ToString()?.FirstOrDefault() ?? default(char); + public static implicit operator char? (JsonString value) => value?.ToString()?.FirstOrDefault(); + + public static implicit operator DateTime(JsonString value) => DateTime.TryParse(value, out var output) ? output : default(DateTime); + public static implicit operator DateTime? (JsonString value) => DateTime.TryParse(value, out var output) ? output : default(DateTime?); + + } + + +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Customizations/XNodeArray.cs b/src/DedicatedHsm/generated/runtime/Customizations/XNodeArray.cs new file mode 100644 index 000000000000..e8846d164022 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Customizations/XNodeArray.cs @@ -0,0 +1,44 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + using System; + using System.Linq; + + public partial class XNodeArray + { + internal static XNodeArray Create(T[] source, Func selector) + { + if (source == null || selector == null) + { + return null; + } + var result = new XNodeArray(); + foreach (var item in source.Select(selector)) + { + result.SafeAdd(item); + } + return result; + } + internal void SafeAdd(JsonNode item) + { + if (item != null) + { + items.Add(item); + } + } + internal void SafeAdd(Func itemFn) + { + if (itemFn != null) + { + var item = itemFn(); + if (item != null) + { + items.Add(item); + } + } + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Debugging.cs b/src/DedicatedHsm/generated/runtime/Debugging.cs new file mode 100644 index 000000000000..70652b845c34 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Debugging.cs @@ -0,0 +1,28 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime +{ + internal static class AttachDebugger + { + internal static void Break() + { + while (!System.Diagnostics.Debugger.IsAttached) + { + System.Console.Error.WriteLine($"Waiting for debugger to attach to process {System.Diagnostics.Process.GetCurrentProcess().Id}"); + for (int i = 0; i < 50; i++) + { + if (System.Diagnostics.Debugger.IsAttached) + { + break; + } + System.Threading.Thread.Sleep(100); + System.Console.Error.Write("."); + } + System.Console.Error.WriteLine(); + } + System.Diagnostics.Debugger.Break(); + } + } +} diff --git a/src/DedicatedHsm/generated/runtime/DictionaryExtensions.cs b/src/DedicatedHsm/generated/runtime/DictionaryExtensions.cs new file mode 100644 index 000000000000..84c7c940abed --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/DictionaryExtensions.cs @@ -0,0 +1,36 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime +{ + internal static class DictionaryExtensions + { + internal static void HashTableToDictionary(System.Collections.Hashtable hashtable, System.Collections.Generic.IDictionary dictionary) + { + foreach (var each in hashtable.Keys) + { + var key = each.ToString(); + var value = hashtable[key]; + if (null != value) + { + if (value is System.Collections.Hashtable nested) + { + HashTableToDictionary(nested, new System.Collections.Generic.Dictionary()); + } + else + { + try + { + dictionary[key] = (V)value; + } + catch + { + // Values getting dropped; not compatible with target dictionary. Not sure what to do here. + } + } + } + } + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/EventData.cs b/src/DedicatedHsm/generated/runtime/EventData.cs new file mode 100644 index 000000000000..13a50ba5b8a5 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/EventData.cs @@ -0,0 +1,78 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime +{ + + using System; + using System.Threading; + + ///Represents the data in signaled event. + public partial class EventData + { + /// + /// The type of the event being signaled + /// + public string Id; + + /// + /// The user-ready message from the event. + /// + public string Message; + + /// + /// When the event is about a parameter, this is the parameter name. + /// Used in Validation Events + /// + public string Parameter; + + /// + /// This represents a numeric value associated with the event. + /// Use for progress-style events + /// + public double Value; + + /// + /// Any extended data for an event should be serialized and stored here. + /// + public string ExtendedData; + + /// + /// If the event triggers after the request message has been created, this will contain the Request Message (which in HTTP calls would be HttpRequestMessage) + /// + /// Typically you'd cast this to the expected type to use it: + /// + /// if(eventData.RequestMessgae is HttpRequestMessage httpRequest) + /// { + /// httpRequest.Headers.Add("x-request-flavor", "vanilla"); + /// } + /// + /// + public object RequestMessage; + + /// + /// If the event triggers after the response is back, this will contain the Response Message (which in HTTP calls would be HttpResponseMessage) + /// + /// Typically you'd cast this to the expected type to use it: + /// + /// if(eventData.ResponseMessage is HttpResponseMessage httpResponse){ + /// var flavor = httpResponse.Headers.GetValue("x-request-flavor"); + /// } + /// + /// + public object ResponseMessage; + + /// + /// Cancellation method for this event. + /// + /// If the event consumer wishes to cancel the request that initiated this event, call Cancel() + /// + /// + /// The original initiator of the request must provide the implementation of this. + /// + public System.Action Cancel; + } + +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/EventDataExtensions.cs b/src/DedicatedHsm/generated/runtime/EventDataExtensions.cs new file mode 100644 index 000000000000..1c04292ff042 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/EventDataExtensions.cs @@ -0,0 +1,94 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime +{ + using System; + + [System.ComponentModel.TypeConverter(typeof(EventDataConverter))] + /// + /// PowerShell-specific data on top of the llc# EventData + /// + /// + /// In PowerShell, we add on the EventDataConverter to support sending events between modules. + /// Obviously, this code would need to be duplcated on both modules. + /// This is preferable to sharing a common library, as versioning makes that problematic. + /// + public partial class EventData : EventArgs + { + } + + /// + /// A PowerShell PSTypeConverter to adapt an EventData object that has been passed. + /// Usually used between modules. + /// + public class EventDataConverter : System.Management.Automation.PSTypeConverter + { + public override bool CanConvertTo(object sourceValue, Type destinationType) => false; + public override object ConvertTo(object sourceValue, Type destinationType, IFormatProvider formatProvider, bool ignoreCase) => null; + public override bool CanConvertFrom(dynamic sourceValue, Type destinationType) => destinationType == typeof(EventData) && CanConvertFrom(sourceValue); + public override object ConvertFrom(dynamic sourceValue, Type destinationType, IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Verifies that a given object has the required members to convert it to the target type (EventData) + /// + /// Uses a dynamic type so that it is able to use the simplest code without excessive checking. + /// + /// The instance to verify + /// True, if the object has all the required parameters. + public static bool CanConvertFrom(dynamic sourceValue) + { + try + { + // check if this has *required* parameters... + sourceValue?.Id?.GetType(); + sourceValue?.Message?.GetType(); + sourceValue?.Cancel?.GetType(); + + // remaining parameters are not *required*, + // and if they have values, it will copy them at conversion time. + } + catch + { + // if anything throws an exception (because it's null, or doesn't have that member) + return false; + } + return true; + } + + /// + /// Returns result of the delegate as the expected type, or default(T) + /// + /// This isolates any exceptions from the consumer. + /// + /// A delegate that returns a value + /// The desired output type + /// The value from the function if the type is correct + private static T To(Func srcValue) + { + try { return srcValue(); } + catch { return default(T); } + } + + /// + /// Converts an incoming object to the expected type by treating the incoming object as a dynamic, and coping the expected values. + /// + /// the incoming object + /// EventData + public static EventData ConvertFrom(dynamic sourceValue) + { + return new EventData + { + Id = To(() => sourceValue.Id), + Message = To(() => sourceValue.Message), + Parameter = To(() => sourceValue.Parameter), + Value = To(() => sourceValue.Value), + RequestMessage = To(() => sourceValue.RequestMessage), + ResponseMessage = To(() => sourceValue.ResponseMessage), + Cancel = To(() => sourceValue.Cancel) + }; + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/EventListener.cs b/src/DedicatedHsm/generated/runtime/EventListener.cs new file mode 100644 index 000000000000..b9115ce50acd --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/EventListener.cs @@ -0,0 +1,247 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime +{ + + using System; + using System.Linq; + using System.Collections; + using System.Collections.Generic; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + using GetEventData = System.Func; + using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Extensions; + + public interface IValidates + { + Task Validate(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IEventListener listener); + } + + /// + /// The IEventListener Interface defines the communication mechanism for Signaling events during a remote call. + /// + /// + /// The interface is designed to be as minimal as possible, allow for quick peeking of the event type (id) + /// and the cancellation status and provides a delegate for retrieving the event details themselves. + /// + public interface IEventListener + { + Task Signal(string id, CancellationToken token, GetEventData createMessage); + CancellationToken Token { get; } + System.Action Cancel { get; } + } + + internal static partial class Extensions + { + public static Task Signal(this IEventListener instance, string id, CancellationToken token, Func createMessage) => instance.Signal(id, token, createMessage); + public static Task Signal(this IEventListener instance, string id, CancellationToken token) => instance.Signal(id, token, () => new EventData { Id = id, Cancel = instance.Cancel }); + public static Task Signal(this IEventListener instance, string id, CancellationToken token, string messageText) => instance.Signal(id, token, () => new EventData { Id = id, Message = messageText, Cancel = instance.Cancel }); + public static Task Signal(this IEventListener instance, string id, CancellationToken token, string messageText, HttpRequestMessage request) => instance.Signal(id, token, () => new EventData { Id = id, Message = messageText, RequestMessage = request, Cancel = instance.Cancel }); + public static Task Signal(this IEventListener instance, string id, CancellationToken token, string messageText, HttpResponseMessage response) => instance.Signal(id, token, () => new EventData { Id = id, Message = messageText, RequestMessage = response.RequestMessage, ResponseMessage = response, Cancel = instance.Cancel }); + public static Task Signal(this IEventListener instance, string id, CancellationToken token, string messageText, double magnitude) => instance.Signal(id, token, () => new EventData { Id = id, Message = messageText, Value = magnitude, Cancel = instance.Cancel }); + public static Task Signal(this IEventListener instance, string id, CancellationToken token, string messageText, double magnitude, HttpRequestMessage request) => instance.Signal(id, token, () => new EventData { Id = id, Message = messageText, RequestMessage = request, Value = magnitude, Cancel = instance.Cancel }); + public static Task Signal(this IEventListener instance, string id, CancellationToken token, string messageText, double magnitude, HttpResponseMessage response) => instance.Signal(id, token, () => new EventData { Id = id, Message = messageText, RequestMessage = response.RequestMessage, ResponseMessage = response, Value = magnitude, Cancel = instance.Cancel }); + public static Task Signal(this IEventListener instance, string id, CancellationToken token, HttpRequestMessage request) => instance.Signal(id, token, () => new EventData { Id = id, RequestMessage = request, Cancel = instance.Cancel }); + public static Task Signal(this IEventListener instance, string id, CancellationToken token, HttpRequestMessage request, HttpResponseMessage response) => instance.Signal(id, token, () => new EventData { Id = id, RequestMessage = request, ResponseMessage = response, Cancel = instance.Cancel }); + public static Task Signal(this IEventListener instance, string id, CancellationToken token, HttpResponseMessage response) => instance.Signal(id, token, () => new EventData { Id = id, RequestMessage = response.RequestMessage, ResponseMessage = response, Cancel = instance.Cancel }); + public static Task Signal(this IEventListener instance, string id, CancellationToken token, EventData message) => instance.Signal(id, token, () => { message.Id = id; message.Cancel = instance.Cancel; return message; }); + + public static Task Signal(this IEventListener instance, string id, Func createMessage) => instance.Signal(id, instance.Token, createMessage); + public static Task Signal(this IEventListener instance, string id) => instance.Signal(id, instance.Token, () => new EventData { Id = id, Cancel = instance.Cancel }); + public static Task Signal(this IEventListener instance, string id, string messageText) => instance.Signal(id, instance.Token, () => new EventData { Id = id, Message = messageText, Cancel = instance.Cancel }); + public static Task Signal(this IEventListener instance, string id, string messageText, HttpRequestMessage request) => instance.Signal(id, instance.Token, () => new EventData { Id = id, Message = messageText, RequestMessage = request, Cancel = instance.Cancel }); + public static Task Signal(this IEventListener instance, string id, string messageText, HttpResponseMessage response) => instance.Signal(id, instance.Token, () => new EventData { Id = id, Message = messageText, RequestMessage = response.RequestMessage, ResponseMessage = response, Cancel = instance.Cancel }); + public static Task Signal(this IEventListener instance, string id, string messageText, double magnitude) => instance.Signal(id, instance.Token, () => new EventData { Id = id, Message = messageText, Value = magnitude, Cancel = instance.Cancel }); + public static Task Signal(this IEventListener instance, string id, string messageText, double magnitude, HttpRequestMessage request) => instance.Signal(id, instance.Token, () => new EventData { Id = id, Message = messageText, RequestMessage = request, Value = magnitude, Cancel = instance.Cancel }); + public static Task Signal(this IEventListener instance, string id, string messageText, double magnitude, HttpResponseMessage response) => instance.Signal(id, instance.Token, () => new EventData { Id = id, Message = messageText, RequestMessage = response.RequestMessage, ResponseMessage = response, Value = magnitude, Cancel = instance.Cancel }); + public static Task Signal(this IEventListener instance, string id, HttpRequestMessage request) => instance.Signal(id, instance.Token, () => new EventData { Id = id, RequestMessage = request, Cancel = instance.Cancel }); + public static Task Signal(this IEventListener instance, string id, HttpRequestMessage request, HttpResponseMessage response) => instance.Signal(id, instance.Token, () => new EventData { Id = id, RequestMessage = request, ResponseMessage = response, Cancel = instance.Cancel }); + public static Task Signal(this IEventListener instance, string id, HttpResponseMessage response) => instance.Signal(id, instance.Token, () => new EventData { Id = id, RequestMessage = response.RequestMessage, ResponseMessage = response, Cancel = instance.Cancel }); + public static Task Signal(this IEventListener instance, string id, EventData message) => instance.Signal(id, instance.Token, () => { message.Id = id; message.Cancel = instance.Cancel; return message; }); + + public static Task Signal(this IEventListener instance, string id, System.Uri uri) => instance.Signal(id, instance.Token, () => new EventData { Id = id, Message = uri.ToString(), Cancel = instance.Cancel }); + + public static async Task AssertNotNull(this IEventListener instance, string parameterName, object value) + { + if (value == null) + { + await instance.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.ValidationWarning, instance.Token, () => new EventData { Id = Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.ValidationWarning, Message = $"'{parameterName}' should not be null", Parameter = parameterName, Cancel = instance.Cancel }); + } + } + public static async Task AssertMinimumLength(this IEventListener instance, string parameterName, string value, int length) + { + if (value != null && value.Length < length) + { + await instance.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.ValidationWarning, instance.Token, () => new EventData { Id = Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.ValidationWarning, Message = $"Length of '{parameterName}' is less than {length}", Parameter = parameterName, Cancel = instance.Cancel }); + } + } + public static async Task AssertMaximumLength(this IEventListener instance, string parameterName, string value, int length) + { + if (value != null && value.Length > length) + { + await instance.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.ValidationWarning, instance.Token, () => new EventData { Id = Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.ValidationWarning, Message = $"Length of '{parameterName}' is greater than {length}", Parameter = parameterName, Cancel = instance.Cancel }); + } + } + + public static async Task AssertRegEx(this IEventListener instance, string parameterName, string value, string regularExpression) + { + if (value != null && !System.Text.RegularExpressions.Regex.Match(value, regularExpression).Success) + { + await instance.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.ValidationWarning, instance.Token, () => new EventData { Id = Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.ValidationWarning, Message = $"'{parameterName}' does not validate against pattern /{regularExpression}/", Parameter = parameterName, Cancel = instance.Cancel }); + } + } + public static async Task AssertEnum(this IEventListener instance, string parameterName, string value, params string[] values) + { + if (!values.Any(each => each.Equals(value))) + { + await instance.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.ValidationWarning, instance.Token, () => new EventData { Id = Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.ValidationWarning, Message = $"'{parameterName}' is not one of ({values.Aggregate((c, e) => $"'{e}',{c}")}", Parameter = parameterName, Cancel = instance.Cancel }); + } + } + public static async Task AssertObjectIsValid(this IEventListener instance, string parameterName, object inst) + { + await (inst as Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.IValidates)?.Validate(instance); + } + + public static async Task AssertIsLessThan(this IEventListener instance, string parameterName, T? value, T max) where T : struct, System.IComparable + { + if (null != value && ((T)value).CompareTo(max) >= 0) + { + await instance.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.ValidationWarning, instance.Token, () => new EventData { Id = Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.ValidationWarning, Message = $"Value of '{parameterName}' must be less than {max} (value is {value})", Parameter = parameterName, Cancel = instance.Cancel }); + } + } + public static async Task AssertIsGreaterThan(this IEventListener instance, string parameterName, T? value, T max) where T : struct, System.IComparable + { + if (null != value && ((T)value).CompareTo(max) <= 0) + { + await instance.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.ValidationWarning, instance.Token, () => new EventData { Id = Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.ValidationWarning, Message = $"Value of '{parameterName}' must be greater than {max} (value is {value})", Parameter = parameterName, Cancel = instance.Cancel }); + } + } + public static async Task AssertIsLessThanOrEqual(this IEventListener instance, string parameterName, T? value, T max) where T : struct, System.IComparable + { + if (null != value && ((T)value).CompareTo(max) > 0) + { + await instance.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.ValidationWarning, instance.Token, () => new EventData { Id = Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.ValidationWarning, Message = $"Value of '{parameterName}' must be less than or equal to {max} (value is {value})", Parameter = parameterName, Cancel = instance.Cancel }); + } + } + public static async Task AssertIsGreaterThanOrEqual(this IEventListener instance, string parameterName, T? value, T max) where T : struct, System.IComparable + { + if (null != value && ((T)value).CompareTo(max) < 0) + { + await instance.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.ValidationWarning, instance.Token, () => new EventData { Id = Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.ValidationWarning, Message = $"Value of '{parameterName}' must be greater than or equal to {max} (value is {value})", Parameter = parameterName, Cancel = instance.Cancel }); + } + } + public static async Task AssertIsMultipleOf(this IEventListener instance, string parameterName, Int64? value, Int64 multiple) + { + if (null != value && value % multiple != 0) + { + await instance.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.ValidationWarning, instance.Token, () => new EventData { Id = Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.ValidationWarning, Message = $"Value of '{parameterName}' must be multiple of {multiple} (value is {value})", Parameter = parameterName, Cancel = instance.Cancel }); + } + } + public static async Task AssertIsMultipleOf(this IEventListener instance, string parameterName, double? value, double multiple) + { + if (null != value) + { + var i = (Int64)(value / multiple); + if (i != value / multiple) + { + await instance.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.ValidationWarning, instance.Token, () => new EventData { Id = Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.ValidationWarning, Message = $"Value of '{parameterName}' must be multiple of {multiple} (value is {value})", Parameter = parameterName, Cancel = instance.Cancel }); + } + } + } + public static async Task AssertIsMultipleOf(this IEventListener instance, string parameterName, decimal? value, decimal multiple) + { + if (null != value) + { + var i = (Int64)(value / multiple); + if (i != value / multiple) + { + await instance.Signal(Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.ValidationWarning, instance.Token, () => new EventData { Id = Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Events.ValidationWarning, Message = $"Value of '{parameterName}' must be multiple of {multiple} (value is {value})", Parameter = parameterName, Cancel = instance.Cancel }); + } + } + } + } + + /// + /// An Implementation of the IEventListener that supports subscribing to events and dispatching them + /// (used for manually using the lowlevel interface) + /// + public class EventListener : CancellationTokenSource, IEnumerable>, IEventListener + { + private Dictionary calls = new Dictionary(); + public IEnumerator> GetEnumerator() => calls.GetEnumerator(); + IEnumerator IEnumerable.GetEnumerator() => calls.GetEnumerator(); + public EventListener() + { + } + + public new Action Cancel => base.Cancel; + private Event tracer; + + public EventListener(params (string name, Event callback)[] initializer) + { + foreach (var each in initializer) + { + Add(each.name, each.callback); + } + } + + public void Add(string name, SynchEvent callback) + { + Add(name, (message) => { callback(message); return Task.CompletedTask; }); + } + + public void Add(string name, Event callback) + { + if (callback != null) + { + if (string.IsNullOrEmpty(name)) + { + if (calls.ContainsKey(name)) + { + tracer += callback; + } + else + { + tracer = callback; + } + } + else + { + if (calls.ContainsKey(name)) + { + calls[name ?? System.String.Empty] += callback; + } + else + { + calls[name ?? System.String.Empty] = callback; + } + } + } + } + + + public async Task Signal(string id, CancellationToken token, GetEventData createMessage) + { + using (NoSynchronizationContext) + { + if (!string.IsNullOrEmpty(id) && (calls.TryGetValue(id, out Event listener) || tracer != null)) + { + var message = createMessage(); + message.Id = id; + + await listener?.Invoke(message); + await tracer?.Invoke(message); + + if (token.IsCancellationRequested) + { + throw new OperationCanceledException($"Canceled by event {id} ", this.Token); + } + } + } + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Events.cs b/src/DedicatedHsm/generated/runtime/Events.cs new file mode 100644 index 000000000000..514311902ee8 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Events.cs @@ -0,0 +1,27 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime +{ + public static partial class Events + { + public const string Log = nameof(Log); + public const string Validation = nameof(Validation); + public const string ValidationWarning = nameof(ValidationWarning); + public const string AfterValidation = nameof(AfterValidation); + public const string RequestCreated = nameof(RequestCreated); + public const string ResponseCreated = nameof(ResponseCreated); + public const string URLCreated = nameof(URLCreated); + public const string Finally = nameof(Finally); + public const string HeaderParametersAdded = nameof(HeaderParametersAdded); + public const string BodyContentSet = nameof(BodyContentSet); + public const string BeforeCall = nameof(BeforeCall); + public const string BeforeResponseDispatch = nameof(BeforeResponseDispatch); + public const string FollowingNextLink = nameof(FollowingNextLink); + public const string DelayBeforePolling = nameof(DelayBeforePolling); + public const string Polling = nameof(Polling); + + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/EventsExtensions.cs b/src/DedicatedHsm/generated/runtime/EventsExtensions.cs new file mode 100644 index 000000000000..35b2354f8387 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/EventsExtensions.cs @@ -0,0 +1,27 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime +{ + public static partial class Events + { + public const string CmdletProcessRecordStart = nameof(CmdletProcessRecordStart); + public const string CmdletProcessRecordAsyncStart = nameof(CmdletProcessRecordAsyncStart); + public const string CmdletException = nameof(CmdletException); + public const string CmdletGetPipeline = nameof(CmdletGetPipeline); + public const string CmdletBeforeAPICall = nameof(CmdletBeforeAPICall); + public const string CmdletBeginProcessing = nameof(CmdletBeginProcessing); + public const string CmdletEndProcessing = nameof(CmdletEndProcessing); + public const string CmdletProcessRecordEnd = nameof(CmdletProcessRecordEnd); + public const string CmdletProcessRecordAsyncEnd = nameof(CmdletProcessRecordAsyncEnd); + public const string CmdletAfterAPICall = nameof(CmdletAfterAPICall); + + public const string Verbose = nameof(Verbose); + public const string Debug = nameof(Debug); + public const string Information = nameof(Information); + public const string Error = nameof(Error); + public const string Warning = nameof(Warning); + } + +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Extensions.cs b/src/DedicatedHsm/generated/runtime/Extensions.cs new file mode 100644 index 000000000000..3b27777a99ff --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Extensions.cs @@ -0,0 +1,111 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime +{ + using System.Linq; + + internal static partial class Extensions + { + + public static T ReadHeaders(this T instance, global::System.Net.Http.Headers.HttpResponseHeaders headers) where T : class + { + (instance as IHeaderSerializable)?.ReadHeaders(headers); + return instance; + } + + internal static bool If(T input, out T output) + { + if (null == input) + { + output = default(T); + return false; + } + output = input; + return true; + } + + internal static void AddIf(T value, System.Action addMethod) + { + // if value is present (and it's not just an empty JSON Object) + if (null != value && (value as Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject)?.Keys.Count != 0) + { + addMethod(value); + } + } + + internal static void AddIf(T value, string serializedName, System.Action addMethod) + { + // if value is present (and it's not just an empty JSON Object) + if (null != value && (value as Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject)?.Keys.Count != 0) + { + addMethod(serializedName, value); + } + } + + /// + /// Returns the first header value as a string from an HttpReponseMessage. + /// + /// the HttpResponseMessage to fetch a header from + /// the header name + /// the first header value as a string from an HttpReponseMessage. string.empty if there is no header value matching + internal static string GetFirstHeader(this System.Net.Http.HttpResponseMessage response, string headerName) => response.Headers.FirstOrDefault(each => headerName == each.Key).Value?.FirstOrDefault() ?? string.Empty; + + /// + /// Sets the Synchronization Context to null, and returns an IDisposable that when disposed, + /// will restore the synchonization context to the original value. + /// + /// This is used a less-invasive means to ensure that code in the library that doesn't + /// need to be continued in the original context doesn't have to have ConfigureAwait(false) + /// on every single await + /// + /// If the SynchronizationContext is null when this is used, the resulting IDisposable + /// will not do anything (this prevents excessive re-setting of the SynchronizationContext) + /// + /// Usage: + /// + /// using(NoSynchronizationContext) { + /// await SomeAsyncOperation(); + /// await SomeOtherOperation(); + /// } + /// + /// + /// + /// An IDisposable that will return the SynchronizationContext to original state + internal static System.IDisposable NoSynchronizationContext => System.Threading.SynchronizationContext.Current == null ? Dummy : new NoSyncContext(); + + /// + /// An instance of the Dummy IDispoable. + /// + /// + internal static System.IDisposable Dummy = new DummyDisposable(); + + /// + /// An IDisposable that does absolutely nothing. + /// + internal class DummyDisposable : System.IDisposable + { + public void Dispose() + { + } + } + /// + /// An IDisposable that saves the SynchronizationContext,sets it to null and + /// restores it to the original upon Dispose(). + /// + /// NOTE: This is designed to be less invasive than using .ConfigureAwait(false) + /// on every single await in library code (ie, places where we know we don't need + /// to continue in the same context as we went async) + /// + internal class NoSyncContext : System.IDisposable + { + private System.Threading.SynchronizationContext original = System.Threading.SynchronizationContext.Current; + internal NoSyncContext() + { + System.Threading.SynchronizationContext.SetSynchronizationContext(null); + } + public void Dispose() => System.Threading.SynchronizationContext.SetSynchronizationContext(original); + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Helpers/Extensions/StringBuilderExtensions.cs b/src/DedicatedHsm/generated/runtime/Helpers/Extensions/StringBuilderExtensions.cs new file mode 100644 index 000000000000..a781e9469e9d --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Helpers/Extensions/StringBuilderExtensions.cs @@ -0,0 +1,23 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System.Text; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + internal static class StringBuilderExtensions + { + /// + /// Extracts the buffered value and resets the buffer + /// + internal static string Extract(this StringBuilder builder) + { + var text = builder.ToString(); + + builder.Clear(); + + return text; + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Helpers/Extensions/TypeExtensions.cs b/src/DedicatedHsm/generated/runtime/Helpers/Extensions/TypeExtensions.cs new file mode 100644 index 000000000000..526d3d8fb490 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Helpers/Extensions/TypeExtensions.cs @@ -0,0 +1,61 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + internal static class TypeExtensions + { + internal static bool IsNullable(this Type type) => + type.IsGenericType && type.GetGenericTypeDefinition().Equals(typeof(Nullable<>)); + + internal static Type GetOpenGenericInterface(this Type candidateType, Type openGenericInterfaceType) + { + + if (candidateType.IsGenericType && candidateType.GetGenericTypeDefinition() == openGenericInterfaceType) + { + return candidateType; + } + + // Check if it references it's own converter.... + + foreach (Type interfaceType in candidateType.GetInterfaces()) + { + if (interfaceType.IsGenericType + && interfaceType.GetGenericTypeDefinition().Equals(openGenericInterfaceType)) + { + return interfaceType; + } + } + + return null; + } + + // Author: Sebastian Good + // http://stackoverflow.com/questions/503263/how-to-determine-if-a-type-implements-a-specific-generic-interface-type + internal static bool ImplementsOpenGenericInterface(this Type candidateType, Type openGenericInterfaceType) + { + if (candidateType.Equals(openGenericInterfaceType)) + { + return true; + } + + if (candidateType.IsGenericType && candidateType.GetGenericTypeDefinition().Equals(openGenericInterfaceType)) + { + return true; + } + + foreach (Type i in candidateType.GetInterfaces()) + { + if (i.IsGenericType && i.ImplementsOpenGenericInterface(openGenericInterfaceType)) + { + return true; + } + } + + return false; + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Helpers/Seperator.cs b/src/DedicatedHsm/generated/runtime/Helpers/Seperator.cs new file mode 100644 index 000000000000..3b61544eaa6d --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Helpers/Seperator.cs @@ -0,0 +1,11 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + internal static class Seperator + { + internal static readonly char[] Dash = { '-' }; + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Helpers/TypeDetails.cs b/src/DedicatedHsm/generated/runtime/Helpers/TypeDetails.cs new file mode 100644 index 000000000000..c06292f2de89 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Helpers/TypeDetails.cs @@ -0,0 +1,116 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Collections; +using System.Collections.Concurrent; +using System.Collections.Generic; +using System.Reflection; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + + + + internal class TypeDetails + { + private readonly Type info; + + internal TypeDetails(Type info) + { + this.info = info ?? throw new ArgumentNullException(nameof(info)); + } + + internal Type NonNullType { get; set; } + + internal object DefaultValue { get; set; } + + internal bool IsNullable { get; set; } + + internal bool IsList { get; set; } + + internal bool IsStringLike { get; set; } + + internal bool IsEnum => info.IsEnum; + + internal bool IsArray => info.IsArray; + + internal bool IsValueType => info.IsValueType; + + internal Type ElementType { get; set; } + + internal IJsonConverter JsonConverter { get; set; } + + #region Creation + + private static readonly ConcurrentDictionary cache = new ConcurrentDictionary(); + + internal static TypeDetails Get() => Get(typeof(T)); + + internal static TypeDetails Get(Type type) => cache.GetOrAdd(type, Create); + + private static TypeDetails Create(Type type) + { + var isGenericList = !type.IsPrimitive && type.ImplementsOpenGenericInterface(typeof(IList<>)); + var isList = !type.IsPrimitive && (isGenericList || typeof(IList).IsAssignableFrom(type)); + + var isNullable = type.IsNullable(); + + Type elementType; + + if (type.IsArray) + { + elementType = type.GetElementType(); + } + else if (isGenericList) + { + var iList = type.GetOpenGenericInterface(typeof(IList<>)); + + elementType = iList.GetGenericArguments()[0]; + } + else + { + elementType = null; + } + + var nonNullType = isNullable ? type.GetGenericArguments()[0] : type; + + var isStringLike = false; + + IJsonConverter converter; + + var jsonConverterAttribute = type.GetCustomAttribute(); + + if (jsonConverterAttribute != null) + { + converter = jsonConverterAttribute.Converter; + } + else if (nonNullType.IsEnum) + { + converter = new EnumConverter(nonNullType); + } + else if (JsonConverterFactory.Instances.TryGetValue(nonNullType, out converter)) + { + } + else if (StringLikeHelper.IsStringLike(nonNullType)) + { + isStringLike = true; + + converter = new StringLikeConverter(nonNullType); + } + + return new TypeDetails(nonNullType) { + NonNullType = nonNullType, + DefaultValue = type.IsValueType ? Activator.CreateInstance(type) : null, + IsNullable = isNullable, + IsList = isList, + IsStringLike = isStringLike, + ElementType = elementType, + JsonConverter = converter + }; + } + + #endregion + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Helpers/XHelper.cs b/src/DedicatedHsm/generated/runtime/Helpers/XHelper.cs new file mode 100644 index 000000000000..ae00acc5ae24 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Helpers/XHelper.cs @@ -0,0 +1,75 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + internal static class XHelper + { + internal static JsonNode Create(JsonType type, TypeCode code, object value) + { + switch (type) + { + case JsonType.Binary : return new XBinary((byte[])value); + case JsonType.Boolean : return new JsonBoolean((bool)value); + case JsonType.Number : return new JsonNumber(value.ToString()); + case JsonType.String : return new JsonString((string)value); + } + + throw new Exception($"JsonType '{type}' does not have a fast conversion"); + } + + internal static bool TryGetElementType(TypeCode code, out JsonType type) + { + switch (code) + { + case TypeCode.Boolean : type = JsonType.Boolean; return true; + case TypeCode.Byte : type = JsonType.Number; return true; + case TypeCode.DateTime : type = JsonType.Date; return true; + case TypeCode.Decimal : type = JsonType.Number; return true; + case TypeCode.Double : type = JsonType.Number; return true; + case TypeCode.Empty : type = JsonType.Null; return true; + case TypeCode.Int16 : type = JsonType.Number; return true; + case TypeCode.Int32 : type = JsonType.Number; return true; + case TypeCode.Int64 : type = JsonType.Number; return true; + case TypeCode.SByte : type = JsonType.Number; return true; + case TypeCode.Single : type = JsonType.Number; return true; + case TypeCode.String : type = JsonType.String; return true; + case TypeCode.UInt16 : type = JsonType.Number; return true; + case TypeCode.UInt32 : type = JsonType.Number; return true; + case TypeCode.UInt64 : type = JsonType.Number; return true; + } + + type = default; + + return false; + } + + internal static JsonType GetElementType(TypeCode code) + { + switch (code) + { + case TypeCode.Boolean : return JsonType.Boolean; + case TypeCode.Byte : return JsonType.Number; + case TypeCode.DateTime : return JsonType.Date; + case TypeCode.Decimal : return JsonType.Number; + case TypeCode.Double : return JsonType.Number; + case TypeCode.Empty : return JsonType.Null; + case TypeCode.Int16 : return JsonType.Number; + case TypeCode.Int32 : return JsonType.Number; + case TypeCode.Int64 : return JsonType.Number; + case TypeCode.SByte : return JsonType.Number; + case TypeCode.Single : return JsonType.Number; + case TypeCode.String : return JsonType.String; + case TypeCode.UInt16 : return JsonType.Number; + case TypeCode.UInt32 : return JsonType.Number; + case TypeCode.UInt64 : return JsonType.Number; + default : return JsonType.Object; + } + + throw new Exception($"TypeCode '{code}' does not have a fast converter"); + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/HttpPipeline.cs b/src/DedicatedHsm/generated/runtime/HttpPipeline.cs new file mode 100644 index 000000000000..a73cc2996dee --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/HttpPipeline.cs @@ -0,0 +1,88 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime +{ + using System.Net.Http; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + using System.Collections; + using System.Linq; + + using GetEventData = System.Func; + using NextDelegate = System.Func, System.Threading.Tasks.Task>, System.Threading.Tasks.Task>; + + using SignalDelegate = System.Func, System.Threading.Tasks.Task>; + using GetParameterDelegate = System.Func, string, object>; + using SendAsyncStepDelegate = System.Func, System.Threading.Tasks.Task>, System.Func, System.Threading.Tasks.Task>, System.Threading.Tasks.Task>, System.Threading.Tasks.Task>; + using PipelineChangeDelegate = System.Action, System.Threading.Tasks.Task>, System.Func, System.Threading.Tasks.Task>, System.Threading.Tasks.Task>, System.Threading.Tasks.Task>>; + using ModuleLoadPipelineDelegate = System.Action, System.Threading.Tasks.Task>, System.Func, System.Threading.Tasks.Task>, System.Threading.Tasks.Task>, System.Threading.Tasks.Task>>, System.Action, System.Threading.Tasks.Task>, System.Func, System.Threading.Tasks.Task>, System.Threading.Tasks.Task>, System.Threading.Tasks.Task>>>; + using NewRequestPipelineDelegate = System.Action, System.Action, System.Threading.Tasks.Task>, System.Func, System.Threading.Tasks.Task>, System.Threading.Tasks.Task>, System.Threading.Tasks.Task>>, System.Action, System.Threading.Tasks.Task>, System.Func, System.Threading.Tasks.Task>, System.Threading.Tasks.Task>, System.Threading.Tasks.Task>>>; + +/* + public class DelegateBasedEventListener : IEventListener + { + private EventListenerDelegate _listener; + public DelegateBasedEventListener(EventListenerDelegate listener) + { + _listener = listener; + } + public CancellationToken Token => CancellationToken.None; + public System.Action Cancel => () => { }; + + + public Task Signal(string id, CancellationToken token, GetEventData createMessage) + { + return _listener(id, token, () => createMessage()); + } + } +*/ + /// + /// This is a necessary extension to the SendAsyncFactory to support the 'generic' delegate format. + /// + public partial class SendAsyncFactory + { + /// + /// This translates a generic-defined delegate for a listener into one that fits our ISendAsync pattern. + /// (Provided to support out-of-module delegation for Azure Cmdlets) + /// + /// The Pipeline Step as a delegate + public SendAsyncFactory(SendAsyncStepDelegate step) => this.implementation = (request, listener, next) => + step( + request, + listener.Token, + listener.Cancel, + (id, token, getEventData) => listener.Signal(id, token, () => { + var data = EventDataConverter.ConvertFrom( getEventData() ) as EventData; + data.Id = id; + data.Cancel = listener.Cancel; + data.RequestMessage = request; + return data; + }), + (req, token, cancel, listenerDelegate) => next.SendAsync(req, listener)); + } + + public partial class HttpPipeline : ISendAsync + { + public HttpPipeline Append(SendAsyncStepDelegate item) + { + if (item != null) + { + Append(new SendAsyncFactory(item)); + } + return this; + } + + public HttpPipeline Prepend(SendAsyncStepDelegate item) + { + if (item != null) + { + Prepend(new SendAsyncFactory(item)); + } + return this; + } + } +} diff --git a/src/DedicatedHsm/generated/runtime/HttpPipelineMocking.ps1 b/src/DedicatedHsm/generated/runtime/HttpPipelineMocking.ps1 new file mode 100644 index 000000000000..16014b9fa991 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/HttpPipelineMocking.ps1 @@ -0,0 +1,110 @@ +$ErrorActionPreference = "Stop" + +# get the recording path +if (-not $TestRecordingFile) { + $TestRecordingFile = Join-Path $PSScriptRoot 'recording.json' +} + +# create the Http Pipeline Recorder +$Mock = New-Object -Type Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PipelineMock $TestRecordingFile + +# set the recorder to the appropriate mode (default to 'live') +Write-Host -ForegroundColor Green "Running '$TestMode' mode..." +switch ($TestMode) { + 'record' { + Write-Host -ForegroundColor Green "Recording to $TestRecordingFile" + $Mock.SetRecord() + $null = erase -ea 0 $TestRecordingFile + } + 'playback' { + if (-not (Test-Path $TestRecordingFile)) { + Write-Host -fore:yellow "Recording file '$TestRecordingFile' is not present. Tests expecting recorded responses will fail" + } else { + Write-Host -ForegroundColor Green "Using recording $TestRecordingFile" + } + $Mock.SetPlayback() + $Mock.ForceResponseHeaders["Retry-After"] = "0"; + } + default: { + $Mock.SetLive() + } +} + +# overrides for Pester Describe/Context/It + +function Describe( + [Parameter(Mandatory = $true, Position = 0)] + [string] $Name, + + [Alias('Tags')] + [string[]] $Tag = @(), + + [Parameter(Position = 1)] + [ValidateNotNull()] + [ScriptBlock] $Fixture = $(Throw "No test script block is provided. (Have you put the open curly brace on the next line?)") +) { + $Mock.PushDescription($Name) + try { + return pester\Describe -Name $Name -Tag $Tag -Fixture $fixture + } + finally { + $Mock.PopDescription() + } +} + +function Context( + [Parameter(Mandatory = $true, Position = 0)] + [string] $Name, + + [Alias('Tags')] + [string[]] $Tag = @(), + + [Parameter(Position = 1)] + [ValidateNotNull()] + [ScriptBlock] $Fixture = $(Throw "No test script block is provided. (Have you put the open curly brace on the next line?)") +) { + $Mock.PushContext($Name) + try { + return pester\Context -Name $Name -Tag $Tag -Fixture $fixture + } + finally { + $Mock.PopContext() + } +} + +function It { + [CmdletBinding(DefaultParameterSetName = 'Normal')] + param( + [Parameter(Mandatory = $true, Position = 0)] + [string]$Name, + + [Parameter(Position = 1)] + [ScriptBlock] $Test = { }, + + [System.Collections.IDictionary[]] $TestCases, + + [Parameter(ParameterSetName = 'Pending')] + [Switch] $Pending, + + [Parameter(ParameterSetName = 'Skip')] + [Alias('Ignore')] + [Switch] $Skip + ) + $Mock.PushScenario($Name) + + try { + if ($skip) { + return pester\It -Name $Name -Test $Test -TestCases $TestCases -Skip + } + if ($pending) { + return pester\It -Name $Name -Test $Test -TestCases $TestCases -Pending + } + return pester\It -Name $Name -Test $Test -TestCases $TestCases + } + finally { + $null = $Mock.PopScenario() + } +} + +# set the HttpPipelineAppend for all the cmdlets +$PSDefaultParameterValues["*:HttpPipelinePrepend"] = $Mock diff --git a/src/DedicatedHsm/generated/runtime/IAssociativeArray.cs b/src/DedicatedHsm/generated/runtime/IAssociativeArray.cs new file mode 100644 index 000000000000..9f42eb9c456e --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/IAssociativeArray.cs @@ -0,0 +1,21 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime +{ + /// A subset of IDictionary that doesn't implement IEnumerable or IDictionary to work around PowerShell's aggressive formatter + public interface IAssociativeArray + { + System.Collections.Generic.IEnumerable Keys { get; } + System.Collections.Generic.IEnumerable Values { get; } + System.Collections.Generic.IDictionary AdditionalProperties { get; } + T this[string index] { get; set; } + int Count { get; } + void Add(string key, T value); + bool ContainsKey(string key); + bool Remove(string key); + bool TryGetValue(string key, out T value); + void Clear(); + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/IHeaderSerializable.cs b/src/DedicatedHsm/generated/runtime/IHeaderSerializable.cs new file mode 100644 index 000000000000..bb8af813b1f8 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/IHeaderSerializable.cs @@ -0,0 +1,14 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +using System; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime +{ + public interface IHeaderSerializable + { + void ReadHeaders(global::System.Net.Http.Headers.HttpResponseHeaders headers); + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/ISendAsync.cs b/src/DedicatedHsm/generated/runtime/ISendAsync.cs new file mode 100644 index 000000000000..e1384cee8d51 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/ISendAsync.cs @@ -0,0 +1,289 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime +{ + using System.Net.Http; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + using System.Collections; + using System.Linq; + + /// + /// The interface for sending an HTTP request across the wire. + /// + public interface ISendAsync + { + Task SendAsync(HttpRequestMessage request, IEventListener callback); + } + + public class SendAsyncTerminalFactory : ISendAsyncTerminalFactory, ISendAsync + { + SendAsync implementation; + + public SendAsyncTerminalFactory(SendAsync implementation) => this.implementation = implementation; + public SendAsyncTerminalFactory(ISendAsync implementation) => this.implementation = implementation.SendAsync; + public ISendAsync Create() => this; + public Task SendAsync(HttpRequestMessage request, IEventListener callback) => implementation(request, callback); + } + + public partial class SendAsyncFactory : ISendAsyncFactory + { + public class Sender : ISendAsync + { + internal ISendAsync next; + internal SendAsyncStep implementation; + + public Task SendAsync(HttpRequestMessage request, IEventListener callback) => implementation(request, callback, next); + } + SendAsyncStep implementation; + + public SendAsyncFactory(SendAsyncStep implementation) => this.implementation = implementation; + public ISendAsync Create(ISendAsync next) => new Sender { next = next, implementation = implementation }; + + } + + public class HttpClientFactory : ISendAsyncTerminalFactory, ISendAsync + { + HttpClient client; + public HttpClientFactory() : this(new HttpClient()) + { + } + public HttpClientFactory(HttpClient client) => this.client = client; + public ISendAsync Create() => this; + + public Task SendAsync(HttpRequestMessage request, IEventListener callback) => client.SendAsync(request, HttpCompletionOption.ResponseHeadersRead, callback.Token); + } + + public interface ISendAsyncFactory + { + ISendAsync Create(ISendAsync next); + } + + public interface ISendAsyncTerminalFactory + { + ISendAsync Create(); + } + + public partial class HttpPipeline : ISendAsync + { + private ISendAsync pipeline; + private ISendAsyncTerminalFactory terminal; + private List steps = new List(); + + public HttpPipeline() : this(new HttpClientFactory()) + { + } + + public HttpPipeline(ISendAsyncTerminalFactory terminalStep) + { + if (terminalStep == null) + { + throw new System.ArgumentNullException(nameof(terminalStep), "Terminal Step Factory in HttpPipeline may not be null"); + } + TerminalFactory = terminalStep; + } + + /// + /// Returns an HttpPipeline with the current state of this pipeline. + /// + public HttpPipeline Clone() => new HttpPipeline(terminal) { steps = this.steps.ToList(), pipeline = this.pipeline }; + + public ISendAsyncTerminalFactory TerminalFactory + { + get => terminal; + set + { + if (value == null) + { + throw new System.ArgumentNullException("TerminalFactory in HttpPipeline may not be null"); + } + terminal = value; + } + } + + public ISendAsync Pipeline + { + get + { + // if the pipeline has been created and not invalidated, return it. + if (this.pipeline != null) + { + return this.pipeline; + } + + // create the pipeline from scratch. + var next = terminal.Create(); + foreach (var factory in steps) + { + // skip factories that return null. + next = factory.Create(next) ?? next; + } + return this.pipeline = next; + } + } + + public int Count => steps.Count; + + public HttpPipeline Prepend(ISendAsyncFactory item) + { + if (item != null) + { + steps.Add(item); + pipeline = null; + } + return this; + } + + public HttpPipeline Append(SendAsyncStep item) + { + if (item != null) + { + Append(new SendAsyncFactory(item)); + } + return this; + } + + public HttpPipeline Prepend(SendAsyncStep item) + { + if (item != null) + { + Prepend(new SendAsyncFactory(item)); + } + return this; + } + public HttpPipeline Append(IEnumerable items) + { + if (items != null) + { + foreach (var item in items) + { + Append(new SendAsyncFactory(item)); + } + } + return this; + } + + public HttpPipeline Prepend(IEnumerable items) + { + if (items != null) + { + foreach (var item in items) + { + Prepend(new SendAsyncFactory(item)); + } + } + return this; + } + + public HttpPipeline Append(ISendAsyncFactory item) + { + if (item != null) + { + steps.Insert(0, item); + pipeline = null; + } + return this; + } + public HttpPipeline Prepend(IEnumerable items) + { + if (items != null) + { + foreach (var item in items) + { + Prepend(item); + } + } + return this; + } + + public HttpPipeline Append(IEnumerable items) + { + if (items != null) + { + foreach (var item in items) + { + Append(item); + } + } + return this; + } + + // you can use this as the ISendAsync Implementation + public Task SendAsync(HttpRequestMessage request, IEventListener callback) => Pipeline.SendAsync(request, callback); + } + + internal static partial class Extensions + { + internal static HttpRequestMessage CloneAndDispose(this HttpRequestMessage original, System.Uri requestUri = null, System.Net.Http.HttpMethod method = null) + { + using (original) + { + return original.Clone(requestUri, method); + } + } + + internal static Task CloneWithContentAndDispose(this HttpRequestMessage original, System.Uri requestUri = null, System.Net.Http.HttpMethod method = null) + { + using (original) + { + return original.CloneWithContent(requestUri, method); + } + } + + /// + /// Clones an HttpRequestMessage (without the content) + /// + /// Original HttpRequestMessage (Will be diposed before returning) + /// A clone of the HttpRequestMessage + internal static HttpRequestMessage Clone(this HttpRequestMessage original, System.Uri requestUri = null, System.Net.Http.HttpMethod method = null) + { + var clone = new HttpRequestMessage + { + Method = method ?? original.Method, + RequestUri = requestUri ?? original.RequestUri, + Version = original.Version, + }; + + foreach (KeyValuePair prop in original.Properties) + { + clone.Properties.Add(prop); + } + + foreach (KeyValuePair> header in original.Headers) + { + clone.Headers.TryAddWithoutValidation(header.Key, header.Value); + } + + return clone; + } + + /// + /// Clones an HttpRequestMessage (including the content stream and content headers) + /// + /// Original HttpRequestMessage (Will be diposed before returning) + /// A clone of the HttpRequestMessage + internal static async Task CloneWithContent(this HttpRequestMessage original, System.Uri requestUri = null, System.Net.Http.HttpMethod method = null) + { + var clone = original.Clone(requestUri, method); + var stream = new System.IO.MemoryStream(); + if (original.Content != null) + { + await original.Content.CopyToAsync(stream).ConfigureAwait(false); + stream.Position = 0; + clone.Content = new StreamContent(stream); + if (original.Content.Headers != null) + { + foreach (var h in original.Content.Headers) + { + clone.Content.Headers.Add(h.Key, h.Value); + } + } + } + return clone; + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/InfoAttribute.cs b/src/DedicatedHsm/generated/runtime/InfoAttribute.cs new file mode 100644 index 000000000000..0db7b9a8bf7b --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/InfoAttribute.cs @@ -0,0 +1,34 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime +{ + using System; + + [AttributeUsage(AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Class)] + public class InfoAttribute : Attribute + { + public bool Required { get; set; } = false; + public bool ReadOnly { get; set; } = false; + public Type[] PossibleTypes { get; set; } = new Type[0]; + public string Description { get; set; } = ""; + public string SerializedName { get; set; } = ""; + } + + [AttributeUsage(AttributeTargets.Property | AttributeTargets.Field)] + public class CompleterInfoAttribute : Attribute + { + public string Script { get; set; } = ""; + public string Name { get; set; } = ""; + public string Description { get; set; } = ""; + } + + [AttributeUsage(AttributeTargets.Property | AttributeTargets.Field)] + public class DefaultInfoAttribute : Attribute + { + public string Script { get; set; } = ""; + public string Name { get; set; } = ""; + public string Description { get; set; } = ""; + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Iso/IsoDate.cs b/src/DedicatedHsm/generated/runtime/Iso/IsoDate.cs new file mode 100644 index 000000000000..074ff1826b63 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Iso/IsoDate.cs @@ -0,0 +1,214 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Text; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + internal struct IsoDate + { + internal int Year { get; set; } // 0-3000 + + internal int Month { get; set; } // 1-12 + + internal int Day { get; set; } // 1-31 + + internal int Hour { get; set; } // 0-24 + + internal int Minute { get; set; } // 0-60 (60 is a special case) + + internal int Second { get; set; } // 0-60 (60 is used for leap seconds) + + internal double Millisecond { get; set; } // 0-999.9... + + internal TimeSpan Offset { get; set; } + + internal DateTimeKind Kind { get; set; } + + internal TimeSpan TimeOfDay => new TimeSpan(Hour, Minute, Second); + + internal DateTime ToDateTime() + { + if (Kind == DateTimeKind.Utc || Offset == TimeSpan.Zero) + { + return new DateTime(Year, Month, Day, Hour, Minute, Second, (int)Millisecond, DateTimeKind.Utc); + } + + return ToDateTimeOffset().DateTime; + } + + internal DateTimeOffset ToDateTimeOffset() + { + return new DateTimeOffset( + Year, + Month, + Day, + Hour, + Minute, + Second, + (int)Millisecond, + Offset + ); + } + + internal DateTime ToUtcDateTime() + { + return ToDateTimeOffset().UtcDateTime; + } + + public override string ToString() + { + var sb = new StringBuilder(); + + // yyyy-MM-dd + sb.Append($"{Year}-{Month:00}-{Day:00}"); + + if (TimeOfDay > new TimeSpan(0)) + { + sb.Append($"T{Hour:00}:{Minute:00}"); + + if (TimeOfDay.Seconds > 0) + { + sb.Append($":{Second:00}"); + } + } + + if (Offset.Ticks == 0) + { + sb.Append('Z'); // UTC + } + else + { + if (Offset.Ticks >= 0) + { + sb.Append('+'); + } + + sb.Append($"{Offset.Hours:00}:{Offset.Minutes:00}"); + } + + return sb.ToString(); + } + + internal static IsoDate FromDateTimeOffset(DateTimeOffset date) + { + return new IsoDate { + Year = date.Year, + Month = date.Month, + Day = date.Day, + Hour = date.Hour, + Minute = date.Minute, + Second = date.Second, + Offset = date.Offset, + Kind = date.Offset == TimeSpan.Zero ? DateTimeKind.Utc : DateTimeKind.Unspecified + }; + } + + private static readonly char[] timeSeperators = { ':', '.' }; + + internal static IsoDate Parse(string text) + { + var tzIndex = -1; + var timeIndex = text.IndexOf('T'); + + var builder = new IsoDate { Day = 1, Month = 1 }; + + // TODO: strip the time zone offset off the end + string dateTime = text; + string timeZone = null; + + if (dateTime.IndexOf('Z') > -1) + { + tzIndex = dateTime.LastIndexOf('Z'); + + builder.Kind = DateTimeKind.Utc; + } + else if (dateTime.LastIndexOf('+') > 10) + { + tzIndex = dateTime.LastIndexOf('+'); + } + else if (dateTime.LastIndexOf('-') > 10) + { + tzIndex = dateTime.LastIndexOf('-'); + } + + if (tzIndex > -1) + { + timeZone = dateTime.Substring(tzIndex); + dateTime = dateTime.Substring(0, tzIndex); + } + + string date = (timeIndex == -1) ? dateTime : dateTime.Substring(0, timeIndex); + + var dateParts = date.Split(Seperator.Dash); // '-' + + for (int i = 0; i < dateParts.Length; i++) + { + var part = dateParts[i]; + + switch (i) + { + case 0: builder.Year = int.Parse(part); break; + case 1: builder.Month = int.Parse(part); break; + case 2: builder.Day = int.Parse(part); break; + } + } + + if (timeIndex > -1) + { + string[] timeParts = dateTime.Substring(timeIndex + 1).Split(timeSeperators); + + for (int i = 0; i < timeParts.Length; i++) + { + var part = timeParts[i]; + + switch (i) + { + case 0: builder.Hour = int.Parse(part); break; + case 1: builder.Minute = int.Parse(part); break; + case 2: builder.Second = int.Parse(part); break; + case 3: builder.Millisecond = double.Parse("0." + part) * 1000; break; + } + } + } + + if (timeZone != null && timeZone != "Z") + { + var hours = int.Parse(timeZone.Substring(1, 2)); + var minutes = int.Parse(timeZone.Substring(4, 2)); + + if (timeZone[0] == '-') + { + hours = -hours; + minutes = -minutes; + } + + builder.Offset = new TimeSpan(hours, minutes, 0); + } + + return builder; + } + } + + /* + YYYY # eg 1997 + YYYY-MM # eg 1997-07 + YYYY-MM-DD # eg 1997-07-16 + YYYY-MM-DDThh:mmTZD # eg 1997-07-16T19:20+01:00 + YYYY-MM-DDThh:mm:ssTZD # eg 1997-07-16T19:20:30+01:00 + YYYY-MM-DDThh:mm:ss.sTZD # eg 1997-07-16T19:20:30.45+01:00 + + where: + + YYYY = four-digit year + MM = two-digit month (01=January, etc.) + DD = two-digit day of month (01 through 31) + hh = two digits of hour (00 through 23) (am/pm NOT allowed) + mm = two digits of minute (00 through 59) + ss = two digits of second (00 through 59) + s = one or more digits representing a decimal fraction of a second + TZD = time zone designator (Z or +hh:mm or -hh:mm) + */ +} diff --git a/src/DedicatedHsm/generated/runtime/JsonType.cs b/src/DedicatedHsm/generated/runtime/JsonType.cs new file mode 100644 index 000000000000..cf72b21bfe4a --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/JsonType.cs @@ -0,0 +1,18 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + internal enum JsonType + { + Null = 0, + Object = 1, + Array = 2, + Binary = 3, + Boolean = 4, + Date = 5, + Number = 6, + String = 7 + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Method.cs b/src/DedicatedHsm/generated/runtime/Method.cs new file mode 100644 index 000000000000..0d7db32c8cf0 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Method.cs @@ -0,0 +1,19 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime +{ + internal static class Method + { + internal static System.Net.Http.HttpMethod Get = System.Net.Http.HttpMethod.Get; + internal static System.Net.Http.HttpMethod Put = System.Net.Http.HttpMethod.Put; + internal static System.Net.Http.HttpMethod Head = System.Net.Http.HttpMethod.Head; + internal static System.Net.Http.HttpMethod Post = System.Net.Http.HttpMethod.Post; + internal static System.Net.Http.HttpMethod Delete = System.Net.Http.HttpMethod.Delete; + internal static System.Net.Http.HttpMethod Options = System.Net.Http.HttpMethod.Options; + internal static System.Net.Http.HttpMethod Trace = System.Net.Http.HttpMethod.Trace; + internal static System.Net.Http.HttpMethod Patch = new System.Net.Http.HttpMethod("PATCH"); + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Models/JsonMember.cs b/src/DedicatedHsm/generated/runtime/Models/JsonMember.cs new file mode 100644 index 000000000000..83102e8603f1 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Models/JsonMember.cs @@ -0,0 +1,83 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Reflection; +using System.Runtime.Serialization; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + + + internal sealed class JsonMember + { + private readonly TypeDetails type; + + private readonly Func getter; + private readonly Action setter; + + internal JsonMember(PropertyInfo property, int defaultOrder) + { + getter = property.GetValue; + setter = property.SetValue; + + var dataMember = property.GetCustomAttribute(); + + Name = dataMember?.Name ?? property.Name; + Order = dataMember?.Order ?? defaultOrder; + EmitDefaultValue = dataMember?.EmitDefaultValue ?? true; + + this.type = TypeDetails.Get(property.PropertyType); + + CanRead = property.CanRead; + } + + internal JsonMember(FieldInfo field, int defaultOrder) + { + getter = field.GetValue; + setter = field.SetValue; + + var dataMember = field.GetCustomAttribute(); + + Name = dataMember?.Name ?? field.Name; + Order = dataMember?.Order ?? defaultOrder; + EmitDefaultValue = dataMember?.EmitDefaultValue ?? true; + + this.type = TypeDetails.Get(field.FieldType); + + CanRead = true; + } + + internal string Name { get; } + + internal int Order { get; } + + internal TypeDetails TypeDetails => type; + + internal Type Type => type.NonNullType; + + internal bool IsList => type.IsList; + + // Arrays, Sets, ... + internal Type ElementType => type.ElementType; + + internal IJsonConverter Converter => type.JsonConverter; + + internal bool EmitDefaultValue { get; } + + internal bool IsStringLike => type.IsStringLike; + + internal object DefaultValue => type.DefaultValue; + + internal bool CanRead { get; } + + #region Helpers + + internal object GetValue(object instance) => getter(instance); + + internal void SetValue(object instance, object value) => setter(instance, value); + + #endregion + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Models/JsonModel.cs b/src/DedicatedHsm/generated/runtime/Models/JsonModel.cs new file mode 100644 index 000000000000..03d1fdeba88d --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Models/JsonModel.cs @@ -0,0 +1,89 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; +using System.Reflection; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + internal class JsonModel + { + private Dictionary map; + private readonly object _sync = new object(); + + private JsonModel(Type type, List members) + { + Type = type ?? throw new ArgumentNullException(nameof(type)); + Members = members ?? throw new ArgumentNullException(nameof(members)); + } + + internal string Name => Type.Name; + + internal Type Type { get; } + + internal List Members { get; } + + internal JsonMember this[string name] + { + get + { + if (map == null) + { + lock (_sync) + { + if (map == null) + { + map = new Dictionary(); + + foreach (JsonMember m in Members) + { + map[m.Name.ToLower()] = m; + } + } + } + } + + + map.TryGetValue(name.ToLower(), out JsonMember member); + + return member; + } + } + + internal static JsonModel FromType(Type type) + { + var members = new List(); + + int i = 0; + + // BindingFlags.Instance | BindingFlags.Public + + foreach (var member in type.GetFields()) + { + if (member.IsStatic) continue; + + if (member.IsDefined(typeof(IgnoreDataMemberAttribute))) continue; + + members.Add(new JsonMember(member, i)); + + i++; + } + + foreach (var member in type.GetProperties(BindingFlags.Public | BindingFlags.Instance)) + { + if (member.IsDefined(typeof(IgnoreDataMemberAttribute))) continue; + + members.Add(new JsonMember(member, i)); + + i++; + } + + members.Sort((a, b) => a.Order.CompareTo(b.Order)); // inline sort + + return new JsonModel(type, members); + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Models/JsonModelCache.cs b/src/DedicatedHsm/generated/runtime/Models/JsonModelCache.cs new file mode 100644 index 000000000000..d14a64106e95 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Models/JsonModelCache.cs @@ -0,0 +1,19 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Runtime.CompilerServices; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + internal static class JsonModelCache + { + private static readonly ConditionalWeakTable cache + = new ConditionalWeakTable(); + + internal static JsonModel Get(Type type) => cache.GetValue(type, Create); + + private static JsonModel Create(Type type) => JsonModel.FromType(type); + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Nodes/Collections/JsonArray.cs b/src/DedicatedHsm/generated/runtime/Nodes/Collections/JsonArray.cs new file mode 100644 index 000000000000..d2d6c0a7d3fe --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Nodes/Collections/JsonArray.cs @@ -0,0 +1,65 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Collections; +using System.Collections.Generic; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + public abstract partial class JsonArray : JsonNode, IEnumerable + { + internal override JsonType Type => JsonType.Array; + + internal abstract JsonType? ElementType { get; } + + public abstract int Count { get; } + + internal virtual bool IsSet => false; + + internal bool IsEmpty => Count == 0; + + #region IEnumerable + + IEnumerator IEnumerable.GetEnumerator() + { + throw new NotImplementedException(); + } + + IEnumerator IEnumerable.GetEnumerator() + { + throw new NotImplementedException(); + } + + #endregion + + #region Static Helpers + + internal static JsonArray Create(short[] values) + => new XImmutableArray(values); + + internal static JsonArray Create(int[] values) + => new XImmutableArray(values); + + internal static JsonArray Create(long[] values) + => new XImmutableArray(values); + + internal static JsonArray Create(decimal[] values) + => new XImmutableArray(values); + + internal static JsonArray Create(float[] values) + => new XImmutableArray(values); + + internal static JsonArray Create(string[] values) + => new XImmutableArray(values); + + internal static JsonArray Create(XBinary[] values) + => new XImmutableArray(values); + + #endregion + + internal static new JsonArray Parse(string text) + => (JsonArray)JsonNode.Parse(text); + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Nodes/Collections/XImmutableArray.cs b/src/DedicatedHsm/generated/runtime/Nodes/Collections/XImmutableArray.cs new file mode 100644 index 000000000000..7a113ba6f1f3 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Nodes/Collections/XImmutableArray.cs @@ -0,0 +1,62 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Collections; +using System.Collections.Generic; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + internal sealed class XImmutableArray : JsonArray, IEnumerable + { + private readonly T[] values; + private readonly JsonType elementType; + private readonly TypeCode elementCode; + + internal XImmutableArray(T[] values) + { + this.values = values ?? throw new ArgumentNullException(nameof(values)); + this.elementCode = System.Type.GetTypeCode(typeof(T)); + this.elementType = XHelper.GetElementType(this.elementCode); + } + + public override JsonNode this[int index] => + XHelper.Create(elementType, elementCode, values[index]); + + internal override JsonType? ElementType => elementType; + + public override int Count => values.Length; + + public bool IsReadOnly => true; + + #region IEnumerable Members + + IEnumerator IEnumerable.GetEnumerator() + { + foreach (T value in values) + { + yield return XHelper.Create(elementType, elementCode, value); + } + } + + IEnumerator IEnumerable.GetEnumerator() + { + foreach (T value in values) + { + yield return XHelper.Create(elementType, elementCode, value); + } + } + + #endregion + + #region Static Constructor + + internal XImmutableArray Create(T[] items) + { + return new XImmutableArray(items); + } + + #endregion + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Nodes/Collections/XList.cs b/src/DedicatedHsm/generated/runtime/Nodes/Collections/XList.cs new file mode 100644 index 000000000000..549103742a66 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Nodes/Collections/XList.cs @@ -0,0 +1,64 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Collections; +using System.Collections.Generic; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + internal sealed class XList : JsonArray, IEnumerable + { + private readonly IList values; + private readonly JsonType elementType; + private readonly TypeCode elementCode; + + internal XList(IList values) + { + this.values = values ?? throw new ArgumentNullException(nameof(values)); + this.elementCode = System.Type.GetTypeCode(typeof(T)); + this.elementType = XHelper.GetElementType(this.elementCode); + } + + public override JsonNode this[int index] => + XHelper.Create(elementType, elementCode, values[index]); + + internal override JsonType? ElementType => elementType; + + public override int Count => values.Count; + + public bool IsReadOnly => values.IsReadOnly; + + #region IList + + public void Add(T value) + { + values.Add(value); + } + + public bool Contains(T value) => values.Contains(value); + + #endregion + + #region IEnumerable Members + + IEnumerator IEnumerable.GetEnumerator() + { + foreach (var value in values) + { + yield return XHelper.Create(elementType, elementCode, value); + } + } + + IEnumerator IEnumerable.GetEnumerator() + { + foreach (var value in values) + { + yield return XHelper.Create(elementType, elementCode, value); + } + } + + #endregion + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Nodes/Collections/XNodeArray.cs b/src/DedicatedHsm/generated/runtime/Nodes/Collections/XNodeArray.cs new file mode 100644 index 000000000000..43825cd64bca --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Nodes/Collections/XNodeArray.cs @@ -0,0 +1,68 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System.Collections; +using System.Collections.Generic; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + public sealed partial class XNodeArray : JsonArray, ICollection + { + private readonly List items; + + internal XNodeArray() + { + items = new List(); + } + + internal XNodeArray(params JsonNode[] values) + { + items = new List(values); + } + + public override JsonNode this[int index] => items[index]; + + internal override JsonType? ElementType => null; + + public bool IsReadOnly => false; + + public override int Count => items.Count; + + #region ICollection Members + + public void Add(JsonNode item) + { + items.Add(item); + } + + void ICollection.Clear() + { + items.Clear(); + } + + public bool Contains(JsonNode item) => items.Contains(item); + + void ICollection.CopyTo(JsonNode[] array, int arrayIndex) + { + items.CopyTo(array, arrayIndex); + } + + public bool Remove(JsonNode item) + { + return items.Remove(item); + } + + #endregion + + #region IEnumerable Members + + IEnumerator IEnumerable.GetEnumerator() + => items.GetEnumerator(); + + IEnumerator IEnumerable.GetEnumerator() + => items.GetEnumerator(); + + #endregion + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Nodes/Collections/XSet.cs b/src/DedicatedHsm/generated/runtime/Nodes/Collections/XSet.cs new file mode 100644 index 000000000000..50652fa9afc8 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Nodes/Collections/XSet.cs @@ -0,0 +1,60 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Collections; +using System.Collections.Generic; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + internal sealed class XSet : JsonArray, IEnumerable + { + private readonly HashSet values; + private readonly JsonType elementType; + private readonly TypeCode elementCode; + + internal XSet(IEnumerable values) + : this(new HashSet(values)) + { } + + internal XSet(HashSet values) + { + this.values = values ?? throw new ArgumentNullException(nameof(values)); + this.elementCode = System.Type.GetTypeCode(typeof(T)); + this.elementType = XHelper.GetElementType(this.elementCode); + } + + internal override JsonType Type => JsonType.Array; + + internal override JsonType? ElementType => elementType; + + public bool IsReadOnly => true; + + public override int Count => values.Count; + + internal override bool IsSet => true; + + #region IEnumerable Members + + IEnumerator IEnumerable.GetEnumerator() + { + foreach (var value in values) + { + yield return XHelper.Create(elementType, elementCode, value); + } + } + + IEnumerator IEnumerable.GetEnumerator() + { + foreach (var value in values) + { + yield return XHelper.Create(elementType, elementCode, value); + } + } + + #endregion + + internal HashSet AsHashSet() => values; + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Nodes/JsonBoolean.cs b/src/DedicatedHsm/generated/runtime/Nodes/JsonBoolean.cs new file mode 100644 index 000000000000..2b47a22aec6c --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Nodes/JsonBoolean.cs @@ -0,0 +1,42 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + internal sealed partial class JsonBoolean : JsonNode + { + internal static readonly JsonBoolean True = new JsonBoolean(true); + internal static readonly JsonBoolean False = new JsonBoolean(false); + + internal JsonBoolean(bool value) + { + Value = value; + } + + internal bool Value { get; } + + internal override JsonType Type => JsonType.Boolean; + + internal static new JsonBoolean Parse(string text) + { + switch (text) + { + case "false": return False; + case "true": return True; + + default: throw new ArgumentException($"Expected true or false. Was {text}."); + } + } + + #region Implicit Casts + + public static implicit operator bool(JsonBoolean data) => data.Value; + + public static implicit operator JsonBoolean(bool data) => new JsonBoolean(data); + + #endregion + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Nodes/JsonDate.cs b/src/DedicatedHsm/generated/runtime/Nodes/JsonDate.cs new file mode 100644 index 000000000000..b688c62ec5a8 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Nodes/JsonDate.cs @@ -0,0 +1,173 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + + + internal sealed partial class JsonDate : JsonNode, IEquatable, IComparable + { + internal static bool AssumeUtcWhenKindIsUnspecified = true; + + private readonly DateTimeOffset value; + + internal JsonDate(DateTime value) + { + if (value.Kind == DateTimeKind.Unspecified && AssumeUtcWhenKindIsUnspecified) + { + value = DateTime.SpecifyKind(value, DateTimeKind.Utc); + } + + this.value = value; + } + + internal JsonDate(DateTimeOffset value) + { + this.value = value; + } + + internal override JsonType Type => JsonType.Date; + + #region Helpers + + internal DateTimeOffset ToDateTimeOffset() + { + return value; + } + + internal DateTime ToDateTime() + { + if (value.Offset == TimeSpan.Zero) + { + return value.UtcDateTime; + } + + return value.DateTime; + } + + internal DateTime ToUtcDateTime() => value.UtcDateTime; + + internal int ToUnixTimeSeconds() + { + return (int)value.ToUnixTimeSeconds(); + } + + internal long ToUnixTimeMilliseconds() + { + return (int)value.ToUnixTimeMilliseconds(); + } + + internal string ToIsoString() + { + return IsoDate.FromDateTimeOffset(value).ToString(); + } + + #endregion + + public override string ToString() + { + return ToIsoString(); + } + + internal static new JsonDate Parse(string text) + { + if (text == null) throw new ArgumentNullException(nameof(text)); + + // TODO support: unixtimeseconds.partialseconds + + if (text.Length > 4 && _IsNumber(text)) // UnixTime + { + var date = DateTimeOffset.FromUnixTimeSeconds(long.Parse(text)); + + return new JsonDate(date); + } + else if (text.Length <= 4 || text[4] == '-') // ISO: 2012- + { + return new JsonDate(IsoDate.Parse(text).ToDateTimeOffset()); + } + else + { + // NOT ISO ENCODED + // "Thu, 5 Apr 2012 16:59:01 +0200", + return new JsonDate(DateTimeOffset.Parse(text)); + } + } + + private static bool _IsNumber(string text) + { + foreach (var c in text) + { + if (!char.IsDigit(c)) return false; + } + + return true; + } + + internal static JsonDate FromUnixTime(int seconds) + { + return new JsonDate(DateTimeOffset.FromUnixTimeSeconds(seconds)); + } + + internal static JsonDate FromUnixTime(double seconds) + { + var milliseconds = (long)(seconds * 1000d); + + return new JsonDate(DateTimeOffset.FromUnixTimeMilliseconds(milliseconds)); + } + + #region Implicit Casts + + public static implicit operator DateTimeOffset(JsonDate value) + => value.ToDateTimeOffset(); + + public static implicit operator DateTime(JsonDate value) + => value.ToDateTime(); + + // From Date + public static implicit operator JsonDate(DateTimeOffset value) + { + return new JsonDate(value); + } + + public static implicit operator JsonDate(DateTime value) + { + return new JsonDate(value); + } + + // From String + public static implicit operator JsonDate(string value) + { + return Parse(value); + } + + #endregion + + #region Equality + + public override bool Equals(object obj) + { + return obj is JsonDate date && date.value == this.value; + } + + public bool Equals(JsonDate other) + { + return this.value == other.value; + } + + public override int GetHashCode() => value.GetHashCode(); + + #endregion + + #region IComparable Members + + int IComparable.CompareTo(JsonDate other) + { + return value.CompareTo(other.value); + } + + #endregion + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Nodes/JsonNode.cs b/src/DedicatedHsm/generated/runtime/Nodes/JsonNode.cs new file mode 100644 index 000000000000..276b7a9f8c5e --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Nodes/JsonNode.cs @@ -0,0 +1,250 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.IO; +using System.Text; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + + + public abstract partial class JsonNode + { + internal abstract JsonType Type { get; } + + public virtual JsonNode this[int index] => throw new NotImplementedException(); + + public virtual JsonNode this[string name] + { + get => throw new NotImplementedException(); + set => throw new NotImplementedException(); + } + + #region Type Helpers + + internal bool IsArray => Type == JsonType.Array; + + internal bool IsDate => Type == JsonType.Date; + + internal bool IsObject => Type == JsonType.Object; + + internal bool IsNumber => Type == JsonType.Number; + + internal bool IsNull => Type == JsonType.Null; + + #endregion + + internal void WriteTo(TextWriter textWriter, bool pretty = true) + { + var writer = new JsonWriter(textWriter, pretty); + + writer.WriteNode(this); + } + + internal T As() + where T : new() + => new JsonSerializer().Deseralize((JsonObject)this); + + internal T[] ToArrayOf() + { + return (T[])new JsonSerializer().DeserializeArray(typeof(T[]), (JsonArray)this); + } + + #region ToString Overrides + + public override string ToString() => ToString(pretty: true); + + internal string ToString(bool pretty) + { + var sb = new StringBuilder(); + + using (var writer = new StringWriter(sb)) + { + WriteTo(writer, pretty); + + return sb.ToString(); + } + } + + #endregion + + #region Static Constructors + + internal static JsonNode Parse(string text) + { + return Parse(new SourceReader(new StringReader(text))); + } + + internal static JsonNode Parse(TextReader textReader) + => Parse(new SourceReader(textReader)); + + private static JsonNode Parse(SourceReader sourceReader) + { + using (var parser = new JsonParser(sourceReader)) + { + return parser.ReadNode(); + } + } + + internal static JsonNode FromObject(object instance) + => new JsonSerializer().Serialize(instance); + + #endregion + + #region Implict Casts + + public static implicit operator string(JsonNode node) => node.ToString(); + + #endregion + + #region Explict Casts + + public static explicit operator DateTime(JsonNode node) + { + switch (node.Type) + { + case JsonType.Date: + return ((JsonDate)node).ToDateTime(); + + case JsonType.String: + return JsonDate.Parse(node.ToString()).ToDateTime(); + + case JsonType.Number: + var num = (JsonNumber)node; + + if (num.IsInteger) + { + return DateTimeOffset.FromUnixTimeSeconds(num).UtcDateTime; + } + else + { + return DateTimeOffset.FromUnixTimeMilliseconds((long)((double)num * 1000)).UtcDateTime; + } + } + + throw new ConversionException(node, typeof(DateTime)); + } + + public static explicit operator DateTimeOffset(JsonNode node) + { + switch (node.Type) + { + case JsonType.Date : return ((JsonDate)node).ToDateTimeOffset(); + case JsonType.String : return JsonDate.Parse(node.ToString()).ToDateTimeOffset(); + + case JsonType.Number: + var num = (JsonNumber)node; + + if (num.IsInteger) + { + return DateTimeOffset.FromUnixTimeSeconds(num); + } + else + { + return DateTimeOffset.FromUnixTimeMilliseconds((long)((double)num * 1000)); + } + + } + + throw new ConversionException(node, typeof(DateTimeOffset)); + } + + public static explicit operator float(JsonNode node) + { + switch (node.Type) + { + case JsonType.Number : return (JsonNumber)node; + case JsonType.String : return float.Parse(node.ToString()); + } + + throw new ConversionException(node, typeof(float)); + } + + public static explicit operator double(JsonNode node) + { + switch (node.Type) + { + case JsonType.Number : return (JsonNumber)node; + case JsonType.String : return double.Parse(node.ToString()); + } + + throw new ConversionException(node, typeof(double)); + } + + public static explicit operator decimal(JsonNode node) + { + switch (node.Type) + { + case JsonType.Number: return (JsonNumber)node; + case JsonType.String: return decimal.Parse(node.ToString()); + } + + throw new ConversionException(node, typeof(decimal)); + } + + public static explicit operator Guid(JsonNode node) + => new Guid(node.ToString()); + + public static explicit operator short(JsonNode node) + { + switch (node.Type) + { + case JsonType.Number : return (JsonNumber)node; + case JsonType.String : return short.Parse(node.ToString()); + } + + throw new ConversionException(node, typeof(short)); + } + + public static explicit operator int(JsonNode node) + { + switch (node.Type) + { + case JsonType.Number : return (JsonNumber)node; + case JsonType.String : return int.Parse(node.ToString()); + } + + throw new ConversionException(node, typeof(int)); + } + + public static explicit operator long(JsonNode node) + { + switch (node.Type) + { + case JsonType.Number: return (JsonNumber)node; + case JsonType.String: return long.Parse(node.ToString()); + } + + throw new ConversionException(node, typeof(long)); + } + + public static explicit operator bool(JsonNode node) + => ((JsonBoolean)node).Value; + + public static explicit operator ushort(JsonNode node) + => (JsonNumber)node; + + public static explicit operator uint(JsonNode node) + => (JsonNumber)node; + + public static explicit operator ulong(JsonNode node) + => (JsonNumber)node; + + public static explicit operator TimeSpan(JsonNode node) + => TimeSpan.Parse(node.ToString()); + + public static explicit operator Uri(JsonNode node) + { + if (node.Type == JsonType.String) + { + return new Uri(node.ToString()); + } + + throw new ConversionException(node, typeof(Uri)); + } + + #endregion + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Nodes/JsonNumber.cs b/src/DedicatedHsm/generated/runtime/Nodes/JsonNumber.cs new file mode 100644 index 000000000000..f46d15850206 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Nodes/JsonNumber.cs @@ -0,0 +1,109 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + public sealed partial class JsonNumber : JsonNode + { + private readonly string value; + private readonly bool overflows = false; + + internal JsonNumber(string value) + { + this.value = value ?? throw new ArgumentNullException(nameof(value)); + } + + internal JsonNumber(int value) + { + this.value = value.ToString(); + } + + internal JsonNumber(long value) + { + this.value = value.ToString(); + + if (value > 9007199254740991) + { + overflows = true; + } + } + + internal JsonNumber(float value) + { + this.value = value.ToString(); + } + + internal JsonNumber(double value) + { + this.value = value.ToString(); + } + + internal override JsonType Type => JsonType.Number; + + internal string Value => value; + + #region Helpers + + internal bool Overflows => overflows; + + internal bool IsInteger => !value.Contains("."); + + internal bool IsFloat => value.Contains("."); + + #endregion + + #region Casting + + public static implicit operator byte(JsonNumber number) + => byte.Parse(number.Value); + + public static implicit operator short(JsonNumber number) + => short.Parse(number.Value); + + public static implicit operator int(JsonNumber number) + => int.Parse(number.Value); + + public static implicit operator long(JsonNumber number) + => long.Parse(number.value); + + public static implicit operator UInt16(JsonNumber number) + => ushort.Parse(number.Value); + + public static implicit operator UInt32(JsonNumber number) + => uint.Parse(number.Value); + + public static implicit operator UInt64(JsonNumber number) + => ulong.Parse(number.Value); + + public static implicit operator decimal(JsonNumber number) + => decimal.Parse(number.Value); + + public static implicit operator Double(JsonNumber number) + => double.Parse(number.value); + + public static implicit operator float(JsonNumber number) + => float.Parse(number.value); + + public static implicit operator JsonNumber(short data) + => new JsonNumber(data.ToString()); + + public static implicit operator JsonNumber(int data) + => new JsonNumber(data); + + public static implicit operator JsonNumber(long data) + => new JsonNumber(data); + + public static implicit operator JsonNumber(Single data) + => new JsonNumber(data.ToString()); + + public static implicit operator JsonNumber(double data) + => new JsonNumber(data.ToString()); + + #endregion + + public override string ToString() => value; + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Nodes/JsonObject.cs b/src/DedicatedHsm/generated/runtime/Nodes/JsonObject.cs new file mode 100644 index 000000000000..3416ea5b71ca --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Nodes/JsonObject.cs @@ -0,0 +1,172 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Collections; +using System.Collections.Generic; +using System.IO; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + public partial class JsonObject : JsonNode, IDictionary + { + private readonly Dictionary items; + + internal JsonObject() + { + items = new Dictionary(); + } + + internal JsonObject(IEnumerable> properties) + { + if (properties == null) throw new ArgumentNullException(nameof(properties)); + + items = new Dictionary(); + + foreach (var field in properties) + { + items.Add(field.Key, field.Value); + } + } + + #region IDictionary Constructors + + internal JsonObject(IDictionary dic) + { + items = new Dictionary(dic.Count); + + foreach (var pair in dic) + { + Add(pair.Key, pair.Value); + } + } + + #endregion + + internal override JsonType Type => JsonType.Object; + + #region Add Overloads + + public void Add(string name, JsonNode value) => + items.Add(name, value); + + public void Add(string name, byte[] value) => + items.Add(name, new XBinary(value)); + + public void Add(string name, DateTime value) => + items.Add(name, new JsonDate(value)); + + public void Add(string name, int value) => + items.Add(name, new JsonNumber(value.ToString())); + + public void Add(string name, long value) => + items.Add(name, new JsonNumber(value.ToString())); + + public void Add(string name, float value) => + items.Add(name, new JsonNumber(value.ToString())); + + public void Add(string name, double value) => + items.Add(name, new JsonNumber(value.ToString())); + + public void Add(string name, string value) => + items.Add(name, new JsonString(value)); + + public void Add(string name, bool value) => + items.Add(name, new JsonBoolean(value)); + + public void Add(string name, Uri url) => + items.Add(name, new JsonString(url.AbsoluteUri)); + + public void Add(string name, string[] values) => + items.Add(name, new XImmutableArray(values)); + + public void Add(string name, int[] values) => + items.Add(name, new XImmutableArray(values)); + + #endregion + + #region ICollection> Members + + void ICollection>.Add(KeyValuePair item) + { + items.Add(item.Key, item.Value); + } + + void ICollection>.Clear() + { + items.Clear(); + } + + bool ICollection>.Contains(KeyValuePair item) => + throw new NotImplementedException(); + + void ICollection>.CopyTo(KeyValuePair[] array, int arrayIndex) => + throw new NotImplementedException(); + + + int ICollection>.Count => items.Count; + + bool ICollection>.IsReadOnly => false; + + bool ICollection>.Remove(KeyValuePair item) => + throw new NotImplementedException(); + + #endregion + + #region IDictionary Members + + public bool ContainsKey(string key) => items.ContainsKey(key); + + public ICollection Keys => items.Keys; + + public bool Remove(string key) => items.Remove(key); + + public bool TryGetValue(string key, out JsonNode value) => + items.TryGetValue(key, out value); + + public ICollection Values => items.Values; + + public override JsonNode this[string key] + { + get => items[key]; + set => items[key] = value; + } + + #endregion + + #region IEnumerable + + IEnumerator> IEnumerable>.GetEnumerator() + => items.GetEnumerator(); + + IEnumerator IEnumerable.GetEnumerator() + => items.GetEnumerator(); + + #endregion + + #region Helpers + + internal static new JsonObject FromObject(object instance) => + (JsonObject)new JsonSerializer().Serialize(instance); + + #endregion + + #region Static Constructors + + internal static JsonObject FromStream(Stream stream) + { + using (var tr = new StreamReader(stream)) + { + return (JsonObject)Parse(tr); + } + } + + internal static new JsonObject Parse(string text) + { + return (JsonObject)JsonNode.Parse(text); + } + + #endregion + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Nodes/JsonString.cs b/src/DedicatedHsm/generated/runtime/Nodes/JsonString.cs new file mode 100644 index 000000000000..40b66883a292 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Nodes/JsonString.cs @@ -0,0 +1,42 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + public sealed partial class JsonString : JsonNode, IEquatable + { + private readonly string value; + + internal JsonString(string value) + { + this.value = value ?? throw new ArgumentNullException(nameof(value)); + } + + internal override JsonType Type => JsonType.String; + + internal string Value => value; + + internal int Length => value.Length; + + #region #region Implicit Casts + + public static implicit operator string(JsonString data) => data.Value; + + public static implicit operator JsonString(string value) => new JsonString(value); + + #endregion + + public override int GetHashCode() => value.GetHashCode(); + + public override string ToString() => value; + + #region IEquatable + + bool IEquatable.Equals(JsonString other) => this.Value == other.Value; + + #endregion + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Nodes/XBinary.cs b/src/DedicatedHsm/generated/runtime/Nodes/XBinary.cs new file mode 100644 index 000000000000..f5e8ad7c2f07 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Nodes/XBinary.cs @@ -0,0 +1,40 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + internal sealed class XBinary : JsonNode + { + private readonly byte[] _value; + private readonly string _base64; + + internal XBinary(byte[] value) + { + _value = value ?? throw new ArgumentNullException(nameof(value)); + } + + internal XBinary(string base64EncodedString) + { + _base64 = base64EncodedString ?? throw new ArgumentNullException(nameof(base64EncodedString)); + } + + internal override JsonType Type => JsonType.Binary; + + internal byte[] Value => _value ?? Convert.FromBase64String(_base64); + + #region #region Implicit Casts + + public static implicit operator byte[] (XBinary data) => data.Value; + + public static implicit operator XBinary(byte[] data) => new XBinary(data); + + #endregion + + public override int GetHashCode() => Value.GetHashCode(); + + public override string ToString() => _base64 ?? Convert.ToBase64String(_value); + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Nodes/XNull.cs b/src/DedicatedHsm/generated/runtime/Nodes/XNull.cs new file mode 100644 index 000000000000..53a4d81423f1 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Nodes/XNull.cs @@ -0,0 +1,15 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + internal sealed class XNull : JsonNode + { + internal static readonly XNull Instance = new XNull(); + + private XNull() { } + + internal override JsonType Type => JsonType.Null; + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Parser/Exceptions/ParseException.cs b/src/DedicatedHsm/generated/runtime/Parser/Exceptions/ParseException.cs new file mode 100644 index 000000000000..6e82044a6001 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Parser/Exceptions/ParseException.cs @@ -0,0 +1,24 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + internal class ParserException : Exception + { + internal ParserException(string message) + : base(message) + { } + + internal ParserException(string message, SourceLocation location) + : base(message) + { + + Location = location; + } + + internal SourceLocation Location { get; } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Parser/JsonParser.cs b/src/DedicatedHsm/generated/runtime/Parser/JsonParser.cs new file mode 100644 index 000000000000..2d59cddc1718 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Parser/JsonParser.cs @@ -0,0 +1,180 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Collections.Generic; +using System.IO; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + public class JsonParser : IDisposable + { + private readonly TokenReader reader; + + internal JsonParser(TextReader reader) + : this(new SourceReader(reader)) { } + + internal JsonParser(SourceReader sourceReader) + { + if (sourceReader == null) + throw new ArgumentNullException(nameof(sourceReader)); + + this.reader = new TokenReader(new JsonTokenizer(sourceReader)); + + this.reader.Next(); // Start with the first token + } + + internal IEnumerable ReadNodes() + { + JsonNode node; + + while ((node = ReadNode()) != null) yield return node; + } + + internal JsonNode ReadNode() + { + if (reader.Current.Kind == TokenKind.Eof || reader.Current.IsTerminator) + { + return null; + } + + switch (reader.Current.Kind) + { + case TokenKind.LeftBrace : return ReadObject(); // { + case TokenKind.LeftBracket : return ReadArray(); // [ + + default: throw new ParserException($"Expected '{{' or '['. Was {reader.Current}."); + } + } + + private JsonNode ReadFieldValue() + { + // Boolean, Date, Null, Number, String, Uri + if (reader.Current.IsLiteral) + { + return ReadLiteral(); + } + else + { + switch (reader.Current.Kind) + { + case TokenKind.LeftBracket: return ReadArray(); + case TokenKind.LeftBrace : return ReadObject(); + + default: throw new ParserException($"Unexpected token reading field value. Was {reader.Current}."); + } + } + } + + private JsonNode ReadLiteral() + { + var literal = reader.Current; + + reader.Next(); // Read the literal token + + switch (literal.Kind) + { + case TokenKind.Boolean : return JsonBoolean.Parse(literal.Value); + case TokenKind.Null : return XNull.Instance; + case TokenKind.Number : return new JsonNumber(literal.Value); + case TokenKind.String : return new JsonString(literal.Value); + + default: throw new ParserException($"Unexpected token reading literal. Was {literal}."); + } + } + + internal JsonObject ReadObject() + { + reader.Ensure(TokenKind.LeftBrace, "object"); + + reader.Next(); // Read '{' (Object start) + + var jsonObject = new JsonObject(); + + // Read the object's fields until we reach the end of the object ('}') + while (reader.Current.Kind != TokenKind.RightBrace) + { + if (reader.Current.Kind == TokenKind.Comma) + { + reader.Next(); // Read ',' (Seperator) + } + + // Ensure we have a field name + reader.Ensure(TokenKind.String, "Expected field name"); + + var field = ReadField(); + + jsonObject.Add(field.Key, field.Value); + } + + reader.Next(); // Read '}' (Object end) + + return jsonObject; + } + + + // TODO: Use ValueTuple in C#7 + private KeyValuePair ReadField() + { + var fieldName = reader.Current.Value; + + reader.Next(); // Read the field name + + reader.Ensure(TokenKind.Colon, "field"); + + reader.Next(); // Read ':' (Field value indicator) + + return new KeyValuePair(fieldName, ReadFieldValue()); + } + + + internal JsonArray ReadArray() + { + reader.Ensure(TokenKind.LeftBracket, "array"); + + var array = new XNodeArray(); + + reader.Next(); // Read the '[' (Array start) + + // Read the array's items + while (reader.Current.Kind != TokenKind.RightBracket) + { + if (reader.Current.Kind == TokenKind.Comma) + { + reader.Next(); // Read the ',' (Seperator) + } + + if (reader.Current.IsLiteral) + { + array.Add(ReadLiteral()); // Boolean, Date, Number, Null, String, Uri + } + else if (reader.Current.Kind == TokenKind.LeftBracket) + { + array.Add(ReadArray()); // Array + } + else if (reader.Current.Kind == TokenKind.LeftBrace) + { + array.Add(ReadObject()); // Object + } + else + { + throw new ParserException($"Expected comma, literal, or object. Was {reader.Current}."); + } + } + + reader.Next(); // Read the ']' (Array end) + + return array; + } + + #region IDisposable + + public void Dispose() + { + reader.Dispose(); + } + + #endregion + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Parser/JsonToken.cs b/src/DedicatedHsm/generated/runtime/Parser/JsonToken.cs new file mode 100644 index 000000000000..fd410826b9e5 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Parser/JsonToken.cs @@ -0,0 +1,66 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + internal enum TokenKind + { + LeftBrace, // { Object start + RightBrace, // } Object end + + LeftBracket, // [ Array start + RightBracket, // ] Array end + + Comma, // , Comma + Colon, // : Value indicator + Dot, // . Access field indicator + Terminator, // \0 Stream terminator + + Boolean = 31, // true or false + Null = 33, // null + Number = 34, // i.e. -1.93, -1, 0, 1, 1.1 + String = 35, // i.e. "text" + + Eof = 50 + } + + internal /* readonly */ struct JsonToken + { + internal static readonly JsonToken BraceOpen = new JsonToken(TokenKind.LeftBrace, "{"); + internal static readonly JsonToken BraceClose = new JsonToken(TokenKind.RightBrace, "}"); + + internal static readonly JsonToken BracketOpen = new JsonToken(TokenKind.LeftBracket, "["); + internal static readonly JsonToken BracketClose = new JsonToken(TokenKind.RightBracket, "]"); + + internal static readonly JsonToken Colon = new JsonToken(TokenKind.Colon, ":"); + internal static readonly JsonToken Comma = new JsonToken(TokenKind.Comma, ","); + internal static readonly JsonToken Terminator = new JsonToken(TokenKind.Terminator, "\0"); + + internal static readonly JsonToken True = new JsonToken(TokenKind.Boolean, "true"); + internal static readonly JsonToken False = new JsonToken(TokenKind.Boolean, "false"); + internal static readonly JsonToken Null = new JsonToken(TokenKind.Null, "null"); + + internal static readonly JsonToken Eof = new JsonToken(TokenKind.Eof, null); + + internal JsonToken(TokenKind kind, string value) + { + Kind = kind; + Value = value; + } + + internal readonly TokenKind Kind; + + internal readonly string Value; + + public override string ToString() => Kind + ": " + Value; + + #region Helpers + + internal bool IsLiteral => (byte)Kind > 30 && (byte)Kind < 40; + + internal bool IsTerminator => Kind == TokenKind.Terminator; + + #endregion + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Parser/JsonTokenizer.cs b/src/DedicatedHsm/generated/runtime/Parser/JsonTokenizer.cs new file mode 100644 index 000000000000..f2f3415fc855 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Parser/JsonTokenizer.cs @@ -0,0 +1,177 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Text; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + using System.IO; + + + public class JsonTokenizer : IDisposable + { + private readonly StringBuilder sb = new StringBuilder(); + + private readonly SourceReader reader; + + internal JsonTokenizer(TextReader reader) + : this(new SourceReader(reader)) { } + + internal JsonTokenizer(SourceReader reader) + { + this.reader = reader; + + reader.Next(); // Start with the first char + } + + internal JsonToken ReadNext() + { + reader.SkipWhitespace(); + + if (reader.IsEof) return JsonToken.Eof; + + switch (reader.Current) + { + case '"': return ReadQuotedString(); + + // Symbols + case '[' : reader.Next(); return JsonToken.BracketOpen; // Array start + case ']' : reader.Next(); return JsonToken.BracketClose; // Array end + case ',' : reader.Next(); return JsonToken.Comma; // Value seperator + case ':' : reader.Next(); return JsonToken.Colon; // Field value indicator + case '{' : reader.Next(); return JsonToken.BraceOpen; // Object start + case '}' : reader.Next(); return JsonToken.BraceClose; // Object end + case '\0' : reader.Next(); return JsonToken.Terminator; // Stream terminiator + + default: return ReadLiteral(); + } + } + + private JsonToken ReadQuotedString() + { + Expect('"', "quoted string indicator"); + + reader.Next(); // Read '"' (Starting quote) + + // Read until we reach an unescaped quote char + while (reader.Current != '"') + { + EnsureNotEof("quoted string"); + + if (reader.Current == '\\') + { + char escapedCharacter = reader.ReadEscapeCode(); + + sb.Append(escapedCharacter); + + continue; + } + + StoreCurrentCharacterAndReadNext(); + } + + reader.Next(); // Read '"' (Ending quote) + + return new JsonToken(TokenKind.String, value: sb.Extract()); + } + + private JsonToken ReadLiteral() + { + if (char.IsDigit(reader.Current) || + reader.Current == '-' || + reader.Current == '+') + { + return ReadNumber(); + } + + return ReadIdentifer(); + } + + private JsonToken ReadNumber() + { + // Read until we hit a non-numeric character + // -6.247737e-06 + // E + + while (char.IsDigit(reader.Current) + || reader.Current == '.' + || reader.Current == 'e' + || reader.Current == 'E' + || reader.Current == '-' + || reader.Current == '+') + { + StoreCurrentCharacterAndReadNext(); + } + + return new JsonToken(TokenKind.Number, value: sb.Extract()); + } + + int count = 0; + + private JsonToken ReadIdentifer() + { + count++; + + if (!char.IsLetter(reader.Current)) + { + throw new ParserException( + message : $"Expected literal (number, boolean, or null). Was '{reader.Current}'.", + location : reader.Location + ); + } + + // Read letters, numbers, and underscores '_' + while (char.IsLetterOrDigit(reader.Current) || reader.Current == '_') + { + StoreCurrentCharacterAndReadNext(); + } + + string text = sb.Extract(); + + switch (text) + { + case "true": return JsonToken.True; + case "false": return JsonToken.False; + case "null": return JsonToken.Null; + + default: return new JsonToken(TokenKind.String, text); + } + } + + private void Expect(char character, string description) + { + if (reader.Current != character) + { + throw new ParserException( + message: $"Expected {description} ('{character}'). Was '{reader.Current}'.", + location: reader.Location + ); + } + } + + private void EnsureNotEof(string tokenType) + { + if (reader.IsEof) + { + throw new ParserException( + message: $"Unexpected EOF while reading {tokenType}.", + location: reader.Location + ); + } + } + + private void StoreCurrentCharacterAndReadNext() + { + sb.Append(reader.Current); + + reader.Next(); + } + + public void Dispose() + { + reader.Dispose(); + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Parser/Location.cs b/src/DedicatedHsm/generated/runtime/Parser/Location.cs new file mode 100644 index 000000000000..2a7432109379 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Parser/Location.cs @@ -0,0 +1,43 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + internal struct SourceLocation + { + private int line; + private int column; + private int position; + + internal SourceLocation(int line = 0, int column = 0, int position = 0) + { + this.line = line; + this.column = column; + this.position = position; + } + + internal int Line => line; + + internal int Column => column; + + internal int Position => position; + + internal void Advance() + { + this.column++; + this.position++; + } + + internal void MarkNewLine() + { + this.line++; + this.column = 0; + } + + internal SourceLocation Clone() + { + return new SourceLocation(line, column, position); + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Parser/Readers/SourceReader.cs b/src/DedicatedHsm/generated/runtime/Parser/Readers/SourceReader.cs new file mode 100644 index 000000000000..2a633d25b568 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Parser/Readers/SourceReader.cs @@ -0,0 +1,130 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Globalization; +using System.IO; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + public sealed class SourceReader : IDisposable + { + private readonly TextReader source; + + private char current; + + private readonly SourceLocation location = new SourceLocation(); + + private bool isEof = false; + + internal SourceReader(TextReader textReader) + { + this.source = textReader ?? throw new ArgumentNullException(nameof(textReader)); + } + + /// + /// Advances to the next character + /// + internal void Next() + { + // Advance to the new line when we see a new line '\n'. + // A new line may be prefixed by a carriage return '\r'. + + if (current == '\n') + { + location.MarkNewLine(); + } + + int charCode = source.Read(); // -1 for end + + if (charCode >= 0) + { + current = (char)charCode; + } + else + { + // If we've already marked this as the EOF, throw an exception + if (isEof) + { + throw new EndOfStreamException("Cannot advance past end of stream."); + } + + isEof = true; + + current = '\0'; + } + + location.Advance(); + } + + internal void SkipWhitespace() + { + while (char.IsWhiteSpace(current)) + { + Next(); + } + } + + internal char ReadEscapeCode() + { + Next(); + + char escapedChar = current; + + Next(); // Consume escaped character + + switch (escapedChar) + { + // Special escape codes + case '"': return '"'; // " (Quotation mark) U+0022 + case '/': return '/'; // / (Solidus) U+002F + case '\\': return '\\'; // \ (Reverse solidus) U+005C + + // Control Characters + case '0': return '\0'; // Nul (0) U+0000 + case 'a': return '\a'; // Alert (7) + case 'b': return '\b'; // Backspace (8) U+0008 + case 'f': return '\f'; // Form feed (12) U+000C + case 'n': return '\n'; // Line feed (10) U+000A + case 'r': return '\r'; // Carriage return (13) U+000D + case 't': return '\t'; // Horizontal tab (9) U+0009 + case 'v': return '\v'; // Vertical tab + + // Unicode escape sequence + case 'u': return ReadUnicodeEscapeSequence(); // U+XXXX + + default: throw new Exception($"Unrecognized escape sequence '\\{escapedChar}'"); + } + } + + private readonly char[] hexCode = new char[4]; + + private char ReadUnicodeEscapeSequence() + { + hexCode[0] = current; Next(); + hexCode[1] = current; Next(); + hexCode[2] = current; Next(); + hexCode[3] = current; Next(); + + return Convert.ToChar(int.Parse( + s : new string(hexCode), + style : NumberStyles.HexNumber, + provider: NumberFormatInfo.InvariantInfo + )); + } + + internal char Current => current; + + internal bool IsEof => isEof; + + internal char Peek() => (char)source.Peek(); + + internal SourceLocation Location => location; + + public void Dispose() + { + source.Dispose(); + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Parser/TokenReader.cs b/src/DedicatedHsm/generated/runtime/Parser/TokenReader.cs new file mode 100644 index 000000000000..1ba74f3c7e39 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Parser/TokenReader.cs @@ -0,0 +1,39 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + public class TokenReader : IDisposable + { + private readonly JsonTokenizer tokenizer; + private JsonToken current; + + internal TokenReader(JsonTokenizer tokenizer) + { + this.tokenizer = tokenizer ?? throw new ArgumentNullException(nameof(tokenizer)); + } + + internal void Next() + { + current = tokenizer.ReadNext(); + } + + internal JsonToken Current => current; + + internal void Ensure(TokenKind kind, string readerName) + { + if (current.Kind != kind) + { + throw new ParserException($"Expected {kind} while reading {readerName}). Was {current}."); + } + } + + public void Dispose() + { + tokenizer.Dispose(); + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/PipelineMocking.cs b/src/DedicatedHsm/generated/runtime/PipelineMocking.cs new file mode 100644 index 000000000000..a90566c41baf --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/PipelineMocking.cs @@ -0,0 +1,254 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime +{ + using System.Threading.Tasks; + using System.Collections.Generic; + using System.Net.Http; + using System.Linq; + using System.Net; + using Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json; + + public enum MockMode + { + Live, + Record, + Playback, + + } + + public class PipelineMock + { + + private System.Collections.Generic.Stack scenario = new System.Collections.Generic.Stack(); + private System.Collections.Generic.Stack context = new System.Collections.Generic.Stack(); + private System.Collections.Generic.Stack description = new System.Collections.Generic.Stack(); + + private readonly string recordingPath; + private int counter = 0; + + public static implicit operator Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SendAsyncStep(PipelineMock instance) => instance.SendAsync; + + public MockMode Mode { get; set; } = MockMode.Live; + public PipelineMock(string recordingPath) + { + this.recordingPath = recordingPath; + } + + public void PushContext(string text) => context.Push(text); + + public void PushDescription(string text) => description.Push(text); + + + public void PushScenario(string it) + { + // reset counter too + counter = 0; + + scenario.Push(it); + } + + public void PopContext() => context.Pop(); + + public void PopDescription() => description.Pop(); + + public void PopScenario() => scenario.Pop(); + + public void SetRecord() => Mode = MockMode.Record; + + public void SetPlayback() => Mode = MockMode.Playback; + + public void SetLive() => Mode = MockMode.Live; + + public string Scenario => (scenario.Count > 0 ? scenario.Peek() : "[NoScenario]"); + public string Description => (description.Count > 0 ? description.Peek() : "[NoDescription]"); + public string Context => (context.Count > 0 ? context.Peek() : "[NoContext]"); + + /// + /// Headers that we substitute out blank values for in the recordings + /// Add additional headers as necessary + /// + public static HashSet Blacklist = new HashSet(System.StringComparer.CurrentCultureIgnoreCase) { + "Authorization", + }; + + public Dictionary ForceResponseHeaders = new Dictionary(); + + internal static XImmutableArray Removed = new XImmutableArray(new string[] { "[Filtered]" }); + + internal static IEnumerable> FilterHeaders(IEnumerable>> headers) => headers.Select(header => new KeyValuePair(header.Key, Blacklist.Contains(header.Key) ? Removed : new XImmutableArray(header.Value.ToArray()))); + + internal static JsonNode SerializeContent(HttpContent content) => content == null ? XNull.Instance : SerializeContent(content.ReadAsByteArrayAsync().Result); + + internal static JsonNode SerializeContent(byte[] content) + { + if (null == content || content.Length == 0) + { + return XNull.Instance; + } + var first = content[0]; + var last = content[content.Length - 1]; + + // plaintext for JSON/SGML/XML/HTML/STRINGS/ARRAYS + if ((first == '{' && last == '}') || (first == '<' && last == '>') || (first == '[' && last == ']') || (first == '"' && last == '"')) + { + return new JsonString(System.Text.Encoding.UTF8.GetString(content)); + } + + // base64 for everyone else + return new JsonString(System.Convert.ToBase64String(content)); + } + + internal static byte[] DeserializeContent(string content) + { + if (string.IsNullOrWhiteSpace(content)) + { + return new byte[0]; + } + + if (content.EndsWith("==")) + { + try + { + return System.Convert.FromBase64String(content); + } + catch + { + // hmm. didn't work, return it as a string I guess. + } + } + return System.Text.Encoding.UTF8.GetBytes(content); + } + + public void SaveMessage(string rqKey, HttpRequestMessage request, HttpResponseMessage response) + { + var messages = System.IO.File.Exists(this.recordingPath) ? Load() : new JsonObject() ?? new JsonObject(); + messages[rqKey] = new JsonObject { + { "Request",new JsonObject { + { "Method", request.Method.Method }, + { "RequestUri", request.RequestUri }, + { "Content", SerializeContent( request.Content) }, + { "Headers", new JsonObject(FilterHeaders(request.Headers)) }, + { "ContentHeaders", request.Content == null ? new JsonObject() : new JsonObject(FilterHeaders(request.Content.Headers))} + } }, + {"Response", new JsonObject { + { "StatusCode", (int)response.StatusCode}, + { "Headers", new JsonObject(FilterHeaders(response.Headers))}, + { "ContentHeaders", new JsonObject(FilterHeaders(response.Content.Headers))}, + { "Content", SerializeContent(response.Content) }, + }} + }; + System.IO.File.WriteAllText(this.recordingPath, messages.ToString()); + } + + private JsonObject Load() + { + if (System.IO.File.Exists(this.recordingPath)) + { + try + { + return JsonObject.FromStream(System.IO.File.OpenRead(this.recordingPath)); + } + catch + { + throw new System.Exception($"Invalid recording file: '{recordingPath}'"); + } + } + + throw new System.ArgumentException($"Missing recording file: '{recordingPath}'", nameof(recordingPath)); + } + + public HttpResponseMessage LoadMessage(string rqKey) + { + var responses = Load(); + var message = responses.Property(rqKey); + + if (null == message) + { + throw new System.ArgumentException($"Missing Request '{rqKey}' in recording file", nameof(rqKey)); + } + + var sc = 0; + var reqMessage = message.Property("Request"); + var respMessage = message.Property("Response"); + + // --------------------------- deserialize response ---------------------------------------------------------------- + var response = new HttpResponseMessage + { + StatusCode = (HttpStatusCode)respMessage.NumberProperty("StatusCode", ref sc), + Content = new System.Net.Http.ByteArrayContent(DeserializeContent(respMessage.StringProperty("Content"))) + }; + + foreach (var each in respMessage.Property("Headers")) + { + response.Headers.TryAddWithoutValidation(each.Key, each.Value.ToArrayOf()); + } + + foreach (var frh in ForceResponseHeaders) + { + response.Headers.Remove(frh.Key); + response.Headers.TryAddWithoutValidation(frh.Key, frh.Value); + } + + foreach (var each in respMessage.Property("ContentHeaders")) + { + response.Content.Headers.TryAddWithoutValidation(each.Key, each.Value.ToArrayOf()); + } + + // --------------------------- deserialize request ---------------------------------------------------------------- + response.RequestMessage = new HttpRequestMessage + { + Method = new HttpMethod(reqMessage.StringProperty("Method")), + RequestUri = new System.Uri(reqMessage.StringProperty("RequestUri")), + Content = new System.Net.Http.ByteArrayContent(DeserializeContent(reqMessage.StringProperty("Content"))) + }; + + foreach (var each in reqMessage.Property("Headers")) + { + response.RequestMessage.Headers.TryAddWithoutValidation(each.Key, each.Value.ToArrayOf()); + } + foreach (var each in reqMessage.Property("ContentHeaders")) + { + response.RequestMessage.Content.Headers.TryAddWithoutValidation(each.Key, each.Value.ToArrayOf()); + } + + return response; + } + + public async Task SendAsync(HttpRequestMessage request, IEventListener callback, ISendAsync next) + { + counter++; + var rqkey = $"{Description}+{Context}+{Scenario}+${request.Method.Method}+{request.RequestUri}+{counter}"; + + switch (Mode) + { + case MockMode.Record: + //Add following code since the request.Content will be released after sendAsync + var requestClone = request; + if (requestClone.Content != null) + { + requestClone = await request.CloneWithContent(request.RequestUri, request.Method); + } + // make the call + var response = await next.SendAsync(request, callback); + + // save the message to the recording file + SaveMessage(rqkey, requestClone, response); + + // return the response. + return response; + + case MockMode.Playback: + // load and return the response. + return LoadMessage(rqkey); + + default: + // pass-thru, do nothing + return await next.SendAsync(request, callback); + } + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Response.cs b/src/DedicatedHsm/generated/runtime/Response.cs new file mode 100644 index 000000000000..d5c9228dd4b9 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Response.cs @@ -0,0 +1,27 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime +{ + using System; + using System.Threading.Tasks; + public class Response : EventData + { + public Response() : base() + { + } + } + + public class Response : Response + { + private Func> _resultDelegate; + private Task _resultValue; + + public Response(T value) : base() => _resultValue = Task.FromResult(value); + public Response(Func value) : base() => _resultDelegate = () => Task.FromResult(value()); + public Response(Func> value) : base() => _resultDelegate = value; + public Task Result => _resultValue ?? (_resultValue = this._resultDelegate()); + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Serialization/JsonSerializer.cs b/src/DedicatedHsm/generated/runtime/Serialization/JsonSerializer.cs new file mode 100644 index 000000000000..5f2a37f45438 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Serialization/JsonSerializer.cs @@ -0,0 +1,350 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Collections; +using System.Collections.Generic; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + internal class JsonSerializer + { + private int depth = 0; + + private SerializationOptions options = new SerializationOptions(); + + #region Deserialization + + internal T Deseralize(JsonObject json) + where T : new() + { + var contract = JsonModelCache.Get(typeof(T)); + + return (T)DeserializeObject(contract, json); + } + + internal object DeserializeObject(JsonModel contract, JsonObject json) + { + var instance = Activator.CreateInstance(contract.Type); + + depth++; + + // Ensure we don't recurse forever + if (depth > 5) throw new Exception("Depth greater than 5"); + + foreach (var field in json) + { + var member = contract[field.Key]; + + if (member != null) + { + var value = DeserializeValue(member, field.Value); + + member.SetValue(instance, value); + } + } + + depth--; + + return instance; + } + + private object DeserializeValue(JsonMember member, JsonNode value) + { + if (value.Type == JsonType.Null) return null; + + var type = member.Type; + + if (member.IsStringLike && value.Type != JsonType.String) + { + // Take the long path... + return DeserializeObject(JsonModelCache.Get(type), (JsonObject)value); + } + else if (member.Converter != null) + { + return member.Converter.FromJson(value); + } + else if (type.IsArray) + { + return DeserializeArray(type, (JsonArray)value); + } + else if (member.IsList) + { + return DeserializeList(type, (JsonArray)value); + } + else + { + var contract = JsonModelCache.Get(type); + + return DeserializeObject(contract, (JsonObject)value); + } + } + + private object DeserializeValue(Type type, JsonNode value) + { + if (type == null) throw new ArgumentNullException(nameof(type)); + + if (value.Type == JsonType.Null) return null; + + var typeDetails = TypeDetails.Get(type); + + if (typeDetails.JsonConverter != null) + { + return typeDetails.JsonConverter.FromJson(value); + } + else if (typeDetails.IsEnum) + { + return Enum.Parse(type, value.ToString(), ignoreCase: true); + } + else if (type.IsArray) + { + return DeserializeArray(type, (JsonArray)value); + } + else if (typeDetails.IsList) + { + return DeserializeList(type, (JsonArray)value); + } + else + { + var contract = JsonModelCache.Get(type); + + return DeserializeObject(contract, (JsonObject)value); + } + } + + internal Array DeserializeArray(Type type, JsonArray elements) + { + var elementType = type.GetElementType(); + + var elementTypeDetails = TypeDetails.Get(elementType); + + var array = Array.CreateInstance(elementType, elements.Count); + + int i = 0; + + if (elementTypeDetails.JsonConverter != null) + { + foreach (var value in elements) + { + array.SetValue(elementTypeDetails.JsonConverter.FromJson(value), i); + + i++; + } + } + else + { + foreach (var value in elements) + { + array.SetValue(DeserializeValue(elementType, value), i); + + i++; + } + } + + return array; + } + + internal IList DeserializeList(Type type, JsonArray jsonArray) + { + // TODO: Handle non-generic types + if (!type.IsGenericType) + throw new ArgumentException("Must be a generic type", nameof(type)); + + var elementType = type.GetGenericArguments()[0]; + + IList list; + + if (type.IsInterface) + { + // Create a concrete generic list + list = (IList)Activator.CreateInstance(typeof(List<>).MakeGenericType(elementType)); + } + else + { + list = (IList)Activator.CreateInstance(type); + } + + foreach (var value in jsonArray) + { + list.Add(DeserializeValue(elementType, value)); + } + + return list; + } + + #endregion + + #region Serialization + + internal JsonNode Serialize(object instance) => + Serialize(instance, SerializationOptions.Default); + + internal JsonNode Serialize(object instance, string[] include) => + Serialize(instance, new SerializationOptions { Include = include }); + + internal JsonNode Serialize(object instance, SerializationOptions options) + { + this.options = options; + + if (instance == null) + { + return XNull.Instance; + } + + return ReadValue(instance.GetType(), instance); + } + + #region Readers + + internal JsonArray ReadArray(IEnumerable collection) + { + var array = new XNodeArray(); + + foreach (var item in collection) + { + array.Add(ReadValue(item.GetType(), item)); + } + + return array; + } + + internal IEnumerable> ReadProperties(object instance) + { + var contract = JsonModelCache.Get(instance.GetType()); + + foreach (var member in contract.Members) + { + string name = member.Name; + + if (options.PropertyNameTransformer != null) + { + name = options.PropertyNameTransformer.Invoke(name); + } + + // Skip the field if it's not included + if ((depth == 1 && !options.IsIncluded(name))) + { + continue; + } + + var value = member.GetValue(instance); + + if (!member.EmitDefaultValue && (value == null || (member.IsList && ((IList)value).Count == 0) || value.Equals(member.DefaultValue))) + { + continue; + } + else if (options.IgnoreNullValues && value == null) // Ignore null values + { + continue; + } + + // Transform the value if there is one + if (options.Transformations != null) + { + var transform = options.GetTransformation(name); + + if (transform != null) + { + value = transform.Transformer(value); + } + } + + yield return new KeyValuePair(name, ReadValue(member.TypeDetails, value)); + } + } + + private JsonObject ReadObject(object instance) + { + depth++; + + // TODO: Guard against a self referencing graph + if (depth > options.MaxDepth) + { + depth--; + + return new JsonObject(); + } + + var node = new JsonObject(ReadProperties(instance)); + + depth--; + + return node; + } + + private JsonNode ReadValue(Type type, object value) + { + if (value == null) + { + return XNull.Instance; + } + + var member = TypeDetails.Get(type); + + return ReadValue(member, value); + } + + private JsonNode ReadValue(TypeDetails type, object value) + { + if (value == null) + { + return XNull.Instance; + } + + if (type.JsonConverter != null) + { + return type.JsonConverter.ToJson(value); + } + else if (type.IsArray) + { + switch (Type.GetTypeCode(type.ElementType)) + { + case TypeCode.String: return CreateArray((string[])value); + case TypeCode.UInt16: return CreateArray((ushort[])value); + case TypeCode.UInt32: return CreateArray((uint[])value); + case TypeCode.UInt64: return CreateArray((ulong[])value); + case TypeCode.Int16: return CreateArray((short[])value); + case TypeCode.Int32: return CreateArray((int[])value); + case TypeCode.Int64: return CreateArray((long[])value); + case TypeCode.Single: return CreateArray((float[])value); + case TypeCode.Double: return CreateArray((double[])value); + default: return ReadArray((IEnumerable)value); + } + } + else if (value is IEnumerable) + { + if (type.IsList && type.ElementType != null) + { + switch (Type.GetTypeCode(type.ElementType)) + { + case TypeCode.String: return CreateList(value); + case TypeCode.UInt16: return CreateList(value); + case TypeCode.UInt32: return CreateList(value); + case TypeCode.UInt64: return CreateList(value); + case TypeCode.Int16: return CreateList(value); + case TypeCode.Int32: return CreateList(value); + case TypeCode.Int64: return CreateList(value); + case TypeCode.Single: return CreateList(value); + case TypeCode.Double: return CreateList(value); + } + } + + return ReadArray((IEnumerable)value); + } + else + { + // Complex object + return ReadObject(value); + } + } + + private XList CreateList(object value) => new XList((IList)value); + + private XImmutableArray CreateArray(T[] array) => new XImmutableArray(array); + + #endregion + + #endregion + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Serialization/PropertyTransformation.cs b/src/DedicatedHsm/generated/runtime/Serialization/PropertyTransformation.cs new file mode 100644 index 000000000000..bd3a5c25015c --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Serialization/PropertyTransformation.cs @@ -0,0 +1,21 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + internal class PropertyTransformation + { + internal PropertyTransformation(string name, Func transformer) + { + Name = name ?? throw new ArgumentNullException(nameof(name)); + Transformer = transformer ?? throw new ArgumentNullException(nameof(transformer)); + } + + internal string Name { get; } + + internal Func Transformer { get; } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Serialization/SerializationOptions.cs b/src/DedicatedHsm/generated/runtime/Serialization/SerializationOptions.cs new file mode 100644 index 000000000000..44f1b3f9d307 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Serialization/SerializationOptions.cs @@ -0,0 +1,65 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Linq; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + internal class SerializationOptions + { + internal static readonly SerializationOptions Default = new SerializationOptions(); + + internal SerializationOptions() { } + + internal SerializationOptions( + string[] include = null, + bool ingoreNullValues = false) + { + Include = include; + IgnoreNullValues = ingoreNullValues; + } + + internal string[] Include { get; set; } + + internal string[] Exclude { get; set; } + + internal bool IgnoreNullValues { get; set; } + + internal PropertyTransformation[] Transformations { get; set; } + + internal Func PropertyNameTransformer { get; set; } + + internal int MaxDepth { get; set; } = 5; + + internal bool IsIncluded(string name) + { + if (Exclude != null) + { + return !Exclude.Any(exclude => exclude.Equals(name, StringComparison.OrdinalIgnoreCase)); + } + else if (Include != null) + { + return Include.Any(exclude => exclude.Equals(name, StringComparison.OrdinalIgnoreCase)); + } + + return true; + } + + internal PropertyTransformation GetTransformation(string propertyName) + { + if (Transformations == null) return null; + + foreach (var t in Transformations) + { + if (t.Name.Equals(propertyName, StringComparison.OrdinalIgnoreCase)) + { + return t; + } + } + + return null; + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/SerializationMode.cs b/src/DedicatedHsm/generated/runtime/SerializationMode.cs new file mode 100644 index 000000000000..35b5326dd9c3 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/SerializationMode.cs @@ -0,0 +1,16 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime +{ + [System.Flags] + public enum SerializationMode + { + None = 0, + IncludeHeaders = 1 << 0, + IncludeReadOnly = 1 << 1, + + IncludeAll = IncludeHeaders | IncludeReadOnly + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/TypeConverterExtensions.cs b/src/DedicatedHsm/generated/runtime/TypeConverterExtensions.cs new file mode 100644 index 000000000000..218a8a9bbd5d --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/TypeConverterExtensions.cs @@ -0,0 +1,190 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System.IO; +using System.Linq; +using System.Xml; +using System.Xml.Serialization; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.PowerShell +{ + internal static class TypeConverterExtensions + { + internal static T[] SelectToArray(object source, System.Func converter) + { + // null begets null + if (source == null) + { + return null; + } + + // single values and strings are just encapsulated in the array. + if (source is string || !(source is System.Collections.IEnumerable)) + { + try + { + return new T[] { (T)converter(source) }; + } +#if DEBUG + catch (System.Exception E) + { + System.Console.Error.WriteLine($"{E.GetType().Name}/{E.Message}/{E.StackTrace}"); + } +#else + catch + { + // silent conversion fail + } +#endif + return new T[0]; // empty result if couldn't convert. + } + + var result = new System.Collections.Generic.List(); + foreach (var each in (System.Collections.IEnumerable)source) + { + try + { + result.Add((T)converter(each)); + } +#if DEBUG + catch (System.Exception E) + { + System.Console.Error.WriteLine($"{E.GetType().Name}/{E.Message}/{E.StackTrace}"); + } +#else + catch + { + // silent conversion fail + } +#endif + } + return result.ToArray(); + } + + internal static System.Collections.Generic.IEnumerable GetPropertyKeys(this System.Collections.Generic.IDictionary dictionary) + { + if (null != dictionary) + { + foreach (var each in dictionary.Keys) + { + yield return each; + } + } + } + internal static System.Collections.Generic.IEnumerable GetPropertyKeys(this System.Collections.IDictionary dictionary) + { + if (null != dictionary) + { + foreach (var each in dictionary.Keys) + { + yield return each; + } + } + } + internal static System.Collections.Generic.IEnumerable GetPropertyKeys(this System.Management.Automation.PSObject instance) + { + if (null != instance) + { + foreach (var each in instance.Properties) + { + yield return each; + } + } + } + + internal static System.Collections.Generic.IEnumerable> GetFilteredProperties(this System.Collections.Generic.IDictionary instance, global::System.Collections.Generic.HashSet exclusions = null, global::System.Collections.Generic.HashSet inclusions = null) + { + return (null == instance || instance.Count == 0) ? + Enumerable.Empty>() : + instance.Keys + .Where(key => + !(true == exclusions?.Contains(key?.ToString())) + && (false != inclusions?.Contains(key?.ToString()))) + .Select(key => new System.Collections.Generic.KeyValuePair(key, instance[key])); + } + + internal static System.Collections.Generic.IEnumerable> GetFilteredProperties(this System.Collections.IDictionary instance, global::System.Collections.Generic.HashSet exclusions = null, global::System.Collections.Generic.HashSet inclusions = null) + { + return (null == instance || instance.Count == 0) ? + Enumerable.Empty>() : + instance.Keys.OfType() + .Where(key => + !(true == exclusions?.Contains(key?.ToString())) + && (false != inclusions?.Contains(key?.ToString()))) + .Select(key => new System.Collections.Generic.KeyValuePair(key, instance[key])); + } + + internal static System.Collections.Generic.IEnumerable> GetFilteredProperties(this System.Management.Automation.PSObject instance, global::System.Collections.Generic.HashSet exclusions = null, global::System.Collections.Generic.HashSet inclusions = null) + { + // new global::System.Collections.Generic.HashSet(System.StringComparer.InvariantCultureIgnoreCase) + return (null == instance || !instance.Properties.Any()) ? + Enumerable.Empty>() : + instance.Properties + .Where(property => + !(true == exclusions?.Contains(property.Name)) + && (false != inclusions?.Contains(property.Name))) + .Select(property => new System.Collections.Generic.KeyValuePair(property.Name, property.Value)); + } + + + internal static T GetValueForProperty(this System.Collections.Generic.IDictionary dictionary, string propertyName, T defaultValue, System.Func converter) + { + try + { + var key = System.Linq.Enumerable.FirstOrDefault(dictionary.Keys, each => System.String.Equals(each.ToString(), propertyName, System.StringComparison.CurrentCultureIgnoreCase)); + return key == null ? defaultValue : (T)converter(dictionary[key]); + } +#if DEBUG + catch (System.Exception E) + { + System.Console.Error.WriteLine($"{E.GetType().Name}/{E.Message}/{E.StackTrace}"); + } +#else + catch + { + } +#endif + return defaultValue; + } + internal static T GetValueForProperty(this System.Collections.IDictionary dictionary, string propertyName, T defaultValue, System.Func converter) + { + try + { + var key = System.Linq.Enumerable.FirstOrDefault(dictionary.Keys.OfType(), each => System.String.Equals(each.ToString(), propertyName, System.StringComparison.CurrentCultureIgnoreCase)); + return key == null ? defaultValue : (T)converter(dictionary[key]); + } +#if DEBUG + catch (System.Exception E) + { + System.Console.Error.WriteLine($"{E.GetType().Name}/{E.Message}/{E.StackTrace}"); + } +#else + catch + { + } +#endif + return defaultValue; + } + + internal static T GetValueForProperty(this System.Management.Automation.PSObject psObject, string propertyName, T defaultValue, System.Func converter) + { + try + { + var property = System.Linq.Enumerable.FirstOrDefault(psObject.Properties, each => System.String.Equals(each.Name.ToString(), propertyName, System.StringComparison.CurrentCultureIgnoreCase)); + return property == null ? defaultValue : (T)converter(property.Value); + } +#if DEBUG + catch (System.Exception E) + { + System.Console.Error.WriteLine($"{E.GetType().Name}/{E.Message}/{E.StackTrace}"); + } +#else + catch + { + } +#endif + return defaultValue; + } + } +} diff --git a/src/DedicatedHsm/generated/runtime/UndeclaredResponseException.cs b/src/DedicatedHsm/generated/runtime/UndeclaredResponseException.cs new file mode 100644 index 000000000000..899c8021d8e3 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/UndeclaredResponseException.cs @@ -0,0 +1,104 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime +{ + using System; + using System.Net.Http; + using System.Net.Http.Headers; + using static Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Extensions; + + public class RestException : Exception, IDisposable + { + public System.Net.HttpStatusCode StatusCode { get; set; } + public string Code { get; protected set; } + protected string message; + public HttpRequestMessage RequestMessage { get; protected set; } + public HttpResponseHeaders ResponseHeaders { get; protected set; } + + public string ResponseBody { get; protected set; } + public string ClientRequestId { get; protected set; } + public string RequestId { get; protected set; } + + public override string Message => message; + public string Action { get; protected set; } + + public RestException(System.Net.Http.HttpResponseMessage response) + { + StatusCode = response.StatusCode; + //CloneWithContent will not work here since the content is disposed after sendAsync + //Besides, it seems there is no need for the request content cloned here. + RequestMessage = response.RequestMessage.Clone(); + ResponseBody = response.Content.ReadAsStringAsync().Result; + ResponseHeaders = response.Headers; + + RequestId = response.GetFirstHeader("x-ms-request-id"); + ClientRequestId = response.GetFirstHeader("x-ms-client-request-id"); + + try + { + // try to parse the body as JSON, and see if a code and message are in there. + var json = Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonNode.Parse(ResponseBody) as Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json.JsonObject; + + // see if there is an error block in the body + json = json.Property("error") ?? json; + + { Code = If(json?.PropertyT("code"), out var c) ? (string)c : (string)StatusCode.ToString(); } + { message = If(json?.PropertyT("message"), out var m) ? (string)m : (string)Message; } + { Action = If(json?.PropertyT("action"), out var a) ? (string)a : (string)Action; } + } +#if DEBUG + catch (System.Exception E) + { + System.Console.Error.WriteLine($"{E.GetType().Name}/{E.Message}/{E.StackTrace}"); + } +#else + catch + { + // couldn't get the code/message from the body response. + // we'll create one below. + } +#endif + if (string.IsNullOrEmpty(message)) + { + if (StatusCode >= System.Net.HttpStatusCode.BadRequest && StatusCode < System.Net.HttpStatusCode.InternalServerError) + { + message = $"The server responded with a Request Error, Status: {StatusCode}"; + } + else if (StatusCode >= System.Net.HttpStatusCode.InternalServerError) + { + message = $"The server responded with a Server Error, Status: {StatusCode}"; + } + else + { + message = $"The server responded with an unrecognized response, Status: {StatusCode}"; + } + } + } + + public void Dispose() + { + ((IDisposable)RequestMessage).Dispose(); + } + } + + public class RestException : RestException + { + public T Error { get; protected set; } + public RestException(System.Net.Http.HttpResponseMessage response, T error) : base(response) + { + Error = error; + } + } + + + public class UndeclaredResponseException : RestException + { + public UndeclaredResponseException(System.Net.Http.HttpResponseMessage response) : base(response) + { + + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/generated/runtime/Writers/JsonWriter.cs b/src/DedicatedHsm/generated/runtime/Writers/JsonWriter.cs new file mode 100644 index 000000000000..a148a1fd5473 --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/Writers/JsonWriter.cs @@ -0,0 +1,223 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Collections.Generic; +using System.IO; +using System.Web; + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.Json +{ + internal class JsonWriter + { + const string indentation = " "; // 2 spaces + + private readonly bool pretty; + private readonly TextWriter writer; + + protected int currentLevel = 0; + + internal JsonWriter(TextWriter writer, bool pretty = true) + { + this.writer = writer ?? throw new ArgumentNullException(nameof(writer)); + this.pretty = pretty; + } + + internal void WriteNode(JsonNode node) + { + switch (node.Type) + { + case JsonType.Array: WriteArray((IEnumerable)node); break; + case JsonType.Object: WriteObject((JsonObject)node); break; + + // Primitives + case JsonType.Binary: WriteBinary((XBinary)node); break; + case JsonType.Boolean: WriteBoolean((bool)node); break; + case JsonType.Date: WriteDate((JsonDate)node); break; + case JsonType.Null: WriteNull(); break; + case JsonType.Number: WriteNumber((JsonNumber)node); break; + case JsonType.String: WriteString(node); break; + } + } + + internal void WriteArray(IEnumerable array) + { + currentLevel++; + + writer.Write('['); + + bool doIndentation = false; + + if (pretty) + { + foreach (var node in array) + { + if (node.Type == JsonType.Object || node.Type == JsonType.Array) + { + doIndentation = true; + + break; + } + } + } + + bool isFirst = true; + + foreach (JsonNode node in array) + { + if (!isFirst) writer.Write(','); + + if (doIndentation) + { + WriteIndent(); + } + else if (pretty) + { + writer.Write(' '); + } + + WriteNode(node); + + isFirst = false; + } + + currentLevel--; + + if (doIndentation) + { + WriteIndent(); + } + else if (pretty) + { + writer.Write(' '); + } + + writer.Write(']'); + } + + internal void WriteIndent() + { + if (pretty) + { + writer.Write(Environment.NewLine); + + for (int level = 0; level < currentLevel; level++) + { + writer.Write(indentation); + } + } + } + + internal void WriteObject(JsonObject obj) + { + currentLevel++; + + writer.Write('{'); + + bool isFirst = true; + + foreach (var field in obj) + { + if (!isFirst) writer.Write(','); + + WriteIndent(); + + WriteFieldName(field.Key); + + writer.Write(':'); + + if (pretty) + { + writer.Write(' '); + } + + // Write the field value + WriteNode(field.Value); + + isFirst = false; + } + + currentLevel--; + + WriteIndent(); + + writer.Write('}'); + } + + internal void WriteFieldName(string fieldName) + { + writer.Write('"'); + writer.Write(HttpUtility.JavaScriptStringEncode(fieldName)); + writer.Write('"'); + } + + #region Primitives + + internal void WriteBinary(XBinary value) + { + writer.Write('"'); + writer.Write(value.ToString()); + writer.Write('"'); + } + + internal void WriteBoolean(bool value) + { + writer.Write(value ? "true" : "false"); + } + + internal void WriteDate(JsonDate date) + { + if (date.ToDateTime().Year == 1) + { + WriteNull(); + } + else + { + writer.Write('"'); + writer.Write(date.ToIsoString()); + writer.Write('"'); + } + } + + internal void WriteNull() + { + writer.Write("null"); + } + + internal void WriteNumber(JsonNumber number) + { + if (number.Overflows) + { + writer.Write('"'); + writer.Write(number.Value); + writer.Write('"'); + } + else + { + writer.Write(number.Value); + } + } + + internal void WriteString(string text) + { + if (text == null) + { + WriteNull(); + } + else + { + writer.Write('"'); + + writer.Write(HttpUtility.JavaScriptStringEncode(text)); + + writer.Write('"'); + } + } + + #endregion + } +} + + +// TODO: Replace with System.Text.Json when available diff --git a/src/DedicatedHsm/generated/runtime/delegates.cs b/src/DedicatedHsm/generated/runtime/delegates.cs new file mode 100644 index 000000000000..087997bb63af --- /dev/null +++ b/src/DedicatedHsm/generated/runtime/delegates.cs @@ -0,0 +1,23 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +namespace Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime +{ + using System; + using System.Collections; + using System.Collections.Generic; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + using GetEventData=System.Func; + + public delegate Task SendAsync(HttpRequestMessage request, IEventListener callback); + public delegate Task SendAsyncStep(HttpRequestMessage request, IEventListener callback, ISendAsync next); + public delegate Task SignalEvent(string id, CancellationToken token, GetEventData getEventData); + public delegate Task Event(EventData message); + public delegate void SynchEvent(EventData message); + public delegate Task OnResponse(Response message); + public delegate Task OnResponse(Response message); +} \ No newline at end of file diff --git a/src/DedicatedHsm/help/Az.DedicatedHsm.md b/src/DedicatedHsm/help/Az.DedicatedHsm.md new file mode 100644 index 000000000000..1106083fd324 --- /dev/null +++ b/src/DedicatedHsm/help/Az.DedicatedHsm.md @@ -0,0 +1,25 @@ +--- +Module Name: Az.DedicatedHsm +Module Guid: 841c2fad-e8c0-4924-b9b9-9d27d0f40b48 +Download Help Link: https://docs.microsoft.com/en-us/powershell/module/az.dedicatedhsm +Help Version: 1.0.0.0 +Locale: en-US +--- + +# Az.DedicatedHsm Module +## Description +Microsoft Azure PowerShell: DedicatedHsm cmdlets + +## Az.DedicatedHsm Cmdlets +### [Get-AzDedicatedHsm](Get-AzDedicatedHsm.md) +Gets the specified Azure dedicated HSM. + +### [New-AzDedicatedHsm](New-AzDedicatedHsm.md) +Create or Update a dedicated HSM in the specified subscription. + +### [Remove-AzDedicatedHsm](Remove-AzDedicatedHsm.md) +Deletes the specified Azure Dedicated HSM. + +### [Update-AzDedicatedHsm](Update-AzDedicatedHsm.md) +Update a dedicated HSM in the specified subscription. + diff --git a/src/DedicatedHsm/help/Get-AzDedicatedHsm.md b/src/DedicatedHsm/help/Get-AzDedicatedHsm.md new file mode 100644 index 000000000000..aba951e51b93 --- /dev/null +++ b/src/DedicatedHsm/help/Get-AzDedicatedHsm.md @@ -0,0 +1,210 @@ +--- +external help file: +Module Name: Az.DedicatedHsm +online version: https://docs.microsoft.com/en-us/powershell/module/az.dedicatedhsm/get-azdedicatedhsm +schema: 2.0.0 +--- + +# Get-AzDedicatedHsm + +## SYNOPSIS +Gets the specified Azure dedicated HSM. + +## SYNTAX + +### List1 (Default) +``` +Get-AzDedicatedHsm [-SubscriptionId ] [-Top ] [-DefaultProfile ] + [] +``` + +### Get +``` +Get-AzDedicatedHsm -Name -ResourceGroupName [-SubscriptionId ] + [-DefaultProfile ] [] +``` + +### GetViaIdentity +``` +Get-AzDedicatedHsm -InputObject [-DefaultProfile ] [] +``` + +### List +``` +Get-AzDedicatedHsm -ResourceGroupName [-SubscriptionId ] [-Top ] + [-DefaultProfile ] [] +``` + +## DESCRIPTION +Gets the specified Azure dedicated HSM. + +## EXAMPLES + +### Example 1: Get all Dedicated HSM under a subscription +```powershell +PS C:\> Get-AzDedicatedHsm + +Name Provisioning State SKU Location +---- ------------------ --- -------- +hsm-7t2xaf Succeeded SafeNet Luna Network HSM A790 eastus +yeminghsm Succeeded SafeNet Luna Network HSM A790 eastus +``` + +This command gets all Dedicated HSM under a subscription + +### Example 2: Get all Dedicated HSM under a resource group. +```powershell +PS C:\> Get-AzDedicatedHsm -ResourceGroupName dedicatedhsm-rg-n359cz + +Name Provisioning State SKU Location +---- ------------------ --- -------- +hsm-7t2xaf Succeeded SafeNet Luna Network HSM A790 eastus +``` + +This command gets all Dedicated HSM under a resource group. + +### Example 3: Get a Dedicated HSM by name +```powershell +PS C:\> Get-AzDedicatedHsm -Name hsm-7t2xaf -ResourceGroupName dedicatedhsm-rg-n359cz + +Name Provisioning State SKU Location +---- ------------------ --- -------- +hsm-7t2xaf Succeeded SafeNet Luna Network HSM A790 eastus +``` + +This command gets a Dedicated HSM by name. + +### Example 4: Get a Dedicated HSM by object +```powershell +PS C:\> $hsm = New-AzDedicatedHsm -Name hsm-n7wfxi -ResourceGroupName dedicatedhsm-rg-n359cz -Location eastus -Sku "SafeNet Luna Network HSM A790" -StampId stamp1 -SubnetId "/subscriptions/xxxx-xxxx-xxx-xxx/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.Network/virtualNetworks/vnetq30la9/subnets/hsmsubnet" -NetworkInterface @{PrivateIPAddress = '10.2.1.120' } +PS C:\> Get-AzDedicatedHsm -InputObject $hsm + +Name Provisioning State SKU Location +---- ------------------ --- -------- +hsm-n7wfxi Succeeded SafeNet Luna Network HSM A790 eastus +``` + +This command gets a Dedicated HSM by object. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Identity Parameter +To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.IDedicatedHsmIdentity +Parameter Sets: GetViaIdentity +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +The name of the dedicated HSM. + +```yaml +Type: System.String +Parameter Sets: Get +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the Resource Group to which the dedicated hsm belongs. + +```yaml +Type: System.String +Parameter Sets: Get, List +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SubscriptionId +Subscription credentials which uniquely identify Microsoft Azure subscription. +The subscription ID forms part of the URI for every service call. + +```yaml +Type: System.String[] +Parameter Sets: Get, List, List1 +Aliases: + +Required: False +Position: Named +Default value: (Get-AzContext).Subscription.Id +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Top +Maximum number of results to return. + +```yaml +Type: System.Int32 +Parameter Sets: List, List1 +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.IDedicatedHsmIdentity + +## OUTPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsm + +## NOTES + +ALIASES + +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + + +INPUTOBJECT : Identity Parameter + - `[Id ]`: Resource identity path + - `[Name ]`: Name of the dedicated Hsm + - `[ResourceGroupName ]`: The name of the Resource Group to which the resource belongs. + - `[SubscriptionId ]`: Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. + +## RELATED LINKS + diff --git a/src/DedicatedHsm/help/New-AzDedicatedHsm.md b/src/DedicatedHsm/help/New-AzDedicatedHsm.md new file mode 100644 index 000000000000..5f8c995e5be4 --- /dev/null +++ b/src/DedicatedHsm/help/New-AzDedicatedHsm.md @@ -0,0 +1,293 @@ +--- +external help file: +Module Name: Az.DedicatedHsm +online version: https://docs.microsoft.com/en-us/powershell/module/az.dedicatedhsm/new-azdedicatedhsm +schema: 2.0.0 +--- + +# New-AzDedicatedHsm + +## SYNOPSIS +Create or Update a dedicated HSM in the specified subscription. + +## SYNTAX + +``` +New-AzDedicatedHsm -Name -ResourceGroupName -Location [-SubscriptionId ] + [-NetworkInterface ] [-Sku ] [-StampId ] [-SubnetId ] + [-Tag ] [-Zone ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] + [] +``` + +## DESCRIPTION +Create or Update a dedicated HSM in the specified subscription. + +## EXAMPLES + +### Example 1: Create a Dedicated HSM into an existing virtual network +```powershell +PS C:\> New-AzDedicatedHsm -Name hsm-n7wfxi -ResourceGroupName dedicatedhsm-rg-n359cz -Location eastus -Sku "SafeNet Luna Network HSM A790" -StampId stamp1 -SubnetId "/subscriptions/xxxx-xxxx-xxx-xxx/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.Network/virtualNetworks/vnetq30la9/subnets/hsmsubnet" -NetworkInterface @{PrivateIPAddress = '10.2.1.120' } + +Name Provisioning State SKU Location +---- ------------------ --- -------- +hsm-n7wfxi Succeeded SafeNet Luna Network HSM A790 eastus +``` + +This command creates a Dedicated HSM into an existing virtual network. + +**NOTE:** Currently `New-AzDedicatedHsm` has a limitation that it returns before the HSM is fully provisioned on Azure. +Therefore after creating a new HSM, please query its state by `Get-AzDedicatedHsm` and make sure its `Provisioning State` is `Succeeded` before using it. + +## PARAMETERS + +### -AsJob +Run the command as a job + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Location +The supported Azure location where the dedicated HSM should be created. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +Name of the dedicated Hsm + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NetworkInterface +Specifies the list of resource Ids for the network interfaces associated with the dedicated HSM. +To construct, see NOTES section for NETWORKINTERFACE properties and create a hash table. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.INetworkInterface[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NoWait +Run the command asynchronously + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the Resource Group to which the resource belongs. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Sku +SKU of the dedicated HSM + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -StampId +This field will be used when RP does not support Availability zones. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SubnetId +The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/... + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SubscriptionId +Subscription credentials which uniquely identify Microsoft Azure subscription. +The subscription ID forms part of the URI for every service call. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: (Get-AzContext).Subscription.Id +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Tag +Resource tags + +```yaml +Type: System.Collections.Hashtable +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Zone +The Dedicated Hsm zones. + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsm + +## NOTES + +ALIASES + +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + + +NETWORKINTERFACE : Specifies the list of resource Ids for the network interfaces associated with the dedicated HSM. + - `[PrivateIPAddress ]`: Private Ip address of the interface + +## RELATED LINKS + diff --git a/src/DedicatedHsm/help/Remove-AzDedicatedHsm.md b/src/DedicatedHsm/help/Remove-AzDedicatedHsm.md new file mode 100644 index 000000000000..96924c6a0cb1 --- /dev/null +++ b/src/DedicatedHsm/help/Remove-AzDedicatedHsm.md @@ -0,0 +1,231 @@ +--- +external help file: +Module Name: Az.DedicatedHsm +online version: https://docs.microsoft.com/en-us/powershell/module/az.dedicatedhsm/remove-azdedicatedhsm +schema: 2.0.0 +--- + +# Remove-AzDedicatedHsm + +## SYNOPSIS +Deletes the specified Azure Dedicated HSM. + +## SYNTAX + +### Delete (Default) +``` +Remove-AzDedicatedHsm -Name -ResourceGroupName [-SubscriptionId ] + [-DefaultProfile ] [-AsJob] [-NoWait] [-PassThru] [-Confirm] [-WhatIf] [] +``` + +### DeleteViaIdentity +``` +Remove-AzDedicatedHsm -InputObject [-DefaultProfile ] [-AsJob] [-NoWait] + [-PassThru] [-Confirm] [-WhatIf] [] +``` + +## DESCRIPTION +Deletes the specified Azure Dedicated HSM. + +## EXAMPLES + +### Example 1: Remove a Dedicated HSM by name +```powershell +PS C:\> Remove-AzDedicatedHsm -Name hsm-7t2xaf -ResourceGroupName lucas-manual-test + +``` + +This commnad removes a hardware security module(HSM) by name. + +### Example 2: Remove a Dedicated HSM by object +```powershell +PS C:\> $hsm = Get-AzDedicatedHsm -Name hsm-7t2xaf -ResourceGroupName dedicatedhsm-rg-n359cz +PS C:\> Remove-AzDedicatedHsm -InputObject $hsm + +``` + +This commnad removes a Dedicated HSM by object. + +## PARAMETERS + +### -AsJob +Run the command as a job + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Identity Parameter +To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.IDedicatedHsmIdentity +Parameter Sets: DeleteViaIdentity +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +The name of the dedicated HSM to delete + +```yaml +Type: System.String +Parameter Sets: Delete +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NoWait +Run the command asynchronously + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PassThru +Returns true when the command succeeds + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the Resource Group to which the dedicated HSM belongs. + +```yaml +Type: System.String +Parameter Sets: Delete +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SubscriptionId +Subscription credentials which uniquely identify Microsoft Azure subscription. +The subscription ID forms part of the URI for every service call. + +```yaml +Type: System.String +Parameter Sets: Delete +Aliases: + +Required: False +Position: Named +Default value: (Get-AzContext).Subscription.Id +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.IDedicatedHsmIdentity + +## OUTPUTS + +### System.Boolean + +## NOTES + +ALIASES + +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + + +INPUTOBJECT : Identity Parameter + - `[Id ]`: Resource identity path + - `[Name ]`: Name of the dedicated Hsm + - `[ResourceGroupName ]`: The name of the Resource Group to which the resource belongs. + - `[SubscriptionId ]`: Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. + +## RELATED LINKS + diff --git a/src/DedicatedHsm/help/Update-AzDedicatedHsm.md b/src/DedicatedHsm/help/Update-AzDedicatedHsm.md new file mode 100644 index 000000000000..20f4ef63f380 --- /dev/null +++ b/src/DedicatedHsm/help/Update-AzDedicatedHsm.md @@ -0,0 +1,237 @@ +--- +external help file: +Module Name: Az.DedicatedHsm +online version: https://docs.microsoft.com/en-us/powershell/module/az.dedicatedhsm/update-azdedicatedhsm +schema: 2.0.0 +--- + +# Update-AzDedicatedHsm + +## SYNOPSIS +Update a dedicated HSM in the specified subscription. + +## SYNTAX + +### UpdateExpanded (Default) +``` +Update-AzDedicatedHsm -Name -ResourceGroupName [-SubscriptionId ] [-Tag ] + [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] +``` + +### UpdateViaIdentityExpanded +``` +Update-AzDedicatedHsm -InputObject [-Tag ] [-DefaultProfile ] + [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] +``` + +## DESCRIPTION +Update a dedicated HSM in the specified subscription. + +## EXAMPLES + +### Example 1: Update the parameter tag of the Dedicated HSM by name +```powershell +PS C:\> Update-AzDedicatedHsm -Name hsm-n7wfxi -ResourceGroupName dedicatedhsm-rg-n359cz -Tag @{'key1' = '1'; 'key2' = 2; 'key3' = 3} + +Name Provisioning State SKU Location +---- ------------------ --- -------- +hsm-n7wfxi Succeeded SafeNet Luna Network HSM A790 eastus +``` + +This command updates the parameter tag of the Dedicated HSM by name + +### Example 2: Update the parameter tag of the Dedicated HSM by object +```powershell +PS C:\> $hsm = Get-AzDedicatedHsm -Name hsm-n7wfxi -ResourceGroupName dedicatedhsm-rg-n359cz +PS C:\> Update-AzDedicatedHsm -InputObject -Tag @{'key1' = '1'; 'key2' = 2; 'key3' = 3} + +Name Provisioning State SKU Location +---- ------------------ --- -------- +hsm-n7wfxi Succeeded SafeNet Luna Network HSM A790 eastus +``` + +This command updates the parameter tag of the Dedicated HSM by object + +## PARAMETERS + +### -AsJob +Run the command as a job + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Identity Parameter +To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.IDedicatedHsmIdentity +Parameter Sets: UpdateViaIdentityExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +Name of the dedicated HSM + +```yaml +Type: System.String +Parameter Sets: UpdateExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NoWait +Run the command asynchronously + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the Resource Group to which the server belongs. + +```yaml +Type: System.String +Parameter Sets: UpdateExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SubscriptionId +Subscription credentials which uniquely identify Microsoft Azure subscription. +The subscription ID forms part of the URI for every service call. + +```yaml +Type: System.String +Parameter Sets: UpdateExpanded +Aliases: + +Required: False +Position: Named +Default value: (Get-AzContext).Subscription.Id +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Tag +Resource tags + +```yaml +Type: System.Collections.Hashtable +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.IDedicatedHsmIdentity + +## OUTPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsm + +## NOTES + +ALIASES + +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + + +INPUTOBJECT : Identity Parameter + - `[Id ]`: Resource identity path + - `[Name ]`: Name of the dedicated Hsm + - `[ResourceGroupName ]`: The name of the Resource Group to which the resource belongs. + - `[SubscriptionId ]`: Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. + +## RELATED LINKS + diff --git a/src/DedicatedHsm/how-to.md b/src/DedicatedHsm/how-to.md new file mode 100644 index 000000000000..65c0a6093e29 --- /dev/null +++ b/src/DedicatedHsm/how-to.md @@ -0,0 +1,58 @@ +# How-To +This document describes how to develop for `Az.DedicatedHsm`. + +## Building `Az.DedicatedHsm` +To build, run the `build-module.ps1` at the root of the module directory. This will generate the proxy script cmdlets that are the cmdlets being exported by this module. After the build completes, the proxy script cmdlets will be output to the `exports` folder. To read more about the proxy script cmdlets, look at the [readme.md](exports/readme.md) in the `exports` folder. + +## Creating custom cmdlets +To add cmdlets that were not generated by the REST specification, use the `custom` folder. This folder allows you to add handwritten `.ps1` and `.cs` files. Currently, we support using `.ps1` scripts as new cmdlets or as additional low-level variants (via `ParameterSet`), and `.cs` files as low-level (variants) cmdlets that the exported script cmdlets call. We do not support exporting any `.cs` (dll) cmdlets directly. To read more about custom cmdlets, look at the [readme.md](custom/readme.md) in the `custom` folder. + +## Generating documentation +To generate documentation, the process is now integrated into the `build-module.ps1` script. If you don't want to run this process as part of `build-module.ps1`, you can provide the `-NoDocs` switch. If you want to run documentation generation after the build process, you may still run the `generate-help.ps1` script. Overall, the process will look at the documentation comments in the generated and custom cmdlets and types, and create `.md` files into the `docs` folder. Additionally, this pulls in any examples from the `examples` folder and adds them to the generated help markdown documents. To read more about examples, look at the [readme.md](examples/readme.md) in the `examples` folder. To read more about documentation, look at the [readme.md](docs/readme.md) in the `docs` folder. + +## Testing `Az.DedicatedHsm` +To test the cmdlets, we use [Pester](https://github.com/pester/Pester). Tests scripts (`.ps1`) should be added to the `test` folder. To execute the Pester tests, run the `test-module.ps1` script. This will run all tests in `playback` mode within the `test` folder. To read more about testing cmdlets, look at the [readme.md](examples/readme.md) in the `examples` folder. + +## Packing `Az.DedicatedHsm` +To pack `Az.DedicatedHsm` for distribution, run the `pack-module.ps1` script. This will take the contents of multiple directories and certain root-folder files to create a `.nupkg`. The structure of the `.nupkg` is created so it can be loaded part of a [PSRepository](https://docs.microsoft.com/en-us/powershell/module/powershellget/register-psrepository). Additionally, this package is in a format for distribution to the [PSGallery](https://www.powershellgallery.com/). For signing an Azure module, please contact the [Azure PowerShell](https://github.com/Azure/azure-powershell) team. + +## Module Script Details +There are multiple scripts created for performing different actions for developing `Az.DedicatedHsm`. +- `build-module.ps1` + - Builds the module DLL (`./bin/Az.DedicatedHsm.private.dll`), creates the exported cmdlets and documentation, generates custom cmdlet test stubs and exported cmdlet example stubs, and updates `./Az.DedicatedHsm.psd1` with Azure profile information. + - **Parameters**: [`Switch` parameters] + - `-Run`: After building, creates an isolated PowerShell session and loads `Az.DedicatedHsm`. + - `-Test`: After building, runs the `Pester` tests defined in the `test` folder. + - `-Docs`: After building, generates the Markdown documents for the modules into the `docs` folder. + - `-Pack`: After building, packages the module into a `.nupkg`. + - `-Code`: After building, opens a VSCode window with the module's directory and runs (see `-Run`) the module. + - `-Release`: Builds the module in `Release` configuration (as opposed to `Debug` configuration). + - `-NoDocs`: Supresses writing the documentation markdown files as part of the cmdlet exporting process. + - `-Debugger`: Used when attaching the debugger in Visual Studio to the PowerShell session, and running the build process without recompiling the DLL. This suppresses running the script as an isolated process. +- `run-module.ps1` + - Creates an isolated PowerShell session and loads `Az.DedicatedHsm` into the session. + - Same as `-Run` in `build-module.ps1`. + - **Parameters**: [`Switch` parameters] + - `-Code`: Opens a VSCode window with the module's directory. + - Same as `-Code` in `build-module.ps1`. +- `generate-help.ps1` + - Generates the Markdown documents for the modules into the `docs` folder. + - Same as `-Docs` in `build-module.ps1`. +- `test-module.ps1` + - Runs the `Pester` tests defined in the `test` folder. + - Same as `-Test` in `build-module.ps1`. +- `pack-module.ps1` + - Packages the module into a `.nupkg` for distribution. + - Same as `-Pack` in `build-module.ps1`. +- `generate-help.ps1` + - Generates the Markdown documents for the modules into the `docs` folder. + - Same as `-Docs` in `build-module.ps1`. + - This process is now integrated into `build-module.ps1` automatically. To disable, use `-NoDocs` when running `build-module.ps1`. +- `export-surface.ps1` + - Generates Markdown documents for both the cmdlet surface and the model (class) surface of the module. + - These files are placed into the `resources` folder. + - Used for investigating the surface of your module. These are *not* documentation for distribution. +- `check-dependencies.ps1` + - Used in `run-module.ps1` and `test-module.ps1` to verify dependent modules are available to run those tasks. + - It will download local (within the module's directory structure) versions of those modules as needed. + - This script *does not* need to be ran by-hand. \ No newline at end of file diff --git a/src/DedicatedHsm/internal/Az.DedicatedHsm.internal.psm1 b/src/DedicatedHsm/internal/Az.DedicatedHsm.internal.psm1 new file mode 100644 index 000000000000..f9e8345fad38 --- /dev/null +++ b/src/DedicatedHsm/internal/Az.DedicatedHsm.internal.psm1 @@ -0,0 +1,38 @@ +# region Generated + # Load the private module dll + $null = Import-Module -PassThru -Name (Join-Path $PSScriptRoot '..\bin\Az.DedicatedHsm.private.dll') + + # Get the private module's instance + $instance = [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Module]::Instance + + # Export nothing to clear implicit exports + Export-ModuleMember + + # Export proxy cmdlet scripts + $exportsPath = $PSScriptRoot + $directories = Get-ChildItem -Directory -Path $exportsPath + $profileDirectory = $null + if($instance.ProfileName) { + if(($directories | ForEach-Object { $_.Name }) -contains $instance.ProfileName) { + $profileDirectory = $directories | Where-Object { $_.Name -eq $instance.ProfileName } + } else { + # Don't export anything if the profile doesn't exist for the module + $exportsPath = $null + Write-Warning "Selected Azure profile '$($instance.ProfileName)' does not exist for module '$($instance.Name)'. No cmdlets were loaded." + } + } elseif(($directories | Measure-Object).Count -gt 0) { + # Load the last folder if no profile is selected + $profileDirectory = $directories | Select-Object -Last 1 + } + + if($profileDirectory) { + Write-Information "Loaded Azure profile '$($profileDirectory.Name)' for module '$($instance.Name)'" + $exportsPath = $profileDirectory.FullName + } + + if($exportsPath) { + Get-ChildItem -Path $exportsPath -Recurse -Include '*.ps1' -File | ForEach-Object { . $_.FullName } + $cmdletNames = Get-ScriptCmdlet -ScriptFolder $exportsPath + Export-ModuleMember -Function $cmdletNames -Alias (Get-ScriptCmdlet -ScriptFolder $exportsPath -AsAlias) + } +# endregion diff --git a/src/DedicatedHsm/internal/Get-AzDedicatedHsmOperation.ps1 b/src/DedicatedHsm/internal/Get-AzDedicatedHsmOperation.ps1 new file mode 100644 index 000000000000..1c22901514fe --- /dev/null +++ b/src/DedicatedHsm/internal/Get-AzDedicatedHsmOperation.ps1 @@ -0,0 +1,121 @@ + +# ---------------------------------------------------------------------------------- +# +# 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 +Get a list of Dedicated HSM operations. +.Description +Get a list of Dedicated HSM operations. +.Example +PS C:\> {{ Add code here }} + +{{ Add output here }} +.Example +PS C:\> {{ Add code here }} + +{{ Add output here }} + +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperation +.Link +https://docs.microsoft.com/en-us/powershell/module/az.dedicatedhsm/get-azdedicatedhsmoperation +#> +function Get-AzDedicatedHsmOperation { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperation])] +[CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] +param( + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + List = 'Az.DedicatedHsm.private\Get-AzDedicatedHsmOperation_List'; + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} diff --git a/src/DedicatedHsm/internal/ProxyCmdletDefinitions.ps1 b/src/DedicatedHsm/internal/ProxyCmdletDefinitions.ps1 new file mode 100644 index 000000000000..1c22901514fe --- /dev/null +++ b/src/DedicatedHsm/internal/ProxyCmdletDefinitions.ps1 @@ -0,0 +1,121 @@ + +# ---------------------------------------------------------------------------------- +# +# 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 +Get a list of Dedicated HSM operations. +.Description +Get a list of Dedicated HSM operations. +.Example +PS C:\> {{ Add code here }} + +{{ Add output here }} +.Example +PS C:\> {{ Add code here }} + +{{ Add output here }} + +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperation +.Link +https://docs.microsoft.com/en-us/powershell/module/az.dedicatedhsm/get-azdedicatedhsmoperation +#> +function Get-AzDedicatedHsmOperation { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Models.Api20181031.IDedicatedHsmOperation])] +[CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] +param( + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.DedicatedHsm.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + List = 'Az.DedicatedHsm.private\Get-AzDedicatedHsmOperation_List'; + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} diff --git a/src/DedicatedHsm/internal/readme.md b/src/DedicatedHsm/internal/readme.md new file mode 100644 index 000000000000..3e8c8818da6d --- /dev/null +++ b/src/DedicatedHsm/internal/readme.md @@ -0,0 +1,14 @@ +# Internal +This directory contains a module to handle *internal only* cmdlets. Cmdlets that you **hide** in configuration are created here. For more information on hiding, see [cmdlet hiding](https://github.com/Azure/autorest/blob/master/docs/powershell/options.md#cmdlet-hiding-exportation-suppression). The cmdlets in this directory are generated at **build-time**. Do not put any custom code, files, cmdlets, etc. into this directory. Please use `..\custom` for all custom implementation. + +## Info +- Modifiable: no +- Generated: all +- Committed: no +- Packaged: yes + +## Details +The `Az.DedicatedHsm.internal.psm1` file is generated to this folder. This module file handles the hidden cmdlets. These cmdlets will not be exported by `Az.DedicatedHsm`. Instead, this sub-module is imported by the `..\custom\Az.DedicatedHsm.custom.psm1` module, allowing you to use hidden cmdlets in your custom, exposed cmdlets. To call these cmdlets in your custom scripts, simply use [module-qualified calls](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_command_precedence?view=powershell-6#qualified-names). For example, `Az.DedicatedHsm.internal\Get-Example` would call an internal cmdlet named `Get-Example`. + +## Purpose +This allows you to include REST specifications for services that you *do not wish to expose from your module*, but simply want to call within custom cmdlets. For example, if you want to make a custom cmdlet that uses `Storage` services, you could include a simplified `Storage` REST specification that has only the operations you need. When you run the generator and build this module, note the generated `Storage` cmdlets. Then, in your readme configuration, use [cmdlet hiding](https://github.com/Azure/autorest/blob/master/docs/powershell/options.md#cmdlet-hiding-exportation-suppression) on the `Storage` cmdlets and they will *only be exposed to the custom cmdlets* you want to write, and not be exported as part of `Az.DedicatedHsm`. \ No newline at end of file diff --git a/src/DedicatedHsm/pack-module.ps1 b/src/DedicatedHsm/pack-module.ps1 new file mode 100644 index 000000000000..c22fad33d87b --- /dev/null +++ b/src/DedicatedHsm/pack-module.ps1 @@ -0,0 +1,16 @@ +# ---------------------------------------------------------------------------------- +# +# 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. +# ---------------------------------------------------------------------------------- +Write-Host -ForegroundColor Green 'Packing module...' +dotnet pack $PSScriptRoot --no-build /nologo +Write-Host -ForegroundColor Green '-------------Done-------------' \ No newline at end of file diff --git a/src/DedicatedHsm/readme.md b/src/DedicatedHsm/readme.md new file mode 100644 index 000000000000..6c32f5b3d5ea --- /dev/null +++ b/src/DedicatedHsm/readme.md @@ -0,0 +1,111 @@ + +# Az.DedicatedHsm +This directory contains the PowerShell module for the DedicatedHsm service. + +--- +## Status +[![Az.DedicatedHsm](https://img.shields.io/powershellgallery/v/Az.DedicatedHsm.svg?style=flat-square&label=Az.DedicatedHsm "Az.DedicatedHsm")](https://www.powershellgallery.com/packages/Az.DedicatedHsm/) + +## Info +- Modifiable: yes +- Generated: all +- Committed: yes +- Packaged: yes + +--- +## Detail +This module was primarily generated via [AutoRest](https://github.com/Azure/autorest) using the [PowerShell](https://github.com/Azure/autorest.powershell) extension. + +## Module Requirements +- [Az.Accounts module](https://www.powershellgallery.com/packages/Az.Accounts/), version 1.7.4 or greater + +## Authentication +AutoRest does not generate authentication code for the module. Authentication is handled via Az.Accounts by altering the HTTP payload before it is sent. + +## Development +For information on how to develop for `Az.DedicatedHsm`, see [how-to.md](how-to.md). + + +--- +## Generation Requirements +Use of the beta version of `autorest.powershell` generator requires the following: +- [NodeJS LTS](https://nodejs.org) (10.15.x LTS preferred) + - **Note**: It *will not work* with Node < 10.x. Using 11.x builds may cause issues as they may introduce instability or breaking changes. +> If you want an easy way to install and update Node, [NVS - Node Version Switcher](../nodejs/installing-via-nvs.md) or [NVM - Node Version Manager](../nodejs/installing-via-nvm.md) is recommended. +- [AutoRest](https://aka.ms/autorest) v3 beta
`npm install -g autorest@autorest`
  +- PowerShell 6.0 or greater + - If you don't have it installed, you can use the cross-platform npm package
`npm install -g pwsh`
  +- .NET Core SDK 2.0 or greater + - If you don't have it installed, you can use the cross-platform npm package
`npm install -g dotnet-sdk-2.2`
  + +## Run Generation +In this directory, run AutoRest: +> `autorest-beta` + +--- +### AutoRest Configuration +> see https://aka.ms/autorest + +``` yaml +require: + - $(this-folder)/../readme.azure.noprofile.md +branch: 3dddb7090671b48ce3f569557ed8a1c6ba36c2a7 +input-file: + - $(repo)/specification/hardwaresecuritymodules/resource-manager/Microsoft.HardwareSecurityModules/preview/2018-10-31-preview/dedicatedhsm.json + +# For new RP, the version is 0.1.0 +module-version: 0.1.0 +# Normally, title is the service name +title: DedicatedHsm +subject-prefix: $(service-name) + +# If there are post APIs for some kinds of actions in the RP, you may need to +# uncomment following line to support viaIdentity for these post APIs +# identity-correction-for-post: true + +directive: + # Following is two common directive which are normally required in all the RPs + # 1. Remove the unexpanded parameter set + # 2. For New-* cmdlets, ViaIdentity is not required, so CreateViaIdentityExpanded is removed as well + - where: + variant: ^Create$|^CreateViaIdentity$|^CreateViaIdentityExpanded$|^Update$|^UpdateViaIdentity$ + remove: true + # Remove the set-* cmdlet + - where: + verb: Set + remove: true + + # Circular reference in `Error` model + # IMPORTANT!! this module cannot be generated by m4 because it doesn't support no-inline + - no-inline: + - Error + + # Rename parameters to follow design guideline + - where: + parameter-name: SkuName + set: + parameter-name: Sku + - where: + parameter-name: NetworkProfileNetworkInterface + set: + parameter-name: NetworkInterface + + # Service team asked us to use 2018-10-31, should be the same as 2018-10-31-preview, but it's not ready on swagger yet + - from: swagger-document + where: $.info + transform: $['version'] = '2018-10-31' + + # table format + - where: + model-name: DedicatedHsm + set: + format-table: + properties: + - Name + - ProvisioningState + - SkuName + - Location + labels: + ProvisioningState: Provisioning State + SkuName: SKU +``` diff --git a/src/DedicatedHsm/run-module.ps1 b/src/DedicatedHsm/run-module.ps1 new file mode 100644 index 000000000000..3417bb9425b2 --- /dev/null +++ b/src/DedicatedHsm/run-module.ps1 @@ -0,0 +1,59 @@ +# ---------------------------------------------------------------------------------- +# +# 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. +# ---------------------------------------------------------------------------------- +param([switch]$Isolated, [switch]$Code) +$ErrorActionPreference = 'Stop' + +if(-not $Isolated) { + Write-Host -ForegroundColor Green 'Creating isolated process...' + $pwsh = [System.Diagnostics.Process]::GetCurrentProcess().Path + & "$pwsh" -NoExit -NoLogo -NoProfile -File $MyInvocation.MyCommand.Path @PSBoundParameters -Isolated + return +} + +$isAzure = $true +if($isAzure) { + . (Join-Path $PSScriptRoot 'check-dependencies.ps1') -Isolated -Accounts +} + +$localModulesPath = Join-Path $PSScriptRoot 'generated\modules' +if(Test-Path -Path $localModulesPath) { + $env:PSModulePath = "$localModulesPath$([IO.Path]::PathSeparator)$env:PSModulePath" +} + +$modulePsd1 = Get-Item -Path (Join-Path $PSScriptRoot './Az.DedicatedHsm.psd1') +$modulePath = $modulePsd1.FullName +$moduleName = $modulePsd1.BaseName + +function Prompt { + Write-Host -NoNewline -ForegroundColor Green "PS $(Get-Location)" + Write-Host -NoNewline -ForegroundColor Gray ' [' + Write-Host -NoNewline -ForegroundColor White -BackgroundColor DarkCyan $moduleName + ']> ' +} + +# where we would find the launch.json file +$vscodeDirectory = New-Item -ItemType Directory -Force -Path (Join-Path $PSScriptRoot '.vscode') +$launchJson = Join-Path $vscodeDirectory 'launch.json' + +# if there is a launch.json file, let's just assume -Code, and update the file +if(($Code) -or (test-Path $launchJson) ) { + $launchContent = '{ "version": "0.2.0", "configurations":[{ "name":"Attach to PowerShell", "type":"coreclr", "request":"attach", "processId":"' + ([System.Diagnostics.Process]::GetCurrentProcess().Id) + '", "justMyCode":false }] }' + Set-Content -Path $launchJson -Value $launchContent + if($Code) { + # only launch vscode if they say -code + code $PSScriptRoot + } +} + +Import-Module -Name $modulePath \ No newline at end of file diff --git a/src/DedicatedHsm/test-module.ps1 b/src/DedicatedHsm/test-module.ps1 new file mode 100644 index 000000000000..535de7557972 --- /dev/null +++ b/src/DedicatedHsm/test-module.ps1 @@ -0,0 +1,68 @@ +# ---------------------------------------------------------------------------------- +# +# 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. +# ---------------------------------------------------------------------------------- +param([switch]$Isolated, [switch]$Live, [switch]$Record, [switch]$Playback) +$ErrorActionPreference = 'Stop' + +if(-not $Isolated) { + Write-Host -ForegroundColor Green 'Creating isolated process...' + $pwsh = [System.Diagnostics.Process]::GetCurrentProcess().Path + & "$pwsh" -NonInteractive -NoLogo -NoProfile -File $MyInvocation.MyCommand.Path @PSBoundParameters -Isolated + return +} + +$ProgressPreference = 'SilentlyContinue' +$baseName = $PSScriptRoot.BaseName +$requireResourceModule = (($baseName -ne "Resources") -and ($Record.IsPresent -or $Live.IsPresent)) +. (Join-Path $PSScriptRoot 'check-dependencies.ps1') -Isolated -Accounts:$false -Pester -Resources:$requireResourceModule +. ("$PSScriptRoot\test\utils.ps1") + +if ($requireResourceModule) { + $resourceModulePSD = Get-Item -Path (Join-Path $HOME '.PSSharedModules\Resources\Az.Resources.TestSupport.psd1') + Import-Module -Name $resourceModulePSD.FullName +} + +$localModulesPath = Join-Path $PSScriptRoot 'generated\modules' +if(Test-Path -Path $localModulesPath) { + $env:PSModulePath = "$localModulesPath$([IO.Path]::PathSeparator)$env:PSModulePath" +} + +$modulePsd1 = Get-Item -Path (Join-Path $PSScriptRoot './Az.DedicatedHsm.psd1') +$modulePath = $modulePsd1.FullName +$moduleName = $modulePsd1.BaseName + +Import-Module -Name Pester +Import-Module -Name $modulePath + +$TestMode = 'playback' +if($Live) { + $TestMode = 'live' +} +if($Record) { + $TestMode = 'record' +} +try { + if ($TestMode -ne 'playback') { + setupEnv + } + $testFolder = Join-Path $PSScriptRoot 'test' + Invoke-Pester -Script @{ Path = $testFolder } -EnableExit -OutputFile (Join-Path $testFolder "$moduleName-TestResults.xml") +} +Finally +{ + if ($TestMode -ne 'playback') { + cleanupEnv + } +} + +Write-Host -ForegroundColor Green '-------------Done-------------' \ No newline at end of file diff --git a/src/DedicatedHsm/test/Az.DedicatedHsm-TestResults.xml b/src/DedicatedHsm/test/Az.DedicatedHsm-TestResults.xml new file mode 100644 index 000000000000..58d7096fdbc9 --- /dev/null +++ b/src/DedicatedHsm/test/Az.DedicatedHsm-TestResults.xml @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/DedicatedHsm/test/Get-AzDedicatedHsm.Recording.json b/src/DedicatedHsm/test/Get-AzDedicatedHsm.Recording.json new file mode 100644 index 000000000000..3569b52eaeb7 --- /dev/null +++ b/src/DedicatedHsm/test/Get-AzDedicatedHsm.Recording.json @@ -0,0 +1,254 @@ +{ + "Get-AzDedicatedHsm+[NoContext]+List1+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs?api-version=2018-10-31+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1" ], + "x-ms-client-request-id": [ "98afe677-eb69-4b7e-8eb2-ec8de817abf6" ], + "CommandName": [ "Get-AzDedicatedHsm" ], + "FullCommandName": [ "Get-AzDedicatedHsm_List1" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "0a430873-9c9f-4283-8477-0c5cc18c14e6" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], + "x-ms-correlation-request-id": [ "8fdd61ad-aef8-46de-95c7-c6cd55a9dfc8" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200921T091709Z:8fdd61ad-aef8-46de-95c7-c6cd55a9dfc8" ], + "Date": [ "Mon, 21 Sep 2020 09:17:08 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1749" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"sku\":{\"name\":\"SafeNet Luna Network HSM A790\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-n7wfxi\",\"name\":\"hsm-n7wfxi\",\"type\":\"Microsoft.HardwareSecurityModules/dedicatedHSMs\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"networkProfile\":{\"subnet\":{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.Network/virtualNetworks/vnetq30la9/subnets/hsmsubnet\"},\"networkInterfaces\":[{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.Network/networkInterfaces/hsm-n7wfxi_HSMnic\",\"privateIpAddress\":\"10.2.1.120\"}]},\"provisioningState\":\"Provisioning\",\"statusMessage\":\"Resource creation in progress. Configuring the device...\",\"stampId\":\"stamp1\"}},{\"sku\":{\"name\":\"SafeNet Luna Network HSM A790\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/yemingdhsm/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/yeminghsm\",\"name\":\"yeminghsm\",\"type\":\"Microsoft.HardwareSecurityModules/dedicatedHSMs\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"networkProfile\":{\"subnet\":{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/yemingdhsm/providers/Microsoft.Network/virtualNetworks/myHSM-vnet/subnets/hsmsubnet\"},\"networkInterfaces\":[{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/yemingdhsm/providers/Microsoft.Network/networkInterfaces/yeminghsm_HSMnic\",\"privateIpAddress\":\"10.2.1.120\"}]},\"provisioningState\":\"Succeeded\",\"statusMessage\":\"The Dedicated HSM device is provisioned successfully and ready to use.\",\"stampId\":\"stamp1\"}}]}" + } + }, + "Get-AzDedicatedHsm+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-n7wfxi?api-version=2018-10-31+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-n7wfxi?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "2" ], + "x-ms-client-request-id": [ "f21a62b8-7141-469e-999b-f9521efaaf6a" ], + "CommandName": [ "Get-AzDedicatedHsm" ], + "FullCommandName": [ "Get-AzDedicatedHsm_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "973e9ed8-44f2-4d8d-91c0-785da541eac8" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], + "x-ms-correlation-request-id": [ "c51b61ee-05e0-4984-b6cd-2f2d259df3bf" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200921T091709Z:c51b61ee-05e0-4984-b6cd-2f2d259df3bf" ], + "Date": [ "Mon, 21 Sep 2020 09:17:08 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "882" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"sku\":{\"name\":\"SafeNet Luna Network HSM A790\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-n7wfxi\",\"name\":\"hsm-n7wfxi\",\"type\":\"Microsoft.HardwareSecurityModules/dedicatedHSMs\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"networkProfile\":{\"subnet\":{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.Network/virtualNetworks/vnetq30la9/subnets/hsmsubnet\"},\"networkInterfaces\":[{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.Network/networkInterfaces/hsm-n7wfxi_HSMnic\",\"privateIpAddress\":\"10.2.1.120\"}]},\"provisioningState\":\"Provisioning\",\"statusMessage\":\"Resource creation in progress. Configuring the device...\",\"stampId\":\"stamp1\"}}" + } + }, + "Get-AzDedicatedHsm+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs?api-version=2018-10-31+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "3" ], + "x-ms-client-request-id": [ "39491957-748b-4cef-9700-2ec498145890" ], + "CommandName": [ "Get-AzDedicatedHsm" ], + "FullCommandName": [ "Get-AzDedicatedHsm_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "5ceeef19-7640-4c99-b2d6-e5530b980f70" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], + "x-ms-correlation-request-id": [ "5cd3bda7-b8cd-477b-a9eb-c04d4e90bf26" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200921T091710Z:5cd3bda7-b8cd-477b-a9eb-c04d4e90bf26" ], + "Date": [ "Mon, 21 Sep 2020 09:17:09 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "894" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"sku\":{\"name\":\"SafeNet Luna Network HSM A790\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-n7wfxi\",\"name\":\"hsm-n7wfxi\",\"type\":\"Microsoft.HardwareSecurityModules/dedicatedHSMs\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"networkProfile\":{\"subnet\":{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.Network/virtualNetworks/vnetq30la9/subnets/hsmsubnet\"},\"networkInterfaces\":[{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.Network/networkInterfaces/hsm-n7wfxi_HSMnic\",\"privateIpAddress\":\"10.2.1.120\"}]},\"provisioningState\":\"Provisioning\",\"statusMessage\":\"Resource creation in progress. Configuring the device...\",\"stampId\":\"stamp1\"}}]}" + } + }, + "Get-AzDedicatedHsm+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-n7wfxi?api-version=2018-10-31+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-n7wfxi?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "4" ], + "x-ms-client-request-id": [ "a873afc7-5146-4ed8-af7d-c6f9d4946e3b" ], + "CommandName": [ "Get-AzDedicatedHsm" ], + "FullCommandName": [ "Get-AzDedicatedHsm_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "5ae12302-5f36-4a65-851e-55f6192ad7b5" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], + "x-ms-correlation-request-id": [ "020accae-74aa-4507-878c-b72c3204dbaf" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200921T091710Z:020accae-74aa-4507-878c-b72c3204dbaf" ], + "Date": [ "Mon, 21 Sep 2020 09:17:09 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "882" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"sku\":{\"name\":\"SafeNet Luna Network HSM A790\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-n7wfxi\",\"name\":\"hsm-n7wfxi\",\"type\":\"Microsoft.HardwareSecurityModules/dedicatedHSMs\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"networkProfile\":{\"subnet\":{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.Network/virtualNetworks/vnetq30la9/subnets/hsmsubnet\"},\"networkInterfaces\":[{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.Network/networkInterfaces/hsm-n7wfxi_HSMnic\",\"privateIpAddress\":\"10.2.1.120\"}]},\"provisioningState\":\"Provisioning\",\"statusMessage\":\"Resource creation in progress. Configuring the device...\",\"stampId\":\"stamp1\"}}" + } + }, + "Get-AzDedicatedHsm+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-n7wfxi?api-version=2018-10-31+2": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-n7wfxi?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "5" ], + "x-ms-client-request-id": [ "2ccd5c52-64b3-47f8-9a4b-2f58543955fe" ], + "CommandName": [ "Get-AzDedicatedHsm" ], + "FullCommandName": [ "Get-AzDedicatedHsm_GetViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "31f80559-ef8d-412a-abcd-d5bb325093ab" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], + "x-ms-correlation-request-id": [ "42f94803-5f55-4e87-bc16-e289d0ba6b44" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200921T091711Z:42f94803-5f55-4e87-bc16-e289d0ba6b44" ], + "Date": [ "Mon, 21 Sep 2020 09:17:10 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "882" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"sku\":{\"name\":\"SafeNet Luna Network HSM A790\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-n7wfxi\",\"name\":\"hsm-n7wfxi\",\"type\":\"Microsoft.HardwareSecurityModules/dedicatedHSMs\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"networkProfile\":{\"subnet\":{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.Network/virtualNetworks/vnetq30la9/subnets/hsmsubnet\"},\"networkInterfaces\":[{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.Network/networkInterfaces/hsm-n7wfxi_HSMnic\",\"privateIpAddress\":\"10.2.1.120\"}]},\"provisioningState\":\"Provisioning\",\"statusMessage\":\"Resource creation in progress. Configuring the device...\",\"stampId\":\"stamp1\"}}" + } + }, + "Get-AzDedicatedHsm+[NoContext]+[NoScenario]+$DELETE+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-n7wfxi?api-version=2018-10-31+3": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-n7wfxi?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "6" ], + "x-ms-client-request-id": [ "a7111c20-43d8-4556-b082-eb9e128bf1e2" ], + "CommandName": [ "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 400, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "1b0b28b1-7dd6-46e5-af21-25658edf31fd" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], + "x-ms-correlation-request-id": [ "ffb59820-5044-4c6a-8765-ee03ebc3d73e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200921T091711Z:ffb59820-5044-4c6a-8765-ee03ebc3d73e" ], + "Date": [ "Mon, 21 Sep 2020 09:17:10 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "135" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"error\":{\"code\":\"BadRequest\",\"message\":\"The dedicatedhsms resource delete is only allowed if ProvisioningState is Succeeded/Failed.\"}}" + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/test/Get-AzDedicatedHsm.Tests.ps1 b/src/DedicatedHsm/test/Get-AzDedicatedHsm.Tests.ps1 new file mode 100644 index 000000000000..811ad75c9287 --- /dev/null +++ b/src/DedicatedHsm/test/Get-AzDedicatedHsm.Tests.ps1 @@ -0,0 +1,35 @@ +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' +} +. ($loadEnvPath) +$TestRecordingFile = Join-Path $PSScriptRoot 'Get-AzDedicatedHsm.Recording.json' +$currentPath = $PSScriptRoot +while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent +} +. ($mockingPath | Select-Object -First 1).FullName + +Describe 'Get-AzDedicatedHsm' { + It 'List1' { + $hsmList = Get-AzDedicatedHsm + $hsmList.Count | Should -BeGreaterOrEqual 1 + } + + It 'Get' { + $hsm = Get-AzDedicatedHsm -Name $env.dedicatedHsmName01 -ResourceGroupName $env.resourceGroup + $hsm.Name | Should -Be $env.dedicatedHsmName01 + } + + It 'List' { + $hsmList = Get-AzDedicatedHsm -ResourceGroupName $env.resourceGroup + $hsmList.Count | Should -BeGreaterOrEqual 1 + } + + It 'GetViaIdentity' { + $hsm = Get-AzDedicatedHsm -Name $env.dedicatedHsmName01 -ResourceGroupName $env.resourceGroup + $hsm = Get-AzDedicatedHsm -InputObject $hsm + $hsm.Name | Should -Be $env.dedicatedHsmName01 + } +} diff --git a/src/DedicatedHsm/test/New-AzDedicatedHsm.Recording.json b/src/DedicatedHsm/test/New-AzDedicatedHsm.Recording.json new file mode 100644 index 000000000000..2e312938add6 --- /dev/null +++ b/src/DedicatedHsm/test/New-AzDedicatedHsm.Recording.json @@ -0,0 +1,39 @@ +{ + "New-AzDedicatedHsm+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-qodygz?api-version=2018-10-31+1": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-qodygz?api-version=2018-10-31", + "Content": "{\r\n \"sku\": {\r\n \"name\": \"SafeNet Luna Network HSM A790\"\r\n },\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"networkProfile\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.Network/virtualNetworks/vnetq30la9/subnets/hsmsubnet\"\r\n },\r\n \"networkInterfaces\": [\r\n {\r\n \"privateIpAddress\": \"10.2.1.120\"\r\n }\r\n ]\r\n },\r\n \"stampId\": \"stamp1\"\r\n }\r\n}", + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "488" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "69e688c0-0e2b-4bb7-8c6f-956e2c3d734e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], + "x-ms-correlation-request-id": [ "5edda270-c49a-49c6-ab72-0d663ace4111" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T020510Z:5edda270-c49a-49c6-ab72-0d663ace4111" ], + "Date": [ "Tue, 22 Sep 2020 02:05:09 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "736" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"sku\":{\"name\":\"SafeNet Luna Network HSM A790\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-qodygz\",\"name\":\"hsm-qodygz\",\"type\":\"Microsoft.HardwareSecurityModules/dedicatedHSMs\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"networkProfile\":{\"subnet\":{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.Network/virtualNetworks/vnetq30la9/subnets/hsmsubnet\"},\"networkInterfaces\":[{\"privateIpAddress\":\"10.2.1.120\"}]},\"provisioningState\":\"CheckingQuota\",\"statusMessage\":\"Resource creation in progress. Validating subscription device quota...\",\"stampId\":\"stamp1\"}}" + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/test/New-AzDedicatedHsm.Tests.ps1 b/src/DedicatedHsm/test/New-AzDedicatedHsm.Tests.ps1 new file mode 100644 index 000000000000..f4de0f312981 --- /dev/null +++ b/src/DedicatedHsm/test/New-AzDedicatedHsm.Tests.ps1 @@ -0,0 +1,19 @@ +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' +} +. ($loadEnvPath) +$TestRecordingFile = Join-Path $PSScriptRoot 'New-AzDedicatedHsm.Recording.json' +$currentPath = $PSScriptRoot +while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent +} +. ($mockingPath | Select-Object -First 1).FullName + +Describe 'New-AzDedicatedHsm' { + It 'CreateExpanded' { + $hsm = New-AzDedicatedHsm -Name $env.dedicatedHsmName02 -ResourceGroupName $env.resourceGroup -Location $env.location -Sku "SafeNet Luna Network HSM A790" -StampId stamp1 -SubnetId $env.vnetSubnetId -NetworkInterface @{PrivateIPAddress = '10.2.1.120' } + $hsm.ProvisioningState | Should -Be 'CheckingQuota' + } +} diff --git a/src/DedicatedHsm/test/Remove-AzDedicatedHsm.Recording.json b/src/DedicatedHsm/test/Remove-AzDedicatedHsm.Recording.json new file mode 100644 index 000000000000..9eda2049c362 --- /dev/null +++ b/src/DedicatedHsm/test/Remove-AzDedicatedHsm.Recording.json @@ -0,0 +1,4233 @@ +{ + "Remove-AzDedicatedHsm+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-qodygz?api-version=2018-10-31+1": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-qodygz?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1" ], + "x-ms-client-request-id": [ "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16" ], + "CommandName": [ "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "a68cf1b6-3410-4b5e-8159-14e389f9b49d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], + "x-ms-correlation-request-id": [ "6b13b9ed-e9d2-4fb0-9d7f-4eb9c020fe9c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T025640Z:6b13b9ed-e9d2-4fb0-9d7f-4eb9c020fe9c" ], + "Date": [ "Tue, 22 Sep 2020 02:56:40 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31+2": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1", "2" ], + "x-ms-client-request-id": [ "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "f9a8cf1c-97ad-466b-a638-ed0578b499c0" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], + "x-ms-correlation-request-id": [ "07407b68-caa8-44ba-b8ea-19e4233cfa26" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T025646Z:07407b68-caa8-44ba-b8ea-19e4233cfa26" ], + "Date": [ "Tue, 22 Sep 2020 02:56:45 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1", "2", "3" ], + "x-ms-client-request-id": [ "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "2cfd27a2-4617-47a2-860e-f1d64d8f1095" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], + "x-ms-correlation-request-id": [ "05461a76-8967-4f07-818c-2c4c54ce204f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T025651Z:05461a76-8967-4f07-818c-2c4c54ce204f" ], + "Date": [ "Tue, 22 Sep 2020 02:56:51 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31+4": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1", "2", "3", "4" ], + "x-ms-client-request-id": [ "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "f9c9184c-4cb6-4c4e-8f2d-295061ca6692" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], + "x-ms-correlation-request-id": [ "4bb77ecc-4a2a-4d77-b283-6607b882155c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T025657Z:4bb77ecc-4a2a-4d77-b283-6607b882155c" ], + "Date": [ "Tue, 22 Sep 2020 02:56:56 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31+5": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1", "2", "3", "4", "5" ], + "x-ms-client-request-id": [ "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "0fc4d6b4-4e2e-45c0-8d40-c2171f689b4b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], + "x-ms-correlation-request-id": [ "0f70c3d7-f7ee-436a-94d6-997799dd66d2" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T025702Z:0f70c3d7-f7ee-436a-94d6-997799dd66d2" ], + "Date": [ "Tue, 22 Sep 2020 02:57:01 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31+6": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1", "2", "3", "4", "5", "6" ], + "x-ms-client-request-id": [ "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "e3d7b67a-587f-4788-a709-f6156c5350af" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], + "x-ms-correlation-request-id": [ "702f79ac-ac26-4d34-83c1-6046675082d8" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T025707Z:702f79ac-ac26-4d34-83c1-6046675082d8" ], + "Date": [ "Tue, 22 Sep 2020 02:57:07 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31+7": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1", "2", "3", "4", "5", "6", "7" ], + "x-ms-client-request-id": [ "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "22c722da-fd3d-4993-9c35-47a426044445" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11989" ], + "x-ms-correlation-request-id": [ "385e6e34-f083-4d8c-aaae-57783a5cd1db" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T025713Z:385e6e34-f083-4d8c-aaae-57783a5cd1db" ], + "Date": [ "Tue, 22 Sep 2020 02:57:12 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31+8": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1", "2", "3", "4", "5", "6", "7", "8" ], + "x-ms-client-request-id": [ "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "2cb128ff-cf17-47a5-9474-e40ff07932d4" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11988" ], + "x-ms-correlation-request-id": [ "5c70c208-8aa0-4dde-86cc-898259baad40" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T025718Z:5c70c208-8aa0-4dde-86cc-898259baad40" ], + "Date": [ "Tue, 22 Sep 2020 02:57:17 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31+9": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1", "2", "3", "4", "5", "6", "7", "8", "9" ], + "x-ms-client-request-id": [ "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "74a701f7-cf5f-475b-bb1f-8e1c790a554d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11987" ], + "x-ms-correlation-request-id": [ "143af5d0-dea5-4be7-a0bb-24101fafd66f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T025725Z:143af5d0-dea5-4be7-a0bb-24101fafd66f" ], + "Date": [ "Tue, 22 Sep 2020 02:57:24 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31+10": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "10" ], + "x-ms-client-request-id": [ "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "4d557c1f-6d22-44c4-a91a-605d16bfe25f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11986" ], + "x-ms-correlation-request-id": [ "362f146e-a949-478c-9e02-adbfe880c09e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T025732Z:362f146e-a949-478c-9e02-adbfe880c09e" ], + "Date": [ "Tue, 22 Sep 2020 02:57:31 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31+11": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11" ], + "x-ms-client-request-id": [ "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "ae63b545-da71-40af-96cd-eb8c34b60084" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11985" ], + "x-ms-correlation-request-id": [ "129864f4-d590-4c22-a0be-42886b847b54" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T025737Z:129864f4-d590-4c22-a0be-42886b847b54" ], + "Date": [ "Tue, 22 Sep 2020 02:57:36 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31+12": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12" ], + "x-ms-client-request-id": [ "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "ada49d20-e503-4968-a91d-d1fa8aa778a2" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11984" ], + "x-ms-correlation-request-id": [ "4617a998-3515-4d17-9f76-48f6acf11047" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T025743Z:4617a998-3515-4d17-9f76-48f6acf11047" ], + "Date": [ "Tue, 22 Sep 2020 02:57:43 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31+13": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13" ], + "x-ms-client-request-id": [ "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "e4ed21d7-5416-48f3-a3f7-3dfa7f8e5722" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11983" ], + "x-ms-correlation-request-id": [ "56b8a4aa-5e7f-4fe3-b635-415bc97c1c05" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T025748Z:56b8a4aa-5e7f-4fe3-b635-415bc97c1c05" ], + "Date": [ "Tue, 22 Sep 2020 02:57:48 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31+14": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14" ], + "x-ms-client-request-id": [ "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "78ed09e6-0085-47d5-89f9-f77f1f0f270b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11982" ], + "x-ms-correlation-request-id": [ "e6a5df40-df10-4546-90e3-36533faea7f3" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T025753Z:e6a5df40-df10-4546-90e3-36533faea7f3" ], + "Date": [ "Tue, 22 Sep 2020 02:57:53 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31+15": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15" ], + "x-ms-client-request-id": [ "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "4c44e64f-95dc-4a06-bb69-e95f98b4bfad" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11981" ], + "x-ms-correlation-request-id": [ "fa28c7ee-aaf9-4539-a169-7b3301e667ee" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T025759Z:fa28c7ee-aaf9-4539-a169-7b3301e667ee" ], + "Date": [ "Tue, 22 Sep 2020 02:57:58 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31+16": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16" ], + "x-ms-client-request-id": [ "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "5ef7eef1-42c9-4044-8962-447d22436bb6" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11980" ], + "x-ms-correlation-request-id": [ "d4935e74-8a25-444a-b107-810c800fbd68" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T025804Z:d4935e74-8a25-444a-b107-810c800fbd68" ], + "Date": [ "Tue, 22 Sep 2020 02:58:04 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31+17": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17" ], + "x-ms-client-request-id": [ "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "8eab4118-c14f-4e51-a1ec-7b02bfa2f82b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11979" ], + "x-ms-correlation-request-id": [ "52102ceb-ba14-40fe-bfb0-93c0cd8da46d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T025809Z:52102ceb-ba14-40fe-bfb0-93c0cd8da46d" ], + "Date": [ "Tue, 22 Sep 2020 02:58:09 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31+18": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18" ], + "x-ms-client-request-id": [ "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "fe6b4dfe-2f33-45c8-8e2d-b576cd11afc5" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11978" ], + "x-ms-correlation-request-id": [ "10eeec3a-2e5e-4bc4-ae7d-073283345f20" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T025816Z:10eeec3a-2e5e-4bc4-ae7d-073283345f20" ], + "Date": [ "Tue, 22 Sep 2020 02:58:16 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31+19": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19" ], + "x-ms-client-request-id": [ "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "58779e06-79bc-4cb8-a1a8-057e10d6f5d7" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11977" ], + "x-ms-correlation-request-id": [ "f5e41710-22a0-4a36-8905-2daec31ea10e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T025821Z:f5e41710-22a0-4a36-8905-2daec31ea10e" ], + "Date": [ "Tue, 22 Sep 2020 02:58:21 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31+20": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20" ], + "x-ms-client-request-id": [ "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "31a64cee-be70-458a-adcd-bb8b2b1991f3" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11976" ], + "x-ms-correlation-request-id": [ "b9ad367e-f645-4ff8-a598-280f3598813a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T025826Z:b9ad367e-f645-4ff8-a598-280f3598813a" ], + "Date": [ "Tue, 22 Sep 2020 02:58:26 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31+21": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21" ], + "x-ms-client-request-id": [ "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "37aa9295-cada-48b8-8d9a-a2a02c51a0d1" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11975" ], + "x-ms-correlation-request-id": [ "205f3414-cefb-446a-a29b-d6e4e8d7247d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T025832Z:205f3414-cefb-446a-a29b-d6e4e8d7247d" ], + "Date": [ "Tue, 22 Sep 2020 02:58:32 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31+22": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22" ], + "x-ms-client-request-id": [ "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "4843a87d-f66c-4d74-bba6-6f0e199d43c5" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11974" ], + "x-ms-correlation-request-id": [ "ac17ed1a-13fb-4f5a-86e2-8b546c190b51" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T025837Z:ac17ed1a-13fb-4f5a-86e2-8b546c190b51" ], + "Date": [ "Tue, 22 Sep 2020 02:58:37 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31+23": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23" ], + "x-ms-client-request-id": [ "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "5ba58809-68da-4449-81a7-74f6e797d6f6" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11973" ], + "x-ms-correlation-request-id": [ "b7c9a49b-9e12-4f1e-8f6e-38a97049557a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T025844Z:b7c9a49b-9e12-4f1e-8f6e-38a97049557a" ], + "Date": [ "Tue, 22 Sep 2020 02:58:43 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31+24": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24" ], + "x-ms-client-request-id": [ "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "0ff85694-b265-44d5-ba67-efa1ef67750c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11972" ], + "x-ms-correlation-request-id": [ "3d7ed28d-999b-4961-a7b6-2653ff9b5a99" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T025850Z:3d7ed28d-999b-4961-a7b6-2653ff9b5a99" ], + "Date": [ "Tue, 22 Sep 2020 02:58:50 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31+25": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25" ], + "x-ms-client-request-id": [ "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "997e0c72-da8a-42c6-a79d-d8175ed6c39d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11971" ], + "x-ms-correlation-request-id": [ "3eac5232-f07f-4db1-9a35-bd8241ad5ddd" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T025856Z:3eac5232-f07f-4db1-9a35-bd8241ad5ddd" ], + "Date": [ "Tue, 22 Sep 2020 02:58:55 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31+26": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26" ], + "x-ms-client-request-id": [ "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "7d65197f-2e73-4dc7-9c15-996f10342f20" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11970" ], + "x-ms-correlation-request-id": [ "178bbd0b-1660-4823-8f1e-03ade9bfbb57" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T025902Z:178bbd0b-1660-4823-8f1e-03ade9bfbb57" ], + "Date": [ "Tue, 22 Sep 2020 02:59:02 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31+27": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27" ], + "x-ms-client-request-id": [ "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "9b27a8c3-1eb4-4bcb-be35-1c911f0a2af9" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11969" ], + "x-ms-correlation-request-id": [ "607b657d-2821-4f14-9207-87f0b0eb3ab7" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T025908Z:607b657d-2821-4f14-9207-87f0b0eb3ab7" ], + "Date": [ "Tue, 22 Sep 2020 02:59:07 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31+28": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28" ], + "x-ms-client-request-id": [ "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "aaf247e2-ba0d-42ec-a642-2a1fc5bfb17d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11968" ], + "x-ms-correlation-request-id": [ "768de77d-3121-46e1-be6a-e205b1e1b364" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T025913Z:768de77d-3121-46e1-be6a-e205b1e1b364" ], + "Date": [ "Tue, 22 Sep 2020 02:59:12 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31+29": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29" ], + "x-ms-client-request-id": [ "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "7421c868-ffd6-47b7-9d86-b26fd40d9d02" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11967" ], + "x-ms-correlation-request-id": [ "93260ba1-7eff-407b-a6e5-83636e76bc4f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T025918Z:93260ba1-7eff-407b-a6e5-83636e76bc4f" ], + "Date": [ "Tue, 22 Sep 2020 02:59:18 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31+30": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30" ], + "x-ms-client-request-id": [ "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "2571c9cf-a2c1-434a-9036-37cf635c9a29" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11966" ], + "x-ms-correlation-request-id": [ "37aae3a7-94c0-443a-a722-dbe8739899bc" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T025924Z:37aae3a7-94c0-443a-a722-dbe8739899bc" ], + "Date": [ "Tue, 22 Sep 2020 02:59:23 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31+31": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31" ], + "x-ms-client-request-id": [ "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "9e81c07c-24f9-49e8-8a97-63976b4e1236" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11965" ], + "x-ms-correlation-request-id": [ "141434ca-e196-49c5-b6b8-af6ea3b670c9" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T025930Z:141434ca-e196-49c5-b6b8-af6ea3b670c9" ], + "Date": [ "Tue, 22 Sep 2020 02:59:29 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31+32": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32" ], + "x-ms-client-request-id": [ "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "cd75c3de-b4b3-45b1-943e-44fc53c7864c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11964" ], + "x-ms-correlation-request-id": [ "7dc006af-082d-4be4-9764-066b4a3cddf8" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T025935Z:7dc006af-082d-4be4-9764-066b4a3cddf8" ], + "Date": [ "Tue, 22 Sep 2020 02:59:35 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31+33": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33" ], + "x-ms-client-request-id": [ "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "94dd48b1-3a7b-4d4c-a88f-f1904bc48a2b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11963" ], + "x-ms-correlation-request-id": [ "aabd53af-4594-4473-8b1c-ab54ce3b8da1" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T025942Z:aabd53af-4594-4473-8b1c-ab54ce3b8da1" ], + "Date": [ "Tue, 22 Sep 2020 02:59:41 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31+34": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34" ], + "x-ms-client-request-id": [ "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "9a4af195-0298-40a7-9296-bc8c3dc96107" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11962" ], + "x-ms-correlation-request-id": [ "f0cfafa4-6182-49f2-b8db-1c02152fa016" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T025947Z:f0cfafa4-6182-49f2-b8db-1c02152fa016" ], + "Date": [ "Tue, 22 Sep 2020 02:59:47 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31+35": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35" ], + "x-ms-client-request-id": [ "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "fa3f6099-19c4-4881-b561-d569c938a5cf" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11961" ], + "x-ms-correlation-request-id": [ "0c5f13a5-23f7-4217-ab12-3a90f532a233" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T025953Z:0c5f13a5-23f7-4217-ab12-3a90f532a233" ], + "Date": [ "Tue, 22 Sep 2020 02:59:52 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31+36": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36" ], + "x-ms-client-request-id": [ "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "a3b922e5-fd04-41ad-912e-8426f6bc5e5a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11960" ], + "x-ms-correlation-request-id": [ "7668f317-cd92-404c-b456-b1bf2d0bffef" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T025959Z:7668f317-cd92-404c-b456-b1bf2d0bffef" ], + "Date": [ "Tue, 22 Sep 2020 02:59:58 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31+37": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37" ], + "x-ms-client-request-id": [ "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "6381b1cc-4ddc-44c7-98bd-9ef8acf8ff1a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11961" ], + "x-ms-correlation-request-id": [ "afb30ef0-96af-48ed-ba35-ee8dd0e38df4" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T030006Z:afb30ef0-96af-48ed-ba35-ee8dd0e38df4" ], + "Date": [ "Tue, 22 Sep 2020 03:00:05 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31+38": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38" ], + "x-ms-client-request-id": [ "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "be7ff313-07e0-4b82-a4a6-4c90a7da6a8e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11960" ], + "x-ms-correlation-request-id": [ "e23f973d-cc73-48ab-b1cb-19be31b3a9be" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T030011Z:e23f973d-cc73-48ab-b1cb-19be31b3a9be" ], + "Date": [ "Tue, 22 Sep 2020 03:00:10 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31+39": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39" ], + "x-ms-client-request-id": [ "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "d7d4724e-5a7a-4920-9fc3-169b763a02b0" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11959" ], + "x-ms-correlation-request-id": [ "6b30c2fb-f72a-4384-b13d-eb9cbde268bb" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T030017Z:6b30c2fb-f72a-4384-b13d-eb9cbde268bb" ], + "Date": [ "Tue, 22 Sep 2020 03:00:17 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31+40": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40" ], + "x-ms-client-request-id": [ "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "e93f8352-d7b2-4ffe-9cab-3326f7c28563" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11958" ], + "x-ms-correlation-request-id": [ "617c480a-8e76-4b06-a34b-93c51aa653a1" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T030023Z:617c480a-8e76-4b06-a34b-93c51aa653a1" ], + "Date": [ "Tue, 22 Sep 2020 03:00:22 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31+41": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41" ], + "x-ms-client-request-id": [ "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "a44f0eab-4ee5-4ceb-b20b-74fb9d2d58dd" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11957" ], + "x-ms-correlation-request-id": [ "2939852d-4409-4c51-80a5-a995ee235976" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T030028Z:2939852d-4409-4c51-80a5-a995ee235976" ], + "Date": [ "Tue, 22 Sep 2020 03:00:28 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31+42": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42" ], + "x-ms-client-request-id": [ "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "c289c16a-c04a-4513-aa8c-4388256eac44" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11956" ], + "x-ms-correlation-request-id": [ "7b8c36a9-886b-48ec-8079-eb0628b5ac70" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T030034Z:7b8c36a9-886b-48ec-8079-eb0628b5ac70" ], + "Date": [ "Tue, 22 Sep 2020 03:00:33 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31+43": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43" ], + "x-ms-client-request-id": [ "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "dd9eb0c4-5d25-4aa5-b2f6-b1381a704949" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11955" ], + "x-ms-correlation-request-id": [ "f831cea0-ad4e-4c35-ae9d-13a276c69b51" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T030040Z:f831cea0-ad4e-4c35-ae9d-13a276c69b51" ], + "Date": [ "Tue, 22 Sep 2020 03:00:40 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31+44": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44" ], + "x-ms-client-request-id": [ "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "a70dd5a8-aa78-4ba3-bb1c-b498bc1b5c55" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11954" ], + "x-ms-correlation-request-id": [ "28a48ad7-4388-4226-a34f-dde83608c8cc" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T030045Z:28a48ad7-4388-4226-a34f-dde83608c8cc" ], + "Date": [ "Tue, 22 Sep 2020 03:00:45 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31+45": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45" ], + "x-ms-client-request-id": [ "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "72a07732-4900-490f-949d-2d1b6111fc97" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11953" ], + "x-ms-correlation-request-id": [ "fb7e055c-8730-4035-bf6b-5f5a6177f1f3" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T030051Z:fb7e055c-8730-4035-bf6b-5f5a6177f1f3" ], + "Date": [ "Tue, 22 Sep 2020 03:00:51 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31+46": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46" ], + "x-ms-client-request-id": [ "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "18be7c51-d181-4bd7-a7d9-5aba8a30147e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11952" ], + "x-ms-correlation-request-id": [ "a7149fc5-3176-467f-bbd4-6d995c7592f4" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T030056Z:a7149fc5-3176-467f-bbd4-6d995c7592f4" ], + "Date": [ "Tue, 22 Sep 2020 03:00:56 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31+47": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47" ], + "x-ms-client-request-id": [ "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "f5d3a499-cf1e-401a-907a-d25cc6cd4db3" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11951" ], + "x-ms-correlation-request-id": [ "54ee843c-8d03-44c1-98b4-00aa2c759190" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T030103Z:54ee843c-8d03-44c1-98b4-00aa2c759190" ], + "Date": [ "Tue, 22 Sep 2020 03:01:03 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31+48": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48" ], + "x-ms-client-request-id": [ "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "35081f52-8cda-422f-a432-a2ac41543274" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11950" ], + "x-ms-correlation-request-id": [ "8e872d08-4a4a-4a6d-b044-70253b69a3d5" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T030108Z:8e872d08-4a4a-4a6d-b044-70253b69a3d5" ], + "Date": [ "Tue, 22 Sep 2020 03:01:08 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31+49": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLVFPRFlHWg?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49" ], + "x-ms-client-request-id": [ "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16", "83ee2e2a-9cd0-4f0c-90af-fdad40be3b16" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete", "Remove-AzDedicatedHsm_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 204, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "2aae2ac0-2669-4dde-97a1-6d08a9da894d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11949" ], + "x-ms-correlation-request-id": [ "941ee8f5-10cc-44d9-809f-bbf1b1ade05d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T030109Z:941ee8f5-10cc-44d9-809f-bbf1b1ade05d" ], + "Date": [ "Tue, 22 Sep 2020 03:01:09 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs?api-version=2018-10-31+50": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "50" ], + "x-ms-client-request-id": [ "dcf3d0ca-5213-4095-908e-321015ef9348" ], + "CommandName": [ "Get-AzDedicatedHsm" ], + "FullCommandName": [ "Get-AzDedicatedHsm_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "6db05bbe-14e1-4b68-a692-07e00c776656" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11948" ], + "x-ms-correlation-request-id": [ "22dcb472-3047-4f7b-b1c5-073c4bc2689d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T030109Z:22dcb472-3047-4f7b-b1c5-073c4bc2689d" ], + "Date": [ "Tue, 22 Sep 2020 03:01:09 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "12" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[]}" + } + }, + "Remove-AzDedicatedHsm+[NoContext]+DeleteViaIdentity+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-glhjus?api-version=2018-10-31+1": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-glhjus?api-version=2018-10-31", + "Content": "{\r\n \"sku\": {\r\n \"name\": \"SafeNet Luna Network HSM A790\"\r\n },\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"networkProfile\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.Network/virtualNetworks/vnetq30la9/subnets/hsmsubnet\"\r\n },\r\n \"networkInterfaces\": [\r\n {\r\n \"privateIpAddress\": \"10.2.1.120\"\r\n }\r\n ]\r\n },\r\n \"stampId\": \"stamp1\"\r\n }\r\n}", + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "488" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "5d87a343-bbb9-479d-bf24-099662b860be" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], + "x-ms-correlation-request-id": [ "541438cb-6e48-4543-ab44-785dbdb2e8ad" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T031851Z:541438cb-6e48-4543-ab44-785dbdb2e8ad" ], + "Date": [ "Tue, 22 Sep 2020 03:18:51 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "736" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"sku\":{\"name\":\"SafeNet Luna Network HSM A790\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-glhjus\",\"name\":\"hsm-glhjus\",\"type\":\"Microsoft.HardwareSecurityModules/dedicatedHSMs\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"networkProfile\":{\"subnet\":{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.Network/virtualNetworks/vnetq30la9/subnets/hsmsubnet\"},\"networkInterfaces\":[{\"privateIpAddress\":\"10.2.1.120\"}]},\"provisioningState\":\"CheckingQuota\",\"statusMessage\":\"Resource creation in progress. Validating subscription device quota...\",\"stampId\":\"stamp1\"}}" + } + }, + "Remove-AzDedicatedHsm+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-glhjus?api-version=2018-10-31+2": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-glhjus?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "52" ], + "x-ms-client-request-id": [ "386e369f-0656-4864-8646-be108ff8bb8d" ], + "CommandName": [ "Get-AzDedicatedHsm" ], + "FullCommandName": [ "Get-AzDedicatedHsm_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "ea7cbd06-eda3-4325-8027-a2a52b8871f9" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], + "x-ms-correlation-request-id": [ "dd015e63-f6bf-4498-9c0f-4e17b2add6a1" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T031953Z:dd015e63-f6bf-4498-9c0f-4e17b2add6a1" ], + "Date": [ "Tue, 22 Sep 2020 03:19:52 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "902" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"sku\":{\"name\":\"SafeNet Luna Network HSM A790\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-glhjus\",\"name\":\"hsm-glhjus\",\"type\":\"Microsoft.HardwareSecurityModules/dedicatedHSMs\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"networkProfile\":{\"subnet\":{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.Network/virtualNetworks/vnetq30la9/subnets/hsmsubnet\"},\"networkInterfaces\":[{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.Network/networkInterfaces/hsm-glhjus_HSMnic\",\"privateIpAddress\":\"10.2.1.120\"}]},\"provisioningState\":\"Connecting\",\"statusMessage\":\"Resource creation in progress. Connecting the device to the virtual network...\",\"stampId\":\"stamp1\"}}" + } + }, + "Remove-AzDedicatedHsm+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-glhjus?api-version=2018-10-31+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-glhjus?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "53" ], + "x-ms-client-request-id": [ "79aa721c-0066-4019-a038-7d425ed3ae45" ], + "CommandName": [ "Get-AzDedicatedHsm" ], + "FullCommandName": [ "Get-AzDedicatedHsm_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "9a9dcb83-9c7e-424d-a615-d5224a5fdf34" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], + "x-ms-correlation-request-id": [ "875e5431-af43-4ac1-b964-810235319ebc" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T032055Z:875e5431-af43-4ac1-b964-810235319ebc" ], + "Date": [ "Tue, 22 Sep 2020 03:20:54 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "882" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"sku\":{\"name\":\"SafeNet Luna Network HSM A790\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-glhjus\",\"name\":\"hsm-glhjus\",\"type\":\"Microsoft.HardwareSecurityModules/dedicatedHSMs\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"networkProfile\":{\"subnet\":{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.Network/virtualNetworks/vnetq30la9/subnets/hsmsubnet\"},\"networkInterfaces\":[{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.Network/networkInterfaces/hsm-glhjus_HSMnic\",\"privateIpAddress\":\"10.2.1.120\"}]},\"provisioningState\":\"Provisioning\",\"statusMessage\":\"Resource creation in progress. Configuring the device...\",\"stampId\":\"stamp1\"}}" + } + }, + "Remove-AzDedicatedHsm+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-glhjus?api-version=2018-10-31+4": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-glhjus?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "54" ], + "x-ms-client-request-id": [ "1a83b8cf-a3fb-40bd-a39b-9b993e95f5c7" ], + "CommandName": [ "Get-AzDedicatedHsm" ], + "FullCommandName": [ "Get-AzDedicatedHsm_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "a607883e-3d69-4df4-af15-b1b4f78a655b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], + "x-ms-correlation-request-id": [ "abd63040-2584-450a-927e-2c74bea081ef" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T032156Z:abd63040-2584-450a-927e-2c74bea081ef" ], + "Date": [ "Tue, 22 Sep 2020 03:21:55 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "882" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"sku\":{\"name\":\"SafeNet Luna Network HSM A790\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-glhjus\",\"name\":\"hsm-glhjus\",\"type\":\"Microsoft.HardwareSecurityModules/dedicatedHSMs\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"networkProfile\":{\"subnet\":{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.Network/virtualNetworks/vnetq30la9/subnets/hsmsubnet\"},\"networkInterfaces\":[{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.Network/networkInterfaces/hsm-glhjus_HSMnic\",\"privateIpAddress\":\"10.2.1.120\"}]},\"provisioningState\":\"Provisioning\",\"statusMessage\":\"Resource creation in progress. Configuring the device...\",\"stampId\":\"stamp1\"}}" + } + }, + "Remove-AzDedicatedHsm+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-glhjus?api-version=2018-10-31+5": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-glhjus?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "55" ], + "x-ms-client-request-id": [ "c1f365ba-517f-41b1-b2bd-4dc9f8267423" ], + "CommandName": [ "Get-AzDedicatedHsm" ], + "FullCommandName": [ "Get-AzDedicatedHsm_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "f6eacd4c-7508-45b3-97eb-cd7d3452fe61" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], + "x-ms-correlation-request-id": [ "b7b5407f-98c3-4827-ab0b-749e75de1730" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T032258Z:b7b5407f-98c3-4827-ab0b-749e75de1730" ], + "Date": [ "Tue, 22 Sep 2020 03:22:57 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "882" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"sku\":{\"name\":\"SafeNet Luna Network HSM A790\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-glhjus\",\"name\":\"hsm-glhjus\",\"type\":\"Microsoft.HardwareSecurityModules/dedicatedHSMs\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"networkProfile\":{\"subnet\":{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.Network/virtualNetworks/vnetq30la9/subnets/hsmsubnet\"},\"networkInterfaces\":[{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.Network/networkInterfaces/hsm-glhjus_HSMnic\",\"privateIpAddress\":\"10.2.1.120\"}]},\"provisioningState\":\"Provisioning\",\"statusMessage\":\"Resource creation in progress. Configuring the device...\",\"stampId\":\"stamp1\"}}" + } + }, + "Remove-AzDedicatedHsm+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-glhjus?api-version=2018-10-31+6": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-glhjus?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "56" ], + "x-ms-client-request-id": [ "1fe39cdd-a41b-4d72-8693-b79e3f139ec0" ], + "CommandName": [ "Get-AzDedicatedHsm" ], + "FullCommandName": [ "Get-AzDedicatedHsm_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "b7c0f1f2-7ee5-4626-b2ff-aa1f0136935a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], + "x-ms-correlation-request-id": [ "5435f266-308a-43c3-a2d7-4801c167c967" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T032359Z:5435f266-308a-43c3-a2d7-4801c167c967" ], + "Date": [ "Tue, 22 Sep 2020 03:23:59 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "882" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"sku\":{\"name\":\"SafeNet Luna Network HSM A790\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-glhjus\",\"name\":\"hsm-glhjus\",\"type\":\"Microsoft.HardwareSecurityModules/dedicatedHSMs\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"networkProfile\":{\"subnet\":{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.Network/virtualNetworks/vnetq30la9/subnets/hsmsubnet\"},\"networkInterfaces\":[{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.Network/networkInterfaces/hsm-glhjus_HSMnic\",\"privateIpAddress\":\"10.2.1.120\"}]},\"provisioningState\":\"Provisioning\",\"statusMessage\":\"Resource creation in progress. Configuring the device...\",\"stampId\":\"stamp1\"}}" + } + }, + "Remove-AzDedicatedHsm+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-glhjus?api-version=2018-10-31+7": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-glhjus?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "57" ], + "x-ms-client-request-id": [ "377bb1a7-d807-4086-8cd9-28eb505d5d39" ], + "CommandName": [ "Get-AzDedicatedHsm" ], + "FullCommandName": [ "Get-AzDedicatedHsm_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "3ab63a8f-bce7-458c-99a0-64d236e41255" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], + "x-ms-correlation-request-id": [ "97d86c9b-fe55-442f-b4c2-0def649104db" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T032501Z:97d86c9b-fe55-442f-b4c2-0def649104db" ], + "Date": [ "Tue, 22 Sep 2020 03:25:01 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "882" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"sku\":{\"name\":\"SafeNet Luna Network HSM A790\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-glhjus\",\"name\":\"hsm-glhjus\",\"type\":\"Microsoft.HardwareSecurityModules/dedicatedHSMs\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"networkProfile\":{\"subnet\":{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.Network/virtualNetworks/vnetq30la9/subnets/hsmsubnet\"},\"networkInterfaces\":[{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.Network/networkInterfaces/hsm-glhjus_HSMnic\",\"privateIpAddress\":\"10.2.1.120\"}]},\"provisioningState\":\"Provisioning\",\"statusMessage\":\"Resource creation in progress. Configuring the device...\",\"stampId\":\"stamp1\"}}" + } + }, + "Remove-AzDedicatedHsm+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-glhjus?api-version=2018-10-31+8": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-glhjus?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "58" ], + "x-ms-client-request-id": [ "992b0d82-fe3a-4c0c-ad36-2e14a9de40f0" ], + "CommandName": [ "Get-AzDedicatedHsm" ], + "FullCommandName": [ "Get-AzDedicatedHsm_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "1c8c1b85-f16f-4471-a7b8-6367054ce2e4" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], + "x-ms-correlation-request-id": [ "3d641fc5-486a-4e8f-93a5-b1faaf45ddeb" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T032603Z:3d641fc5-486a-4e8f-93a5-b1faaf45ddeb" ], + "Date": [ "Tue, 22 Sep 2020 03:26:02 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "882" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"sku\":{\"name\":\"SafeNet Luna Network HSM A790\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-glhjus\",\"name\":\"hsm-glhjus\",\"type\":\"Microsoft.HardwareSecurityModules/dedicatedHSMs\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"networkProfile\":{\"subnet\":{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.Network/virtualNetworks/vnetq30la9/subnets/hsmsubnet\"},\"networkInterfaces\":[{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.Network/networkInterfaces/hsm-glhjus_HSMnic\",\"privateIpAddress\":\"10.2.1.120\"}]},\"provisioningState\":\"Provisioning\",\"statusMessage\":\"Resource creation in progress. Configuring the device...\",\"stampId\":\"stamp1\"}}" + } + }, + "Remove-AzDedicatedHsm+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-glhjus?api-version=2018-10-31+9": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-glhjus?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "59" ], + "x-ms-client-request-id": [ "db8fb2a4-836b-446d-901b-15cbf799b1d5" ], + "CommandName": [ "Get-AzDedicatedHsm" ], + "FullCommandName": [ "Get-AzDedicatedHsm_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "61c6c975-73ba-41da-9d46-dc29604aeaa1" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], + "x-ms-correlation-request-id": [ "ef6e1366-3e67-46a7-83b2-5c1834953b15" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T032704Z:ef6e1366-3e67-46a7-83b2-5c1834953b15" ], + "Date": [ "Tue, 22 Sep 2020 03:27:04 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "893" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"sku\":{\"name\":\"SafeNet Luna Network HSM A790\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-glhjus\",\"name\":\"hsm-glhjus\",\"type\":\"Microsoft.HardwareSecurityModules/dedicatedHSMs\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"networkProfile\":{\"subnet\":{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.Network/virtualNetworks/vnetq30la9/subnets/hsmsubnet\"},\"networkInterfaces\":[{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.Network/networkInterfaces/hsm-glhjus_HSMnic\",\"privateIpAddress\":\"10.2.1.120\"}]},\"provisioningState\":\"Succeeded\",\"statusMessage\":\"The Dedicated HSM device is provisioned successfully and ready to use.\",\"stampId\":\"stamp1\"}}" + } + }, + "Remove-AzDedicatedHsm+[NoContext]+DeleteViaIdentity+$DELETE+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-glhjus?api-version=2018-10-31+10": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-glhjus?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "60" ], + "x-ms-client-request-id": [ "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69" ], + "CommandName": [ "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "63920d5b-84e5-406b-9dde-fa17c8917724" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], + "x-ms-correlation-request-id": [ "8edb6d75-e07d-4b32-a956-71f330dfe6c1" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T032705Z:8edb6d75-e07d-4b32-a956-71f330dfe6c1" ], + "Date": [ "Tue, 22 Sep 2020 03:27:05 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31+11": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "60", "61" ], + "x-ms-client-request-id": [ "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "cc2ccf65-c2d3-4325-9452-1391f7e7ea88" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], + "x-ms-correlation-request-id": [ "7372a55c-a2a4-4055-b568-ba5cf24dea42" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T032711Z:7372a55c-a2a4-4055-b568-ba5cf24dea42" ], + "Date": [ "Tue, 22 Sep 2020 03:27:10 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31+12": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "60", "61", "62" ], + "x-ms-client-request-id": [ "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "cdb8434d-eab6-4d22-a5c8-6c32fd41a8cd" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11989" ], + "x-ms-correlation-request-id": [ "67ca946e-c8ee-4523-a2bd-fff56c4719c4" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T032716Z:67ca946e-c8ee-4523-a2bd-fff56c4719c4" ], + "Date": [ "Tue, 22 Sep 2020 03:27:16 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31+13": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "60", "61", "62", "63" ], + "x-ms-client-request-id": [ "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "cc913c1e-56b6-4b3d-9630-0b33cbe737ba" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11988" ], + "x-ms-correlation-request-id": [ "883696e7-5670-47ef-8594-0ad5d3ff878e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T032721Z:883696e7-5670-47ef-8594-0ad5d3ff878e" ], + "Date": [ "Tue, 22 Sep 2020 03:27:21 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31+14": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "60", "61", "62", "63", "64" ], + "x-ms-client-request-id": [ "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "3eacb0bc-3574-481c-ab23-1beca7cb5f82" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11987" ], + "x-ms-correlation-request-id": [ "69b69faa-ca01-4bb0-9bef-4c31410c8159" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T032727Z:69b69faa-ca01-4bb0-9bef-4c31410c8159" ], + "Date": [ "Tue, 22 Sep 2020 03:27:26 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31+15": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "60", "61", "62", "63", "64", "65" ], + "x-ms-client-request-id": [ "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "360806a5-0ed3-41ab-9cdc-6c031c5056f7" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11986" ], + "x-ms-correlation-request-id": [ "bdf1bbc6-24a6-4bbc-a2ee-ac81aba4b8c0" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T032732Z:bdf1bbc6-24a6-4bbc-a2ee-ac81aba4b8c0" ], + "Date": [ "Tue, 22 Sep 2020 03:27:32 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31+16": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "60", "61", "62", "63", "64", "65", "66" ], + "x-ms-client-request-id": [ "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "31573d2a-5e09-4419-8454-dd02c78dd293" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11985" ], + "x-ms-correlation-request-id": [ "753e6cce-360e-4682-bae3-920ab93c32d0" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T032737Z:753e6cce-360e-4682-bae3-920ab93c32d0" ], + "Date": [ "Tue, 22 Sep 2020 03:27:37 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31+17": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "60", "61", "62", "63", "64", "65", "66", "67" ], + "x-ms-client-request-id": [ "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "987d6681-71d6-44f7-86db-bd15b4b31ef9" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11984" ], + "x-ms-correlation-request-id": [ "a51beb65-f98b-4ebf-9943-b4f465dd0443" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T032743Z:a51beb65-f98b-4ebf-9943-b4f465dd0443" ], + "Date": [ "Tue, 22 Sep 2020 03:27:42 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31+18": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "60", "61", "62", "63", "64", "65", "66", "67", "68" ], + "x-ms-client-request-id": [ "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "272c16a4-afd4-4fb6-aff4-8026adb5620a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11983" ], + "x-ms-correlation-request-id": [ "bab788bd-f818-4897-83c6-6892eb53eac1" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T032749Z:bab788bd-f818-4897-83c6-6892eb53eac1" ], + "Date": [ "Tue, 22 Sep 2020 03:27:48 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31+19": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "60", "61", "62", "63", "64", "65", "66", "67", "68", "69" ], + "x-ms-client-request-id": [ "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "d10389af-9313-4257-87e7-45c096278856" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11982" ], + "x-ms-correlation-request-id": [ "b284d55e-05f1-4d23-9a58-3010286aa211" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T032755Z:b284d55e-05f1-4d23-9a58-3010286aa211" ], + "Date": [ "Tue, 22 Sep 2020 03:27:54 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31+20": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "60", "61", "62", "63", "64", "65", "66", "67", "68", "69", "70" ], + "x-ms-client-request-id": [ "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "3ca989b8-a2a0-4789-b0b1-4b7612c0b3f2" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11981" ], + "x-ms-correlation-request-id": [ "c7307e26-8e32-41ed-b6fe-8f69b33b81ea" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T032800Z:c7307e26-8e32-41ed-b6fe-8f69b33b81ea" ], + "Date": [ "Tue, 22 Sep 2020 03:27:59 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31+21": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "60", "61", "62", "63", "64", "65", "66", "67", "68", "69", "70", "71" ], + "x-ms-client-request-id": [ "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "580cd0e3-1055-49ab-a537-458ff126cece" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11980" ], + "x-ms-correlation-request-id": [ "2503064b-9958-432d-bc18-3d2cdedca225" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T032805Z:2503064b-9958-432d-bc18-3d2cdedca225" ], + "Date": [ "Tue, 22 Sep 2020 03:28:05 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31+22": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "60", "61", "62", "63", "64", "65", "66", "67", "68", "69", "70", "71", "72" ], + "x-ms-client-request-id": [ "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "e9ce73bf-64f5-49de-9afd-4a386896134c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11979" ], + "x-ms-correlation-request-id": [ "f6586c59-d612-42d6-a920-8009d7590c32" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T032811Z:f6586c59-d612-42d6-a920-8009d7590c32" ], + "Date": [ "Tue, 22 Sep 2020 03:28:10 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31+23": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "60", "61", "62", "63", "64", "65", "66", "67", "68", "69", "70", "71", "72", "73" ], + "x-ms-client-request-id": [ "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "85ec6167-5b61-4d6c-ba8e-3113fe46acbf" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11978" ], + "x-ms-correlation-request-id": [ "62340a02-d04c-41e5-9260-d05fb043a45f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T032816Z:62340a02-d04c-41e5-9260-d05fb043a45f" ], + "Date": [ "Tue, 22 Sep 2020 03:28:15 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31+24": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "60", "61", "62", "63", "64", "65", "66", "67", "68", "69", "70", "71", "72", "73", "74" ], + "x-ms-client-request-id": [ "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "b7532550-fb0b-494e-a964-f65488d60917" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11977" ], + "x-ms-correlation-request-id": [ "63c6e259-f003-4755-bc6e-e3a9d37cb439" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T032821Z:63c6e259-f003-4755-bc6e-e3a9d37cb439" ], + "Date": [ "Tue, 22 Sep 2020 03:28:20 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31+25": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "60", "61", "62", "63", "64", "65", "66", "67", "68", "69", "70", "71", "72", "73", "74", "75" ], + "x-ms-client-request-id": [ "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "7bac7078-c0cb-4111-bbb4-a20fb333000c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11976" ], + "x-ms-correlation-request-id": [ "ca4ebae8-07b0-43f0-8773-37b134dcda95" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T032827Z:ca4ebae8-07b0-43f0-8773-37b134dcda95" ], + "Date": [ "Tue, 22 Sep 2020 03:28:26 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31+26": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "60", "61", "62", "63", "64", "65", "66", "67", "68", "69", "70", "71", "72", "73", "74", "75", "76" ], + "x-ms-client-request-id": [ "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "8cf0ac45-dfb4-4a7e-afe1-e8b15fdcc6df" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11975" ], + "x-ms-correlation-request-id": [ "630ee61d-1d55-45be-9442-a860d8fc4517" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T032832Z:630ee61d-1d55-45be-9442-a860d8fc4517" ], + "Date": [ "Tue, 22 Sep 2020 03:28:31 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31+27": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "60", "61", "62", "63", "64", "65", "66", "67", "68", "69", "70", "71", "72", "73", "74", "75", "76", "77" ], + "x-ms-client-request-id": [ "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "36237032-3362-4d85-a04e-419be11f5645" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11974" ], + "x-ms-correlation-request-id": [ "2ec93fe4-6090-4bf8-8f9f-1c07740a3f55" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T032837Z:2ec93fe4-6090-4bf8-8f9f-1c07740a3f55" ], + "Date": [ "Tue, 22 Sep 2020 03:28:37 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31+28": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "60", "61", "62", "63", "64", "65", "66", "67", "68", "69", "70", "71", "72", "73", "74", "75", "76", "77", "78" ], + "x-ms-client-request-id": [ "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "5d6392c8-bca7-40e5-8207-70d682f391c5" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11973" ], + "x-ms-correlation-request-id": [ "34214e48-727f-472b-968c-219637b0ec5a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T032843Z:34214e48-727f-472b-968c-219637b0ec5a" ], + "Date": [ "Tue, 22 Sep 2020 03:28:42 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31+29": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "60", "61", "62", "63", "64", "65", "66", "67", "68", "69", "70", "71", "72", "73", "74", "75", "76", "77", "78", "79" ], + "x-ms-client-request-id": [ "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "294d8493-39db-41ec-aa10-e072d065077c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11972" ], + "x-ms-correlation-request-id": [ "9e9565b1-41a1-4217-905b-0d429e7a959b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T032848Z:9e9565b1-41a1-4217-905b-0d429e7a959b" ], + "Date": [ "Tue, 22 Sep 2020 03:28:48 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31+30": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "60", "61", "62", "63", "64", "65", "66", "67", "68", "69", "70", "71", "72", "73", "74", "75", "76", "77", "78", "79", "80" ], + "x-ms-client-request-id": [ "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "a8a7d1ca-5181-4256-a4e7-97404cfa5f9a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11971" ], + "x-ms-correlation-request-id": [ "41f75599-7e47-4013-b4d4-ecfe7cf7d9ff" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T032855Z:41f75599-7e47-4013-b4d4-ecfe7cf7d9ff" ], + "Date": [ "Tue, 22 Sep 2020 03:28:55 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31+31": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "60", "61", "62", "63", "64", "65", "66", "67", "68", "69", "70", "71", "72", "73", "74", "75", "76", "77", "78", "79", "80", "81" ], + "x-ms-client-request-id": [ "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "87175ad8-3215-4a34-a6d6-9a8037f4d208" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11970" ], + "x-ms-correlation-request-id": [ "87f6543c-b9cd-4a5b-b6d9-d305c7d3b403" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T032900Z:87f6543c-b9cd-4a5b-b6d9-d305c7d3b403" ], + "Date": [ "Tue, 22 Sep 2020 03:29:00 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31+32": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "60", "61", "62", "63", "64", "65", "66", "67", "68", "69", "70", "71", "72", "73", "74", "75", "76", "77", "78", "79", "80", "81", "82" ], + "x-ms-client-request-id": [ "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "d6eb4ba2-7836-4a66-8dcd-f5e88fe552d6" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11969" ], + "x-ms-correlation-request-id": [ "f2c6cd58-da14-44fa-9d63-d624a4897389" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T032906Z:f2c6cd58-da14-44fa-9d63-d624a4897389" ], + "Date": [ "Tue, 22 Sep 2020 03:29:05 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31+33": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "60", "61", "62", "63", "64", "65", "66", "67", "68", "69", "70", "71", "72", "73", "74", "75", "76", "77", "78", "79", "80", "81", "82", "83" ], + "x-ms-client-request-id": [ "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "7b1ce973-9f23-445e-82d6-0ccd2857869a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11968" ], + "x-ms-correlation-request-id": [ "cd19aae6-27b3-4aca-b309-28a155c29afb" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T032911Z:cd19aae6-27b3-4aca-b309-28a155c29afb" ], + "Date": [ "Tue, 22 Sep 2020 03:29:11 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31+34": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "60", "61", "62", "63", "64", "65", "66", "67", "68", "69", "70", "71", "72", "73", "74", "75", "76", "77", "78", "79", "80", "81", "82", "83", "84" ], + "x-ms-client-request-id": [ "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "1456daa9-3a84-490c-bfb9-4146812f83e9" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11967" ], + "x-ms-correlation-request-id": [ "4e79f4a7-14ef-4767-840d-bdc72baffb9d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T032916Z:4e79f4a7-14ef-4767-840d-bdc72baffb9d" ], + "Date": [ "Tue, 22 Sep 2020 03:29:16 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31+35": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "60", "61", "62", "63", "64", "65", "66", "67", "68", "69", "70", "71", "72", "73", "74", "75", "76", "77", "78", "79", "80", "81", "82", "83", "84", "85" ], + "x-ms-client-request-id": [ "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "d18d3a39-2b3f-4b1a-b26f-60a796e2156a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11966" ], + "x-ms-correlation-request-id": [ "52d2c889-799d-4910-bfbd-c9128ba853a1" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T032922Z:52d2c889-799d-4910-bfbd-c9128ba853a1" ], + "Date": [ "Tue, 22 Sep 2020 03:29:22 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31+36": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "60", "61", "62", "63", "64", "65", "66", "67", "68", "69", "70", "71", "72", "73", "74", "75", "76", "77", "78", "79", "80", "81", "82", "83", "84", "85", "86" ], + "x-ms-client-request-id": [ "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "80e4c7db-332d-4409-9420-01ed04bed9f7" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11965" ], + "x-ms-correlation-request-id": [ "0f064008-92f9-44ac-8550-9176a7ca2361" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T032928Z:0f064008-92f9-44ac-8550-9176a7ca2361" ], + "Date": [ "Tue, 22 Sep 2020 03:29:28 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31+37": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "60", "61", "62", "63", "64", "65", "66", "67", "68", "69", "70", "71", "72", "73", "74", "75", "76", "77", "78", "79", "80", "81", "82", "83", "84", "85", "86", "87" ], + "x-ms-client-request-id": [ "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "455b1a3f-5141-4a28-8723-824eb4df4834" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11964" ], + "x-ms-correlation-request-id": [ "0fe339ac-b1a9-4a0f-af4e-bb3507925527" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T032934Z:0fe339ac-b1a9-4a0f-af4e-bb3507925527" ], + "Date": [ "Tue, 22 Sep 2020 03:29:33 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31+38": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "60", "61", "62", "63", "64", "65", "66", "67", "68", "69", "70", "71", "72", "73", "74", "75", "76", "77", "78", "79", "80", "81", "82", "83", "84", "85", "86", "87", "88" ], + "x-ms-client-request-id": [ "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "0c175cd8-0683-4333-a65b-cf5955095913" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11963" ], + "x-ms-correlation-request-id": [ "9e495e0d-3754-4f30-a065-0a112ca102db" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T032939Z:9e495e0d-3754-4f30-a065-0a112ca102db" ], + "Date": [ "Tue, 22 Sep 2020 03:29:39 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31+39": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "60", "61", "62", "63", "64", "65", "66", "67", "68", "69", "70", "71", "72", "73", "74", "75", "76", "77", "78", "79", "80", "81", "82", "83", "84", "85", "86", "87", "88", "89" ], + "x-ms-client-request-id": [ "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "988def31-7765-449c-b9db-4834975982c1" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11962" ], + "x-ms-correlation-request-id": [ "3654bd60-9b7e-4731-a1b3-805116f4ed3b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T032945Z:3654bd60-9b7e-4731-a1b3-805116f4ed3b" ], + "Date": [ "Tue, 22 Sep 2020 03:29:44 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31+40": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "60", "61", "62", "63", "64", "65", "66", "67", "68", "69", "70", "71", "72", "73", "74", "75", "76", "77", "78", "79", "80", "81", "82", "83", "84", "85", "86", "87", "88", "89", "90" ], + "x-ms-client-request-id": [ "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "a3deb695-eb27-49f4-a673-b5bcc43c154b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11961" ], + "x-ms-correlation-request-id": [ "1525d55b-879d-4682-b18b-da6eefa473e4" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T032951Z:1525d55b-879d-4682-b18b-da6eefa473e4" ], + "Date": [ "Tue, 22 Sep 2020 03:29:51 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31+41": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "60", "61", "62", "63", "64", "65", "66", "67", "68", "69", "70", "71", "72", "73", "74", "75", "76", "77", "78", "79", "80", "81", "82", "83", "84", "85", "86", "87", "88", "89", "90", "91" ], + "x-ms-client-request-id": [ "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "4715c05b-a9a2-4425-8778-982ced35b227" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11960" ], + "x-ms-correlation-request-id": [ "7796dfc3-9eae-4dba-a52b-7b751134b3f0" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T032958Z:7796dfc3-9eae-4dba-a52b-7b751134b3f0" ], + "Date": [ "Tue, 22 Sep 2020 03:29:57 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31+42": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "60", "61", "62", "63", "64", "65", "66", "67", "68", "69", "70", "71", "72", "73", "74", "75", "76", "77", "78", "79", "80", "81", "82", "83", "84", "85", "86", "87", "88", "89", "90", "91", "92" ], + "x-ms-client-request-id": [ "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "6b882699-4570-4613-8e47-20e7c5b723ba" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11960" ], + "x-ms-correlation-request-id": [ "2309a9bb-271b-4940-bdf0-b06443f2baa8" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T033005Z:2309a9bb-271b-4940-bdf0-b06443f2baa8" ], + "Date": [ "Tue, 22 Sep 2020 03:30:04 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31+43": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "60", "61", "62", "63", "64", "65", "66", "67", "68", "69", "70", "71", "72", "73", "74", "75", "76", "77", "78", "79", "80", "81", "82", "83", "84", "85", "86", "87", "88", "89", "90", "91", "92", "93" ], + "x-ms-client-request-id": [ "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "254cc77e-18ee-4f64-ae62-8334001c7336" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11959" ], + "x-ms-correlation-request-id": [ "43f0236e-03b0-462a-b62a-b1e0930af3be" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T033010Z:43f0236e-03b0-462a-b62a-b1e0930af3be" ], + "Date": [ "Tue, 22 Sep 2020 03:30:09 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31+44": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "60", "61", "62", "63", "64", "65", "66", "67", "68", "69", "70", "71", "72", "73", "74", "75", "76", "77", "78", "79", "80", "81", "82", "83", "84", "85", "86", "87", "88", "89", "90", "91", "92", "93", "94" ], + "x-ms-client-request-id": [ "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "b467e504-97b5-46ed-b053-45fc99f74a52" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11958" ], + "x-ms-correlation-request-id": [ "55e0f8fc-07ce-4cf0-8f05-7d50262a9f71" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T033015Z:55e0f8fc-07ce-4cf0-8f05-7d50262a9f71" ], + "Date": [ "Tue, 22 Sep 2020 03:30:15 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31+45": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "60", "61", "62", "63", "64", "65", "66", "67", "68", "69", "70", "71", "72", "73", "74", "75", "76", "77", "78", "79", "80", "81", "82", "83", "84", "85", "86", "87", "88", "89", "90", "91", "92", "93", "94", "95" ], + "x-ms-client-request-id": [ "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "e383639d-4d54-470c-9447-1ff93d5aadca" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11957" ], + "x-ms-correlation-request-id": [ "c1b53a32-25d5-4b2a-ab3f-4bd682cf6e11" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T033021Z:c1b53a32-25d5-4b2a-ab3f-4bd682cf6e11" ], + "Date": [ "Tue, 22 Sep 2020 03:30:20 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31+46": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "60", "61", "62", "63", "64", "65", "66", "67", "68", "69", "70", "71", "72", "73", "74", "75", "76", "77", "78", "79", "80", "81", "82", "83", "84", "85", "86", "87", "88", "89", "90", "91", "92", "93", "94", "95", "96" ], + "x-ms-client-request-id": [ "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31" ], + "Retry-After": [ "5" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "4aa373f1-90a9-4e0f-aeca-642cb1bf641c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11956" ], + "x-ms-correlation-request-id": [ "cf71f183-497d-408e-be1a-24472593b5c1" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T033027Z:cf71f183-497d-408e-be1a-24472593b5c1" ], + "Date": [ "Tue, 22 Sep 2020 03:30:27 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31+47": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "60", "61", "62", "63", "64", "65", "66", "67", "68", "69", "70", "71", "72", "73", "74", "75", "76", "77", "78", "79", "80", "81", "82", "83", "84", "85", "86", "87", "88", "89", "90", "91", "92", "93", "94", "95", "96", "97" ], + "x-ms-client-request-id": [ "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "88ae83a1-6d79-4340-93ab-30123e449b6c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11955" ], + "x-ms-correlation-request-id": [ "2a1ef5eb-2095-452a-88db-d792bb97f8ad" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T033033Z:2a1ef5eb-2095-452a-88db-d792bb97f8ad" ], + "Date": [ "Tue, 22 Sep 2020 03:30:32 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31+48": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.HardwareSecurityModules/locations/eastus/operationResults/OUUyMjNEQkUtMzM5OS00RTE5LTg4RUItMDk3NUYwMkFDODdGL0RFRElDQVRFREhTTS1SRy1OMzU5Q1ovSFNNLUdMSEpVUw?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "60", "61", "62", "63", "64", "65", "66", "67", "68", "69", "70", "71", "72", "73", "74", "75", "76", "77", "78", "79", "80", "81", "82", "83", "84", "85", "86", "87", "88", "89", "90", "91", "92", "93", "94", "95", "96", "97", "98" ], + "x-ms-client-request-id": [ "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69", "7d1f8db2-fce2-43d3-a5a7-f32eb5976b69" ], + "CommandName": [ "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm", "Remove-AzDedicatedHsm" ], + "FullCommandName": [ "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity", "Remove-AzDedicatedHsm_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 204, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "b7ff5ece-71e6-4391-8dce-e804811dd4b2" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11954" ], + "x-ms-correlation-request-id": [ "0e4b9fae-619d-4c9b-9674-7772a82a886e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T033033Z:0e4b9fae-619d-4c9b-9674-7772a82a886e" ], + "Date": [ "Tue, 22 Sep 2020 03:30:32 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ] + }, + "Content": null + } + }, + "Remove-AzDedicatedHsm+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs?api-version=2018-10-31+49": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "99" ], + "x-ms-client-request-id": [ "474a6bc4-a0c9-4b0c-b57b-d1e92cb9320a" ], + "CommandName": [ "Get-AzDedicatedHsm" ], + "FullCommandName": [ "Get-AzDedicatedHsm_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "5bba4b6e-2382-4719-acba-88664cd35e2c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11953" ], + "x-ms-correlation-request-id": [ "7f3caa6e-33ef-4427-8871-8ab540f76b54" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T033034Z:7f3caa6e-33ef-4427-8871-8ab540f76b54" ], + "Date": [ "Tue, 22 Sep 2020 03:30:33 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "12" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[]}" + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/test/Remove-AzDedicatedHsm.Tests.ps1 b/src/DedicatedHsm/test/Remove-AzDedicatedHsm.Tests.ps1 new file mode 100644 index 000000000000..32fed4196625 --- /dev/null +++ b/src/DedicatedHsm/test/Remove-AzDedicatedHsm.Tests.ps1 @@ -0,0 +1,38 @@ +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' +} +. ($loadEnvPath) +$TestRecordingFile = Join-Path $PSScriptRoot 'Remove-AzDedicatedHsm.Recording.json' +$currentPath = $PSScriptRoot +while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent +} +. ($mockingPath | Select-Object -First 1).FullName + +Describe 'Remove-AzDedicatedHsm' { + It 'Delete' { + Remove-AzDedicatedHsm -Name $env.dedicatedHsmName02 -ResourceGroupName $env.resourceGroup + $hsmList = Get-AzDedicatedHsm -ResourceGroupName $env.resourceGroup + $hsmList.Name | Should -Not -Contain $env.dedicatedHsmName02 + + } + + It 'DeleteViaIdentity' { + $hsm = New-AzDedicatedHsm -Name $env.dedicatedHsmName03 -ResourceGroupName $env.resourceGroup -Location $env.location -Sku "SafeNet Luna Network HSM A790" -StampId stamp1 -SubnetId $env.vnetSubnetId -NetworkInterface @{PrivateIPAddress = '10.2.1.120' } + # Wait DedicatedHsm create complete. + do { + # Message: The new cmdlet cmdlet will return immediately. But actually it's long operation. This is an bug on the server. + # TODO: Remove code when Server fix bug. + # Record enable and Playback disable + if ($TestMode -ne 'playback') { + Start-Sleep -Seconds 60 + } + $hsm = Get-AzDedicatedHsm -Name $env.dedicatedHsmName03 -ResourceGroupName $env.resourceGroup + } until ($hsm.ProvisioningState -eq 'Succeeded') + Remove-AzDedicatedHsm -InputObject $hsm + $hsmList = Get-AzDedicatedHsm -ResourceGroupName $env.resourceGroup + $hsmList.Name | Should -Not -Contain $env.dedicatedHsmName03 + } +} diff --git a/src/DedicatedHsm/test/Update-AzDedicatedHsm.Recording.json b/src/DedicatedHsm/test/Update-AzDedicatedHsm.Recording.json new file mode 100644 index 000000000000..4109e2d3f805 --- /dev/null +++ b/src/DedicatedHsm/test/Update-AzDedicatedHsm.Recording.json @@ -0,0 +1,118 @@ +{ + "Update-AzDedicatedHsm+[NoContext]+UpdateExpanded+$PATCH+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-n7wfxi?api-version=2018-10-31+1": { + "Request": { + "Method": "PATCH", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-n7wfxi?api-version=2018-10-31", + "Content": "{\r\n \"tags\": {\r\n \"key3\": \"3\",\r\n \"key1\": \"1\",\r\n \"key2\": \"2\"\r\n }\r\n}", + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "75" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "7baaddfa-3dcc-47c2-a815-c35ac3b8615a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], + "x-ms-correlation-request-id": [ "8c922b74-612a-4acf-a7aa-3b8029f8d8cf" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T080754Z:8c922b74-612a-4acf-a7aa-3b8029f8d8cf" ], + "Date": [ "Tue, 22 Sep 2020 08:07:54 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "925" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"sku\":{\"name\":\"SafeNet Luna Network HSM A790\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-n7wfxi\",\"name\":\"hsm-n7wfxi\",\"type\":\"Microsoft.HardwareSecurityModules/dedicatedHSMs\",\"location\":\"eastus\",\"tags\":{\"key3\":\"3\",\"key1\":\"1\",\"key2\":\"2\"},\"properties\":{\"networkProfile\":{\"subnet\":{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.Network/virtualNetworks/vnetq30la9/subnets/hsmsubnet\"},\"networkInterfaces\":[{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.Network/networkInterfaces/hsm-n7wfxi_HSMnic\",\"privateIpAddress\":\"10.2.1.120\"}]},\"provisioningState\":\"Succeeded\",\"statusMessage\":\"The Dedicated HSM device is provisioned successfully and ready to use.\",\"stampId\":\"stamp1\"}}" + } + }, + "Update-AzDedicatedHsm+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-n7wfxi?api-version=2018-10-31+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-n7wfxi?api-version=2018-10-31", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "2" ], + "x-ms-client-request-id": [ "6858df80-ebca-4770-a0f0-3e9666a5f255" ], + "CommandName": [ "Get-AzDedicatedHsm" ], + "FullCommandName": [ "Get-AzDedicatedHsm_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "7ef4ce27-b3d0-48cf-8d7d-48a4f5c5357b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], + "x-ms-correlation-request-id": [ "b6048748-5116-48e7-9b25-077e9113303f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T080755Z:b6048748-5116-48e7-9b25-077e9113303f" ], + "Date": [ "Tue, 22 Sep 2020 08:07:54 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "925" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"sku\":{\"name\":\"SafeNet Luna Network HSM A790\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-n7wfxi\",\"name\":\"hsm-n7wfxi\",\"type\":\"Microsoft.HardwareSecurityModules/dedicatedHSMs\",\"location\":\"eastus\",\"tags\":{\"key3\":\"3\",\"key1\":\"1\",\"key2\":\"2\"},\"properties\":{\"networkProfile\":{\"subnet\":{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.Network/virtualNetworks/vnetq30la9/subnets/hsmsubnet\"},\"networkInterfaces\":[{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.Network/networkInterfaces/hsm-n7wfxi_HSMnic\",\"privateIpAddress\":\"10.2.1.120\"}]},\"provisioningState\":\"Succeeded\",\"statusMessage\":\"The Dedicated HSM device is provisioned successfully and ready to use.\",\"stampId\":\"stamp1\"}}" + } + }, + "Update-AzDedicatedHsm+[NoContext]+UpdateViaIdentityExpanded+$PATCH+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-n7wfxi?api-version=2018-10-31+2": { + "Request": { + "Method": "PATCH", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-n7wfxi?api-version=2018-10-31", + "Content": "{\r\n \"tags\": {\r\n \"key4\": \"4\",\r\n \"key3\": \"3\",\r\n \"key1\": \"1\",\r\n \"key2\": \"2\"\r\n }\r\n}", + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "93" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-keyvault-service-version": [ "1.1.55.0" ], + "x-ms-request-id": [ "9396e57d-ffe9-41dc-9653-e2e1649ce01e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Server": [ "Microsoft-IIS/10.0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], + "x-ms-correlation-request-id": [ "850f27a7-e00c-48e3-a8b7-ee6f71bc6b7c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200922T080758Z:850f27a7-e00c-48e3-a8b7-ee6f71bc6b7c" ], + "Date": [ "Tue, 22 Sep 2020 08:07:58 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "936" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"sku\":{\"name\":\"SafeNet Luna Network HSM A790\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.HardwareSecurityModules/dedicatedHSMs/hsm-n7wfxi\",\"name\":\"hsm-n7wfxi\",\"type\":\"Microsoft.HardwareSecurityModules/dedicatedHSMs\",\"location\":\"eastus\",\"tags\":{\"key4\":\"4\",\"key3\":\"3\",\"key1\":\"1\",\"key2\":\"2\"},\"properties\":{\"networkProfile\":{\"subnet\":{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.Network/virtualNetworks/vnetq30la9/subnets/hsmsubnet\"},\"networkInterfaces\":[{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.Network/networkInterfaces/hsm-n7wfxi_HSMnic\",\"privateIpAddress\":\"10.2.1.120\"}]},\"provisioningState\":\"Succeeded\",\"statusMessage\":\"The Dedicated HSM device is provisioned successfully and ready to use.\",\"stampId\":\"stamp1\"}}" + } + } +} \ No newline at end of file diff --git a/src/DedicatedHsm/test/Update-AzDedicatedHsm.Tests.ps1 b/src/DedicatedHsm/test/Update-AzDedicatedHsm.Tests.ps1 new file mode 100644 index 000000000000..63b1df9c7254 --- /dev/null +++ b/src/DedicatedHsm/test/Update-AzDedicatedHsm.Tests.ps1 @@ -0,0 +1,27 @@ +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' +} +. ($loadEnvPath) +$TestRecordingFile = Join-Path $PSScriptRoot 'Update-AzDedicatedHsm.Recording.json' +$currentPath = $PSScriptRoot +while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent +} +. ($mockingPath | Select-Object -First 1).FullName + +Describe 'Update-AzDedicatedHsm' { + It 'UpdateExpanded' { + $tag = @{'key1' = '1'; 'key2' = 2; 'key3' = 3} + $hsm = Update-AzDedicatedHsm -Name $env.dedicatedHsmName01 -ResourceGroupName $env.resourceGroup -Tag $tag + $hsm.Tag.Count | Should -Be $tag.Count + } + + It 'UpdateViaIdentityExpanded' { + $tag = @{'key1' = '1'; 'key2' = 2; 'key3' = 3; 'key4' = 4} + $hsm = Get-AzDedicatedHsm -Name $env.dedicatedHsmName01 -ResourceGroupName $env.resourceGroup + $hsm = Update-AzDedicatedHsm -InputObject $hsm -Tag $tag + $hsm.Tag.Count | Should -Be $tag.Count + } +} diff --git a/src/DedicatedHsm/test/deployment-templates/public-ipaddress/parameters.json b/src/DedicatedHsm/test/deployment-templates/public-ipaddress/parameters.json new file mode 100644 index 000000000000..07900c19d884 --- /dev/null +++ b/src/DedicatedHsm/test/deployment-templates/public-ipaddress/parameters.json @@ -0,0 +1,9 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "publicIPAddresses_GWIP_name": { + "value": "publicipamgop9" + } + } +} diff --git a/src/DedicatedHsm/test/deployment-templates/public-ipaddress/template.json b/src/DedicatedHsm/test/deployment-templates/public-ipaddress/template.json new file mode 100644 index 000000000000..a9251c6a5836 --- /dev/null +++ b/src/DedicatedHsm/test/deployment-templates/public-ipaddress/template.json @@ -0,0 +1,29 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "publicIPAddresses_GWIP_name": { + "defaultValue": "GWIP", + "type": "String" + } + }, + "variables": {}, + "resources": [ + { + "type": "Microsoft.Network/publicIPAddresses", + "apiVersion": "2020-05-01", + "name": "[parameters('publicIPAddresses_GWIP_name')]", + "location": "eastus", + "sku": { + "name": "Basic" + }, + "properties": { + "ipAddress": "40.117.94.162", + "publicIPAddressVersion": "IPv4", + "publicIPAllocationMethod": "Dynamic", + "idleTimeoutInMinutes": 4, + "ipTags": [] + } + } + ] +} \ No newline at end of file diff --git a/src/DedicatedHsm/test/deployment-templates/security-network-group/parameters.json b/src/DedicatedHsm/test/deployment-templates/security-network-group/parameters.json new file mode 100644 index 000000000000..7e1c55e0281f --- /dev/null +++ b/src/DedicatedHsm/test/deployment-templates/security-network-group/parameters.json @@ -0,0 +1,9 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "networkSecurityGroups_myHSM_vnet_compute_NRMS_name": { + "value": "vnetSecurityGroup3yijzr" + } + } +} diff --git a/src/DedicatedHsm/test/deployment-templates/security-network-group/template.json b/src/DedicatedHsm/test/deployment-templates/security-network-group/template.json new file mode 100644 index 000000000000..9a2dcb4bc8cf --- /dev/null +++ b/src/DedicatedHsm/test/deployment-templates/security-network-group/template.json @@ -0,0 +1,497 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "networkSecurityGroups_myHSM_vnet_compute_NRMS_name": { + "defaultValue": "myHSM-vnet-compute-NRMS", + "type": "String" + } + }, + "variables": {}, + "resources": [ + { + "type": "Microsoft.Network/networkSecurityGroups", + "apiVersion": "2020-05-01", + "name": "[parameters('networkSecurityGroups_myHSM_vnet_compute_NRMS_name')]", + "location": "eastus", + "tags": { + "Creator": "Automatically added by NRMS Azure Policy", + "NRMS-Info": "http://aka.ms/nrms", + "NRMS-Version": "2019-03-20" + }, + "properties": { + "securityRules": [ + { + "name": "SecurityCenter-JITRule_-273834414_2F6BFB1A0B894F098F5B70D426F97EA1", + "properties": { + "description": "ASC JIT Network Access rule for policy 'default' of VM 'hsm-jumpbox'.", + "protocol": "*", + "sourcePortRange": "*", + "destinationPortRange": "22", + "sourceAddressPrefix": "*", + "destinationAddressPrefix": "10.2.0.4", + "access": "Deny", + "priority": 4096, + "direction": "Inbound", + "sourcePortRanges": [], + "destinationPortRanges": [], + "sourceAddressPrefixes": [], + "destinationAddressPrefixes": [] + } + }, + { + "name": "NRMS-Rule-109", + "properties": { + "description": "DO NOT DELETE - Will result in ICM Sev 2 - Azure Core Security, see aka.ms/cainsgpolicy", + "protocol": "*", + "sourcePortRange": "*", + "sourceAddressPrefix": "Internet", + "destinationAddressPrefix": "*", + "access": "Deny", + "priority": 109, + "direction": "Inbound", + "sourcePortRanges": [], + "destinationPortRanges": [ + "119", + "137", + "138", + "139", + "161", + "162", + "389", + "636", + "2049", + "2301", + "2381", + "3268", + "5800", + "5900" + ], + "sourceAddressPrefixes": [], + "destinationAddressPrefixes": [] + } + }, + { + "name": "NRMS-Rule-108", + "properties": { + "description": "DO NOT DELETE - Will result in ICM Sev 2 - Azure Core Security, see aka.ms/cainsgpolicy", + "protocol": "*", + "sourcePortRange": "*", + "sourceAddressPrefix": "Internet", + "destinationAddressPrefix": "*", + "access": "Deny", + "priority": 108, + "direction": "Inbound", + "sourcePortRanges": [], + "destinationPortRanges": [ + "13", + "17", + "19", + "53", + "69", + "111", + "123", + "512", + "514", + "593", + "873", + "1900", + "5353", + "11211" + ], + "sourceAddressPrefixes": [], + "destinationAddressPrefixes": [] + } + }, + { + "name": "NRMS-Rule-107", + "properties": { + "description": "DO NOT DELETE - Will result in ICM Sev 2 - Azure Core Security, see aka.ms/cainsgpolicy", + "protocol": "Tcp", + "sourcePortRange": "*", + "sourceAddressPrefix": "Internet", + "destinationAddressPrefix": "*", + "access": "Deny", + "priority": 107, + "direction": "Inbound", + "sourcePortRanges": [], + "destinationPortRanges": [ + "23", + "135", + "445", + "5985", + "5986" + ], + "sourceAddressPrefixes": [], + "destinationAddressPrefixes": [] + } + }, + { + "name": "NRMS-Rule-106", + "properties": { + "description": "DO NOT DELETE - Will result in ICM Sev 2 - Azure Core Security, see aka.ms/cainsgpolicy", + "protocol": "Tcp", + "sourcePortRange": "*", + "sourceAddressPrefix": "Internet", + "destinationAddressPrefix": "*", + "access": "Deny", + "priority": 106, + "direction": "Inbound", + "sourcePortRanges": [], + "destinationPortRanges": [ + "22", + "3389" + ], + "sourceAddressPrefixes": [], + "destinationAddressPrefixes": [] + } + }, + { + "name": "NRMS-Rule-105", + "properties": { + "description": "DO NOT DELETE - Will result in ICM Sev 2 - Azure Core Security, see aka.ms/cainsgpolicy", + "protocol": "*", + "sourcePortRange": "*", + "sourceAddressPrefix": "Internet", + "destinationAddressPrefix": "*", + "access": "Deny", + "priority": 105, + "direction": "Inbound", + "sourcePortRanges": [], + "destinationPortRanges": [ + "1433", + "1434", + "3306", + "4333", + "5432", + "6379", + "7000", + "7001", + "7199", + "9042", + "9160", + "9300", + "16379", + "26379", + "27017" + ], + "sourceAddressPrefixes": [], + "destinationAddressPrefixes": [] + } + }, + { + "name": "NRMS-Rule-104", + "properties": { + "description": "Created by Azure Core Security managed policy, rule can be deleted but do not change source ips, please see aka.ms/cainsgpolicy", + "protocol": "*", + "sourcePortRange": "*", + "destinationPortRange": "*", + "sourceAddressPrefix": "CorpNetSaw", + "destinationAddressPrefix": "*", + "access": "Allow", + "priority": 104, + "direction": "Inbound", + "sourcePortRanges": [], + "destinationPortRanges": [], + "sourceAddressPrefixes": [], + "destinationAddressPrefixes": [] + } + }, + { + "name": "NRMS-Rule-103", + "properties": { + "description": "Created by Azure Core Security managed policy, rule can be deleted but do not change source ips, please see aka.ms/cainsgpolicy", + "protocol": "*", + "sourcePortRange": "*", + "destinationPortRange": "*", + "sourceAddressPrefix": "CorpNetPublic", + "destinationAddressPrefix": "*", + "access": "Allow", + "priority": 103, + "direction": "Inbound", + "sourcePortRanges": [], + "destinationPortRanges": [], + "sourceAddressPrefixes": [], + "destinationAddressPrefixes": [] + } + }, + { + "name": "NRMS-Rule-101", + "properties": { + "description": "Created by Azure Core Security managed policy, placeholder you can delete, please see aka.ms/cainsgpolicy", + "protocol": "Tcp", + "sourcePortRange": "*", + "destinationPortRange": "443", + "sourceAddressPrefix": "VirtualNetwork", + "destinationAddressPrefix": "*", + "access": "Allow", + "priority": 101, + "direction": "Inbound", + "sourcePortRanges": [], + "destinationPortRanges": [], + "sourceAddressPrefixes": [], + "destinationAddressPrefixes": [] + } + } + ] + } + }, + { + "type": "Microsoft.Network/networkSecurityGroups/securityRules", + "apiVersion": "2020-05-01", + "name": "[concat(parameters('networkSecurityGroups_myHSM_vnet_compute_NRMS_name'), '/NRMS-Rule-101')]", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_myHSM_vnet_compute_NRMS_name'))]" + ], + "properties": { + "description": "Created by Azure Core Security managed policy, placeholder you can delete, please see aka.ms/cainsgpolicy", + "protocol": "Tcp", + "sourcePortRange": "*", + "destinationPortRange": "443", + "sourceAddressPrefix": "VirtualNetwork", + "destinationAddressPrefix": "*", + "access": "Allow", + "priority": 101, + "direction": "Inbound", + "sourcePortRanges": [], + "destinationPortRanges": [], + "sourceAddressPrefixes": [], + "destinationAddressPrefixes": [] + } + }, + { + "type": "Microsoft.Network/networkSecurityGroups/securityRules", + "apiVersion": "2020-05-01", + "name": "[concat(parameters('networkSecurityGroups_myHSM_vnet_compute_NRMS_name'), '/NRMS-Rule-103')]", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_myHSM_vnet_compute_NRMS_name'))]" + ], + "properties": { + "description": "Created by Azure Core Security managed policy, rule can be deleted but do not change source ips, please see aka.ms/cainsgpolicy", + "protocol": "*", + "sourcePortRange": "*", + "destinationPortRange": "*", + "sourceAddressPrefix": "CorpNetPublic", + "destinationAddressPrefix": "*", + "access": "Allow", + "priority": 103, + "direction": "Inbound", + "sourcePortRanges": [], + "destinationPortRanges": [], + "sourceAddressPrefixes": [], + "destinationAddressPrefixes": [] + } + }, + { + "type": "Microsoft.Network/networkSecurityGroups/securityRules", + "apiVersion": "2020-05-01", + "name": "[concat(parameters('networkSecurityGroups_myHSM_vnet_compute_NRMS_name'), '/NRMS-Rule-104')]", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_myHSM_vnet_compute_NRMS_name'))]" + ], + "properties": { + "description": "Created by Azure Core Security managed policy, rule can be deleted but do not change source ips, please see aka.ms/cainsgpolicy", + "protocol": "*", + "sourcePortRange": "*", + "destinationPortRange": "*", + "sourceAddressPrefix": "CorpNetSaw", + "destinationAddressPrefix": "*", + "access": "Allow", + "priority": 104, + "direction": "Inbound", + "sourcePortRanges": [], + "destinationPortRanges": [], + "sourceAddressPrefixes": [], + "destinationAddressPrefixes": [] + } + }, + { + "type": "Microsoft.Network/networkSecurityGroups/securityRules", + "apiVersion": "2020-05-01", + "name": "[concat(parameters('networkSecurityGroups_myHSM_vnet_compute_NRMS_name'), '/NRMS-Rule-105')]", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_myHSM_vnet_compute_NRMS_name'))]" + ], + "properties": { + "description": "DO NOT DELETE - Will result in ICM Sev 2 - Azure Core Security, see aka.ms/cainsgpolicy", + "protocol": "*", + "sourcePortRange": "*", + "sourceAddressPrefix": "Internet", + "destinationAddressPrefix": "*", + "access": "Deny", + "priority": 105, + "direction": "Inbound", + "sourcePortRanges": [], + "destinationPortRanges": [ + "1433", + "1434", + "3306", + "4333", + "5432", + "6379", + "7000", + "7001", + "7199", + "9042", + "9160", + "9300", + "16379", + "26379", + "27017" + ], + "sourceAddressPrefixes": [], + "destinationAddressPrefixes": [] + } + }, + { + "type": "Microsoft.Network/networkSecurityGroups/securityRules", + "apiVersion": "2020-05-01", + "name": "[concat(parameters('networkSecurityGroups_myHSM_vnet_compute_NRMS_name'), '/NRMS-Rule-106')]", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_myHSM_vnet_compute_NRMS_name'))]" + ], + "properties": { + "description": "DO NOT DELETE - Will result in ICM Sev 2 - Azure Core Security, see aka.ms/cainsgpolicy", + "protocol": "Tcp", + "sourcePortRange": "*", + "sourceAddressPrefix": "Internet", + "destinationAddressPrefix": "*", + "access": "Deny", + "priority": 106, + "direction": "Inbound", + "sourcePortRanges": [], + "destinationPortRanges": [ + "22", + "3389" + ], + "sourceAddressPrefixes": [], + "destinationAddressPrefixes": [] + } + }, + { + "type": "Microsoft.Network/networkSecurityGroups/securityRules", + "apiVersion": "2020-05-01", + "name": "[concat(parameters('networkSecurityGroups_myHSM_vnet_compute_NRMS_name'), '/NRMS-Rule-107')]", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_myHSM_vnet_compute_NRMS_name'))]" + ], + "properties": { + "description": "DO NOT DELETE - Will result in ICM Sev 2 - Azure Core Security, see aka.ms/cainsgpolicy", + "protocol": "Tcp", + "sourcePortRange": "*", + "sourceAddressPrefix": "Internet", + "destinationAddressPrefix": "*", + "access": "Deny", + "priority": 107, + "direction": "Inbound", + "sourcePortRanges": [], + "destinationPortRanges": [ + "23", + "135", + "445", + "5985", + "5986" + ], + "sourceAddressPrefixes": [], + "destinationAddressPrefixes": [] + } + }, + { + "type": "Microsoft.Network/networkSecurityGroups/securityRules", + "apiVersion": "2020-05-01", + "name": "[concat(parameters('networkSecurityGroups_myHSM_vnet_compute_NRMS_name'), '/NRMS-Rule-108')]", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_myHSM_vnet_compute_NRMS_name'))]" + ], + "properties": { + "description": "DO NOT DELETE - Will result in ICM Sev 2 - Azure Core Security, see aka.ms/cainsgpolicy", + "protocol": "*", + "sourcePortRange": "*", + "sourceAddressPrefix": "Internet", + "destinationAddressPrefix": "*", + "access": "Deny", + "priority": 108, + "direction": "Inbound", + "sourcePortRanges": [], + "destinationPortRanges": [ + "13", + "17", + "19", + "53", + "69", + "111", + "123", + "512", + "514", + "593", + "873", + "1900", + "5353", + "11211" + ], + "sourceAddressPrefixes": [], + "destinationAddressPrefixes": [] + } + }, + { + "type": "Microsoft.Network/networkSecurityGroups/securityRules", + "apiVersion": "2020-05-01", + "name": "[concat(parameters('networkSecurityGroups_myHSM_vnet_compute_NRMS_name'), '/NRMS-Rule-109')]", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_myHSM_vnet_compute_NRMS_name'))]" + ], + "properties": { + "description": "DO NOT DELETE - Will result in ICM Sev 2 - Azure Core Security, see aka.ms/cainsgpolicy", + "protocol": "*", + "sourcePortRange": "*", + "sourceAddressPrefix": "Internet", + "destinationAddressPrefix": "*", + "access": "Deny", + "priority": 109, + "direction": "Inbound", + "sourcePortRanges": [], + "destinationPortRanges": [ + "119", + "137", + "138", + "139", + "161", + "162", + "389", + "636", + "2049", + "2301", + "2381", + "3268", + "5800", + "5900" + ], + "sourceAddressPrefixes": [], + "destinationAddressPrefixes": [] + } + }, + { + "type": "Microsoft.Network/networkSecurityGroups/securityRules", + "apiVersion": "2020-05-01", + "name": "[concat(parameters('networkSecurityGroups_myHSM_vnet_compute_NRMS_name'), '/SecurityCenter-JITRule_-273834414_2F6BFB1A0B894F098F5B70D426F97EA1')]", + "dependsOn": [ + "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('networkSecurityGroups_myHSM_vnet_compute_NRMS_name'))]" + ], + "properties": { + "description": "ASC JIT Network Access rule for policy 'default' of VM 'hsm-jumpbox'.", + "protocol": "*", + "sourcePortRange": "*", + "destinationPortRange": "22", + "sourceAddressPrefix": "*", + "destinationAddressPrefix": "10.2.0.4", + "access": "Deny", + "priority": 4096, + "direction": "Inbound", + "sourcePortRanges": [], + "destinationPortRanges": [], + "sourceAddressPrefixes": [], + "destinationAddressPrefixes": [] + } + } + ] +} \ No newline at end of file diff --git a/src/DedicatedHsm/test/deployment-templates/virtual-network-gateway/parameters.json b/src/DedicatedHsm/test/deployment-templates/virtual-network-gateway/parameters.json new file mode 100644 index 000000000000..951719703fa3 --- /dev/null +++ b/src/DedicatedHsm/test/deployment-templates/virtual-network-gateway/parameters.json @@ -0,0 +1,15 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "virtualNetworkGateways_GW_name": { + "value": "vnetGatewayg2xzfa" + }, + "publicIPAddresses_GWIP_externalid": { + "value": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.Network/publicIPAddresses/publicipamgop9" + }, + "virtualNetworks_myHSM_vnet_externalid": { + "value": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.Network/virtualNetworks/vnetq30la9" + } + } +} diff --git a/src/DedicatedHsm/test/deployment-templates/virtual-network-gateway/template.json b/src/DedicatedHsm/test/deployment-templates/virtual-network-gateway/template.json new file mode 100644 index 000000000000..e3198459b016 --- /dev/null +++ b/src/DedicatedHsm/test/deployment-templates/virtual-network-gateway/template.json @@ -0,0 +1,53 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "virtualNetworkGateways_GW_name": { + "defaultValue": "GW", + "type": "String" + }, + "publicIPAddresses_GWIP_externalid": { + "defaultValue": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/yemingdhsm/providers/Microsoft.Network/publicIPAddresses/GWIP", + "type": "String" + }, + "virtualNetworks_myHSM_vnet_externalid": { + "defaultValue": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/yemingdhsm/providers/Microsoft.Network/virtualNetworks/myHSM-vnet", + "type": "String" + } + }, + "variables": {}, + "resources": [ + { + "type": "Microsoft.Network/virtualNetworkGateways", + "apiVersion": "2020-05-01", + "name": "[parameters('virtualNetworkGateways_GW_name')]", + "location": "eastus", + "properties": { + "enablePrivateIpAddress": false, + "ipConfigurations": [ + { + "name": "gwipconf", + "properties": { + "privateIPAllocationMethod": "Dynamic", + "publicIPAddress": { + "id": "[parameters('publicIPAddresses_GWIP_externalid')]" + }, + "subnet": { + "id": "[concat(parameters('virtualNetworks_myHSM_vnet_externalid'), '/subnets/GatewaySubnet')]" + } + } + } + ], + "sku": { + "name": "Standard", + "tier": "Standard" + }, + "gatewayType": "ExpressRoute", + "vpnType": "PolicyBased", + "enableBgp": false, + "activeActive": false, + "vpnGatewayGeneration": "None" + } + } + ] +} \ No newline at end of file diff --git a/src/DedicatedHsm/test/deployment-templates/virtual-network/parameters.json b/src/DedicatedHsm/test/deployment-templates/virtual-network/parameters.json new file mode 100644 index 000000000000..6396b1cde164 --- /dev/null +++ b/src/DedicatedHsm/test/deployment-templates/virtual-network/parameters.json @@ -0,0 +1,12 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "virtualNetworks_myHSM_vnet_name": { + "value": "vnetq30la9" + }, + "networkSecurityGroups_myHSM_vnet_compute_NRMS_externalid": { + "value": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.Network/networkSecurityGroups/vnetSecurityGroup3yijzr" + } + } +} diff --git a/src/DedicatedHsm/test/deployment-templates/virtual-network/template.json b/src/DedicatedHsm/test/deployment-templates/virtual-network/template.json new file mode 100644 index 000000000000..62a661d6d153 --- /dev/null +++ b/src/DedicatedHsm/test/deployment-templates/virtual-network/template.json @@ -0,0 +1,130 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "virtualNetworks_myHSM_vnet_name": { + "defaultValue": "myHSM-vnet", + "type": "String" + }, + "networkSecurityGroups_myHSM_vnet_compute_NRMS_externalid": { + "defaultValue": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/yemingdhsm/providers/Microsoft.Network/networkSecurityGroups/myHSM-vnet-compute-NRMS", + "type": "String" + } + }, + "variables": {}, + "resources": [ + { + "type": "Microsoft.Network/virtualNetworks", + "apiVersion": "2020-05-01", + "name": "[parameters('virtualNetworks_myHSM_vnet_name')]", + "location": "eastus", + "properties": { + "addressSpace": { + "addressPrefixes": [ + "10.2.0.0/16" + ] + }, + "subnets": [ + { + "name": "hsmsubnet", + "properties": { + "addressPrefix": "10.2.1.0/24", + "serviceEndpoints": [], + "delegations": [ + { + "name": "myDelegation", + "properties": { + "serviceName": "Microsoft.HardwareSecurityModules/dedicatedHSMs" + } + } + ], + "privateEndpointNetworkPolicies": "Enabled", + "privateLinkServiceNetworkPolicies": "Enabled" + } + }, + { + "name": "GatewaySubnet", + "properties": { + "addressPrefix": "10.2.255.0/26", + "serviceEndpoints": [], + "delegations": [], + "privateEndpointNetworkPolicies": "Enabled", + "privateLinkServiceNetworkPolicies": "Enabled" + } + }, + { + "name": "compute", + "properties": { + "addressPrefix": "10.2.0.0/24", + "networkSecurityGroup": { + "id": "[parameters('networkSecurityGroups_myHSM_vnet_compute_NRMS_externalid')]" + }, + "serviceEndpoints": [], + "delegations": [], + "privateEndpointNetworkPolicies": "Enabled", + "privateLinkServiceNetworkPolicies": "Enabled" + } + } + ], + "virtualNetworkPeerings": [], + "enableDdosProtection": false, + "enableVmProtection": false + } + }, + { + "type": "Microsoft.Network/virtualNetworks/subnets", + "apiVersion": "2020-05-01", + "name": "[concat(parameters('virtualNetworks_myHSM_vnet_name'), '/compute')]", + "dependsOn": [ + "[resourceId('Microsoft.Network/virtualNetworks', parameters('virtualNetworks_myHSM_vnet_name'))]" + ], + "properties": { + "addressPrefix": "10.2.0.0/24", + "networkSecurityGroup": { + "id": "[parameters('networkSecurityGroups_myHSM_vnet_compute_NRMS_externalid')]" + }, + "serviceEndpoints": [], + "delegations": [], + "privateEndpointNetworkPolicies": "Enabled", + "privateLinkServiceNetworkPolicies": "Enabled" + } + }, + { + "type": "Microsoft.Network/virtualNetworks/subnets", + "apiVersion": "2020-05-01", + "name": "[concat(parameters('virtualNetworks_myHSM_vnet_name'), '/GatewaySubnet')]", + "dependsOn": [ + "[resourceId('Microsoft.Network/virtualNetworks', parameters('virtualNetworks_myHSM_vnet_name'))]" + ], + "properties": { + "addressPrefix": "10.2.255.0/26", + "serviceEndpoints": [], + "delegations": [], + "privateEndpointNetworkPolicies": "Enabled", + "privateLinkServiceNetworkPolicies": "Enabled" + } + }, + { + "type": "Microsoft.Network/virtualNetworks/subnets", + "apiVersion": "2020-05-01", + "name": "[concat(parameters('virtualNetworks_myHSM_vnet_name'), '/hsmsubnet')]", + "dependsOn": [ + "[resourceId('Microsoft.Network/virtualNetworks', parameters('virtualNetworks_myHSM_vnet_name'))]" + ], + "properties": { + "addressPrefix": "10.2.1.0/24", + "serviceEndpoints": [], + "delegations": [ + { + "name": "myDelegation", + "properties": { + "serviceName": "Microsoft.HardwareSecurityModules/dedicatedHSMs" + } + } + ], + "privateEndpointNetworkPolicies": "Enabled", + "privateLinkServiceNetworkPolicies": "Enabled" + } + } + ] +} \ No newline at end of file diff --git a/src/DedicatedHsm/test/env.json b/src/DedicatedHsm/test/env.json new file mode 100644 index 000000000000..9962f6c5deef --- /dev/null +++ b/src/DedicatedHsm/test/env.json @@ -0,0 +1,14 @@ +{ + "location": "eastus", + "publicIpAddressId": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.Network/publicIPAddresses/publicipamgop9", + "resourceGroup": "dedicatedhsm-rg-n359cz", + "dedicatedHsmName03": "hsm-glhjus", + "vnetSubnetId": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.Network/virtualNetworks/vnetq30la9/subnets/hsmsubnet", + "vnetGatewayId": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.Network/virtualNetworkGateways/vnetGatewayg2xzfa", + "Tenant": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "dedicatedHsmName01": "hsm-n7wfxi", + "dedicatedHsmName02": "hsm-qodygz", + "virtulaNetworkId": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.Network/virtualNetworks/vnetq30la9", + "SubscriptionId": "9e223dbe-3399-4e19-88eb-0975f02ac87f", + "vnetSecurityId": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dedicatedhsm-rg-n359cz/providers/Microsoft.Network/networkSecurityGroups/vnetSecurityGroup3yijzr" +} diff --git a/src/DedicatedHsm/test/loadEnv.ps1 b/src/DedicatedHsm/test/loadEnv.ps1 new file mode 100644 index 000000000000..c4ebf2e8310c --- /dev/null +++ b/src/DedicatedHsm/test/loadEnv.ps1 @@ -0,0 +1,28 @@ +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- +$envFile = 'env.json' +if ($TestMode -eq 'live') { + $envFile = 'localEnv.json' +} + +if (Test-Path -Path (Join-Path $PSScriptRoot $envFile)) { + $envFilePath = Join-Path $PSScriptRoot $envFile +} else { + $envFilePath = Join-Path $PSScriptRoot '..\$envFile' +} +$env = @{} +if (Test-Path -Path $envFilePath) { + $env = Get-Content (Join-Path $PSScriptRoot $envFile) | ConvertFrom-Json + $PSDefaultParameterValues=@{"*:SubscriptionId"=$env.SubscriptionId; "*:Tenant"=$env.Tenant} +} \ No newline at end of file diff --git a/src/DedicatedHsm/test/readme.md b/src/DedicatedHsm/test/readme.md new file mode 100644 index 000000000000..7c752b4c8c43 --- /dev/null +++ b/src/DedicatedHsm/test/readme.md @@ -0,0 +1,17 @@ +# Test +This directory contains the [Pester](https://www.powershellgallery.com/packages/Pester) tests to run for the module. We use Pester as it is the unofficial standard for PowerShell unit testing. Test stubs for custom cmdlets (created in `..\custom`) will be generated into this folder when `build-module.ps1` is ran. These test stubs will fail automatically, to indicate that tests should be written for custom cmdlets. + +## Info +- Modifiable: yes +- Generated: partial +- Committed: yes +- Packaged: no + +## Details +We allow three testing modes: *live*, *record*, and *playback*. These can be selected using the `-Live`, `-Record`, and `-Playback` switches respectively on the `test-module.ps1` script. This script will run through any `.Tests.ps1` scripts in the `test` folder. If you choose the *record* mode, it will create a `.Recording.json` file of the REST calls between the client and server. Then, when you choose *playback* mode, it will use the `.Recording.json` file to mock the communication between server and client. The *live* mode runs the same as the *record* mode; however, it doesn't create the `.Recording.json` file. + +## Purpose +Custom cmdlets generally encompass additional functionality not described in the REST specification, or combines functionality generated from the REST spec. To validate this functionality continues to operate as intended, creating tests that can be ran and re-ran against custom cmdlets is part of the framework. + +## Usage +To execute tests, run the `test-module.ps1`. To write tests, [this example](https://github.com/pester/Pester/blob/8b9cf4248315e44f1ac6673be149f7e0d7f10466/Examples/Planets/Get-Planet.Tests.ps1#L1) from the Pester repository is very useful for getting started. \ No newline at end of file diff --git a/src/DedicatedHsm/test/test-dedicated-hsm.ps1 b/src/DedicatedHsm/test/test-dedicated-hsm.ps1 new file mode 100644 index 000000000000..3331236c7c91 --- /dev/null +++ b/src/DedicatedHsm/test/test-dedicated-hsm.ps1 @@ -0,0 +1,31 @@ +$RG = 'yemingdhsm' +$Location = 'eastus' +$GWName = 'GW' +$GwIpName = 'GWIP' +$GwIpConfName = 'gwipconf' +$VNetName = 'myHSM-vnet' +$hsmSubnetName = 'hsmsubnet' +$hsmName = 'yeminghsm' + +# Prerequisite 1: A vnet and subnets +$computeSubnet = New-AzVirtualNetworkSubnetConfig -Name compute -AddressPrefix 10.2.0.0/24 +$delegation = New-AzDelegation -Name "myDelegation" -ServiceName "Microsoft.HardwareSecurityModules/dedicatedHSMs" +$hsmSubnet = New-AzVirtualNetworkSubnetConfig -Name $hsmSubnetName -AddressPrefix 10.2.1.0/24 -Delegation $delegation +$gatewaySubnet = New-AzVirtualNetworkSubnetConfig -Name GatewaySubnet -AddressPrefix 10.2.255.0/26 # gateway subnet name MUST be "GatewaySubnet" +New-AzVirtualNetwork -Name $VNetName -ResourceGroupName $RG -Location $Location -AddressPrefix 10.2.0.0/16 -Subnet $computeSubnet, $hsmSubnet, $gatewaySubnet + +# Prerequisite 2: An ExpressRoute gateway +# follow "Configure a virtual network gateway for ExpressRoute using PowerShell" +# https://docs.microsoft.com/en-us/azure/expressroute/expressroute-howto-add-gateway-resource-manager +$vnet = Get-AzVirtualNetwork -Name $VNetName -ResourceGroupName $RG +$gatewaySubnet = Get-AzVirtualNetworkSubnetConfig -Name 'GatewaySubnet' -VirtualNetwork $vnet +$pip = New-AzPublicIpAddress -Name $GwIpName -ResourceGroupName $RG -Location $Location -AllocationMethod Dynamic +$ipConfig = New-AzVirtualNetworkGatewayIpConfig -Name $GwIpConfName -Subnet $gatewaySubnet -PublicIpAddress $pip +New-AzVirtualNetworkGateway -Name $GWName -ResourceGroupName $RG -Location $Location -IpConfigurations $ipConfig -GatewayType ExpressRoute -GatewaySku Standard + +# Create a dedicated HSM +$hsmSubnet = Get-AzVirtualNetworkSubnetConfig -Name $hsmSubnetName -VirtualNetwork $vnet +New-AzDedicatedHsm -Name $hsmName -ResourceGroupName $RG -Location $Location -Sku "SafeNet Luna Network HSM A790" -StampId stamp1 -SubnetId $hsmSubnet.Id -NetworkProfileNetworkInterface @{PrivateIPAddress = '10.2.1.120' } +# after creating, the provisioning state of dedicated hsm is not successful yet +# need to wait ~30 minutes and call get- to make sure it's done +Get-AzDedicatedHsm -Name $hsmName -ResourceGroupName $RG diff --git a/src/DedicatedHsm/test/utils.ps1 b/src/DedicatedHsm/test/utils.ps1 new file mode 100644 index 000000000000..6bfaf23f49bf --- /dev/null +++ b/src/DedicatedHsm/test/utils.ps1 @@ -0,0 +1,87 @@ +function RandomString([bool]$allChars, [int32]$len) { + if ($allChars) { + return -join ((33..126) | Get-Random -Count $len | % {[char]$_}) + } else { + return -join ((48..57) + (97..122) | Get-Random -Count $len | % {[char]$_}) + } +} +$env = @{} +function setupEnv() { + # Preload subscriptionId and tenant from context, which will be used in test + # as default. You could change them if needed. + $env.SubscriptionId = (Get-AzContext).Subscription.Id + $env.Tenant = (Get-AzContext).Tenant.Id + # For any resources you created for test, you should add it to $env here. + $env.resourceGroup = 'dedicatedhsm-rg-' + (RandomString -allChars $false -len 6) + $env.location = 'eastus' + + $dedicatedHsmName01 = 'hsm-' + (RandomString -allChars $false -len 6) + $dedicatedHsmName02 = 'hsm-' + (RandomString -allChars $false -len 6) + $dedicatedHsmName03 = 'hsm-' + (RandomString -allChars $false -len 6) + $env.Add('dedicatedHsmName01', $dedicatedHsmName01) + $env.Add('dedicatedHsmName02', $dedicatedHsmName02) + $env.Add('dedicatedHsmName03', $dedicatedHsmName03) + Write-Host "start to create test group" + New-AzResourceGroup -Name $env.resourceGroup -Location $env.location + + # Deploy public ip address + Write-Host -ForegroundColor Green "Deploying public ip address" + $publicIpName = "publicip" + (RandomString -allChars $false -len 6) + $publicIpPara = Get-Content .\test\deployment-templates\public-ipaddress\parameters.json | ConvertFrom-Json + $publicIpPara.parameters.publicIPAddresses_GWIP_name.Value = $publicIpName + Set-Content -Path .\test\deployment-templates\public-ipaddress\parameters.json -Value (ConvertTo-Json $publicIpPara) + New-AzDeployment -Mode Incremental -TemplateFile .\test\deployment-templates\public-ipaddress\template.json -TemplateParameterFile .\test\deployment-templates\public-ipaddress\parameters.json -Name $publicIpName -ResourceGroupName $env.resourceGroup + $env.publicIpAddressId = "/subscriptions/$($env.SubscriptionId)/resourceGroups/$($env.resourceGroup)/providers/Microsoft.Network/publicIPAddresses/$publicIpName" + Write-Host -ForegroundColor Green "Deploy public ip address completed." + + # Deploy network security group for test + Write-Host -ForegroundColor Green "Deploying network security group" + $vnetSecurityName = "vnetSecurityGroup" + (RandomString -allChars $false -len 6) + $vnetSecurityPara = Get-Content .\test\deployment-templates\security-network-group\parameters.json | ConvertFrom-Json + $vnetSecurityPara.parameters.networkSecurityGroups_myHSM_vnet_compute_NRMS_name.Value = $vnetSecurityName + Set-Content -Path .\test\deployment-templates\security-network-group\parameters.json -Value (ConvertTo-Json $vnetSecurityPara) + New-AzDeployment -Mode Incremental -TemplateFile .\test\deployment-templates\security-network-group\template.json -TemplateParameterFile .\test\deployment-templates\security-network-group\parameters.json -Name $vnetSecurityName -ResourceGroupName $env.resourceGroup + $env.vnetSecurityId = "/subscriptions/$($env.SubscriptionId)/resourceGroups/$($env.resourceGroup)/providers/Microsoft.Network/networkSecurityGroups/$vnetSecurityName" + Write-Host -ForegroundColor Green "Deploy network security group completed." + + # Deploy virtual network for test + Write-Host -ForegroundColor Green "Deploying virtual network" + $vnetName = "vnet" + (RandomString -allChars $false -len 6) + $vnetPara = Get-Content .\test\deployment-templates\virtual-network\parameters.json | ConvertFrom-Json + $vnetPara.parameters.virtualNetworks_myHSM_vnet_name.value = $vnetName + $vnetPara.parameters.networkSecurityGroups_myHSM_vnet_compute_NRMS_externalid.value = $env.vnetSecurityId + Set-Content -Path .\test\deployment-templates\virtual-network\parameters.json -Value (ConvertTo-Json $vnetPara) + New-AzDeployment -Mode Incremental -TemplateFile .\test\deployment-templates\virtual-network\template.json -TemplateParameterFile .\test\deployment-templates\virtual-network\parameters.json -Name $vnetName -ResourceGroupName $env.resourceGroup + $env.virtulaNetworkId = "/subscriptions/$($env.SubscriptionId)/resourceGroups/$($env.resourceGroup)/providers/Microsoft.Network/virtualNetworks/$vnetName" + Write-Host -ForegroundColor Green "Deploy virtual network completed." + + # Deploy virtual network gateway for test + Write-Host -ForegroundColor Green "Deploying virtual network gateway" + $vnetGatewayName = "vnetGateway" + (RandomString -allChars $false -len 6) + $vnetGatewa = Get-Content .\test\deployment-templates\virtual-network-gateway\parameters.json | ConvertFrom-Json + $vnetGatewa.parameters.virtualNetworkGateways_GW_name.value = $vnetGatewayName + $vnetGatewa.parameters.publicIPAddresses_GWIP_externalid.value = $env.publicIpAddressId + $vnetGatewa.parameters.virtualNetworks_myHSM_vnet_externalid.value = $env.virtulaNetworkId + Set-Content -Path .\test\deployment-templates\virtual-network-gateway\parameters.json -Value (ConvertTo-Json $vnetGatewa) + New-AzDeployment -Mode Incremental -TemplateFile .\test\deployment-templates\virtual-network-gateway\template.json -TemplateParameterFile .\test\deployment-templates\virtual-network-gateway\parameters.json -Name $vnetGatewayName -ResourceGroupName $env.resourceGroup + $env.vnetGatewayId = "/subscriptions/$($env.SubscriptionId)/resourceGroups/$($env.resourceGroup)/providers/Microsoft.Network/virtualNetworkGateways/$vnetGatewayName" + Write-Host -ForegroundColor Green "Deploy virtual network gateway completed." + + # Virtual network subnet id + $env.vnetSubnetId = "/subscriptions/$($env.SubscriptionId)/resourceGroups/$($env.resourceGroup)/providers/Microsoft.Network/virtualNetworks/$vnetName/subnets/hsmsubnet"; + # Create Dedicated Hsm for test. + Write-Host -ForegroundColor Green "Create Dedicated Hsm for test" + New-AzDedicatedHsm -Name $env.dedicatedHsmName01 -ResourceGroupName $env.resourceGroup -Location $env.location -Sku "SafeNet Luna Network HSM A790" -StampId stamp1 -SubnetId $env.vnetSubnetId -NetworkInterface @{PrivateIPAddress = '10.2.1.120' } + + $envFile = 'env.json' + if ($TestMode -eq 'live') { + $envFile = 'localEnv.json' + } + set-content -Path (Join-Path $PSScriptRoot $envFile) -Value (ConvertTo-Json $env) +} +function cleanupEnv() { + # Clean resources you create for testing + # Removing resourcegroup will clean all the resources created for testing. + Remove-AzResourceGroup -Name $env.resourceGroup +} + diff --git a/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/DeviceProvisioningServices.Test.csproj b/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/DeviceProvisioningServices.Test.csproj index 8e0da3eef65c..b36fed8702eb 100644 --- a/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/DeviceProvisioningServices.Test.csproj +++ b/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/DeviceProvisioningServices.Test.csproj @@ -11,7 +11,7 @@ - + diff --git a/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/SessionRecords/Commands.DeviceProvisioningServices.Test.IotDpsAccessPolicyTests/IotDpsAccessPolicyLifeCycle.json b/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/SessionRecords/Commands.DeviceProvisioningServices.Test.IotDpsAccessPolicyTests/IotDpsAccessPolicyLifeCycle.json index d3e17ae199b9..ffe41d877ce0 100644 --- a/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/SessionRecords/Commands.DeviceProvisioningServices.Test.IotDpsAccessPolicyTests/IotDpsAccessPolicyLifeCycle.json +++ b/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/SessionRecords/Commands.DeviceProvisioningServices.Test.IotDpsAccessPolicyTests/IotDpsAccessPolicyLifeCycle.json @@ -7,16 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8021736a-b81c-4024-95f5-384a9b1f5270" + "6bec7571-8b52-450d-8524-31df97c8e849" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -27,16 +27,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11999" ], "x-ms-request-id": [ - "d6892879-f1e5-4dcf-83ff-13c0211cc513" + "a32bcea5-feb2-46b5-9eea-b46a78183135" ], "x-ms-correlation-request-id": [ - "d6892879-f1e5-4dcf-83ff-13c0211cc513" + "a32bcea5-feb2-46b5-9eea-b46a78183135" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T223238Z:d6892879-f1e5-4dcf-83ff-13c0211cc513" + "WESTUS2:20200916T230218Z:a32bcea5-feb2-46b5-9eea-b46a78183135" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:32:38 GMT" + "Wed, 16 Sep 2020 23:02:18 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54,29 +54,29 @@ "-1" ], "Content-Length": [ - "4349" + "6060" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices\",\r\n \"namespace\": \"Microsoft.Devices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0cd79364-7a90-4354-9984-6e36c841418d\",\r\n \"roleDefinitionId\": \"C121DF10-FE58-4BC4-97F9-8296879F7BBB\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22-preview\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-09-25-preview\",\r\n \"2017-08-21-preview\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/eventGridFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-31\",\r\n \"2018-01-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices\",\r\n \"namespace\": \"Microsoft.Devices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0cd79364-7a90-4354-9984-6e36c841418d\",\r\n \"roleDefinitionId\": \"C121DF10-FE58-4BC4-97F9-8296879F7BBB\"\r\n },\r\n {\r\n \"applicationId\": \"29f411f1-b2cf-4043-8ac8-2185d7316811\"\r\n },\r\n {\r\n \"applicationId\": \"89d10474-74af-4874-99a7-c23c2f643083\",\r\n \"roleDefinitionId\": \"7df22794-26e3-4f94-9d50-a4f0f6e1cb41\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Australia Central\",\r\n \"Australia Central 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/eventGridFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Australia Central\",\r\n \"Australia Central 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-31\",\r\n \"2018-01-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/securitySettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Australia Central\",\r\n \"Australia Central 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants/securitySettings\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourcegroups/ps7077?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlZ3JvdXBzL3BzNzA3Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourcegroups/ps7026?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlZ3JvdXBzL3BzNzAyNj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9b8a5a3c-09b1-4c7e-aee1-434cdccfb1ad" + "61f83540-eddf-4c25-b301-83b6a61d5cfa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ], "Content-Type": [ "application/json; charset=utf-8" @@ -93,16 +93,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "03d6c82d-0c3d-4304-ba6a-79fe864389c4" + "12860d14-1cac-4348-80e0-c4a2aff408af" ], "x-ms-correlation-request-id": [ - "03d6c82d-0c3d-4304-ba6a-79fe864389c4" + "12860d14-1cac-4348-80e0-c4a2aff408af" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T223239Z:03d6c82d-0c3d-4304-ba6a-79fe864389c4" + "WESTUS2:20200916T230219Z:12860d14-1cac-4348-80e0-c4a2aff408af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:32:39 GMT" + "Wed, 16 Sep 2020 23:02:19 GMT" ], "Content-Length": [ "165" @@ -123,25 +123,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7077\",\r\n \"name\": \"ps7077\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7026\",\r\n \"name\": \"ps7026\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7077/providers/Microsoft.Devices/provisioningServices/ps2799?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMyNzk5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7026/providers/Microsoft.Devices/provisioningServices/ps6375?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzAyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2Mzc1P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f30fe9d8-28d9-4fe8-9da5-128231cb5082" + "1804d80b-41aa-4a47-8bbd-f38d413440b6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ], "Content-Type": [ @@ -159,7 +159,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7077/providers/Microsoft.Devices/provisioningServices/ps2799/operationResults/b3NfaWRfMmZkYTYyNDctNzY1MC00NDdmLTkyYzktN2JhNzhmNDk2ZDQ2?api-version=2017-11-15&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7026/providers/Microsoft.Devices/provisioningServices/ps6375/operationResults/b3NfaWRfMDg5MzViMzktZTFlYi00YjhhLTk5MDctODlmMGQ0NWQ0ZjZl?api-version=2017-11-15&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -168,13 +168,13 @@ "4999" ], "x-ms-request-id": [ - "dc9d23f1-c36f-4483-8a40-5cb947672b52" + "7b804a43-c313-42e9-a715-f5e03f43a248" ], "x-ms-correlation-request-id": [ - "dc9d23f1-c36f-4483-8a40-5cb947672b52" + "7b804a43-c313-42e9-a715-f5e03f43a248" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T223241Z:dc9d23f1-c36f-4483-8a40-5cb947672b52" + "WESTUS2:20200916T230222Z:7b804a43-c313-42e9-a715-f5e03f43a248" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -183,7 +183,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:32:41 GMT" + "Wed, 16 Sep 2020 23:02:21 GMT" ], "Content-Length": [ "462" @@ -195,32 +195,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps2799\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Activating\",\r\n \"provisioningState\": \"Accepted\",\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps7077\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7077/providers/Microsoft.Devices/provisioningServices/ps2799\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps6375\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Activating\",\r\n \"provisioningState\": \"Accepted\",\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps7026\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7026/providers/Microsoft.Devices/provisioningServices/ps6375\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7077/providers/Microsoft.Devices/provisioningServices/ps2799?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMyNzk5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7026/providers/Microsoft.Devices/provisioningServices/ps6375?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzAyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2Mzc1P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAAAFNcjE=\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"L3Z3HkO6PSAx40HPGfDUsVqliyxTK4ExAiS8LjWYrX0=\",\r\n \"secondaryKey\": \"bkw/f1/v5b2tUCt/rZD0uSAvDukRylfrCoGwGJG8O3I=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n },\r\n {\r\n \"keyName\": \"Access1\",\r\n \"rights\": \"ServiceConfig\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"etag\": \"AAAAAASgWu0=\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"G8rSOcmKXXvSReSwlHbHtq5aalWNcg9a+0KUZl58xo0=\",\r\n \"secondaryKey\": \"XJtZLdVCBM1gw04+/Ho7U1D5Hsfnl8MlUJAVDB7bd1s=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n },\r\n {\r\n \"keyName\": \"Access1\",\r\n \"rights\": \"ServiceConfig\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1dd22aa6-b312-4bce-beb6-37919bb45a51" + "99cbb569-f2c1-4df7-97bf-4cf3a21b0f0a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "612" + "651" ] }, "ResponseHeaders": { @@ -231,7 +231,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7077/providers/Microsoft.Devices/provisioningServices/ps2799/operationResults/b3NfaWRfYWM0M2IyMzMtNDg5Yy00YTMyLWE2YjItYzM1NTRlMDZlZTI0?api-version=2017-11-15&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7026/providers/Microsoft.Devices/provisioningServices/ps6375/operationResults/b3NfaWRfN2Q1N2NhNjgtN2Q4ZC00OTllLTk0MzItZDE5ZTY1NDYxZWFl?api-version=2017-11-15&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -240,13 +240,13 @@ "4998" ], "x-ms-request-id": [ - "6b66b524-761c-4683-84a3-d1fab3df1781" + "96d95673-5186-44f3-a075-1b485fb32a99" ], "x-ms-correlation-request-id": [ - "6b66b524-761c-4683-84a3-d1fab3df1781" + "96d95673-5186-44f3-a075-1b485fb32a99" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T223314Z:6b66b524-761c-4683-84a3-d1fab3df1781" + "WESTUS2:20200916T230254Z:96d95673-5186-44f3-a075-1b485fb32a99" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -255,7 +255,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:33:13 GMT" + "Wed, 16 Sep 2020 23:02:54 GMT" ], "Content-Length": [ "913" @@ -267,32 +267,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAFNcjE=\",\r\n \"name\": \"ps2799\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Transitioning\",\r\n \"provisioningState\": \"Accepted\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null,\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"L3Z3HkO6PSAx40HPGfDUsVqliyxTK4ExAiS8LjWYrX0=\",\r\n \"secondaryKey\": \"bkw/f1/v5b2tUCt/rZD0uSAvDukRylfrCoGwGJG8O3I=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n },\r\n {\r\n \"keyName\": \"Access1\",\r\n \"primaryKey\": \"OXPKGiycZVtz3cdQvbh7vgUWObXA68j6l6l8iCZfkK4=\",\r\n \"secondaryKey\": \"GePOURgPpwlJyf50BZ0GseSC767LTldmE/fJtuNGVGA=\",\r\n \"rights\": \"ServiceConfig\"\r\n }\r\n ]\r\n },\r\n \"resourcegroup\": \"ps7077\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7077/providers/Microsoft.Devices/provisioningServices/ps2799\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgWu0=\",\r\n \"name\": \"ps6375\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Transitioning\",\r\n \"provisioningState\": \"Accepted\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null,\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"G8rSOcmKXXvSReSwlHbHtq5aalWNcg9a+0KUZl58xo0=\",\r\n \"secondaryKey\": \"XJtZLdVCBM1gw04+/Ho7U1D5Hsfnl8MlUJAVDB7bd1s=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n },\r\n {\r\n \"keyName\": \"Access1\",\r\n \"primaryKey\": \"S225IkkefRM3c8K7p3+7WkNNJ+ySks+22PuuA+A9xDE=\",\r\n \"secondaryKey\": \"JeVdDmz81trFudqkd3cH//2nGIiY2RmZ32Y5IkMHWLs=\",\r\n \"rights\": \"ServiceConfig\"\r\n }\r\n ]\r\n },\r\n \"resourcegroup\": \"ps7026\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7026/providers/Microsoft.Devices/provisioningServices/ps6375\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7077/providers/Microsoft.Devices/provisioningServices/ps2799?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMyNzk5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7026/providers/Microsoft.Devices/provisioningServices/ps6375?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzAyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2Mzc1P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAAAFNcj8=\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"L3Z3HkO6PSAx40HPGfDUsVqliyxTK4ExAiS8LjWYrX0=\",\r\n \"secondaryKey\": \"bkw/f1/v5b2tUCt/rZD0uSAvDukRylfrCoGwGJG8O3I=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"etag\": \"AAAAAASgWyc=\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"G8rSOcmKXXvSReSwlHbHtq5aalWNcg9a+0KUZl58xo0=\",\r\n \"secondaryKey\": \"XJtZLdVCBM1gw04+/Ho7U1D5Hsfnl8MlUJAVDB7bd1s=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2cc27f1d-bae6-4820-ae16-f6217b089028" + "58afd58e-78be-4762-b9b6-8ec55b3c1823" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "527" + "566" ] }, "ResponseHeaders": { @@ -303,7 +303,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7077/providers/Microsoft.Devices/provisioningServices/ps2799/operationResults/b3NfaWRfMjkxODUwMzYtZGQ1MS00OTUwLWI4Y2UtOWY2YTJhOWEyMjZi?api-version=2017-11-15&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7026/providers/Microsoft.Devices/provisioningServices/ps6375/operationResults/b3NfaWRfMjRkZmQ1NDMtMTRiZS00YzE4LWI0NTAtMmU1ZjBlZjRlMjU2?api-version=2017-11-15&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -312,13 +312,13 @@ "4997" ], "x-ms-request-id": [ - "894f0939-c979-4730-b4de-74e59dbffa5f" + "329ee4fa-6a37-4342-a066-a4c103f6604b" ], "x-ms-correlation-request-id": [ - "894f0939-c979-4730-b4de-74e59dbffa5f" + "329ee4fa-6a37-4342-a066-a4c103f6604b" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T223346Z:894f0939-c979-4730-b4de-74e59dbffa5f" + "WESTUS2:20200916T230326Z:329ee4fa-6a37-4342-a066-a4c103f6604b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -327,7 +327,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:33:46 GMT" + "Wed, 16 Sep 2020 23:03:26 GMT" ], "Content-Length": [ "744" @@ -339,32 +339,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAFNcj8=\",\r\n \"name\": \"ps2799\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Transitioning\",\r\n \"provisioningState\": \"Accepted\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null,\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"L3Z3HkO6PSAx40HPGfDUsVqliyxTK4ExAiS8LjWYrX0=\",\r\n \"secondaryKey\": \"bkw/f1/v5b2tUCt/rZD0uSAvDukRylfrCoGwGJG8O3I=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n },\r\n \"resourcegroup\": \"ps7077\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7077/providers/Microsoft.Devices/provisioningServices/ps2799\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgWyc=\",\r\n \"name\": \"ps6375\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Transitioning\",\r\n \"provisioningState\": \"Accepted\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null,\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"G8rSOcmKXXvSReSwlHbHtq5aalWNcg9a+0KUZl58xo0=\",\r\n \"secondaryKey\": \"XJtZLdVCBM1gw04+/Ho7U1D5Hsfnl8MlUJAVDB7bd1s=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n },\r\n \"resourcegroup\": \"ps7026\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7026/providers/Microsoft.Devices/provisioningServices/ps6375\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7077/providers/Microsoft.Devices/provisioningServices/ps2799?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMyNzk5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7026/providers/Microsoft.Devices/provisioningServices/ps6375?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzAyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2Mzc1P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAAAFNcl4=\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"L3Z3HkO6PSAx40HPGfDUsVqliyxTK4ExAiS8LjWYrX0=\",\r\n \"secondaryKey\": \"bkw/f1/v5b2tUCt/rZD0uSAvDukRylfrCoGwGJG8O3I=\",\r\n \"rights\": \"ServiceConfig\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"etag\": \"AAAAAASgW2s=\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"G8rSOcmKXXvSReSwlHbHtq5aalWNcg9a+0KUZl58xo0=\",\r\n \"secondaryKey\": \"XJtZLdVCBM1gw04+/Ho7U1D5Hsfnl8MlUJAVDB7bd1s=\",\r\n \"rights\": \"ServiceConfig\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "04465fb8-2f40-48f6-89e6-73f18656bce9" + "7fbbe474-04bc-4b36-8760-378d019e60f2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "495" + "534" ] }, "ResponseHeaders": { @@ -375,7 +375,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7077/providers/Microsoft.Devices/provisioningServices/ps2799/operationResults/b3NfaWRfYTU3NTkwMTMtMDI2My00ZTU2LWI2M2MtOTBiNzgyNjg5OWY4?api-version=2017-11-15&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7026/providers/Microsoft.Devices/provisioningServices/ps6375/operationResults/b3NfaWRfMjg5ZjNlNWEtZjcxNi00MTg3LTljM2EtOGU2NzI4ZjY3ZTNk?api-version=2017-11-15&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -384,13 +384,13 @@ "4996" ], "x-ms-request-id": [ - "0ada82b4-e881-4163-8187-6432792cb09a" + "ac4d2cf5-0f99-42b5-833c-e9f340026caf" ], "x-ms-correlation-request-id": [ - "0ada82b4-e881-4163-8187-6432792cb09a" + "ac4d2cf5-0f99-42b5-833c-e9f340026caf" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T223427Z:0ada82b4-e881-4163-8187-6432792cb09a" + "WESTUS2:20200916T230358Z:ac4d2cf5-0f99-42b5-833c-e9f340026caf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -399,7 +399,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:34:26 GMT" + "Wed, 16 Sep 2020 23:03:57 GMT" ], "Content-Length": [ "712" @@ -411,19 +411,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAFNcl4=\",\r\n \"name\": \"ps2799\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Transitioning\",\r\n \"provisioningState\": \"Accepted\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null,\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"L3Z3HkO6PSAx40HPGfDUsVqliyxTK4ExAiS8LjWYrX0=\",\r\n \"secondaryKey\": \"bkw/f1/v5b2tUCt/rZD0uSAvDukRylfrCoGwGJG8O3I=\",\r\n \"rights\": \"ServiceConfig\"\r\n }\r\n ]\r\n },\r\n \"resourcegroup\": \"ps7077\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7077/providers/Microsoft.Devices/provisioningServices/ps2799\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgW2s=\",\r\n \"name\": \"ps6375\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Transitioning\",\r\n \"provisioningState\": \"Accepted\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null,\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"G8rSOcmKXXvSReSwlHbHtq5aalWNcg9a+0KUZl58xo0=\",\r\n \"secondaryKey\": \"XJtZLdVCBM1gw04+/Ho7U1D5Hsfnl8MlUJAVDB7bd1s=\",\r\n \"rights\": \"ServiceConfig\"\r\n }\r\n ]\r\n },\r\n \"resourcegroup\": \"ps7026\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7026/providers/Microsoft.Devices/provisioningServices/ps6375\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7077/providers/Microsoft.Devices/provisioningServices/ps2799/operationResults/b3NfaWRfMmZkYTYyNDctNzY1MC00NDdmLTkyYzktN2JhNzhmNDk2ZDQ2?api-version=2017-11-15&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMyNzk5L29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZNbVprWVRZeU5EY3ROelkxTUMwME5EZG1MVGt5WXprdE4ySmhOemhtTkRrMlpEUTI/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7026/providers/Microsoft.Devices/provisioningServices/ps6375/operationResults/b3NfaWRfMDg5MzViMzktZTFlYi00YjhhLTk5MDctODlmMGQ0NWQ0ZjZl?api-version=2017-11-15&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzAyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2Mzc1L29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZNRGc1TXpWaU16a3RaVEZsWWkwMFlqaGhMVGs1TURjdE9EbG1NR1EwTldRMFpqWmw/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -438,16 +438,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11999" ], "x-ms-request-id": [ - "dcc926d7-0900-4c08-8ac3-1a25148859f7" + "51012d37-c315-4b78-b7be-8855732a1619" ], "x-ms-correlation-request-id": [ - "dcc926d7-0900-4c08-8ac3-1a25148859f7" + "51012d37-c315-4b78-b7be-8855732a1619" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T223312Z:dcc926d7-0900-4c08-8ac3-1a25148859f7" + "WESTUS2:20200916T230252Z:51012d37-c315-4b78-b7be-8855732a1619" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -456,7 +456,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:33:11 GMT" + "Wed, 16 Sep 2020 23:02:52 GMT" ], "Content-Length": [ "22" @@ -472,15 +472,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7077/providers/Microsoft.Devices/provisioningServices/ps2799?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMyNzk5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7026/providers/Microsoft.Devices/provisioningServices/ps6375?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzAyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2Mzc1P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -495,16 +495,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11998" ], "x-ms-request-id": [ - "62b44c9d-f8ca-41aa-942c-cc33b8524954" + "155f4756-817a-4ebf-99c7-22b62f48a4f2" ], "x-ms-correlation-request-id": [ - "62b44c9d-f8ca-41aa-942c-cc33b8524954" + "155f4756-817a-4ebf-99c7-22b62f48a4f2" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T223312Z:62b44c9d-f8ca-41aa-942c-cc33b8524954" + "WESTUS2:20200916T230252Z:155f4756-817a-4ebf-99c7-22b62f48a4f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -513,10 +513,10 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:33:11 GMT" + "Wed, 16 Sep 2020 23:02:52 GMT" ], "Content-Length": [ - "608" + "640" ], "Content-Type": [ "application/json; charset=utf-8" @@ -525,25 +525,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAFNcjE=\",\r\n \"name\": \"ps2799\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps2799.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00081547\"\r\n },\r\n \"resourcegroup\": \"ps7077\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7077/providers/Microsoft.Devices/provisioningServices/ps2799\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgWu0=\",\r\n \"name\": \"ps6375\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps6375.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFD1\"\r\n },\r\n \"resourcegroup\": \"ps7026\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7026/providers/Microsoft.Devices/provisioningServices/ps6375\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7077/providers/Microsoft.Devices/provisioningServices/ps2799?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMyNzk5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7026/providers/Microsoft.Devices/provisioningServices/ps6375?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzAyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2Mzc1P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b362ab5b-32a4-4a50-b0e5-f3151f7bc49d" + "a0175c57-aec0-4b86-b026-5154fe49b062" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -558,16 +558,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11997" ], "x-ms-request-id": [ - "2c3d228d-7b70-4093-b1f7-9e14dc8fb7d9" + "d01c62c0-94a9-4ca0-aec8-07edfed83189" ], "x-ms-correlation-request-id": [ - "2c3d228d-7b70-4093-b1f7-9e14dc8fb7d9" + "d01c62c0-94a9-4ca0-aec8-07edfed83189" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T223312Z:2c3d228d-7b70-4093-b1f7-9e14dc8fb7d9" + "WESTUS2:20200916T230252Z:d01c62c0-94a9-4ca0-aec8-07edfed83189" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -576,10 +576,10 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:33:11 GMT" + "Wed, 16 Sep 2020 23:02:52 GMT" ], "Content-Length": [ - "608" + "640" ], "Content-Type": [ "application/json; charset=utf-8" @@ -588,25 +588,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAFNcjE=\",\r\n \"name\": \"ps2799\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps2799.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00081547\"\r\n },\r\n \"resourcegroup\": \"ps7077\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7077/providers/Microsoft.Devices/provisioningServices/ps2799\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgWu0=\",\r\n \"name\": \"ps6375\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps6375.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFD1\"\r\n },\r\n \"resourcegroup\": \"ps7026\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7026/providers/Microsoft.Devices/provisioningServices/ps6375\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7077/providers/Microsoft.Devices/provisioningServices/ps2799?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMyNzk5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7026/providers/Microsoft.Devices/provisioningServices/ps6375?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzAyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2Mzc1P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e4a6a10b-965d-424d-8898-c37c5b30f6fc" + "26fd3fb3-9701-4404-b07a-3cf6f4ba681f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -621,16 +621,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11996" ], "x-ms-request-id": [ - "16e1a19f-f1eb-405d-9432-e401fdd8845b" + "87e36059-f2d5-47d9-bff8-a65b4d777b4c" ], "x-ms-correlation-request-id": [ - "16e1a19f-f1eb-405d-9432-e401fdd8845b" + "87e36059-f2d5-47d9-bff8-a65b4d777b4c" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T223312Z:16e1a19f-f1eb-405d-9432-e401fdd8845b" + "WESTUS2:20200916T230252Z:87e36059-f2d5-47d9-bff8-a65b4d777b4c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -639,10 +639,10 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:33:12 GMT" + "Wed, 16 Sep 2020 23:02:52 GMT" ], "Content-Length": [ - "608" + "640" ], "Content-Type": [ "application/json; charset=utf-8" @@ -651,19 +651,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAFNcjE=\",\r\n \"name\": \"ps2799\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps2799.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00081547\"\r\n },\r\n \"resourcegroup\": \"ps7077\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7077/providers/Microsoft.Devices/provisioningServices/ps2799\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgWu0=\",\r\n \"name\": \"ps6375\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps6375.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFD1\"\r\n },\r\n \"resourcegroup\": \"ps7026\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7026/providers/Microsoft.Devices/provisioningServices/ps6375\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7077/providers/Microsoft.Devices/provisioningServices/ps2799?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMyNzk5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7026/providers/Microsoft.Devices/provisioningServices/ps6375?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzAyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2Mzc1P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -674,20 +674,20 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], "x-ms-request-id": [ - "bc1bed23-7657-487f-bf06-181b345be036" + "f4809be5-0d62-41f2-a9ad-c30554c90a63" ], "x-ms-correlation-request-id": [ - "bc1bed23-7657-487f-bf06-181b345be036" + "f4809be5-0d62-41f2-a9ad-c30554c90a63" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T223344Z:bc1bed23-7657-487f-bf06-181b345be036" + "WESTUS2:20200916T230324Z:f4809be5-0d62-41f2-a9ad-c30554c90a63" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -696,10 +696,10 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:33:44 GMT" + "Wed, 16 Sep 2020 23:03:24 GMT" ], "Content-Length": [ - "608" + "640" ], "Content-Type": [ "application/json; charset=utf-8" @@ -708,25 +708,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAFNcj8=\",\r\n \"name\": \"ps2799\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps2799.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00081547\"\r\n },\r\n \"resourcegroup\": \"ps7077\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7077/providers/Microsoft.Devices/provisioningServices/ps2799\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgWyc=\",\r\n \"name\": \"ps6375\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps6375.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFD1\"\r\n },\r\n \"resourcegroup\": \"ps7026\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7026/providers/Microsoft.Devices/provisioningServices/ps6375\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7077/providers/Microsoft.Devices/provisioningServices/ps2799?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMyNzk5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7026/providers/Microsoft.Devices/provisioningServices/ps6375?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzAyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2Mzc1P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "60fce7b2-d8d7-4abe-9d85-fa2771a70090" + "3cf89783-b497-4dfc-a3f2-573129ba0b63" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -741,16 +741,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11993" ], "x-ms-request-id": [ - "53b2995d-cb52-4646-b5a8-0b8dc1d02bf1" + "a403839a-75ee-4f0b-9568-dd382c49f5eb" ], "x-ms-correlation-request-id": [ - "53b2995d-cb52-4646-b5a8-0b8dc1d02bf1" + "a403839a-75ee-4f0b-9568-dd382c49f5eb" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T223345Z:53b2995d-cb52-4646-b5a8-0b8dc1d02bf1" + "WESTUS2:20200916T230325Z:a403839a-75ee-4f0b-9568-dd382c49f5eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -759,10 +759,10 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:33:44 GMT" + "Wed, 16 Sep 2020 23:03:24 GMT" ], "Content-Length": [ - "608" + "640" ], "Content-Type": [ "application/json; charset=utf-8" @@ -771,19 +771,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAFNcj8=\",\r\n \"name\": \"ps2799\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps2799.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00081547\"\r\n },\r\n \"resourcegroup\": \"ps7077\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7077/providers/Microsoft.Devices/provisioningServices/ps2799\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgWyc=\",\r\n \"name\": \"ps6375\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps6375.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFD1\"\r\n },\r\n \"resourcegroup\": \"ps7026\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7026/providers/Microsoft.Devices/provisioningServices/ps6375\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7077/providers/Microsoft.Devices/provisioningServices/ps2799?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMyNzk5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7026/providers/Microsoft.Devices/provisioningServices/ps6375?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzAyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2Mzc1P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -798,16 +798,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11991" ], "x-ms-request-id": [ - "5800fcf2-88a4-426b-ad10-be910eddd166" + "0eb325a3-1bca-41d6-85bb-709b1aa04fbc" ], "x-ms-correlation-request-id": [ - "5800fcf2-88a4-426b-ad10-be910eddd166" + "0eb325a3-1bca-41d6-85bb-709b1aa04fbc" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T223425Z:5800fcf2-88a4-426b-ad10-be910eddd166" + "WESTUS2:20200916T230357Z:0eb325a3-1bca-41d6-85bb-709b1aa04fbc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -816,10 +816,10 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:34:25 GMT" + "Wed, 16 Sep 2020 23:03:56 GMT" ], "Content-Length": [ - "608" + "640" ], "Content-Type": [ "application/json; charset=utf-8" @@ -828,25 +828,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAFNcl4=\",\r\n \"name\": \"ps2799\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps2799.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00081547\"\r\n },\r\n \"resourcegroup\": \"ps7077\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7077/providers/Microsoft.Devices/provisioningServices/ps2799\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgW2s=\",\r\n \"name\": \"ps6375\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps6375.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFD1\"\r\n },\r\n \"resourcegroup\": \"ps7026\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7026/providers/Microsoft.Devices/provisioningServices/ps6375\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7077/providers/Microsoft.Devices/provisioningServices/ps2799?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMyNzk5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7026/providers/Microsoft.Devices/provisioningServices/ps6375?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzAyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2Mzc1P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f0496d88-ad59-452c-8ae5-f9b656c9ee5d" + "f1a776a9-9706-48ca-83c7-011552f2d990" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -861,16 +861,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11990" ], "x-ms-request-id": [ - "f2cc5dcd-a451-4fc3-818d-218bd478c7fc" + "120a0e50-ad89-44e8-820e-e650ec7ec6c0" ], "x-ms-correlation-request-id": [ - "f2cc5dcd-a451-4fc3-818d-218bd478c7fc" + "120a0e50-ad89-44e8-820e-e650ec7ec6c0" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T223425Z:f2cc5dcd-a451-4fc3-818d-218bd478c7fc" + "WESTUS2:20200916T230357Z:120a0e50-ad89-44e8-820e-e650ec7ec6c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -879,10 +879,10 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:34:25 GMT" + "Wed, 16 Sep 2020 23:03:56 GMT" ], "Content-Length": [ - "608" + "640" ], "Content-Type": [ "application/json; charset=utf-8" @@ -891,19 +891,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAFNcl4=\",\r\n \"name\": \"ps2799\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps2799.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00081547\"\r\n },\r\n \"resourcegroup\": \"ps7077\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7077/providers/Microsoft.Devices/provisioningServices/ps2799\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgW2s=\",\r\n \"name\": \"ps6375\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps6375.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFD1\"\r\n },\r\n \"resourcegroup\": \"ps7026\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7026/providers/Microsoft.Devices/provisioningServices/ps6375\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7077/providers/Microsoft.Devices/provisioningServices/ps2799?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMyNzk5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7026/providers/Microsoft.Devices/provisioningServices/ps6375?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzAyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2Mzc1P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -918,16 +918,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11988" ], "x-ms-request-id": [ - "8c67a881-6f3a-415b-9855-ab5d60fa53e5" + "0c1be1a0-94d4-4710-a489-53e56ebe3989" ], "x-ms-correlation-request-id": [ - "8c67a881-6f3a-415b-9855-ab5d60fa53e5" + "0c1be1a0-94d4-4710-a489-53e56ebe3989" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T223458Z:8c67a881-6f3a-415b-9855-ab5d60fa53e5" + "WESTUS2:20200916T230429Z:0c1be1a0-94d4-4710-a489-53e56ebe3989" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -936,10 +936,10 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:34:58 GMT" + "Wed, 16 Sep 2020 23:04:28 GMT" ], "Content-Length": [ - "608" + "640" ], "Content-Type": [ "application/json; charset=utf-8" @@ -948,25 +948,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAFNcpE=\",\r\n \"name\": \"ps2799\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps2799.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00081547\"\r\n },\r\n \"resourcegroup\": \"ps7077\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7077/providers/Microsoft.Devices/provisioningServices/ps2799\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgW7M=\",\r\n \"name\": \"ps6375\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps6375.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFD1\"\r\n },\r\n \"resourcegroup\": \"ps7026\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7026/providers/Microsoft.Devices/provisioningServices/ps6375\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7077/providers/Microsoft.Devices/provisioningServices/ps2799/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMyNzk5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7026/providers/Microsoft.Devices/provisioningServices/ps6375/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzAyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2Mzc1L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5b6ee820-3fa4-4859-abc9-bb2ffb7733f5" + "112182b4-c8dd-4698-b2ae-7f1a52d5d79d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -984,13 +984,13 @@ "1199" ], "x-ms-request-id": [ - "8d74ab31-6dc1-4b9f-b42f-758a90d3c8aa" + "30101f99-97d7-4d44-bc96-912e4e0addef" ], "x-ms-correlation-request-id": [ - "8d74ab31-6dc1-4b9f-b42f-758a90d3c8aa" + "30101f99-97d7-4d44-bc96-912e4e0addef" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T223312Z:8d74ab31-6dc1-4b9f-b42f-758a90d3c8aa" + "WESTUS2:20200916T230252Z:30101f99-97d7-4d44-bc96-912e4e0addef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -999,7 +999,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:33:12 GMT" + "Wed, 16 Sep 2020 23:02:52 GMT" ], "Content-Length": [ "229" @@ -1011,25 +1011,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"L3Z3HkO6PSAx40HPGfDUsVqliyxTK4ExAiS8LjWYrX0=\",\r\n \"secondaryKey\": \"bkw/f1/v5b2tUCt/rZD0uSAvDukRylfrCoGwGJG8O3I=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"G8rSOcmKXXvSReSwlHbHtq5aalWNcg9a+0KUZl58xo0=\",\r\n \"secondaryKey\": \"XJtZLdVCBM1gw04+/Ho7U1D5Hsfnl8MlUJAVDB7bd1s=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7077/providers/Microsoft.Devices/provisioningServices/ps2799/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMyNzk5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7026/providers/Microsoft.Devices/provisioningServices/ps6375/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzAyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2Mzc1L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eb01f8db-22c8-42aa-a876-cdd2ecfd9a17" + "1d417ac2-a54f-4a90-b5fc-2f9aa2634cb0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1047,13 +1047,13 @@ "1198" ], "x-ms-request-id": [ - "e20a9f08-c5bc-4067-9e15-cbd605ce8fe7" + "9e7b3191-6a4f-47a6-849a-c15d8c6a5b4f" ], "x-ms-correlation-request-id": [ - "e20a9f08-c5bc-4067-9e15-cbd605ce8fe7" + "9e7b3191-6a4f-47a6-849a-c15d8c6a5b4f" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T223313Z:e20a9f08-c5bc-4067-9e15-cbd605ce8fe7" + "WESTUS2:20200916T230253Z:9e7b3191-6a4f-47a6-849a-c15d8c6a5b4f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1062,7 +1062,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:33:12 GMT" + "Wed, 16 Sep 2020 23:02:53 GMT" ], "Content-Length": [ "229" @@ -1074,25 +1074,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"L3Z3HkO6PSAx40HPGfDUsVqliyxTK4ExAiS8LjWYrX0=\",\r\n \"secondaryKey\": \"bkw/f1/v5b2tUCt/rZD0uSAvDukRylfrCoGwGJG8O3I=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"G8rSOcmKXXvSReSwlHbHtq5aalWNcg9a+0KUZl58xo0=\",\r\n \"secondaryKey\": \"XJtZLdVCBM1gw04+/Ho7U1D5Hsfnl8MlUJAVDB7bd1s=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7077/providers/Microsoft.Devices/provisioningServices/ps2799/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMyNzk5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7026/providers/Microsoft.Devices/provisioningServices/ps6375/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzAyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2Mzc1L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "09de3d9a-9a3c-471f-9ac7-11d3be05f4a9" + "da29ef44-e31b-4c2f-8702-bcef2499dcfa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1110,13 +1110,13 @@ "1197" ], "x-ms-request-id": [ - "9a8fecc5-1ef8-4231-87eb-32312f42e10f" + "fc467d20-d04a-4d8a-856f-11770096b16d" ], "x-ms-correlation-request-id": [ - "9a8fecc5-1ef8-4231-87eb-32312f42e10f" + "fc467d20-d04a-4d8a-856f-11770096b16d" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T223344Z:9a8fecc5-1ef8-4231-87eb-32312f42e10f" + "WESTUS2:20200916T230324Z:fc467d20-d04a-4d8a-856f-11770096b16d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1125,7 +1125,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:33:44 GMT" + "Wed, 16 Sep 2020 23:03:24 GMT" ], "Content-Length": [ "398" @@ -1137,25 +1137,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"L3Z3HkO6PSAx40HPGfDUsVqliyxTK4ExAiS8LjWYrX0=\",\r\n \"secondaryKey\": \"bkw/f1/v5b2tUCt/rZD0uSAvDukRylfrCoGwGJG8O3I=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n },\r\n {\r\n \"keyName\": \"Access1\",\r\n \"primaryKey\": \"OXPKGiycZVtz3cdQvbh7vgUWObXA68j6l6l8iCZfkK4=\",\r\n \"secondaryKey\": \"GePOURgPpwlJyf50BZ0GseSC767LTldmE/fJtuNGVGA=\",\r\n \"rights\": \"ServiceConfig\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"G8rSOcmKXXvSReSwlHbHtq5aalWNcg9a+0KUZl58xo0=\",\r\n \"secondaryKey\": \"XJtZLdVCBM1gw04+/Ho7U1D5Hsfnl8MlUJAVDB7bd1s=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n },\r\n {\r\n \"keyName\": \"Access1\",\r\n \"primaryKey\": \"S225IkkefRM3c8K7p3+7WkNNJ+ySks+22PuuA+A9xDE=\",\r\n \"secondaryKey\": \"JeVdDmz81trFudqkd3cH//2nGIiY2RmZ32Y5IkMHWLs=\",\r\n \"rights\": \"ServiceConfig\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7077/providers/Microsoft.Devices/provisioningServices/ps2799/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMyNzk5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7026/providers/Microsoft.Devices/provisioningServices/ps6375/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzAyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2Mzc1L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d3a7b742-6e34-4c77-9b9b-be471cc05ada" + "c65732ef-7c70-45b0-94f9-1ff4c58c9e08" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1173,13 +1173,13 @@ "1196" ], "x-ms-request-id": [ - "d6ae1aae-edd2-4740-adce-3422163a8378" + "67fa0a2c-84f6-4967-aba8-d966076060e2" ], "x-ms-correlation-request-id": [ - "d6ae1aae-edd2-4740-adce-3422163a8378" + "67fa0a2c-84f6-4967-aba8-d966076060e2" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T223345Z:d6ae1aae-edd2-4740-adce-3422163a8378" + "WESTUS2:20200916T230325Z:67fa0a2c-84f6-4967-aba8-d966076060e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1188,7 +1188,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:33:45 GMT" + "Wed, 16 Sep 2020 23:03:24 GMT" ], "Content-Length": [ "398" @@ -1200,25 +1200,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"L3Z3HkO6PSAx40HPGfDUsVqliyxTK4ExAiS8LjWYrX0=\",\r\n \"secondaryKey\": \"bkw/f1/v5b2tUCt/rZD0uSAvDukRylfrCoGwGJG8O3I=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n },\r\n {\r\n \"keyName\": \"Access1\",\r\n \"primaryKey\": \"OXPKGiycZVtz3cdQvbh7vgUWObXA68j6l6l8iCZfkK4=\",\r\n \"secondaryKey\": \"GePOURgPpwlJyf50BZ0GseSC767LTldmE/fJtuNGVGA=\",\r\n \"rights\": \"ServiceConfig\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"G8rSOcmKXXvSReSwlHbHtq5aalWNcg9a+0KUZl58xo0=\",\r\n \"secondaryKey\": \"XJtZLdVCBM1gw04+/Ho7U1D5Hsfnl8MlUJAVDB7bd1s=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n },\r\n {\r\n \"keyName\": \"Access1\",\r\n \"primaryKey\": \"S225IkkefRM3c8K7p3+7WkNNJ+ySks+22PuuA+A9xDE=\",\r\n \"secondaryKey\": \"JeVdDmz81trFudqkd3cH//2nGIiY2RmZ32Y5IkMHWLs=\",\r\n \"rights\": \"ServiceConfig\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7077/providers/Microsoft.Devices/provisioningServices/ps2799/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMyNzk5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7026/providers/Microsoft.Devices/provisioningServices/ps6375/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzAyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2Mzc1L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3f0773e7-a67d-456e-a0a3-da6e1e805541" + "b2d3a247-b785-4fe6-96ae-bbcac337e795" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1236,13 +1236,13 @@ "1194" ], "x-ms-request-id": [ - "fa0617ba-de95-4225-bcd5-0e3a44e3ed26" + "dde1c426-9077-4435-85b9-9f411dfe3b91" ], "x-ms-correlation-request-id": [ - "fa0617ba-de95-4225-bcd5-0e3a44e3ed26" + "dde1c426-9077-4435-85b9-9f411dfe3b91" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T223426Z:fa0617ba-de95-4225-bcd5-0e3a44e3ed26" + "WESTUS2:20200916T230357Z:dde1c426-9077-4435-85b9-9f411dfe3b91" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1251,7 +1251,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:34:25 GMT" + "Wed, 16 Sep 2020 23:03:56 GMT" ], "Content-Length": [ "229" @@ -1263,19 +1263,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"L3Z3HkO6PSAx40HPGfDUsVqliyxTK4ExAiS8LjWYrX0=\",\r\n \"secondaryKey\": \"bkw/f1/v5b2tUCt/rZD0uSAvDukRylfrCoGwGJG8O3I=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"G8rSOcmKXXvSReSwlHbHtq5aalWNcg9a+0KUZl58xo0=\",\r\n \"secondaryKey\": \"XJtZLdVCBM1gw04+/Ho7U1D5Hsfnl8MlUJAVDB7bd1s=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7077/providers/Microsoft.Devices/provisioningServices/ps2799/operationResults/b3NfaWRfYWM0M2IyMzMtNDg5Yy00YTMyLWE2YjItYzM1NTRlMDZlZTI0?api-version=2017-11-15&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMyNzk5L29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZZV00wTTJJeU16TXRORGc1WXkwMFlUTXlMV0UyWWpJdFl6TTFOVFJsTURabFpUSTA/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7026/providers/Microsoft.Devices/provisioningServices/ps6375/operationResults/b3NfaWRfN2Q1N2NhNjgtN2Q4ZC00OTllLTk0MzItZDE5ZTY1NDYxZWFl?api-version=2017-11-15&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzAyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2Mzc1L29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZOMlExTjJOaE5qZ3ROMlE0WkMwME9UbGxMVGswTXpJdFpERTVaVFkxTkRZeFpXRmw/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1290,16 +1290,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11995" ], "x-ms-request-id": [ - "047ed746-349e-4a6b-bf0e-d22494daf533" + "6062d522-8150-4ea1-9f8c-4d66c32e84e2" ], "x-ms-correlation-request-id": [ - "047ed746-349e-4a6b-bf0e-d22494daf533" + "6062d522-8150-4ea1-9f8c-4d66c32e84e2" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T223344Z:047ed746-349e-4a6b-bf0e-d22494daf533" + "WESTUS2:20200916T230324Z:6062d522-8150-4ea1-9f8c-4d66c32e84e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1308,7 +1308,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:33:44 GMT" + "Wed, 16 Sep 2020 23:03:23 GMT" ], "Content-Length": [ "22" @@ -1324,21 +1324,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7077/providers/Microsoft.Devices/provisioningServices/ps2799/keys/Access1/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMyNzk5L2tleXMvQWNjZXNzMS9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE3LTExLTE1", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7026/providers/Microsoft.Devices/provisioningServices/ps6375/keys/Access1/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzAyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2Mzc1L2tleXMvQWNjZXNzMS9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE3LTExLTE1", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "749d21cc-3cc9-430e-830c-80c966e4f7fe" + "340fe053-df0f-46f6-8c56-bad239a0f0f9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1356,13 +1356,13 @@ "1195" ], "x-ms-request-id": [ - "8a495f86-8021-430a-bdd0-aee2ab7a0b35" + "3f7d9e70-7fbe-4c9a-9e3a-463c22de2613" ], "x-ms-correlation-request-id": [ - "8a495f86-8021-430a-bdd0-aee2ab7a0b35" + "3f7d9e70-7fbe-4c9a-9e3a-463c22de2613" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T223345Z:8a495f86-8021-430a-bdd0-aee2ab7a0b35" + "WESTUS2:20200916T230325Z:3f7d9e70-7fbe-4c9a-9e3a-463c22de2613" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1371,7 +1371,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:33:45 GMT" + "Wed, 16 Sep 2020 23:03:24 GMT" ], "Content-Length": [ "168" @@ -1383,19 +1383,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"keyName\": \"Access1\",\r\n \"primaryKey\": \"OXPKGiycZVtz3cdQvbh7vgUWObXA68j6l6l8iCZfkK4=\",\r\n \"secondaryKey\": \"GePOURgPpwlJyf50BZ0GseSC767LTldmE/fJtuNGVGA=\",\r\n \"rights\": \"ServiceConfig\"\r\n}", + "ResponseBody": "{\r\n \"keyName\": \"Access1\",\r\n \"primaryKey\": \"S225IkkefRM3c8K7p3+7WkNNJ+ySks+22PuuA+A9xDE=\",\r\n \"secondaryKey\": \"JeVdDmz81trFudqkd3cH//2nGIiY2RmZ32Y5IkMHWLs=\",\r\n \"rights\": \"ServiceConfig\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7077/providers/Microsoft.Devices/provisioningServices/ps2799/operationResults/b3NfaWRfMjkxODUwMzYtZGQ1MS00OTUwLWI4Y2UtOWY2YTJhOWEyMjZi?api-version=2017-11-15&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMyNzk5L29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZNamt4T0RVd016WXRaR1ExTVMwME9UVXdMV0k0WTJVdE9XWTJZVEpoT1dFeU1qWmk/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7026/providers/Microsoft.Devices/provisioningServices/ps6375/operationResults/b3NfaWRfMjRkZmQ1NDMtMTRiZS00YzE4LWI0NTAtMmU1ZjBlZjRlMjU2?api-version=2017-11-15&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzAyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2Mzc1L29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZNalJrWm1RMU5ETXRNVFJpWlMwMFl6RTRMV0kwTlRBdE1tVTFaakJsWmpSbE1qVTI/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1410,16 +1410,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11992" ], "x-ms-request-id": [ - "3009e690-3395-4cd9-a144-02f367efa98b" + "7bca6f3a-f4c7-4f40-8475-d7ee447273b6" ], "x-ms-correlation-request-id": [ - "3009e690-3395-4cd9-a144-02f367efa98b" + "7bca6f3a-f4c7-4f40-8475-d7ee447273b6" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T223422Z:3009e690-3395-4cd9-a144-02f367efa98b" + "WESTUS2:20200916T230357Z:7bca6f3a-f4c7-4f40-8475-d7ee447273b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1428,7 +1428,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:34:22 GMT" + "Wed, 16 Sep 2020 23:03:56 GMT" ], "Content-Length": [ "22" @@ -1444,21 +1444,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7077/providers/Microsoft.Devices/provisioningServices/ps2799/keys/provisioningserviceowner/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMyNzk5L2tleXMvcHJvdmlzaW9uaW5nc2VydmljZW93bmVyL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7026/providers/Microsoft.Devices/provisioningServices/ps6375/keys/provisioningserviceowner/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzAyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2Mzc1L2tleXMvcHJvdmlzaW9uaW5nc2VydmljZW93bmVyL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6e510af4-5514-441b-a250-420fa9c50921" + "b5395ef7-c290-4726-ad70-f5e4f1e68f15" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1476,13 +1476,13 @@ "1193" ], "x-ms-request-id": [ - "aa14be2b-9fe3-43df-8811-f91ee59dc0f7" + "4750a26a-4e5c-4616-ad22-e0490d2f8868" ], "x-ms-correlation-request-id": [ - "aa14be2b-9fe3-43df-8811-f91ee59dc0f7" + "4750a26a-4e5c-4616-ad22-e0490d2f8868" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T223426Z:aa14be2b-9fe3-43df-8811-f91ee59dc0f7" + "WESTUS2:20200916T230357Z:4750a26a-4e5c-4616-ad22-e0490d2f8868" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1491,7 +1491,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:34:25 GMT" + "Wed, 16 Sep 2020 23:03:56 GMT" ], "Content-Length": [ "217" @@ -1503,25 +1503,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"L3Z3HkO6PSAx40HPGfDUsVqliyxTK4ExAiS8LjWYrX0=\",\r\n \"secondaryKey\": \"bkw/f1/v5b2tUCt/rZD0uSAvDukRylfrCoGwGJG8O3I=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n}", + "ResponseBody": "{\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"G8rSOcmKXXvSReSwlHbHtq5aalWNcg9a+0KUZl58xo0=\",\r\n \"secondaryKey\": \"XJtZLdVCBM1gw04+/Ho7U1D5Hsfnl8MlUJAVDB7bd1s=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7077/providers/Microsoft.Devices/provisioningServices/ps2799/keys/provisioningserviceowner/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMyNzk5L2tleXMvcHJvdmlzaW9uaW5nc2VydmljZW93bmVyL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7026/providers/Microsoft.Devices/provisioningServices/ps6375/keys/provisioningserviceowner/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzAyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2Mzc1L2tleXMvcHJvdmlzaW9uaW5nc2VydmljZW93bmVyL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "26128d5b-00af-49bd-a2dd-a1039e150947" + "9c036439-6430-4373-b274-2c3ebf6b634d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1539,13 +1539,13 @@ "1192" ], "x-ms-request-id": [ - "f757bee5-1b9a-4041-a268-12ea724e0c1b" + "e673c03a-bb37-499b-8b01-4408fda1a9f7" ], "x-ms-correlation-request-id": [ - "f757bee5-1b9a-4041-a268-12ea724e0c1b" + "e673c03a-bb37-499b-8b01-4408fda1a9f7" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T223458Z:f757bee5-1b9a-4041-a268-12ea724e0c1b" + "WESTUS2:20200916T230429Z:e673c03a-bb37-499b-8b01-4408fda1a9f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1554,7 +1554,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:34:58 GMT" + "Wed, 16 Sep 2020 23:04:29 GMT" ], "Content-Length": [ "185" @@ -1566,19 +1566,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"L3Z3HkO6PSAx40HPGfDUsVqliyxTK4ExAiS8LjWYrX0=\",\r\n \"secondaryKey\": \"bkw/f1/v5b2tUCt/rZD0uSAvDukRylfrCoGwGJG8O3I=\",\r\n \"rights\": \"ServiceConfig\"\r\n}", + "ResponseBody": "{\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"G8rSOcmKXXvSReSwlHbHtq5aalWNcg9a+0KUZl58xo0=\",\r\n \"secondaryKey\": \"XJtZLdVCBM1gw04+/Ho7U1D5Hsfnl8MlUJAVDB7bd1s=\",\r\n \"rights\": \"ServiceConfig\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7077/providers/Microsoft.Devices/provisioningServices/ps2799/operationResults/b3NfaWRfYTU3NTkwMTMtMDI2My00ZTU2LWI2M2MtOTBiNzgyNjg5OWY4?api-version=2017-11-15&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMyNzk5L29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZZVFUzTlRrd01UTXRNREkyTXkwMFpUVTJMV0kyTTJNdE9UQmlOemd5TmpnNU9XWTQ/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7026/providers/Microsoft.Devices/provisioningServices/ps6375/operationResults/b3NfaWRfMjg5ZjNlNWEtZjcxNi00MTg3LTljM2EtOGU2NzI4ZjY3ZTNk?api-version=2017-11-15&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzAyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2Mzc1L29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZNamc1WmpObE5XRXRaamN4TmkwME1UZzNMVGxqTTJFdE9HVTJOekk0WmpZM1pUTms/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1589,20 +1589,20 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], "x-ms-request-id": [ - "b859fccd-77e5-4abd-9ccd-e8834d351efc" + "ca554719-9b94-46f5-81e2-d427bc6c9fc5" ], "x-ms-correlation-request-id": [ - "b859fccd-77e5-4abd-9ccd-e8834d351efc" + "ca554719-9b94-46f5-81e2-d427bc6c9fc5" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T223458Z:b859fccd-77e5-4abd-9ccd-e8834d351efc" + "WESTUS2:20200916T230429Z:ca554719-9b94-46f5-81e2-d427bc6c9fc5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1611,7 +1611,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:34:58 GMT" + "Wed, 16 Sep 2020 23:04:28 GMT" ], "Content-Length": [ "22" @@ -1627,21 +1627,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7077/providers/Microsoft.Devices/provisioningServices/ps2799?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMyNzk5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7026/providers/Microsoft.Devices/provisioningServices/ps6375?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzAyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2Mzc1P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f940a128-8f49-4f7f-8ec0-64beae306881" + "fbb02f1b-49a4-489d-85f2-f18c99a24c0b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1653,13 +1653,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7077/providers/Microsoft.Devices/provisioningServices/ps2799/operationResults/b3NfaWRfODYzZjM4MmYtMTQxOS00YThhLTliYzYtZDcwZDJiZWFjNzYx?api-version=2017-11-15" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7026/providers/Microsoft.Devices/provisioningServices/ps6375/operationResults/b3NfaWRfNzYwYjJmNWQtMTZjMS00YTA1LThlNWMtNDg4MWFjYWQ2ZWE3?api-version=2017-11-15" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7077/providers/Microsoft.Devices/provisioningServices/ps2799/operationResults/b3NfaWRfODYzZjM4MmYtMTQxOS00YThhLTliYzYtZDcwZDJiZWFjNzYx?api-version=2017-11-15&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7026/providers/Microsoft.Devices/provisioningServices/ps6375/operationResults/b3NfaWRfNzYwYjJmNWQtMTZjMS00YTA1LThlNWMtNDg4MWFjYWQ2ZWE3?api-version=2017-11-15&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1668,13 +1668,13 @@ "14999" ], "x-ms-request-id": [ - "837f7872-8c3b-4293-acf9-82e90c0f5dc9" + "b6aeb839-1131-4bea-8319-155383900ee5" ], "x-ms-correlation-request-id": [ - "837f7872-8c3b-4293-acf9-82e90c0f5dc9" + "b6aeb839-1131-4bea-8319-155383900ee5" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T223459Z:837f7872-8c3b-4293-acf9-82e90c0f5dc9" + "WESTUS2:20200916T230430Z:b6aeb839-1131-4bea-8319-155383900ee5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1683,7 +1683,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:34:59 GMT" + "Wed, 16 Sep 2020 23:04:30 GMT" ], "Content-Length": [ "4" @@ -1699,15 +1699,72 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7077/providers/Microsoft.Devices/provisioningServices/ps2799/operationResults/b3NfaWRfODYzZjM4MmYtMTQxOS00YThhLTliYzYtZDcwZDJiZWFjNzYx?api-version=2017-11-15&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMyNzk5L29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZPRFl6WmpNNE1tWXRNVFF4T1MwMFlUaGhMVGxpWXpZdFpEY3daREppWldGak56WXg/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7026/providers/Microsoft.Devices/provisioningServices/ps6375/operationResults/b3NfaWRfNzYwYjJmNWQtMTZjMS00YTA1LThlNWMtNDg4MWFjYWQ2ZWE3?api-version=2017-11-15&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzAyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2Mzc1L29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZOell3WWpKbU5XUXRNVFpqTVMwMFlUQTFMVGhsTldNdE5EZzRNV0ZqWVdRMlpXRTM/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-request-id": [ + "bc9b80f0-812f-4ba3-a334-6010e098b1ba" + ], + "x-ms-correlation-request-id": [ + "bc9b80f0-812f-4ba3-a334-6010e098b1ba" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200916T230445Z:bc9b80f0-812f-4ba3-a334-6010e098b1ba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Sep 2020 23:04:45 GMT" + ], + "Content-Length": [ + "20" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7026/providers/Microsoft.Devices/provisioningServices/ps6375/operationResults/b3NfaWRfNzYwYjJmNWQtMTZjMS00YTA1LThlNWMtNDg4MWFjYWQ2ZWE3?api-version=2017-11-15&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzAyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2Mzc1L29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZOell3WWpKbU5XUXRNVFpqTVMwMFlUQTFMVGhsTldNdE5EZzRNV0ZqWVdRMlpXRTM/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1722,16 +1779,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11986" ], "x-ms-request-id": [ - "bd2e80b2-12da-43aa-a62b-ce84263e8725" + "f19a4952-716b-40ec-a4c7-4c1ae66fda34" ], "x-ms-correlation-request-id": [ - "bd2e80b2-12da-43aa-a62b-ce84263e8725" + "f19a4952-716b-40ec-a4c7-4c1ae66fda34" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T223518Z:bd2e80b2-12da-43aa-a62b-ce84263e8725" + "WESTUS2:20200916T230500Z:f19a4952-716b-40ec-a4c7-4c1ae66fda34" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1740,7 +1797,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:35:17 GMT" + "Wed, 16 Sep 2020 23:05:00 GMT" ], "Content-Length": [ "22" @@ -1756,15 +1813,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7077/providers/Microsoft.Devices/provisioningServices/ps2799/operationResults/b3NfaWRfODYzZjM4MmYtMTQxOS00YThhLTliYzYtZDcwZDJiZWFjNzYx?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMyNzk5L29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZPRFl6WmpNNE1tWXRNVFF4T1MwMFlUaGhMVGxpWXpZdFpEY3daREppWldGak56WXg/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7026/providers/Microsoft.Devices/provisioningServices/ps6375/operationResults/b3NfaWRfNzYwYjJmNWQtMTZjMS00YTA1LThlNWMtNDg4MWFjYWQ2ZWE3?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzAyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2Mzc1L29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZOell3WWpKbU5XUXRNVFpqTVMwMFlUQTFMVGhsTldNdE5EZzRNV0ZqWVdRMlpXRTM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1776,7 +1833,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7077/providers/Microsoft.Devices/provisioningServices/ps2799/operationResults/b3NfaWRfODYzZjM4MmYtMTQxOS00YThhLTliYzYtZDcwZDJiZWFjNzYx/operationResults/b3NfaWRfODYzZjM4MmYtMTQxOS00YThhLTliYzYtZDcwZDJiZWFjNzYx?api-version=2017-11-15" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7026/providers/Microsoft.Devices/provisioningServices/ps6375/operationResults/b3NfaWRfNzYwYjJmNWQtMTZjMS00YTA1LThlNWMtNDg4MWFjYWQ2ZWE3/operationResults/b3NfaWRfNzYwYjJmNWQtMTZjMS00YTA1LThlNWMtNDg4MWFjYWQ2ZWE3?api-version=2017-11-15" ], "Retry-After": [ "15" @@ -1785,16 +1842,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11985" ], "x-ms-request-id": [ - "75e004da-5f9a-4ec1-b276-6c26a93044d3" + "3daa8903-a4af-489a-9265-59b04226509e" ], "x-ms-correlation-request-id": [ - "75e004da-5f9a-4ec1-b276-6c26a93044d3" + "3daa8903-a4af-489a-9265-59b04226509e" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T223519Z:75e004da-5f9a-4ec1-b276-6c26a93044d3" + "WESTUS2:20200916T230500Z:3daa8903-a4af-489a-9265-59b04226509e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1803,7 +1860,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:35:18 GMT" + "Wed, 16 Sep 2020 23:05:00 GMT" ], "Expires": [ "-1" @@ -1816,22 +1873,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourcegroups/ps7077?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlZ3JvdXBzL3BzNzA3Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourcegroups/ps7026?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlZ3JvdXBzL3BzNzAyNj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf024e28-2fc3-4585-b12e-bdb902997634" + "3185a926-a5d4-4dff-b943-b7b51a058ce2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -1841,20 +1898,23 @@ "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ - "gateway" + "Location": [ + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcwMjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-request-id": [ - "5479f891-1905-462a-8ce3-f09e8ed9cf40" + "2581c8c5-8ff0-47f0-a034-041f6687907c" ], "x-ms-correlation-request-id": [ - "5479f891-1905-462a-8ce3-f09e8ed9cf40" + "2581c8c5-8ff0-47f0-a034-041f6687907c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T223519Z:5479f891-1905-462a-8ce3-f09e8ed9cf40" + "WESTUS2:20200916T230501Z:2581c8c5-8ff0-47f0-a034-041f6687907c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1863,26 +1923,239 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:35:18 GMT" + "Wed, 16 Sep 2020 23:05:01 GMT" ], - "Content-Type": [ - "application/json; charset=utf-8" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcwMjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjd01qWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcwMjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "648a6ce7-26c8-49da-ad15-53bcdb2a9a1c" + ], + "x-ms-correlation-request-id": [ + "648a6ce7-26c8-49da-ad15-53bcdb2a9a1c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200916T230516Z:648a6ce7-26c8-49da-ad15-53bcdb2a9a1c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Sep 2020 23:05:16 GMT" ], "Expires": [ "-1" ], "Content-Length": [ - "98" + "0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'ps7077' could not be found.\"\r\n }\r\n}", - "StatusCode": 404 + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcwMjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjd01qWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcwMjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "ab87b270-ae69-4f52-a7ba-8b9dc0e45f53" + ], + "x-ms-correlation-request-id": [ + "ab87b270-ae69-4f52-a7ba-8b9dc0e45f53" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200916T230532Z:ab87b270-ae69-4f52-a7ba-8b9dc0e45f53" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Sep 2020 23:05:31 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcwMjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjd01qWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "0becd829-c237-46a9-bf6c-b2cd4bd55be1" + ], + "x-ms-correlation-request-id": [ + "0becd829-c237-46a9-bf6c-b2cd4bd55be1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200916T230547Z:0becd829-c237-46a9-bf6c-b2cd4bd55be1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Sep 2020 23:05:46 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcwMjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjd01qWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "22145619-af0e-47a5-b7e7-c7b1171375b4" + ], + "x-ms-correlation-request-id": [ + "22145619-af0e-47a5-b7e7-c7b1171375b4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200916T230547Z:22145619-af0e-47a5-b7e7-c7b1171375b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Sep 2020 23:05:47 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 } ], "Names": { "Test-AzureIotDpsAccessPolicyLifeCycle": [ - "ps2799", - "ps7077" + "ps6375", + "ps7026" ] }, "Variables": { diff --git a/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/SessionRecords/Commands.DeviceProvisioningServices.Test.IotDpsEnrollmentGroupTests/IotDpsEnrollmentGroupLifeCycle.json b/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/SessionRecords/Commands.DeviceProvisioningServices.Test.IotDpsEnrollmentGroupTests/IotDpsEnrollmentGroupLifeCycle.json index da996f2d119e..b71b481fe6c7 100644 --- a/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/SessionRecords/Commands.DeviceProvisioningServices.Test.IotDpsEnrollmentGroupTests/IotDpsEnrollmentGroupLifeCycle.json +++ b/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/SessionRecords/Commands.DeviceProvisioningServices.Test.IotDpsEnrollmentGroupTests/IotDpsEnrollmentGroupLifeCycle.json @@ -7,16 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "960522f7-995e-4559-b9ad-cb1b8cce9ad8" + "cdc9dca4-6f3c-4e68-b0fc-f3b4b1d1acb5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -27,16 +27,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-request-id": [ - "e3d62489-71a4-4b26-8840-a951d6199b59" + "aa5dd109-5d08-4193-9445-3339f7b30d22" ], "x-ms-correlation-request-id": [ - "e3d62489-71a4-4b26-8840-a951d6199b59" + "aa5dd109-5d08-4193-9445-3339f7b30d22" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T203548Z:e3d62489-71a4-4b26-8840-a951d6199b59" + "WESTUS2:20200916T231412Z:aa5dd109-5d08-4193-9445-3339f7b30d22" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:35:48 GMT" + "Wed, 16 Sep 2020 23:14:12 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54,29 +54,29 @@ "-1" ], "Content-Length": [ - "5727" + "6060" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices\",\r\n \"namespace\": \"Microsoft.Devices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0cd79364-7a90-4354-9984-6e36c841418d\",\r\n \"roleDefinitionId\": \"C121DF10-FE58-4BC4-97F9-8296879F7BBB\"\r\n },\r\n {\r\n \"applicationId\": \"29f411f1-b2cf-4043-8ac8-2185d7316811\"\r\n },\r\n {\r\n \"applicationId\": \"89d10474-74af-4874-99a7-c23c2f643083\",\r\n \"roleDefinitionId\": \"7df22794-26e3-4f94-9d50-a4f0f6e1cb41\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/eventGridFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-31\",\r\n \"2018-01-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/securitySettings\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants/securitySettings\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices\",\r\n \"namespace\": \"Microsoft.Devices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0cd79364-7a90-4354-9984-6e36c841418d\",\r\n \"roleDefinitionId\": \"C121DF10-FE58-4BC4-97F9-8296879F7BBB\"\r\n },\r\n {\r\n \"applicationId\": \"29f411f1-b2cf-4043-8ac8-2185d7316811\"\r\n },\r\n {\r\n \"applicationId\": \"89d10474-74af-4874-99a7-c23c2f643083\",\r\n \"roleDefinitionId\": \"7df22794-26e3-4f94-9d50-a4f0f6e1cb41\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Australia Central\",\r\n \"Australia Central 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/eventGridFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Australia Central\",\r\n \"Australia Central 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-31\",\r\n \"2018-01-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/securitySettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Australia Central\",\r\n \"Australia Central 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants/securitySettings\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourcegroups/ps8710?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlZ3JvdXBzL3BzODcxMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourcegroups/ps5490?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlZ3JvdXBzL3BzNTQ5MD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "24e6da92-a0ae-4460-8f16-1ab2c1023c84" + "3c6b2a6c-c232-43ef-acab-ed4f101a8acf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "8e42b807-45d0-4713-ab51-be5491648d13" + "5bc4a8fb-6ef9-43d2-9f1b-9702ca2d221b" ], "x-ms-correlation-request-id": [ - "8e42b807-45d0-4713-ab51-be5491648d13" + "5bc4a8fb-6ef9-43d2-9f1b-9702ca2d221b" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T203550Z:8e42b807-45d0-4713-ab51-be5491648d13" + "WESTUS2:20200916T231413Z:5bc4a8fb-6ef9-43d2-9f1b-9702ca2d221b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:35:50 GMT" + "Wed, 16 Sep 2020 23:14:13 GMT" ], "Content-Length": [ "165" @@ -123,25 +123,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710\",\r\n \"name\": \"ps8710\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490\",\r\n \"name\": \"ps5490\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDg/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4de9b149-6c25-4274-8dad-a662c069640d" + "65826b4e-3e2c-4c77-963c-2ba696d2b3ba" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ], "Content-Type": [ @@ -159,7 +159,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808/operationResults/b3NfaWRfNDgxM2IzZjUtZGMyZi00YzIzLWJmNDMtZWZjZmIzZjI2NmU1?api-version=2017-11-15&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689/operationResults/b3NfaWRfZjFjMzJkNGYtOWM3MS00MTgwLWE5MGEtNTYyNTliYmVlMjhl?api-version=2017-11-15&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -168,13 +168,13 @@ "4999" ], "x-ms-request-id": [ - "7bd30b10-de0a-4c15-8eb2-f32a8e32fb98" + "7549b835-239f-4e38-a7b1-177c46059a75" ], "x-ms-correlation-request-id": [ - "7bd30b10-de0a-4c15-8eb2-f32a8e32fb98" + "7549b835-239f-4e38-a7b1-177c46059a75" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T203554Z:7bd30b10-de0a-4c15-8eb2-f32a8e32fb98" + "WESTUS2:20200916T231415Z:7549b835-239f-4e38-a7b1-177c46059a75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -183,10 +183,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:35:54 GMT" + "Wed, 16 Sep 2020 23:14:15 GMT" ], "Content-Length": [ - "460" + "462" ], "Content-Type": [ "application/json; charset=utf-8" @@ -195,25 +195,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps808\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Activating\",\r\n \"provisioningState\": \"Accepted\",\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps8710\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps7689\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Activating\",\r\n \"provisioningState\": \"Accepted\",\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps5490\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDg/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAAAMitTo=\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"connectionString\": \"HostName=ps3468.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=NgjVY4zKON8ZJK/D5eM71LP2GhrhuVP3MyQ7WFngU8k=\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"etag\": \"AAAAAASgYhY=\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"connectionString\": \"HostName=ps2498.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=e1Aev7l/MlBkj9naFNDfg2XcHkE8drovucdzBHDEO4c=\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7b30518b-01f6-44ba-8a57-622ea96db496" + "fa846962-3ad8-4a49-95d1-efc67a15cfc8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ], "Content-Type": [ @@ -231,7 +231,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808/operationResults/b3NfaWRfMDgxMjliYmItZjYyNC00M2M3LWJmYTYtN2ZhNmNmNWEwNGRm?api-version=2017-11-15&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689/operationResults/b3NfaWRfM2IwNjgyNGQtN2QzNC00OGNlLWI3NWQtMjQyNThlZDI0MmFh?api-version=2017-11-15&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -240,13 +240,13 @@ "4999" ], "x-ms-request-id": [ - "c8018754-b4aa-4d42-a073-20596b4fc3fe" + "394d0bfb-b265-4140-8af5-e58b5b4571ab" ], "x-ms-correlation-request-id": [ - "c8018754-b4aa-4d42-a073-20596b4fc3fe" + "394d0bfb-b265-4140-8af5-e58b5b4571ab" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T203951Z:c8018754-b4aa-4d42-a073-20596b4fc3fe" + "WESTUS2:20200916T231741Z:394d0bfb-b265-4140-8af5-e58b5b4571ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -255,10 +255,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:39:50 GMT" + "Wed, 16 Sep 2020 23:17:41 GMT" ], "Content-Length": [ - "731" + "733" ], "Content-Type": [ "application/json; charset=utf-8" @@ -267,25 +267,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMitTo=\",\r\n \"name\": \"ps808\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Transitioning\",\r\n \"provisioningState\": \"Accepted\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3468.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3468.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=NgjVY4zKON8ZJK/D5eM71LP2GhrhuVP3MyQ7WFngU8k=\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps8710\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgYhY=\",\r\n \"name\": \"ps7689\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Transitioning\",\r\n \"provisioningState\": \"Accepted\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2498.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps2498.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=e1Aev7l/MlBkj9naFNDfg2XcHkE8drovucdzBHDEO4c=\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps5490\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDg/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAAAMito4=\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"etag\": \"AAAAAASgaHk=\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1f21e154-6667-43f2-ad9e-f95cda96d737" + "60f43090-a2f3-4cb3-ba9a-ff47133cf29a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ], "Content-Type": [ @@ -303,7 +303,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808/operationResults/b3NfaWRfMDZiZmI0Y2QtYTA0Yy00MDQ3LWE2ZjktMzVmYjhjYzIyMDdk?api-version=2017-11-15&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689/operationResults/b3NfaWRfMjQyNDIzYzgtYTY1Ny00ZTU5LWE4NzEtNGE4N2E1YTlhNzRi?api-version=2017-11-15&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -312,13 +312,13 @@ "4998" ], "x-ms-request-id": [ - "029c7cbb-9e25-4fc0-9441-1f5bcbb94a8c" + "0898fdbf-9c51-416d-94b6-9a50276bbdd8" ], "x-ms-correlation-request-id": [ - "029c7cbb-9e25-4fc0-9441-1f5bcbb94a8c" + "0898fdbf-9c51-416d-94b6-9a50276bbdd8" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204033Z:029c7cbb-9e25-4fc0-9441-1f5bcbb94a8c" + "WESTUS2:20200916T231821Z:0898fdbf-9c51-416d-94b6-9a50276bbdd8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -327,10 +327,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:40:32 GMT" + "Wed, 16 Sep 2020 23:18:20 GMT" ], "Content-Length": [ - "498" + "500" ], "Content-Type": [ "application/json; charset=utf-8" @@ -339,76 +339,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMito4=\",\r\n \"name\": \"ps808\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Transitioning\",\r\n \"provisioningState\": \"Accepted\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps8710\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgaHk=\",\r\n \"name\": \"ps7689\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Transitioning\",\r\n \"provisioningState\": \"Accepted\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps5490\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808/operationResults/b3NfaWRfNDgxM2IzZjUtZGMyZi00YzIzLWJmNDMtZWZjZmIzZjI2NmU1?api-version=2017-11-15&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDgvb3BlcmF0aW9uUmVzdWx0cy9iM05mYVdSZk5EZ3hNMkl6WmpVdFpHTXlaaTAwWXpJekxXSm1ORE10WldaalptSXpaakkyTm1VMT9hcGktdmVyc2lvbj0yMDE3LTExLTE1JmFzeW5jaW5mbw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-request-id": [ - "2917c8c3-f548-4657-9e62-0506ebb95056" - ], - "x-ms-correlation-request-id": [ - "2917c8c3-f548-4657-9e62-0506ebb95056" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200518T203625Z:2917c8c3-f548-4657-9e62-0506ebb95056" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 18 May 2020 20:36:24 GMT" - ], - "Content-Length": [ - "20" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808/operationResults/b3NfaWRfNDgxM2IzZjUtZGMyZi00YzIzLWJmNDMtZWZjZmIzZjI2NmU1?api-version=2017-11-15&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDgvb3BlcmF0aW9uUmVzdWx0cy9iM05mYVdSZk5EZ3hNMkl6WmpVdFpHTXlaaTAwWXpJekxXSm1ORE10WldaalptSXpaakkyTm1VMT9hcGktdmVyc2lvbj0yMDE3LTExLTE1JmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689/operationResults/b3NfaWRfZjFjMzJkNGYtOWM3MS00MTgwLWE5MGEtNTYyNTliYmVlMjhl?api-version=2017-11-15&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5L29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZaakZqTXpKa05HWXRPV00zTVMwME1UZ3dMV0U1TUdFdE5UWXlOVGxpWW1WbE1qaGw/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -426,13 +369,13 @@ "11998" ], "x-ms-request-id": [ - "eb79eed9-ae35-4753-8f6e-4d08bb036225" + "241b0ba9-2ce3-4099-9100-aea774339b93" ], "x-ms-correlation-request-id": [ - "eb79eed9-ae35-4753-8f6e-4d08bb036225" + "241b0ba9-2ce3-4099-9100-aea774339b93" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T203655Z:eb79eed9-ae35-4753-8f6e-4d08bb036225" + "WESTUS2:20200916T231445Z:241b0ba9-2ce3-4099-9100-aea774339b93" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -441,7 +384,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:36:55 GMT" + "Wed, 16 Sep 2020 23:14:45 GMT" ], "Content-Length": [ "22" @@ -457,15 +400,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDg/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -483,13 +426,13 @@ "11997" ], "x-ms-request-id": [ - "43f1c112-8ab4-409a-85b7-de7535d03975" + "733f33f1-0c5a-4431-8944-a18b12af8985" ], "x-ms-correlation-request-id": [ - "43f1c112-8ab4-409a-85b7-de7535d03975" + "733f33f1-0c5a-4431-8944-a18b12af8985" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T203655Z:43f1c112-8ab4-409a-85b7-de7535d03975" + "WESTUS2:20200916T231446Z:733f33f1-0c5a-4431-8944-a18b12af8985" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -498,10 +441,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:36:55 GMT" + "Wed, 16 Sep 2020 23:14:45 GMT" ], "Content-Length": [ - "637" + "640" ], "Content-Type": [ "application/json; charset=utf-8" @@ -510,25 +453,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMitTo=\",\r\n \"name\": \"ps808\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps808.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010900F\"\r\n },\r\n \"resourcegroup\": \"ps8710\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgYhY=\",\r\n \"name\": \"ps7689\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7689.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFE8\"\r\n },\r\n \"resourcegroup\": \"ps5490\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDg/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2deb9ef4-f0d2-4a9c-9252-80259b6911d4" + "9669bd1e-772f-4ea3-8e83-1b01deef9603" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -546,13 +489,13 @@ "11996" ], "x-ms-request-id": [ - "3639dc3d-d7a6-488e-a384-9bdc5189983f" + "d87c52f5-f6b6-4019-8923-d32d42adb78c" ], "x-ms-correlation-request-id": [ - "3639dc3d-d7a6-488e-a384-9bdc5189983f" + "d87c52f5-f6b6-4019-8923-d32d42adb78c" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T203655Z:3639dc3d-d7a6-488e-a384-9bdc5189983f" + "WESTUS2:20200916T231446Z:d87c52f5-f6b6-4019-8923-d32d42adb78c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -561,10 +504,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:36:55 GMT" + "Wed, 16 Sep 2020 23:14:45 GMT" ], "Content-Length": [ - "637" + "640" ], "Content-Type": [ "application/json; charset=utf-8" @@ -573,25 +516,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMitTo=\",\r\n \"name\": \"ps808\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps808.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010900F\"\r\n },\r\n \"resourcegroup\": \"ps8710\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgYhY=\",\r\n \"name\": \"ps7689\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7689.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFE8\"\r\n },\r\n \"resourcegroup\": \"ps5490\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDg/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8cc6352d-902a-44da-a2ab-fff3890a908c" + "bcacde46-3e7e-4155-8a67-ee468a02033a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -609,13 +552,13 @@ "11999" ], "x-ms-request-id": [ - "4b73e9fa-0d3e-4324-8258-4ce04ebde8fe" + "1253ca6c-572b-4d8a-9cd5-f3f66e3abe80" ], "x-ms-correlation-request-id": [ - "4b73e9fa-0d3e-4324-8258-4ce04ebde8fe" + "1253ca6c-572b-4d8a-9cd5-f3f66e3abe80" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T203948Z:4b73e9fa-0d3e-4324-8258-4ce04ebde8fe" + "WESTUS2:20200916T231740Z:1253ca6c-572b-4d8a-9cd5-f3f66e3abe80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -624,10 +567,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:39:47 GMT" + "Wed, 16 Sep 2020 23:17:39 GMT" ], "Content-Length": [ - "637" + "640" ], "Content-Type": [ "application/json; charset=utf-8" @@ -636,19 +579,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMitTo=\",\r\n \"name\": \"ps808\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps808.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010900F\"\r\n },\r\n \"resourcegroup\": \"ps8710\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgYhY=\",\r\n \"name\": \"ps7689\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7689.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFE8\"\r\n },\r\n \"resourcegroup\": \"ps5490\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDg/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -666,13 +609,13 @@ "11997" ], "x-ms-request-id": [ - "ea5495ef-2827-47c5-b7b8-d7fc085d754d" + "d14dfab1-5dca-450c-bc4b-4b5c558d3d4c" ], "x-ms-correlation-request-id": [ - "ea5495ef-2827-47c5-b7b8-d7fc085d754d" + "d14dfab1-5dca-450c-bc4b-4b5c558d3d4c" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204021Z:ea5495ef-2827-47c5-b7b8-d7fc085d754d" + "WESTUS2:20200916T231812Z:d14dfab1-5dca-450c-bc4b-4b5c558d3d4c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -681,10 +624,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:40:20 GMT" + "Wed, 16 Sep 2020 23:18:11 GMT" ], "Content-Length": [ - "830" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -693,25 +636,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMito4=\",\r\n \"name\": \"ps808\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3468.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3468.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps808.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010900F\"\r\n },\r\n \"resourcegroup\": \"ps8710\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgaHk=\",\r\n \"name\": \"ps7689\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2498.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps2498.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7689.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFE8\"\r\n },\r\n \"resourcegroup\": \"ps5490\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDg/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2021e077-55eb-4b92-8d9c-0e78b702b881" + "629999fd-d605-4150-827e-624f32aea518" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -729,13 +672,13 @@ "11996" ], "x-ms-request-id": [ - "546df23a-9b7d-40c0-bf4a-7da818114ff2" + "c645fb2d-6958-4bb9-9614-1abc9be0098d" ], "x-ms-correlation-request-id": [ - "546df23a-9b7d-40c0-bf4a-7da818114ff2" + "c645fb2d-6958-4bb9-9614-1abc9be0098d" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204021Z:546df23a-9b7d-40c0-bf4a-7da818114ff2" + "WESTUS2:20200916T231812Z:c645fb2d-6958-4bb9-9614-1abc9be0098d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -744,10 +687,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:40:21 GMT" + "Wed, 16 Sep 2020 23:18:11 GMT" ], "Content-Length": [ - "830" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -756,25 +699,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMito4=\",\r\n \"name\": \"ps808\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3468.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3468.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps808.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010900F\"\r\n },\r\n \"resourcegroup\": \"ps8710\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgaHk=\",\r\n \"name\": \"ps7689\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2498.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps2498.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7689.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFE8\"\r\n },\r\n \"resourcegroup\": \"ps5490\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDg/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f2033cfb-bdfb-4d19-9766-af3d082d444c" + "91db524b-e4f6-4e61-ba21-eb7801b22e1e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -792,13 +735,13 @@ "11995" ], "x-ms-request-id": [ - "c440d941-b7cf-4ee3-8a39-5fc01d2cfa3b" + "8c029b6d-488e-4096-9530-72fde8befc11" ], "x-ms-correlation-request-id": [ - "c440d941-b7cf-4ee3-8a39-5fc01d2cfa3b" + "8c029b6d-488e-4096-9530-72fde8befc11" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204022Z:c440d941-b7cf-4ee3-8a39-5fc01d2cfa3b" + "WESTUS2:20200916T231812Z:8c029b6d-488e-4096-9530-72fde8befc11" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -807,10 +750,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:40:21 GMT" + "Wed, 16 Sep 2020 23:18:11 GMT" ], "Content-Length": [ - "830" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -819,25 +762,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMito4=\",\r\n \"name\": \"ps808\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3468.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3468.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps808.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010900F\"\r\n },\r\n \"resourcegroup\": \"ps8710\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgaHk=\",\r\n \"name\": \"ps7689\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2498.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps2498.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7689.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFE8\"\r\n },\r\n \"resourcegroup\": \"ps5490\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDg/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "47ee2eeb-03c2-4015-a47e-92cd629cfbfd" + "fec714b6-0ea7-4014-a5f2-e2eb314158ba" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -855,13 +798,13 @@ "11994" ], "x-ms-request-id": [ - "629931b2-d783-4c06-b4c3-ef71222545aa" + "e183d26f-0ed9-4ebc-b08b-e3374234f045" ], "x-ms-correlation-request-id": [ - "629931b2-d783-4c06-b4c3-ef71222545aa" + "e183d26f-0ed9-4ebc-b08b-e3374234f045" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204022Z:629931b2-d783-4c06-b4c3-ef71222545aa" + "WESTUS2:20200916T231812Z:e183d26f-0ed9-4ebc-b08b-e3374234f045" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -870,10 +813,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:40:21 GMT" + "Wed, 16 Sep 2020 23:18:11 GMT" ], "Content-Length": [ - "830" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -882,25 +825,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMito4=\",\r\n \"name\": \"ps808\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3468.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3468.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps808.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010900F\"\r\n },\r\n \"resourcegroup\": \"ps8710\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgaHk=\",\r\n \"name\": \"ps7689\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2498.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps2498.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7689.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFE8\"\r\n },\r\n \"resourcegroup\": \"ps5490\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDg/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a6f7b516-f55a-4507-ab6a-e716abfcece5" + "87be1f4e-24cf-441b-89aa-794d53c28ce4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -918,13 +861,13 @@ "11993" ], "x-ms-request-id": [ - "b56397ce-0449-4d13-8f30-118c315c545c" + "02a96611-6869-4065-8b33-cdafb1bde98b" ], "x-ms-correlation-request-id": [ - "b56397ce-0449-4d13-8f30-118c315c545c" + "02a96611-6869-4065-8b33-cdafb1bde98b" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204022Z:b56397ce-0449-4d13-8f30-118c315c545c" + "WESTUS2:20200916T231813Z:02a96611-6869-4065-8b33-cdafb1bde98b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -933,10 +876,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:40:22 GMT" + "Wed, 16 Sep 2020 23:18:12 GMT" ], "Content-Length": [ - "830" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -945,25 +888,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMito4=\",\r\n \"name\": \"ps808\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3468.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3468.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps808.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010900F\"\r\n },\r\n \"resourcegroup\": \"ps8710\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgaHk=\",\r\n \"name\": \"ps7689\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2498.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps2498.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7689.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFE8\"\r\n },\r\n \"resourcegroup\": \"ps5490\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDg/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9c23798b-e1b1-4cf1-b56b-5bdc4d3f4c26" + "4acb0132-b9a5-4e9b-b101-45dda2450dad" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -981,13 +924,13 @@ "11992" ], "x-ms-request-id": [ - "511d03b1-44b8-4f30-b892-6ad7f98b210a" + "8244dc96-d4e6-4db5-8176-f35dab488618" ], "x-ms-correlation-request-id": [ - "511d03b1-44b8-4f30-b892-6ad7f98b210a" + "8244dc96-d4e6-4db5-8176-f35dab488618" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204023Z:511d03b1-44b8-4f30-b892-6ad7f98b210a" + "WESTUS2:20200916T231813Z:8244dc96-d4e6-4db5-8176-f35dab488618" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -996,10 +939,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:40:22 GMT" + "Wed, 16 Sep 2020 23:18:12 GMT" ], "Content-Length": [ - "830" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1008,25 +951,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMito4=\",\r\n \"name\": \"ps808\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3468.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3468.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps808.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010900F\"\r\n },\r\n \"resourcegroup\": \"ps8710\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgaHk=\",\r\n \"name\": \"ps7689\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2498.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps2498.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7689.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFE8\"\r\n },\r\n \"resourcegroup\": \"ps5490\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDg/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "83ec18e0-6995-4418-a151-a1f66083fa88" + "5430bd2e-d739-48a5-bd6d-dd1360809d17" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1044,13 +987,13 @@ "11991" ], "x-ms-request-id": [ - "a7cdfe50-1823-497f-a0d1-1204b1d842a4" + "a01ad00b-8ad7-4fc9-bd8c-f8f536524178" ], "x-ms-correlation-request-id": [ - "a7cdfe50-1823-497f-a0d1-1204b1d842a4" + "a01ad00b-8ad7-4fc9-bd8c-f8f536524178" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204023Z:a7cdfe50-1823-497f-a0d1-1204b1d842a4" + "WESTUS2:20200916T231813Z:a01ad00b-8ad7-4fc9-bd8c-f8f536524178" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1059,10 +1002,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:40:22 GMT" + "Wed, 16 Sep 2020 23:18:12 GMT" ], "Content-Length": [ - "830" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1071,25 +1014,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMito4=\",\r\n \"name\": \"ps808\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3468.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3468.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps808.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010900F\"\r\n },\r\n \"resourcegroup\": \"ps8710\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgaHk=\",\r\n \"name\": \"ps7689\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2498.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps2498.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7689.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFE8\"\r\n },\r\n \"resourcegroup\": \"ps5490\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDg/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5250261-bebd-49b5-913d-24ffeda22dd3" + "94083df9-c8af-47d1-b3e3-a54a3c5686f4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1107,13 +1050,13 @@ "11990" ], "x-ms-request-id": [ - "78bebeda-f6c7-456a-9ec4-5da17fb60905" + "917a00ea-18e7-467b-beb7-7a5fff1bca52" ], "x-ms-correlation-request-id": [ - "78bebeda-f6c7-456a-9ec4-5da17fb60905" + "917a00ea-18e7-467b-beb7-7a5fff1bca52" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204023Z:78bebeda-f6c7-456a-9ec4-5da17fb60905" + "WESTUS2:20200916T231813Z:917a00ea-18e7-467b-beb7-7a5fff1bca52" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1122,10 +1065,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:40:22 GMT" + "Wed, 16 Sep 2020 23:18:12 GMT" ], "Content-Length": [ - "830" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1134,25 +1077,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMito4=\",\r\n \"name\": \"ps808\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3468.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3468.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps808.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010900F\"\r\n },\r\n \"resourcegroup\": \"ps8710\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgaHk=\",\r\n \"name\": \"ps7689\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2498.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps2498.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7689.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFE8\"\r\n },\r\n \"resourcegroup\": \"ps5490\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDg/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b005a1c6-c3d5-49c6-b0d8-d97f6938f1a1" + "37714a05-a1f0-4043-9a63-02e0b0ccf367" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1170,13 +1113,13 @@ "11989" ], "x-ms-request-id": [ - "05d7a78c-b86d-4f07-8937-fef0ce1ba5d1" + "055ffb85-9222-4a36-8dc9-bee69cba607b" ], "x-ms-correlation-request-id": [ - "05d7a78c-b86d-4f07-8937-fef0ce1ba5d1" + "055ffb85-9222-4a36-8dc9-bee69cba607b" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204023Z:05d7a78c-b86d-4f07-8937-fef0ce1ba5d1" + "WESTUS2:20200916T231814Z:055ffb85-9222-4a36-8dc9-bee69cba607b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1185,10 +1128,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:40:23 GMT" + "Wed, 16 Sep 2020 23:18:13 GMT" ], "Content-Length": [ - "830" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1197,25 +1140,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMito4=\",\r\n \"name\": \"ps808\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3468.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3468.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps808.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010900F\"\r\n },\r\n \"resourcegroup\": \"ps8710\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgaHk=\",\r\n \"name\": \"ps7689\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2498.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps2498.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7689.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFE8\"\r\n },\r\n \"resourcegroup\": \"ps5490\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDg/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fafa4e56-9fa2-4cc6-a759-289e5ba997f8" + "af5e781f-3ed2-4420-9225-b54cf03a4356" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1233,13 +1176,13 @@ "11988" ], "x-ms-request-id": [ - "2171ffff-d60c-48f7-94a3-922b6c6bf099" + "24bcb47f-9b38-4a08-83c6-b7add3a0b0af" ], "x-ms-correlation-request-id": [ - "2171ffff-d60c-48f7-94a3-922b6c6bf099" + "24bcb47f-9b38-4a08-83c6-b7add3a0b0af" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204024Z:2171ffff-d60c-48f7-94a3-922b6c6bf099" + "WESTUS2:20200916T231814Z:24bcb47f-9b38-4a08-83c6-b7add3a0b0af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1248,10 +1191,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:40:23 GMT" + "Wed, 16 Sep 2020 23:18:13 GMT" ], "Content-Length": [ - "830" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1260,25 +1203,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMito4=\",\r\n \"name\": \"ps808\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3468.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3468.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps808.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010900F\"\r\n },\r\n \"resourcegroup\": \"ps8710\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgaHk=\",\r\n \"name\": \"ps7689\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2498.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps2498.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7689.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFE8\"\r\n },\r\n \"resourcegroup\": \"ps5490\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDg/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "39251511-160b-485b-878f-49b83b61ea58" + "5a4a0821-bef6-4d62-a174-38f3c762d11a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1296,13 +1239,13 @@ "11987" ], "x-ms-request-id": [ - "ce519978-ad29-4504-933e-0fcd1d904625" + "42e195a7-4b74-4cbd-99ed-e71a99099868" ], "x-ms-correlation-request-id": [ - "ce519978-ad29-4504-933e-0fcd1d904625" + "42e195a7-4b74-4cbd-99ed-e71a99099868" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204024Z:ce519978-ad29-4504-933e-0fcd1d904625" + "WESTUS2:20200916T231814Z:42e195a7-4b74-4cbd-99ed-e71a99099868" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1311,10 +1254,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:40:23 GMT" + "Wed, 16 Sep 2020 23:18:13 GMT" ], "Content-Length": [ - "830" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1323,25 +1266,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMito4=\",\r\n \"name\": \"ps808\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3468.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3468.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps808.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010900F\"\r\n },\r\n \"resourcegroup\": \"ps8710\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgaHk=\",\r\n \"name\": \"ps7689\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2498.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps2498.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7689.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFE8\"\r\n },\r\n \"resourcegroup\": \"ps5490\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDg/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9d2269fb-2fd7-403a-926f-4a53e65ececc" + "5c42ee5d-1d74-4d1e-8e7d-a07201e75f94" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1359,13 +1302,13 @@ "11986" ], "x-ms-request-id": [ - "2da7d55e-9870-4b1e-abb8-e7aff7c68dab" + "56a66d12-ffcb-42f6-8e66-284dd2b72729" ], "x-ms-correlation-request-id": [ - "2da7d55e-9870-4b1e-abb8-e7aff7c68dab" + "56a66d12-ffcb-42f6-8e66-284dd2b72729" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204024Z:2da7d55e-9870-4b1e-abb8-e7aff7c68dab" + "WESTUS2:20200916T231814Z:56a66d12-ffcb-42f6-8e66-284dd2b72729" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1374,10 +1317,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:40:24 GMT" + "Wed, 16 Sep 2020 23:18:13 GMT" ], "Content-Length": [ - "830" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1386,25 +1329,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMito4=\",\r\n \"name\": \"ps808\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3468.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3468.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps808.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010900F\"\r\n },\r\n \"resourcegroup\": \"ps8710\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgaHk=\",\r\n \"name\": \"ps7689\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2498.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps2498.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7689.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFE8\"\r\n },\r\n \"resourcegroup\": \"ps5490\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDg/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "11d1ab05-7cad-4545-afe8-92a57f0f8393" + "4a464b80-cedd-412c-8577-4775a4716c01" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1422,13 +1365,13 @@ "11985" ], "x-ms-request-id": [ - "3993f956-f314-4ae5-b361-3e0e1046f0e1" + "ed9800c4-2945-4cf4-9340-d7eadec2e540" ], "x-ms-correlation-request-id": [ - "3993f956-f314-4ae5-b361-3e0e1046f0e1" + "ed9800c4-2945-4cf4-9340-d7eadec2e540" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204025Z:3993f956-f314-4ae5-b361-3e0e1046f0e1" + "WESTUS2:20200916T231815Z:ed9800c4-2945-4cf4-9340-d7eadec2e540" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1437,10 +1380,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:40:24 GMT" + "Wed, 16 Sep 2020 23:18:14 GMT" ], "Content-Length": [ - "830" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1449,25 +1392,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMito4=\",\r\n \"name\": \"ps808\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3468.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3468.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps808.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010900F\"\r\n },\r\n \"resourcegroup\": \"ps8710\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgaHk=\",\r\n \"name\": \"ps7689\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2498.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps2498.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7689.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFE8\"\r\n },\r\n \"resourcegroup\": \"ps5490\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDg/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ab162022-c149-4038-ba3f-4f8f4fb09501" + "b2e46008-e54c-4bd3-b841-a08fbf8a22c1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1485,13 +1428,13 @@ "11984" ], "x-ms-request-id": [ - "d68f306d-da4d-43ef-8fc0-2ef858e188f5" + "e6926d75-3d74-40b7-a77f-2db2e87b1e60" ], "x-ms-correlation-request-id": [ - "d68f306d-da4d-43ef-8fc0-2ef858e188f5" + "e6926d75-3d74-40b7-a77f-2db2e87b1e60" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204025Z:d68f306d-da4d-43ef-8fc0-2ef858e188f5" + "WESTUS2:20200916T231815Z:e6926d75-3d74-40b7-a77f-2db2e87b1e60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1500,10 +1443,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:40:24 GMT" + "Wed, 16 Sep 2020 23:18:14 GMT" ], "Content-Length": [ - "830" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1512,25 +1455,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMito4=\",\r\n \"name\": \"ps808\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3468.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3468.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps808.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010900F\"\r\n },\r\n \"resourcegroup\": \"ps8710\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgaHk=\",\r\n \"name\": \"ps7689\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2498.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps2498.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7689.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFE8\"\r\n },\r\n \"resourcegroup\": \"ps5490\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDg/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "381bc575-5c24-4bf2-a933-6ed7fe8c9aa9" + "0787889b-aad4-47ac-9a33-b79d9792332d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1548,13 +1491,13 @@ "11983" ], "x-ms-request-id": [ - "b4c544d7-f247-4b01-8986-bb428e0051e6" + "e11b161d-80b4-48d6-817a-e5d7e55b5204" ], "x-ms-correlation-request-id": [ - "b4c544d7-f247-4b01-8986-bb428e0051e6" + "e11b161d-80b4-48d6-817a-e5d7e55b5204" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204025Z:b4c544d7-f247-4b01-8986-bb428e0051e6" + "WESTUS2:20200916T231815Z:e11b161d-80b4-48d6-817a-e5d7e55b5204" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1563,10 +1506,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:40:24 GMT" + "Wed, 16 Sep 2020 23:18:14 GMT" ], "Content-Length": [ - "830" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1575,25 +1518,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMito4=\",\r\n \"name\": \"ps808\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3468.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3468.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps808.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010900F\"\r\n },\r\n \"resourcegroup\": \"ps8710\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgaHk=\",\r\n \"name\": \"ps7689\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2498.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps2498.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7689.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFE8\"\r\n },\r\n \"resourcegroup\": \"ps5490\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDg/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "26681227-4ef7-4f38-a054-cd20899162ca" + "e7dccc31-766c-419c-a98c-1aeb03c5f6c5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1611,13 +1554,13 @@ "11982" ], "x-ms-request-id": [ - "88d7ad23-304a-499b-b76c-b43d77c40da9" + "57adcf17-2fa9-4aff-8da6-392b6d0c99d5" ], "x-ms-correlation-request-id": [ - "88d7ad23-304a-499b-b76c-b43d77c40da9" + "57adcf17-2fa9-4aff-8da6-392b6d0c99d5" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204026Z:88d7ad23-304a-499b-b76c-b43d77c40da9" + "WESTUS2:20200916T231815Z:57adcf17-2fa9-4aff-8da6-392b6d0c99d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1626,10 +1569,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:40:25 GMT" + "Wed, 16 Sep 2020 23:18:15 GMT" ], "Content-Length": [ - "830" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1638,25 +1581,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMito4=\",\r\n \"name\": \"ps808\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3468.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3468.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps808.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010900F\"\r\n },\r\n \"resourcegroup\": \"ps8710\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgaHk=\",\r\n \"name\": \"ps7689\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2498.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps2498.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7689.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFE8\"\r\n },\r\n \"resourcegroup\": \"ps5490\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDg/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8ad28fd6-6bbc-4d19-9171-ee73f2519d11" + "38dc8d82-730e-4d25-b50b-11acc0b087e8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1674,13 +1617,13 @@ "11981" ], "x-ms-request-id": [ - "b068cf9f-5a19-40ad-8c0d-fa615c29a648" + "d41e3b50-b3ad-4f1b-b6df-fc71a6cf03af" ], "x-ms-correlation-request-id": [ - "b068cf9f-5a19-40ad-8c0d-fa615c29a648" + "d41e3b50-b3ad-4f1b-b6df-fc71a6cf03af" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204026Z:b068cf9f-5a19-40ad-8c0d-fa615c29a648" + "WESTUS2:20200916T231816Z:d41e3b50-b3ad-4f1b-b6df-fc71a6cf03af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1689,10 +1632,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:40:25 GMT" + "Wed, 16 Sep 2020 23:18:15 GMT" ], "Content-Length": [ - "830" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1701,25 +1644,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMito4=\",\r\n \"name\": \"ps808\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3468.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3468.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps808.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010900F\"\r\n },\r\n \"resourcegroup\": \"ps8710\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgaHk=\",\r\n \"name\": \"ps7689\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2498.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps2498.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7689.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFE8\"\r\n },\r\n \"resourcegroup\": \"ps5490\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDg/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e569d92a-ba32-492d-ab52-08f4f32756cb" + "93157d32-cbb1-4530-a9a9-a4102201aedc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1737,13 +1680,13 @@ "11980" ], "x-ms-request-id": [ - "c77da365-95c8-4e70-bb68-37418bb335fd" + "b95e6dd1-60bb-441f-895f-22775ddf726c" ], "x-ms-correlation-request-id": [ - "c77da365-95c8-4e70-bb68-37418bb335fd" + "b95e6dd1-60bb-441f-895f-22775ddf726c" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204027Z:c77da365-95c8-4e70-bb68-37418bb335fd" + "WESTUS2:20200916T231817Z:b95e6dd1-60bb-441f-895f-22775ddf726c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1752,10 +1695,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:40:26 GMT" + "Wed, 16 Sep 2020 23:18:16 GMT" ], "Content-Length": [ - "830" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1764,25 +1707,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMito4=\",\r\n \"name\": \"ps808\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3468.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3468.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps808.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010900F\"\r\n },\r\n \"resourcegroup\": \"ps8710\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgaHk=\",\r\n \"name\": \"ps7689\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2498.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps2498.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7689.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFE8\"\r\n },\r\n \"resourcegroup\": \"ps5490\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDg/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ba732b6f-eaba-47a2-93f7-dbedc15a3600" + "f753b9bd-dded-43e3-a41e-74cae40ffff1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1800,13 +1743,13 @@ "11979" ], "x-ms-request-id": [ - "018dcdfa-ade6-4c01-bf18-2db464ada0bc" + "82131518-267c-466d-8732-32a4ebc924de" ], "x-ms-correlation-request-id": [ - "018dcdfa-ade6-4c01-bf18-2db464ada0bc" + "82131518-267c-466d-8732-32a4ebc924de" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204027Z:018dcdfa-ade6-4c01-bf18-2db464ada0bc" + "WESTUS2:20200916T231817Z:82131518-267c-466d-8732-32a4ebc924de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1815,10 +1758,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:40:27 GMT" + "Wed, 16 Sep 2020 23:18:16 GMT" ], "Content-Length": [ - "830" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1827,25 +1770,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMito4=\",\r\n \"name\": \"ps808\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3468.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3468.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps808.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010900F\"\r\n },\r\n \"resourcegroup\": \"ps8710\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgaHk=\",\r\n \"name\": \"ps7689\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2498.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps2498.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7689.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFE8\"\r\n },\r\n \"resourcegroup\": \"ps5490\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDg/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8c6ad8cf-2263-49fd-b4e4-5fe0896dbdce" + "6140b984-5b57-4294-a050-eda468075aa9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1863,13 +1806,13 @@ "11978" ], "x-ms-request-id": [ - "3489bd12-bf6a-41b4-8a94-8be0e8abf286" + "eb411efb-5458-4bbf-a965-285b281da9c7" ], "x-ms-correlation-request-id": [ - "3489bd12-bf6a-41b4-8a94-8be0e8abf286" + "eb411efb-5458-4bbf-a965-285b281da9c7" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204028Z:3489bd12-bf6a-41b4-8a94-8be0e8abf286" + "WESTUS2:20200916T231817Z:eb411efb-5458-4bbf-a965-285b281da9c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1878,10 +1821,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:40:27 GMT" + "Wed, 16 Sep 2020 23:18:17 GMT" ], "Content-Length": [ - "830" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1890,25 +1833,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMito4=\",\r\n \"name\": \"ps808\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3468.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3468.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps808.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010900F\"\r\n },\r\n \"resourcegroup\": \"ps8710\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgaHk=\",\r\n \"name\": \"ps7689\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2498.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps2498.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7689.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFE8\"\r\n },\r\n \"resourcegroup\": \"ps5490\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDg/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d894d4c0-3e32-4e9d-ab81-cdbf840e6f61" + "a965ccbd-649d-49a8-af43-ec246dad41db" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1926,13 +1869,13 @@ "11977" ], "x-ms-request-id": [ - "ad1a2044-4698-4788-a771-c7639511ceba" + "5d3ba738-df05-4bf8-9a1a-8cc92b1d3352" ], "x-ms-correlation-request-id": [ - "ad1a2044-4698-4788-a771-c7639511ceba" + "5d3ba738-df05-4bf8-9a1a-8cc92b1d3352" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204028Z:ad1a2044-4698-4788-a771-c7639511ceba" + "WESTUS2:20200916T231818Z:5d3ba738-df05-4bf8-9a1a-8cc92b1d3352" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1941,10 +1884,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:40:28 GMT" + "Wed, 16 Sep 2020 23:18:17 GMT" ], "Content-Length": [ - "830" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1953,25 +1896,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMito4=\",\r\n \"name\": \"ps808\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3468.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3468.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps808.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010900F\"\r\n },\r\n \"resourcegroup\": \"ps8710\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgaHk=\",\r\n \"name\": \"ps7689\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2498.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps2498.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7689.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFE8\"\r\n },\r\n \"resourcegroup\": \"ps5490\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDg/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "169c46b2-ad48-4171-a6a8-f21710f2cd50" + "cd864fbe-39dc-45bc-ac21-484355266e48" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1989,13 +1932,13 @@ "11976" ], "x-ms-request-id": [ - "475f3351-5cb9-4301-a317-260535b69059" + "9a446d9e-c176-4ee3-8fce-77f7a925cbfc" ], "x-ms-correlation-request-id": [ - "475f3351-5cb9-4301-a317-260535b69059" + "9a446d9e-c176-4ee3-8fce-77f7a925cbfc" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204029Z:475f3351-5cb9-4301-a317-260535b69059" + "WESTUS2:20200916T231818Z:9a446d9e-c176-4ee3-8fce-77f7a925cbfc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2004,10 +1947,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:40:28 GMT" + "Wed, 16 Sep 2020 23:18:18 GMT" ], "Content-Length": [ - "830" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2016,25 +1959,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMito4=\",\r\n \"name\": \"ps808\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3468.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3468.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps808.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010900F\"\r\n },\r\n \"resourcegroup\": \"ps8710\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgaHk=\",\r\n \"name\": \"ps7689\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2498.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps2498.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7689.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFE8\"\r\n },\r\n \"resourcegroup\": \"ps5490\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDg/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b796e0be-a372-46aa-8340-73609824c3c8" + "2c9818a6-70fc-4282-b40d-f537d535ee08" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -2052,13 +1995,13 @@ "11975" ], "x-ms-request-id": [ - "465df320-a7f8-4366-9425-4443c8d3e319" + "168c4b4d-94fb-4415-848e-d867d55c350f" ], "x-ms-correlation-request-id": [ - "465df320-a7f8-4366-9425-4443c8d3e319" + "168c4b4d-94fb-4415-848e-d867d55c350f" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204030Z:465df320-a7f8-4366-9425-4443c8d3e319" + "WESTUS2:20200916T231819Z:168c4b4d-94fb-4415-848e-d867d55c350f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2067,10 +2010,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:40:29 GMT" + "Wed, 16 Sep 2020 23:18:18 GMT" ], "Content-Length": [ - "830" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2079,25 +2022,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMito4=\",\r\n \"name\": \"ps808\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3468.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3468.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps808.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010900F\"\r\n },\r\n \"resourcegroup\": \"ps8710\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgaHk=\",\r\n \"name\": \"ps7689\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2498.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps2498.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7689.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFE8\"\r\n },\r\n \"resourcegroup\": \"ps5490\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDg/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0cac1c1a-4bd7-442c-8105-de4be2406a5e" + "e4d024be-3d87-40cc-93d1-0e4f471ff32b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -2115,13 +2058,13 @@ "11974" ], "x-ms-request-id": [ - "54ecfd1e-1655-4184-b452-0ae5a89f416a" + "6a911324-eb13-4910-aa71-862b58f3096c" ], "x-ms-correlation-request-id": [ - "54ecfd1e-1655-4184-b452-0ae5a89f416a" + "6a911324-eb13-4910-aa71-862b58f3096c" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204030Z:54ecfd1e-1655-4184-b452-0ae5a89f416a" + "WESTUS2:20200916T231819Z:6a911324-eb13-4910-aa71-862b58f3096c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2130,10 +2073,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:40:29 GMT" + "Wed, 16 Sep 2020 23:18:18 GMT" ], "Content-Length": [ - "830" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2142,25 +2085,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMito4=\",\r\n \"name\": \"ps808\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3468.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3468.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps808.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010900F\"\r\n },\r\n \"resourcegroup\": \"ps8710\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgaHk=\",\r\n \"name\": \"ps7689\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2498.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps2498.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7689.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFE8\"\r\n },\r\n \"resourcegroup\": \"ps5490\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDg/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2d6a5f53-918c-406d-b50d-7600fb419232" + "95c2303e-ed67-4dcf-8874-436caabbda98" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -2178,13 +2121,13 @@ "11973" ], "x-ms-request-id": [ - "ac0b98b0-d7e1-473d-960f-9437342d8e58" + "7db1e849-6ee8-410b-834f-e12e37acc535" ], "x-ms-correlation-request-id": [ - "ac0b98b0-d7e1-473d-960f-9437342d8e58" + "7db1e849-6ee8-410b-834f-e12e37acc535" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204031Z:ac0b98b0-d7e1-473d-960f-9437342d8e58" + "WESTUS2:20200916T231820Z:7db1e849-6ee8-410b-834f-e12e37acc535" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2193,10 +2136,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:40:30 GMT" + "Wed, 16 Sep 2020 23:18:19 GMT" ], "Content-Length": [ - "830" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2205,25 +2148,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMito4=\",\r\n \"name\": \"ps808\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3468.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3468.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps808.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010900F\"\r\n },\r\n \"resourcegroup\": \"ps8710\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgaHk=\",\r\n \"name\": \"ps7689\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2498.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps2498.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7689.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFE8\"\r\n },\r\n \"resourcegroup\": \"ps5490\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDg/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "86114d8e-6bf3-49e9-adbf-67ae564399de" + "7cae9352-4239-491f-a0d4-5468922e6aaf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -2241,13 +2184,13 @@ "11972" ], "x-ms-request-id": [ - "90455462-0e44-4e00-949d-899fc1cb8c77" + "e5c5349f-61dc-404a-b225-4edf218f688f" ], "x-ms-correlation-request-id": [ - "90455462-0e44-4e00-949d-899fc1cb8c77" + "e5c5349f-61dc-404a-b225-4edf218f688f" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204031Z:90455462-0e44-4e00-949d-899fc1cb8c77" + "WESTUS2:20200916T231820Z:e5c5349f-61dc-404a-b225-4edf218f688f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2256,10 +2199,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:40:30 GMT" + "Wed, 16 Sep 2020 23:18:19 GMT" ], "Content-Length": [ - "830" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2268,19 +2211,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMito4=\",\r\n \"name\": \"ps808\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3468.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3468.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps808.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010900F\"\r\n },\r\n \"resourcegroup\": \"ps8710\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgaHk=\",\r\n \"name\": \"ps7689\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2498.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps2498.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7689.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFE8\"\r\n },\r\n \"resourcegroup\": \"ps5490\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDg/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -2298,13 +2241,13 @@ "11970" ], "x-ms-request-id": [ - "1c7d60b9-57d8-4c86-ba67-888df1b9fc8d" + "cc5be287-8e2a-4114-a419-5de89d49e809" ], "x-ms-correlation-request-id": [ - "1c7d60b9-57d8-4c86-ba67-888df1b9fc8d" + "cc5be287-8e2a-4114-a419-5de89d49e809" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204103Z:1c7d60b9-57d8-4c86-ba67-888df1b9fc8d" + "WESTUS2:20200916T231852Z:cc5be287-8e2a-4114-a419-5de89d49e809" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2313,10 +2256,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:41:03 GMT" + "Wed, 16 Sep 2020 23:18:52 GMT" ], "Content-Length": [ - "637" + "640" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2325,25 +2268,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMitqw=\",\r\n \"name\": \"ps808\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps808.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010900F\"\r\n },\r\n \"resourcegroup\": \"ps8710\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgaSE=\",\r\n \"name\": \"ps7689\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7689.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFE8\"\r\n },\r\n \"resourcegroup\": \"ps5490\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/IotHubs/ps3468?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczM0Njg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/IotHubs/ps2498?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI0OTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "96f23613-1cb0-48b1-9966-82fb6e3b9d27" + "bb9ac4ab-80ae-4d14-89e5-e3f5f5fbcd4e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ], "Content-Type": [ @@ -2361,7 +2304,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYWJhZmY0NzMtNmU5My00NmJhLWFjYjMtMjFhMDE1NThjNjIz?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYTk4ZDc2NGItZDRhNS00ZTM1LTkxZmYtN2E3YjQzY2NlZjk2?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2370,13 +2313,13 @@ "4999" ], "x-ms-request-id": [ - "5daee48e-1fcb-46c9-ad3e-b551ba1a5cb5" + "bbd1e196-3b48-4094-a320-0a25376c0132" ], "x-ms-correlation-request-id": [ - "5daee48e-1fcb-46c9-ad3e-b551ba1a5cb5" + "bbd1e196-3b48-4094-a320-0a25376c0132" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T203710Z:5daee48e-1fcb-46c9-ad3e-b551ba1a5cb5" + "WESTUS2:20200916T231502Z:bbd1e196-3b48-4094-a320-0a25376c0132" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2385,7 +2328,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:37:09 GMT" + "Wed, 16 Sep 2020 23:15:01 GMT" ], "Content-Length": [ "619" @@ -2397,25 +2340,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/IotHubs/ps3468\",\r\n \"name\": \"ps3468\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8710\",\r\n \"properties\": {\r\n \"state\": \"Activating\",\r\n \"provisioningState\": \"Accepted\",\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/IotHubs/ps2498\",\r\n \"name\": \"ps2498\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps5490\",\r\n \"properties\": {\r\n \"state\": \"Activating\",\r\n \"provisioningState\": \"Accepted\",\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/IotHubs/ps3468?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczM0Njg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/IotHubs/ps2498?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI0OTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAAA3Cqi4=\",\r\n \"properties\": {\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"bw0/Sd7drI3cSVHMNzZWr9gsH3fe/mljP+4HO7gdj2s=\",\r\n \"secondaryKey\": \"Y9TnbJ3pSNgpjgX5okhdBgjQGuvkLGDPuNZbh1pfrSE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"p+6PuZ4QZkKMV7Jm6Qo3F07IQ66cru2OIvvHOzvfI/s=\",\r\n \"secondaryKey\": \"OfeuONee2Mg/mEldAdXwE4IWN+wdzXqoIrfSYuy2Dn4=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"cdYNxYXHhuXqRb1An8UTitYclRh2LUGvVZw/T6UOPUI=\",\r\n \"secondaryKey\": \"bZq0QXl3BgdwT+NcfeP5mFMJeUYrGIuwjyEanJ63lg4=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"z5N0uBVvAiGFGJNriFNqDvtbLgO9HaQjyXmQh9NKryo=\",\r\n \"secondaryKey\": \"Cb6oCTT+zZzyKnxxwh9pjjqcvJuHGHsiK5FPGo+oo44=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"/Yw6x3JMeOJMd9YxuWjScDXcb37o7Xzv0e3fBylMxXw=\",\r\n \"secondaryKey\": \"TEsaT84HgPgd0hPBSJoj5Mx5NP3KadvjC8Pt/qbhIbo=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"ServiceKey\",\r\n \"rights\": \"ServiceConnect\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"etag\": \"AAAAAiG/5Eg=\",\r\n \"properties\": {\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"vRftT4ufabYghZukdYHzE2LDGG741vSOreq9xs8T8uw=\",\r\n \"secondaryKey\": \"bmZocGdxe8V7EzuHZjVdBEn5A/GnTJ41vmvwfE7ezJA=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"iaSiy4+VuSs336QEK81iDpYaPkvUqRzyIAHP0SbvgqA=\",\r\n \"secondaryKey\": \"08Lng9/JIoaTIGHmnshNaVDEeLmp7Fb2G1KCjVmz+m4=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"jeYWZD0ehNntf8i6lGTq92qoFvq5nctcPdjdUZW+7Vs=\",\r\n \"secondaryKey\": \"+61ZmFaRuHYyzrsIlJBy9EBvFearzsA+3TyKdZlUN5Y=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"W2/9L93V7mvztBsFasNwuq67HiRxcLt5eb0TrO2TaQ8=\",\r\n \"secondaryKey\": \"Bk0sr24SW7itQSB8x0EHmtSELhyhwkVv0KVcH6g6UEg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"YUuZBDD/Qcy+TBU0rwr5pYPn+VmfTtkdldig94dizsI=\",\r\n \"secondaryKey\": \"VhXnSf1y/Hi37iXjEt67Ev4oTvV0fSf7hGqCEIWrNAc=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"ServiceKey\",\r\n \"rights\": \"ServiceConnect\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "52323b75-2338-491b-b1f9-af6e00a9ff31" + "8f8fe576-80c1-433b-9501-acc63a72f643" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ], "Content-Type": [ @@ -2433,7 +2376,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNWVhNTZiZjQtNDk4Mi00Y2Q0LTliZDQtMDYzMjY2YWY3Njky?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYjk3OWFiZTEtNmE2MC00NDg4LThiNzgtNGNjOWMxMDY4Yjc1?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2442,13 +2385,13 @@ "4998" ], "x-ms-request-id": [ - "110b18d2-5b84-4e9f-9899-31c546ebe020" + "13ba54d3-d4f3-4ce0-9333-5f1824c38154" ], "x-ms-correlation-request-id": [ - "110b18d2-5b84-4e9f-9899-31c546ebe020" + "13ba54d3-d4f3-4ce0-9333-5f1824c38154" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T203916Z:110b18d2-5b84-4e9f-9899-31c546ebe020" + "WESTUS2:20200916T231708Z:13ba54d3-d4f3-4ce0-9333-5f1824c38154" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2457,7 +2400,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:39:15 GMT" + "Wed, 16 Sep 2020 23:17:07 GMT" ], "Content-Length": [ "4100" @@ -2469,19 +2412,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/IotHubs/ps3468\",\r\n \"name\": \"ps3468\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8710\",\r\n \"etag\": \"AAAAAA3Cqi4=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"bw0/Sd7drI3cSVHMNzZWr9gsH3fe/mljP+4HO7gdj2s=\",\r\n \"secondaryKey\": \"Y9TnbJ3pSNgpjgX5okhdBgjQGuvkLGDPuNZbh1pfrSE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"p+6PuZ4QZkKMV7Jm6Qo3F07IQ66cru2OIvvHOzvfI/s=\",\r\n \"secondaryKey\": \"OfeuONee2Mg/mEldAdXwE4IWN+wdzXqoIrfSYuy2Dn4=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"cdYNxYXHhuXqRb1An8UTitYclRh2LUGvVZw/T6UOPUI=\",\r\n \"secondaryKey\": \"bZq0QXl3BgdwT+NcfeP5mFMJeUYrGIuwjyEanJ63lg4=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"z5N0uBVvAiGFGJNriFNqDvtbLgO9HaQjyXmQh9NKryo=\",\r\n \"secondaryKey\": \"Cb6oCTT+zZzyKnxxwh9pjjqcvJuHGHsiK5FPGo+oo44=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"/Yw6x3JMeOJMd9YxuWjScDXcb37o7Xzv0e3fBylMxXw=\",\r\n \"secondaryKey\": \"TEsaT84HgPgd0hPBSJoj5Mx5NP3KadvjC8Pt/qbhIbo=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"ServiceKey\",\r\n \"primaryKey\": \"NgjVY4zKON8ZJK/D5eM71LP2GhrhuVP3MyQ7WFngU8k=\",\r\n \"secondaryKey\": \"n2UFwQwGoxWK2h1AjddbaHrQ4oq81Epxsp7pUrq9gGM=\",\r\n \"rights\": \"ServiceConnect\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3468-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps3468-3465118-140174f161.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-4833c251-55c6-4e2f-a36a-741f6393315a-iothub\",\r\n \"PrimaryKey\": \"c1I1papVIH/zX0dGhS4g5LmwfXW6SFWxUpmxXjTuyJ0=\",\r\n \"SecondaryKey\": \"+bT8PdYvN0Gyo1Ruy0vNYdP3q5vgx1zZ7gUrqjtjTEk=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 18 May 2020 20:38:49 GMT\",\r\n \"ModifiedTime\": \"Mon, 18 May 2020 20:38:49 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-a65ae53b-64d7-43b7-b899-20cbc8d5cfac-iothub\",\r\n \"PrimaryKey\": \"gCZAoYo0UzyoA/+Lx1j+H8VwQjca9F46bHr5jsQzBTE=\",\r\n \"SecondaryKey\": \"shLxIEHjDbFsJv59Zqqs1NKE4mLUi3VmHoj9F53vxek=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 18 May 2020 20:38:49 GMT\",\r\n \"ModifiedTime\": \"Mon, 18 May 2020 20:38:49 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"bw0/Sd7drI3cSVHMNzZWr9gsH3fe/mljP+4HO7gdj2s=\",\r\n \"SecondaryKey\": \"Y9TnbJ3pSNgpjgX5okhdBgjQGuvkLGDPuNZbh1pfrSE=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 18 May 2020 20:38:49 GMT\",\r\n \"ModifiedTime\": \"Mon, 18 May 2020 20:38:49 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"p+6PuZ4QZkKMV7Jm6Qo3F07IQ66cru2OIvvHOzvfI/s=\",\r\n \"SecondaryKey\": \"OfeuONee2Mg/mEldAdXwE4IWN+wdzXqoIrfSYuy2Dn4=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 18 May 2020 20:38:49 GMT\",\r\n \"ModifiedTime\": \"Mon, 18 May 2020 20:38:49 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/IotHubs/ps2498\",\r\n \"name\": \"ps2498\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps5490\",\r\n \"etag\": \"AAAAAiG/5Eg=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"vRftT4ufabYghZukdYHzE2LDGG741vSOreq9xs8T8uw=\",\r\n \"secondaryKey\": \"bmZocGdxe8V7EzuHZjVdBEn5A/GnTJ41vmvwfE7ezJA=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"iaSiy4+VuSs336QEK81iDpYaPkvUqRzyIAHP0SbvgqA=\",\r\n \"secondaryKey\": \"08Lng9/JIoaTIGHmnshNaVDEeLmp7Fb2G1KCjVmz+m4=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"jeYWZD0ehNntf8i6lGTq92qoFvq5nctcPdjdUZW+7Vs=\",\r\n \"secondaryKey\": \"+61ZmFaRuHYyzrsIlJBy9EBvFearzsA+3TyKdZlUN5Y=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"W2/9L93V7mvztBsFasNwuq67HiRxcLt5eb0TrO2TaQ8=\",\r\n \"secondaryKey\": \"Bk0sr24SW7itQSB8x0EHmtSELhyhwkVv0KVcH6g6UEg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"YUuZBDD/Qcy+TBU0rwr5pYPn+VmfTtkdldig94dizsI=\",\r\n \"secondaryKey\": \"VhXnSf1y/Hi37iXjEt67Ev4oTvV0fSf7hGqCEIWrNAc=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"ServiceKey\",\r\n \"primaryKey\": \"e1Aev7l/MlBkj9naFNDfg2XcHkE8drovucdzBHDEO4c=\",\r\n \"secondaryKey\": \"oApt5q15VvBnWbYsu8RVSQ8dlTfZQsUd9P+23WK9toY=\",\r\n \"rights\": \"ServiceConnect\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2498-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps2498-4636602-1b5019bf4b.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-5db1f2ed-9dba-4046-b7e8-62731deb95ea-iothub\",\r\n \"PrimaryKey\": \"+Csgv10d6+nrieInZKdGifIAj3sfIskzjTWxFcRuVWs=\",\r\n \"SecondaryKey\": \"BIvTmF4W2Ret6pmVdqG5TY2Mxbe+I9H4cczbuDRWYxs=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 16 Sep 2020 23:16:50 GMT\",\r\n \"ModifiedTime\": \"Wed, 16 Sep 2020 23:16:50 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-da8f2ba7-e8cb-4051-b333-5657b3c8efc3-iothub\",\r\n \"PrimaryKey\": \"TG0d4o7bMQnZ1vxyFGpdAQ/XvoqFZ16xJTPirm+G77A=\",\r\n \"SecondaryKey\": \"gsmZ7J6ul5TGOwrIbu3+K1z9CEptR3wqoo2B3FgPuqo=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 16 Sep 2020 23:16:50 GMT\",\r\n \"ModifiedTime\": \"Wed, 16 Sep 2020 23:16:50 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"vRftT4ufabYghZukdYHzE2LDGG741vSOreq9xs8T8uw=\",\r\n \"SecondaryKey\": \"bmZocGdxe8V7EzuHZjVdBEn5A/GnTJ41vmvwfE7ezJA=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 16 Sep 2020 23:16:50 GMT\",\r\n \"ModifiedTime\": \"Wed, 16 Sep 2020 23:16:50 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"iaSiy4+VuSs336QEK81iDpYaPkvUqRzyIAHP0SbvgqA=\",\r\n \"SecondaryKey\": \"08Lng9/JIoaTIGHmnshNaVDEeLmp7Fb2G1KCjVmz+m4=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 16 Sep 2020 23:16:50 GMT\",\r\n \"ModifiedTime\": \"Wed, 16 Sep 2020 23:16:50 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYWJhZmY0NzMtNmU5My00NmJhLWFjYjMtMjFhMDE1NThjNjIz?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWVdKaFptWTBOek10Tm1VNU15MDBObUpoTFdGallqTXRNakZoTURFMU5UaGpOakl6P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYTk4ZDc2NGItZDRhNS00ZTM1LTkxZmYtN2E3YjQzY2NlZjk2?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWVRrNFpEYzJOR0l0WkRSaE5TMDBaVE0xTFRreFptWXROMkUzWWpRelkyTmxaamsyP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -2496,16 +2439,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-request-id": [ - "b120e5de-f687-46ad-a52e-dc8b8cc757c0" + "ba35d507-a2f5-4800-ad6b-d573ca2daf06" ], "x-ms-correlation-request-id": [ - "b120e5de-f687-46ad-a52e-dc8b8cc757c0" + "ba35d507-a2f5-4800-ad6b-d573ca2daf06" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T203740Z:b120e5de-f687-46ad-a52e-dc8b8cc757c0" + "WESTUS2:20200916T231532Z:ba35d507-a2f5-4800-ad6b-d573ca2daf06" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2514,7 +2457,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:37:40 GMT" + "Wed, 16 Sep 2020 23:15:31 GMT" ], "Content-Length": [ "20" @@ -2530,15 +2473,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYWJhZmY0NzMtNmU5My00NmJhLWFjYjMtMjFhMDE1NThjNjIz?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWVdKaFptWTBOek10Tm1VNU15MDBObUpoTFdGallqTXRNakZoTURFMU5UaGpOakl6P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYTk4ZDc2NGItZDRhNS00ZTM1LTkxZmYtN2E3YjQzY2NlZjk2?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWVRrNFpEYzJOR0l0WkRSaE5TMDBaVE0xTFRreFptWXROMkUzWWpRelkyTmxaamsyP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -2553,16 +2496,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11998" ], "x-ms-request-id": [ - "2e8eaba0-b5dc-4143-b0c1-b9ebaa31dacf" + "68d4218a-401f-4561-98a7-f5d7a6a9fb64" ], "x-ms-correlation-request-id": [ - "2e8eaba0-b5dc-4143-b0c1-b9ebaa31dacf" + "68d4218a-401f-4561-98a7-f5d7a6a9fb64" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T203810Z:2e8eaba0-b5dc-4143-b0c1-b9ebaa31dacf" + "WESTUS2:20200916T231602Z:68d4218a-401f-4561-98a7-f5d7a6a9fb64" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2571,7 +2514,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:38:10 GMT" + "Wed, 16 Sep 2020 23:16:02 GMT" ], "Content-Length": [ "20" @@ -2587,15 +2530,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYWJhZmY0NzMtNmU5My00NmJhLWFjYjMtMjFhMDE1NThjNjIz?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWVdKaFptWTBOek10Tm1VNU15MDBObUpoTFdGallqTXRNakZoTURFMU5UaGpOakl6P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYTk4ZDc2NGItZDRhNS00ZTM1LTkxZmYtN2E3YjQzY2NlZjk2?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWVRrNFpEYzJOR0l0WkRSaE5TMDBaVE0xTFRreFptWXROMkUzWWpRelkyTmxaamsyP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -2610,16 +2553,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11997" ], "x-ms-request-id": [ - "6473fb21-9879-4f70-a591-db0960c45180" + "6d3c4ff6-fc13-4c2d-a54b-8e076ae37d42" ], "x-ms-correlation-request-id": [ - "6473fb21-9879-4f70-a591-db0960c45180" + "6d3c4ff6-fc13-4c2d-a54b-8e076ae37d42" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T203841Z:6473fb21-9879-4f70-a591-db0960c45180" + "WESTUS2:20200916T231633Z:6d3c4ff6-fc13-4c2d-a54b-8e076ae37d42" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2628,7 +2571,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:38:41 GMT" + "Wed, 16 Sep 2020 23:16:32 GMT" ], "Content-Length": [ "20" @@ -2644,15 +2587,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYWJhZmY0NzMtNmU5My00NmJhLWFjYjMtMjFhMDE1NThjNjIz?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWVdKaFptWTBOek10Tm1VNU15MDBObUpoTFdGallqTXRNakZoTURFMU5UaGpOakl6P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYTk4ZDc2NGItZDRhNS00ZTM1LTkxZmYtN2E3YjQzY2NlZjk2?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWVRrNFpEYzJOR0l0WkRSaE5TMDBaVE0xTFRreFptWXROMkUzWWpRelkyTmxaamsyP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -2667,16 +2610,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11996" ], "x-ms-request-id": [ - "e4537acd-7b3b-4461-833b-01f0eefe9d08" + "63884274-a229-48cf-9e9e-855a69d95459" ], "x-ms-correlation-request-id": [ - "e4537acd-7b3b-4461-833b-01f0eefe9d08" + "63884274-a229-48cf-9e9e-855a69d95459" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T203911Z:e4537acd-7b3b-4461-833b-01f0eefe9d08" + "WESTUS2:20200916T231703Z:63884274-a229-48cf-9e9e-855a69d95459" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2685,7 +2628,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:39:10 GMT" + "Wed, 16 Sep 2020 23:17:02 GMT" ], "Content-Length": [ "22" @@ -2701,15 +2644,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/IotHubs/ps3468?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczM0Njg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/IotHubs/ps2498?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI0OTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -2724,16 +2667,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11995" ], "x-ms-request-id": [ - "8d98324b-eb82-4000-a52e-f13cc13aa665" + "3d061e03-bac1-40b9-b732-61d8cf3bbd90" ], "x-ms-correlation-request-id": [ - "8d98324b-eb82-4000-a52e-f13cc13aa665" + "3d061e03-bac1-40b9-b732-61d8cf3bbd90" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T203912Z:8d98324b-eb82-4000-a52e-f13cc13aa665" + "WESTUS2:20200916T231703Z:3d061e03-bac1-40b9-b732-61d8cf3bbd90" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2742,7 +2685,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:39:11 GMT" + "Wed, 16 Sep 2020 23:17:03 GMT" ], "Content-Length": [ "1460" @@ -2754,25 +2697,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/IotHubs/ps3468\",\r\n \"name\": \"ps3468\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8710\",\r\n \"etag\": \"AAAAAA3Cqi4=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps3468.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3468\",\r\n \"endpoint\": \"sb://iothub-ns-ps3468-3465118-140174f161.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/IotHubs/ps2498\",\r\n \"name\": \"ps2498\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps5490\",\r\n \"etag\": \"AAAAAiG/5Eg=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2498.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2498\",\r\n \"endpoint\": \"sb://iothub-ns-ps2498-4636602-1b5019bf4b.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/IotHubs/ps3468?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczM0Njg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/IotHubs/ps2498?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI0OTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4cd5a1fd-17e1-4c60-824c-4d0398f45b27" + "e9231878-592b-48cb-a1ac-aa381bf313b2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -2787,16 +2730,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11994" ], "x-ms-request-id": [ - "3fe8a737-a326-4e1d-84e8-c2eaa0af31ae" + "fe5ff164-f8bd-4e32-aab7-a4d2c291a7f4" ], "x-ms-correlation-request-id": [ - "3fe8a737-a326-4e1d-84e8-c2eaa0af31ae" + "fe5ff164-f8bd-4e32-aab7-a4d2c291a7f4" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T203912Z:3fe8a737-a326-4e1d-84e8-c2eaa0af31ae" + "WESTUS2:20200916T231704Z:fe5ff164-f8bd-4e32-aab7-a4d2c291a7f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2805,7 +2748,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:39:11 GMT" + "Wed, 16 Sep 2020 23:17:03 GMT" ], "Content-Length": [ "1460" @@ -2817,25 +2760,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/IotHubs/ps3468\",\r\n \"name\": \"ps3468\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8710\",\r\n \"etag\": \"AAAAAA3Cqi4=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps3468.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3468\",\r\n \"endpoint\": \"sb://iothub-ns-ps3468-3465118-140174f161.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/IotHubs/ps2498\",\r\n \"name\": \"ps2498\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps5490\",\r\n \"etag\": \"AAAAAiG/5Eg=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2498.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2498\",\r\n \"endpoint\": \"sb://iothub-ns-ps2498-4636602-1b5019bf4b.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/IotHubs/ps3468?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczM0Njg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/IotHubs/ps2498?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI0OTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "238a9326-3e4d-411a-a862-92f81e143b59" + "49796920-33a9-4576-84c8-fa1e0fc343f6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -2850,16 +2793,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11993" ], "x-ms-request-id": [ - "505c0564-d28b-4fdb-a71b-5a863034b05d" + "625dfc8f-ae95-4f95-9c78-ed19e92c8b0c" ], "x-ms-correlation-request-id": [ - "505c0564-d28b-4fdb-a71b-5a863034b05d" + "625dfc8f-ae95-4f95-9c78-ed19e92c8b0c" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T203913Z:505c0564-d28b-4fdb-a71b-5a863034b05d" + "WESTUS2:20200916T231705Z:625dfc8f-ae95-4f95-9c78-ed19e92c8b0c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2868,7 +2811,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:39:12 GMT" + "Wed, 16 Sep 2020 23:17:04 GMT" ], "Content-Length": [ "1460" @@ -2880,19 +2823,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/IotHubs/ps3468\",\r\n \"name\": \"ps3468\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8710\",\r\n \"etag\": \"AAAAAA3Cqi4=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps3468.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3468\",\r\n \"endpoint\": \"sb://iothub-ns-ps3468-3465118-140174f161.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/IotHubs/ps2498\",\r\n \"name\": \"ps2498\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps5490\",\r\n \"etag\": \"AAAAAiG/5Eg=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2498.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2498\",\r\n \"endpoint\": \"sb://iothub-ns-ps2498-4636602-1b5019bf4b.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/IotHubs/ps3468?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczM0Njg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/IotHubs/ps2498?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI0OTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -2907,16 +2850,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11991" ], "x-ms-request-id": [ - "3e93a825-c1e7-45f5-a68c-7bf8de8dc452" + "b7c92ffa-2b3e-4914-bf88-fb6cb130007c" ], "x-ms-correlation-request-id": [ - "3e93a825-c1e7-45f5-a68c-7bf8de8dc452" + "b7c92ffa-2b3e-4914-bf88-fb6cb130007c" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T203947Z:3e93a825-c1e7-45f5-a68c-7bf8de8dc452" + "WESTUS2:20200916T231739Z:b7c92ffa-2b3e-4914-bf88-fb6cb130007c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2925,7 +2868,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:39:46 GMT" + "Wed, 16 Sep 2020 23:17:39 GMT" ], "Content-Length": [ "1460" @@ -2937,25 +2880,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/IotHubs/ps3468\",\r\n \"name\": \"ps3468\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8710\",\r\n \"etag\": \"AAAAAA3CqsM=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps3468.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3468\",\r\n \"endpoint\": \"sb://iothub-ns-ps3468-3465118-140174f161.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/IotHubs/ps2498\",\r\n \"name\": \"ps2498\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps5490\",\r\n \"etag\": \"AAAAAiHAwpo=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2498.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2498\",\r\n \"endpoint\": \"sb://iothub-ns-ps2498-4636602-1b5019bf4b.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/IotHubs/ps3468/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczM0NjgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/IotHubs/ps2498/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI0OTgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a7fcb1b7-5131-4b4b-813d-7881ee94feb6" + "0422bff1-88a2-4e48-84f5-2b8366bd1d61" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -2973,13 +2916,13 @@ "1199" ], "x-ms-request-id": [ - "17abf5c4-d6b9-483b-9a18-bb0a140720dd" + "8f984cc1-cad0-4f2c-a9a7-d1005842e775" ], "x-ms-correlation-request-id": [ - "17abf5c4-d6b9-483b-9a18-bb0a140720dd" + "8f984cc1-cad0-4f2c-a9a7-d1005842e775" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T203913Z:17abf5c4-d6b9-483b-9a18-bb0a140720dd" + "WESTUS2:20200916T231705Z:8f984cc1-cad0-4f2c-a9a7-d1005842e775" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2988,7 +2931,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:39:12 GMT" + "Wed, 16 Sep 2020 23:17:04 GMT" ], "Content-Length": [ "905" @@ -3000,25 +2943,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"bw0/Sd7drI3cSVHMNzZWr9gsH3fe/mljP+4HO7gdj2s=\",\r\n \"secondaryKey\": \"Y9TnbJ3pSNgpjgX5okhdBgjQGuvkLGDPuNZbh1pfrSE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"p+6PuZ4QZkKMV7Jm6Qo3F07IQ66cru2OIvvHOzvfI/s=\",\r\n \"secondaryKey\": \"OfeuONee2Mg/mEldAdXwE4IWN+wdzXqoIrfSYuy2Dn4=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"cdYNxYXHhuXqRb1An8UTitYclRh2LUGvVZw/T6UOPUI=\",\r\n \"secondaryKey\": \"bZq0QXl3BgdwT+NcfeP5mFMJeUYrGIuwjyEanJ63lg4=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"z5N0uBVvAiGFGJNriFNqDvtbLgO9HaQjyXmQh9NKryo=\",\r\n \"secondaryKey\": \"Cb6oCTT+zZzyKnxxwh9pjjqcvJuHGHsiK5FPGo+oo44=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"/Yw6x3JMeOJMd9YxuWjScDXcb37o7Xzv0e3fBylMxXw=\",\r\n \"secondaryKey\": \"TEsaT84HgPgd0hPBSJoj5Mx5NP3KadvjC8Pt/qbhIbo=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"vRftT4ufabYghZukdYHzE2LDGG741vSOreq9xs8T8uw=\",\r\n \"secondaryKey\": \"bmZocGdxe8V7EzuHZjVdBEn5A/GnTJ41vmvwfE7ezJA=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"iaSiy4+VuSs336QEK81iDpYaPkvUqRzyIAHP0SbvgqA=\",\r\n \"secondaryKey\": \"08Lng9/JIoaTIGHmnshNaVDEeLmp7Fb2G1KCjVmz+m4=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"jeYWZD0ehNntf8i6lGTq92qoFvq5nctcPdjdUZW+7Vs=\",\r\n \"secondaryKey\": \"+61ZmFaRuHYyzrsIlJBy9EBvFearzsA+3TyKdZlUN5Y=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"W2/9L93V7mvztBsFasNwuq67HiRxcLt5eb0TrO2TaQ8=\",\r\n \"secondaryKey\": \"Bk0sr24SW7itQSB8x0EHmtSELhyhwkVv0KVcH6g6UEg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"YUuZBDD/Qcy+TBU0rwr5pYPn+VmfTtkdldig94dizsI=\",\r\n \"secondaryKey\": \"VhXnSf1y/Hi37iXjEt67Ev4oTvV0fSf7hGqCEIWrNAc=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/IotHubs/ps3468/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczM0NjgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/IotHubs/ps2498/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI0OTgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4d5520db-aeac-4198-b2b9-96cc0892b7c2" + "678d7e09-dc8b-4bfa-84f0-874c284b1bce" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -3036,13 +2979,13 @@ "1198" ], "x-ms-request-id": [ - "b35d20c3-c3c4-4584-a415-c7d589b58f65" + "f990ca6a-e8c5-4a59-9dbe-916635ecba92" ], "x-ms-correlation-request-id": [ - "b35d20c3-c3c4-4584-a415-c7d589b58f65" + "f990ca6a-e8c5-4a59-9dbe-916635ecba92" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T203947Z:b35d20c3-c3c4-4584-a415-c7d589b58f65" + "WESTUS2:20200916T231739Z:f990ca6a-e8c5-4a59-9dbe-916635ecba92" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3051,7 +2994,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:39:46 GMT" + "Wed, 16 Sep 2020 23:17:39 GMT" ], "Content-Length": [ "1078" @@ -3063,19 +3006,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"bw0/Sd7drI3cSVHMNzZWr9gsH3fe/mljP+4HO7gdj2s=\",\r\n \"secondaryKey\": \"Y9TnbJ3pSNgpjgX5okhdBgjQGuvkLGDPuNZbh1pfrSE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"p+6PuZ4QZkKMV7Jm6Qo3F07IQ66cru2OIvvHOzvfI/s=\",\r\n \"secondaryKey\": \"OfeuONee2Mg/mEldAdXwE4IWN+wdzXqoIrfSYuy2Dn4=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"cdYNxYXHhuXqRb1An8UTitYclRh2LUGvVZw/T6UOPUI=\",\r\n \"secondaryKey\": \"bZq0QXl3BgdwT+NcfeP5mFMJeUYrGIuwjyEanJ63lg4=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"z5N0uBVvAiGFGJNriFNqDvtbLgO9HaQjyXmQh9NKryo=\",\r\n \"secondaryKey\": \"Cb6oCTT+zZzyKnxxwh9pjjqcvJuHGHsiK5FPGo+oo44=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"/Yw6x3JMeOJMd9YxuWjScDXcb37o7Xzv0e3fBylMxXw=\",\r\n \"secondaryKey\": \"TEsaT84HgPgd0hPBSJoj5Mx5NP3KadvjC8Pt/qbhIbo=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"ServiceKey\",\r\n \"primaryKey\": \"NgjVY4zKON8ZJK/D5eM71LP2GhrhuVP3MyQ7WFngU8k=\",\r\n \"secondaryKey\": \"n2UFwQwGoxWK2h1AjddbaHrQ4oq81Epxsp7pUrq9gGM=\",\r\n \"rights\": \"ServiceConnect\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"vRftT4ufabYghZukdYHzE2LDGG741vSOreq9xs8T8uw=\",\r\n \"secondaryKey\": \"bmZocGdxe8V7EzuHZjVdBEn5A/GnTJ41vmvwfE7ezJA=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"iaSiy4+VuSs336QEK81iDpYaPkvUqRzyIAHP0SbvgqA=\",\r\n \"secondaryKey\": \"08Lng9/JIoaTIGHmnshNaVDEeLmp7Fb2G1KCjVmz+m4=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"jeYWZD0ehNntf8i6lGTq92qoFvq5nctcPdjdUZW+7Vs=\",\r\n \"secondaryKey\": \"+61ZmFaRuHYyzrsIlJBy9EBvFearzsA+3TyKdZlUN5Y=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"W2/9L93V7mvztBsFasNwuq67HiRxcLt5eb0TrO2TaQ8=\",\r\n \"secondaryKey\": \"Bk0sr24SW7itQSB8x0EHmtSELhyhwkVv0KVcH6g6UEg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"YUuZBDD/Qcy+TBU0rwr5pYPn+VmfTtkdldig94dizsI=\",\r\n \"secondaryKey\": \"VhXnSf1y/Hi37iXjEt67Ev4oTvV0fSf7hGqCEIWrNAc=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"ServiceKey\",\r\n \"primaryKey\": \"e1Aev7l/MlBkj9naFNDfg2XcHkE8drovucdzBHDEO4c=\",\r\n \"secondaryKey\": \"oApt5q15VvBnWbYsu8RVSQ8dlTfZQsUd9P+23WK9toY=\",\r\n \"rights\": \"ServiceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNWVhNTZiZjQtNDk4Mi00Y2Q0LTliZDQtMDYzMjY2YWY3Njky?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTldWaE5UWmlaalF0TkRrNE1pMDBZMlEwTFRsaVpEUXRNRFl6TWpZMllXWTNOamt5P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYjk3OWFiZTEtNmE2MC00NDg4LThiNzgtNGNjOWMxMDY4Yjc1?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWprM09XRmlaVEV0Tm1FMk1DMDBORGc0TFRoaU56Z3ROR05qT1dNeE1EWTRZamMxP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -3090,16 +3033,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11992" ], "x-ms-request-id": [ - "34581ca8-635d-464b-8563-916eefcb557e" + "16124af6-c158-4a1b-b5e0-4a9d1d544c3b" ], "x-ms-correlation-request-id": [ - "34581ca8-635d-464b-8563-916eefcb557e" + "16124af6-c158-4a1b-b5e0-4a9d1d544c3b" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T203946Z:34581ca8-635d-464b-8563-916eefcb557e" + "WESTUS2:20200916T231739Z:16124af6-c158-4a1b-b5e0-4a9d1d544c3b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3108,7 +3051,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:39:45 GMT" + "Wed, 16 Sep 2020 23:17:38 GMT" ], "Content-Length": [ "22" @@ -3124,21 +3067,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/IotHubs/ps3468/IotHubKeys/ServiceKey/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczM0NjgvSW90SHViS2V5cy9TZXJ2aWNlS2V5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/IotHubs/ps2498/IotHubKeys/ServiceKey/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI0OTgvSW90SHViS2V5cy9TZXJ2aWNlS2V5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldw==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c73010ba-f2aa-4dd6-a1d6-96f5e27fbc54" + "d4b6a49a-4dbd-40a2-baf4-7db9d3b37711" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -3156,13 +3099,13 @@ "1197" ], "x-ms-request-id": [ - "97b3cb44-d1d0-437a-907d-476d25b87440" + "2076cad0-229a-4376-b315-a32c9d20ddf8" ], "x-ms-correlation-request-id": [ - "97b3cb44-d1d0-437a-907d-476d25b87440" + "2076cad0-229a-4376-b315-a32c9d20ddf8" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T203947Z:97b3cb44-d1d0-437a-907d-476d25b87440" + "WESTUS2:20200916T231740Z:2076cad0-229a-4376-b315-a32c9d20ddf8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3171,7 +3114,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:39:46 GMT" + "Wed, 16 Sep 2020 23:17:39 GMT" ], "Content-Length": [ "172" @@ -3183,19 +3126,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"keyName\": \"ServiceKey\",\r\n \"primaryKey\": \"NgjVY4zKON8ZJK/D5eM71LP2GhrhuVP3MyQ7WFngU8k=\",\r\n \"secondaryKey\": \"n2UFwQwGoxWK2h1AjddbaHrQ4oq81Epxsp7pUrq9gGM=\",\r\n \"rights\": \"ServiceConnect\"\r\n}", + "ResponseBody": "{\r\n \"keyName\": \"ServiceKey\",\r\n \"primaryKey\": \"e1Aev7l/MlBkj9naFNDfg2XcHkE8drovucdzBHDEO4c=\",\r\n \"secondaryKey\": \"oApt5q15VvBnWbYsu8RVSQ8dlTfZQsUd9P+23WK9toY=\",\r\n \"rights\": \"ServiceConnect\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808/operationResults/b3NfaWRfMDgxMjliYmItZjYyNC00M2M3LWJmYTYtN2ZhNmNmNWEwNGRm?api-version=2017-11-15&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDgvb3BlcmF0aW9uUmVzdWx0cy9iM05mYVdSZk1EZ3hNamxpWW1JdFpqWXlOQzAwTTJNM0xXSm1ZVFl0TjJaaE5tTm1OV0V3TkdSbT9hcGktdmVyc2lvbj0yMDE3LTExLTE1JmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689/operationResults/b3NfaWRfM2IwNjgyNGQtN2QzNC00OGNlLWI3NWQtMjQyNThlZDI0MmFh?api-version=2017-11-15&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5L29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZNMkl3TmpneU5HUXROMlF6TkMwME9HTmxMV0kzTldRdE1qUXlOVGhsWkRJME1tRmg/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -3213,13 +3156,13 @@ "11998" ], "x-ms-request-id": [ - "027f98d9-7fe2-482e-ad84-b87ee791786d" + "af7a9e6e-e026-4109-9056-74a53ce79c65" ], "x-ms-correlation-request-id": [ - "027f98d9-7fe2-482e-ad84-b87ee791786d" + "af7a9e6e-e026-4109-9056-74a53ce79c65" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204021Z:027f98d9-7fe2-482e-ad84-b87ee791786d" + "WESTUS2:20200916T231812Z:af7a9e6e-e026-4109-9056-74a53ce79c65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3228,7 +3171,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:40:20 GMT" + "Wed, 16 Sep 2020 23:18:11 GMT" ], "Content-Length": [ "22" @@ -3244,21 +3187,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "965c98d3-4550-43d6-be27-027a92621d46" + "afd51d9d-9fee-4638-bfcb-e41140f02655" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -3276,13 +3219,13 @@ "1199" ], "x-ms-request-id": [ - "22abefb3-daf9-463e-81dc-5288fd197008" + "1825154b-44f4-49e2-8b99-0b34253beaa0" ], "x-ms-correlation-request-id": [ - "22abefb3-daf9-463e-81dc-5288fd197008" + "1825154b-44f4-49e2-8b99-0b34253beaa0" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204022Z:22abefb3-daf9-463e-81dc-5288fd197008" + "WESTUS2:20200916T231812Z:1825154b-44f4-49e2-8b99-0b34253beaa0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3291,7 +3234,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:40:21 GMT" + "Wed, 16 Sep 2020 23:18:11 GMT" ], "Content-Length": [ "229" @@ -3303,25 +3246,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"ZPCzKIFjLhz3tdxefpqIL8XIo1fTRUvTdY6hrmpidvQ=\",\r\n \"secondaryKey\": \"3iU/e0ofEXCPa8n9OUoubVBT5jyEt4hA81ilsAleRIo=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"nvAgTjnKKQmvFGopxT7Rc3PA5B/NUTt8LMj33DZTCh4=\",\r\n \"secondaryKey\": \"xGV5+Dh1bB82hmmf4L1otNCKDoB15V/htwQv1C34brM=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6f15fddd-56d6-45fa-b2d2-cab5e1b68cc4" + "198c4644-e335-4a33-8af4-792873fecc3b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -3339,13 +3282,13 @@ "1198" ], "x-ms-request-id": [ - "98523b4b-aa8f-4439-889e-dd1cfe64e1dc" + "f8ca7b31-de3d-4abf-9d04-37fde6bc52f2" ], "x-ms-correlation-request-id": [ - "98523b4b-aa8f-4439-889e-dd1cfe64e1dc" + "f8ca7b31-de3d-4abf-9d04-37fde6bc52f2" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204022Z:98523b4b-aa8f-4439-889e-dd1cfe64e1dc" + "WESTUS2:20200916T231812Z:f8ca7b31-de3d-4abf-9d04-37fde6bc52f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3354,7 +3297,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:40:21 GMT" + "Wed, 16 Sep 2020 23:18:12 GMT" ], "Content-Length": [ "229" @@ -3366,25 +3309,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"ZPCzKIFjLhz3tdxefpqIL8XIo1fTRUvTdY6hrmpidvQ=\",\r\n \"secondaryKey\": \"3iU/e0ofEXCPa8n9OUoubVBT5jyEt4hA81ilsAleRIo=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"nvAgTjnKKQmvFGopxT7Rc3PA5B/NUTt8LMj33DZTCh4=\",\r\n \"secondaryKey\": \"xGV5+Dh1bB82hmmf4L1otNCKDoB15V/htwQv1C34brM=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "60b30593-fc3e-4d9c-a7be-7f596b5f89d7" + "f86cf6a4-8898-4852-96d2-e695eb99f621" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -3402,13 +3345,13 @@ "1197" ], "x-ms-request-id": [ - "5a2ad878-807c-484a-9ad7-28297cff78c2" + "3110ebf5-10b7-4a4b-84b1-49d462d8e82c" ], "x-ms-correlation-request-id": [ - "5a2ad878-807c-484a-9ad7-28297cff78c2" + "3110ebf5-10b7-4a4b-84b1-49d462d8e82c" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204022Z:5a2ad878-807c-484a-9ad7-28297cff78c2" + "WESTUS2:20200916T231813Z:3110ebf5-10b7-4a4b-84b1-49d462d8e82c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3417,7 +3360,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:40:22 GMT" + "Wed, 16 Sep 2020 23:18:12 GMT" ], "Content-Length": [ "229" @@ -3429,25 +3372,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"ZPCzKIFjLhz3tdxefpqIL8XIo1fTRUvTdY6hrmpidvQ=\",\r\n \"secondaryKey\": \"3iU/e0ofEXCPa8n9OUoubVBT5jyEt4hA81ilsAleRIo=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"nvAgTjnKKQmvFGopxT7Rc3PA5B/NUTt8LMj33DZTCh4=\",\r\n \"secondaryKey\": \"xGV5+Dh1bB82hmmf4L1otNCKDoB15V/htwQv1C34brM=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c77755fb-05e3-42ba-b127-cb09024e0deb" + "6bc3f7db-e63e-4a0b-bfea-cd0c8c4c1be9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -3465,13 +3408,13 @@ "1196" ], "x-ms-request-id": [ - "2c4b3bfe-1619-407a-9698-f28834bd9189" + "f089d5f6-bf5b-4807-804b-307e9861cd9d" ], "x-ms-correlation-request-id": [ - "2c4b3bfe-1619-407a-9698-f28834bd9189" + "f089d5f6-bf5b-4807-804b-307e9861cd9d" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204023Z:2c4b3bfe-1619-407a-9698-f28834bd9189" + "WESTUS2:20200916T231813Z:f089d5f6-bf5b-4807-804b-307e9861cd9d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3480,7 +3423,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:40:22 GMT" + "Wed, 16 Sep 2020 23:18:12 GMT" ], "Content-Length": [ "229" @@ -3492,25 +3435,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"ZPCzKIFjLhz3tdxefpqIL8XIo1fTRUvTdY6hrmpidvQ=\",\r\n \"secondaryKey\": \"3iU/e0ofEXCPa8n9OUoubVBT5jyEt4hA81ilsAleRIo=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"nvAgTjnKKQmvFGopxT7Rc3PA5B/NUTt8LMj33DZTCh4=\",\r\n \"secondaryKey\": \"xGV5+Dh1bB82hmmf4L1otNCKDoB15V/htwQv1C34brM=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7d81e63d-13cb-4e8f-b0fc-5daf77ce6644" + "390c7fa4-44b4-4a27-b46c-1b41a2cf8f89" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -3528,13 +3471,13 @@ "1195" ], "x-ms-request-id": [ - "441cf7c9-ba26-40b4-a042-9b96a3d02942" + "314b5824-ff00-4253-a243-c0a24172ccd1" ], "x-ms-correlation-request-id": [ - "441cf7c9-ba26-40b4-a042-9b96a3d02942" + "314b5824-ff00-4253-a243-c0a24172ccd1" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204023Z:441cf7c9-ba26-40b4-a042-9b96a3d02942" + "WESTUS2:20200916T231813Z:314b5824-ff00-4253-a243-c0a24172ccd1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3543,7 +3486,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:40:22 GMT" + "Wed, 16 Sep 2020 23:18:12 GMT" ], "Content-Length": [ "229" @@ -3555,25 +3498,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"ZPCzKIFjLhz3tdxefpqIL8XIo1fTRUvTdY6hrmpidvQ=\",\r\n \"secondaryKey\": \"3iU/e0ofEXCPa8n9OUoubVBT5jyEt4hA81ilsAleRIo=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"nvAgTjnKKQmvFGopxT7Rc3PA5B/NUTt8LMj33DZTCh4=\",\r\n \"secondaryKey\": \"xGV5+Dh1bB82hmmf4L1otNCKDoB15V/htwQv1C34brM=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d60974a2-5681-4f43-95a3-e0e461a70ab5" + "4bc1cd8c-bdde-47f9-ba14-d1dc80cd19e3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -3591,13 +3534,13 @@ "1194" ], "x-ms-request-id": [ - "584b2645-d207-4d07-8b71-dcb63980214c" + "69aeab0e-952c-4f06-9f98-ec4b53d11c56" ], "x-ms-correlation-request-id": [ - "584b2645-d207-4d07-8b71-dcb63980214c" + "69aeab0e-952c-4f06-9f98-ec4b53d11c56" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204023Z:584b2645-d207-4d07-8b71-dcb63980214c" + "WESTUS2:20200916T231813Z:69aeab0e-952c-4f06-9f98-ec4b53d11c56" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3606,7 +3549,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:40:23 GMT" + "Wed, 16 Sep 2020 23:18:13 GMT" ], "Content-Length": [ "229" @@ -3618,25 +3561,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"ZPCzKIFjLhz3tdxefpqIL8XIo1fTRUvTdY6hrmpidvQ=\",\r\n \"secondaryKey\": \"3iU/e0ofEXCPa8n9OUoubVBT5jyEt4hA81ilsAleRIo=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"nvAgTjnKKQmvFGopxT7Rc3PA5B/NUTt8LMj33DZTCh4=\",\r\n \"secondaryKey\": \"xGV5+Dh1bB82hmmf4L1otNCKDoB15V/htwQv1C34brM=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4e7d8fb1-c8dd-48f6-acb1-f7bf222522cc" + "73b23aeb-4abe-49e4-b490-cb56d3d1f3ce" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -3654,13 +3597,13 @@ "1193" ], "x-ms-request-id": [ - "eb8a61bc-a417-4f41-9bee-344eda5cfa68" + "2f6a88fb-7461-44ec-a531-9d979776ecda" ], "x-ms-correlation-request-id": [ - "eb8a61bc-a417-4f41-9bee-344eda5cfa68" + "2f6a88fb-7461-44ec-a531-9d979776ecda" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204024Z:eb8a61bc-a417-4f41-9bee-344eda5cfa68" + "WESTUS2:20200916T231814Z:2f6a88fb-7461-44ec-a531-9d979776ecda" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3669,7 +3612,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:40:23 GMT" + "Wed, 16 Sep 2020 23:18:13 GMT" ], "Content-Length": [ "229" @@ -3681,25 +3624,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"ZPCzKIFjLhz3tdxefpqIL8XIo1fTRUvTdY6hrmpidvQ=\",\r\n \"secondaryKey\": \"3iU/e0ofEXCPa8n9OUoubVBT5jyEt4hA81ilsAleRIo=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"nvAgTjnKKQmvFGopxT7Rc3PA5B/NUTt8LMj33DZTCh4=\",\r\n \"secondaryKey\": \"xGV5+Dh1bB82hmmf4L1otNCKDoB15V/htwQv1C34brM=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a10fe1d6-088e-4b7b-833b-fc48e1a86d65" + "e16a77b7-327f-4d76-bb91-51d32203df63" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -3717,13 +3660,13 @@ "1192" ], "x-ms-request-id": [ - "200d6a80-42e9-4613-b7f4-d7bda07a957e" + "b83f781b-2c5e-4bd6-b2c4-72527f7caae1" ], "x-ms-correlation-request-id": [ - "200d6a80-42e9-4613-b7f4-d7bda07a957e" + "b83f781b-2c5e-4bd6-b2c4-72527f7caae1" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204024Z:200d6a80-42e9-4613-b7f4-d7bda07a957e" + "WESTUS2:20200916T231814Z:b83f781b-2c5e-4bd6-b2c4-72527f7caae1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3732,7 +3675,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:40:23 GMT" + "Wed, 16 Sep 2020 23:18:13 GMT" ], "Content-Length": [ "229" @@ -3744,25 +3687,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"ZPCzKIFjLhz3tdxefpqIL8XIo1fTRUvTdY6hrmpidvQ=\",\r\n \"secondaryKey\": \"3iU/e0ofEXCPa8n9OUoubVBT5jyEt4hA81ilsAleRIo=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"nvAgTjnKKQmvFGopxT7Rc3PA5B/NUTt8LMj33DZTCh4=\",\r\n \"secondaryKey\": \"xGV5+Dh1bB82hmmf4L1otNCKDoB15V/htwQv1C34brM=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0cda707b-b8c6-4162-b628-f87d3ab397eb" + "478d48d8-df47-4477-9d58-fc19f6242639" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -3780,13 +3723,13 @@ "1191" ], "x-ms-request-id": [ - "1f62fd62-7848-4218-a05c-81c6d42850a4" + "a5cf3754-4841-4743-a31e-5cab15f92934" ], "x-ms-correlation-request-id": [ - "1f62fd62-7848-4218-a05c-81c6d42850a4" + "a5cf3754-4841-4743-a31e-5cab15f92934" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204024Z:1f62fd62-7848-4218-a05c-81c6d42850a4" + "WESTUS2:20200916T231814Z:a5cf3754-4841-4743-a31e-5cab15f92934" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3795,7 +3738,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:40:23 GMT" + "Wed, 16 Sep 2020 23:18:13 GMT" ], "Content-Length": [ "229" @@ -3807,25 +3750,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"ZPCzKIFjLhz3tdxefpqIL8XIo1fTRUvTdY6hrmpidvQ=\",\r\n \"secondaryKey\": \"3iU/e0ofEXCPa8n9OUoubVBT5jyEt4hA81ilsAleRIo=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"nvAgTjnKKQmvFGopxT7Rc3PA5B/NUTt8LMj33DZTCh4=\",\r\n \"secondaryKey\": \"xGV5+Dh1bB82hmmf4L1otNCKDoB15V/htwQv1C34brM=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1c675cba-8459-44f7-9588-3a68f6424241" + "e39a5c49-2db5-42f5-abde-bd68fd282fbb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -3843,13 +3786,13 @@ "1190" ], "x-ms-request-id": [ - "eefb02fc-2205-4268-94d8-f5c3016d3e2c" + "3f1b995f-adcb-409a-8441-5be59d4eafe1" ], "x-ms-correlation-request-id": [ - "eefb02fc-2205-4268-94d8-f5c3016d3e2c" + "3f1b995f-adcb-409a-8441-5be59d4eafe1" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204025Z:eefb02fc-2205-4268-94d8-f5c3016d3e2c" + "WESTUS2:20200916T231814Z:3f1b995f-adcb-409a-8441-5be59d4eafe1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3858,7 +3801,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:40:24 GMT" + "Wed, 16 Sep 2020 23:18:14 GMT" ], "Content-Length": [ "229" @@ -3870,25 +3813,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"ZPCzKIFjLhz3tdxefpqIL8XIo1fTRUvTdY6hrmpidvQ=\",\r\n \"secondaryKey\": \"3iU/e0ofEXCPa8n9OUoubVBT5jyEt4hA81ilsAleRIo=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"nvAgTjnKKQmvFGopxT7Rc3PA5B/NUTt8LMj33DZTCh4=\",\r\n \"secondaryKey\": \"xGV5+Dh1bB82hmmf4L1otNCKDoB15V/htwQv1C34brM=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5674102c-16fe-46ae-b2ff-ac6f94fd03ed" + "5b7c4cbf-9222-4d30-b5f1-bffc00177dcf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -3906,13 +3849,13 @@ "1189" ], "x-ms-request-id": [ - "42086f45-6763-4289-831f-256274dedd05" + "d50859fa-f50b-410a-8821-e346964a8db5" ], "x-ms-correlation-request-id": [ - "42086f45-6763-4289-831f-256274dedd05" + "d50859fa-f50b-410a-8821-e346964a8db5" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204025Z:42086f45-6763-4289-831f-256274dedd05" + "WESTUS2:20200916T231815Z:d50859fa-f50b-410a-8821-e346964a8db5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3921,7 +3864,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:40:24 GMT" + "Wed, 16 Sep 2020 23:18:14 GMT" ], "Content-Length": [ "229" @@ -3933,25 +3876,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"ZPCzKIFjLhz3tdxefpqIL8XIo1fTRUvTdY6hrmpidvQ=\",\r\n \"secondaryKey\": \"3iU/e0ofEXCPa8n9OUoubVBT5jyEt4hA81ilsAleRIo=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"nvAgTjnKKQmvFGopxT7Rc3PA5B/NUTt8LMj33DZTCh4=\",\r\n \"secondaryKey\": \"xGV5+Dh1bB82hmmf4L1otNCKDoB15V/htwQv1C34brM=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "905da21e-2d5d-4d90-b8d1-137d3e535473" + "ead25c26-f597-4b1c-afed-547698188a97" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -3969,13 +3912,13 @@ "1188" ], "x-ms-request-id": [ - "51c1b7e8-d66d-418d-b8c4-0c45a0a12244" + "fc69e47a-d6f4-4953-b69b-0dc1765d5413" ], "x-ms-correlation-request-id": [ - "51c1b7e8-d66d-418d-b8c4-0c45a0a12244" + "fc69e47a-d6f4-4953-b69b-0dc1765d5413" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204025Z:51c1b7e8-d66d-418d-b8c4-0c45a0a12244" + "WESTUS2:20200916T231815Z:fc69e47a-d6f4-4953-b69b-0dc1765d5413" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3984,7 +3927,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:40:24 GMT" + "Wed, 16 Sep 2020 23:18:14 GMT" ], "Content-Length": [ "229" @@ -3996,25 +3939,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"ZPCzKIFjLhz3tdxefpqIL8XIo1fTRUvTdY6hrmpidvQ=\",\r\n \"secondaryKey\": \"3iU/e0ofEXCPa8n9OUoubVBT5jyEt4hA81ilsAleRIo=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"nvAgTjnKKQmvFGopxT7Rc3PA5B/NUTt8LMj33DZTCh4=\",\r\n \"secondaryKey\": \"xGV5+Dh1bB82hmmf4L1otNCKDoB15V/htwQv1C34brM=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf696dfe-611c-49c8-a30d-705710ddd53c" + "18e8d461-4baf-44e2-9378-46a3ed3c994d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -4032,13 +3975,13 @@ "1187" ], "x-ms-request-id": [ - "188f6c14-3ce5-422d-b9be-9e8ae7b25b91" + "4f59eb4f-f73b-40d2-b219-9266a6d257e5" ], "x-ms-correlation-request-id": [ - "188f6c14-3ce5-422d-b9be-9e8ae7b25b91" + "4f59eb4f-f73b-40d2-b219-9266a6d257e5" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204025Z:188f6c14-3ce5-422d-b9be-9e8ae7b25b91" + "WESTUS2:20200916T231815Z:4f59eb4f-f73b-40d2-b219-9266a6d257e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4047,7 +3990,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:40:25 GMT" + "Wed, 16 Sep 2020 23:18:14 GMT" ], "Content-Length": [ "229" @@ -4059,25 +4002,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"ZPCzKIFjLhz3tdxefpqIL8XIo1fTRUvTdY6hrmpidvQ=\",\r\n \"secondaryKey\": \"3iU/e0ofEXCPa8n9OUoubVBT5jyEt4hA81ilsAleRIo=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"nvAgTjnKKQmvFGopxT7Rc3PA5B/NUTt8LMj33DZTCh4=\",\r\n \"secondaryKey\": \"xGV5+Dh1bB82hmmf4L1otNCKDoB15V/htwQv1C34brM=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dab02a8a-9232-421d-8bba-0c2d114838e5" + "6f1d65b1-e86a-4654-ba1c-2967226cebc9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -4095,13 +4038,13 @@ "1186" ], "x-ms-request-id": [ - "baa615b6-f622-470e-8e91-ed04d1559315" + "f0f4a92c-6629-498c-9a00-44db75dcb420" ], "x-ms-correlation-request-id": [ - "baa615b6-f622-470e-8e91-ed04d1559315" + "f0f4a92c-6629-498c-9a00-44db75dcb420" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204026Z:baa615b6-f622-470e-8e91-ed04d1559315" + "WESTUS2:20200916T231815Z:f0f4a92c-6629-498c-9a00-44db75dcb420" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4110,7 +4053,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:40:25 GMT" + "Wed, 16 Sep 2020 23:18:15 GMT" ], "Content-Length": [ "229" @@ -4122,25 +4065,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"ZPCzKIFjLhz3tdxefpqIL8XIo1fTRUvTdY6hrmpidvQ=\",\r\n \"secondaryKey\": \"3iU/e0ofEXCPa8n9OUoubVBT5jyEt4hA81ilsAleRIo=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"nvAgTjnKKQmvFGopxT7Rc3PA5B/NUTt8LMj33DZTCh4=\",\r\n \"secondaryKey\": \"xGV5+Dh1bB82hmmf4L1otNCKDoB15V/htwQv1C34brM=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0b04b2a1-d042-46b1-af06-b68e5284b095" + "5391c441-60f7-47b2-a2b2-9ec2ac0484ea" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -4158,13 +4101,13 @@ "1185" ], "x-ms-request-id": [ - "b6a3326a-5f7d-4ac8-bd22-3bb33a32391b" + "8d89c93d-89fa-4cc5-b888-b06253d94ef2" ], "x-ms-correlation-request-id": [ - "b6a3326a-5f7d-4ac8-bd22-3bb33a32391b" + "8d89c93d-89fa-4cc5-b888-b06253d94ef2" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204026Z:b6a3326a-5f7d-4ac8-bd22-3bb33a32391b" + "WESTUS2:20200916T231816Z:8d89c93d-89fa-4cc5-b888-b06253d94ef2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4173,7 +4116,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:40:26 GMT" + "Wed, 16 Sep 2020 23:18:15 GMT" ], "Content-Length": [ "229" @@ -4185,25 +4128,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"ZPCzKIFjLhz3tdxefpqIL8XIo1fTRUvTdY6hrmpidvQ=\",\r\n \"secondaryKey\": \"3iU/e0ofEXCPa8n9OUoubVBT5jyEt4hA81ilsAleRIo=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"nvAgTjnKKQmvFGopxT7Rc3PA5B/NUTt8LMj33DZTCh4=\",\r\n \"secondaryKey\": \"xGV5+Dh1bB82hmmf4L1otNCKDoB15V/htwQv1C34brM=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c203c8ed-19e7-41da-9a2a-98d83f5be66d" + "ed03c1c8-505f-4e83-931e-265c9e8b7b8a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -4221,13 +4164,13 @@ "1184" ], "x-ms-request-id": [ - "2dbb4492-0fc0-4a04-b73b-c83ed2398c99" + "381d56ce-07e1-47f6-ac07-8a54682a6acf" ], "x-ms-correlation-request-id": [ - "2dbb4492-0fc0-4a04-b73b-c83ed2398c99" + "381d56ce-07e1-47f6-ac07-8a54682a6acf" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204027Z:2dbb4492-0fc0-4a04-b73b-c83ed2398c99" + "WESTUS2:20200916T231817Z:381d56ce-07e1-47f6-ac07-8a54682a6acf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4236,7 +4179,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:40:26 GMT" + "Wed, 16 Sep 2020 23:18:16 GMT" ], "Content-Length": [ "229" @@ -4248,25 +4191,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"ZPCzKIFjLhz3tdxefpqIL8XIo1fTRUvTdY6hrmpidvQ=\",\r\n \"secondaryKey\": \"3iU/e0ofEXCPa8n9OUoubVBT5jyEt4hA81ilsAleRIo=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"nvAgTjnKKQmvFGopxT7Rc3PA5B/NUTt8LMj33DZTCh4=\",\r\n \"secondaryKey\": \"xGV5+Dh1bB82hmmf4L1otNCKDoB15V/htwQv1C34brM=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "01e45ecc-fb0a-4743-8a01-a769d9811403" + "4757e6e0-1b37-44dc-bcac-6e8e5ddeec54" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -4284,13 +4227,13 @@ "1183" ], "x-ms-request-id": [ - "fabbf648-4784-4aed-80a7-5545f33f3b1a" + "f3d4aea5-ce4b-4335-b9d4-1e7364ff31b5" ], "x-ms-correlation-request-id": [ - "fabbf648-4784-4aed-80a7-5545f33f3b1a" + "f3d4aea5-ce4b-4335-b9d4-1e7364ff31b5" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204028Z:fabbf648-4784-4aed-80a7-5545f33f3b1a" + "WESTUS2:20200916T231817Z:f3d4aea5-ce4b-4335-b9d4-1e7364ff31b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4299,7 +4242,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:40:27 GMT" + "Wed, 16 Sep 2020 23:18:16 GMT" ], "Content-Length": [ "229" @@ -4311,25 +4254,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"ZPCzKIFjLhz3tdxefpqIL8XIo1fTRUvTdY6hrmpidvQ=\",\r\n \"secondaryKey\": \"3iU/e0ofEXCPa8n9OUoubVBT5jyEt4hA81ilsAleRIo=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"nvAgTjnKKQmvFGopxT7Rc3PA5B/NUTt8LMj33DZTCh4=\",\r\n \"secondaryKey\": \"xGV5+Dh1bB82hmmf4L1otNCKDoB15V/htwQv1C34brM=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5422ae0f-7155-4ddd-86cc-1e9b112ace4b" + "c5f1197f-14d9-4a2e-9d8a-5ea53dc11ef5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -4347,13 +4290,13 @@ "1182" ], "x-ms-request-id": [ - "0ac53ea9-e4b0-4041-8143-a45ecc29f8cb" + "c70aca91-5007-4d2e-b182-2e7136c3476d" ], "x-ms-correlation-request-id": [ - "0ac53ea9-e4b0-4041-8143-a45ecc29f8cb" + "c70aca91-5007-4d2e-b182-2e7136c3476d" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204028Z:0ac53ea9-e4b0-4041-8143-a45ecc29f8cb" + "WESTUS2:20200916T231818Z:c70aca91-5007-4d2e-b182-2e7136c3476d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4362,7 +4305,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:40:27 GMT" + "Wed, 16 Sep 2020 23:18:17 GMT" ], "Content-Length": [ "229" @@ -4374,25 +4317,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"ZPCzKIFjLhz3tdxefpqIL8XIo1fTRUvTdY6hrmpidvQ=\",\r\n \"secondaryKey\": \"3iU/e0ofEXCPa8n9OUoubVBT5jyEt4hA81ilsAleRIo=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"nvAgTjnKKQmvFGopxT7Rc3PA5B/NUTt8LMj33DZTCh4=\",\r\n \"secondaryKey\": \"xGV5+Dh1bB82hmmf4L1otNCKDoB15V/htwQv1C34brM=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f74547ab-a66b-4e35-9e2e-aaaf3e022d81" + "2bc156f2-0811-40ec-ac15-b4597653fa59" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -4410,13 +4353,13 @@ "1181" ], "x-ms-request-id": [ - "3d855655-55f7-45a9-81e5-7aba9ff06562" + "2932670d-af07-4467-9b55-cea4b9bb3ac4" ], "x-ms-correlation-request-id": [ - "3d855655-55f7-45a9-81e5-7aba9ff06562" + "2932670d-af07-4467-9b55-cea4b9bb3ac4" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204029Z:3d855655-55f7-45a9-81e5-7aba9ff06562" + "WESTUS2:20200916T231818Z:2932670d-af07-4467-9b55-cea4b9bb3ac4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4425,7 +4368,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:40:28 GMT" + "Wed, 16 Sep 2020 23:18:17 GMT" ], "Content-Length": [ "229" @@ -4437,25 +4380,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"ZPCzKIFjLhz3tdxefpqIL8XIo1fTRUvTdY6hrmpidvQ=\",\r\n \"secondaryKey\": \"3iU/e0ofEXCPa8n9OUoubVBT5jyEt4hA81ilsAleRIo=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"nvAgTjnKKQmvFGopxT7Rc3PA5B/NUTt8LMj33DZTCh4=\",\r\n \"secondaryKey\": \"xGV5+Dh1bB82hmmf4L1otNCKDoB15V/htwQv1C34brM=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "16680587-6b51-4784-bdbb-5d21f7b82cc1" + "27bd0242-2fda-430d-bca2-693f1a39315f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -4473,13 +4416,13 @@ "1180" ], "x-ms-request-id": [ - "cd9fd90f-3077-4e86-8725-0242c1e7e444" + "6a87f656-944b-4237-af05-b4a8e57dd67c" ], "x-ms-correlation-request-id": [ - "cd9fd90f-3077-4e86-8725-0242c1e7e444" + "6a87f656-944b-4237-af05-b4a8e57dd67c" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204029Z:cd9fd90f-3077-4e86-8725-0242c1e7e444" + "WESTUS2:20200916T231819Z:6a87f656-944b-4237-af05-b4a8e57dd67c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4488,7 +4431,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:40:28 GMT" + "Wed, 16 Sep 2020 23:18:18 GMT" ], "Content-Length": [ "229" @@ -4500,25 +4443,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"ZPCzKIFjLhz3tdxefpqIL8XIo1fTRUvTdY6hrmpidvQ=\",\r\n \"secondaryKey\": \"3iU/e0ofEXCPa8n9OUoubVBT5jyEt4hA81ilsAleRIo=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"nvAgTjnKKQmvFGopxT7Rc3PA5B/NUTt8LMj33DZTCh4=\",\r\n \"secondaryKey\": \"xGV5+Dh1bB82hmmf4L1otNCKDoB15V/htwQv1C34brM=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6465e7c2-4ad7-410c-9657-6c1ea2bc4bf2" + "cc53e60c-301b-4f42-be87-c3fbe4b692df" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -4536,13 +4479,13 @@ "1179" ], "x-ms-request-id": [ - "e57c38aa-8df1-4ae4-84e3-bc70a9318db3" + "735dd619-b1ff-4787-b767-912da53bb1be" ], "x-ms-correlation-request-id": [ - "e57c38aa-8df1-4ae4-84e3-bc70a9318db3" + "735dd619-b1ff-4787-b767-912da53bb1be" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204030Z:e57c38aa-8df1-4ae4-84e3-bc70a9318db3" + "WESTUS2:20200916T231819Z:735dd619-b1ff-4787-b767-912da53bb1be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4551,7 +4494,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:40:29 GMT" + "Wed, 16 Sep 2020 23:18:18 GMT" ], "Content-Length": [ "229" @@ -4563,25 +4506,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"ZPCzKIFjLhz3tdxefpqIL8XIo1fTRUvTdY6hrmpidvQ=\",\r\n \"secondaryKey\": \"3iU/e0ofEXCPa8n9OUoubVBT5jyEt4hA81ilsAleRIo=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"nvAgTjnKKQmvFGopxT7Rc3PA5B/NUTt8LMj33DZTCh4=\",\r\n \"secondaryKey\": \"xGV5+Dh1bB82hmmf4L1otNCKDoB15V/htwQv1C34brM=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4c2dc1d7-621a-4806-be0c-2ec61c510eba" + "56403f21-8e03-4814-b664-ec29e84026d1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -4599,13 +4542,13 @@ "1178" ], "x-ms-request-id": [ - "51ac1ff8-ae49-44b3-bf38-aa391dd2661f" + "19246ad1-1cd4-4de5-a3b2-483e06e70eb4" ], "x-ms-correlation-request-id": [ - "51ac1ff8-ae49-44b3-bf38-aa391dd2661f" + "19246ad1-1cd4-4de5-a3b2-483e06e70eb4" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204030Z:51ac1ff8-ae49-44b3-bf38-aa391dd2661f" + "WESTUS2:20200916T231820Z:19246ad1-1cd4-4de5-a3b2-483e06e70eb4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4614,7 +4557,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:40:30 GMT" + "Wed, 16 Sep 2020 23:18:19 GMT" ], "Content-Length": [ "229" @@ -4626,19 +4569,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"ZPCzKIFjLhz3tdxefpqIL8XIo1fTRUvTdY6hrmpidvQ=\",\r\n \"secondaryKey\": \"3iU/e0ofEXCPa8n9OUoubVBT5jyEt4hA81ilsAleRIo=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"nvAgTjnKKQmvFGopxT7Rc3PA5B/NUTt8LMj33DZTCh4=\",\r\n \"secondaryKey\": \"xGV5+Dh1bB82hmmf4L1otNCKDoB15V/htwQv1C34brM=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/provisioningServices/ps808/operationResults/b3NfaWRfMDZiZmI0Y2QtYTA0Yy00MDQ3LWE2ZjktMzVmYjhjYzIyMDdk?api-version=2017-11-15&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4MDgvb3BlcmF0aW9uUmVzdWx0cy9iM05mYVdSZk1EWmlabUkwWTJRdFlUQTBZeTAwTURRM0xXRTJaamt0TXpWbVlqaGpZekl5TURkaz9hcGktdmVyc2lvbj0yMDE3LTExLTE1JmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/provisioningServices/ps7689/operationResults/b3NfaWRfMjQyNDIzYzgtYTY1Ny00ZTU5LWE4NzEtNGE4N2E1YTlhNzRi?api-version=2017-11-15&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3Njg5L29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZNalF5TkRJell6Z3RZVFkxTnkwMFpUVTVMV0U0TnpFdE5HRTROMkUxWVRsaE56Umk/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -4656,13 +4599,13 @@ "11971" ], "x-ms-request-id": [ - "e9ae6fbd-d445-4b0f-a17e-08edc1cac737" + "95b0baa9-77b4-4e54-a554-f5a4b0fec66b" ], "x-ms-correlation-request-id": [ - "e9ae6fbd-d445-4b0f-a17e-08edc1cac737" + "95b0baa9-77b4-4e54-a554-f5a4b0fec66b" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204103Z:e9ae6fbd-d445-4b0f-a17e-08edc1cac737" + "WESTUS2:20200916T231851Z:95b0baa9-77b4-4e54-a554-f5a4b0fec66b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4671,7 +4614,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:41:02 GMT" + "Wed, 16 Sep 2020 23:18:51 GMT" ], "Content-Length": [ "22" @@ -4687,21 +4630,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8710/providers/Microsoft.Devices/IotHubs/ps3468?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczM0Njg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps5490/providers/Microsoft.Devices/IotHubs/ps2498?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNTQ5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI0OTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e3193ab2-a9ac-4b7f-b9ed-307280f9e242" + "924d15ec-8b10-48c7-8972-bba933447228" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -4713,13 +4656,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYjc1YTVkM2QtMmY3Ny00ODY3LTgwYWMtMDgzODA5OTE0NjZi?api-version=2019-07-01-preview&operationSource=os_ih" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfM2I2YjJhMjAtMDFhMi00ODgyLWExNjItMGRjYzU3NTg4YzYx?api-version=2019-07-01-preview&operationSource=os_ih" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYjc1YTVkM2QtMmY3Ny00ODY3LTgwYWMtMDgzODA5OTE0NjZi?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfM2I2YjJhMjAtMDFhMi00ODgyLWExNjItMGRjYzU3NTg4YzYx?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4728,13 +4671,13 @@ "14999" ], "x-ms-request-id": [ - "38667a14-3332-4080-843c-d98ab20da95d" + "4f19388e-e453-4105-8e44-3f60c14c7c5c" ], "x-ms-correlation-request-id": [ - "38667a14-3332-4080-843c-d98ab20da95d" + "4f19388e-e453-4105-8e44-3f60c14c7c5c" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204104Z:38667a14-3332-4080-843c-d98ab20da95d" + "WESTUS2:20200916T231853Z:4f19388e-e453-4105-8e44-3f60c14c7c5c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4743,7 +4686,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:41:04 GMT" + "Wed, 16 Sep 2020 23:18:53 GMT" ], "Content-Length": [ "4" @@ -4759,15 +4702,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYjc1YTVkM2QtMmY3Ny00ODY3LTgwYWMtMDgzODA5OTE0NjZi?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpjMVlUVmtNMlF0TW1ZM055MDBPRFkzTFRnd1lXTXRNRGd6T0RBNU9URTBOalppP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfM2I2YjJhMjAtMDFhMi00ODgyLWExNjItMGRjYzU3NTg4YzYx?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTTJJMllqSmhNakF0TURGaE1pMDBPRGd5TFdFeE5qSXRNR1JqWXpVM05UZzRZell4P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -4782,16 +4725,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11990" ], "x-ms-request-id": [ - "3bee1ac8-100a-4da7-9405-4cd6d13baad0" + "089b5df3-2c08-4f74-ad6e-6459e24f78b8" ], "x-ms-correlation-request-id": [ - "3bee1ac8-100a-4da7-9405-4cd6d13baad0" + "089b5df3-2c08-4f74-ad6e-6459e24f78b8" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204120Z:3bee1ac8-100a-4da7-9405-4cd6d13baad0" + "WESTUS2:20200916T231908Z:089b5df3-2c08-4f74-ad6e-6459e24f78b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4800,7 +4743,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:41:19 GMT" + "Wed, 16 Sep 2020 23:19:08 GMT" ], "Content-Length": [ "22" @@ -4816,15 +4759,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYjc1YTVkM2QtMmY3Ny00ODY3LTgwYWMtMDgzODA5OTE0NjZi?api-version=2019-07-01-preview&operationSource=os_ih", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpjMVlUVmtNMlF0TW1ZM055MDBPRFkzTFRnd1lXTXRNRGd6T0RBNU9URTBOalppP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWg=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfM2I2YjJhMjAtMDFhMi00ODgyLWExNjItMGRjYzU3NTg4YzYx?api-version=2019-07-01-preview&operationSource=os_ih", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTTJJMllqSmhNakF0TURGaE1pMDBPRGd5TFdFeE5qSXRNR1JqWXpVM05UZzRZell4P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWg=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -4836,7 +4779,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYjc1YTVkM2QtMmY3Ny00ODY3LTgwYWMtMDgzODA5OTE0NjZi?api-version=2019-07-01-preview&operationSource=os_ih" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfM2I2YjJhMjAtMDFhMi00ODgyLWExNjItMGRjYzU3NTg4YzYx?api-version=2019-07-01-preview&operationSource=os_ih" ], "Retry-After": [ "15" @@ -4845,16 +4788,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11989" ], "x-ms-request-id": [ - "a3f92968-f481-4b18-9eea-dbc8f80d9e23" + "ce09093a-670a-4b2d-a6a4-2be750df2c05" ], "x-ms-correlation-request-id": [ - "a3f92968-f481-4b18-9eea-dbc8f80d9e23" + "ce09093a-670a-4b2d-a6a4-2be750df2c05" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204120Z:a3f92968-f481-4b18-9eea-dbc8f80d9e23" + "WESTUS2:20200916T231908Z:ce09093a-670a-4b2d-a6a4-2be750df2c05" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4863,7 +4806,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:41:19 GMT" + "Wed, 16 Sep 2020 23:19:08 GMT" ], "Expires": [ "-1" @@ -4876,22 +4819,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourcegroups/ps8710?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlZ3JvdXBzL3BzODcxMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourcegroups/ps5490?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlZ3JvdXBzL3BzNTQ5MD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "64c7821b-9dfa-4695-a076-4ce261782d7f" + "7883d0f4-ccfb-4d89-905f-ff849521a308" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -4902,7 +4845,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3MTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0OTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4911,13 +4854,13 @@ "14999" ], "x-ms-request-id": [ - "91e710a1-033f-428c-a2b5-463e2d308e46" + "a2406a22-1e68-426b-b708-6377baa2fc6b" ], "x-ms-correlation-request-id": [ - "91e710a1-033f-428c-a2b5-463e2d308e46" + "a2406a22-1e68-426b-b708-6377baa2fc6b" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204121Z:91e710a1-033f-428c-a2b5-463e2d308e46" + "WESTUS2:20200916T231909Z:a2406a22-1e68-426b-b708-6377baa2fc6b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4926,7 +4869,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:41:20 GMT" + "Wed, 16 Sep 2020 23:19:09 GMT" ], "Expires": [ "-1" @@ -4939,16 +4882,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3MTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM01UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0OTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVME9UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -4959,7 +4902,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3MTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0OTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4968,13 +4911,13 @@ "11999" ], "x-ms-request-id": [ - "ede419c8-5004-49ac-832f-dbb857bdc921" + "997a9217-0ff5-4b99-a38a-6516e3a56d30" ], "x-ms-correlation-request-id": [ - "ede419c8-5004-49ac-832f-dbb857bdc921" + "997a9217-0ff5-4b99-a38a-6516e3a56d30" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204136Z:ede419c8-5004-49ac-832f-dbb857bdc921" + "WESTUS2:20200916T231924Z:997a9217-0ff5-4b99-a38a-6516e3a56d30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4983,7 +4926,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:41:36 GMT" + "Wed, 16 Sep 2020 23:19:24 GMT" ], "Expires": [ "-1" @@ -4996,16 +4939,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3MTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM01UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0OTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVME9UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -5016,7 +4959,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3MTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0OTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -5025,13 +4968,13 @@ "11998" ], "x-ms-request-id": [ - "d62599f1-2633-4de5-bd04-2fc4a5b78134" + "615c54ba-fb05-435b-a82a-a6c6d0d4d259" ], "x-ms-correlation-request-id": [ - "d62599f1-2633-4de5-bd04-2fc4a5b78134" + "615c54ba-fb05-435b-a82a-a6c6d0d4d259" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204151Z:d62599f1-2633-4de5-bd04-2fc4a5b78134" + "WESTUS2:20200916T231939Z:615c54ba-fb05-435b-a82a-a6c6d0d4d259" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5040,7 +4983,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:41:51 GMT" + "Wed, 16 Sep 2020 23:19:39 GMT" ], "Expires": [ "-1" @@ -5053,16 +4996,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3MTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM01UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0OTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVME9UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -5073,7 +5016,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3MTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0OTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -5082,13 +5025,13 @@ "11997" ], "x-ms-request-id": [ - "95979c6b-a171-478f-b9a1-fcc83b4e0374" + "462f7780-f3f9-4614-89fc-fc214de0ea2d" ], "x-ms-correlation-request-id": [ - "95979c6b-a171-478f-b9a1-fcc83b4e0374" + "462f7780-f3f9-4614-89fc-fc214de0ea2d" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204206Z:95979c6b-a171-478f-b9a1-fcc83b4e0374" + "WESTUS2:20200916T231954Z:462f7780-f3f9-4614-89fc-fc214de0ea2d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5097,7 +5040,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:42:06 GMT" + "Wed, 16 Sep 2020 23:19:53 GMT" ], "Expires": [ "-1" @@ -5110,16 +5053,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3MTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM01UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0OTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVME9UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -5130,7 +5073,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3MTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0OTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -5139,13 +5082,13 @@ "11996" ], "x-ms-request-id": [ - "8fc41045-a0ee-40c6-b126-19b44a5daacf" + "1f599d7d-ec62-4866-9570-eccdda82204b" ], "x-ms-correlation-request-id": [ - "8fc41045-a0ee-40c6-b126-19b44a5daacf" + "1f599d7d-ec62-4866-9570-eccdda82204b" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204221Z:8fc41045-a0ee-40c6-b126-19b44a5daacf" + "WESTUS2:20200916T232009Z:1f599d7d-ec62-4866-9570-eccdda82204b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5154,7 +5097,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:42:21 GMT" + "Wed, 16 Sep 2020 23:20:08 GMT" ], "Expires": [ "-1" @@ -5167,16 +5110,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3MTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM01UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0OTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVME9UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -5187,7 +5130,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3MTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0OTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -5196,13 +5139,13 @@ "11995" ], "x-ms-request-id": [ - "b0c0faba-ef33-4b44-9242-32bf6c21bf95" + "43c0365d-4c85-49ef-9a6f-b5944b402342" ], "x-ms-correlation-request-id": [ - "b0c0faba-ef33-4b44-9242-32bf6c21bf95" + "43c0365d-4c85-49ef-9a6f-b5944b402342" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204236Z:b0c0faba-ef33-4b44-9242-32bf6c21bf95" + "WESTUS2:20200916T232024Z:43c0365d-4c85-49ef-9a6f-b5944b402342" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5211,7 +5154,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:42:36 GMT" + "Wed, 16 Sep 2020 23:20:24 GMT" ], "Expires": [ "-1" @@ -5224,16 +5167,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3MTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM01UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0OTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVME9UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -5244,7 +5187,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3MTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0OTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -5253,13 +5196,13 @@ "11994" ], "x-ms-request-id": [ - "1140d4db-e3b2-4efb-88cf-a492272d7e29" + "88b801b8-ec6e-43ab-9b76-056448160519" ], "x-ms-correlation-request-id": [ - "1140d4db-e3b2-4efb-88cf-a492272d7e29" + "88b801b8-ec6e-43ab-9b76-056448160519" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204252Z:1140d4db-e3b2-4efb-88cf-a492272d7e29" + "WESTUS2:20200916T232040Z:88b801b8-ec6e-43ab-9b76-056448160519" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5268,7 +5211,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:42:51 GMT" + "Wed, 16 Sep 2020 23:20:39 GMT" ], "Expires": [ "-1" @@ -5281,16 +5224,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3MTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM01UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0OTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVME9UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -5300,188 +5243,17 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3MTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], "x-ms-request-id": [ - "734f35bc-7248-41e6-bcf0-b8501f97ee75" - ], - "x-ms-correlation-request-id": [ - "734f35bc-7248-41e6-bcf0-b8501f97ee75" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200518T204307Z:734f35bc-7248-41e6-bcf0-b8501f97ee75" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 18 May 2020 20:43:06 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3MTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM01UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3MTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "x-ms-request-id": [ - "a9d9977a-48d6-4dfa-83e7-48de0a8be974" - ], - "x-ms-correlation-request-id": [ - "a9d9977a-48d6-4dfa-83e7-48de0a8be974" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200518T204322Z:a9d9977a-48d6-4dfa-83e7-48de0a8be974" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 18 May 2020 20:43:22 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3MTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM01UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3MTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "x-ms-request-id": [ - "ae4cf544-be8b-4ec8-8b70-63a971d2f58f" - ], - "x-ms-correlation-request-id": [ - "ae4cf544-be8b-4ec8-8b70-63a971d2f58f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200518T204337Z:ae4cf544-be8b-4ec8-8b70-63a971d2f58f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 18 May 2020 20:43:36 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3MTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM01UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], - "x-ms-request-id": [ - "a346029e-4a0e-44d1-8a1a-439b6c40c2a3" + "f506ec09-eefa-484d-8f95-6a62c9faebda" ], "x-ms-correlation-request-id": [ - "a346029e-4a0e-44d1-8a1a-439b6c40c2a3" + "f506ec09-eefa-484d-8f95-6a62c9faebda" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204352Z:a346029e-4a0e-44d1-8a1a-439b6c40c2a3" + "WESTUS2:20200916T232055Z:f506ec09-eefa-484d-8f95-6a62c9faebda" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5490,7 +5262,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:43:51 GMT" + "Wed, 16 Sep 2020 23:20:54 GMT" ], "Expires": [ "-1" @@ -5503,16 +5275,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3MTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM01UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0OTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVME9UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -5523,16 +5295,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11992" ], "x-ms-request-id": [ - "7b8cc451-2ef2-49dc-bfcd-a4c313e6e690" + "39138491-5c15-4830-8b5f-e7ab44a4155a" ], "x-ms-correlation-request-id": [ - "7b8cc451-2ef2-49dc-bfcd-a4c313e6e690" + "39138491-5c15-4830-8b5f-e7ab44a4155a" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204352Z:7b8cc451-2ef2-49dc-bfcd-a4c313e6e690" + "WESTUS2:20200916T232055Z:39138491-5c15-4830-8b5f-e7ab44a4155a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5541,7 +5313,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:43:51 GMT" + "Wed, 16 Sep 2020 23:20:54 GMT" ], "Expires": [ "-1" @@ -5556,11 +5328,11 @@ ], "Names": { "Test-AzIotDpsEnrollmentGroupLifeCycle": [ - "ps808", - "ps8710", - "ps3468", - "ps3980", - "ps4153" + "ps7689", + "ps5490", + "ps2498", + "ps4763", + "ps2755" ] }, "Variables": { diff --git a/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/SessionRecords/Commands.DeviceProvisioningServices.Test.IotDpsEnrollmentTests/IotDpsEnrollmentLifeCycle.json b/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/SessionRecords/Commands.DeviceProvisioningServices.Test.IotDpsEnrollmentTests/IotDpsEnrollmentLifeCycle.json index 78000917278a..2fa4b7157007 100644 --- a/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/SessionRecords/Commands.DeviceProvisioningServices.Test.IotDpsEnrollmentTests/IotDpsEnrollmentLifeCycle.json +++ b/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/SessionRecords/Commands.DeviceProvisioningServices.Test.IotDpsEnrollmentTests/IotDpsEnrollmentLifeCycle.json @@ -7,16 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3bcf81db-1480-4a21-bc05-6e45ff9df390" + "4edb3cbd-2545-42e4-9b6b-7fc79be5e9a0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -30,13 +30,13 @@ "11999" ], "x-ms-request-id": [ - "25bf6f8f-8a3f-462d-a52e-f9bd4bd9df06" + "b3e2a6f0-6099-43ff-bfb1-e7d42d401581" ], "x-ms-correlation-request-id": [ - "25bf6f8f-8a3f-462d-a52e-f9bd4bd9df06" + "b3e2a6f0-6099-43ff-bfb1-e7d42d401581" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204504Z:25bf6f8f-8a3f-462d-a52e-f9bd4bd9df06" + "WESTUS2:20200916T232058Z:b3e2a6f0-6099-43ff-bfb1-e7d42d401581" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:45:03 GMT" + "Wed, 16 Sep 2020 23:20:58 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54,29 +54,29 @@ "-1" ], "Content-Length": [ - "5727" + "6060" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices\",\r\n \"namespace\": \"Microsoft.Devices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0cd79364-7a90-4354-9984-6e36c841418d\",\r\n \"roleDefinitionId\": \"C121DF10-FE58-4BC4-97F9-8296879F7BBB\"\r\n },\r\n {\r\n \"applicationId\": \"29f411f1-b2cf-4043-8ac8-2185d7316811\"\r\n },\r\n {\r\n \"applicationId\": \"89d10474-74af-4874-99a7-c23c2f643083\",\r\n \"roleDefinitionId\": \"7df22794-26e3-4f94-9d50-a4f0f6e1cb41\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/eventGridFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-31\",\r\n \"2018-01-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/securitySettings\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants/securitySettings\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices\",\r\n \"namespace\": \"Microsoft.Devices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0cd79364-7a90-4354-9984-6e36c841418d\",\r\n \"roleDefinitionId\": \"C121DF10-FE58-4BC4-97F9-8296879F7BBB\"\r\n },\r\n {\r\n \"applicationId\": \"29f411f1-b2cf-4043-8ac8-2185d7316811\"\r\n },\r\n {\r\n \"applicationId\": \"89d10474-74af-4874-99a7-c23c2f643083\",\r\n \"roleDefinitionId\": \"7df22794-26e3-4f94-9d50-a4f0f6e1cb41\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Australia Central\",\r\n \"Australia Central 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/eventGridFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Australia Central\",\r\n \"Australia Central 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-31\",\r\n \"2018-01-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/securitySettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Australia Central\",\r\n \"Australia Central 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants/securitySettings\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourcegroups/ps3998?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlZ3JvdXBzL3BzMzk5OD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourcegroups/ps9910?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlZ3JvdXBzL3BzOTkxMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1b9d873f-0813-4399-b77e-b8bffe3c254f" + "a52da095-bceb-4fdd-ad0e-ea9c5f12f6d7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "f4c6cc81-7f8b-4676-930a-683c9aa39acd" + "2f6398bf-4467-4107-8c39-60214b0587b7" ], "x-ms-correlation-request-id": [ - "f4c6cc81-7f8b-4676-930a-683c9aa39acd" + "2f6398bf-4467-4107-8c39-60214b0587b7" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204505Z:f4c6cc81-7f8b-4676-930a-683c9aa39acd" + "WESTUS2:20200916T232059Z:2f6398bf-4467-4107-8c39-60214b0587b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:45:04 GMT" + "Wed, 16 Sep 2020 23:20:58 GMT" ], "Content-Length": [ "165" @@ -123,25 +123,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998\",\r\n \"name\": \"ps3998\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910\",\r\n \"name\": \"ps9910\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c10dc5c0-d3e3-4f74-893e-ec4bb373c937" + "d11be3f3-e99b-409f-9768-4e836d72e6ec" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ], "Content-Type": [ @@ -159,7 +159,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819/operationResults/b3NfaWRfOGY5MTBiMjMtZjA1Ny00ZDY4LTg2YWEtMGU4YzEzMTg0NmIy?api-version=2017-11-15&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304/operationResults/b3NfaWRfZDA0MzIyNjctMzM5MC00Y2ViLWI5NWMtYjY4MGE4ZDlhNzI0?api-version=2017-11-15&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -168,13 +168,13 @@ "4999" ], "x-ms-request-id": [ - "c7cffb90-cd81-4268-89b6-fd0914c6d4b3" + "8d60c654-2f29-4810-a064-2cb15e630d01" ], "x-ms-correlation-request-id": [ - "c7cffb90-cd81-4268-89b6-fd0914c6d4b3" + "8d60c654-2f29-4810-a064-2cb15e630d01" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204507Z:c7cffb90-cd81-4268-89b6-fd0914c6d4b3" + "WESTUS2:20200916T232101Z:8d60c654-2f29-4810-a064-2cb15e630d01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -183,7 +183,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:45:07 GMT" + "Wed, 16 Sep 2020 23:21:01 GMT" ], "Content-Length": [ "462" @@ -195,32 +195,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps7819\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Activating\",\r\n \"provisioningState\": \"Accepted\",\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps3998\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps6304\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Activating\",\r\n \"provisioningState\": \"Accepted\",\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps9910\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAAAMiuM4=\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"connectionString\": \"HostName=ps526.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=6l1bPLsrIVXuBJR8nHTpOM8lSL/Cm9Q4iOdsqdz7LAQ=\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"etag\": \"AAAAAASgatA=\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"connectionString\": \"HostName=ps6832.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=4Q0f2Sdjhpi5w9X7ZdQUQBQqljBgIP4DuodD8eN3vNA=\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5c38e48f-cdaf-477d-98a9-540a899de1fc" + "e10b1716-1beb-40c6-a70c-868e530be4bc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "502" + "503" ] }, "ResponseHeaders": { @@ -231,7 +231,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819/operationResults/b3NfaWRfMWM4MWRlNDktMGJmYS00MTI2LWI2YjAtN2VkYTEwNDRmZGEx?api-version=2017-11-15&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304/operationResults/b3NfaWRfZTc3MTQ2MzgtNTcxZi00MTUzLTg3YzMtODg3MGQ4YjYwN2Nk?api-version=2017-11-15&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -240,13 +240,13 @@ "4999" ], "x-ms-request-id": [ - "86d88ee6-d54c-4752-9fd6-2fb5826c0561" + "baee11e8-7f20-4726-8528-e479993a172b" ], "x-ms-correlation-request-id": [ - "86d88ee6-d54c-4752-9fd6-2fb5826c0561" + "baee11e8-7f20-4726-8528-e479993a172b" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204832Z:86d88ee6-d54c-4752-9fd6-2fb5826c0561" + "WESTUS2:20200916T232459Z:baee11e8-7f20-4726-8528-e479993a172b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -255,10 +255,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:48:31 GMT" + "Wed, 16 Sep 2020 23:24:58 GMT" ], "Content-Length": [ - "731" + "733" ], "Content-Type": [ "application/json; charset=utf-8" @@ -267,25 +267,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMiuM4=\",\r\n \"name\": \"ps7819\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Transitioning\",\r\n \"provisioningState\": \"Accepted\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps526.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps526.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=6l1bPLsrIVXuBJR8nHTpOM8lSL/Cm9Q4iOdsqdz7LAQ=\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps3998\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgatA=\",\r\n \"name\": \"ps6304\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Transitioning\",\r\n \"provisioningState\": \"Accepted\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6832.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6832.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=4Q0f2Sdjhpi5w9X7ZdQUQBQqljBgIP4DuodD8eN3vNA=\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps9910\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAAAMiu4g=\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"etag\": \"AAAAAASgbXA=\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a4ce4180-7b5a-4009-9aec-101b8bd517ae" + "5eb5e1b0-43cb-4851-8599-9a51b1e0b2a1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ], "Content-Type": [ @@ -303,7 +303,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819/operationResults/b3NfaWRfMTJhODY5MzAtMTgwMC00YzQxLWIxMzItZGFjNjdlYmE5OWE1?api-version=2017-11-15&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304/operationResults/b3NfaWRfNDkzOTk5ZGItNjcxMy00MGRlLTkzYWItYWI2Zjg2ZTYyMjU5?api-version=2017-11-15&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -312,13 +312,13 @@ "4998" ], "x-ms-request-id": [ - "80c8dcb7-4adb-4620-b1a8-8c0543940040" + "8d811852-cdd6-42ea-87cf-c50a742e9472" ], "x-ms-correlation-request-id": [ - "80c8dcb7-4adb-4620-b1a8-8c0543940040" + "8d811852-cdd6-42ea-87cf-c50a742e9472" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204913Z:80c8dcb7-4adb-4620-b1a8-8c0543940040" + "WESTUS2:20200916T232540Z:8d811852-cdd6-42ea-87cf-c50a742e9472" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -327,7 +327,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:49:13 GMT" + "Wed, 16 Sep 2020 23:25:40 GMT" ], "Content-Length": [ "500" @@ -339,19 +339,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMiu4g=\",\r\n \"name\": \"ps7819\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Transitioning\",\r\n \"provisioningState\": \"Accepted\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps3998\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgbXA=\",\r\n \"name\": \"ps6304\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Transitioning\",\r\n \"provisioningState\": \"Accepted\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps9910\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819/operationResults/b3NfaWRfOGY5MTBiMjMtZjA1Ny00ZDY4LTg2YWEtMGU4YzEzMTg0NmIy?api-version=2017-11-15&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5L29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZPR1k1TVRCaU1qTXRaakExTnkwMFpEWTRMVGcyWVdFdE1HVTRZekV6TVRnME5tSXk/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304/operationResults/b3NfaWRfZDA0MzIyNjctMzM5MC00Y2ViLWI5NWMtYjY4MGE4ZDlhNzI0?api-version=2017-11-15&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0L29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZaREEwTXpJeU5qY3RNek01TUMwMFkyVmlMV0k1TldNdFlqWTRNR0U0WkRsaE56STA/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -366,16 +366,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11997" ], "x-ms-request-id": [ - "b1b1f8ef-93a0-40b4-8923-b33c904f5974" + "4e395ac1-9b93-441f-9c65-8161af375782" ], "x-ms-correlation-request-id": [ - "b1b1f8ef-93a0-40b4-8923-b33c904f5974" + "4e395ac1-9b93-441f-9c65-8161af375782" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204538Z:b1b1f8ef-93a0-40b4-8923-b33c904f5974" + "WESTUS2:20200916T232131Z:4e395ac1-9b93-441f-9c65-8161af375782" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -384,7 +384,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:45:37 GMT" + "Wed, 16 Sep 2020 23:21:31 GMT" ], "Content-Length": [ "22" @@ -400,15 +400,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -423,16 +423,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11996" ], "x-ms-request-id": [ - "1677ded7-2bee-44ca-8ed0-71df19efee6c" + "34c47e10-d688-476a-b4f0-85b565ddab63" ], "x-ms-correlation-request-id": [ - "1677ded7-2bee-44ca-8ed0-71df19efee6c" + "34c47e10-d688-476a-b4f0-85b565ddab63" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204538Z:1677ded7-2bee-44ca-8ed0-71df19efee6c" + "WESTUS2:20200916T232132Z:34c47e10-d688-476a-b4f0-85b565ddab63" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -441,7 +441,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:45:38 GMT" + "Wed, 16 Sep 2020 23:21:31 GMT" ], "Content-Length": [ "640" @@ -453,25 +453,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMiuM4=\",\r\n \"name\": \"ps7819\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7819.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010901E\"\r\n },\r\n \"resourcegroup\": \"ps3998\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgatA=\",\r\n \"name\": \"ps6304\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps6304.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00180034\"\r\n },\r\n \"resourcegroup\": \"ps9910\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "26ed527c-2474-44dd-a7f0-1a8a0e8bea7c" + "f4d8a7f3-4cb2-4b80-9999-98f3f38d06d8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -486,16 +486,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11995" ], "x-ms-request-id": [ - "967ea2be-1a24-4f9a-a811-41b1d54def0b" + "6b85b6d2-8a2a-4bc1-9a78-d75ee8f29b2d" ], "x-ms-correlation-request-id": [ - "967ea2be-1a24-4f9a-a811-41b1d54def0b" + "6b85b6d2-8a2a-4bc1-9a78-d75ee8f29b2d" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204538Z:967ea2be-1a24-4f9a-a811-41b1d54def0b" + "WESTUS2:20200916T232132Z:6b85b6d2-8a2a-4bc1-9a78-d75ee8f29b2d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -504,7 +504,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:45:38 GMT" + "Wed, 16 Sep 2020 23:21:31 GMT" ], "Content-Length": [ "640" @@ -516,25 +516,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMiuM4=\",\r\n \"name\": \"ps7819\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7819.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010901E\"\r\n },\r\n \"resourcegroup\": \"ps3998\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgatA=\",\r\n \"name\": \"ps6304\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps6304.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00180034\"\r\n },\r\n \"resourcegroup\": \"ps9910\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fa7ef0a-2796-4015-877c-c1d694f104a8" + "8c5411cb-6e3c-4396-a8de-d90a74cc79f4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -549,16 +549,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11991" ], "x-ms-request-id": [ - "3c4f939d-3d7a-40be-83ba-1a59b93fa64b" + "5b7c1b10-bcf4-4c7f-b1e6-8f190b3fdd93" ], "x-ms-correlation-request-id": [ - "3c4f939d-3d7a-40be-83ba-1a59b93fa64b" + "5b7c1b10-bcf4-4c7f-b1e6-8f190b3fdd93" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204830Z:3c4f939d-3d7a-40be-83ba-1a59b93fa64b" + "WESTUS2:20200916T232457Z:5b7c1b10-bcf4-4c7f-b1e6-8f190b3fdd93" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -567,7 +567,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:48:30 GMT" + "Wed, 16 Sep 2020 23:24:56 GMT" ], "Content-Length": [ "640" @@ -579,19 +579,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMiuM4=\",\r\n \"name\": \"ps7819\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7819.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010901E\"\r\n },\r\n \"resourcegroup\": \"ps3998\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgatA=\",\r\n \"name\": \"ps6304\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps6304.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00180034\"\r\n },\r\n \"resourcegroup\": \"ps9910\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -606,16 +606,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11989" ], "x-ms-request-id": [ - "dae6af65-b689-41fa-9d16-21709f813f46" + "5cced572-f04d-4809-b25b-f9a2aaf993bc" ], "x-ms-correlation-request-id": [ - "dae6af65-b689-41fa-9d16-21709f813f46" + "5cced572-f04d-4809-b25b-f9a2aaf993bc" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204902Z:dae6af65-b689-41fa-9d16-21709f813f46" + "WESTUS2:20200916T232529Z:5cced572-f04d-4809-b25b-f9a2aaf993bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -624,10 +624,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:49:02 GMT" + "Wed, 16 Sep 2020 23:25:29 GMT" ], "Content-Length": [ - "831" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -636,25 +636,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMiu4g=\",\r\n \"name\": \"ps7819\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps526.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps526.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7819.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010901E\"\r\n },\r\n \"resourcegroup\": \"ps3998\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgbXA=\",\r\n \"name\": \"ps6304\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6832.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6832.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps6304.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00180034\"\r\n },\r\n \"resourcegroup\": \"ps9910\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1a8fc7ce-d6c1-4436-841b-17130bfa8cd0" + "e31ce9b7-5a13-4bb1-9c84-3b070d9544a7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -669,16 +669,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11988" ], "x-ms-request-id": [ - "ee894ad3-6b10-4f43-af06-e87c3d266ffe" + "1f23d8e2-c7c2-43f3-bacf-9da2ebff45a5" ], "x-ms-correlation-request-id": [ - "ee894ad3-6b10-4f43-af06-e87c3d266ffe" + "1f23d8e2-c7c2-43f3-bacf-9da2ebff45a5" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204902Z:ee894ad3-6b10-4f43-af06-e87c3d266ffe" + "WESTUS2:20200916T232529Z:1f23d8e2-c7c2-43f3-bacf-9da2ebff45a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -687,10 +687,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:49:02 GMT" + "Wed, 16 Sep 2020 23:25:29 GMT" ], "Content-Length": [ - "831" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -699,25 +699,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMiu4g=\",\r\n \"name\": \"ps7819\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps526.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps526.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7819.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010901E\"\r\n },\r\n \"resourcegroup\": \"ps3998\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgbXA=\",\r\n \"name\": \"ps6304\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6832.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6832.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps6304.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00180034\"\r\n },\r\n \"resourcegroup\": \"ps9910\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "91375edb-4fae-4306-85c4-abb2b0b1b5de" + "64c24dbe-dfa1-450c-9694-3585d279323b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -732,16 +732,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11987" ], "x-ms-request-id": [ - "b1dc14e6-e32f-47f4-afe0-6ead5f1561c7" + "e9772716-86b0-4349-8f85-68162c52e711" ], "x-ms-correlation-request-id": [ - "b1dc14e6-e32f-47f4-afe0-6ead5f1561c7" + "e9772716-86b0-4349-8f85-68162c52e711" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204903Z:b1dc14e6-e32f-47f4-afe0-6ead5f1561c7" + "WESTUS2:20200916T232529Z:e9772716-86b0-4349-8f85-68162c52e711" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -750,10 +750,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:49:02 GMT" + "Wed, 16 Sep 2020 23:25:29 GMT" ], "Content-Length": [ - "831" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -762,25 +762,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMiu4g=\",\r\n \"name\": \"ps7819\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps526.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps526.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7819.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010901E\"\r\n },\r\n \"resourcegroup\": \"ps3998\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgbXA=\",\r\n \"name\": \"ps6304\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6832.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6832.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps6304.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00180034\"\r\n },\r\n \"resourcegroup\": \"ps9910\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5fcda70d-8fa8-4f2c-8b8e-3693ad6546c9" + "f9b65bab-1cfb-4102-8542-bfed09066e3d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -795,16 +795,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11986" ], "x-ms-request-id": [ - "15d770fe-968d-4df2-abfc-06b2bb7ae757" + "6f81692c-68ed-4f05-93eb-7cbfe0d5f339" ], "x-ms-correlation-request-id": [ - "15d770fe-968d-4df2-abfc-06b2bb7ae757" + "6f81692c-68ed-4f05-93eb-7cbfe0d5f339" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204903Z:15d770fe-968d-4df2-abfc-06b2bb7ae757" + "WESTUS2:20200916T232530Z:6f81692c-68ed-4f05-93eb-7cbfe0d5f339" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -813,10 +813,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:49:03 GMT" + "Wed, 16 Sep 2020 23:25:30 GMT" ], "Content-Length": [ - "831" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -825,25 +825,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMiu4g=\",\r\n \"name\": \"ps7819\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps526.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps526.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7819.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010901E\"\r\n },\r\n \"resourcegroup\": \"ps3998\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgbXA=\",\r\n \"name\": \"ps6304\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6832.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6832.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps6304.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00180034\"\r\n },\r\n \"resourcegroup\": \"ps9910\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "57194cb3-7490-4ef4-95a2-67ead5559d0a" + "af4ffbb5-e4ba-4dc4-af7e-8b0ca2e5805a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -858,16 +858,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11985" ], "x-ms-request-id": [ - "7456eeab-4bf8-40b9-a565-8a8515300595" + "8f718dc2-617c-4b2c-a966-d425272511e2" ], "x-ms-correlation-request-id": [ - "7456eeab-4bf8-40b9-a565-8a8515300595" + "8f718dc2-617c-4b2c-a966-d425272511e2" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204903Z:7456eeab-4bf8-40b9-a565-8a8515300595" + "WESTUS2:20200916T232530Z:8f718dc2-617c-4b2c-a966-d425272511e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -876,10 +876,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:49:03 GMT" + "Wed, 16 Sep 2020 23:25:30 GMT" ], "Content-Length": [ - "831" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -888,25 +888,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMiu4g=\",\r\n \"name\": \"ps7819\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps526.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps526.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7819.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010901E\"\r\n },\r\n \"resourcegroup\": \"ps3998\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgbXA=\",\r\n \"name\": \"ps6304\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6832.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6832.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps6304.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00180034\"\r\n },\r\n \"resourcegroup\": \"ps9910\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "798506fd-1011-49c5-a829-c36eeb19f42d" + "cad8a1dd-9f5d-4a1c-a8de-369fd7a25d5b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -921,16 +921,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11984" ], "x-ms-request-id": [ - "d286847d-adbc-4b39-9003-b7683b703833" + "036c3539-b399-4b7d-9728-08b39f3ea56e" ], "x-ms-correlation-request-id": [ - "d286847d-adbc-4b39-9003-b7683b703833" + "036c3539-b399-4b7d-9728-08b39f3ea56e" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204904Z:d286847d-adbc-4b39-9003-b7683b703833" + "WESTUS2:20200916T232530Z:036c3539-b399-4b7d-9728-08b39f3ea56e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -939,10 +939,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:49:03 GMT" + "Wed, 16 Sep 2020 23:25:30 GMT" ], "Content-Length": [ - "831" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -951,25 +951,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMiu4g=\",\r\n \"name\": \"ps7819\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps526.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps526.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7819.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010901E\"\r\n },\r\n \"resourcegroup\": \"ps3998\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgbXA=\",\r\n \"name\": \"ps6304\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6832.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6832.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps6304.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00180034\"\r\n },\r\n \"resourcegroup\": \"ps9910\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7ad558fb-74cb-4f44-8ad4-089a33c8c034" + "c274de64-756a-4892-874f-0b27126935e2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -984,16 +984,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11983" ], "x-ms-request-id": [ - "7ce904bc-fbc7-472c-80dd-cf600545c93b" + "45cff6e0-9146-4230-b295-f8ae5c2e8162" ], "x-ms-correlation-request-id": [ - "7ce904bc-fbc7-472c-80dd-cf600545c93b" + "45cff6e0-9146-4230-b295-f8ae5c2e8162" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204904Z:7ce904bc-fbc7-472c-80dd-cf600545c93b" + "WESTUS2:20200916T232531Z:45cff6e0-9146-4230-b295-f8ae5c2e8162" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1002,10 +1002,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:49:03 GMT" + "Wed, 16 Sep 2020 23:25:30 GMT" ], "Content-Length": [ - "831" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1014,25 +1014,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMiu4g=\",\r\n \"name\": \"ps7819\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps526.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps526.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7819.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010901E\"\r\n },\r\n \"resourcegroup\": \"ps3998\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgbXA=\",\r\n \"name\": \"ps6304\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6832.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6832.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps6304.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00180034\"\r\n },\r\n \"resourcegroup\": \"ps9910\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b35e70be-f5a6-461a-812f-89347a7d07bf" + "ae8708cc-86ff-4f97-80d8-916ae2ed4fb3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1047,16 +1047,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11982" ], "x-ms-request-id": [ - "9008ca54-9e23-433e-8eb1-26fd305168e0" + "10adbd89-9c28-4788-a791-fa946e435749" ], "x-ms-correlation-request-id": [ - "9008ca54-9e23-433e-8eb1-26fd305168e0" + "10adbd89-9c28-4788-a791-fa946e435749" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204904Z:9008ca54-9e23-433e-8eb1-26fd305168e0" + "WESTUS2:20200916T232531Z:10adbd89-9c28-4788-a791-fa946e435749" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1065,10 +1065,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:49:04 GMT" + "Wed, 16 Sep 2020 23:25:31 GMT" ], "Content-Length": [ - "831" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1077,25 +1077,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMiu4g=\",\r\n \"name\": \"ps7819\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps526.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps526.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7819.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010901E\"\r\n },\r\n \"resourcegroup\": \"ps3998\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgbXA=\",\r\n \"name\": \"ps6304\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6832.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6832.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps6304.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00180034\"\r\n },\r\n \"resourcegroup\": \"ps9910\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27013ef3-6ebf-4b0b-a6fc-39be58ec2a8e" + "b83a0cfd-cd69-47d1-8910-531afaacca4a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1110,16 +1110,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11981" ], "x-ms-request-id": [ - "e7620dad-89d1-4449-8986-808e4075c5ba" + "0a053353-5fdc-4340-8b7f-8d7d3a584484" ], "x-ms-correlation-request-id": [ - "e7620dad-89d1-4449-8986-808e4075c5ba" + "0a053353-5fdc-4340-8b7f-8d7d3a584484" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204904Z:e7620dad-89d1-4449-8986-808e4075c5ba" + "WESTUS2:20200916T232531Z:0a053353-5fdc-4340-8b7f-8d7d3a584484" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1128,10 +1128,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:49:04 GMT" + "Wed, 16 Sep 2020 23:25:31 GMT" ], "Content-Length": [ - "831" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1140,25 +1140,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMiu4g=\",\r\n \"name\": \"ps7819\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps526.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps526.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7819.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010901E\"\r\n },\r\n \"resourcegroup\": \"ps3998\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgbXA=\",\r\n \"name\": \"ps6304\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6832.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6832.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps6304.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00180034\"\r\n },\r\n \"resourcegroup\": \"ps9910\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d1c27f56-266f-4f3b-8abe-a7cdec94ad8c" + "c9d3a36a-7c19-4865-ad30-6d8f24c6ed53" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1173,16 +1173,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11980" ], "x-ms-request-id": [ - "9f6e5652-2133-43fd-abd8-679a5495eee1" + "bbba798c-fb3a-4965-bee6-b3e6fea54de3" ], "x-ms-correlation-request-id": [ - "9f6e5652-2133-43fd-abd8-679a5495eee1" + "bbba798c-fb3a-4965-bee6-b3e6fea54de3" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204905Z:9f6e5652-2133-43fd-abd8-679a5495eee1" + "WESTUS2:20200916T232531Z:bbba798c-fb3a-4965-bee6-b3e6fea54de3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1191,10 +1191,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:49:04 GMT" + "Wed, 16 Sep 2020 23:25:31 GMT" ], "Content-Length": [ - "831" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1203,25 +1203,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMiu4g=\",\r\n \"name\": \"ps7819\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps526.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps526.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7819.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010901E\"\r\n },\r\n \"resourcegroup\": \"ps3998\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgbXA=\",\r\n \"name\": \"ps6304\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6832.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6832.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps6304.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00180034\"\r\n },\r\n \"resourcegroup\": \"ps9910\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6e39d79e-08b2-4569-bd57-2622baa1332d" + "0cc42aff-0ef9-45ed-874f-ae76b9c577d0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1236,16 +1236,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11979" ], "x-ms-request-id": [ - "71d4e434-b80d-4fbc-a1ed-dbd53e96d46f" + "989f260a-a91a-4b4b-95b0-55756a9cf4e4" ], "x-ms-correlation-request-id": [ - "71d4e434-b80d-4fbc-a1ed-dbd53e96d46f" + "989f260a-a91a-4b4b-95b0-55756a9cf4e4" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204905Z:71d4e434-b80d-4fbc-a1ed-dbd53e96d46f" + "WESTUS2:20200916T232532Z:989f260a-a91a-4b4b-95b0-55756a9cf4e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1254,10 +1254,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:49:05 GMT" + "Wed, 16 Sep 2020 23:25:32 GMT" ], "Content-Length": [ - "831" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1266,25 +1266,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMiu4g=\",\r\n \"name\": \"ps7819\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps526.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps526.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7819.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010901E\"\r\n },\r\n \"resourcegroup\": \"ps3998\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgbXA=\",\r\n \"name\": \"ps6304\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6832.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6832.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps6304.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00180034\"\r\n },\r\n \"resourcegroup\": \"ps9910\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a4e1c6ef-4fc9-47f0-82bc-a0dfec181074" + "ef7414c9-ebfa-4b5b-b89a-becb4c4b9a9f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1299,16 +1299,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11978" ], "x-ms-request-id": [ - "c2e218d5-f3fa-40f1-a23c-37121d954f56" + "501d6080-c0a3-4924-9d37-5bc2e3cad2fc" ], "x-ms-correlation-request-id": [ - "c2e218d5-f3fa-40f1-a23c-37121d954f56" + "501d6080-c0a3-4924-9d37-5bc2e3cad2fc" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204905Z:c2e218d5-f3fa-40f1-a23c-37121d954f56" + "WESTUS2:20200916T232532Z:501d6080-c0a3-4924-9d37-5bc2e3cad2fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1317,10 +1317,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:49:05 GMT" + "Wed, 16 Sep 2020 23:25:32 GMT" ], "Content-Length": [ - "831" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1329,25 +1329,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMiu4g=\",\r\n \"name\": \"ps7819\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps526.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps526.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7819.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010901E\"\r\n },\r\n \"resourcegroup\": \"ps3998\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgbXA=\",\r\n \"name\": \"ps6304\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6832.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6832.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps6304.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00180034\"\r\n },\r\n \"resourcegroup\": \"ps9910\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ad399b98-d8c9-4094-ae43-83ceed93f643" + "1dd24667-f113-41c0-927e-3cdabea1ae10" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1362,16 +1362,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11977" ], "x-ms-request-id": [ - "69d9dc2d-7a0c-4da7-9484-d893109a13af" + "274d4c33-b897-45dc-b0b5-cb4f6f1d1c38" ], "x-ms-correlation-request-id": [ - "69d9dc2d-7a0c-4da7-9484-d893109a13af" + "274d4c33-b897-45dc-b0b5-cb4f6f1d1c38" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204906Z:69d9dc2d-7a0c-4da7-9484-d893109a13af" + "WESTUS2:20200916T232532Z:274d4c33-b897-45dc-b0b5-cb4f6f1d1c38" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1380,10 +1380,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:49:05 GMT" + "Wed, 16 Sep 2020 23:25:32 GMT" ], "Content-Length": [ - "831" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1392,25 +1392,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMiu4g=\",\r\n \"name\": \"ps7819\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps526.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps526.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7819.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010901E\"\r\n },\r\n \"resourcegroup\": \"ps3998\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgbXA=\",\r\n \"name\": \"ps6304\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6832.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6832.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps6304.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00180034\"\r\n },\r\n \"resourcegroup\": \"ps9910\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8e7aff2f-4f76-4a83-8ed1-05003c29dce0" + "6edbd2ce-d583-47b5-966a-c5f919a2cd78" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1425,16 +1425,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11976" ], "x-ms-request-id": [ - "9c229ed1-0ba5-415c-9ca9-074ee6559921" + "28a35455-9104-44a0-85ea-ae738064efb7" ], "x-ms-correlation-request-id": [ - "9c229ed1-0ba5-415c-9ca9-074ee6559921" + "28a35455-9104-44a0-85ea-ae738064efb7" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204906Z:9c229ed1-0ba5-415c-9ca9-074ee6559921" + "WESTUS2:20200916T232532Z:28a35455-9104-44a0-85ea-ae738064efb7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1443,10 +1443,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:49:05 GMT" + "Wed, 16 Sep 2020 23:25:32 GMT" ], "Content-Length": [ - "831" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1455,25 +1455,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMiu4g=\",\r\n \"name\": \"ps7819\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps526.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps526.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7819.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010901E\"\r\n },\r\n \"resourcegroup\": \"ps3998\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgbXA=\",\r\n \"name\": \"ps6304\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6832.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6832.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps6304.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00180034\"\r\n },\r\n \"resourcegroup\": \"ps9910\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d84e00a8-e406-457d-9275-c30b0ababeac" + "5519c503-2aa3-4975-86f9-9c596575a325" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1488,16 +1488,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11975" ], "x-ms-request-id": [ - "f9e05bb3-e447-41f6-8792-7962bc88d4b3" + "2d793c31-d31b-4003-b837-80257387e476" ], "x-ms-correlation-request-id": [ - "f9e05bb3-e447-41f6-8792-7962bc88d4b3" + "2d793c31-d31b-4003-b837-80257387e476" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204906Z:f9e05bb3-e447-41f6-8792-7962bc88d4b3" + "WESTUS2:20200916T232533Z:2d793c31-d31b-4003-b837-80257387e476" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1506,10 +1506,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:49:06 GMT" + "Wed, 16 Sep 2020 23:25:33 GMT" ], "Content-Length": [ - "831" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1518,25 +1518,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMiu4g=\",\r\n \"name\": \"ps7819\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps526.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps526.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7819.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010901E\"\r\n },\r\n \"resourcegroup\": \"ps3998\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgbXA=\",\r\n \"name\": \"ps6304\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6832.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6832.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps6304.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00180034\"\r\n },\r\n \"resourcegroup\": \"ps9910\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eeeb4c9c-23a2-441b-8c05-2d1d5db94280" + "3ee6841a-2bc3-4c9c-b510-bed5d20dba72" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1551,16 +1551,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11974" ], "x-ms-request-id": [ - "95e987e6-3fe7-4057-9efc-608d4cba1940" + "354a1b2f-9cbb-4a87-a651-2f72429059d4" ], "x-ms-correlation-request-id": [ - "95e987e6-3fe7-4057-9efc-608d4cba1940" + "354a1b2f-9cbb-4a87-a651-2f72429059d4" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204907Z:95e987e6-3fe7-4057-9efc-608d4cba1940" + "WESTUS2:20200916T232533Z:354a1b2f-9cbb-4a87-a651-2f72429059d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1569,10 +1569,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:49:06 GMT" + "Wed, 16 Sep 2020 23:25:33 GMT" ], "Content-Length": [ - "831" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1581,25 +1581,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMiu4g=\",\r\n \"name\": \"ps7819\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps526.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps526.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7819.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010901E\"\r\n },\r\n \"resourcegroup\": \"ps3998\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgbXA=\",\r\n \"name\": \"ps6304\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6832.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6832.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps6304.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00180034\"\r\n },\r\n \"resourcegroup\": \"ps9910\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "da59d23e-9207-4d94-885c-4df3e7f5b7d1" + "c6a24dd8-96d2-4ad7-992d-4a435ed3cdfa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1614,16 +1614,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11973" ], "x-ms-request-id": [ - "7236d45e-2cfb-43a5-9c51-906133259263" + "8f20ac86-d26b-4c20-959f-cf04c326124c" ], "x-ms-correlation-request-id": [ - "7236d45e-2cfb-43a5-9c51-906133259263" + "8f20ac86-d26b-4c20-959f-cf04c326124c" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204907Z:7236d45e-2cfb-43a5-9c51-906133259263" + "WESTUS2:20200916T232534Z:8f20ac86-d26b-4c20-959f-cf04c326124c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1632,10 +1632,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:49:07 GMT" + "Wed, 16 Sep 2020 23:25:34 GMT" ], "Content-Length": [ - "831" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1644,25 +1644,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMiu4g=\",\r\n \"name\": \"ps7819\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps526.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps526.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7819.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010901E\"\r\n },\r\n \"resourcegroup\": \"ps3998\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgbXA=\",\r\n \"name\": \"ps6304\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6832.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6832.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps6304.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00180034\"\r\n },\r\n \"resourcegroup\": \"ps9910\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "99f522aa-b25f-41b4-bbb4-a034654420e5" + "92d2f97a-03bf-40c1-9f50-5704620191a9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1677,16 +1677,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11972" ], "x-ms-request-id": [ - "8686beda-d56d-4209-87c3-88a1e98bf1d8" + "7a74f5be-c4d6-4324-bc61-17b10368efe3" ], "x-ms-correlation-request-id": [ - "8686beda-d56d-4209-87c3-88a1e98bf1d8" + "7a74f5be-c4d6-4324-bc61-17b10368efe3" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204908Z:8686beda-d56d-4209-87c3-88a1e98bf1d8" + "WESTUS2:20200916T232535Z:7a74f5be-c4d6-4324-bc61-17b10368efe3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1695,10 +1695,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:49:07 GMT" + "Wed, 16 Sep 2020 23:25:34 GMT" ], "Content-Length": [ - "831" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1707,25 +1707,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMiu4g=\",\r\n \"name\": \"ps7819\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps526.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps526.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7819.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010901E\"\r\n },\r\n \"resourcegroup\": \"ps3998\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgbXA=\",\r\n \"name\": \"ps6304\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6832.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6832.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps6304.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00180034\"\r\n },\r\n \"resourcegroup\": \"ps9910\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e7603e2a-6e5e-48ef-b734-024379b7acff" + "03091ef2-d761-437d-b6c4-08d52176dd08" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1740,16 +1740,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11971" ], "x-ms-request-id": [ - "89916f7d-8a81-4dd7-a941-6b36addfece4" + "4b126bde-75ed-446f-a476-8e79dee6a80d" ], "x-ms-correlation-request-id": [ - "89916f7d-8a81-4dd7-a941-6b36addfece4" + "4b126bde-75ed-446f-a476-8e79dee6a80d" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204908Z:89916f7d-8a81-4dd7-a941-6b36addfece4" + "WESTUS2:20200916T232535Z:4b126bde-75ed-446f-a476-8e79dee6a80d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1758,10 +1758,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:49:08 GMT" + "Wed, 16 Sep 2020 23:25:35 GMT" ], "Content-Length": [ - "831" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1770,25 +1770,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMiu4g=\",\r\n \"name\": \"ps7819\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps526.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps526.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7819.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010901E\"\r\n },\r\n \"resourcegroup\": \"ps3998\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgbXA=\",\r\n \"name\": \"ps6304\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6832.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6832.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps6304.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00180034\"\r\n },\r\n \"resourcegroup\": \"ps9910\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dd575a1d-ad1c-4125-b661-1215dc17c487" + "ca0e56b1-9b14-41f7-9005-edd70da9f8a5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1803,16 +1803,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11970" ], "x-ms-request-id": [ - "a421e413-0211-4003-8129-1fbd5c68ae30" + "657ac98e-d64f-45ec-9463-622ec6ae7d48" ], "x-ms-correlation-request-id": [ - "a421e413-0211-4003-8129-1fbd5c68ae30" + "657ac98e-d64f-45ec-9463-622ec6ae7d48" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204909Z:a421e413-0211-4003-8129-1fbd5c68ae30" + "WESTUS2:20200916T232535Z:657ac98e-d64f-45ec-9463-622ec6ae7d48" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1821,10 +1821,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:49:08 GMT" + "Wed, 16 Sep 2020 23:25:35 GMT" ], "Content-Length": [ - "831" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1833,25 +1833,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMiu4g=\",\r\n \"name\": \"ps7819\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps526.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps526.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7819.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010901E\"\r\n },\r\n \"resourcegroup\": \"ps3998\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgbXA=\",\r\n \"name\": \"ps6304\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6832.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6832.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps6304.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00180034\"\r\n },\r\n \"resourcegroup\": \"ps9910\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bdf6425c-19fe-4c0e-8b11-66c848ea0478" + "e35e80ee-2429-4043-8272-ac857482c42a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1866,16 +1866,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11969" ], "x-ms-request-id": [ - "263e0417-2e88-4194-ae48-b4599a65fc25" + "6546d1fa-8e69-49dc-a882-91e2cba79523" ], "x-ms-correlation-request-id": [ - "263e0417-2e88-4194-ae48-b4599a65fc25" + "6546d1fa-8e69-49dc-a882-91e2cba79523" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204909Z:263e0417-2e88-4194-ae48-b4599a65fc25" + "WESTUS2:20200916T232536Z:6546d1fa-8e69-49dc-a882-91e2cba79523" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1884,10 +1884,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:49:09 GMT" + "Wed, 16 Sep 2020 23:25:36 GMT" ], "Content-Length": [ - "831" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1896,25 +1896,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMiu4g=\",\r\n \"name\": \"ps7819\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps526.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps526.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7819.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010901E\"\r\n },\r\n \"resourcegroup\": \"ps3998\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgbXA=\",\r\n \"name\": \"ps6304\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6832.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6832.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps6304.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00180034\"\r\n },\r\n \"resourcegroup\": \"ps9910\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fcd596dc-d180-4f81-b287-c9fed34e8092" + "bb1390c8-98ca-4e25-b452-26759b8bcf93" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1929,16 +1929,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11968" ], "x-ms-request-id": [ - "4927b352-56ef-4283-a6c2-fccf65c1161a" + "12cd3136-fdc6-4561-9ef6-6d13f254adf9" ], "x-ms-correlation-request-id": [ - "4927b352-56ef-4283-a6c2-fccf65c1161a" + "12cd3136-fdc6-4561-9ef6-6d13f254adf9" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204910Z:4927b352-56ef-4283-a6c2-fccf65c1161a" + "WESTUS2:20200916T232536Z:12cd3136-fdc6-4561-9ef6-6d13f254adf9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1947,10 +1947,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:49:09 GMT" + "Wed, 16 Sep 2020 23:25:36 GMT" ], "Content-Length": [ - "831" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1959,25 +1959,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMiu4g=\",\r\n \"name\": \"ps7819\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps526.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps526.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7819.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010901E\"\r\n },\r\n \"resourcegroup\": \"ps3998\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgbXA=\",\r\n \"name\": \"ps6304\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6832.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6832.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps6304.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00180034\"\r\n },\r\n \"resourcegroup\": \"ps9910\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ee66e0af-e3ea-4eb5-8126-10b96be285ba" + "1c82ffe9-32d2-4863-a93c-9305b254bdf6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1992,16 +1992,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11967" ], "x-ms-request-id": [ - "bee5231c-fa34-4c5b-913c-3b76b8cd6b20" + "b4c09cad-29a3-4de4-ab9d-3f9832a93d8c" ], "x-ms-correlation-request-id": [ - "bee5231c-fa34-4c5b-913c-3b76b8cd6b20" + "b4c09cad-29a3-4de4-ab9d-3f9832a93d8c" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204911Z:bee5231c-fa34-4c5b-913c-3b76b8cd6b20" + "WESTUS2:20200916T232537Z:b4c09cad-29a3-4de4-ab9d-3f9832a93d8c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2010,10 +2010,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:49:10 GMT" + "Wed, 16 Sep 2020 23:25:37 GMT" ], "Content-Length": [ - "831" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2022,25 +2022,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMiu4g=\",\r\n \"name\": \"ps7819\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps526.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps526.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7819.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010901E\"\r\n },\r\n \"resourcegroup\": \"ps3998\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgbXA=\",\r\n \"name\": \"ps6304\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6832.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6832.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps6304.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00180034\"\r\n },\r\n \"resourcegroup\": \"ps9910\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f7b4a2fc-bbcf-4cfb-b04b-0f8510e19c65" + "c8ea8bdf-a5f9-4f9d-bb98-032a12eea027" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -2055,16 +2055,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11966" ], "x-ms-request-id": [ - "854cf14a-a531-4b13-8d8b-f2e893b67066" + "4d280de3-4c9e-406a-8098-81f1d23cb6f7" ], "x-ms-correlation-request-id": [ - "854cf14a-a531-4b13-8d8b-f2e893b67066" + "4d280de3-4c9e-406a-8098-81f1d23cb6f7" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204911Z:854cf14a-a531-4b13-8d8b-f2e893b67066" + "WESTUS2:20200916T232537Z:4d280de3-4c9e-406a-8098-81f1d23cb6f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2073,10 +2073,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:49:11 GMT" + "Wed, 16 Sep 2020 23:25:37 GMT" ], "Content-Length": [ - "831" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2085,25 +2085,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMiu4g=\",\r\n \"name\": \"ps7819\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps526.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps526.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7819.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010901E\"\r\n },\r\n \"resourcegroup\": \"ps3998\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgbXA=\",\r\n \"name\": \"ps6304\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6832.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6832.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps6304.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00180034\"\r\n },\r\n \"resourcegroup\": \"ps9910\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2df63bbe-a6bb-42d1-8ceb-80d8fcdc80b0" + "e5ec452d-6a50-4a66-88ab-178538306b3a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -2118,16 +2118,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11965" ], "x-ms-request-id": [ - "a9a1553b-2cce-400d-8a85-8bcf10ae77d5" + "fbc08b5c-5397-4d5b-a2b2-5b1c1895db7f" ], "x-ms-correlation-request-id": [ - "a9a1553b-2cce-400d-8a85-8bcf10ae77d5" + "fbc08b5c-5397-4d5b-a2b2-5b1c1895db7f" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204912Z:a9a1553b-2cce-400d-8a85-8bcf10ae77d5" + "WESTUS2:20200916T232538Z:fbc08b5c-5397-4d5b-a2b2-5b1c1895db7f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2136,10 +2136,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:49:11 GMT" + "Wed, 16 Sep 2020 23:25:38 GMT" ], "Content-Length": [ - "831" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2148,25 +2148,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMiu4g=\",\r\n \"name\": \"ps7819\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps526.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps526.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7819.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010901E\"\r\n },\r\n \"resourcegroup\": \"ps3998\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgbXA=\",\r\n \"name\": \"ps6304\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6832.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6832.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps6304.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00180034\"\r\n },\r\n \"resourcegroup\": \"ps9910\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "68e39cc4-e3ca-4ec6-b120-59eec289600d" + "19b288b5-ba06-45bb-89b3-eeb2a3459228" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -2181,16 +2181,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11964" ], "x-ms-request-id": [ - "b4c3c791-8f70-4302-8424-1b7ee18fecfc" + "e6f46630-630c-4795-8734-f6c635cb254e" ], "x-ms-correlation-request-id": [ - "b4c3c791-8f70-4302-8424-1b7ee18fecfc" + "e6f46630-630c-4795-8734-f6c635cb254e" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204912Z:b4c3c791-8f70-4302-8424-1b7ee18fecfc" + "WESTUS2:20200916T232538Z:e6f46630-630c-4795-8734-f6c635cb254e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2199,10 +2199,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:49:11 GMT" + "Wed, 16 Sep 2020 23:25:38 GMT" ], "Content-Length": [ - "831" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2211,19 +2211,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMiu4g=\",\r\n \"name\": \"ps7819\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps526.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps526.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7819.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010901E\"\r\n },\r\n \"resourcegroup\": \"ps3998\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgbXA=\",\r\n \"name\": \"ps6304\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6832.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6832.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps6304.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00180034\"\r\n },\r\n \"resourcegroup\": \"ps9910\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -2238,16 +2238,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11962" ], "x-ms-request-id": [ - "dde5eba6-391c-4d69-9e9d-f3fcc6429fea" + "47b86c37-8007-4863-a1b1-862977217d32" ], "x-ms-correlation-request-id": [ - "dde5eba6-391c-4d69-9e9d-f3fcc6429fea" + "47b86c37-8007-4863-a1b1-862977217d32" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204950Z:dde5eba6-391c-4d69-9e9d-f3fcc6429fea" + "WESTUS2:20200916T232610Z:47b86c37-8007-4863-a1b1-862977217d32" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2256,7 +2256,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:49:49 GMT" + "Wed, 16 Sep 2020 23:26:10 GMT" ], "Content-Length": [ "640" @@ -2268,25 +2268,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMiu/Q=\",\r\n \"name\": \"ps7819\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7819.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010901E\"\r\n },\r\n \"resourcegroup\": \"ps3998\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgbeY=\",\r\n \"name\": \"ps6304\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps6304.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00180034\"\r\n },\r\n \"resourcegroup\": \"ps9910\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/IotHubs/ps526?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczUyNj9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/IotHubs/ps6832?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY4MzI/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6dd71a87-4e09-47da-9864-3f42ff361783" + "acd9cc4d-c526-4c24-911c-08186cdfdb32" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ], "Content-Type": [ @@ -2304,7 +2304,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNzQ3MzlhZjktYThmZi00NDAxLTg1OTgtOGNiMDM5NWRjODI4?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNzNiOGRkYTQtZDkyNS00MzM4LTg4YTQtYmNiNzk5ZTAxNWZh?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2313,13 +2313,13 @@ "4999" ], "x-ms-request-id": [ - "d1c3f795-78eb-4db9-9085-04646049773f" + "3f39784c-4985-4924-b6a2-1673851e84d3" ], "x-ms-correlation-request-id": [ - "d1c3f795-78eb-4db9-9085-04646049773f" + "3f39784c-4985-4924-b6a2-1673851e84d3" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204553Z:d1c3f795-78eb-4db9-9085-04646049773f" + "WESTUS2:20200916T232149Z:3f39784c-4985-4924-b6a2-1673851e84d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2328,10 +2328,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:45:52 GMT" + "Wed, 16 Sep 2020 23:21:48 GMT" ], "Content-Length": [ - "617" + "619" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2340,25 +2340,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/IotHubs/ps526\",\r\n \"name\": \"ps526\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3998\",\r\n \"properties\": {\r\n \"state\": \"Activating\",\r\n \"provisioningState\": \"Accepted\",\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/IotHubs/ps6832\",\r\n \"name\": \"ps6832\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9910\",\r\n \"properties\": {\r\n \"state\": \"Activating\",\r\n \"provisioningState\": \"Accepted\",\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/IotHubs/ps526?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczUyNj9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/IotHubs/ps6832?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY4MzI/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAAA3CtzY=\",\r\n \"properties\": {\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"UC9LghRCCIFtEIm9S1U2dO7UZwqIuSBC2GXhTtXQI5Q=\",\r\n \"secondaryKey\": \"l03LsgKvrtq6JX5TB5uB7EKY1o7eR5R+qOqHFlymaOc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"RgXXh5EelZoz8wj74IPYJmLCkbY6tdTUfIwra1rAWK0=\",\r\n \"secondaryKey\": \"q1qFi0eIDFdykfjp5jLuwrOtFCqj1TP3fenYMOVNYxY=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"jj9oBLuDS2FBa7Ud5BjP8hv9I0fFA7is7hXwSrcpv88=\",\r\n \"secondaryKey\": \"UETsdzogM1Y7Bln0xhpEb0LbcJYFnyh12fqUtPHELkQ=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"8iebVDW2dtKTfRq4DCRx2X8yQoiU6h8VTa4feLWkJqY=\",\r\n \"secondaryKey\": \"5Il5mp5OO5jsE4uhNHiPSHLWCbWsG4LRRAa8uGHP2jo=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"TGjBR1apVM+ZdAGeIBKa/ANxsHBdQ+/SsRCikcviN3I=\",\r\n \"secondaryKey\": \"oM6sHEXCmV7SzWvVmXuGMTtjPDxTdb4z8BqmEPsvonA=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"ServiceKey\",\r\n \"rights\": \"ServiceConnect\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"etag\": \"AAAAAiHPWLM=\",\r\n \"properties\": {\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"VvJRemXM3+573ohmIT0furfy3wvjbYhuCV6VcH7yFcQ=\",\r\n \"secondaryKey\": \"ixo1k82kUpNPrqlzQSjMFH1g5z2p73nbjBysERCokgc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"WS6E/tIZCxmcHRXWmePpBD2hLR+CB+n+A6WahnXK2T4=\",\r\n \"secondaryKey\": \"Ge/8dFkdfhHWqFX24mPGOwjyIcWfr8EKXZ3wENLOHAw=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"VsEKI0CFVXuvX5hU3hpboSpU6Yk+5SQM8jWmD5BVPuA=\",\r\n \"secondaryKey\": \"2nCPniy99i6WcaUeevTeQQzQdUHUDfMp1ZTfvZ9LWkQ=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"nnymPrGh7gTuRX0bIjHMjx0WBCzdbdt/beQoyRF7YNg=\",\r\n \"secondaryKey\": \"kfXkv4e56jtGAhq4rnVJMjaW2Ir8qOs05lJmi1xieLA=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"yzofbl6PS8TiL1kJy1y+Tl1aM0orieJzb6mMnZY0dPU=\",\r\n \"secondaryKey\": \"2XIKQuiobLweSRh4ZNnvpt5kS5p62kG0uLb2boED56o=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"ServiceKey\",\r\n \"rights\": \"ServiceConnect\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ae5b2319-8bcf-403e-bc04-5cb87e8bb10c" + "2d96eaf8-d5ad-42e1-b6f9-551a3f6af8cf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ], "Content-Type": [ @@ -2376,7 +2376,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNGQ4MDdjNGMtNWY1NS00MjE5LWJhZWEtNDJlMmY4Mjc1Mzk4?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNmViMzZlYTktMGFjYi00NjdmLWJmY2YtYWE0ZDBjODAyODFl?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2385,13 +2385,13 @@ "4998" ], "x-ms-request-id": [ - "4a1e187f-cc88-4807-82f5-3c59156eb8fb" + "72ffe8b8-7696-48ad-a75c-492a42b9974e" ], "x-ms-correlation-request-id": [ - "4a1e187f-cc88-4807-82f5-3c59156eb8fb" + "72ffe8b8-7696-48ad-a75c-492a42b9974e" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204759Z:4a1e187f-cc88-4807-82f5-3c59156eb8fb" + "WESTUS2:20200916T232425Z:72ffe8b8-7696-48ad-a75c-492a42b9974e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2400,10 +2400,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:47:58 GMT" + "Wed, 16 Sep 2020 23:24:25 GMT" ], "Content-Length": [ - "4096" + "4100" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2412,19 +2412,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/IotHubs/ps526\",\r\n \"name\": \"ps526\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3998\",\r\n \"etag\": \"AAAAAA3CtzY=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"UC9LghRCCIFtEIm9S1U2dO7UZwqIuSBC2GXhTtXQI5Q=\",\r\n \"secondaryKey\": \"l03LsgKvrtq6JX5TB5uB7EKY1o7eR5R+qOqHFlymaOc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"RgXXh5EelZoz8wj74IPYJmLCkbY6tdTUfIwra1rAWK0=\",\r\n \"secondaryKey\": \"q1qFi0eIDFdykfjp5jLuwrOtFCqj1TP3fenYMOVNYxY=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"jj9oBLuDS2FBa7Ud5BjP8hv9I0fFA7is7hXwSrcpv88=\",\r\n \"secondaryKey\": \"UETsdzogM1Y7Bln0xhpEb0LbcJYFnyh12fqUtPHELkQ=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"8iebVDW2dtKTfRq4DCRx2X8yQoiU6h8VTa4feLWkJqY=\",\r\n \"secondaryKey\": \"5Il5mp5OO5jsE4uhNHiPSHLWCbWsG4LRRAa8uGHP2jo=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"TGjBR1apVM+ZdAGeIBKa/ANxsHBdQ+/SsRCikcviN3I=\",\r\n \"secondaryKey\": \"oM6sHEXCmV7SzWvVmXuGMTtjPDxTdb4z8BqmEPsvonA=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"ServiceKey\",\r\n \"primaryKey\": \"6l1bPLsrIVXuBJR8nHTpOM8lSL/Cm9Q4iOdsqdz7LAQ=\",\r\n \"secondaryKey\": \"vJlAoK5+4DWUOHT9GPZuhmiWKlC9J65Apl/QAvlTbW4=\",\r\n \"rights\": \"ServiceConnect\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps526-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps526-3465170-d0367da16c.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-1407976e-972d-4004-ab0a-28e176081346-iothub\",\r\n \"PrimaryKey\": \"QziHytSE+Z6Y9eJGvrq2Pl2X8z3kt+Zk5dzFD9/Vv2g=\",\r\n \"SecondaryKey\": \"idl8xFQ3WWreVvIqhl0Znt7rE+BDOOpdjjJRm0V482Y=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 18 May 2020 20:47:20 GMT\",\r\n \"ModifiedTime\": \"Mon, 18 May 2020 20:47:20 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-4a100612-ce6f-4ed6-9eb7-7e6bbc0a25a9-iothub\",\r\n \"PrimaryKey\": \"bfINcB1kD3nw2jORSJVBDcoFzhLxVSRLz82Th+73/b4=\",\r\n \"SecondaryKey\": \"95W4258qgmyW2UgZm1Vhh/YcNp+7coic9vcdhecxki4=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 18 May 2020 20:47:20 GMT\",\r\n \"ModifiedTime\": \"Mon, 18 May 2020 20:47:20 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"UC9LghRCCIFtEIm9S1U2dO7UZwqIuSBC2GXhTtXQI5Q=\",\r\n \"SecondaryKey\": \"l03LsgKvrtq6JX5TB5uB7EKY1o7eR5R+qOqHFlymaOc=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 18 May 2020 20:47:20 GMT\",\r\n \"ModifiedTime\": \"Mon, 18 May 2020 20:47:20 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"RgXXh5EelZoz8wj74IPYJmLCkbY6tdTUfIwra1rAWK0=\",\r\n \"SecondaryKey\": \"q1qFi0eIDFdykfjp5jLuwrOtFCqj1TP3fenYMOVNYxY=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 18 May 2020 20:47:20 GMT\",\r\n \"ModifiedTime\": \"Mon, 18 May 2020 20:47:20 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/IotHubs/ps6832\",\r\n \"name\": \"ps6832\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9910\",\r\n \"etag\": \"AAAAAiHPWLM=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"VvJRemXM3+573ohmIT0furfy3wvjbYhuCV6VcH7yFcQ=\",\r\n \"secondaryKey\": \"ixo1k82kUpNPrqlzQSjMFH1g5z2p73nbjBysERCokgc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"WS6E/tIZCxmcHRXWmePpBD2hLR+CB+n+A6WahnXK2T4=\",\r\n \"secondaryKey\": \"Ge/8dFkdfhHWqFX24mPGOwjyIcWfr8EKXZ3wENLOHAw=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"VsEKI0CFVXuvX5hU3hpboSpU6Yk+5SQM8jWmD5BVPuA=\",\r\n \"secondaryKey\": \"2nCPniy99i6WcaUeevTeQQzQdUHUDfMp1ZTfvZ9LWkQ=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"nnymPrGh7gTuRX0bIjHMjx0WBCzdbdt/beQoyRF7YNg=\",\r\n \"secondaryKey\": \"kfXkv4e56jtGAhq4rnVJMjaW2Ir8qOs05lJmi1xieLA=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"yzofbl6PS8TiL1kJy1y+Tl1aM0orieJzb6mMnZY0dPU=\",\r\n \"secondaryKey\": \"2XIKQuiobLweSRh4ZNnvpt5kS5p62kG0uLb2boED56o=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"ServiceKey\",\r\n \"primaryKey\": \"4Q0f2Sdjhpi5w9X7ZdQUQBQqljBgIP4DuodD8eN3vNA=\",\r\n \"secondaryKey\": \"7tuQb+1A5qxHddUGS+zENdC4F5q4ucs67jazDkjliTg=\",\r\n \"rights\": \"ServiceConnect\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6832-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps6832-4636796-5f325ebd6f.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-7910e7bb-cb8e-4d9d-b189-f63a328522c4-iothub\",\r\n \"PrimaryKey\": \"izuW26ATLvzWIyZDPfZixdneH1jMvMAUld8kO79guNM=\",\r\n \"SecondaryKey\": \"ay3/ddeimd/kKLdyRMxGNNwL/ffWXNpttlIcLVmnkZg=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 16 Sep 2020 23:23:49 GMT\",\r\n \"ModifiedTime\": \"Wed, 16 Sep 2020 23:23:49 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-71a94fc8-43a2-4c6a-83ee-396e24a6083e-iothub\",\r\n \"PrimaryKey\": \"qzt8OXZJnjvegqwJZnHOapnQ0pUTSeyv7H/piQgyXPo=\",\r\n \"SecondaryKey\": \"jBy2UiHQi0cWgcqPTxR4nMQxquZt5l5Pk71rmWjlZXg=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 16 Sep 2020 23:23:49 GMT\",\r\n \"ModifiedTime\": \"Wed, 16 Sep 2020 23:23:49 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"VvJRemXM3+573ohmIT0furfy3wvjbYhuCV6VcH7yFcQ=\",\r\n \"SecondaryKey\": \"ixo1k82kUpNPrqlzQSjMFH1g5z2p73nbjBysERCokgc=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 16 Sep 2020 23:23:49 GMT\",\r\n \"ModifiedTime\": \"Wed, 16 Sep 2020 23:23:49 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"WS6E/tIZCxmcHRXWmePpBD2hLR+CB+n+A6WahnXK2T4=\",\r\n \"SecondaryKey\": \"Ge/8dFkdfhHWqFX24mPGOwjyIcWfr8EKXZ3wENLOHAw=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 16 Sep 2020 23:23:49 GMT\",\r\n \"ModifiedTime\": \"Wed, 16 Sep 2020 23:23:49 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNzQ3MzlhZjktYThmZi00NDAxLTg1OTgtOGNiMDM5NWRjODI4?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTnpRM016bGhaamt0WVRobVppMDBOREF4TFRnMU9UZ3RPR05pTURNNU5XUmpPREk0P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNzNiOGRkYTQtZDkyNS00MzM4LTg4YTQtYmNiNzk5ZTAxNWZh?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTnpOaU9HUmtZVFF0WkRreU5TMDBNek00TFRnNFlUUXRZbU5pTnprNVpUQXhOV1poP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -2439,16 +2439,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11997" ], "x-ms-request-id": [ - "1f8d4b4a-9506-425b-b0a8-7e160f4dc8db" + "8b0876da-236b-467d-86d1-91405f12f3e1" ], "x-ms-correlation-request-id": [ - "1f8d4b4a-9506-425b-b0a8-7e160f4dc8db" + "8b0876da-236b-467d-86d1-91405f12f3e1" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204623Z:1f8d4b4a-9506-425b-b0a8-7e160f4dc8db" + "WESTUS2:20200916T232219Z:8b0876da-236b-467d-86d1-91405f12f3e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2457,7 +2457,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:46:23 GMT" + "Wed, 16 Sep 2020 23:22:18 GMT" ], "Content-Length": [ "20" @@ -2473,15 +2473,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNzQ3MzlhZjktYThmZi00NDAxLTg1OTgtOGNiMDM5NWRjODI4?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTnpRM016bGhaamt0WVRobVppMDBOREF4TFRnMU9UZ3RPR05pTURNNU5XUmpPREk0P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNzNiOGRkYTQtZDkyNS00MzM4LTg4YTQtYmNiNzk5ZTAxNWZh?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTnpOaU9HUmtZVFF0WkRreU5TMDBNek00TFRnNFlUUXRZbU5pTnprNVpUQXhOV1poP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -2496,16 +2496,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11996" ], "x-ms-request-id": [ - "e1405f1e-7884-43a2-b4f3-924b058075ef" + "68a986c1-bfe6-498e-8110-5ee0eff0eddb" ], "x-ms-correlation-request-id": [ - "e1405f1e-7884-43a2-b4f3-924b058075ef" + "68a986c1-bfe6-498e-8110-5ee0eff0eddb" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204653Z:e1405f1e-7884-43a2-b4f3-924b058075ef" + "WESTUS2:20200916T232249Z:68a986c1-bfe6-498e-8110-5ee0eff0eddb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2514,7 +2514,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:46:53 GMT" + "Wed, 16 Sep 2020 23:22:49 GMT" ], "Content-Length": [ "20" @@ -2530,15 +2530,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNzQ3MzlhZjktYThmZi00NDAxLTg1OTgtOGNiMDM5NWRjODI4?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTnpRM016bGhaamt0WVRobVppMDBOREF4TFRnMU9UZ3RPR05pTURNNU5XUmpPREk0P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNzNiOGRkYTQtZDkyNS00MzM4LTg4YTQtYmNiNzk5ZTAxNWZh?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTnpOaU9HUmtZVFF0WkRreU5TMDBNek00TFRnNFlUUXRZbU5pTnprNVpUQXhOV1poP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -2553,16 +2553,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11995" ], "x-ms-request-id": [ - "20fc7ca4-de92-4f73-acea-40c830c658e1" + "e5b2d4d9-641e-4e67-bb84-c0c7329f8b6a" ], "x-ms-correlation-request-id": [ - "20fc7ca4-de92-4f73-acea-40c830c658e1" + "e5b2d4d9-641e-4e67-bb84-c0c7329f8b6a" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204723Z:20fc7ca4-de92-4f73-acea-40c830c658e1" + "WESTUS2:20200916T232320Z:e5b2d4d9-641e-4e67-bb84-c0c7329f8b6a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2571,7 +2571,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:47:23 GMT" + "Wed, 16 Sep 2020 23:23:19 GMT" ], "Content-Length": [ "20" @@ -2587,15 +2587,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNzQ3MzlhZjktYThmZi00NDAxLTg1OTgtOGNiMDM5NWRjODI4?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTnpRM016bGhaamt0WVRobVppMDBOREF4TFRnMU9UZ3RPR05pTURNNU5XUmpPREk0P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNzNiOGRkYTQtZDkyNS00MzM4LTg4YTQtYmNiNzk5ZTAxNWZh?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTnpOaU9HUmtZVFF0WkRreU5TMDBNek00TFRnNFlUUXRZbU5pTnprNVpUQXhOV1poP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -2610,16 +2610,73 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11994" + ], + "x-ms-request-id": [ + "639c1669-5160-46f2-bf1f-2f225fe56e75" + ], + "x-ms-correlation-request-id": [ + "639c1669-5160-46f2-bf1f-2f225fe56e75" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200916T232350Z:639c1669-5160-46f2-bf1f-2f225fe56e75" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Sep 2020 23:23:50 GMT" + ], + "Content-Length": [ + "20" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNzNiOGRkYTQtZDkyNS00MzM4LTg4YTQtYmNiNzk5ZTAxNWZh?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTnpOaU9HUmtZVFF0WkRreU5TMDBNek00TFRnNFlUUXRZbU5pTnprNVpUQXhOV1poP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" ], "x-ms-request-id": [ - "7659488e-453c-42e1-9c7d-aa4b53a04e3e" + "0f71916f-50cf-4269-ad34-ca0e4e707f75" ], "x-ms-correlation-request-id": [ - "7659488e-453c-42e1-9c7d-aa4b53a04e3e" + "0f71916f-50cf-4269-ad34-ca0e4e707f75" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204754Z:7659488e-453c-42e1-9c7d-aa4b53a04e3e" + "WESTUS2:20200916T232420Z:0f71916f-50cf-4269-ad34-ca0e4e707f75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2628,7 +2685,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:47:53 GMT" + "Wed, 16 Sep 2020 23:24:19 GMT" ], "Content-Length": [ "22" @@ -2644,15 +2701,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/IotHubs/ps526?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczUyNj9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/IotHubs/ps6832?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY4MzI/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -2667,16 +2724,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11992" ], "x-ms-request-id": [ - "26a0cda2-ef30-467d-892e-c70432407413" + "525011e0-e5b1-4167-9a56-07dc8236399c" ], "x-ms-correlation-request-id": [ - "26a0cda2-ef30-467d-892e-c70432407413" + "525011e0-e5b1-4167-9a56-07dc8236399c" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204754Z:26a0cda2-ef30-467d-892e-c70432407413" + "WESTUS2:20200916T232421Z:525011e0-e5b1-4167-9a56-07dc8236399c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2685,10 +2742,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:47:54 GMT" + "Wed, 16 Sep 2020 23:24:20 GMT" ], "Content-Length": [ - "1455" + "1460" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2697,25 +2754,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/IotHubs/ps526\",\r\n \"name\": \"ps526\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3998\",\r\n \"etag\": \"AAAAAA3CtzY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps526.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps526\",\r\n \"endpoint\": \"sb://iothub-ns-ps526-3465170-d0367da16c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/IotHubs/ps6832\",\r\n \"name\": \"ps6832\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9910\",\r\n \"etag\": \"AAAAAiHPWLM=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6832.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6832\",\r\n \"endpoint\": \"sb://iothub-ns-ps6832-4636796-5f325ebd6f.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/IotHubs/ps526?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczUyNj9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/IotHubs/ps6832?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY4MzI/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2c40aef1-a4c1-4bfc-912b-669ea4d29092" + "403dfccb-6f51-42fc-92fa-a02868c14d6f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -2730,16 +2787,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11991" ], "x-ms-request-id": [ - "c15d8eee-36c2-4e43-a103-d744008f5855" + "cdd1afec-2571-4a34-b498-d7f51eec91d7" ], "x-ms-correlation-request-id": [ - "c15d8eee-36c2-4e43-a103-d744008f5855" + "cdd1afec-2571-4a34-b498-d7f51eec91d7" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204755Z:c15d8eee-36c2-4e43-a103-d744008f5855" + "WESTUS2:20200916T232421Z:cdd1afec-2571-4a34-b498-d7f51eec91d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2748,10 +2805,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:47:54 GMT" + "Wed, 16 Sep 2020 23:24:21 GMT" ], "Content-Length": [ - "1455" + "1460" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2760,25 +2817,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/IotHubs/ps526\",\r\n \"name\": \"ps526\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3998\",\r\n \"etag\": \"AAAAAA3CtzY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps526.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps526\",\r\n \"endpoint\": \"sb://iothub-ns-ps526-3465170-d0367da16c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/IotHubs/ps6832\",\r\n \"name\": \"ps6832\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9910\",\r\n \"etag\": \"AAAAAiHPWLM=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6832.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6832\",\r\n \"endpoint\": \"sb://iothub-ns-ps6832-4636796-5f325ebd6f.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/IotHubs/ps526?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczUyNj9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/IotHubs/ps6832?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY4MzI/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ebee50ac-0033-4e43-80f5-ee2755ec5455" + "cab0b3ef-b8ef-4ce0-8653-04edda117896" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -2793,16 +2850,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11990" ], "x-ms-request-id": [ - "7488642a-7591-446d-8912-139bcf90faee" + "704b5bcf-c40e-4ab9-9758-599431aa19eb" ], "x-ms-correlation-request-id": [ - "7488642a-7591-446d-8912-139bcf90faee" + "704b5bcf-c40e-4ab9-9758-599431aa19eb" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204755Z:7488642a-7591-446d-8912-139bcf90faee" + "WESTUS2:20200916T232422Z:704b5bcf-c40e-4ab9-9758-599431aa19eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2811,10 +2868,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:47:55 GMT" + "Wed, 16 Sep 2020 23:24:21 GMT" ], "Content-Length": [ - "1455" + "1460" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2823,19 +2880,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/IotHubs/ps526\",\r\n \"name\": \"ps526\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3998\",\r\n \"etag\": \"AAAAAA3CtzY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps526.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps526\",\r\n \"endpoint\": \"sb://iothub-ns-ps526-3465170-d0367da16c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/IotHubs/ps6832\",\r\n \"name\": \"ps6832\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9910\",\r\n \"etag\": \"AAAAAiHPWLM=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6832.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6832\",\r\n \"endpoint\": \"sb://iothub-ns-ps6832-4636796-5f325ebd6f.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/IotHubs/ps526?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczUyNj9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/IotHubs/ps6832?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY4MzI/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -2850,16 +2907,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11988" ], "x-ms-request-id": [ - "bccaf17d-d3a0-4f0b-b798-6f2a45c732aa" + "d23bfe38-f633-44ba-a89b-04cdfa47f284" ], "x-ms-correlation-request-id": [ - "bccaf17d-d3a0-4f0b-b798-6f2a45c732aa" + "d23bfe38-f633-44ba-a89b-04cdfa47f284" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204829Z:bccaf17d-d3a0-4f0b-b798-6f2a45c732aa" + "WESTUS2:20200916T232456Z:d23bfe38-f633-44ba-a89b-04cdfa47f284" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2868,10 +2925,10 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:48:29 GMT" + "Wed, 16 Sep 2020 23:24:56 GMT" ], "Content-Length": [ - "1455" + "1460" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2880,25 +2937,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/IotHubs/ps526\",\r\n \"name\": \"ps526\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3998\",\r\n \"etag\": \"AAAAAA3CuEE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps526.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps526\",\r\n \"endpoint\": \"sb://iothub-ns-ps526-3465170-d0367da16c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/IotHubs/ps6832\",\r\n \"name\": \"ps6832\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9910\",\r\n \"etag\": \"AAAAAiHRWpQ=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6832.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6832\",\r\n \"endpoint\": \"sb://iothub-ns-ps6832-4636796-5f325ebd6f.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/IotHubs/ps526/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczUyNi9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/IotHubs/ps6832/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY4MzIvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aa6140da-9d29-40a7-8710-2d4c69b7e94d" + "41df874e-3e06-4245-8aac-ca9018da788c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -2916,13 +2973,13 @@ "1199" ], "x-ms-request-id": [ - "abfb5673-cda9-4010-94d7-687a23c24dd5" + "aa4c8fd1-f702-4061-b4be-c1f73c17208b" ], "x-ms-correlation-request-id": [ - "abfb5673-cda9-4010-94d7-687a23c24dd5" + "aa4c8fd1-f702-4061-b4be-c1f73c17208b" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204755Z:abfb5673-cda9-4010-94d7-687a23c24dd5" + "WESTUS2:20200916T232422Z:aa4c8fd1-f702-4061-b4be-c1f73c17208b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2931,7 +2988,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:47:55 GMT" + "Wed, 16 Sep 2020 23:24:21 GMT" ], "Content-Length": [ "905" @@ -2943,25 +3000,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"UC9LghRCCIFtEIm9S1U2dO7UZwqIuSBC2GXhTtXQI5Q=\",\r\n \"secondaryKey\": \"l03LsgKvrtq6JX5TB5uB7EKY1o7eR5R+qOqHFlymaOc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"RgXXh5EelZoz8wj74IPYJmLCkbY6tdTUfIwra1rAWK0=\",\r\n \"secondaryKey\": \"q1qFi0eIDFdykfjp5jLuwrOtFCqj1TP3fenYMOVNYxY=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"jj9oBLuDS2FBa7Ud5BjP8hv9I0fFA7is7hXwSrcpv88=\",\r\n \"secondaryKey\": \"UETsdzogM1Y7Bln0xhpEb0LbcJYFnyh12fqUtPHELkQ=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"8iebVDW2dtKTfRq4DCRx2X8yQoiU6h8VTa4feLWkJqY=\",\r\n \"secondaryKey\": \"5Il5mp5OO5jsE4uhNHiPSHLWCbWsG4LRRAa8uGHP2jo=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"TGjBR1apVM+ZdAGeIBKa/ANxsHBdQ+/SsRCikcviN3I=\",\r\n \"secondaryKey\": \"oM6sHEXCmV7SzWvVmXuGMTtjPDxTdb4z8BqmEPsvonA=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"VvJRemXM3+573ohmIT0furfy3wvjbYhuCV6VcH7yFcQ=\",\r\n \"secondaryKey\": \"ixo1k82kUpNPrqlzQSjMFH1g5z2p73nbjBysERCokgc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"WS6E/tIZCxmcHRXWmePpBD2hLR+CB+n+A6WahnXK2T4=\",\r\n \"secondaryKey\": \"Ge/8dFkdfhHWqFX24mPGOwjyIcWfr8EKXZ3wENLOHAw=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"VsEKI0CFVXuvX5hU3hpboSpU6Yk+5SQM8jWmD5BVPuA=\",\r\n \"secondaryKey\": \"2nCPniy99i6WcaUeevTeQQzQdUHUDfMp1ZTfvZ9LWkQ=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"nnymPrGh7gTuRX0bIjHMjx0WBCzdbdt/beQoyRF7YNg=\",\r\n \"secondaryKey\": \"kfXkv4e56jtGAhq4rnVJMjaW2Ir8qOs05lJmi1xieLA=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"yzofbl6PS8TiL1kJy1y+Tl1aM0orieJzb6mMnZY0dPU=\",\r\n \"secondaryKey\": \"2XIKQuiobLweSRh4ZNnvpt5kS5p62kG0uLb2boED56o=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/IotHubs/ps526/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczUyNi9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/IotHubs/ps6832/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY4MzIvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a0a05e18-6836-40b8-b814-da1b5eba88f0" + "40fa9dd7-1df3-405e-b462-1d1e13d3ae19" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -2979,13 +3036,13 @@ "1198" ], "x-ms-request-id": [ - "26cbe7d8-4b6a-4ccf-a088-eb36c250bd14" + "5301f970-f775-4e2f-b86e-6d26a199cc32" ], "x-ms-correlation-request-id": [ - "26cbe7d8-4b6a-4ccf-a088-eb36c250bd14" + "5301f970-f775-4e2f-b86e-6d26a199cc32" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204830Z:26cbe7d8-4b6a-4ccf-a088-eb36c250bd14" + "WESTUS2:20200916T232456Z:5301f970-f775-4e2f-b86e-6d26a199cc32" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2994,7 +3051,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:48:29 GMT" + "Wed, 16 Sep 2020 23:24:56 GMT" ], "Content-Length": [ "1078" @@ -3006,19 +3063,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"UC9LghRCCIFtEIm9S1U2dO7UZwqIuSBC2GXhTtXQI5Q=\",\r\n \"secondaryKey\": \"l03LsgKvrtq6JX5TB5uB7EKY1o7eR5R+qOqHFlymaOc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"RgXXh5EelZoz8wj74IPYJmLCkbY6tdTUfIwra1rAWK0=\",\r\n \"secondaryKey\": \"q1qFi0eIDFdykfjp5jLuwrOtFCqj1TP3fenYMOVNYxY=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"jj9oBLuDS2FBa7Ud5BjP8hv9I0fFA7is7hXwSrcpv88=\",\r\n \"secondaryKey\": \"UETsdzogM1Y7Bln0xhpEb0LbcJYFnyh12fqUtPHELkQ=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"8iebVDW2dtKTfRq4DCRx2X8yQoiU6h8VTa4feLWkJqY=\",\r\n \"secondaryKey\": \"5Il5mp5OO5jsE4uhNHiPSHLWCbWsG4LRRAa8uGHP2jo=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"TGjBR1apVM+ZdAGeIBKa/ANxsHBdQ+/SsRCikcviN3I=\",\r\n \"secondaryKey\": \"oM6sHEXCmV7SzWvVmXuGMTtjPDxTdb4z8BqmEPsvonA=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"ServiceKey\",\r\n \"primaryKey\": \"6l1bPLsrIVXuBJR8nHTpOM8lSL/Cm9Q4iOdsqdz7LAQ=\",\r\n \"secondaryKey\": \"vJlAoK5+4DWUOHT9GPZuhmiWKlC9J65Apl/QAvlTbW4=\",\r\n \"rights\": \"ServiceConnect\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"VvJRemXM3+573ohmIT0furfy3wvjbYhuCV6VcH7yFcQ=\",\r\n \"secondaryKey\": \"ixo1k82kUpNPrqlzQSjMFH1g5z2p73nbjBysERCokgc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"WS6E/tIZCxmcHRXWmePpBD2hLR+CB+n+A6WahnXK2T4=\",\r\n \"secondaryKey\": \"Ge/8dFkdfhHWqFX24mPGOwjyIcWfr8EKXZ3wENLOHAw=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"VsEKI0CFVXuvX5hU3hpboSpU6Yk+5SQM8jWmD5BVPuA=\",\r\n \"secondaryKey\": \"2nCPniy99i6WcaUeevTeQQzQdUHUDfMp1ZTfvZ9LWkQ=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"nnymPrGh7gTuRX0bIjHMjx0WBCzdbdt/beQoyRF7YNg=\",\r\n \"secondaryKey\": \"kfXkv4e56jtGAhq4rnVJMjaW2Ir8qOs05lJmi1xieLA=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"yzofbl6PS8TiL1kJy1y+Tl1aM0orieJzb6mMnZY0dPU=\",\r\n \"secondaryKey\": \"2XIKQuiobLweSRh4ZNnvpt5kS5p62kG0uLb2boED56o=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"ServiceKey\",\r\n \"primaryKey\": \"4Q0f2Sdjhpi5w9X7ZdQUQBQqljBgIP4DuodD8eN3vNA=\",\r\n \"secondaryKey\": \"7tuQb+1A5qxHddUGS+zENdC4F5q4ucs67jazDkjliTg=\",\r\n \"rights\": \"ServiceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNGQ4MDdjNGMtNWY1NS00MjE5LWJhZWEtNDJlMmY4Mjc1Mzk4?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkdRNE1EZGpOR010TldZMU5TMDBNakU1TFdKaFpXRXROREpsTW1ZNE1qYzFNems0P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNmViMzZlYTktMGFjYi00NjdmLWJmY2YtYWE0ZDBjODAyODFl?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTm1WaU16WmxZVGt0TUdGallpMDBOamRtTFdKbVkyWXRZV0UwWkRCak9EQXlPREZsP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -3033,16 +3090,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11989" ], "x-ms-request-id": [ - "84e828ab-2b8e-4011-b68f-c4ab4e23036b" + "e8ba2ea6-2ead-4b11-84e8-247008ed27eb" ], "x-ms-correlation-request-id": [ - "84e828ab-2b8e-4011-b68f-c4ab4e23036b" + "e8ba2ea6-2ead-4b11-84e8-247008ed27eb" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204829Z:84e828ab-2b8e-4011-b68f-c4ab4e23036b" + "WESTUS2:20200916T232456Z:e8ba2ea6-2ead-4b11-84e8-247008ed27eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3051,7 +3108,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:48:28 GMT" + "Wed, 16 Sep 2020 23:24:56 GMT" ], "Content-Length": [ "22" @@ -3067,21 +3124,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/IotHubs/ps526/IotHubKeys/ServiceKey/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczUyNi9Jb3RIdWJLZXlzL1NlcnZpY2VLZXkvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/IotHubs/ps6832/IotHubKeys/ServiceKey/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY4MzIvSW90SHViS2V5cy9TZXJ2aWNlS2V5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldw==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d66f5904-3f23-4fa8-8d1b-b49f40b19e6f" + "ebfaf651-22f7-41e0-97fd-eb82cd44c9d6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -3099,13 +3156,13 @@ "1197" ], "x-ms-request-id": [ - "2b9bb8e8-4510-4a80-923b-942107191775" + "ac152538-14b6-459f-9397-d876124c5e1e" ], "x-ms-correlation-request-id": [ - "2b9bb8e8-4510-4a80-923b-942107191775" + "ac152538-14b6-459f-9397-d876124c5e1e" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204830Z:2b9bb8e8-4510-4a80-923b-942107191775" + "WESTUS2:20200916T232457Z:ac152538-14b6-459f-9397-d876124c5e1e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3114,7 +3171,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:48:29 GMT" + "Wed, 16 Sep 2020 23:24:56 GMT" ], "Content-Length": [ "172" @@ -3126,19 +3183,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"keyName\": \"ServiceKey\",\r\n \"primaryKey\": \"6l1bPLsrIVXuBJR8nHTpOM8lSL/Cm9Q4iOdsqdz7LAQ=\",\r\n \"secondaryKey\": \"vJlAoK5+4DWUOHT9GPZuhmiWKlC9J65Apl/QAvlTbW4=\",\r\n \"rights\": \"ServiceConnect\"\r\n}", + "ResponseBody": "{\r\n \"keyName\": \"ServiceKey\",\r\n \"primaryKey\": \"4Q0f2Sdjhpi5w9X7ZdQUQBQqljBgIP4DuodD8eN3vNA=\",\r\n \"secondaryKey\": \"7tuQb+1A5qxHddUGS+zENdC4F5q4ucs67jazDkjliTg=\",\r\n \"rights\": \"ServiceConnect\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819/operationResults/b3NfaWRfMWM4MWRlNDktMGJmYS00MTI2LWI2YjAtN2VkYTEwNDRmZGEx?api-version=2017-11-15&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5L29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZNV000TVdSbE5Ea3RNR0ptWVMwME1USTJMV0kyWWpBdE4yVmtZVEV3TkRSbVpHRXg/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304/operationResults/b3NfaWRfZTc3MTQ2MzgtNTcxZi00MTUzLTg3YzMtODg3MGQ4YjYwN2Nk?api-version=2017-11-15&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0L29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZaVGMzTVRRMk16Z3ROVGN4WmkwME1UVXpMVGczWXpNdE9EZzNNR1E0WWpZd04yTms/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -3153,16 +3210,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11990" ], "x-ms-request-id": [ - "6072e4a9-1e6f-41d3-b01d-964685bddaa3" + "c69c3ba5-ab4d-473d-affc-9e2c0ad96aa7" ], "x-ms-correlation-request-id": [ - "6072e4a9-1e6f-41d3-b01d-964685bddaa3" + "c69c3ba5-ab4d-473d-affc-9e2c0ad96aa7" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204902Z:6072e4a9-1e6f-41d3-b01d-964685bddaa3" + "WESTUS2:20200916T232529Z:c69c3ba5-ab4d-473d-affc-9e2c0ad96aa7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3171,7 +3228,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:49:02 GMT" + "Wed, 16 Sep 2020 23:25:29 GMT" ], "Content-Length": [ "22" @@ -3187,21 +3244,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7304ba62-fd7d-4870-a2a8-eda3c4617c36" + "fd7da303-38d3-4a9b-8d09-f81ababd45d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -3219,13 +3276,13 @@ "1199" ], "x-ms-request-id": [ - "70474b38-3412-489b-bddc-064d79d912af" + "c0f5b556-9394-46d4-b6cc-ba274ceec29c" ], "x-ms-correlation-request-id": [ - "70474b38-3412-489b-bddc-064d79d912af" + "c0f5b556-9394-46d4-b6cc-ba274ceec29c" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204903Z:70474b38-3412-489b-bddc-064d79d912af" + "WESTUS2:20200916T232530Z:c0f5b556-9394-46d4-b6cc-ba274ceec29c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3234,7 +3291,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:49:02 GMT" + "Wed, 16 Sep 2020 23:25:30 GMT" ], "Content-Length": [ "229" @@ -3246,25 +3303,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Khq5IGbOD11OIXXS3fFcEmJYDhImFjMBkhyidKIdWY0=\",\r\n \"secondaryKey\": \"WL5yMXzJIgR7i2qb8BWXsfqHgptP5tBLvXlW7B9R9/A=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"lhTooswum6HOgs9TBZMrcORuRobg814arNywc0lEyBc=\",\r\n \"secondaryKey\": \"vtqnBwmfj1adiBTKP1RyX16s8zM6F2mfeElDZmSv3FY=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "88a05a3a-df85-4b8a-8e1a-4ce44959e0a6" + "c2940b4d-1117-4043-ab73-9b1f9621590d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -3282,13 +3339,13 @@ "1198" ], "x-ms-request-id": [ - "b9b8a5ca-7c43-4614-aa7e-cd42e2adb697" + "e7c74a9b-7749-4479-ba7f-348f6e0704e6" ], "x-ms-correlation-request-id": [ - "b9b8a5ca-7c43-4614-aa7e-cd42e2adb697" + "e7c74a9b-7749-4479-ba7f-348f6e0704e6" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204903Z:b9b8a5ca-7c43-4614-aa7e-cd42e2adb697" + "WESTUS2:20200916T232530Z:e7c74a9b-7749-4479-ba7f-348f6e0704e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3297,7 +3354,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:49:03 GMT" + "Wed, 16 Sep 2020 23:25:30 GMT" ], "Content-Length": [ "229" @@ -3309,25 +3366,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Khq5IGbOD11OIXXS3fFcEmJYDhImFjMBkhyidKIdWY0=\",\r\n \"secondaryKey\": \"WL5yMXzJIgR7i2qb8BWXsfqHgptP5tBLvXlW7B9R9/A=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"lhTooswum6HOgs9TBZMrcORuRobg814arNywc0lEyBc=\",\r\n \"secondaryKey\": \"vtqnBwmfj1adiBTKP1RyX16s8zM6F2mfeElDZmSv3FY=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "79ecb2b1-7e0a-4a22-a726-815820047546" + "c10dab96-ab5f-49a9-b97b-8ab41b36d6ae" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -3345,13 +3402,13 @@ "1197" ], "x-ms-request-id": [ - "b832a380-0cbe-4ae2-ad99-03dc3b6246f2" + "10accaad-276f-49c7-8183-4035b991c451" ], "x-ms-correlation-request-id": [ - "b832a380-0cbe-4ae2-ad99-03dc3b6246f2" + "10accaad-276f-49c7-8183-4035b991c451" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204903Z:b832a380-0cbe-4ae2-ad99-03dc3b6246f2" + "WESTUS2:20200916T232530Z:10accaad-276f-49c7-8183-4035b991c451" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3360,7 +3417,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:49:03 GMT" + "Wed, 16 Sep 2020 23:25:30 GMT" ], "Content-Length": [ "229" @@ -3372,25 +3429,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Khq5IGbOD11OIXXS3fFcEmJYDhImFjMBkhyidKIdWY0=\",\r\n \"secondaryKey\": \"WL5yMXzJIgR7i2qb8BWXsfqHgptP5tBLvXlW7B9R9/A=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"lhTooswum6HOgs9TBZMrcORuRobg814arNywc0lEyBc=\",\r\n \"secondaryKey\": \"vtqnBwmfj1adiBTKP1RyX16s8zM6F2mfeElDZmSv3FY=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4026b36f-f78f-4c91-9ac7-d27e1d93f65f" + "366eb304-f859-4bf8-89a7-71fa63e4a760" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -3408,13 +3465,13 @@ "1196" ], "x-ms-request-id": [ - "74790546-7b61-4f09-9736-f9625bd000fd" + "c77e11b7-7bff-4920-8b80-5c7467007e28" ], "x-ms-correlation-request-id": [ - "74790546-7b61-4f09-9736-f9625bd000fd" + "c77e11b7-7bff-4920-8b80-5c7467007e28" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204904Z:74790546-7b61-4f09-9736-f9625bd000fd" + "WESTUS2:20200916T232530Z:c77e11b7-7bff-4920-8b80-5c7467007e28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3423,7 +3480,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:49:03 GMT" + "Wed, 16 Sep 2020 23:25:30 GMT" ], "Content-Length": [ "229" @@ -3435,25 +3492,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Khq5IGbOD11OIXXS3fFcEmJYDhImFjMBkhyidKIdWY0=\",\r\n \"secondaryKey\": \"WL5yMXzJIgR7i2qb8BWXsfqHgptP5tBLvXlW7B9R9/A=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"lhTooswum6HOgs9TBZMrcORuRobg814arNywc0lEyBc=\",\r\n \"secondaryKey\": \"vtqnBwmfj1adiBTKP1RyX16s8zM6F2mfeElDZmSv3FY=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cf46962c-0906-4a21-9f51-5b20d691f4b0" + "cd213488-fca9-4b7b-92f3-aa46b6deaf51" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -3471,13 +3528,13 @@ "1195" ], "x-ms-request-id": [ - "affd6426-2ebe-48f5-beef-425e18b8122b" + "c6db9a5d-a140-47dd-9a8d-aa526019a559" ], "x-ms-correlation-request-id": [ - "affd6426-2ebe-48f5-beef-425e18b8122b" + "c6db9a5d-a140-47dd-9a8d-aa526019a559" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204904Z:affd6426-2ebe-48f5-beef-425e18b8122b" + "WESTUS2:20200916T232531Z:c6db9a5d-a140-47dd-9a8d-aa526019a559" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3486,7 +3543,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:49:04 GMT" + "Wed, 16 Sep 2020 23:25:31 GMT" ], "Content-Length": [ "229" @@ -3498,25 +3555,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Khq5IGbOD11OIXXS3fFcEmJYDhImFjMBkhyidKIdWY0=\",\r\n \"secondaryKey\": \"WL5yMXzJIgR7i2qb8BWXsfqHgptP5tBLvXlW7B9R9/A=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"lhTooswum6HOgs9TBZMrcORuRobg814arNywc0lEyBc=\",\r\n \"secondaryKey\": \"vtqnBwmfj1adiBTKP1RyX16s8zM6F2mfeElDZmSv3FY=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bb2379e3-3336-46e5-8df7-19552ea2cc5a" + "32cd8c61-e0c5-4d56-8947-ae2eb4a6c735" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -3534,13 +3591,13 @@ "1194" ], "x-ms-request-id": [ - "641190d7-19b0-4423-bfad-679782c4ecba" + "0856ee23-0468-4c8a-9542-e2926327f349" ], "x-ms-correlation-request-id": [ - "641190d7-19b0-4423-bfad-679782c4ecba" + "0856ee23-0468-4c8a-9542-e2926327f349" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204904Z:641190d7-19b0-4423-bfad-679782c4ecba" + "WESTUS2:20200916T232531Z:0856ee23-0468-4c8a-9542-e2926327f349" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3549,7 +3606,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:49:04 GMT" + "Wed, 16 Sep 2020 23:25:31 GMT" ], "Content-Length": [ "229" @@ -3561,25 +3618,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Khq5IGbOD11OIXXS3fFcEmJYDhImFjMBkhyidKIdWY0=\",\r\n \"secondaryKey\": \"WL5yMXzJIgR7i2qb8BWXsfqHgptP5tBLvXlW7B9R9/A=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"lhTooswum6HOgs9TBZMrcORuRobg814arNywc0lEyBc=\",\r\n \"secondaryKey\": \"vtqnBwmfj1adiBTKP1RyX16s8zM6F2mfeElDZmSv3FY=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "000ecacb-03de-403a-9db4-d9e4fbe03b15" + "33b71d56-d451-46c6-8985-8e65e41f5d39" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -3597,13 +3654,13 @@ "1193" ], "x-ms-request-id": [ - "2b84ce4f-0e5a-4b7b-8a6a-cc4ec0c3a2f3" + "f6013586-188a-4512-b8aa-22cbc1015188" ], "x-ms-correlation-request-id": [ - "2b84ce4f-0e5a-4b7b-8a6a-cc4ec0c3a2f3" + "f6013586-188a-4512-b8aa-22cbc1015188" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204905Z:2b84ce4f-0e5a-4b7b-8a6a-cc4ec0c3a2f3" + "WESTUS2:20200916T232531Z:f6013586-188a-4512-b8aa-22cbc1015188" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3612,7 +3669,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:49:04 GMT" + "Wed, 16 Sep 2020 23:25:31 GMT" ], "Content-Length": [ "229" @@ -3624,25 +3681,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Khq5IGbOD11OIXXS3fFcEmJYDhImFjMBkhyidKIdWY0=\",\r\n \"secondaryKey\": \"WL5yMXzJIgR7i2qb8BWXsfqHgptP5tBLvXlW7B9R9/A=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"lhTooswum6HOgs9TBZMrcORuRobg814arNywc0lEyBc=\",\r\n \"secondaryKey\": \"vtqnBwmfj1adiBTKP1RyX16s8zM6F2mfeElDZmSv3FY=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1df16aac-6a71-4853-affa-201ea5eee5f7" + "567ed635-06c1-4a81-ac85-487ff4065b31" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -3660,13 +3717,13 @@ "1192" ], "x-ms-request-id": [ - "f80b2bc0-d525-4d5e-abba-677d393d9dc5" + "575a6fae-c92c-4032-b2ad-ec999a9f8aab" ], "x-ms-correlation-request-id": [ - "f80b2bc0-d525-4d5e-abba-677d393d9dc5" + "575a6fae-c92c-4032-b2ad-ec999a9f8aab" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204905Z:f80b2bc0-d525-4d5e-abba-677d393d9dc5" + "WESTUS2:20200916T232532Z:575a6fae-c92c-4032-b2ad-ec999a9f8aab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3675,7 +3732,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:49:04 GMT" + "Wed, 16 Sep 2020 23:25:31 GMT" ], "Content-Length": [ "229" @@ -3687,25 +3744,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Khq5IGbOD11OIXXS3fFcEmJYDhImFjMBkhyidKIdWY0=\",\r\n \"secondaryKey\": \"WL5yMXzJIgR7i2qb8BWXsfqHgptP5tBLvXlW7B9R9/A=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"lhTooswum6HOgs9TBZMrcORuRobg814arNywc0lEyBc=\",\r\n \"secondaryKey\": \"vtqnBwmfj1adiBTKP1RyX16s8zM6F2mfeElDZmSv3FY=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "14f7a733-d3c2-4afc-a5b1-9477444922eb" + "4c458a69-5fee-4abd-aded-acd259123320" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -3723,13 +3780,13 @@ "1191" ], "x-ms-request-id": [ - "c802ad7c-d6ee-41a6-9b65-ab1b5e33c011" + "a0ade909-7195-4467-9dda-bc93d4202e13" ], "x-ms-correlation-request-id": [ - "c802ad7c-d6ee-41a6-9b65-ab1b5e33c011" + "a0ade909-7195-4467-9dda-bc93d4202e13" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204905Z:c802ad7c-d6ee-41a6-9b65-ab1b5e33c011" + "WESTUS2:20200916T232532Z:a0ade909-7195-4467-9dda-bc93d4202e13" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3738,7 +3795,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:49:05 GMT" + "Wed, 16 Sep 2020 23:25:32 GMT" ], "Content-Length": [ "229" @@ -3750,25 +3807,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Khq5IGbOD11OIXXS3fFcEmJYDhImFjMBkhyidKIdWY0=\",\r\n \"secondaryKey\": \"WL5yMXzJIgR7i2qb8BWXsfqHgptP5tBLvXlW7B9R9/A=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"lhTooswum6HOgs9TBZMrcORuRobg814arNywc0lEyBc=\",\r\n \"secondaryKey\": \"vtqnBwmfj1adiBTKP1RyX16s8zM6F2mfeElDZmSv3FY=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2c4ebfd0-842c-4d53-8ab1-85915d572786" + "d2de4f76-4ac6-45de-9917-3738728b29e7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -3786,13 +3843,13 @@ "1190" ], "x-ms-request-id": [ - "9f8c4995-4562-4aa9-8c93-714cc4310fa2" + "09af6fd0-31e5-4b38-8023-b7f5fafdd048" ], "x-ms-correlation-request-id": [ - "9f8c4995-4562-4aa9-8c93-714cc4310fa2" + "09af6fd0-31e5-4b38-8023-b7f5fafdd048" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204905Z:9f8c4995-4562-4aa9-8c93-714cc4310fa2" + "WESTUS2:20200916T232532Z:09af6fd0-31e5-4b38-8023-b7f5fafdd048" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3801,7 +3858,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:49:05 GMT" + "Wed, 16 Sep 2020 23:25:32 GMT" ], "Content-Length": [ "229" @@ -3813,25 +3870,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Khq5IGbOD11OIXXS3fFcEmJYDhImFjMBkhyidKIdWY0=\",\r\n \"secondaryKey\": \"WL5yMXzJIgR7i2qb8BWXsfqHgptP5tBLvXlW7B9R9/A=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"lhTooswum6HOgs9TBZMrcORuRobg814arNywc0lEyBc=\",\r\n \"secondaryKey\": \"vtqnBwmfj1adiBTKP1RyX16s8zM6F2mfeElDZmSv3FY=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c0f2b9e0-540d-4fd2-b603-f2e387158f7d" + "5d0fb0b1-7293-4522-b64e-471d25c5bdba" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -3849,13 +3906,13 @@ "1189" ], "x-ms-request-id": [ - "2728694c-b071-4237-97b7-b935012dd4e4" + "23279f6d-f595-48f1-b0cd-0bebeadd0171" ], "x-ms-correlation-request-id": [ - "2728694c-b071-4237-97b7-b935012dd4e4" + "23279f6d-f595-48f1-b0cd-0bebeadd0171" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204906Z:2728694c-b071-4237-97b7-b935012dd4e4" + "WESTUS2:20200916T232532Z:23279f6d-f595-48f1-b0cd-0bebeadd0171" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3864,7 +3921,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:49:05 GMT" + "Wed, 16 Sep 2020 23:25:32 GMT" ], "Content-Length": [ "229" @@ -3876,25 +3933,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Khq5IGbOD11OIXXS3fFcEmJYDhImFjMBkhyidKIdWY0=\",\r\n \"secondaryKey\": \"WL5yMXzJIgR7i2qb8BWXsfqHgptP5tBLvXlW7B9R9/A=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"lhTooswum6HOgs9TBZMrcORuRobg814arNywc0lEyBc=\",\r\n \"secondaryKey\": \"vtqnBwmfj1adiBTKP1RyX16s8zM6F2mfeElDZmSv3FY=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0d5b4d45-49af-4f9a-aee1-a0326f633302" + "91d3cda3-5400-4eb5-8349-ae19d3653a75" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -3912,13 +3969,13 @@ "1188" ], "x-ms-request-id": [ - "250df351-98de-4919-b036-dbe51af679b9" + "12b0f327-655b-4d5e-8363-7a649d34b227" ], "x-ms-correlation-request-id": [ - "250df351-98de-4919-b036-dbe51af679b9" + "12b0f327-655b-4d5e-8363-7a649d34b227" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204906Z:250df351-98de-4919-b036-dbe51af679b9" + "WESTUS2:20200916T232533Z:12b0f327-655b-4d5e-8363-7a649d34b227" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3927,7 +3984,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:49:06 GMT" + "Wed, 16 Sep 2020 23:25:32 GMT" ], "Content-Length": [ "229" @@ -3939,25 +3996,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Khq5IGbOD11OIXXS3fFcEmJYDhImFjMBkhyidKIdWY0=\",\r\n \"secondaryKey\": \"WL5yMXzJIgR7i2qb8BWXsfqHgptP5tBLvXlW7B9R9/A=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"lhTooswum6HOgs9TBZMrcORuRobg814arNywc0lEyBc=\",\r\n \"secondaryKey\": \"vtqnBwmfj1adiBTKP1RyX16s8zM6F2mfeElDZmSv3FY=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9f1cd49c-cc9e-4be5-af50-d973fa81b0b5" + "33c4d25e-b975-40a4-b3eb-17f90b2b0974" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -3975,13 +4032,13 @@ "1187" ], "x-ms-request-id": [ - "77dd9555-b5f7-4c73-8567-cdb7eb202935" + "e75d2743-3afb-4b98-a311-5fe74fa9e762" ], "x-ms-correlation-request-id": [ - "77dd9555-b5f7-4c73-8567-cdb7eb202935" + "e75d2743-3afb-4b98-a311-5fe74fa9e762" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204906Z:77dd9555-b5f7-4c73-8567-cdb7eb202935" + "WESTUS2:20200916T232533Z:e75d2743-3afb-4b98-a311-5fe74fa9e762" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3990,7 +4047,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:49:06 GMT" + "Wed, 16 Sep 2020 23:25:33 GMT" ], "Content-Length": [ "229" @@ -4002,25 +4059,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Khq5IGbOD11OIXXS3fFcEmJYDhImFjMBkhyidKIdWY0=\",\r\n \"secondaryKey\": \"WL5yMXzJIgR7i2qb8BWXsfqHgptP5tBLvXlW7B9R9/A=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"lhTooswum6HOgs9TBZMrcORuRobg814arNywc0lEyBc=\",\r\n \"secondaryKey\": \"vtqnBwmfj1adiBTKP1RyX16s8zM6F2mfeElDZmSv3FY=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ef239796-5a41-432e-892b-0b505bc0e8df" + "d54e77f1-cefa-4245-a80b-02da7cc28366" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -4038,13 +4095,13 @@ "1186" ], "x-ms-request-id": [ - "ea2c95ad-5180-4e90-9206-d34bc9a7a76f" + "7879e36c-7a1d-4e75-88ce-d8797082fe78" ], "x-ms-correlation-request-id": [ - "ea2c95ad-5180-4e90-9206-d34bc9a7a76f" + "7879e36c-7a1d-4e75-88ce-d8797082fe78" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204907Z:ea2c95ad-5180-4e90-9206-d34bc9a7a76f" + "WESTUS2:20200916T232534Z:7879e36c-7a1d-4e75-88ce-d8797082fe78" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4053,7 +4110,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:49:07 GMT" + "Wed, 16 Sep 2020 23:25:33 GMT" ], "Content-Length": [ "229" @@ -4065,25 +4122,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Khq5IGbOD11OIXXS3fFcEmJYDhImFjMBkhyidKIdWY0=\",\r\n \"secondaryKey\": \"WL5yMXzJIgR7i2qb8BWXsfqHgptP5tBLvXlW7B9R9/A=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"lhTooswum6HOgs9TBZMrcORuRobg814arNywc0lEyBc=\",\r\n \"secondaryKey\": \"vtqnBwmfj1adiBTKP1RyX16s8zM6F2mfeElDZmSv3FY=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a4ac5bf8-c33e-46e3-ae68-78ea45f88841" + "e043205d-b6c8-418f-8e87-db5d703e3a8e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -4101,13 +4158,13 @@ "1185" ], "x-ms-request-id": [ - "114fa120-0958-439e-9f43-42fc4395b214" + "56d69049-7bdc-4041-aa75-5395ed5d23c3" ], "x-ms-correlation-request-id": [ - "114fa120-0958-439e-9f43-42fc4395b214" + "56d69049-7bdc-4041-aa75-5395ed5d23c3" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204908Z:114fa120-0958-439e-9f43-42fc4395b214" + "WESTUS2:20200916T232534Z:56d69049-7bdc-4041-aa75-5395ed5d23c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4116,7 +4173,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:49:07 GMT" + "Wed, 16 Sep 2020 23:25:34 GMT" ], "Content-Length": [ "229" @@ -4128,25 +4185,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Khq5IGbOD11OIXXS3fFcEmJYDhImFjMBkhyidKIdWY0=\",\r\n \"secondaryKey\": \"WL5yMXzJIgR7i2qb8BWXsfqHgptP5tBLvXlW7B9R9/A=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"lhTooswum6HOgs9TBZMrcORuRobg814arNywc0lEyBc=\",\r\n \"secondaryKey\": \"vtqnBwmfj1adiBTKP1RyX16s8zM6F2mfeElDZmSv3FY=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cede08c2-a677-4df4-865c-bff1ec160486" + "37f4adfb-72f6-4265-90a0-179e4df8738b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -4164,13 +4221,13 @@ "1184" ], "x-ms-request-id": [ - "cad441bf-6279-465d-b979-2a9bcce614d4" + "64fac2db-5368-47f4-be59-25df553e6469" ], "x-ms-correlation-request-id": [ - "cad441bf-6279-465d-b979-2a9bcce614d4" + "64fac2db-5368-47f4-be59-25df553e6469" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204908Z:cad441bf-6279-465d-b979-2a9bcce614d4" + "WESTUS2:20200916T232535Z:64fac2db-5368-47f4-be59-25df553e6469" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4179,7 +4236,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:49:08 GMT" + "Wed, 16 Sep 2020 23:25:35 GMT" ], "Content-Length": [ "229" @@ -4191,25 +4248,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Khq5IGbOD11OIXXS3fFcEmJYDhImFjMBkhyidKIdWY0=\",\r\n \"secondaryKey\": \"WL5yMXzJIgR7i2qb8BWXsfqHgptP5tBLvXlW7B9R9/A=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"lhTooswum6HOgs9TBZMrcORuRobg814arNywc0lEyBc=\",\r\n \"secondaryKey\": \"vtqnBwmfj1adiBTKP1RyX16s8zM6F2mfeElDZmSv3FY=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4907192e-c8e7-41e0-b306-fcc7c2fcbac0" + "40700dd1-2d9b-44c9-b152-6d85a2222abe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -4227,13 +4284,13 @@ "1183" ], "x-ms-request-id": [ - "120cfbe7-57c0-4213-95cb-36c9e27f1c01" + "f5ef5287-f147-4b7f-9d18-d1903d53ba4e" ], "x-ms-correlation-request-id": [ - "120cfbe7-57c0-4213-95cb-36c9e27f1c01" + "f5ef5287-f147-4b7f-9d18-d1903d53ba4e" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204909Z:120cfbe7-57c0-4213-95cb-36c9e27f1c01" + "WESTUS2:20200916T232535Z:f5ef5287-f147-4b7f-9d18-d1903d53ba4e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4242,7 +4299,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:49:08 GMT" + "Wed, 16 Sep 2020 23:25:35 GMT" ], "Content-Length": [ "229" @@ -4254,25 +4311,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Khq5IGbOD11OIXXS3fFcEmJYDhImFjMBkhyidKIdWY0=\",\r\n \"secondaryKey\": \"WL5yMXzJIgR7i2qb8BWXsfqHgptP5tBLvXlW7B9R9/A=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"lhTooswum6HOgs9TBZMrcORuRobg814arNywc0lEyBc=\",\r\n \"secondaryKey\": \"vtqnBwmfj1adiBTKP1RyX16s8zM6F2mfeElDZmSv3FY=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7c0a6f71-ba64-467c-87a3-d046da13526f" + "f8d1f494-6016-4001-bb70-f72c4b68ffa8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -4290,13 +4347,13 @@ "1182" ], "x-ms-request-id": [ - "e61069ff-2732-4cab-98f9-c1f094c890c9" + "6322f83d-997a-4ebf-9f2c-7d4c6d33d904" ], "x-ms-correlation-request-id": [ - "e61069ff-2732-4cab-98f9-c1f094c890c9" + "6322f83d-997a-4ebf-9f2c-7d4c6d33d904" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204909Z:e61069ff-2732-4cab-98f9-c1f094c890c9" + "WESTUS2:20200916T232536Z:6322f83d-997a-4ebf-9f2c-7d4c6d33d904" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4305,7 +4362,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:49:09 GMT" + "Wed, 16 Sep 2020 23:25:35 GMT" ], "Content-Length": [ "229" @@ -4317,25 +4374,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Khq5IGbOD11OIXXS3fFcEmJYDhImFjMBkhyidKIdWY0=\",\r\n \"secondaryKey\": \"WL5yMXzJIgR7i2qb8BWXsfqHgptP5tBLvXlW7B9R9/A=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"lhTooswum6HOgs9TBZMrcORuRobg814arNywc0lEyBc=\",\r\n \"secondaryKey\": \"vtqnBwmfj1adiBTKP1RyX16s8zM6F2mfeElDZmSv3FY=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7656c8cc-00f3-4ad0-a04b-b54c55039bed" + "1939efe6-a66e-4912-9a56-da7c7a1592b4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -4353,13 +4410,13 @@ "1181" ], "x-ms-request-id": [ - "e18b899e-8388-4655-b1b7-b9e24c692c01" + "da5ebd3f-51c5-4b23-aef5-5e362473771e" ], "x-ms-correlation-request-id": [ - "e18b899e-8388-4655-b1b7-b9e24c692c01" + "da5ebd3f-51c5-4b23-aef5-5e362473771e" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204910Z:e18b899e-8388-4655-b1b7-b9e24c692c01" + "WESTUS2:20200916T232536Z:da5ebd3f-51c5-4b23-aef5-5e362473771e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4368,7 +4425,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:49:09 GMT" + "Wed, 16 Sep 2020 23:25:36 GMT" ], "Content-Length": [ "229" @@ -4380,25 +4437,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Khq5IGbOD11OIXXS3fFcEmJYDhImFjMBkhyidKIdWY0=\",\r\n \"secondaryKey\": \"WL5yMXzJIgR7i2qb8BWXsfqHgptP5tBLvXlW7B9R9/A=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"lhTooswum6HOgs9TBZMrcORuRobg814arNywc0lEyBc=\",\r\n \"secondaryKey\": \"vtqnBwmfj1adiBTKP1RyX16s8zM6F2mfeElDZmSv3FY=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b4f0313-e15f-4c65-b0ab-c6aaaea184a4" + "37d6d5b2-e14c-4ba6-9bb6-859f8bdded06" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -4416,13 +4473,13 @@ "1180" ], "x-ms-request-id": [ - "2d84c966-bc09-4818-b2f4-e7a3af595662" + "8b64f54c-236d-4c21-a369-4f2bab2e40e6" ], "x-ms-correlation-request-id": [ - "2d84c966-bc09-4818-b2f4-e7a3af595662" + "8b64f54c-236d-4c21-a369-4f2bab2e40e6" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204910Z:2d84c966-bc09-4818-b2f4-e7a3af595662" + "WESTUS2:20200916T232537Z:8b64f54c-236d-4c21-a369-4f2bab2e40e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4431,7 +4488,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:49:10 GMT" + "Wed, 16 Sep 2020 23:25:36 GMT" ], "Content-Length": [ "229" @@ -4443,25 +4500,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Khq5IGbOD11OIXXS3fFcEmJYDhImFjMBkhyidKIdWY0=\",\r\n \"secondaryKey\": \"WL5yMXzJIgR7i2qb8BWXsfqHgptP5tBLvXlW7B9R9/A=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"lhTooswum6HOgs9TBZMrcORuRobg814arNywc0lEyBc=\",\r\n \"secondaryKey\": \"vtqnBwmfj1adiBTKP1RyX16s8zM6F2mfeElDZmSv3FY=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7ac55eb1-64dc-42d9-a691-a4f6ac0e7a0c" + "fdd115ce-47ea-459a-b174-a0bc6c8a05e7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -4479,13 +4536,13 @@ "1179" ], "x-ms-request-id": [ - "5efdfdf6-21b7-430d-8d29-981151b990b3" + "5d92c5ea-223d-4b68-9154-5b8fe11b5683" ], "x-ms-correlation-request-id": [ - "5efdfdf6-21b7-430d-8d29-981151b990b3" + "5d92c5ea-223d-4b68-9154-5b8fe11b5683" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204911Z:5efdfdf6-21b7-430d-8d29-981151b990b3" + "WESTUS2:20200916T232537Z:5d92c5ea-223d-4b68-9154-5b8fe11b5683" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4494,7 +4551,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:49:10 GMT" + "Wed, 16 Sep 2020 23:25:37 GMT" ], "Content-Length": [ "229" @@ -4506,25 +4563,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Khq5IGbOD11OIXXS3fFcEmJYDhImFjMBkhyidKIdWY0=\",\r\n \"secondaryKey\": \"WL5yMXzJIgR7i2qb8BWXsfqHgptP5tBLvXlW7B9R9/A=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"lhTooswum6HOgs9TBZMrcORuRobg814arNywc0lEyBc=\",\r\n \"secondaryKey\": \"vtqnBwmfj1adiBTKP1RyX16s8zM6F2mfeElDZmSv3FY=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2b8f9f48-e5bf-43c7-8870-7c760def28eb" + "e11cb43e-e6c0-46a9-a5c6-f03b8cc7be41" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -4542,13 +4599,13 @@ "1178" ], "x-ms-request-id": [ - "58aa67f5-2a03-4d2a-ac77-bd48eaec53cf" + "18db4a2a-6919-4f22-9303-e3638a178058" ], "x-ms-correlation-request-id": [ - "58aa67f5-2a03-4d2a-ac77-bd48eaec53cf" + "18db4a2a-6919-4f22-9303-e3638a178058" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204911Z:58aa67f5-2a03-4d2a-ac77-bd48eaec53cf" + "WESTUS2:20200916T232538Z:18db4a2a-6919-4f22-9303-e3638a178058" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4557,7 +4614,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:49:11 GMT" + "Wed, 16 Sep 2020 23:25:37 GMT" ], "Content-Length": [ "229" @@ -4569,19 +4626,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Khq5IGbOD11OIXXS3fFcEmJYDhImFjMBkhyidKIdWY0=\",\r\n \"secondaryKey\": \"WL5yMXzJIgR7i2qb8BWXsfqHgptP5tBLvXlW7B9R9/A=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"lhTooswum6HOgs9TBZMrcORuRobg814arNywc0lEyBc=\",\r\n \"secondaryKey\": \"vtqnBwmfj1adiBTKP1RyX16s8zM6F2mfeElDZmSv3FY=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/provisioningServices/ps7819/operationResults/b3NfaWRfMTJhODY5MzAtMTgwMC00YzQxLWIxMzItZGFjNjdlYmE5OWE1?api-version=2017-11-15&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3ODE5L29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZNVEpoT0RZNU16QXRNVGd3TUMwMFl6UXhMV0l4TXpJdFpHRmpOamRsWW1FNU9XRTE/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/provisioningServices/ps6304/operationResults/b3NfaWRfNDkzOTk5ZGItNjcxMy00MGRlLTkzYWItYWI2Zjg2ZTYyMjU5?api-version=2017-11-15&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2MzA0L29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZORGt6T1RrNVpHSXROamN4TXkwME1HUmxMVGt6WVdJdFlXSTJaamcyWlRZeU1qVTU/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -4596,16 +4653,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11963" ], "x-ms-request-id": [ - "2488a54a-5300-409c-b1ef-8a5c85f08e58" + "15a9a4d1-efbf-4e5a-8633-f8f7ca9a16d2" ], "x-ms-correlation-request-id": [ - "2488a54a-5300-409c-b1ef-8a5c85f08e58" + "15a9a4d1-efbf-4e5a-8633-f8f7ca9a16d2" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204950Z:2488a54a-5300-409c-b1ef-8a5c85f08e58" + "WESTUS2:20200916T232610Z:15a9a4d1-efbf-4e5a-8633-f8f7ca9a16d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4614,7 +4671,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:49:49 GMT" + "Wed, 16 Sep 2020 23:26:10 GMT" ], "Content-Length": [ "22" @@ -4630,21 +4687,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3998/providers/Microsoft.Devices/IotHubs/ps526?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzk5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczUyNj9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9910/providers/Microsoft.Devices/IotHubs/ps6832?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY4MzI/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e1e61f31-a621-46d9-80fc-8f0d41e688bd" + "5482cb1e-6f33-4536-8e65-c57231de1474" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -4656,13 +4713,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNmU5MWI3NzMtOGQ4Ni00NDIyLWFkNDItYTkwYTEwMmJmODMw?api-version=2019-07-01-preview&operationSource=os_ih" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNDA2ZWUxNDQtNmNiNS00N2IzLTkyY2MtODg2MGQ1YWRlNmRj?api-version=2019-07-01-preview&operationSource=os_ih" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNmU5MWI3NzMtOGQ4Ni00NDIyLWFkNDItYTkwYTEwMmJmODMw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNDA2ZWUxNDQtNmNiNS00N2IzLTkyY2MtODg2MGQ1YWRlNmRj?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4671,13 +4728,13 @@ "14999" ], "x-ms-request-id": [ - "e9d27cf8-6da4-4b72-b3e9-fd213f8a4300" + "c5bc7cef-24ef-4117-b818-d0776c2417d3" ], "x-ms-correlation-request-id": [ - "e9d27cf8-6da4-4b72-b3e9-fd213f8a4300" + "c5bc7cef-24ef-4117-b818-d0776c2417d3" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T204951Z:e9d27cf8-6da4-4b72-b3e9-fd213f8a4300" + "WESTUS2:20200916T232612Z:c5bc7cef-24ef-4117-b818-d0776c2417d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4686,7 +4743,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:49:51 GMT" + "Wed, 16 Sep 2020 23:26:11 GMT" ], "Content-Length": [ "4" @@ -4702,15 +4759,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNmU5MWI3NzMtOGQ4Ni00NDIyLWFkNDItYTkwYTEwMmJmODMw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTm1VNU1XSTNOek10T0dRNE5pMDBOREl5TFdGa05ESXRZVGt3WVRFd01tSm1PRE13P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNDA2ZWUxNDQtNmNiNS00N2IzLTkyY2MtODg2MGQ1YWRlNmRj?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkRBMlpXVXhORFF0Tm1OaU5TMDBOMkl6TFRreVkyTXRPRGcyTUdRMVlXUmxObVJqP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -4725,16 +4782,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11987" ], "x-ms-request-id": [ - "9b0d358a-73ce-4984-b733-433f301379c7" + "227b2ea1-a51e-4554-bfc5-12ac50bc4c5c" ], "x-ms-correlation-request-id": [ - "9b0d358a-73ce-4984-b733-433f301379c7" + "227b2ea1-a51e-4554-bfc5-12ac50bc4c5c" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T205006Z:9b0d358a-73ce-4984-b733-433f301379c7" + "WESTUS2:20200916T232627Z:227b2ea1-a51e-4554-bfc5-12ac50bc4c5c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4743,7 +4800,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:50:06 GMT" + "Wed, 16 Sep 2020 23:26:27 GMT" ], "Content-Length": [ "22" @@ -4759,15 +4816,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNmU5MWI3NzMtOGQ4Ni00NDIyLWFkNDItYTkwYTEwMmJmODMw?api-version=2019-07-01-preview&operationSource=os_ih", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTm1VNU1XSTNOek10T0dRNE5pMDBOREl5TFdGa05ESXRZVGt3WVRFd01tSm1PRE13P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWg=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNDA2ZWUxNDQtNmNiNS00N2IzLTkyY2MtODg2MGQ1YWRlNmRj?api-version=2019-07-01-preview&operationSource=os_ih", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkRBMlpXVXhORFF0Tm1OaU5TMDBOMkl6TFRreVkyTXRPRGcyTUdRMVlXUmxObVJqP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWg=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -4779,7 +4836,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNmU5MWI3NzMtOGQ4Ni00NDIyLWFkNDItYTkwYTEwMmJmODMw?api-version=2019-07-01-preview&operationSource=os_ih" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNDA2ZWUxNDQtNmNiNS00N2IzLTkyY2MtODg2MGQ1YWRlNmRj?api-version=2019-07-01-preview&operationSource=os_ih" ], "Retry-After": [ "15" @@ -4788,16 +4845,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11986" ], "x-ms-request-id": [ - "a3769f62-8715-4cad-b911-8d6c0d8d8aac" + "c1dadea0-b114-4ffc-b777-775db590f441" ], "x-ms-correlation-request-id": [ - "a3769f62-8715-4cad-b911-8d6c0d8d8aac" + "c1dadea0-b114-4ffc-b777-775db590f441" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T205007Z:a3769f62-8715-4cad-b911-8d6c0d8d8aac" + "WESTUS2:20200916T232627Z:c1dadea0-b114-4ffc-b777-775db590f441" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4806,7 +4863,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:50:06 GMT" + "Wed, 16 Sep 2020 23:26:27 GMT" ], "Expires": [ "-1" @@ -4819,22 +4876,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourcegroups/ps3998?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlZ3JvdXBzL3BzMzk5OD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourcegroups/ps9910?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlZ3JvdXBzL3BzOTkxMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fc9c4ac3-6d70-49ad-9931-869fdfa4ae25" + "808a65c0-7e6a-41b4-8b7c-753b80f08d46" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -4845,7 +4902,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM5OTgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4854,13 +4911,13 @@ "14999" ], "x-ms-request-id": [ - "eca65ab3-9a39-45f3-b5b9-f3154e47a530" + "72e0f278-758e-415d-a0e7-cfd450beb65b" ], "x-ms-correlation-request-id": [ - "eca65ab3-9a39-45f3-b5b9-f3154e47a530" + "72e0f278-758e-415d-a0e7-cfd450beb65b" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T205008Z:eca65ab3-9a39-45f3-b5b9-f3154e47a530" + "WESTUS2:20200916T232628Z:72e0f278-758e-415d-a0e7-cfd450beb65b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4869,7 +4926,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:50:07 GMT" + "Wed, 16 Sep 2020 23:26:28 GMT" ], "Expires": [ "-1" @@ -4882,16 +4939,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM5OTgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNU9UZ3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNU1UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -4902,22 +4959,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM5OTgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11994" ], "x-ms-request-id": [ - "cb8def87-ceca-4d7b-9ac0-7072bc51a673" + "03c0bb66-a525-4a33-902c-183642b84b0b" ], "x-ms-correlation-request-id": [ - "cb8def87-ceca-4d7b-9ac0-7072bc51a673" + "03c0bb66-a525-4a33-902c-183642b84b0b" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T205023Z:cb8def87-ceca-4d7b-9ac0-7072bc51a673" + "WESTUS2:20200916T232643Z:03c0bb66-a525-4a33-902c-183642b84b0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4926,7 +4983,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:50:23 GMT" + "Wed, 16 Sep 2020 23:26:43 GMT" ], "Expires": [ "-1" @@ -4939,16 +4996,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM5OTgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNU9UZ3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNU1UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -4959,22 +5016,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM5OTgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11993" ], "x-ms-request-id": [ - "707fdf07-5cd9-4a29-a1cf-e4ac5c53475e" + "feeb8061-69ed-433c-81ca-905f0683a7cc" ], "x-ms-correlation-request-id": [ - "707fdf07-5cd9-4a29-a1cf-e4ac5c53475e" + "feeb8061-69ed-433c-81ca-905f0683a7cc" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T205038Z:707fdf07-5cd9-4a29-a1cf-e4ac5c53475e" + "WESTUS2:20200916T232658Z:feeb8061-69ed-433c-81ca-905f0683a7cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4983,7 +5040,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:50:37 GMT" + "Wed, 16 Sep 2020 23:26:58 GMT" ], "Expires": [ "-1" @@ -4996,16 +5053,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM5OTgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNU9UZ3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNU1UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -5016,22 +5073,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM5OTgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11992" ], "x-ms-request-id": [ - "051ee3aa-e916-486c-861c-10673b9ec82c" + "546a5b33-8e57-40ec-b72a-ba6d937d0ba1" ], "x-ms-correlation-request-id": [ - "051ee3aa-e916-486c-861c-10673b9ec82c" + "546a5b33-8e57-40ec-b72a-ba6d937d0ba1" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T205053Z:051ee3aa-e916-486c-861c-10673b9ec82c" + "WESTUS2:20200916T232713Z:546a5b33-8e57-40ec-b72a-ba6d937d0ba1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5040,7 +5097,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:50:53 GMT" + "Wed, 16 Sep 2020 23:27:12 GMT" ], "Expires": [ "-1" @@ -5053,16 +5110,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM5OTgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNU9UZ3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNU1UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -5073,22 +5130,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM5OTgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11991" ], "x-ms-request-id": [ - "f8b1cdb9-32b0-4ad7-be87-fbf1faa9c895" + "0d9c82cf-07b8-48d3-89a7-a5ae2ec4a89b" ], "x-ms-correlation-request-id": [ - "f8b1cdb9-32b0-4ad7-be87-fbf1faa9c895" + "0d9c82cf-07b8-48d3-89a7-a5ae2ec4a89b" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T205108Z:f8b1cdb9-32b0-4ad7-be87-fbf1faa9c895" + "WESTUS2:20200916T232728Z:0d9c82cf-07b8-48d3-89a7-a5ae2ec4a89b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5097,7 +5154,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:51:08 GMT" + "Wed, 16 Sep 2020 23:27:27 GMT" ], "Expires": [ "-1" @@ -5110,16 +5167,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM5OTgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNU9UZ3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNU1UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -5130,22 +5187,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM5OTgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11990" ], "x-ms-request-id": [ - "1a8126b3-c62f-4514-81cc-7b7919091a4c" + "7e878bac-0672-451b-8571-a70571abc95a" ], "x-ms-correlation-request-id": [ - "1a8126b3-c62f-4514-81cc-7b7919091a4c" + "7e878bac-0672-451b-8571-a70571abc95a" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T205123Z:1a8126b3-c62f-4514-81cc-7b7919091a4c" + "WESTUS2:20200916T232743Z:7e878bac-0672-451b-8571-a70571abc95a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5154,7 +5211,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:51:23 GMT" + "Wed, 16 Sep 2020 23:27:43 GMT" ], "Expires": [ "-1" @@ -5167,16 +5224,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM5OTgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNU9UZ3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNU1UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -5187,22 +5244,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM5OTgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11989" ], "x-ms-request-id": [ - "5eb40dc2-a10b-4741-990f-c9730bf91b57" + "d3650f88-1658-4da4-8434-0f305450d593" ], "x-ms-correlation-request-id": [ - "5eb40dc2-a10b-4741-990f-c9730bf91b57" + "d3650f88-1658-4da4-8434-0f305450d593" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T205138Z:5eb40dc2-a10b-4741-990f-c9730bf91b57" + "WESTUS2:20200916T232759Z:d3650f88-1658-4da4-8434-0f305450d593" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5211,7 +5268,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:51:38 GMT" + "Wed, 16 Sep 2020 23:27:58 GMT" ], "Expires": [ "-1" @@ -5224,16 +5281,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM5OTgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNU9UZ3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNU1UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -5244,16 +5301,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11988" ], "x-ms-request-id": [ - "45da2532-41e5-417b-8aa8-acceacb2602e" + "848733e6-d773-477d-9dac-9fc664937c37" ], "x-ms-correlation-request-id": [ - "45da2532-41e5-417b-8aa8-acceacb2602e" + "848733e6-d773-477d-9dac-9fc664937c37" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T205154Z:45da2532-41e5-417b-8aa8-acceacb2602e" + "WESTUS2:20200916T232814Z:848733e6-d773-477d-9dac-9fc664937c37" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5262,7 +5319,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:51:53 GMT" + "Wed, 16 Sep 2020 23:28:13 GMT" ], "Expires": [ "-1" @@ -5275,16 +5332,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM5OTgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNU9UZ3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNU1UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -5295,16 +5352,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11987" ], "x-ms-request-id": [ - "7089748c-faa5-47cd-a8ea-8c6ebbed3fb3" + "23be9b13-dc72-43f7-bc09-184d778ce630" ], "x-ms-correlation-request-id": [ - "7089748c-faa5-47cd-a8ea-8c6ebbed3fb3" + "23be9b13-dc72-43f7-bc09-184d778ce630" ], "x-ms-routing-request-id": [ - "WESTUS2:20200518T205154Z:7089748c-faa5-47cd-a8ea-8c6ebbed3fb3" + "WESTUS2:20200916T232814Z:23be9b13-dc72-43f7-bc09-184d778ce630" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5313,7 +5370,7 @@ "nosniff" ], "Date": [ - "Mon, 18 May 2020 20:51:53 GMT" + "Wed, 16 Sep 2020 23:28:13 GMT" ], "Expires": [ "-1" @@ -5328,12 +5385,12 @@ ], "Names": { "Test-AzIotDpsEnrollmentLifeCycle": [ - "ps7819", - "ps3998", - "ps526", - "ps2481", - "ps299", - "ps3490" + "ps6304", + "ps9910", + "ps6832", + "ps7717", + "ps4727", + "ps5955" ] }, "Variables": { diff --git a/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/SessionRecords/Commands.DeviceProvisioningServices.Test.IotDpsLinkedHubTests/IotDpsLinkedHubLifeCycle.json b/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/SessionRecords/Commands.DeviceProvisioningServices.Test.IotDpsLinkedHubTests/IotDpsLinkedHubLifeCycle.json index 40267e172acb..28106da55f26 100644 --- a/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/SessionRecords/Commands.DeviceProvisioningServices.Test.IotDpsLinkedHubTests/IotDpsLinkedHubLifeCycle.json +++ b/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/SessionRecords/Commands.DeviceProvisioningServices.Test.IotDpsLinkedHubTests/IotDpsLinkedHubLifeCycle.json @@ -7,16 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "87db4793-8d48-4127-88c6-0b6764308c7e" + "dc0c840b-269e-452a-bf84-b68f652a8a7c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -30,13 +30,13 @@ "11999" ], "x-ms-request-id": [ - "38f5d469-f3f8-4631-8b22-4bd31bafe850" + "05e05374-49f8-433f-885f-64675ecc6b1d" ], "x-ms-correlation-request-id": [ - "38f5d469-f3f8-4631-8b22-4bd31bafe850" + "05e05374-49f8-433f-885f-64675ecc6b1d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T221945Z:38f5d469-f3f8-4631-8b22-4bd31bafe850" + "WESTUS2:20200916T230550Z:05e05374-49f8-433f-885f-64675ecc6b1d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:19:44 GMT" + "Wed, 16 Sep 2020 23:05:49 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54,29 +54,29 @@ "-1" ], "Content-Length": [ - "4349" + "6060" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices\",\r\n \"namespace\": \"Microsoft.Devices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0cd79364-7a90-4354-9984-6e36c841418d\",\r\n \"roleDefinitionId\": \"C121DF10-FE58-4BC4-97F9-8296879F7BBB\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22-preview\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-09-25-preview\",\r\n \"2017-08-21-preview\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/eventGridFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-31\",\r\n \"2018-01-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices\",\r\n \"namespace\": \"Microsoft.Devices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0cd79364-7a90-4354-9984-6e36c841418d\",\r\n \"roleDefinitionId\": \"C121DF10-FE58-4BC4-97F9-8296879F7BBB\"\r\n },\r\n {\r\n \"applicationId\": \"29f411f1-b2cf-4043-8ac8-2185d7316811\"\r\n },\r\n {\r\n \"applicationId\": \"89d10474-74af-4874-99a7-c23c2f643083\",\r\n \"roleDefinitionId\": \"7df22794-26e3-4f94-9d50-a4f0f6e1cb41\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Australia Central\",\r\n \"Australia Central 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/eventGridFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Australia Central\",\r\n \"Australia Central 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-31\",\r\n \"2018-01-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/securitySettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Australia Central\",\r\n \"Australia Central 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants/securitySettings\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourcegroups/ps9862?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlZ3JvdXBzL3BzOTg2Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourcegroups/ps6226?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlZ3JvdXBzL3BzNjIyNj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "dd0be1fd-6c2f-4529-b02b-bc88aa2f4e48" + "176bb93e-2ef3-4549-b939-1b487cbecf93" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "31a084ed-9f34-4c39-9c87-505c397e0038" + "d936c816-0a71-437a-944a-7b55fef13366" ], "x-ms-correlation-request-id": [ - "31a084ed-9f34-4c39-9c87-505c397e0038" + "d936c816-0a71-437a-944a-7b55fef13366" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T221946Z:31a084ed-9f34-4c39-9c87-505c397e0038" + "WESTUS2:20200916T230550Z:d936c816-0a71-437a-944a-7b55fef13366" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:19:46 GMT" + "Wed, 16 Sep 2020 23:05:50 GMT" ], "Content-Length": [ "165" @@ -123,25 +123,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862\",\r\n \"name\": \"ps9862\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226\",\r\n \"name\": \"ps6226\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862/providers/Microsoft.Devices/provisioningServices/ps712?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3MTI/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226/providers/Microsoft.Devices/provisioningServices/ps3277?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjIyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMzMjc3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9d0e0c68-d479-4053-80c0-b81ac82eca20" + "f457bf97-5362-4fe4-94a7-02c5155055d2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ], "Content-Type": [ @@ -159,7 +159,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862/providers/Microsoft.Devices/provisioningServices/ps712/operationResults/b3NfaWRfMDNhYmNmYTctMzEyMi00Nzc4LWJjNzAtY2Q4N2RjN2NiMWM4?api-version=2017-11-15&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226/providers/Microsoft.Devices/provisioningServices/ps3277/operationResults/b3NfaWRfYmQ3MTBhYjMtNjBmOS00NzJmLThhMmYtZTkzMjYxN2M4MDE1?api-version=2017-11-15&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -168,13 +168,13 @@ "4999" ], "x-ms-request-id": [ - "14779ca9-047c-4b0d-b56c-aac0a820180b" + "72e40446-8cd9-4659-9344-fe66799345a9" ], "x-ms-correlation-request-id": [ - "14779ca9-047c-4b0d-b56c-aac0a820180b" + "72e40446-8cd9-4659-9344-fe66799345a9" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T221953Z:14779ca9-047c-4b0d-b56c-aac0a820180b" + "WESTUS2:20200916T230553Z:72e40446-8cd9-4659-9344-fe66799345a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -183,10 +183,10 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:19:52 GMT" + "Wed, 16 Sep 2020 23:05:53 GMT" ], "Content-Length": [ - "460" + "462" ], "Content-Type": [ "application/json; charset=utf-8" @@ -195,32 +195,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps712\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Activating\",\r\n \"provisioningState\": \"Accepted\",\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps9862\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862/providers/Microsoft.Devices/provisioningServices/ps712\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps3277\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Activating\",\r\n \"provisioningState\": \"Accepted\",\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps6226\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226/providers/Microsoft.Devices/provisioningServices/ps3277\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862/providers/Microsoft.Devices/provisioningServices/ps712?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3MTI/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226/providers/Microsoft.Devices/provisioningServices/ps3277?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjIyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMzMjc3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAAAFNbvo=\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"connectionString\": \"HostName=ps525.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=wrMB2VuKW5KPCyKDhwdFEhMNzsrnEHB8tJuyPEMBpkM=\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"etag\": \"AAAAAASgXPA=\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"connectionString\": \"HostName=ps2785.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=v0ko0ppE2SRejKjtsSMEriYrN8ouWvVlXWZESb1jy44=\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "29cf007b-b0bf-46b1-855f-ceea1ef454f6" + "bcc9354c-19a7-4f4e-b37f-a53f9cb33d4e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "463" + "503" ] }, "ResponseHeaders": { @@ -231,7 +231,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862/providers/Microsoft.Devices/provisioningServices/ps712/operationResults/b3NfaWRfMjgwYWJlNzUtYjIwZS00MmQ1LTg0MWMtMmQ4YWQ1NzA5ZjFj?api-version=2017-11-15&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226/providers/Microsoft.Devices/provisioningServices/ps3277/operationResults/b3NfaWRfMGYxMmY0MTctYWYyMS00MjFlLWJhMGYtNzU5YTY1ZWY1ODU3?api-version=2017-11-15&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -240,13 +240,13 @@ "4999" ], "x-ms-request-id": [ - "84a592c4-fe5d-45db-a876-7af82afb5e76" + "271249a6-dc11-430a-b102-dc5d8001e117" ], "x-ms-correlation-request-id": [ - "84a592c4-fe5d-45db-a876-7af82afb5e76" + "271249a6-dc11-430a-b102-dc5d8001e117" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T222321Z:84a592c4-fe5d-45db-a876-7af82afb5e76" + "WESTUS2:20200916T230949Z:271249a6-dc11-430a-b102-dc5d8001e117" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -255,10 +255,10 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:23:21 GMT" + "Wed, 16 Sep 2020 23:09:49 GMT" ], "Content-Length": [ - "729" + "733" ], "Content-Type": [ "application/json; charset=utf-8" @@ -267,32 +267,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAFNbvo=\",\r\n \"name\": \"ps712\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Transitioning\",\r\n \"provisioningState\": \"Accepted\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps525.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps525.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=wrMB2VuKW5KPCyKDhwdFEhMNzsrnEHB8tJuyPEMBpkM=\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps9862\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862/providers/Microsoft.Devices/provisioningServices/ps712\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgXPA=\",\r\n \"name\": \"ps3277\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Transitioning\",\r\n \"provisioningState\": \"Accepted\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2785.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps2785.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=v0ko0ppE2SRejKjtsSMEriYrN8ouWvVlXWZESb1jy44=\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps6226\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226/providers/Microsoft.Devices/provisioningServices/ps3277\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862/providers/Microsoft.Devices/provisioningServices/ps712?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3MTI/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226/providers/Microsoft.Devices/provisioningServices/ps3277?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjIyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMzMjc3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAAAFNb5I=\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"allocationWeight\": 10,\r\n \"connectionString\": \"HostName=ps525.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"etag\": \"AAAAAASgXw0=\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"allocationWeight\": 10,\r\n \"connectionString\": \"HostName=ps2785.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1b263f71-987c-4539-b2ad-887067ea7cfe" + "3db3fc89-1dae-4553-b6e2-9b8601f1cf9c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "456" + "496" ] }, "ResponseHeaders": { @@ -303,7 +303,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862/providers/Microsoft.Devices/provisioningServices/ps712/operationResults/b3NfaWRfNDM3OWEwYjAtMmZiOS00NjgyLThhZWQtODMwNjI4YjUzNTU0?api-version=2017-11-15&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226/providers/Microsoft.Devices/provisioningServices/ps3277/operationResults/b3NfaWRfNzdkZTY1MWYtZDA3Mi00MzI4LTg4YzYtMzllYTQ1MTI2Y2Ex?api-version=2017-11-15&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -312,13 +312,13 @@ "4998" ], "x-ms-request-id": [ - "acf9b019-4012-4806-a791-afd817958626" + "fdba7618-2249-439b-8463-3ce4d90b3ae4" ], "x-ms-correlation-request-id": [ - "acf9b019-4012-4806-a791-afd817958626" + "fdba7618-2249-439b-8463-3ce4d90b3ae4" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T222353Z:acf9b019-4012-4806-a791-afd817958626" + "WESTUS2:20200916T231021Z:fdba7618-2249-439b-8463-3ce4d90b3ae4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -327,10 +327,10 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:23:52 GMT" + "Wed, 16 Sep 2020 23:10:20 GMT" ], "Content-Length": [ - "711" + "715" ], "Content-Type": [ "application/json; charset=utf-8" @@ -339,32 +339,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAFNb5I=\",\r\n \"name\": \"ps712\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Transitioning\",\r\n \"provisioningState\": \"Accepted\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"allocationWeight\": 10,\r\n \"name\": \"ps525.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps525.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps9862\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862/providers/Microsoft.Devices/provisioningServices/ps712\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgXw0=\",\r\n \"name\": \"ps3277\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Transitioning\",\r\n \"provisioningState\": \"Accepted\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"allocationWeight\": 10,\r\n \"name\": \"ps2785.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps2785.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps6226\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226/providers/Microsoft.Devices/provisioningServices/ps3277\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862/providers/Microsoft.Devices/provisioningServices/ps712?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3MTI/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226/providers/Microsoft.Devices/provisioningServices/ps3277?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjIyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMzMjc3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAAAFNb6s=\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"etag\": \"AAAAAASgX1c=\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6353ebc6-0f95-4ab2-a2b8-5a0f9479d74e" + "45d9bafb-c98c-4858-a2af-626181055aeb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "210" + "249" ] }, "ResponseHeaders": { @@ -375,7 +375,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862/providers/Microsoft.Devices/provisioningServices/ps712/operationResults/b3NfaWRfMzBlZTY2OTYtZDAxNi00Y2RjLWJkMzgtMmIwZGQ2NWM5MGNk?api-version=2017-11-15&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226/providers/Microsoft.Devices/provisioningServices/ps3277/operationResults/b3NfaWRfNTY3OTkzNjMtNTliYS00MzFkLTlmYjItMTk5ZTNkMWRjMTNl?api-version=2017-11-15&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -384,13 +384,13 @@ "4997" ], "x-ms-request-id": [ - "3632264e-f12e-4099-a6de-2f1c89907e9f" + "0a1a3a8b-b3af-4cae-b57c-b255e53e266c" ], "x-ms-correlation-request-id": [ - "3632264e-f12e-4099-a6de-2f1c89907e9f" + "0a1a3a8b-b3af-4cae-b57c-b255e53e266c" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T222426Z:3632264e-f12e-4099-a6de-2f1c89907e9f" + "WESTUS2:20200916T231053Z:0a1a3a8b-b3af-4cae-b57c-b255e53e266c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -399,10 +399,10 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:24:25 GMT" + "Wed, 16 Sep 2020 23:10:53 GMT" ], "Content-Length": [ - "498" + "500" ], "Content-Type": [ "application/json; charset=utf-8" @@ -411,19 +411,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAFNb6s=\",\r\n \"name\": \"ps712\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Transitioning\",\r\n \"provisioningState\": \"Accepted\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps9862\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862/providers/Microsoft.Devices/provisioningServices/ps712\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgX1c=\",\r\n \"name\": \"ps3277\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Transitioning\",\r\n \"provisioningState\": \"Accepted\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps6226\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226/providers/Microsoft.Devices/provisioningServices/ps3277\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862/providers/Microsoft.Devices/provisioningServices/ps712/operationResults/b3NfaWRfMDNhYmNmYTctMzEyMi00Nzc4LWJjNzAtY2Q4N2RjN2NiMWM4?api-version=2017-11-15&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3MTIvb3BlcmF0aW9uUmVzdWx0cy9iM05mYVdSZk1ETmhZbU5tWVRjdE16RXlNaTAwTnpjNExXSmpOekF0WTJRNE4yUmpOMk5pTVdNND9hcGktdmVyc2lvbj0yMDE3LTExLTE1JmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226/providers/Microsoft.Devices/provisioningServices/ps3277/operationResults/b3NfaWRfYmQ3MTBhYjMtNjBmOS00NzJmLThhMmYtZTkzMjYxN2M4MDE1?api-version=2017-11-15&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjIyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMzMjc3L29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZZbVEzTVRCaFlqTXROakJtT1MwME56Sm1MVGhoTW1ZdFpUa3pNall4TjJNNE1ERTE/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -438,16 +438,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-request-id": [ - "1a7de93d-e345-4cb2-af8e-0f6427d8d56e" + "52252965-da5d-4e97-847c-fc40b50d1a03" ], "x-ms-correlation-request-id": [ - "1a7de93d-e345-4cb2-af8e-0f6427d8d56e" + "52252965-da5d-4e97-847c-fc40b50d1a03" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T222023Z:1a7de93d-e345-4cb2-af8e-0f6427d8d56e" + "WESTUS2:20200916T230623Z:52252965-da5d-4e97-847c-fc40b50d1a03" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -456,7 +456,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:20:22 GMT" + "Wed, 16 Sep 2020 23:06:23 GMT" ], "Content-Length": [ "22" @@ -472,15 +472,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862/providers/Microsoft.Devices/provisioningServices/ps712?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3MTI/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226/providers/Microsoft.Devices/provisioningServices/ps3277?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjIyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMzMjc3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -495,16 +495,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "x-ms-request-id": [ - "04316f19-24fa-457b-817a-80d564105a1d" + "58edc2b7-b6d2-491b-b4a2-8bc258f4ae3a" ], "x-ms-correlation-request-id": [ - "04316f19-24fa-457b-817a-80d564105a1d" + "58edc2b7-b6d2-491b-b4a2-8bc258f4ae3a" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T222023Z:04316f19-24fa-457b-817a-80d564105a1d" + "WESTUS2:20200916T230623Z:58edc2b7-b6d2-491b-b4a2-8bc258f4ae3a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -513,10 +513,10 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:20:22 GMT" + "Wed, 16 Sep 2020 23:06:23 GMT" ], "Content-Length": [ - "605" + "640" ], "Content-Type": [ "application/json; charset=utf-8" @@ -525,25 +525,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAFNbvo=\",\r\n \"name\": \"ps712\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps712.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0008153E\"\r\n },\r\n \"resourcegroup\": \"ps9862\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862/providers/Microsoft.Devices/provisioningServices/ps712\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgXPA=\",\r\n \"name\": \"ps3277\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps3277.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFD7\"\r\n },\r\n \"resourcegroup\": \"ps6226\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226/providers/Microsoft.Devices/provisioningServices/ps3277\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862/providers/Microsoft.Devices/provisioningServices/ps712?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3MTI/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226/providers/Microsoft.Devices/provisioningServices/ps3277?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjIyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMzMjc3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f7d82d1c-061d-4b0a-93e4-2071b9f0c096" + "3e00afe2-54d1-4497-8a8a-06ad86d00839" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -558,16 +558,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11997" ], "x-ms-request-id": [ - "e31ded0e-de32-4033-8b6a-99d9861af08b" + "16618dba-94a4-4c18-93df-9635f8b74dbd" ], "x-ms-correlation-request-id": [ - "e31ded0e-de32-4033-8b6a-99d9861af08b" + "16618dba-94a4-4c18-93df-9635f8b74dbd" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T222023Z:e31ded0e-de32-4033-8b6a-99d9861af08b" + "WESTUS2:20200916T230623Z:16618dba-94a4-4c18-93df-9635f8b74dbd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -576,10 +576,10 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:20:22 GMT" + "Wed, 16 Sep 2020 23:06:23 GMT" ], "Content-Length": [ - "605" + "640" ], "Content-Type": [ "application/json; charset=utf-8" @@ -588,25 +588,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAFNbvo=\",\r\n \"name\": \"ps712\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps712.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0008153E\"\r\n },\r\n \"resourcegroup\": \"ps9862\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862/providers/Microsoft.Devices/provisioningServices/ps712\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgXPA=\",\r\n \"name\": \"ps3277\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps3277.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFD7\"\r\n },\r\n \"resourcegroup\": \"ps6226\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226/providers/Microsoft.Devices/provisioningServices/ps3277\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862/providers/Microsoft.Devices/provisioningServices/ps712?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3MTI/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226/providers/Microsoft.Devices/provisioningServices/ps3277?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjIyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMzMjc3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7543292b-c68f-4422-9bd6-1f4fe163c91b" + "26fc65e3-30d1-49e8-8c0c-f22e7fbff92f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -621,16 +621,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11993" ], "x-ms-request-id": [ - "038e86be-b065-4070-85ff-4404834dbae6" + "e9f139c2-66f6-4ad9-b3a0-0b52e1e891f7" ], "x-ms-correlation-request-id": [ - "038e86be-b065-4070-85ff-4404834dbae6" + "e9f139c2-66f6-4ad9-b3a0-0b52e1e891f7" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T222320Z:038e86be-b065-4070-85ff-4404834dbae6" + "WESTUS2:20200916T230948Z:e9f139c2-66f6-4ad9-b3a0-0b52e1e891f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -639,10 +639,10 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:23:19 GMT" + "Wed, 16 Sep 2020 23:09:47 GMT" ], "Content-Length": [ - "605" + "640" ], "Content-Type": [ "application/json; charset=utf-8" @@ -651,19 +651,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAFNbvo=\",\r\n \"name\": \"ps712\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps712.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0008153E\"\r\n },\r\n \"resourcegroup\": \"ps9862\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862/providers/Microsoft.Devices/provisioningServices/ps712\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgXPA=\",\r\n \"name\": \"ps3277\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps3277.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFD7\"\r\n },\r\n \"resourcegroup\": \"ps6226\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226/providers/Microsoft.Devices/provisioningServices/ps3277\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862/providers/Microsoft.Devices/provisioningServices/ps712?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3MTI/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226/providers/Microsoft.Devices/provisioningServices/ps3277?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjIyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMzMjc3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -678,16 +678,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11991" ], "x-ms-request-id": [ - "3061aa63-7812-4b98-a8f7-1d847d9e3fd7" + "3f231874-610e-4ebc-a8a3-f2807e5579d8" ], "x-ms-correlation-request-id": [ - "3061aa63-7812-4b98-a8f7-1d847d9e3fd7" + "3f231874-610e-4ebc-a8a3-f2807e5579d8" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T222352Z:3061aa63-7812-4b98-a8f7-1d847d9e3fd7" + "WESTUS2:20200916T231020Z:3f231874-610e-4ebc-a8a3-f2807e5579d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -696,10 +696,10 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:23:51 GMT" + "Wed, 16 Sep 2020 23:10:19 GMT" ], "Content-Length": [ - "796" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -708,25 +708,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAFNb5I=\",\r\n \"name\": \"ps712\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps525.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps525.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps712.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0008153E\"\r\n },\r\n \"resourcegroup\": \"ps9862\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862/providers/Microsoft.Devices/provisioningServices/ps712\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgXw0=\",\r\n \"name\": \"ps3277\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2785.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps2785.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps3277.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFD7\"\r\n },\r\n \"resourcegroup\": \"ps6226\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226/providers/Microsoft.Devices/provisioningServices/ps3277\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862/providers/Microsoft.Devices/provisioningServices/ps712?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3MTI/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226/providers/Microsoft.Devices/provisioningServices/ps3277?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjIyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMzMjc3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "da2a0257-6558-4975-9abe-f9fb6fc5c588" + "40c0871e-10b3-4533-aa68-3ed96b68d5a7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -741,16 +741,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11990" ], "x-ms-request-id": [ - "a753ad72-ced7-4125-a3c0-1e29781d651e" + "436427e4-573c-490b-ad7c-9c3a279074a9" ], "x-ms-correlation-request-id": [ - "a753ad72-ced7-4125-a3c0-1e29781d651e" + "436427e4-573c-490b-ad7c-9c3a279074a9" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T222352Z:a753ad72-ced7-4125-a3c0-1e29781d651e" + "WESTUS2:20200916T231020Z:436427e4-573c-490b-ad7c-9c3a279074a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -759,10 +759,10 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:23:51 GMT" + "Wed, 16 Sep 2020 23:10:19 GMT" ], "Content-Length": [ - "796" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -771,25 +771,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAFNb5I=\",\r\n \"name\": \"ps712\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps525.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps525.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps712.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0008153E\"\r\n },\r\n \"resourcegroup\": \"ps9862\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862/providers/Microsoft.Devices/provisioningServices/ps712\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgXw0=\",\r\n \"name\": \"ps3277\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2785.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps2785.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps3277.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFD7\"\r\n },\r\n \"resourcegroup\": \"ps6226\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226/providers/Microsoft.Devices/provisioningServices/ps3277\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862/providers/Microsoft.Devices/provisioningServices/ps712?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3MTI/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226/providers/Microsoft.Devices/provisioningServices/ps3277?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjIyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMzMjc3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2d9b1072-190d-45bc-9b0d-376a0f3c63d2" + "5d37bc09-59c5-430d-9fca-e0d3077c8d01" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -804,16 +804,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11989" ], "x-ms-request-id": [ - "0eaa78eb-db24-4270-9927-5e7d0020edd3" + "fce067a6-ddd0-4336-b517-c3e92912f651" ], "x-ms-correlation-request-id": [ - "0eaa78eb-db24-4270-9927-5e7d0020edd3" + "fce067a6-ddd0-4336-b517-c3e92912f651" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T222352Z:0eaa78eb-db24-4270-9927-5e7d0020edd3" + "WESTUS2:20200916T231020Z:fce067a6-ddd0-4336-b517-c3e92912f651" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -822,10 +822,10 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:23:51 GMT" + "Wed, 16 Sep 2020 23:10:19 GMT" ], "Content-Length": [ - "796" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -834,19 +834,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAFNb5I=\",\r\n \"name\": \"ps712\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps525.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps525.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps712.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0008153E\"\r\n },\r\n \"resourcegroup\": \"ps9862\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862/providers/Microsoft.Devices/provisioningServices/ps712\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgXw0=\",\r\n \"name\": \"ps3277\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2785.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps2785.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps3277.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFD7\"\r\n },\r\n \"resourcegroup\": \"ps6226\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226/providers/Microsoft.Devices/provisioningServices/ps3277\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862/providers/Microsoft.Devices/provisioningServices/ps712?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3MTI/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226/providers/Microsoft.Devices/provisioningServices/ps3277?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjIyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMzMjc3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -861,16 +861,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11987" ], "x-ms-request-id": [ - "a275a0c1-cd64-4355-9b7e-d16a53ee729b" + "3fb19ebe-3135-4a44-afe2-0756141509cb" ], "x-ms-correlation-request-id": [ - "a275a0c1-cd64-4355-9b7e-d16a53ee729b" + "3fb19ebe-3135-4a44-afe2-0756141509cb" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T222424Z:a275a0c1-cd64-4355-9b7e-d16a53ee729b" + "WESTUS2:20200916T231051Z:3fb19ebe-3135-4a44-afe2-0756141509cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -879,10 +879,10 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:24:23 GMT" + "Wed, 16 Sep 2020 23:10:51 GMT" ], "Content-Length": [ - "818" + "855" ], "Content-Type": [ "application/json; charset=utf-8" @@ -891,25 +891,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAFNb6s=\",\r\n \"name\": \"ps712\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"allocationWeight\": 10,\r\n \"name\": \"ps525.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps525.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps712.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0008153E\"\r\n },\r\n \"resourcegroup\": \"ps9862\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862/providers/Microsoft.Devices/provisioningServices/ps712\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgX1c=\",\r\n \"name\": \"ps3277\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"allocationWeight\": 10,\r\n \"name\": \"ps2785.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps2785.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps3277.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFD7\"\r\n },\r\n \"resourcegroup\": \"ps6226\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226/providers/Microsoft.Devices/provisioningServices/ps3277\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862/providers/Microsoft.Devices/provisioningServices/ps712?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3MTI/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226/providers/Microsoft.Devices/provisioningServices/ps3277?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjIyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMzMjc3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "923fc419-7f55-4dc1-9259-926394402f85" + "c177d205-eb88-459e-9482-b3e2e3c298f0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -924,16 +924,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11986" ], "x-ms-request-id": [ - "d69da813-4963-4e79-a570-32ab6d430928" + "92005e8d-fdf0-4af4-b257-a2fc85cf34a9" ], "x-ms-correlation-request-id": [ - "d69da813-4963-4e79-a570-32ab6d430928" + "92005e8d-fdf0-4af4-b257-a2fc85cf34a9" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T222424Z:d69da813-4963-4e79-a570-32ab6d430928" + "WESTUS2:20200916T231051Z:92005e8d-fdf0-4af4-b257-a2fc85cf34a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -942,10 +942,10 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:24:23 GMT" + "Wed, 16 Sep 2020 23:10:51 GMT" ], "Content-Length": [ - "818" + "855" ], "Content-Type": [ "application/json; charset=utf-8" @@ -954,25 +954,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAFNb6s=\",\r\n \"name\": \"ps712\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"allocationWeight\": 10,\r\n \"name\": \"ps525.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps525.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps712.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0008153E\"\r\n },\r\n \"resourcegroup\": \"ps9862\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862/providers/Microsoft.Devices/provisioningServices/ps712\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgX1c=\",\r\n \"name\": \"ps3277\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"allocationWeight\": 10,\r\n \"name\": \"ps2785.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps2785.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps3277.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFD7\"\r\n },\r\n \"resourcegroup\": \"ps6226\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226/providers/Microsoft.Devices/provisioningServices/ps3277\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862/providers/Microsoft.Devices/provisioningServices/ps712?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3MTI/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226/providers/Microsoft.Devices/provisioningServices/ps3277?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjIyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMzMjc3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aa625268-2bd9-4a71-9233-f3d1eda745cf" + "d72be5ae-644f-4f15-bd8d-d5b1bcabe80d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -987,16 +987,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11985" ], "x-ms-request-id": [ - "07932724-9ed0-4445-8ad8-7edc8d3d5e6d" + "de0f2845-97bb-430f-b812-8aa35cf27387" ], "x-ms-correlation-request-id": [ - "07932724-9ed0-4445-8ad8-7edc8d3d5e6d" + "de0f2845-97bb-430f-b812-8aa35cf27387" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T222424Z:07932724-9ed0-4445-8ad8-7edc8d3d5e6d" + "WESTUS2:20200916T231052Z:de0f2845-97bb-430f-b812-8aa35cf27387" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1005,10 +1005,10 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:24:24 GMT" + "Wed, 16 Sep 2020 23:10:51 GMT" ], "Content-Length": [ - "818" + "855" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1017,25 +1017,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAFNb6s=\",\r\n \"name\": \"ps712\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"allocationWeight\": 10,\r\n \"name\": \"ps525.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps525.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps712.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0008153E\"\r\n },\r\n \"resourcegroup\": \"ps9862\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862/providers/Microsoft.Devices/provisioningServices/ps712\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgX1c=\",\r\n \"name\": \"ps3277\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"allocationWeight\": 10,\r\n \"name\": \"ps2785.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps2785.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps3277.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFD7\"\r\n },\r\n \"resourcegroup\": \"ps6226\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226/providers/Microsoft.Devices/provisioningServices/ps3277\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862/providers/Microsoft.Devices/provisioningServices/ps712?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3MTI/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226/providers/Microsoft.Devices/provisioningServices/ps3277?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjIyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMzMjc3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ca76c2df-6890-4f4c-9ec3-d2649e725d26" + "586c24e4-4e36-4d01-87b6-962d4d7bdbe0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1050,16 +1050,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11984" ], "x-ms-request-id": [ - "9d1f5d31-c5ea-48c0-9ec7-6815b217917d" + "05b6e38c-747e-4209-b3cc-b4828143601f" ], "x-ms-correlation-request-id": [ - "9d1f5d31-c5ea-48c0-9ec7-6815b217917d" + "05b6e38c-747e-4209-b3cc-b4828143601f" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T222424Z:9d1f5d31-c5ea-48c0-9ec7-6815b217917d" + "WESTUS2:20200916T231052Z:05b6e38c-747e-4209-b3cc-b4828143601f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1068,10 +1068,10 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:24:24 GMT" + "Wed, 16 Sep 2020 23:10:52 GMT" ], "Content-Length": [ - "818" + "855" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1080,25 +1080,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAFNb6s=\",\r\n \"name\": \"ps712\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"allocationWeight\": 10,\r\n \"name\": \"ps525.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps525.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps712.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0008153E\"\r\n },\r\n \"resourcegroup\": \"ps9862\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862/providers/Microsoft.Devices/provisioningServices/ps712\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgX1c=\",\r\n \"name\": \"ps3277\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"allocationWeight\": 10,\r\n \"name\": \"ps2785.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps2785.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps3277.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFD7\"\r\n },\r\n \"resourcegroup\": \"ps6226\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226/providers/Microsoft.Devices/provisioningServices/ps3277\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862/providers/Microsoft.Devices/provisioningServices/ps712?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3MTI/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226/providers/Microsoft.Devices/provisioningServices/ps3277?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjIyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMzMjc3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5c3e3f36-8772-4640-8b15-f6b9776682ba" + "fcaa9561-a9d9-4a20-9189-edb81043d7ff" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1113,16 +1113,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11983" ], "x-ms-request-id": [ - "0f5e8607-a7b6-466b-b3f1-ede3f997d61b" + "17ed6cb0-0e79-4158-bb11-5c984e9397f2" ], "x-ms-correlation-request-id": [ - "0f5e8607-a7b6-466b-b3f1-ede3f997d61b" + "17ed6cb0-0e79-4158-bb11-5c984e9397f2" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T222424Z:0f5e8607-a7b6-466b-b3f1-ede3f997d61b" + "WESTUS2:20200916T231052Z:17ed6cb0-0e79-4158-bb11-5c984e9397f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1131,10 +1131,10 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:24:24 GMT" + "Wed, 16 Sep 2020 23:10:52 GMT" ], "Content-Length": [ - "818" + "855" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1143,19 +1143,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAFNb6s=\",\r\n \"name\": \"ps712\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"allocationWeight\": 10,\r\n \"name\": \"ps525.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps525.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps712.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0008153E\"\r\n },\r\n \"resourcegroup\": \"ps9862\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862/providers/Microsoft.Devices/provisioningServices/ps712\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgX1c=\",\r\n \"name\": \"ps3277\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"allocationWeight\": 10,\r\n \"name\": \"ps2785.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps2785.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps3277.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFD7\"\r\n },\r\n \"resourcegroup\": \"ps6226\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226/providers/Microsoft.Devices/provisioningServices/ps3277\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862/providers/Microsoft.Devices/provisioningServices/ps712?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3MTI/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226/providers/Microsoft.Devices/provisioningServices/ps3277?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjIyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMzMjc3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1170,16 +1170,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11981" ], "x-ms-request-id": [ - "7a7a7d09-96eb-43f1-980c-fd9481e6619f" + "c9f1e3fb-418a-4b1a-b625-c46d63be3967" ], "x-ms-correlation-request-id": [ - "7a7a7d09-96eb-43f1-980c-fd9481e6619f" + "c9f1e3fb-418a-4b1a-b625-c46d63be3967" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T222456Z:7a7a7d09-96eb-43f1-980c-fd9481e6619f" + "WESTUS2:20200916T231123Z:c9f1e3fb-418a-4b1a-b625-c46d63be3967" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1188,10 +1188,10 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:24:55 GMT" + "Wed, 16 Sep 2020 23:11:23 GMT" ], "Content-Length": [ - "605" + "640" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1200,25 +1200,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAFNb7Q=\",\r\n \"name\": \"ps712\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps712.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0008153E\"\r\n },\r\n \"resourcegroup\": \"ps9862\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862/providers/Microsoft.Devices/provisioningServices/ps712\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgX+g=\",\r\n \"name\": \"ps3277\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps3277.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFD7\"\r\n },\r\n \"resourcegroup\": \"ps6226\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226/providers/Microsoft.Devices/provisioningServices/ps3277\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862/providers/Microsoft.Devices/IotHubs/ps525?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczUyNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226/providers/Microsoft.Devices/IotHubs/ps2785?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjIyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI3ODU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9425f59e-a793-4aa5-8ef3-6107710f60a2" + "b90ae494-662c-4231-ab61-bce238be9d36" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ], "Content-Type": [ @@ -1236,7 +1236,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMTNjMDdlMjUtMjM2ZC00MzE3LWJlN2ItZmQ1Yjg4Y2Y1NDkz?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfOWQ4OTg2MTctMWUwOC00NTc5LTkxZDQtZjExYWRjMjFlZjA5?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1245,13 +1245,13 @@ "4999" ], "x-ms-request-id": [ - "5d06752a-53aa-4564-b276-39379c30c743" + "5c6cdc45-a92c-4278-8562-978a34b9f407" ], "x-ms-correlation-request-id": [ - "5d06752a-53aa-4564-b276-39379c30c743" + "5c6cdc45-a92c-4278-8562-978a34b9f407" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T222038Z:5d06752a-53aa-4564-b276-39379c30c743" + "WESTUS2:20200916T230640Z:5c6cdc45-a92c-4278-8562-978a34b9f407" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1260,10 +1260,10 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:20:37 GMT" + "Wed, 16 Sep 2020 23:06:39 GMT" ], "Content-Length": [ - "617" + "619" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1272,25 +1272,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862/providers/Microsoft.Devices/IotHubs/ps525\",\r\n \"name\": \"ps525\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9862\",\r\n \"properties\": {\r\n \"state\": \"Activating\",\r\n \"provisioningState\": \"Accepted\",\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226/providers/Microsoft.Devices/IotHubs/ps2785\",\r\n \"name\": \"ps2785\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6226\",\r\n \"properties\": {\r\n \"state\": \"Activating\",\r\n \"provisioningState\": \"Accepted\",\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862/providers/Microsoft.Devices/IotHubs/ps525?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczUyNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226/providers/Microsoft.Devices/IotHubs/ps2785?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjIyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI3ODU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAAAiBfpA=\",\r\n \"properties\": {\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"84c96bo5GlAwWIr4ntqTgMCK2dDzZhehBnn1eg3/uDs=\",\r\n \"secondaryKey\": \"60H7wOeQxoJ0JTHQCUViY2mh19ljhgwp135lrxYb5TA=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"WapzsllcxC5J1YH9vj0RmhDGIJw+S8wTD7VA9SG7t0s=\",\r\n \"secondaryKey\": \"MIqYk2wzS6b206ZAaM1bFveCi+gkoJ6cvXZ7MG6P3aE=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"zVPY80uKVb9YgsNSCL+S9ziMSW8Vtb96fvV3zi796aU=\",\r\n \"secondaryKey\": \"hOdClolv6HJdGlYMzerGS64nukWvNrj9jQ612XMngxw=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"7XEJ+Ysn8Ss6ZMizjHqrqwphr1wXniCCSCdPQzSNO8s=\",\r\n \"secondaryKey\": \"vWZ4foZoGgmOm0baHJRTshZ/5W3V8VNjubejT5XSnpA=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"ep4nXApT9KNeh8NmadNRJQdCd7kt3W5izdYUXnLcUzo=\",\r\n \"secondaryKey\": \"DxII5/txB9qrjujM+faoTc7fGIkWeoK+Mzl6o4XAKfo=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"ServiceKey\",\r\n \"rights\": \"ServiceConnect\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"etag\": \"AAAAAiGv7GU=\",\r\n \"properties\": {\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"hJFZj7XKY+AjeBT+eGA3YXWsPibvuPjR3OV/MpNH0YU=\",\r\n \"secondaryKey\": \"I2bT+W5u1MrLg9VgrZ4mnqjo9W+nqwoXro1iXvbks40=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"nFUN4DjuR9ssGgOXnXktDIvj4m2gQItB4brgra2LXpY=\",\r\n \"secondaryKey\": \"B8PTbBIHOhtGa3kE+WwiGTuuZ86F7h9DjuFmt3lOI/A=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"StXTppXtfcBcsjH6fnUat/LYqmXgFU6pN++PRYoSaEw=\",\r\n \"secondaryKey\": \"aYFgGVg212HCeqJqjnCXrIg0r0DspVSb9vXdTzDexlo=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"jyYG9XYR4f1q2MKvrFsIISXpIIFj0HspUu9PB8jlorU=\",\r\n \"secondaryKey\": \"tQ/BB/5rL85Esu2IYLftjp/6YhAS8KLea0Kwvg1zwbQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"rjCplEbNbASZQall5YOSTlOuMJTKFXUE9e3dF6s/l/8=\",\r\n \"secondaryKey\": \"tM3HKTuzUmtSIcfMxuSnA+0lclxT44cKM76D1uj3pUM=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"ServiceKey\",\r\n \"rights\": \"ServiceConnect\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d27d7b61-48af-426d-b641-996db3175c95" + "15e61be0-15d8-4f53-aba7-1aaf049f4580" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ], "Content-Type": [ @@ -1308,7 +1308,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYWE0YTYwZGItNWY5Ny00NThlLThmOGUtZDQ4ZTAzYzAyMTQy?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNWI1NzkxMDMtMDA4ZS00OThmLWIxOTItOWY1YTlkYWNhNjI5?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1317,13 +1317,13 @@ "4998" ], "x-ms-request-id": [ - "b5776423-5033-4d24-a84f-ab8c01e43e16" + "a90edc4f-bca9-46d1-99ee-049cbdfb26e1" ], "x-ms-correlation-request-id": [ - "b5776423-5033-4d24-a84f-ab8c01e43e16" + "a90edc4f-bca9-46d1-99ee-049cbdfb26e1" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T222248Z:b5776423-5033-4d24-a84f-ab8c01e43e16" + "WESTUS2:20200916T230916Z:a90edc4f-bca9-46d1-99ee-049cbdfb26e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1332,10 +1332,10 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:22:48 GMT" + "Wed, 16 Sep 2020 23:09:15 GMT" ], "Content-Length": [ - "4096" + "4100" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1344,19 +1344,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862/providers/Microsoft.Devices/IotHubs/ps525\",\r\n \"name\": \"ps525\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9862\",\r\n \"etag\": \"AAAAAAiBfpA=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"84c96bo5GlAwWIr4ntqTgMCK2dDzZhehBnn1eg3/uDs=\",\r\n \"secondaryKey\": \"60H7wOeQxoJ0JTHQCUViY2mh19ljhgwp135lrxYb5TA=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"WapzsllcxC5J1YH9vj0RmhDGIJw+S8wTD7VA9SG7t0s=\",\r\n \"secondaryKey\": \"MIqYk2wzS6b206ZAaM1bFveCi+gkoJ6cvXZ7MG6P3aE=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"zVPY80uKVb9YgsNSCL+S9ziMSW8Vtb96fvV3zi796aU=\",\r\n \"secondaryKey\": \"hOdClolv6HJdGlYMzerGS64nukWvNrj9jQ612XMngxw=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"7XEJ+Ysn8Ss6ZMizjHqrqwphr1wXniCCSCdPQzSNO8s=\",\r\n \"secondaryKey\": \"vWZ4foZoGgmOm0baHJRTshZ/5W3V8VNjubejT5XSnpA=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"ep4nXApT9KNeh8NmadNRJQdCd7kt3W5izdYUXnLcUzo=\",\r\n \"secondaryKey\": \"DxII5/txB9qrjujM+faoTc7fGIkWeoK+Mzl6o4XAKfo=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"ServiceKey\",\r\n \"primaryKey\": \"wrMB2VuKW5KPCyKDhwdFEhMNzsrnEHB8tJuyPEMBpkM=\",\r\n \"secondaryKey\": \"kl66T+KsxG9sk1m+QuvhBdww6G07sy7Q2YlJ0iJfFeU=\",\r\n \"rights\": \"ServiceConnect\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps525-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps525-2248594-efac455d87.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-ee933734-ad56-4431-b8ab-78658cb92c89-iothub\",\r\n \"PrimaryKey\": \"AUP70/qgS+yrMqBsUUdkdi+bkRj85vpnkPMSFch5yXo=\",\r\n \"SecondaryKey\": \"o5+3gget3EpuutY37+qAuinr7EDi2DiNZ5foZ5xCllU=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 30 Sep 2019 22:22:08 GMT\",\r\n \"ModifiedTime\": \"Mon, 30 Sep 2019 22:22:08 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-9dfaf93c-23ac-46e2-b2d6-80d3c5be7951-iothub\",\r\n \"PrimaryKey\": \"Yc3lrncRShzJG3DylW0rxgCuc71oz10kBOUikcTpyic=\",\r\n \"SecondaryKey\": \"qpFjlWJFDSfhFR1YftfHaU454cZG+6OOakyW4cZbfAY=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Mon, 30 Sep 2019 22:22:08 GMT\",\r\n \"ModifiedTime\": \"Mon, 30 Sep 2019 22:22:08 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"84c96bo5GlAwWIr4ntqTgMCK2dDzZhehBnn1eg3/uDs=\",\r\n \"SecondaryKey\": \"60H7wOeQxoJ0JTHQCUViY2mh19ljhgwp135lrxYb5TA=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 30 Sep 2019 22:22:08 GMT\",\r\n \"ModifiedTime\": \"Mon, 30 Sep 2019 22:22:08 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"WapzsllcxC5J1YH9vj0RmhDGIJw+S8wTD7VA9SG7t0s=\",\r\n \"SecondaryKey\": \"MIqYk2wzS6b206ZAaM1bFveCi+gkoJ6cvXZ7MG6P3aE=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Mon, 30 Sep 2019 22:22:08 GMT\",\r\n \"ModifiedTime\": \"Mon, 30 Sep 2019 22:22:08 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226/providers/Microsoft.Devices/IotHubs/ps2785\",\r\n \"name\": \"ps2785\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6226\",\r\n \"etag\": \"AAAAAiGv7GU=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"hJFZj7XKY+AjeBT+eGA3YXWsPibvuPjR3OV/MpNH0YU=\",\r\n \"secondaryKey\": \"I2bT+W5u1MrLg9VgrZ4mnqjo9W+nqwoXro1iXvbks40=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"nFUN4DjuR9ssGgOXnXktDIvj4m2gQItB4brgra2LXpY=\",\r\n \"secondaryKey\": \"B8PTbBIHOhtGa3kE+WwiGTuuZ86F7h9DjuFmt3lOI/A=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"StXTppXtfcBcsjH6fnUat/LYqmXgFU6pN++PRYoSaEw=\",\r\n \"secondaryKey\": \"aYFgGVg212HCeqJqjnCXrIg0r0DspVSb9vXdTzDexlo=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"jyYG9XYR4f1q2MKvrFsIISXpIIFj0HspUu9PB8jlorU=\",\r\n \"secondaryKey\": \"tQ/BB/5rL85Esu2IYLftjp/6YhAS8KLea0Kwvg1zwbQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"rjCplEbNbASZQall5YOSTlOuMJTKFXUE9e3dF6s/l/8=\",\r\n \"secondaryKey\": \"tM3HKTuzUmtSIcfMxuSnA+0lclxT44cKM76D1uj3pUM=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"ServiceKey\",\r\n \"primaryKey\": \"v0ko0ppE2SRejKjtsSMEriYrN8ouWvVlXWZESb1jy44=\",\r\n \"secondaryKey\": \"JNjm/31x3k7ybeTmFODJDgqLQtByH70iSN0uU0xw1go=\",\r\n \"rights\": \"ServiceConnect\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2785-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps2785-4636505-17dce995a5.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-c9bac947-4cf3-4af1-b3ed-1ab33600acd1-iothub\",\r\n \"PrimaryKey\": \"DgibwN2N55wVrxaB7zbebd5/25njmvSZI7w271RvkwI=\",\r\n \"SecondaryKey\": \"z1AmhG3AGS91HMVCpdzlSGvVMACADz/ys9o1XxDN38o=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 16 Sep 2020 23:08:44 GMT\",\r\n \"ModifiedTime\": \"Wed, 16 Sep 2020 23:08:44 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-572d6982-858c-483f-ba66-2cefc2fff3e5-iothub\",\r\n \"PrimaryKey\": \"RO9yVWqZtFT5p4KQVvG8pzuG7i3AlSuPJgRjca3Qpok=\",\r\n \"SecondaryKey\": \"NuH57mu+RvbACXJyiT2KSdMxwq8oiQpOapoG6cVpBqU=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 16 Sep 2020 23:08:44 GMT\",\r\n \"ModifiedTime\": \"Wed, 16 Sep 2020 23:08:44 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"hJFZj7XKY+AjeBT+eGA3YXWsPibvuPjR3OV/MpNH0YU=\",\r\n \"SecondaryKey\": \"I2bT+W5u1MrLg9VgrZ4mnqjo9W+nqwoXro1iXvbks40=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 16 Sep 2020 23:08:44 GMT\",\r\n \"ModifiedTime\": \"Wed, 16 Sep 2020 23:08:44 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"nFUN4DjuR9ssGgOXnXktDIvj4m2gQItB4brgra2LXpY=\",\r\n \"SecondaryKey\": \"B8PTbBIHOhtGa3kE+WwiGTuuZ86F7h9DjuFmt3lOI/A=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 16 Sep 2020 23:08:44 GMT\",\r\n \"ModifiedTime\": \"Wed, 16 Sep 2020 23:08:44 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMTNjMDdlMjUtMjM2ZC00MzE3LWJlN2ItZmQ1Yjg4Y2Y1NDkz?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTVROak1EZGxNalV0TWpNMlpDMDBNekUzTFdKbE4ySXRabVExWWpnNFkyWTFORGt6P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfOWQ4OTg2MTctMWUwOC00NTc5LTkxZDQtZjExYWRjMjFlZjA5?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmT1dRNE9UZzJNVGN0TVdVd09DMDBOVGM1TFRreFpEUXRaakV4WVdSak1qRmxaakE1P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -1371,16 +1371,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "75609afc-6eea-4354-adc6-18fde089ff4e" + "6250c970-3808-4277-92c6-5092ccbe0fb9" ], "x-ms-correlation-request-id": [ - "75609afc-6eea-4354-adc6-18fde089ff4e" + "6250c970-3808-4277-92c6-5092ccbe0fb9" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T222108Z:75609afc-6eea-4354-adc6-18fde089ff4e" + "WESTUS2:20200916T230710Z:6250c970-3808-4277-92c6-5092ccbe0fb9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1389,7 +1389,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:21:08 GMT" + "Wed, 16 Sep 2020 23:07:10 GMT" ], "Content-Length": [ "20" @@ -1405,15 +1405,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMTNjMDdlMjUtMjM2ZC00MzE3LWJlN2ItZmQ1Yjg4Y2Y1NDkz?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTVROak1EZGxNalV0TWpNMlpDMDBNekUzTFdKbE4ySXRabVExWWpnNFkyWTFORGt6P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfOWQ4OTg2MTctMWUwOC00NTc5LTkxZDQtZjExYWRjMjFlZjA5?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmT1dRNE9UZzJNVGN0TVdVd09DMDBOVGM1TFRreFpEUXRaakV4WVdSak1qRmxaakE1P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -1424,20 +1424,77 @@ "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" + ], + "x-ms-request-id": [ + "198ecc85-8626-419f-8b71-d0723b49f8c2" + ], + "x-ms-correlation-request-id": [ + "198ecc85-8626-419f-8b71-d0723b49f8c2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200916T230740Z:198ecc85-8626-419f-8b71-d0723b49f8c2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Sep 2020 23:07:40 GMT" + ], + "Content-Length": [ + "20" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfOWQ4OTg2MTctMWUwOC00NTc5LTkxZDQtZjExYWRjMjFlZjA5?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmT1dRNE9UZzJNVGN0TVdVd09DMDBOVGM1TFRreFpEUXRaakV4WVdSak1qRmxaakE1P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], "x-ms-request-id": [ - "ef3a1531-8bd0-4b0e-b75f-f931f773921b" + "52956573-2d08-4b03-869c-a889516f7525" ], "x-ms-correlation-request-id": [ - "ef3a1531-8bd0-4b0e-b75f-f931f773921b" + "52956573-2d08-4b03-869c-a889516f7525" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T222138Z:ef3a1531-8bd0-4b0e-b75f-f931f773921b" + "WESTUS2:20200916T230810Z:52956573-2d08-4b03-869c-a889516f7525" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1446,7 +1503,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:21:38 GMT" + "Wed, 16 Sep 2020 23:08:10 GMT" ], "Content-Length": [ "20" @@ -1462,15 +1519,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMTNjMDdlMjUtMjM2ZC00MzE3LWJlN2ItZmQ1Yjg4Y2Y1NDkz?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTVROak1EZGxNalV0TWpNMlpDMDBNekUzTFdKbE4ySXRabVExWWpnNFkyWTFORGt6P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfOWQ4OTg2MTctMWUwOC00NTc5LTkxZDQtZjExYWRjMjFlZjA5?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmT1dRNE9UZzJNVGN0TVdVd09DMDBOVGM1TFRreFpEUXRaakV4WVdSak1qRmxaakE1P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -1485,16 +1542,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11995" ], "x-ms-request-id": [ - "25aac4bd-dc0c-405f-a182-1c01b54763d4" + "8f751ad3-5dc7-4282-8056-ad8031f383cd" ], "x-ms-correlation-request-id": [ - "25aac4bd-dc0c-405f-a182-1c01b54763d4" + "8f751ad3-5dc7-4282-8056-ad8031f383cd" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T222209Z:25aac4bd-dc0c-405f-a182-1c01b54763d4" + "WESTUS2:20200916T230841Z:8f751ad3-5dc7-4282-8056-ad8031f383cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1503,7 +1560,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:22:08 GMT" + "Wed, 16 Sep 2020 23:08:41 GMT" ], "Content-Length": [ "20" @@ -1519,15 +1576,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMTNjMDdlMjUtMjM2ZC00MzE3LWJlN2ItZmQ1Yjg4Y2Y1NDkz?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTVROak1EZGxNalV0TWpNMlpDMDBNekUzTFdKbE4ySXRabVExWWpnNFkyWTFORGt6P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfOWQ4OTg2MTctMWUwOC00NTc5LTkxZDQtZjExYWRjMjFlZjA5?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmT1dRNE9UZzJNVGN0TVdVd09DMDBOVGM1TFRreFpEUXRaakV4WVdSak1qRmxaakE1P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -1542,16 +1599,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11994" ], "x-ms-request-id": [ - "46fde5f8-230a-42e3-800a-254edaa534a3" + "a3d5900a-ce35-4c33-982e-39b37333a8b8" ], "x-ms-correlation-request-id": [ - "46fde5f8-230a-42e3-800a-254edaa534a3" + "a3d5900a-ce35-4c33-982e-39b37333a8b8" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T222239Z:46fde5f8-230a-42e3-800a-254edaa534a3" + "WESTUS2:20200916T230911Z:a3d5900a-ce35-4c33-982e-39b37333a8b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1560,7 +1617,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:22:38 GMT" + "Wed, 16 Sep 2020 23:09:10 GMT" ], "Content-Length": [ "22" @@ -1576,15 +1633,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862/providers/Microsoft.Devices/IotHubs/ps525?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczUyNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226/providers/Microsoft.Devices/IotHubs/ps2785?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjIyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI3ODU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -1599,16 +1656,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11993" ], "x-ms-request-id": [ - "79e97670-d322-402c-8f0d-8e60d66a6630" + "a77c8943-9a4e-45a2-b2ea-7f04238d3285" ], "x-ms-correlation-request-id": [ - "79e97670-d322-402c-8f0d-8e60d66a6630" + "a77c8943-9a4e-45a2-b2ea-7f04238d3285" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T222240Z:79e97670-d322-402c-8f0d-8e60d66a6630" + "WESTUS2:20200916T230911Z:a77c8943-9a4e-45a2-b2ea-7f04238d3285" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1617,10 +1674,10 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:22:39 GMT" + "Wed, 16 Sep 2020 23:09:11 GMT" ], "Content-Length": [ - "1455" + "1460" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1629,25 +1686,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862/providers/Microsoft.Devices/IotHubs/ps525\",\r\n \"name\": \"ps525\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9862\",\r\n \"etag\": \"AAAAAAiBfpA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps525.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps525\",\r\n \"endpoint\": \"sb://iothub-ns-ps525-2248594-efac455d87.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226/providers/Microsoft.Devices/IotHubs/ps2785\",\r\n \"name\": \"ps2785\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6226\",\r\n \"etag\": \"AAAAAiGv7GU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2785.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2785\",\r\n \"endpoint\": \"sb://iothub-ns-ps2785-4636505-17dce995a5.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862/providers/Microsoft.Devices/IotHubs/ps525?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczUyNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226/providers/Microsoft.Devices/IotHubs/ps2785?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjIyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI3ODU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c16802c4-510b-4357-9f16-df6f2d28dd8c" + "f3a85cf2-1b7c-4fc7-b7ec-f8e60ac93fbf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -1662,16 +1719,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11992" ], "x-ms-request-id": [ - "8425cc17-9c66-4830-81de-dede23ce2671" + "89e42742-34ec-4e23-9d63-951e13e374c2" ], "x-ms-correlation-request-id": [ - "8425cc17-9c66-4830-81de-dede23ce2671" + "89e42742-34ec-4e23-9d63-951e13e374c2" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T222240Z:8425cc17-9c66-4830-81de-dede23ce2671" + "WESTUS2:20200916T230912Z:89e42742-34ec-4e23-9d63-951e13e374c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1680,10 +1737,10 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:22:40 GMT" + "Wed, 16 Sep 2020 23:09:12 GMT" ], "Content-Length": [ - "1455" + "1460" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1692,25 +1749,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862/providers/Microsoft.Devices/IotHubs/ps525\",\r\n \"name\": \"ps525\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9862\",\r\n \"etag\": \"AAAAAAiBfpA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps525.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps525\",\r\n \"endpoint\": \"sb://iothub-ns-ps525-2248594-efac455d87.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226/providers/Microsoft.Devices/IotHubs/ps2785\",\r\n \"name\": \"ps2785\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6226\",\r\n \"etag\": \"AAAAAiGv7GU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2785.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2785\",\r\n \"endpoint\": \"sb://iothub-ns-ps2785-4636505-17dce995a5.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862/providers/Microsoft.Devices/IotHubs/ps525?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczUyNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226/providers/Microsoft.Devices/IotHubs/ps2785?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjIyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI3ODU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cd2bd115-7805-4820-a33c-4e4eb2f1b6e3" + "dfe8373f-b17a-44cf-b4d6-e5c925e1d057" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -1725,16 +1782,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11991" ], "x-ms-request-id": [ - "06614350-d0f5-4980-bc82-c845a823c48a" + "504dec92-4efd-4a3b-af91-3031b39e85b2" ], "x-ms-correlation-request-id": [ - "06614350-d0f5-4980-bc82-c845a823c48a" + "504dec92-4efd-4a3b-af91-3031b39e85b2" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T222241Z:06614350-d0f5-4980-bc82-c845a823c48a" + "WESTUS2:20200916T230913Z:504dec92-4efd-4a3b-af91-3031b39e85b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1743,10 +1800,10 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:22:40 GMT" + "Wed, 16 Sep 2020 23:09:12 GMT" ], "Content-Length": [ - "1455" + "1460" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1755,19 +1812,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862/providers/Microsoft.Devices/IotHubs/ps525\",\r\n \"name\": \"ps525\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9862\",\r\n \"etag\": \"AAAAAAiBfpA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps525.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps525\",\r\n \"endpoint\": \"sb://iothub-ns-ps525-2248594-efac455d87.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226/providers/Microsoft.Devices/IotHubs/ps2785\",\r\n \"name\": \"ps2785\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6226\",\r\n \"etag\": \"AAAAAiGv7GU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2785.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2785\",\r\n \"endpoint\": \"sb://iothub-ns-ps2785-4636505-17dce995a5.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862/providers/Microsoft.Devices/IotHubs/ps525?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczUyNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226/providers/Microsoft.Devices/IotHubs/ps2785?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjIyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI3ODU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -1782,16 +1839,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11989" ], "x-ms-request-id": [ - "e9289139-79c3-4f65-990c-a45345596cba" + "756c7ff4-01f9-4037-9eda-ed27f5302be7" ], "x-ms-correlation-request-id": [ - "e9289139-79c3-4f65-990c-a45345596cba" + "756c7ff4-01f9-4037-9eda-ed27f5302be7" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T222319Z:e9289139-79c3-4f65-990c-a45345596cba" + "WESTUS2:20200916T230947Z:756c7ff4-01f9-4037-9eda-ed27f5302be7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1800,10 +1857,10 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:23:19 GMT" + "Wed, 16 Sep 2020 23:09:46 GMT" ], "Content-Length": [ - "1455" + "1460" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1812,25 +1869,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862/providers/Microsoft.Devices/IotHubs/ps525\",\r\n \"name\": \"ps525\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps9862\",\r\n \"etag\": \"AAAAAAiBf0o=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps525.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps525\",\r\n \"endpoint\": \"sb://iothub-ns-ps525-2248594-efac455d87.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226/providers/Microsoft.Devices/IotHubs/ps2785\",\r\n \"name\": \"ps2785\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6226\",\r\n \"etag\": \"AAAAAiGySNo=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2785.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2785\",\r\n \"endpoint\": \"sb://iothub-ns-ps2785-4636505-17dce995a5.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862/providers/Microsoft.Devices/IotHubs/ps525/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczUyNS9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226/providers/Microsoft.Devices/IotHubs/ps2785/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjIyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI3ODUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e3ffa852-0d5c-4d24-9c4a-00466b0250bc" + "cf107396-a348-441d-b906-643a1a021496" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -1848,13 +1905,13 @@ "1199" ], "x-ms-request-id": [ - "5b7c1c91-1bff-42ee-89ed-2cc9414a5947" + "f5086e70-82e6-4740-9107-fab71e08c8e7" ], "x-ms-correlation-request-id": [ - "5b7c1c91-1bff-42ee-89ed-2cc9414a5947" + "f5086e70-82e6-4740-9107-fab71e08c8e7" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T222241Z:5b7c1c91-1bff-42ee-89ed-2cc9414a5947" + "WESTUS2:20200916T230913Z:f5086e70-82e6-4740-9107-fab71e08c8e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1863,7 +1920,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:22:40 GMT" + "Wed, 16 Sep 2020 23:09:12 GMT" ], "Content-Length": [ "905" @@ -1875,25 +1932,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"84c96bo5GlAwWIr4ntqTgMCK2dDzZhehBnn1eg3/uDs=\",\r\n \"secondaryKey\": \"60H7wOeQxoJ0JTHQCUViY2mh19ljhgwp135lrxYb5TA=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"WapzsllcxC5J1YH9vj0RmhDGIJw+S8wTD7VA9SG7t0s=\",\r\n \"secondaryKey\": \"MIqYk2wzS6b206ZAaM1bFveCi+gkoJ6cvXZ7MG6P3aE=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"zVPY80uKVb9YgsNSCL+S9ziMSW8Vtb96fvV3zi796aU=\",\r\n \"secondaryKey\": \"hOdClolv6HJdGlYMzerGS64nukWvNrj9jQ612XMngxw=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"7XEJ+Ysn8Ss6ZMizjHqrqwphr1wXniCCSCdPQzSNO8s=\",\r\n \"secondaryKey\": \"vWZ4foZoGgmOm0baHJRTshZ/5W3V8VNjubejT5XSnpA=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"ep4nXApT9KNeh8NmadNRJQdCd7kt3W5izdYUXnLcUzo=\",\r\n \"secondaryKey\": \"DxII5/txB9qrjujM+faoTc7fGIkWeoK+Mzl6o4XAKfo=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"hJFZj7XKY+AjeBT+eGA3YXWsPibvuPjR3OV/MpNH0YU=\",\r\n \"secondaryKey\": \"I2bT+W5u1MrLg9VgrZ4mnqjo9W+nqwoXro1iXvbks40=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"nFUN4DjuR9ssGgOXnXktDIvj4m2gQItB4brgra2LXpY=\",\r\n \"secondaryKey\": \"B8PTbBIHOhtGa3kE+WwiGTuuZ86F7h9DjuFmt3lOI/A=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"StXTppXtfcBcsjH6fnUat/LYqmXgFU6pN++PRYoSaEw=\",\r\n \"secondaryKey\": \"aYFgGVg212HCeqJqjnCXrIg0r0DspVSb9vXdTzDexlo=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"jyYG9XYR4f1q2MKvrFsIISXpIIFj0HspUu9PB8jlorU=\",\r\n \"secondaryKey\": \"tQ/BB/5rL85Esu2IYLftjp/6YhAS8KLea0Kwvg1zwbQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"rjCplEbNbASZQall5YOSTlOuMJTKFXUE9e3dF6s/l/8=\",\r\n \"secondaryKey\": \"tM3HKTuzUmtSIcfMxuSnA+0lclxT44cKM76D1uj3pUM=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862/providers/Microsoft.Devices/IotHubs/ps525/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczUyNS9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226/providers/Microsoft.Devices/IotHubs/ps2785/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjIyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI3ODUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e527f825-e0ff-4ab4-9e9f-ea89703503ef" + "0effbf0a-74ae-4be5-8d7d-422362bed702" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -1911,13 +1968,13 @@ "1198" ], "x-ms-request-id": [ - "8bc2a919-8e0a-424f-bea3-afddb288e4f4" + "5b18aa75-b0ce-43f3-940c-17ad5eda58dc" ], "x-ms-correlation-request-id": [ - "8bc2a919-8e0a-424f-bea3-afddb288e4f4" + "5b18aa75-b0ce-43f3-940c-17ad5eda58dc" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T222319Z:8bc2a919-8e0a-424f-bea3-afddb288e4f4" + "WESTUS2:20200916T230947Z:5b18aa75-b0ce-43f3-940c-17ad5eda58dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1926,7 +1983,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:23:19 GMT" + "Wed, 16 Sep 2020 23:09:46 GMT" ], "Content-Length": [ "1078" @@ -1938,19 +1995,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"84c96bo5GlAwWIr4ntqTgMCK2dDzZhehBnn1eg3/uDs=\",\r\n \"secondaryKey\": \"60H7wOeQxoJ0JTHQCUViY2mh19ljhgwp135lrxYb5TA=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"WapzsllcxC5J1YH9vj0RmhDGIJw+S8wTD7VA9SG7t0s=\",\r\n \"secondaryKey\": \"MIqYk2wzS6b206ZAaM1bFveCi+gkoJ6cvXZ7MG6P3aE=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"zVPY80uKVb9YgsNSCL+S9ziMSW8Vtb96fvV3zi796aU=\",\r\n \"secondaryKey\": \"hOdClolv6HJdGlYMzerGS64nukWvNrj9jQ612XMngxw=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"7XEJ+Ysn8Ss6ZMizjHqrqwphr1wXniCCSCdPQzSNO8s=\",\r\n \"secondaryKey\": \"vWZ4foZoGgmOm0baHJRTshZ/5W3V8VNjubejT5XSnpA=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"ep4nXApT9KNeh8NmadNRJQdCd7kt3W5izdYUXnLcUzo=\",\r\n \"secondaryKey\": \"DxII5/txB9qrjujM+faoTc7fGIkWeoK+Mzl6o4XAKfo=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"ServiceKey\",\r\n \"primaryKey\": \"wrMB2VuKW5KPCyKDhwdFEhMNzsrnEHB8tJuyPEMBpkM=\",\r\n \"secondaryKey\": \"kl66T+KsxG9sk1m+QuvhBdww6G07sy7Q2YlJ0iJfFeU=\",\r\n \"rights\": \"ServiceConnect\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"hJFZj7XKY+AjeBT+eGA3YXWsPibvuPjR3OV/MpNH0YU=\",\r\n \"secondaryKey\": \"I2bT+W5u1MrLg9VgrZ4mnqjo9W+nqwoXro1iXvbks40=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"nFUN4DjuR9ssGgOXnXktDIvj4m2gQItB4brgra2LXpY=\",\r\n \"secondaryKey\": \"B8PTbBIHOhtGa3kE+WwiGTuuZ86F7h9DjuFmt3lOI/A=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"StXTppXtfcBcsjH6fnUat/LYqmXgFU6pN++PRYoSaEw=\",\r\n \"secondaryKey\": \"aYFgGVg212HCeqJqjnCXrIg0r0DspVSb9vXdTzDexlo=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"jyYG9XYR4f1q2MKvrFsIISXpIIFj0HspUu9PB8jlorU=\",\r\n \"secondaryKey\": \"tQ/BB/5rL85Esu2IYLftjp/6YhAS8KLea0Kwvg1zwbQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"rjCplEbNbASZQall5YOSTlOuMJTKFXUE9e3dF6s/l/8=\",\r\n \"secondaryKey\": \"tM3HKTuzUmtSIcfMxuSnA+0lclxT44cKM76D1uj3pUM=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"ServiceKey\",\r\n \"primaryKey\": \"v0ko0ppE2SRejKjtsSMEriYrN8ouWvVlXWZESb1jy44=\",\r\n \"secondaryKey\": \"JNjm/31x3k7ybeTmFODJDgqLQtByH70iSN0uU0xw1go=\",\r\n \"rights\": \"ServiceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYWE0YTYwZGItNWY5Ny00NThlLThmOGUtZDQ4ZTAzYzAyMTQy?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWVdFMFlUWXdaR0l0TldZNU55MDBOVGhsTFRobU9HVXRaRFE0WlRBell6QXlNVFF5P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNWI1NzkxMDMtMDA4ZS00OThmLWIxOTItOWY1YTlkYWNhNjI5?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTldJMU56a3hNRE10TURBNFpTMDBPVGhtTFdJeE9USXRPV1kxWVRsa1lXTmhOakk1P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -1961,20 +2018,20 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], "x-ms-request-id": [ - "fa38e821-b659-48cc-9350-7ded6ec7e403" + "7a409de8-8af8-4746-8266-d527c3bfd89c" ], "x-ms-correlation-request-id": [ - "fa38e821-b659-48cc-9350-7ded6ec7e403" + "7a409de8-8af8-4746-8266-d527c3bfd89c" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T222318Z:fa38e821-b659-48cc-9350-7ded6ec7e403" + "WESTUS2:20200916T230946Z:7a409de8-8af8-4746-8266-d527c3bfd89c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1983,7 +2040,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:23:18 GMT" + "Wed, 16 Sep 2020 23:09:45 GMT" ], "Content-Length": [ "22" @@ -1999,21 +2056,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862/providers/Microsoft.Devices/IotHubs/ps525/IotHubKeys/ServiceKey/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczUyNS9Jb3RIdWJLZXlzL1NlcnZpY2VLZXkvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226/providers/Microsoft.Devices/IotHubs/ps2785/IotHubKeys/ServiceKey/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjIyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI3ODUvSW90SHViS2V5cy9TZXJ2aWNlS2V5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldw==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "804229a1-7fde-43a7-9e25-3080083f591c" + "658f1875-77da-4dca-b98c-01321525a101" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -2031,13 +2088,13 @@ "1197" ], "x-ms-request-id": [ - "3e9be3ef-50bc-4d76-82e5-0de435b49553" + "16c09af6-bfe4-443c-9e41-23214fda7444" ], "x-ms-correlation-request-id": [ - "3e9be3ef-50bc-4d76-82e5-0de435b49553" + "16c09af6-bfe4-443c-9e41-23214fda7444" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T222320Z:3e9be3ef-50bc-4d76-82e5-0de435b49553" + "WESTUS2:20200916T230947Z:16c09af6-bfe4-443c-9e41-23214fda7444" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2046,7 +2103,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:23:19 GMT" + "Wed, 16 Sep 2020 23:09:46 GMT" ], "Content-Length": [ "172" @@ -2058,19 +2115,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"keyName\": \"ServiceKey\",\r\n \"primaryKey\": \"wrMB2VuKW5KPCyKDhwdFEhMNzsrnEHB8tJuyPEMBpkM=\",\r\n \"secondaryKey\": \"kl66T+KsxG9sk1m+QuvhBdww6G07sy7Q2YlJ0iJfFeU=\",\r\n \"rights\": \"ServiceConnect\"\r\n}", + "ResponseBody": "{\r\n \"keyName\": \"ServiceKey\",\r\n \"primaryKey\": \"v0ko0ppE2SRejKjtsSMEriYrN8ouWvVlXWZESb1jy44=\",\r\n \"secondaryKey\": \"JNjm/31x3k7ybeTmFODJDgqLQtByH70iSN0uU0xw1go=\",\r\n \"rights\": \"ServiceConnect\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862/providers/Microsoft.Devices/provisioningServices/ps712/operationResults/b3NfaWRfMjgwYWJlNzUtYjIwZS00MmQ1LTg0MWMtMmQ4YWQ1NzA5ZjFj?api-version=2017-11-15&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3MTIvb3BlcmF0aW9uUmVzdWx0cy9iM05mYVdSZk1qZ3dZV0psTnpVdFlqSXdaUzAwTW1RMUxUZzBNV010TW1RNFlXUTFOekE1WmpGaj9hcGktdmVyc2lvbj0yMDE3LTExLTE1JmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226/providers/Microsoft.Devices/provisioningServices/ps3277/operationResults/b3NfaWRfMGYxMmY0MTctYWYyMS00MjFlLWJhMGYtNzU5YTY1ZWY1ODU3?api-version=2017-11-15&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjIyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMzMjc3L29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZNR1l4TW1ZME1UY3RZV1l5TVMwME1qRmxMV0poTUdZdE56VTVZVFkxWldZMU9EVTM/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -2085,16 +2142,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11992" ], "x-ms-request-id": [ - "8ef3fb1f-e371-411e-ac86-ab772fe322ba" + "fc70b00c-e682-41a4-8c8e-8cb5dbf07649" ], "x-ms-correlation-request-id": [ - "8ef3fb1f-e371-411e-ac86-ab772fe322ba" + "fc70b00c-e682-41a4-8c8e-8cb5dbf07649" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T222352Z:8ef3fb1f-e371-411e-ac86-ab772fe322ba" + "WESTUS2:20200916T231019Z:fc70b00c-e682-41a4-8c8e-8cb5dbf07649" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2103,7 +2160,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:23:51 GMT" + "Wed, 16 Sep 2020 23:10:19 GMT" ], "Content-Length": [ "22" @@ -2119,15 +2176,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862/providers/Microsoft.Devices/provisioningServices/ps712/operationResults/b3NfaWRfNDM3OWEwYjAtMmZiOS00NjgyLThhZWQtODMwNjI4YjUzNTU0?api-version=2017-11-15&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3MTIvb3BlcmF0aW9uUmVzdWx0cy9iM05mYVdSZk5ETTNPV0V3WWpBdE1tWmlPUzAwTmpneUxUaGhaV1F0T0RNd05qSTRZalV6TlRVMD9hcGktdmVyc2lvbj0yMDE3LTExLTE1JmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226/providers/Microsoft.Devices/provisioningServices/ps3277/operationResults/b3NfaWRfNzdkZTY1MWYtZDA3Mi00MzI4LTg4YzYtMzllYTQ1MTI2Y2Ex?api-version=2017-11-15&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjIyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMzMjc3L29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZOemRrWlRZMU1XWXRaREEzTWkwME16STRMVGc0WXpZdE16bGxZVFExTVRJMlkyRXg/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -2138,20 +2195,20 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], "x-ms-request-id": [ - "dc52d2a9-0229-4555-90b2-de6ba16b80ff" + "aff9ac43-3026-47f1-a124-6678e5e6866f" ], "x-ms-correlation-request-id": [ - "dc52d2a9-0229-4555-90b2-de6ba16b80ff" + "aff9ac43-3026-47f1-a124-6678e5e6866f" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T222423Z:dc52d2a9-0229-4555-90b2-de6ba16b80ff" + "WESTUS2:20200916T231051Z:aff9ac43-3026-47f1-a124-6678e5e6866f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2160,7 +2217,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:24:23 GMT" + "Wed, 16 Sep 2020 23:10:51 GMT" ], "Content-Length": [ "22" @@ -2176,15 +2233,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps9862/providers/Microsoft.Devices/provisioningServices/ps712/operationResults/b3NfaWRfMzBlZTY2OTYtZDAxNi00Y2RjLWJkMzgtMmIwZGQ2NWM5MGNk?api-version=2017-11-15&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzOTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM3MTIvb3BlcmF0aW9uUmVzdWx0cy9iM05mYVdSZk16QmxaVFkyT1RZdFpEQXhOaTAwWTJSakxXSmtNemd0TW1Jd1pHUTJOV001TUdOaz9hcGktdmVyc2lvbj0yMDE3LTExLTE1JmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6226/providers/Microsoft.Devices/provisioningServices/ps3277/operationResults/b3NfaWRfNTY3OTkzNjMtNTliYS00MzFkLTlmYjItMTk5ZTNkMWRjMTNl?api-version=2017-11-15&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjIyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMzMjc3L29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZOVFkzT1Rrek5qTXROVGxpWVMwME16RmtMVGxtWWpJdE1UazVaVE5rTVdSak1UTmw/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -2199,16 +2256,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11982" ], "x-ms-request-id": [ - "64289416-8cf7-45f7-87a5-ca6468a06c04" + "b9129d6b-8847-460b-9998-89df948c64d9" ], "x-ms-correlation-request-id": [ - "64289416-8cf7-45f7-87a5-ca6468a06c04" + "b9129d6b-8847-460b-9998-89df948c64d9" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T222456Z:64289416-8cf7-45f7-87a5-ca6468a06c04" + "WESTUS2:20200916T231123Z:b9129d6b-8847-460b-9998-89df948c64d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2217,7 +2274,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:24:55 GMT" + "Wed, 16 Sep 2020 23:11:23 GMT" ], "Content-Length": [ "22" @@ -2233,22 +2290,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourcegroups/ps9862?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlZ3JvdXBzL3BzOTg2Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourcegroups/ps6226?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlZ3JvdXBzL3BzNjIyNj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d96c5465-28a1-413b-8694-4d73c159c80a" + "025b0f75-8025-4ddb-aa9f-7b7e6cc50d52" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -2259,7 +2316,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NjItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyMjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2268,13 +2325,13 @@ "14999" ], "x-ms-request-id": [ - "7a972a9a-93d7-4150-aa31-c5ae6946f1b1" + "b4d7018c-b4e0-47ca-9adb-e67b8a8ea5e2" ], "x-ms-correlation-request-id": [ - "7a972a9a-93d7-4150-aa31-c5ae6946f1b1" + "b4d7018c-b4e0-47ca-9adb-e67b8a8ea5e2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T222457Z:7a972a9a-93d7-4150-aa31-c5ae6946f1b1" + "WESTUS2:20200916T231124Z:b4d7018c-b4e0-47ca-9adb-e67b8a8ea5e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2283,7 +2340,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:24:57 GMT" + "Wed, 16 Sep 2020 23:11:23 GMT" ], "Expires": [ "-1" @@ -2296,16 +2353,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NjItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE5qSXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyMjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU1qWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -2316,7 +2373,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NjItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyMjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2325,13 +2382,13 @@ "11999" ], "x-ms-request-id": [ - "e7719034-d9d7-4581-ae18-7f32b4a4454e" + "e475ae5b-526e-4e98-a868-28433e0ae8e5" ], "x-ms-correlation-request-id": [ - "e7719034-d9d7-4581-ae18-7f32b4a4454e" + "e475ae5b-526e-4e98-a868-28433e0ae8e5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T222512Z:e7719034-d9d7-4581-ae18-7f32b4a4454e" + "WESTUS2:20200916T231139Z:e475ae5b-526e-4e98-a868-28433e0ae8e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2340,7 +2397,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:25:12 GMT" + "Wed, 16 Sep 2020 23:11:38 GMT" ], "Expires": [ "-1" @@ -2353,16 +2410,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NjItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE5qSXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyMjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU1qWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -2373,7 +2430,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NjItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyMjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2382,13 +2439,13 @@ "11998" ], "x-ms-request-id": [ - "248371f7-722e-41b3-b546-9ef5c1787da9" + "1809c5a0-923e-444f-bdcf-596a52ca41ff" ], "x-ms-correlation-request-id": [ - "248371f7-722e-41b3-b546-9ef5c1787da9" + "1809c5a0-923e-444f-bdcf-596a52ca41ff" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T222527Z:248371f7-722e-41b3-b546-9ef5c1787da9" + "WESTUS2:20200916T231154Z:1809c5a0-923e-444f-bdcf-596a52ca41ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2397,7 +2454,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:25:27 GMT" + "Wed, 16 Sep 2020 23:11:54 GMT" ], "Expires": [ "-1" @@ -2410,16 +2467,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NjItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE5qSXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyMjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU1qWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -2430,7 +2487,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NjItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyMjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2439,13 +2496,13 @@ "11997" ], "x-ms-request-id": [ - "c8e9c115-d5b5-42cf-ad95-d2e19c3189c8" + "03f92497-e0de-4df4-915f-643938ca369d" ], "x-ms-correlation-request-id": [ - "c8e9c115-d5b5-42cf-ad95-d2e19c3189c8" + "03f92497-e0de-4df4-915f-643938ca369d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T222542Z:c8e9c115-d5b5-42cf-ad95-d2e19c3189c8" + "WESTUS2:20200916T231209Z:03f92497-e0de-4df4-915f-643938ca369d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2454,7 +2511,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:25:42 GMT" + "Wed, 16 Sep 2020 23:12:09 GMT" ], "Expires": [ "-1" @@ -2467,16 +2524,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NjItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE5qSXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyMjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU1qWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -2487,7 +2544,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NjItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyMjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2496,13 +2553,13 @@ "11996" ], "x-ms-request-id": [ - "3798011c-e288-4ab4-a9e2-121237cd91b9" + "1a81d988-adf5-4c7f-aec9-6f265d427367" ], "x-ms-correlation-request-id": [ - "3798011c-e288-4ab4-a9e2-121237cd91b9" + "1a81d988-adf5-4c7f-aec9-6f265d427367" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T222557Z:3798011c-e288-4ab4-a9e2-121237cd91b9" + "WESTUS2:20200916T231224Z:1a81d988-adf5-4c7f-aec9-6f265d427367" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2511,7 +2568,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:25:57 GMT" + "Wed, 16 Sep 2020 23:12:24 GMT" ], "Expires": [ "-1" @@ -2524,16 +2581,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NjItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE5qSXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyMjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU1qWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -2544,7 +2601,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NjItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyMjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2553,13 +2610,13 @@ "11995" ], "x-ms-request-id": [ - "0282eb65-deba-46c7-a2f2-7afa97a3857b" + "ac050f49-14ce-4715-8bb7-54d965e42b3b" ], "x-ms-correlation-request-id": [ - "0282eb65-deba-46c7-a2f2-7afa97a3857b" + "ac050f49-14ce-4715-8bb7-54d965e42b3b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T222613Z:0282eb65-deba-46c7-a2f2-7afa97a3857b" + "WESTUS2:20200916T231239Z:ac050f49-14ce-4715-8bb7-54d965e42b3b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2568,7 +2625,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:26:13 GMT" + "Wed, 16 Sep 2020 23:12:39 GMT" ], "Expires": [ "-1" @@ -2581,16 +2638,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NjItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE5qSXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyMjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU1qWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -2601,7 +2658,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NjItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyMjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2610,13 +2667,13 @@ "11994" ], "x-ms-request-id": [ - "a6bc9075-d0a2-443a-a2bd-a52d8b2ac103" + "368066a6-557c-493b-bdb3-244acc16be37" ], "x-ms-correlation-request-id": [ - "a6bc9075-d0a2-443a-a2bd-a52d8b2ac103" + "368066a6-557c-493b-bdb3-244acc16be37" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T222628Z:a6bc9075-d0a2-443a-a2bd-a52d8b2ac103" + "WESTUS2:20200916T231254Z:368066a6-557c-493b-bdb3-244acc16be37" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2625,7 +2682,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:26:28 GMT" + "Wed, 16 Sep 2020 23:12:54 GMT" ], "Expires": [ "-1" @@ -2638,16 +2695,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NjItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE5qSXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyMjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU1qWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -2658,7 +2715,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NjItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyMjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2667,13 +2724,13 @@ "11993" ], "x-ms-request-id": [ - "55172c02-a1e6-4749-aad2-05e4f6eef161" + "ab452ae0-9372-4bb4-bfd5-b0be524046a6" ], "x-ms-correlation-request-id": [ - "55172c02-a1e6-4749-aad2-05e4f6eef161" + "ab452ae0-9372-4bb4-bfd5-b0be524046a6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T222643Z:55172c02-a1e6-4749-aad2-05e4f6eef161" + "WESTUS2:20200916T231310Z:ab452ae0-9372-4bb4-bfd5-b0be524046a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2682,7 +2739,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:26:42 GMT" + "Wed, 16 Sep 2020 23:13:09 GMT" ], "Expires": [ "-1" @@ -2695,16 +2752,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NjItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE5qSXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyMjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU1qWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -2715,7 +2772,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NjItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyMjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2724,13 +2781,13 @@ "11992" ], "x-ms-request-id": [ - "a1a1e031-6f85-4d72-b0a3-ce111820e2c0" + "e7827cf0-25b2-4f5e-8f7c-ee98478b83b7" ], "x-ms-correlation-request-id": [ - "a1a1e031-6f85-4d72-b0a3-ce111820e2c0" + "e7827cf0-25b2-4f5e-8f7c-ee98478b83b7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T222658Z:a1a1e031-6f85-4d72-b0a3-ce111820e2c0" + "WESTUS2:20200916T231325Z:e7827cf0-25b2-4f5e-8f7c-ee98478b83b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2739,7 +2796,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:26:57 GMT" + "Wed, 16 Sep 2020 23:13:24 GMT" ], "Expires": [ "-1" @@ -2752,16 +2809,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NjItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE5qSXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyMjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU1qWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -2772,7 +2829,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NjItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyMjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2781,13 +2838,13 @@ "11991" ], "x-ms-request-id": [ - "b3d96418-d204-476f-b767-4cb11cb46558" + "3e44c073-2490-493a-ad6f-2ac0582d8595" ], "x-ms-correlation-request-id": [ - "b3d96418-d204-476f-b767-4cb11cb46558" + "3e44c073-2490-493a-ad6f-2ac0582d8595" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T222713Z:b3d96418-d204-476f-b767-4cb11cb46558" + "WESTUS2:20200916T231340Z:3e44c073-2490-493a-ad6f-2ac0582d8595" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2796,7 +2853,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:27:12 GMT" + "Wed, 16 Sep 2020 23:13:39 GMT" ], "Expires": [ "-1" @@ -2809,16 +2866,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NjItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE5qSXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyMjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU1qWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -2829,7 +2886,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NjItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyMjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2838,13 +2895,13 @@ "11990" ], "x-ms-request-id": [ - "fcc4280a-7d3f-4cd1-b99a-8bf0166e295f" + "70cf8acf-32c5-4f14-b429-f4fe0494c498" ], "x-ms-correlation-request-id": [ - "fcc4280a-7d3f-4cd1-b99a-8bf0166e295f" + "70cf8acf-32c5-4f14-b429-f4fe0494c498" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T222728Z:fcc4280a-7d3f-4cd1-b99a-8bf0166e295f" + "WESTUS2:20200916T231355Z:70cf8acf-32c5-4f14-b429-f4fe0494c498" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2853,7 +2910,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:27:27 GMT" + "Wed, 16 Sep 2020 23:13:55 GMT" ], "Expires": [ "-1" @@ -2866,16 +2923,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NjItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE5qSXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyMjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU1qWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -2885,23 +2942,17 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NjItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11989" ], "x-ms-request-id": [ - "e7a3bdf5-54c9-4501-8f18-2c84c1b19830" + "0d246cc5-c4f9-4e6b-be5d-24470b8ed964" ], "x-ms-correlation-request-id": [ - "e7a3bdf5-54c9-4501-8f18-2c84c1b19830" + "0d246cc5-c4f9-4e6b-be5d-24470b8ed964" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T222743Z:e7a3bdf5-54c9-4501-8f18-2c84c1b19830" + "WESTUS2:20200916T231410Z:0d246cc5-c4f9-4e6b-be5d-24470b8ed964" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2910,115 +2961,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:27:43 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NjItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE5qSXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NjItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" - ], - "x-ms-request-id": [ - "7236c93e-c9e1-4e6b-ba45-7b6c14234c1f" - ], - "x-ms-correlation-request-id": [ - "7236c93e-c9e1-4e6b-ba45-7b6c14234c1f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190930T222758Z:7236c93e-c9e1-4e6b-ba45-7b6c14234c1f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 30 Sep 2019 22:27:57 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NjItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE5qSXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" - ], - "x-ms-request-id": [ - "b8314396-3186-40b0-8406-63d96619e4bb" - ], - "x-ms-correlation-request-id": [ - "b8314396-3186-40b0-8406-63d96619e4bb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190930T222813Z:b8314396-3186-40b0-8406-63d96619e4bb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 30 Sep 2019 22:28:13 GMT" + "Wed, 16 Sep 2020 23:14:10 GMT" ], "Expires": [ "-1" @@ -3031,16 +2974,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NjItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE5qSXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyMjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU1qWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -3051,16 +2994,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11988" ], "x-ms-request-id": [ - "f36eaf8d-931a-4e52-b4ec-610a288fca1e" + "eea38b8d-2622-413e-95a9-85419d53b33d" ], "x-ms-correlation-request-id": [ - "f36eaf8d-931a-4e52-b4ec-610a288fca1e" + "eea38b8d-2622-413e-95a9-85419d53b33d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190930T222813Z:f36eaf8d-931a-4e52-b4ec-610a288fca1e" + "WESTUS2:20200916T231410Z:eea38b8d-2622-413e-95a9-85419d53b33d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3069,7 +3012,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:28:13 GMT" + "Wed, 16 Sep 2020 23:14:10 GMT" ], "Expires": [ "-1" @@ -3084,9 +3027,9 @@ ], "Names": { "Test-AzureIotDpsLinkedHubLifeCycle": [ - "ps712", - "ps9862", - "ps525" + "ps3277", + "ps6226", + "ps2785" ] }, "Variables": { diff --git a/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/SessionRecords/Commands.DeviceProvisioningServices.Test.IotDpsRegistrationTests/IotDpsRegistrationLifeCycle.json b/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/SessionRecords/Commands.DeviceProvisioningServices.Test.IotDpsRegistrationTests/IotDpsRegistrationLifeCycle.json index 53754d17ddf8..52f63cf767b9 100644 --- a/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/SessionRecords/Commands.DeviceProvisioningServices.Test.IotDpsRegistrationTests/IotDpsRegistrationLifeCycle.json +++ b/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/SessionRecords/Commands.DeviceProvisioningServices.Test.IotDpsRegistrationTests/IotDpsRegistrationLifeCycle.json @@ -7,16 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ba360065-7198-489b-914c-ec59d1750526" + "86875560-81eb-4b81-8d5a-961de16a5b81" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -27,16 +27,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-request-id": [ - "604ed475-7a68-4738-9a16-e6e4700e553b" + "766fb552-20dd-48ac-b79a-1227c205c008" ], "x-ms-correlation-request-id": [ - "604ed475-7a68-4738-9a16-e6e4700e553b" + "766fb552-20dd-48ac-b79a-1227c205c008" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184212Z:604ed475-7a68-4738-9a16-e6e4700e553b" + "WESTUS2:20200916T225505Z:766fb552-20dd-48ac-b79a-1227c205c008" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:42:12 GMT" + "Wed, 16 Sep 2020 22:55:04 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54,29 +54,29 @@ "-1" ], "Content-Length": [ - "5625" + "6060" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices\",\r\n \"namespace\": \"Microsoft.Devices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0cd79364-7a90-4354-9984-6e36c841418d\",\r\n \"roleDefinitionId\": \"C121DF10-FE58-4BC4-97F9-8296879F7BBB\"\r\n },\r\n {\r\n \"applicationId\": \"29f411f1-b2cf-4043-8ac8-2185d7316811\"\r\n },\r\n {\r\n \"applicationId\": \"89d10474-74af-4874-99a7-c23c2f643083\",\r\n \"roleDefinitionId\": \"7df22794-26e3-4f94-9d50-a4f0f6e1cb41\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/eventGridFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-31\",\r\n \"2018-01-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/securitySettings\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants/securitySettings\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices\",\r\n \"namespace\": \"Microsoft.Devices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0cd79364-7a90-4354-9984-6e36c841418d\",\r\n \"roleDefinitionId\": \"C121DF10-FE58-4BC4-97F9-8296879F7BBB\"\r\n },\r\n {\r\n \"applicationId\": \"29f411f1-b2cf-4043-8ac8-2185d7316811\"\r\n },\r\n {\r\n \"applicationId\": \"89d10474-74af-4874-99a7-c23c2f643083\",\r\n \"roleDefinitionId\": \"7df22794-26e3-4f94-9d50-a4f0f6e1cb41\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Australia Central\",\r\n \"Australia Central 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/eventGridFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Australia Central\",\r\n \"Australia Central 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-31\",\r\n \"2018-01-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/securitySettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Australia Central\",\r\n \"Australia Central 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants/securitySettings\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourcegroups/ps3492?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlZ3JvdXBzL3BzMzQ5Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourcegroups/ps2291?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlZ3JvdXBzL3BzMjI5MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9e8a0833-88c2-44ca-97e6-9d94e22bfdee" + "9d6d8c10-bdf7-4c9c-8641-93e038a8f2a9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "7762eec0-5772-4441-af54-7c240b5934e1" + "4df4563e-44ad-41f3-88db-861d7856580e" ], "x-ms-correlation-request-id": [ - "7762eec0-5772-4441-af54-7c240b5934e1" + "4df4563e-44ad-41f3-88db-861d7856580e" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184213Z:7762eec0-5772-4441-af54-7c240b5934e1" + "WESTUS2:20200916T225506Z:4df4563e-44ad-41f3-88db-861d7856580e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:42:13 GMT" + "Wed, 16 Sep 2020 22:55:06 GMT" ], "Content-Length": [ "165" @@ -123,25 +123,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492\",\r\n \"name\": \"ps3492\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291\",\r\n \"name\": \"ps2291\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzQ5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxNDA3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjI5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1NzE/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e22112cc-d66e-4de4-92ba-d5c79b1872ad" + "945f902f-755c-43e1-8dc1-73e9a8a68227" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ], "Content-Type": [ @@ -159,7 +159,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407/operationResults/b3NfaWRfMjZhOWFhODUtMzkzYi00MWJjLWFkZjgtYzZiZjE0ZGY2NTM3?api-version=2017-11-15&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571/operationResults/b3NfaWRfYmYzM2M2OTUtMzgwZi00NmQ3LWJiMjgtZjU3OTBlNDQ1MGJh?api-version=2017-11-15&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -168,13 +168,13 @@ "4999" ], "x-ms-request-id": [ - "299d92d3-3a49-4aca-a6ec-65b53a424142" + "7abc1569-624d-4f52-8da8-8a001330514c" ], "x-ms-correlation-request-id": [ - "299d92d3-3a49-4aca-a6ec-65b53a424142" + "7abc1569-624d-4f52-8da8-8a001330514c" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184216Z:299d92d3-3a49-4aca-a6ec-65b53a424142" + "WESTUS2:20200916T225509Z:7abc1569-624d-4f52-8da8-8a001330514c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -183,10 +183,10 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:42:16 GMT" + "Wed, 16 Sep 2020 22:55:09 GMT" ], "Content-Length": [ - "462" + "460" ], "Content-Type": [ "application/json; charset=utf-8" @@ -195,32 +195,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps1407\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Activating\",\r\n \"provisioningState\": \"Accepted\",\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps3492\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps571\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Activating\",\r\n \"provisioningState\": \"Accepted\",\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps2291\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzQ5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxNDA3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjI5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1NzE/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAAAMu4E0=\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"connectionString\": \"HostName=ps4367.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=UIGkxyy7YbA7nc4z1ldGq5sZ/Tiu2E6W2URPNkznor0=\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"etag\": \"AAAAAASgVX4=\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"connectionString\": \"HostName=ps928.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=bbu+lnmo90J+cinufJ8q6GByJGvwQbRTEBz0yJbF5oU=\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "60d1f8a1-c466-40aa-816d-0691b29d9672" + "d8aa0270-9365-4f58-b9ce-69606ec893cc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "503" + "502" ] }, "ResponseHeaders": { @@ -231,7 +231,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407/operationResults/b3NfaWRfYTBiY2FlYjQtZTJjZS00ODQ1LWEwODctYjBiMzZjNTZmY2Rl?api-version=2017-11-15&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571/operationResults/b3NfaWRfNmM2MTRhMzItMDYwNy00Y2U4LWE4ZTYtNWM2MmIxZDRlMjYw?api-version=2017-11-15&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -240,13 +240,13 @@ "4999" ], "x-ms-request-id": [ - "82477272-32b3-4b78-bb92-afa17e10f4db" + "d2589e0f-2b2c-401f-a822-cf44e96d8dcd" ], "x-ms-correlation-request-id": [ - "82477272-32b3-4b78-bb92-afa17e10f4db" + "d2589e0f-2b2c-401f-a822-cf44e96d8dcd" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184542Z:82477272-32b3-4b78-bb92-afa17e10f4db" + "WESTUS2:20200916T225905Z:d2589e0f-2b2c-401f-a822-cf44e96d8dcd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -255,10 +255,10 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:45:41 GMT" + "Wed, 16 Sep 2020 22:59:05 GMT" ], "Content-Length": [ - "733" + "729" ], "Content-Type": [ "application/json; charset=utf-8" @@ -267,25 +267,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMu4E0=\",\r\n \"name\": \"ps1407\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Transitioning\",\r\n \"provisioningState\": \"Accepted\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps4367.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps4367.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=UIGkxyy7YbA7nc4z1ldGq5sZ/Tiu2E6W2URPNkznor0=\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps3492\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgVX4=\",\r\n \"name\": \"ps571\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Transitioning\",\r\n \"provisioningState\": \"Accepted\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps928.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps928.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=bbu+lnmo90J+cinufJ8q6GByJGvwQbRTEBz0yJbF5oU=\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps2291\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzQ5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxNDA3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjI5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1NzE/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAAAMu4fE=\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"etag\": \"AAAAAASgV60=\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6533266b-a3d7-425d-8d6d-492948492484" + "9f8450e5-6373-496b-ad99-222dd3bb1f09" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ], "Content-Type": [ @@ -303,7 +303,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407/operationResults/b3NfaWRfM2M1Mzc3MjAtMjcxZi00ZmEzLWI5MWUtNTRhMGUzYjU4YWNl?api-version=2017-11-15&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571/operationResults/b3NfaWRfNTMzMGIxZWMtZTM1Yi00NWVkLThlMWEtY2VmZTcyNjgxZDIz?api-version=2017-11-15&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -312,13 +312,13 @@ "4998" ], "x-ms-request-id": [ - "a7a63f20-daac-40fb-a1cb-ad8beb74135f" + "261005f3-4fdb-4651-a946-1b7b726a4184" ], "x-ms-correlation-request-id": [ - "a7a63f20-daac-40fb-a1cb-ad8beb74135f" + "261005f3-4fdb-4651-a946-1b7b726a4184" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184623Z:a7a63f20-daac-40fb-a1cb-ad8beb74135f" + "WESTUS2:20200916T225943Z:261005f3-4fdb-4651-a946-1b7b726a4184" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -327,10 +327,10 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:46:22 GMT" + "Wed, 16 Sep 2020 22:59:42 GMT" ], "Content-Length": [ - "500" + "498" ], "Content-Type": [ "application/json; charset=utf-8" @@ -339,19 +339,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMu4fE=\",\r\n \"name\": \"ps1407\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Transitioning\",\r\n \"provisioningState\": \"Accepted\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps3492\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgV60=\",\r\n \"name\": \"ps571\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Transitioning\",\r\n \"provisioningState\": \"Accepted\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps2291\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407/operationResults/b3NfaWRfMjZhOWFhODUtMzkzYi00MWJjLWFkZjgtYzZiZjE0ZGY2NTM3?api-version=2017-11-15&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzQ5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxNDA3L29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZNalpoT1dGaE9EVXRNemt6WWkwME1XSmpMV0ZrWmpndFl6WmlaakUwWkdZMk5UTTM/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571/operationResults/b3NfaWRfYmYzM2M2OTUtMzgwZi00NmQ3LWJiMjgtZjU3OTBlNDQ1MGJh?api-version=2017-11-15&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjI5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1NzEvb3BlcmF0aW9uUmVzdWx0cy9iM05mYVdSZlltWXpNMk0yT1RVdE16Z3daaTAwTm1RM0xXSmlNamd0WmpVM09UQmxORFExTUdKaD9hcGktdmVyc2lvbj0yMDE3LTExLTE1JmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -366,16 +366,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11996" ], "x-ms-request-id": [ - "a7fac6d5-4a08-4f8a-ba8d-54270d2c2a42" + "9fb0bad4-29ad-4211-a1cd-96f5a89ccf89" ], "x-ms-correlation-request-id": [ - "a7fac6d5-4a08-4f8a-ba8d-54270d2c2a42" + "9fb0bad4-29ad-4211-a1cd-96f5a89ccf89" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184246Z:a7fac6d5-4a08-4f8a-ba8d-54270d2c2a42" + "WESTUS2:20200916T225539Z:9fb0bad4-29ad-4211-a1cd-96f5a89ccf89" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -384,7 +384,7 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:42:45 GMT" + "Wed, 16 Sep 2020 22:55:38 GMT" ], "Content-Length": [ "22" @@ -400,15 +400,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzQ5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxNDA3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjI5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1NzE/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -423,16 +423,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11995" ], "x-ms-request-id": [ - "7fa017ac-6e59-44e1-a2f5-bb60ab892dd4" + "21bea376-9541-4fa5-9e10-a1638a73186d" ], "x-ms-correlation-request-id": [ - "7fa017ac-6e59-44e1-a2f5-bb60ab892dd4" + "21bea376-9541-4fa5-9e10-a1638a73186d" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184246Z:7fa017ac-6e59-44e1-a2f5-bb60ab892dd4" + "WESTUS2:20200916T225539Z:21bea376-9541-4fa5-9e10-a1638a73186d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -441,10 +441,10 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:42:45 GMT" + "Wed, 16 Sep 2020 22:55:39 GMT" ], "Content-Length": [ - "640" + "637" ], "Content-Type": [ "application/json; charset=utf-8" @@ -453,25 +453,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMu4E0=\",\r\n \"name\": \"ps1407\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps1407.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010CF6F\"\r\n },\r\n \"resourcegroup\": \"ps3492\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgVX4=\",\r\n \"name\": \"ps571\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps571.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFCB\"\r\n },\r\n \"resourcegroup\": \"ps2291\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzQ5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxNDA3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjI5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1NzE/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bcf41f0f-6a98-45e1-a990-bd9adc744d4c" + "dfc0c8fe-14fc-4b19-bece-1082e2ee7a17" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -486,16 +486,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11994" ], "x-ms-request-id": [ - "9459f943-7e29-4c31-9ae4-e7cdcd207505" + "d087e34a-6879-4611-b59e-3f5e74132003" ], "x-ms-correlation-request-id": [ - "9459f943-7e29-4c31-9ae4-e7cdcd207505" + "d087e34a-6879-4611-b59e-3f5e74132003" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184247Z:9459f943-7e29-4c31-9ae4-e7cdcd207505" + "WESTUS2:20200916T225539Z:d087e34a-6879-4611-b59e-3f5e74132003" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -504,10 +504,10 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:42:47 GMT" + "Wed, 16 Sep 2020 22:55:39 GMT" ], "Content-Length": [ - "640" + "637" ], "Content-Type": [ "application/json; charset=utf-8" @@ -516,25 +516,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMu4E0=\",\r\n \"name\": \"ps1407\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps1407.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010CF6F\"\r\n },\r\n \"resourcegroup\": \"ps3492\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgVX4=\",\r\n \"name\": \"ps571\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps571.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFCB\"\r\n },\r\n \"resourcegroup\": \"ps2291\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzQ5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxNDA3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjI5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1NzE/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4c0d77b4-81f5-43ea-aaa3-d156032e4d4e" + "4af588b5-3a84-4cc9-a57a-487b031f53cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -552,13 +552,13 @@ "11999" ], "x-ms-request-id": [ - "31ecec7f-8e2c-4a02-8b5f-80e14b3c6794" + "3f6ee7a6-7cb3-4ece-89cb-21cd9ad97a52" ], "x-ms-correlation-request-id": [ - "31ecec7f-8e2c-4a02-8b5f-80e14b3c6794" + "3f6ee7a6-7cb3-4ece-89cb-21cd9ad97a52" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184540Z:31ecec7f-8e2c-4a02-8b5f-80e14b3c6794" + "WESTUS2:20200916T225904Z:3f6ee7a6-7cb3-4ece-89cb-21cd9ad97a52" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -567,10 +567,10 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:45:39 GMT" + "Wed, 16 Sep 2020 22:59:04 GMT" ], "Content-Length": [ - "640" + "637" ], "Content-Type": [ "application/json; charset=utf-8" @@ -579,19 +579,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMu4E0=\",\r\n \"name\": \"ps1407\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps1407.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010CF6F\"\r\n },\r\n \"resourcegroup\": \"ps3492\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgVX4=\",\r\n \"name\": \"ps571\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps571.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFCB\"\r\n },\r\n \"resourcegroup\": \"ps2291\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzQ5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxNDA3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjI5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1NzE/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -609,13 +609,13 @@ "11997" ], "x-ms-request-id": [ - "6ba3ffdd-0ff0-4830-ae2e-a09210e3fc51" + "77106c68-a690-42da-af0d-14591ee17f87" ], "x-ms-correlation-request-id": [ - "6ba3ffdd-0ff0-4830-ae2e-a09210e3fc51" + "77106c68-a690-42da-af0d-14591ee17f87" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184612Z:6ba3ffdd-0ff0-4830-ae2e-a09210e3fc51" + "WESTUS2:20200916T225936Z:77106c68-a690-42da-af0d-14591ee17f87" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -624,10 +624,10 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:46:12 GMT" + "Wed, 16 Sep 2020 22:59:35 GMT" ], "Content-Length": [ - "833" + "828" ], "Content-Type": [ "application/json; charset=utf-8" @@ -636,25 +636,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMu4fE=\",\r\n \"name\": \"ps1407\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps4367.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps4367.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps1407.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010CF6F\"\r\n },\r\n \"resourcegroup\": \"ps3492\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgV60=\",\r\n \"name\": \"ps571\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps928.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps928.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps571.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFCB\"\r\n },\r\n \"resourcegroup\": \"ps2291\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzQ5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxNDA3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjI5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1NzE/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "badc42b2-17f9-48b1-9f0b-d1153c3d098d" + "ab470a3e-951d-4a55-baef-c263bd317092" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -672,13 +672,13 @@ "11996" ], "x-ms-request-id": [ - "6f6e6ba0-cb55-40d2-a012-ccd11b63d526" + "c2ef6da6-2b84-41e7-8a81-fc9d22380d31" ], "x-ms-correlation-request-id": [ - "6f6e6ba0-cb55-40d2-a012-ccd11b63d526" + "c2ef6da6-2b84-41e7-8a81-fc9d22380d31" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184612Z:6f6e6ba0-cb55-40d2-a012-ccd11b63d526" + "WESTUS2:20200916T225936Z:c2ef6da6-2b84-41e7-8a81-fc9d22380d31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -687,10 +687,10 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:46:12 GMT" + "Wed, 16 Sep 2020 22:59:35 GMT" ], "Content-Length": [ - "833" + "828" ], "Content-Type": [ "application/json; charset=utf-8" @@ -699,25 +699,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMu4fE=\",\r\n \"name\": \"ps1407\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps4367.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps4367.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps1407.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010CF6F\"\r\n },\r\n \"resourcegroup\": \"ps3492\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgV60=\",\r\n \"name\": \"ps571\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps928.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps928.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps571.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFCB\"\r\n },\r\n \"resourcegroup\": \"ps2291\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzQ5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxNDA3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjI5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1NzE/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "82b9630f-c34c-4819-9029-da36b8516e27" + "cf6698b8-5455-4fb5-9703-b922d5cd14ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -735,13 +735,13 @@ "11995" ], "x-ms-request-id": [ - "204d16ec-d9c0-4cba-9c85-f44180a5ae10" + "3618c10e-4846-483c-a4d0-5f4b86b284f2" ], "x-ms-correlation-request-id": [ - "204d16ec-d9c0-4cba-9c85-f44180a5ae10" + "3618c10e-4846-483c-a4d0-5f4b86b284f2" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184613Z:204d16ec-d9c0-4cba-9c85-f44180a5ae10" + "WESTUS2:20200916T225936Z:3618c10e-4846-483c-a4d0-5f4b86b284f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -750,10 +750,10 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:46:12 GMT" + "Wed, 16 Sep 2020 22:59:35 GMT" ], "Content-Length": [ - "833" + "828" ], "Content-Type": [ "application/json; charset=utf-8" @@ -762,25 +762,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMu4fE=\",\r\n \"name\": \"ps1407\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps4367.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps4367.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps1407.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010CF6F\"\r\n },\r\n \"resourcegroup\": \"ps3492\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgV60=\",\r\n \"name\": \"ps571\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps928.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps928.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps571.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFCB\"\r\n },\r\n \"resourcegroup\": \"ps2291\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzQ5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxNDA3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjI5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1NzE/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2fd3449f-db7b-418a-8778-9acb18b68ec0" + "8aeff8e4-0965-44cb-90b7-58d63a0ff8b6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -798,13 +798,13 @@ "11994" ], "x-ms-request-id": [ - "8985c819-5976-4eb1-9103-b7e6a71b3f8e" + "d49dae8f-03be-4d8d-8779-3324b952de16" ], "x-ms-correlation-request-id": [ - "8985c819-5976-4eb1-9103-b7e6a71b3f8e" + "d49dae8f-03be-4d8d-8779-3324b952de16" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184613Z:8985c819-5976-4eb1-9103-b7e6a71b3f8e" + "WESTUS2:20200916T225937Z:d49dae8f-03be-4d8d-8779-3324b952de16" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -813,10 +813,10 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:46:13 GMT" + "Wed, 16 Sep 2020 22:59:36 GMT" ], "Content-Length": [ - "833" + "828" ], "Content-Type": [ "application/json; charset=utf-8" @@ -825,25 +825,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMu4fE=\",\r\n \"name\": \"ps1407\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps4367.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps4367.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps1407.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010CF6F\"\r\n },\r\n \"resourcegroup\": \"ps3492\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgV60=\",\r\n \"name\": \"ps571\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps928.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps928.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps571.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFCB\"\r\n },\r\n \"resourcegroup\": \"ps2291\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzQ5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxNDA3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjI5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1NzE/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ee7a5bc4-24a3-41d3-88c3-6acaff47d869" + "288de3c9-d6a5-4de4-901e-15711f2518ee" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -861,13 +861,13 @@ "11993" ], "x-ms-request-id": [ - "c0dd7d26-00b0-4b76-99df-4c178c3dad5c" + "72b0fe72-dd44-44ff-be66-598b31b0576e" ], "x-ms-correlation-request-id": [ - "c0dd7d26-00b0-4b76-99df-4c178c3dad5c" + "72b0fe72-dd44-44ff-be66-598b31b0576e" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184614Z:c0dd7d26-00b0-4b76-99df-4c178c3dad5c" + "WESTUS2:20200916T225937Z:72b0fe72-dd44-44ff-be66-598b31b0576e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -876,10 +876,10 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:46:13 GMT" + "Wed, 16 Sep 2020 22:59:36 GMT" ], "Content-Length": [ - "833" + "828" ], "Content-Type": [ "application/json; charset=utf-8" @@ -888,25 +888,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMu4fE=\",\r\n \"name\": \"ps1407\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps4367.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps4367.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps1407.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010CF6F\"\r\n },\r\n \"resourcegroup\": \"ps3492\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgV60=\",\r\n \"name\": \"ps571\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps928.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps928.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps571.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFCB\"\r\n },\r\n \"resourcegroup\": \"ps2291\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzQ5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxNDA3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjI5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1NzE/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5ed7b058-8601-4b33-a66a-bf980b4b7e7c" + "55e2e5f9-674b-4c28-a94d-26fa1609723f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -924,13 +924,13 @@ "11992" ], "x-ms-request-id": [ - "700c6733-86e8-405b-b3ab-d1981c3426d9" + "fee3c8ff-26fd-41d7-ba09-10f657f6fbbf" ], "x-ms-correlation-request-id": [ - "700c6733-86e8-405b-b3ab-d1981c3426d9" + "fee3c8ff-26fd-41d7-ba09-10f657f6fbbf" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184614Z:700c6733-86e8-405b-b3ab-d1981c3426d9" + "WESTUS2:20200916T225938Z:fee3c8ff-26fd-41d7-ba09-10f657f6fbbf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -939,10 +939,10 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:46:14 GMT" + "Wed, 16 Sep 2020 22:59:37 GMT" ], "Content-Length": [ - "833" + "828" ], "Content-Type": [ "application/json; charset=utf-8" @@ -951,25 +951,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMu4fE=\",\r\n \"name\": \"ps1407\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps4367.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps4367.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps1407.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010CF6F\"\r\n },\r\n \"resourcegroup\": \"ps3492\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgV60=\",\r\n \"name\": \"ps571\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps928.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps928.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps571.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFCB\"\r\n },\r\n \"resourcegroup\": \"ps2291\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzQ5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxNDA3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjI5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1NzE/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b224d9e1-dee2-4376-9b1d-f2924323a912" + "e33fa06f-0b53-411d-a9c9-3fbc2b95ca31" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -987,13 +987,13 @@ "11991" ], "x-ms-request-id": [ - "1ed1d77c-24b9-41c2-9ab8-7ef2c798002f" + "d3ce1a0e-d2dd-4088-9e14-b3bb04fe6c1d" ], "x-ms-correlation-request-id": [ - "1ed1d77c-24b9-41c2-9ab8-7ef2c798002f" + "d3ce1a0e-d2dd-4088-9e14-b3bb04fe6c1d" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184615Z:1ed1d77c-24b9-41c2-9ab8-7ef2c798002f" + "WESTUS2:20200916T225938Z:d3ce1a0e-d2dd-4088-9e14-b3bb04fe6c1d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1002,10 +1002,10 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:46:14 GMT" + "Wed, 16 Sep 2020 22:59:37 GMT" ], "Content-Length": [ - "833" + "828" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1014,25 +1014,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMu4fE=\",\r\n \"name\": \"ps1407\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps4367.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps4367.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps1407.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010CF6F\"\r\n },\r\n \"resourcegroup\": \"ps3492\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgV60=\",\r\n \"name\": \"ps571\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps928.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps928.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps571.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFCB\"\r\n },\r\n \"resourcegroup\": \"ps2291\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzQ5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxNDA3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjI5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1NzE/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "16bd76a2-1705-412a-8b3c-78025b184fc4" + "3d551564-390e-46eb-9e2b-ea0e7061ac0a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1050,13 +1050,13 @@ "11990" ], "x-ms-request-id": [ - "f1f0da9a-c1c0-4d28-a624-b4f62c28ef7a" + "ee623bff-8236-45b2-a2b8-bcd4b527fc69" ], "x-ms-correlation-request-id": [ - "f1f0da9a-c1c0-4d28-a624-b4f62c28ef7a" + "ee623bff-8236-45b2-a2b8-bcd4b527fc69" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184615Z:f1f0da9a-c1c0-4d28-a624-b4f62c28ef7a" + "WESTUS2:20200916T225939Z:ee623bff-8236-45b2-a2b8-bcd4b527fc69" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1065,10 +1065,10 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:46:14 GMT" + "Wed, 16 Sep 2020 22:59:38 GMT" ], "Content-Length": [ - "833" + "828" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1077,25 +1077,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMu4fE=\",\r\n \"name\": \"ps1407\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps4367.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps4367.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps1407.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010CF6F\"\r\n },\r\n \"resourcegroup\": \"ps3492\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgV60=\",\r\n \"name\": \"ps571\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps928.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps928.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps571.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFCB\"\r\n },\r\n \"resourcegroup\": \"ps2291\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzQ5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxNDA3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjI5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1NzE/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c728c30c-5309-4c7a-aadf-7b24629364f5" + "e96d3a87-4397-4346-8151-b91f392f7012" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1113,13 +1113,13 @@ "11989" ], "x-ms-request-id": [ - "4213ee40-0eb5-4a36-b9ee-f361e93ddac2" + "d8be3978-140c-4a43-a6b5-8afe71712690" ], "x-ms-correlation-request-id": [ - "4213ee40-0eb5-4a36-b9ee-f361e93ddac2" + "d8be3978-140c-4a43-a6b5-8afe71712690" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184615Z:4213ee40-0eb5-4a36-b9ee-f361e93ddac2" + "WESTUS2:20200916T225939Z:d8be3978-140c-4a43-a6b5-8afe71712690" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1128,10 +1128,10 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:46:15 GMT" + "Wed, 16 Sep 2020 22:59:38 GMT" ], "Content-Length": [ - "833" + "828" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1140,25 +1140,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMu4fE=\",\r\n \"name\": \"ps1407\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps4367.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps4367.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps1407.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010CF6F\"\r\n },\r\n \"resourcegroup\": \"ps3492\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgV60=\",\r\n \"name\": \"ps571\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps928.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps928.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps571.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFCB\"\r\n },\r\n \"resourcegroup\": \"ps2291\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzQ5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxNDA3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjI5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1NzE/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "75ff3783-2fb5-48f6-aee1-4bed1345219e" + "870836b7-e54e-42ab-9585-908c72ed6aaf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1176,13 +1176,13 @@ "11988" ], "x-ms-request-id": [ - "9e517e81-54e3-4beb-b47a-bd72babdca2e" + "3339919e-36ad-46ef-8c08-f5ccb2c1f7ac" ], "x-ms-correlation-request-id": [ - "9e517e81-54e3-4beb-b47a-bd72babdca2e" + "3339919e-36ad-46ef-8c08-f5ccb2c1f7ac" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184616Z:9e517e81-54e3-4beb-b47a-bd72babdca2e" + "WESTUS2:20200916T225939Z:3339919e-36ad-46ef-8c08-f5ccb2c1f7ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1191,10 +1191,10 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:46:15 GMT" + "Wed, 16 Sep 2020 22:59:38 GMT" ], "Content-Length": [ - "833" + "828" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1203,25 +1203,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMu4fE=\",\r\n \"name\": \"ps1407\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps4367.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps4367.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps1407.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010CF6F\"\r\n },\r\n \"resourcegroup\": \"ps3492\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgV60=\",\r\n \"name\": \"ps571\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps928.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps928.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps571.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFCB\"\r\n },\r\n \"resourcegroup\": \"ps2291\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzQ5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxNDA3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjI5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1NzE/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "230a2947-26f6-49c7-a3a9-c2c57fc64c40" + "1fc4ad29-bdbb-4523-b0a3-adf564c9edc6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1239,13 +1239,13 @@ "11987" ], "x-ms-request-id": [ - "173c1acc-2747-4c8e-9b78-2f7a6a955876" + "f41a29e5-79c7-4393-9ce2-51cb1bf0a1b3" ], "x-ms-correlation-request-id": [ - "173c1acc-2747-4c8e-9b78-2f7a6a955876" + "f41a29e5-79c7-4393-9ce2-51cb1bf0a1b3" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184616Z:173c1acc-2747-4c8e-9b78-2f7a6a955876" + "WESTUS2:20200916T225940Z:f41a29e5-79c7-4393-9ce2-51cb1bf0a1b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1254,10 +1254,10 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:46:16 GMT" + "Wed, 16 Sep 2020 22:59:39 GMT" ], "Content-Length": [ - "833" + "828" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1266,25 +1266,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMu4fE=\",\r\n \"name\": \"ps1407\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps4367.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps4367.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps1407.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010CF6F\"\r\n },\r\n \"resourcegroup\": \"ps3492\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgV60=\",\r\n \"name\": \"ps571\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps928.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps928.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps571.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFCB\"\r\n },\r\n \"resourcegroup\": \"ps2291\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzQ5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxNDA3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjI5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1NzE/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "44f6da4c-f16d-42df-9ef9-b6caf231a86e" + "7c593d69-5f4d-46c7-a8e3-9abf96709d3c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1302,13 +1302,13 @@ "11986" ], "x-ms-request-id": [ - "2c683c6e-7864-4213-a630-2aea12998530" + "3f3af270-0e1f-483d-983e-13321545cad7" ], "x-ms-correlation-request-id": [ - "2c683c6e-7864-4213-a630-2aea12998530" + "3f3af270-0e1f-483d-983e-13321545cad7" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184617Z:2c683c6e-7864-4213-a630-2aea12998530" + "WESTUS2:20200916T225940Z:3f3af270-0e1f-483d-983e-13321545cad7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1317,10 +1317,10 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:46:16 GMT" + "Wed, 16 Sep 2020 22:59:39 GMT" ], "Content-Length": [ - "833" + "828" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1329,25 +1329,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMu4fE=\",\r\n \"name\": \"ps1407\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps4367.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps4367.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps1407.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010CF6F\"\r\n },\r\n \"resourcegroup\": \"ps3492\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgV60=\",\r\n \"name\": \"ps571\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps928.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps928.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps571.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFCB\"\r\n },\r\n \"resourcegroup\": \"ps2291\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzQ5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxNDA3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjI5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1NzE/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e80816e9-606f-4ddf-abc2-f231bcf37ebd" + "f4aa8080-5ce7-4801-b2a9-b8a250542313" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1365,13 +1365,13 @@ "11985" ], "x-ms-request-id": [ - "df860618-6d96-406b-bf28-812c2a7f31a6" + "ab3269c7-8e4c-4b93-8c46-3708491d6e69" ], "x-ms-correlation-request-id": [ - "df860618-6d96-406b-bf28-812c2a7f31a6" + "ab3269c7-8e4c-4b93-8c46-3708491d6e69" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184617Z:df860618-6d96-406b-bf28-812c2a7f31a6" + "WESTUS2:20200916T225941Z:ab3269c7-8e4c-4b93-8c46-3708491d6e69" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1380,10 +1380,10 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:46:17 GMT" + "Wed, 16 Sep 2020 22:59:40 GMT" ], "Content-Length": [ - "833" + "828" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1392,25 +1392,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMu4fE=\",\r\n \"name\": \"ps1407\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps4367.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps4367.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps1407.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010CF6F\"\r\n },\r\n \"resourcegroup\": \"ps3492\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgV60=\",\r\n \"name\": \"ps571\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps928.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps928.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps571.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFCB\"\r\n },\r\n \"resourcegroup\": \"ps2291\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzQ5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxNDA3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjI5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1NzE/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "059a4910-d6eb-42ba-9373-558832650529" + "2aafbf93-c6b1-4049-a626-0f6b24e4e901" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1428,13 +1428,13 @@ "11984" ], "x-ms-request-id": [ - "1a01774f-ac2f-43b1-84a1-61006fdbbad3" + "51b10e9e-77c8-4ec9-921c-c43ab0071df1" ], "x-ms-correlation-request-id": [ - "1a01774f-ac2f-43b1-84a1-61006fdbbad3" + "51b10e9e-77c8-4ec9-921c-c43ab0071df1" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184618Z:1a01774f-ac2f-43b1-84a1-61006fdbbad3" + "WESTUS2:20200916T225941Z:51b10e9e-77c8-4ec9-921c-c43ab0071df1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1443,10 +1443,10 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:46:17 GMT" + "Wed, 16 Sep 2020 22:59:41 GMT" ], "Content-Length": [ - "833" + "828" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1455,25 +1455,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMu4fE=\",\r\n \"name\": \"ps1407\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps4367.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps4367.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps1407.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010CF6F\"\r\n },\r\n \"resourcegroup\": \"ps3492\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgV60=\",\r\n \"name\": \"ps571\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps928.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps928.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps571.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFCB\"\r\n },\r\n \"resourcegroup\": \"ps2291\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzQ5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxNDA3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjI5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1NzE/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "17970c31-2017-45d0-a4d3-c9aadc7a45ee" + "5578b645-890c-46cc-94ff-0a635283691d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1491,13 +1491,13 @@ "11983" ], "x-ms-request-id": [ - "60e91f74-819b-42cd-b818-d4c300fabdf3" + "d767db25-e5a9-4b2f-af1c-bf6d437c4241" ], "x-ms-correlation-request-id": [ - "60e91f74-819b-42cd-b818-d4c300fabdf3" + "d767db25-e5a9-4b2f-af1c-bf6d437c4241" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184618Z:60e91f74-819b-42cd-b818-d4c300fabdf3" + "WESTUS2:20200916T225942Z:d767db25-e5a9-4b2f-af1c-bf6d437c4241" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1506,10 +1506,10 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:46:17 GMT" + "Wed, 16 Sep 2020 22:59:41 GMT" ], "Content-Length": [ - "833" + "828" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1518,19 +1518,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMu4fE=\",\r\n \"name\": \"ps1407\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps4367.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps4367.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps1407.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010CF6F\"\r\n },\r\n \"resourcegroup\": \"ps3492\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgV60=\",\r\n \"name\": \"ps571\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps928.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps928.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps571.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFCB\"\r\n },\r\n \"resourcegroup\": \"ps2291\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzQ5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxNDA3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjI5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1NzE/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1548,13 +1548,13 @@ "11981" ], "x-ms-request-id": [ - "2027f248-95f1-45d3-9adc-017bc02e4941" + "637afb13-94e4-4413-972c-1c61f5f134d0" ], "x-ms-correlation-request-id": [ - "2027f248-95f1-45d3-9adc-017bc02e4941" + "637afb13-94e4-4413-972c-1c61f5f134d0" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184653Z:2027f248-95f1-45d3-9adc-017bc02e4941" + "WESTUS2:20200916T230013Z:637afb13-94e4-4413-972c-1c61f5f134d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1563,10 +1563,10 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:46:53 GMT" + "Wed, 16 Sep 2020 23:00:13 GMT" ], "Content-Length": [ - "640" + "637" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1575,25 +1575,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAMu4lQ=\",\r\n \"name\": \"ps1407\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps1407.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0010CF6F\"\r\n },\r\n \"resourcegroup\": \"ps3492\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgV+o=\",\r\n \"name\": \"ps571\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps571.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0017FFCB\"\r\n },\r\n \"resourcegroup\": \"ps2291\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/IotHubs/ps4367?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzQ5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQzNjc/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/IotHubs/ps928?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjI5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkyOD9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b1c4de49-d68e-4189-b908-53220945ab6d" + "24ff4661-b9d8-4121-a013-aec868ae8921" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ], "Content-Type": [ @@ -1611,7 +1611,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNDRkYzRiYTItZTZmYy00NDY5LWEzNTgtYjA3OTEyYTRlNWU1?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNDJmZjFhOTEtOGRkZi00YTk4LWJlYzAtZmY1MDhlMzMxMjZi?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1620,13 +1620,13 @@ "4999" ], "x-ms-request-id": [ - "0a4fe041-1d84-4be2-b424-bcadf835550c" + "c46d2cd8-6081-4795-bc2b-398f6530bb26" ], "x-ms-correlation-request-id": [ - "0a4fe041-1d84-4be2-b424-bcadf835550c" + "c46d2cd8-6081-4795-bc2b-398f6530bb26" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184301Z:0a4fe041-1d84-4be2-b424-bcadf835550c" + "WESTUS2:20200916T225555Z:c46d2cd8-6081-4795-bc2b-398f6530bb26" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1635,10 +1635,10 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:43:01 GMT" + "Wed, 16 Sep 2020 22:55:55 GMT" ], "Content-Length": [ - "619" + "617" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1647,25 +1647,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/IotHubs/ps4367\",\r\n \"name\": \"ps4367\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3492\",\r\n \"properties\": {\r\n \"state\": \"Activating\",\r\n \"provisioningState\": \"Accepted\",\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/IotHubs/ps928\",\r\n \"name\": \"ps928\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2291\",\r\n \"properties\": {\r\n \"state\": \"Activating\",\r\n \"provisioningState\": \"Accepted\",\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/IotHubs/ps4367?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzQ5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQzNjc/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/IotHubs/ps928?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjI5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkyOD9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAAA3iigk=\",\r\n \"properties\": {\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"PepJ+JlM+i3+dsDKoyxjDglLUPbO8cZrJPnBrIJqJ3s=\",\r\n \"secondaryKey\": \"SxEKJ9ktFn0Dh+dPOs4nIMUWPfDyad+MCNBuo1cbor8=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"PKnv0Zeak3xOAoNwFzKyr95m1o50GdhhsmlWTSmNQCY=\",\r\n \"secondaryKey\": \"8EkrVSNtXCsscme2pqzB6J/T390SAkDbJKa2QpvOu4I=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"nUghCdL/9qcPai13aLTOpL49u/7hpd2IH+JySfU5efI=\",\r\n \"secondaryKey\": \"tvptAxcLg2St0ZIHVghxCBjrCFMhsp+vXRQCW+M2/dg=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"NvMFpHd6/KkdoH1zfVPNgL0f45ack1zD2OnqWe2HkeU=\",\r\n \"secondaryKey\": \"8Ig4L0DGXeJHtKd+IY/KhH+SJhT6CFObIVWBFHMJ9mM=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"jv2MQ4iY5/o5P2xeHEdjJ+JWOLTNzzm2xnGTAp5bKMg=\",\r\n \"secondaryKey\": \"jEMhkWsCQKF2pDaWZcoZblCjTkkalawZ6FBiYihl70M=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"ServiceKey\",\r\n \"rights\": \"ServiceConnect\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"etag\": \"AAAAAiGZuSQ=\",\r\n \"properties\": {\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"e693iDuMbKSj4T1pii4sVBC+KHVLpc5XwblsrZU1dps=\",\r\n \"secondaryKey\": \"h4FtqpsfgqaMlxIKs1+KSXumU9VE4z4DoFq5vxnYTFg=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"K30KbMFP4Pc0z/ysd++edx+diQqZ0B7lJR6CGvH0eFU=\",\r\n \"secondaryKey\": \"PCezhbxQcz0DaQ5jQDWrH7xulciHM1239wGyI5bt6Sg=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Dg3tDKDJAZVeTX3iEwiCDlDaW/75wfyoj/ZbdV80J/I=\",\r\n \"secondaryKey\": \"4ZKCKB9+c6lIaYq7zViZop0lr9eeWymwUY7PpVuglqE=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"dFQQMJ+86Ria+CKEcJACEClHJJE+HwIHdAwLUErzfR8=\",\r\n \"secondaryKey\": \"yiNUp49uyzc4R4I/WRlCzBCekTuba+u//qgUzWwsFxc=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"VGvpsyOncR8ohPdHF/+5YP9AYoe2sadA1pZQ3SzHV2U=\",\r\n \"secondaryKey\": \"WHJebqdM8I7P3/ZAyVvDI8gG9otgpbaOjzA/gfyMMZk=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"ServiceKey\",\r\n \"rights\": \"ServiceConnect\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2985053f-c6c2-467c-9946-7d25a87372f9" + "a2f573fa-65f1-4823-8c78-85360b44f8da" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ], "Content-Type": [ @@ -1683,7 +1683,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZmMwNzVjMmYtODAzNy00YzQ5LWJjYzgtNmI4OTcxMzJmYmVm?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfM2JhOTEzZjItNGU0YS00ZjNjLThjYjItMTUwZDM3ODliMDUw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1692,13 +1692,13 @@ "4998" ], "x-ms-request-id": [ - "40f34d9c-5277-4f96-86c4-8d374fdd44cd" + "f9f4a034-28e7-4d71-b4bb-76777fb0bfc7" ], "x-ms-correlation-request-id": [ - "40f34d9c-5277-4f96-86c4-8d374fdd44cd" + "f9f4a034-28e7-4d71-b4bb-76777fb0bfc7" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184508Z:40f34d9c-5277-4f96-86c4-8d374fdd44cd" + "WESTUS2:20200916T225832Z:f9f4a034-28e7-4d71-b4bb-76777fb0bfc7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1707,10 +1707,10 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:45:08 GMT" + "Wed, 16 Sep 2020 22:58:31 GMT" ], "Content-Length": [ - "4100" + "4096" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1719,19 +1719,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/IotHubs/ps4367\",\r\n \"name\": \"ps4367\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3492\",\r\n \"etag\": \"AAAAAA3iigk=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"PepJ+JlM+i3+dsDKoyxjDglLUPbO8cZrJPnBrIJqJ3s=\",\r\n \"secondaryKey\": \"SxEKJ9ktFn0Dh+dPOs4nIMUWPfDyad+MCNBuo1cbor8=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"PKnv0Zeak3xOAoNwFzKyr95m1o50GdhhsmlWTSmNQCY=\",\r\n \"secondaryKey\": \"8EkrVSNtXCsscme2pqzB6J/T390SAkDbJKa2QpvOu4I=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"nUghCdL/9qcPai13aLTOpL49u/7hpd2IH+JySfU5efI=\",\r\n \"secondaryKey\": \"tvptAxcLg2St0ZIHVghxCBjrCFMhsp+vXRQCW+M2/dg=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"NvMFpHd6/KkdoH1zfVPNgL0f45ack1zD2OnqWe2HkeU=\",\r\n \"secondaryKey\": \"8Ig4L0DGXeJHtKd+IY/KhH+SJhT6CFObIVWBFHMJ9mM=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"jv2MQ4iY5/o5P2xeHEdjJ+JWOLTNzzm2xnGTAp5bKMg=\",\r\n \"secondaryKey\": \"jEMhkWsCQKF2pDaWZcoZblCjTkkalawZ6FBiYihl70M=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"ServiceKey\",\r\n \"primaryKey\": \"UIGkxyy7YbA7nc4z1ldGq5sZ/Tiu2E6W2URPNkznor0=\",\r\n \"secondaryKey\": \"SloqRNhiVOAm0QgyyJdTU1rtKRzFN66Zfm/K9pCCCQ8=\",\r\n \"rights\": \"ServiceConnect\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4367-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps4367-3491741-c30e2f1f07.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-626dbc46-0df9-4044-b4c9-154454710d47-iothub\",\r\n \"PrimaryKey\": \"M5Dynut9L1BIpuQMcBlN7DAd1z3Fp4O7sVQt5DGdtrY=\",\r\n \"SecondaryKey\": \"l+ttqpT2/89+upPxjq18OrNwTAGCCaQ7PDhRlndiqbg=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Fri, 22 May 2020 18:44:39 GMT\",\r\n \"ModifiedTime\": \"Fri, 22 May 2020 18:44:39 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-369aec98-b2c1-4f0c-80c3-236058d74acf-iothub\",\r\n \"PrimaryKey\": \"cotb4B7HfcSm2Le7aiNyJ9YEptGtbzhCYSkjox3xOLw=\",\r\n \"SecondaryKey\": \"Eo5Qx4PAg4SsUV6gCi8DFRt8eqsNhIABkoYzsiTahmU=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Fri, 22 May 2020 18:44:39 GMT\",\r\n \"ModifiedTime\": \"Fri, 22 May 2020 18:44:39 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"PepJ+JlM+i3+dsDKoyxjDglLUPbO8cZrJPnBrIJqJ3s=\",\r\n \"SecondaryKey\": \"SxEKJ9ktFn0Dh+dPOs4nIMUWPfDyad+MCNBuo1cbor8=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Fri, 22 May 2020 18:44:39 GMT\",\r\n \"ModifiedTime\": \"Fri, 22 May 2020 18:44:39 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"PKnv0Zeak3xOAoNwFzKyr95m1o50GdhhsmlWTSmNQCY=\",\r\n \"SecondaryKey\": \"8EkrVSNtXCsscme2pqzB6J/T390SAkDbJKa2QpvOu4I=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Fri, 22 May 2020 18:44:39 GMT\",\r\n \"ModifiedTime\": \"Fri, 22 May 2020 18:44:39 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/IotHubs/ps928\",\r\n \"name\": \"ps928\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2291\",\r\n \"etag\": \"AAAAAiGZuSQ=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"e693iDuMbKSj4T1pii4sVBC+KHVLpc5XwblsrZU1dps=\",\r\n \"secondaryKey\": \"h4FtqpsfgqaMlxIKs1+KSXumU9VE4z4DoFq5vxnYTFg=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"K30KbMFP4Pc0z/ysd++edx+diQqZ0B7lJR6CGvH0eFU=\",\r\n \"secondaryKey\": \"PCezhbxQcz0DaQ5jQDWrH7xulciHM1239wGyI5bt6Sg=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Dg3tDKDJAZVeTX3iEwiCDlDaW/75wfyoj/ZbdV80J/I=\",\r\n \"secondaryKey\": \"4ZKCKB9+c6lIaYq7zViZop0lr9eeWymwUY7PpVuglqE=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"dFQQMJ+86Ria+CKEcJACEClHJJE+HwIHdAwLUErzfR8=\",\r\n \"secondaryKey\": \"yiNUp49uyzc4R4I/WRlCzBCekTuba+u//qgUzWwsFxc=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"VGvpsyOncR8ohPdHF/+5YP9AYoe2sadA1pZQ3SzHV2U=\",\r\n \"secondaryKey\": \"WHJebqdM8I7P3/ZAyVvDI8gG9otgpbaOjzA/gfyMMZk=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"ServiceKey\",\r\n \"primaryKey\": \"bbu+lnmo90J+cinufJ8q6GByJGvwQbRTEBz0yJbF5oU=\",\r\n \"secondaryKey\": \"5NcrFxP9zgNshZaKELPl2WPOujpeBIRYX+Bq/31MBXo=\",\r\n \"rights\": \"ServiceConnect\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps928-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps928-4636392-3aeb6098fc.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-b9af4178-ec77-491c-8534-3042c1fd8996-iothub\",\r\n \"PrimaryKey\": \"EfHuyn6lCbTjhRVzA9tD5YeQRaAqM6Cl/KO4srPV6CI=\",\r\n \"SecondaryKey\": \"SSKUG8GBilm6WXoilOqrwke+iMAfL0SZ771OoR5Q8ec=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 16 Sep 2020 22:57:48 GMT\",\r\n \"ModifiedTime\": \"Wed, 16 Sep 2020 22:57:48 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-1746aad7-e009-43cb-81f8-73357037e4e3-iothub\",\r\n \"PrimaryKey\": \"7BNxMd4UGCt319aPl3r3/yhH/yTOZn+5KAgwU396rO0=\",\r\n \"SecondaryKey\": \"Wm1+t++Wyj2cP34BL3rpBJObc6V5IiqZ7a5bLofIPfY=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 16 Sep 2020 22:57:48 GMT\",\r\n \"ModifiedTime\": \"Wed, 16 Sep 2020 22:57:48 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"e693iDuMbKSj4T1pii4sVBC+KHVLpc5XwblsrZU1dps=\",\r\n \"SecondaryKey\": \"h4FtqpsfgqaMlxIKs1+KSXumU9VE4z4DoFq5vxnYTFg=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 16 Sep 2020 22:57:48 GMT\",\r\n \"ModifiedTime\": \"Wed, 16 Sep 2020 22:57:48 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"K30KbMFP4Pc0z/ysd++edx+diQqZ0B7lJR6CGvH0eFU=\",\r\n \"SecondaryKey\": \"PCezhbxQcz0DaQ5jQDWrH7xulciHM1239wGyI5bt6Sg=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 16 Sep 2020 22:57:48 GMT\",\r\n \"ModifiedTime\": \"Wed, 16 Sep 2020 22:57:48 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNDRkYzRiYTItZTZmYy00NDY5LWEzNTgtYjA3OTEyYTRlNWU1?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkRSa1l6UmlZVEl0WlRabVl5MDBORFk1TFdFek5UZ3RZakEzT1RFeVlUUmxOV1UxP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNDJmZjFhOTEtOGRkZi00YTk4LWJlYzAtZmY1MDhlMzMxMjZi?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkRKbVpqRmhPVEV0T0dSa1ppMDBZVGs0TFdKbFl6QXRabVkxTURobE16TXhNalppP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -1749,13 +1749,13 @@ "11999" ], "x-ms-request-id": [ - "2b55490c-739c-4a1b-84ef-2acd48b5c9ca" + "8ca64e74-91b1-4850-bf51-b846d5728ba6" ], "x-ms-correlation-request-id": [ - "2b55490c-739c-4a1b-84ef-2acd48b5c9ca" + "8ca64e74-91b1-4850-bf51-b846d5728ba6" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184332Z:2b55490c-739c-4a1b-84ef-2acd48b5c9ca" + "WESTUS2:20200916T225626Z:8ca64e74-91b1-4850-bf51-b846d5728ba6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1764,7 +1764,7 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:43:31 GMT" + "Wed, 16 Sep 2020 22:56:26 GMT" ], "Content-Length": [ "20" @@ -1780,15 +1780,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNDRkYzRiYTItZTZmYy00NDY5LWEzNTgtYjA3OTEyYTRlNWU1?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkRSa1l6UmlZVEl0WlRabVl5MDBORFk1TFdFek5UZ3RZakEzT1RFeVlUUmxOV1UxP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNDJmZjFhOTEtOGRkZi00YTk4LWJlYzAtZmY1MDhlMzMxMjZi?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkRKbVpqRmhPVEV0T0dSa1ppMDBZVGs0TFdKbFl6QXRabVkxTURobE16TXhNalppP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -1806,13 +1806,13 @@ "11998" ], "x-ms-request-id": [ - "a5661303-12a9-4e25-a4fc-741692bf91b5" + "3c455525-2ef6-4a8a-9a8b-2b88ca1dc763" ], "x-ms-correlation-request-id": [ - "a5661303-12a9-4e25-a4fc-741692bf91b5" + "3c455525-2ef6-4a8a-9a8b-2b88ca1dc763" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184402Z:a5661303-12a9-4e25-a4fc-741692bf91b5" + "WESTUS2:20200916T225656Z:3c455525-2ef6-4a8a-9a8b-2b88ca1dc763" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1821,7 +1821,7 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:44:02 GMT" + "Wed, 16 Sep 2020 22:56:56 GMT" ], "Content-Length": [ "20" @@ -1837,15 +1837,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNDRkYzRiYTItZTZmYy00NDY5LWEzNTgtYjA3OTEyYTRlNWU1?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkRSa1l6UmlZVEl0WlRabVl5MDBORFk1TFdFek5UZ3RZakEzT1RFeVlUUmxOV1UxP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNDJmZjFhOTEtOGRkZi00YTk4LWJlYzAtZmY1MDhlMzMxMjZi?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkRKbVpqRmhPVEV0T0dSa1ppMDBZVGs0TFdKbFl6QXRabVkxTURobE16TXhNalppP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -1863,13 +1863,13 @@ "11997" ], "x-ms-request-id": [ - "427ac40c-01c2-42d3-ad65-6f728f7c2c95" + "34f4961c-b3d1-449c-8e22-dc7020c68a4a" ], "x-ms-correlation-request-id": [ - "427ac40c-01c2-42d3-ad65-6f728f7c2c95" + "34f4961c-b3d1-449c-8e22-dc7020c68a4a" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184433Z:427ac40c-01c2-42d3-ad65-6f728f7c2c95" + "WESTUS2:20200916T225726Z:34f4961c-b3d1-449c-8e22-dc7020c68a4a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1878,7 +1878,7 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:44:32 GMT" + "Wed, 16 Sep 2020 22:57:25 GMT" ], "Content-Length": [ "20" @@ -1894,15 +1894,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNDRkYzRiYTItZTZmYy00NDY5LWEzNTgtYjA3OTEyYTRlNWU1?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkRSa1l6UmlZVEl0WlRabVl5MDBORFk1TFdFek5UZ3RZakEzT1RFeVlUUmxOV1UxP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNDJmZjFhOTEtOGRkZi00YTk4LWJlYzAtZmY1MDhlMzMxMjZi?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkRKbVpqRmhPVEV0T0dSa1ppMDBZVGs0TFdKbFl6QXRabVkxTURobE16TXhNalppP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -1920,13 +1920,70 @@ "11996" ], "x-ms-request-id": [ - "c64b6a7c-806c-47bf-b20f-cc28991eb86b" + "0e99045c-81f7-4376-a1fe-8920ad7fddd2" + ], + "x-ms-correlation-request-id": [ + "0e99045c-81f7-4376-a1fe-8920ad7fddd2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200916T225756Z:0e99045c-81f7-4376-a1fe-8920ad7fddd2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Sep 2020 22:57:56 GMT" + ], + "Content-Length": [ + "20" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNDJmZjFhOTEtOGRkZi00YTk4LWJlYzAtZmY1MDhlMzMxMjZi?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkRKbVpqRmhPVEV0T0dSa1ppMDBZVGs0TFdKbFl6QXRabVkxTURobE16TXhNalppP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "d023adc7-db90-4778-81fa-e30093cf098d" ], "x-ms-correlation-request-id": [ - "c64b6a7c-806c-47bf-b20f-cc28991eb86b" + "d023adc7-db90-4778-81fa-e30093cf098d" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184503Z:c64b6a7c-806c-47bf-b20f-cc28991eb86b" + "WESTUS2:20200916T225826Z:d023adc7-db90-4778-81fa-e30093cf098d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1935,7 +1992,7 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:45:03 GMT" + "Wed, 16 Sep 2020 22:58:26 GMT" ], "Content-Length": [ "22" @@ -1951,15 +2008,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/IotHubs/ps4367?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzQ5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQzNjc/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/IotHubs/ps928?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjI5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkyOD9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -1974,16 +2031,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-request-id": [ - "c6a5f6d7-95bb-407f-b995-fd9dfa5efe9a" + "0f3d9d9a-58b1-40b6-b04c-2f3a7ebd039c" ], "x-ms-correlation-request-id": [ - "c6a5f6d7-95bb-407f-b995-fd9dfa5efe9a" + "0f3d9d9a-58b1-40b6-b04c-2f3a7ebd039c" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184503Z:c6a5f6d7-95bb-407f-b995-fd9dfa5efe9a" + "WESTUS2:20200916T225827Z:0f3d9d9a-58b1-40b6-b04c-2f3a7ebd039c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1992,10 +2049,10 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:45:03 GMT" + "Wed, 16 Sep 2020 22:58:27 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2004,25 +2061,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/IotHubs/ps4367\",\r\n \"name\": \"ps4367\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3492\",\r\n \"etag\": \"AAAAAA3iigk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4367.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4367\",\r\n \"endpoint\": \"sb://iothub-ns-ps4367-3491741-c30e2f1f07.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/IotHubs/ps928\",\r\n \"name\": \"ps928\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2291\",\r\n \"etag\": \"AAAAAiGZuSQ=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps928.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps928\",\r\n \"endpoint\": \"sb://iothub-ns-ps928-4636392-3aeb6098fc.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/IotHubs/ps4367?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzQ5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQzNjc/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/IotHubs/ps928?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjI5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkyOD9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21f35e8a-7b3c-4047-9847-f4e8966bae12" + "6d35bb82-b660-482e-8efa-e043bd1aff22" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -2037,16 +2094,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11993" ], "x-ms-request-id": [ - "5d46ee61-36af-489a-895a-8b55591eb4a3" + "47e3a2d7-632d-41b4-8526-77d547e80d14" ], "x-ms-correlation-request-id": [ - "5d46ee61-36af-489a-895a-8b55591eb4a3" + "47e3a2d7-632d-41b4-8526-77d547e80d14" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184504Z:5d46ee61-36af-489a-895a-8b55591eb4a3" + "WESTUS2:20200916T225828Z:47e3a2d7-632d-41b4-8526-77d547e80d14" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2055,10 +2112,10 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:45:04 GMT" + "Wed, 16 Sep 2020 22:58:27 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2067,25 +2124,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/IotHubs/ps4367\",\r\n \"name\": \"ps4367\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3492\",\r\n \"etag\": \"AAAAAA3iigk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4367.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4367\",\r\n \"endpoint\": \"sb://iothub-ns-ps4367-3491741-c30e2f1f07.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/IotHubs/ps928\",\r\n \"name\": \"ps928\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2291\",\r\n \"etag\": \"AAAAAiGZuSQ=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps928.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps928\",\r\n \"endpoint\": \"sb://iothub-ns-ps928-4636392-3aeb6098fc.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/IotHubs/ps4367?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzQ5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQzNjc/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/IotHubs/ps928?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjI5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkyOD9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b136390e-75ec-40ed-a95a-362686997180" + "4b535d0c-0810-4a97-86d2-5bb03d0ccd23" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -2100,16 +2157,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11992" ], "x-ms-request-id": [ - "84bf85b2-4465-4cd5-a990-c4e62d7c4631" + "7c5034b2-26af-4631-9e21-57e3f8e5b4ec" ], "x-ms-correlation-request-id": [ - "84bf85b2-4465-4cd5-a990-c4e62d7c4631" + "7c5034b2-26af-4631-9e21-57e3f8e5b4ec" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184505Z:84bf85b2-4465-4cd5-a990-c4e62d7c4631" + "WESTUS2:20200916T225828Z:7c5034b2-26af-4631-9e21-57e3f8e5b4ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2118,10 +2175,10 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:45:05 GMT" + "Wed, 16 Sep 2020 22:58:28 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2130,19 +2187,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/IotHubs/ps4367\",\r\n \"name\": \"ps4367\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3492\",\r\n \"etag\": \"AAAAAA3iigk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4367.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4367\",\r\n \"endpoint\": \"sb://iothub-ns-ps4367-3491741-c30e2f1f07.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/IotHubs/ps928\",\r\n \"name\": \"ps928\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2291\",\r\n \"etag\": \"AAAAAiGZuSQ=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps928.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps928\",\r\n \"endpoint\": \"sb://iothub-ns-ps928-4636392-3aeb6098fc.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/IotHubs/ps4367?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzQ5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQzNjc/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/IotHubs/ps928?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjI5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkyOD9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -2157,16 +2214,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11990" ], "x-ms-request-id": [ - "005a23a2-58ac-4cb4-af48-e4aa73813780" + "599c4a41-75aa-470b-a3ec-8defe4b4de40" ], "x-ms-correlation-request-id": [ - "005a23a2-58ac-4cb4-af48-e4aa73813780" + "599c4a41-75aa-470b-a3ec-8defe4b4de40" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184539Z:005a23a2-58ac-4cb4-af48-e4aa73813780" + "WESTUS2:20200916T225903Z:599c4a41-75aa-470b-a3ec-8defe4b4de40" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2175,10 +2232,10 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:45:39 GMT" + "Wed, 16 Sep 2020 22:59:02 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2187,25 +2244,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/IotHubs/ps4367\",\r\n \"name\": \"ps4367\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3492\",\r\n \"etag\": \"AAAAAA3iir0=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4367.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4367\",\r\n \"endpoint\": \"sb://iothub-ns-ps4367-3491741-c30e2f1f07.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/IotHubs/ps928\",\r\n \"name\": \"ps928\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2291\",\r\n \"etag\": \"AAAAAiGbha0=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps928.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps928\",\r\n \"endpoint\": \"sb://iothub-ns-ps928-4636392-3aeb6098fc.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/IotHubs/ps4367/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzQ5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQzNjcvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/IotHubs/ps928/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjI5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkyOC9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1d436cfe-bf89-4147-9fc6-0c40a520bea3" + "015bfa69-c54a-492d-b779-a154f3a90d44" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -2223,13 +2280,13 @@ "1199" ], "x-ms-request-id": [ - "50342e6e-0d0e-4001-9396-57413ba1425a" + "5c73d6fb-510a-480a-85f1-f6f99bc7f4e0" ], "x-ms-correlation-request-id": [ - "50342e6e-0d0e-4001-9396-57413ba1425a" + "5c73d6fb-510a-480a-85f1-f6f99bc7f4e0" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184505Z:50342e6e-0d0e-4001-9396-57413ba1425a" + "WESTUS2:20200916T225828Z:5c73d6fb-510a-480a-85f1-f6f99bc7f4e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2238,7 +2295,7 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:45:05 GMT" + "Wed, 16 Sep 2020 22:58:28 GMT" ], "Content-Length": [ "905" @@ -2250,25 +2307,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"PepJ+JlM+i3+dsDKoyxjDglLUPbO8cZrJPnBrIJqJ3s=\",\r\n \"secondaryKey\": \"SxEKJ9ktFn0Dh+dPOs4nIMUWPfDyad+MCNBuo1cbor8=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"PKnv0Zeak3xOAoNwFzKyr95m1o50GdhhsmlWTSmNQCY=\",\r\n \"secondaryKey\": \"8EkrVSNtXCsscme2pqzB6J/T390SAkDbJKa2QpvOu4I=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"nUghCdL/9qcPai13aLTOpL49u/7hpd2IH+JySfU5efI=\",\r\n \"secondaryKey\": \"tvptAxcLg2St0ZIHVghxCBjrCFMhsp+vXRQCW+M2/dg=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"NvMFpHd6/KkdoH1zfVPNgL0f45ack1zD2OnqWe2HkeU=\",\r\n \"secondaryKey\": \"8Ig4L0DGXeJHtKd+IY/KhH+SJhT6CFObIVWBFHMJ9mM=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"jv2MQ4iY5/o5P2xeHEdjJ+JWOLTNzzm2xnGTAp5bKMg=\",\r\n \"secondaryKey\": \"jEMhkWsCQKF2pDaWZcoZblCjTkkalawZ6FBiYihl70M=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"e693iDuMbKSj4T1pii4sVBC+KHVLpc5XwblsrZU1dps=\",\r\n \"secondaryKey\": \"h4FtqpsfgqaMlxIKs1+KSXumU9VE4z4DoFq5vxnYTFg=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"K30KbMFP4Pc0z/ysd++edx+diQqZ0B7lJR6CGvH0eFU=\",\r\n \"secondaryKey\": \"PCezhbxQcz0DaQ5jQDWrH7xulciHM1239wGyI5bt6Sg=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Dg3tDKDJAZVeTX3iEwiCDlDaW/75wfyoj/ZbdV80J/I=\",\r\n \"secondaryKey\": \"4ZKCKB9+c6lIaYq7zViZop0lr9eeWymwUY7PpVuglqE=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"dFQQMJ+86Ria+CKEcJACEClHJJE+HwIHdAwLUErzfR8=\",\r\n \"secondaryKey\": \"yiNUp49uyzc4R4I/WRlCzBCekTuba+u//qgUzWwsFxc=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"VGvpsyOncR8ohPdHF/+5YP9AYoe2sadA1pZQ3SzHV2U=\",\r\n \"secondaryKey\": \"WHJebqdM8I7P3/ZAyVvDI8gG9otgpbaOjzA/gfyMMZk=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/IotHubs/ps4367/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzQ5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQzNjcvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/IotHubs/ps928/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjI5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkyOC9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ea7d49e2-a26c-458c-8d78-968f700b01b6" + "30a23910-f5a8-42fd-9ab3-5beb6c092098" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -2286,13 +2343,13 @@ "1198" ], "x-ms-request-id": [ - "99aa0fd1-1938-4494-b453-ecc5a38659b8" + "e6cfdb7e-2d0f-4a22-8958-bfa049067aee" ], "x-ms-correlation-request-id": [ - "99aa0fd1-1938-4494-b453-ecc5a38659b8" + "e6cfdb7e-2d0f-4a22-8958-bfa049067aee" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184540Z:99aa0fd1-1938-4494-b453-ecc5a38659b8" + "WESTUS2:20200916T225903Z:e6cfdb7e-2d0f-4a22-8958-bfa049067aee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2301,7 +2358,7 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:45:39 GMT" + "Wed, 16 Sep 2020 22:59:02 GMT" ], "Content-Length": [ "1078" @@ -2313,19 +2370,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"PepJ+JlM+i3+dsDKoyxjDglLUPbO8cZrJPnBrIJqJ3s=\",\r\n \"secondaryKey\": \"SxEKJ9ktFn0Dh+dPOs4nIMUWPfDyad+MCNBuo1cbor8=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"PKnv0Zeak3xOAoNwFzKyr95m1o50GdhhsmlWTSmNQCY=\",\r\n \"secondaryKey\": \"8EkrVSNtXCsscme2pqzB6J/T390SAkDbJKa2QpvOu4I=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"nUghCdL/9qcPai13aLTOpL49u/7hpd2IH+JySfU5efI=\",\r\n \"secondaryKey\": \"tvptAxcLg2St0ZIHVghxCBjrCFMhsp+vXRQCW+M2/dg=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"NvMFpHd6/KkdoH1zfVPNgL0f45ack1zD2OnqWe2HkeU=\",\r\n \"secondaryKey\": \"8Ig4L0DGXeJHtKd+IY/KhH+SJhT6CFObIVWBFHMJ9mM=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"jv2MQ4iY5/o5P2xeHEdjJ+JWOLTNzzm2xnGTAp5bKMg=\",\r\n \"secondaryKey\": \"jEMhkWsCQKF2pDaWZcoZblCjTkkalawZ6FBiYihl70M=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"ServiceKey\",\r\n \"primaryKey\": \"UIGkxyy7YbA7nc4z1ldGq5sZ/Tiu2E6W2URPNkznor0=\",\r\n \"secondaryKey\": \"SloqRNhiVOAm0QgyyJdTU1rtKRzFN66Zfm/K9pCCCQ8=\",\r\n \"rights\": \"ServiceConnect\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"e693iDuMbKSj4T1pii4sVBC+KHVLpc5XwblsrZU1dps=\",\r\n \"secondaryKey\": \"h4FtqpsfgqaMlxIKs1+KSXumU9VE4z4DoFq5vxnYTFg=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"K30KbMFP4Pc0z/ysd++edx+diQqZ0B7lJR6CGvH0eFU=\",\r\n \"secondaryKey\": \"PCezhbxQcz0DaQ5jQDWrH7xulciHM1239wGyI5bt6Sg=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Dg3tDKDJAZVeTX3iEwiCDlDaW/75wfyoj/ZbdV80J/I=\",\r\n \"secondaryKey\": \"4ZKCKB9+c6lIaYq7zViZop0lr9eeWymwUY7PpVuglqE=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"dFQQMJ+86Ria+CKEcJACEClHJJE+HwIHdAwLUErzfR8=\",\r\n \"secondaryKey\": \"yiNUp49uyzc4R4I/WRlCzBCekTuba+u//qgUzWwsFxc=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"VGvpsyOncR8ohPdHF/+5YP9AYoe2sadA1pZQ3SzHV2U=\",\r\n \"secondaryKey\": \"WHJebqdM8I7P3/ZAyVvDI8gG9otgpbaOjzA/gfyMMZk=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"ServiceKey\",\r\n \"primaryKey\": \"bbu+lnmo90J+cinufJ8q6GByJGvwQbRTEBz0yJbF5oU=\",\r\n \"secondaryKey\": \"5NcrFxP9zgNshZaKELPl2WPOujpeBIRYX+Bq/31MBXo=\",\r\n \"rights\": \"ServiceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZmMwNzVjMmYtODAzNy00YzQ5LWJjYzgtNmI4OTcxMzJmYmVm?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWm1Nd056VmpNbVl0T0RBek55MDBZelE1TFdKall6Z3RObUk0T1RjeE16Sm1ZbVZtP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfM2JhOTEzZjItNGU0YS00ZjNjLThjYjItMTUwZDM3ODliMDUw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTTJKaE9URXpaakl0TkdVMFlTMDBaak5qTFRoallqSXRNVFV3WkRNM09EbGlNRFV3P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -2336,20 +2393,20 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], "x-ms-request-id": [ - "f603e9a8-f97d-499d-b74c-6f91648b7947" + "aa873d97-226f-476b-a725-859bd07d33ad" ], "x-ms-correlation-request-id": [ - "f603e9a8-f97d-499d-b74c-6f91648b7947" + "aa873d97-226f-476b-a725-859bd07d33ad" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184539Z:f603e9a8-f97d-499d-b74c-6f91648b7947" + "WESTUS2:20200916T225902Z:aa873d97-226f-476b-a725-859bd07d33ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2358,7 +2415,7 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:45:38 GMT" + "Wed, 16 Sep 2020 22:59:01 GMT" ], "Content-Length": [ "22" @@ -2374,21 +2431,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/IotHubs/ps4367/IotHubKeys/ServiceKey/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzQ5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQzNjcvSW90SHViS2V5cy9TZXJ2aWNlS2V5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/IotHubs/ps928/IotHubKeys/ServiceKey/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjI5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkyOC9Jb3RIdWJLZXlzL1NlcnZpY2VLZXkvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "73cc898b-b364-4236-a06d-306709d79504" + "95c76c16-251d-414f-813d-1af0e1b5f791" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -2406,13 +2463,13 @@ "1197" ], "x-ms-request-id": [ - "d97baa6f-0294-42b8-83da-07f58d689f40" + "2a0bd3cb-d27b-4f3f-99d3-afc9838db296" ], "x-ms-correlation-request-id": [ - "d97baa6f-0294-42b8-83da-07f58d689f40" + "2a0bd3cb-d27b-4f3f-99d3-afc9838db296" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184540Z:d97baa6f-0294-42b8-83da-07f58d689f40" + "WESTUS2:20200916T225903Z:2a0bd3cb-d27b-4f3f-99d3-afc9838db296" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2421,7 +2478,7 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:45:39 GMT" + "Wed, 16 Sep 2020 22:59:03 GMT" ], "Content-Length": [ "172" @@ -2433,19 +2490,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"keyName\": \"ServiceKey\",\r\n \"primaryKey\": \"UIGkxyy7YbA7nc4z1ldGq5sZ/Tiu2E6W2URPNkznor0=\",\r\n \"secondaryKey\": \"SloqRNhiVOAm0QgyyJdTU1rtKRzFN66Zfm/K9pCCCQ8=\",\r\n \"rights\": \"ServiceConnect\"\r\n}", + "ResponseBody": "{\r\n \"keyName\": \"ServiceKey\",\r\n \"primaryKey\": \"bbu+lnmo90J+cinufJ8q6GByJGvwQbRTEBz0yJbF5oU=\",\r\n \"secondaryKey\": \"5NcrFxP9zgNshZaKELPl2WPOujpeBIRYX+Bq/31MBXo=\",\r\n \"rights\": \"ServiceConnect\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407/operationResults/b3NfaWRfYTBiY2FlYjQtZTJjZS00ODQ1LWEwODctYjBiMzZjNTZmY2Rl?api-version=2017-11-15&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzQ5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxNDA3L29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZZVEJpWTJGbFlqUXRaVEpqWlMwME9EUTFMV0V3T0RjdFlqQmlNelpqTlRabVkyUmw/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571/operationResults/b3NfaWRfNmM2MTRhMzItMDYwNy00Y2U4LWE4ZTYtNWM2MmIxZDRlMjYw?api-version=2017-11-15&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjI5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1NzEvb3BlcmF0aW9uUmVzdWx0cy9iM05mYVdSZk5tTTJNVFJoTXpJdE1EWXdOeTAwWTJVNExXRTRaVFl0TldNMk1tSXhaRFJsTWpZdz9hcGktdmVyc2lvbj0yMDE3LTExLTE1JmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -2463,13 +2520,13 @@ "11998" ], "x-ms-request-id": [ - "62735338-2de3-4cd0-9ad0-85809ee60f1a" + "00471de1-4fcc-42da-8758-f32fdcd194f6" ], "x-ms-correlation-request-id": [ - "62735338-2de3-4cd0-9ad0-85809ee60f1a" + "00471de1-4fcc-42da-8758-f32fdcd194f6" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184612Z:62735338-2de3-4cd0-9ad0-85809ee60f1a" + "WESTUS2:20200916T225936Z:00471de1-4fcc-42da-8758-f32fdcd194f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2478,7 +2535,7 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:46:12 GMT" + "Wed, 16 Sep 2020 22:59:35 GMT" ], "Content-Length": [ "22" @@ -2494,21 +2551,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzQ5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxNDA3L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjI5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1NzEvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6c890d8e-6f10-48e4-ae45-945298491031" + "99725487-956e-4bc4-90f6-e0b7655108f6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -2526,13 +2583,13 @@ "1199" ], "x-ms-request-id": [ - "208fcae5-70da-49a1-843e-1cd52230c12e" + "f8e29c49-eb4d-4f99-960b-7fa30feea619" ], "x-ms-correlation-request-id": [ - "208fcae5-70da-49a1-843e-1cd52230c12e" + "f8e29c49-eb4d-4f99-960b-7fa30feea619" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184613Z:208fcae5-70da-49a1-843e-1cd52230c12e" + "WESTUS2:20200916T225936Z:f8e29c49-eb4d-4f99-960b-7fa30feea619" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2541,7 +2598,7 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:46:12 GMT" + "Wed, 16 Sep 2020 22:59:35 GMT" ], "Content-Length": [ "229" @@ -2553,25 +2610,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"JraJi6axiOsCIweCPen07liPTtaLfQuieMRucsKvJZU=\",\r\n \"secondaryKey\": \"4cZMj3ziVaPRciPK8tGJbH9rSBYOsWCgGiJdllPqMx0=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"8tTsTbS/pn/vf+h3CCuYkFtSakFB52VQ1PCQOqpUwC0=\",\r\n \"secondaryKey\": \"HbnNSzYVCz/kgaA9+ktkSdqYZha/DuxRpQGJ0HanVoY=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzQ5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxNDA3L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjI5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1NzEvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8fc0cdad-1f92-4134-baf8-71f634e609aa" + "93221896-6aad-4b9e-8693-9609036a4d87" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -2589,13 +2646,13 @@ "1198" ], "x-ms-request-id": [ - "b5676ba9-8590-4f6e-b708-ec920a172494" + "177b825a-2362-46fb-a785-af74181a1b26" ], "x-ms-correlation-request-id": [ - "b5676ba9-8590-4f6e-b708-ec920a172494" + "177b825a-2362-46fb-a785-af74181a1b26" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184613Z:b5676ba9-8590-4f6e-b708-ec920a172494" + "WESTUS2:20200916T225937Z:177b825a-2362-46fb-a785-af74181a1b26" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2604,7 +2661,7 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:46:13 GMT" + "Wed, 16 Sep 2020 22:59:36 GMT" ], "Content-Length": [ "229" @@ -2616,25 +2673,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"JraJi6axiOsCIweCPen07liPTtaLfQuieMRucsKvJZU=\",\r\n \"secondaryKey\": \"4cZMj3ziVaPRciPK8tGJbH9rSBYOsWCgGiJdllPqMx0=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"8tTsTbS/pn/vf+h3CCuYkFtSakFB52VQ1PCQOqpUwC0=\",\r\n \"secondaryKey\": \"HbnNSzYVCz/kgaA9+ktkSdqYZha/DuxRpQGJ0HanVoY=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzQ5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxNDA3L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjI5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1NzEvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "54af1f9a-c9ee-409c-a799-a7f501042bdc" + "5bcd79ce-abd7-4b34-bc95-3c212050031a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -2652,13 +2709,13 @@ "1197" ], "x-ms-request-id": [ - "7c2868ea-4c83-4520-8bf9-0f25547f8c26" + "272b603d-73e7-4869-86a7-1df1c25a1f01" ], "x-ms-correlation-request-id": [ - "7c2868ea-4c83-4520-8bf9-0f25547f8c26" + "272b603d-73e7-4869-86a7-1df1c25a1f01" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184614Z:7c2868ea-4c83-4520-8bf9-0f25547f8c26" + "WESTUS2:20200916T225937Z:272b603d-73e7-4869-86a7-1df1c25a1f01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2667,7 +2724,7 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:46:13 GMT" + "Wed, 16 Sep 2020 22:59:36 GMT" ], "Content-Length": [ "229" @@ -2679,25 +2736,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"JraJi6axiOsCIweCPen07liPTtaLfQuieMRucsKvJZU=\",\r\n \"secondaryKey\": \"4cZMj3ziVaPRciPK8tGJbH9rSBYOsWCgGiJdllPqMx0=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"8tTsTbS/pn/vf+h3CCuYkFtSakFB52VQ1PCQOqpUwC0=\",\r\n \"secondaryKey\": \"HbnNSzYVCz/kgaA9+ktkSdqYZha/DuxRpQGJ0HanVoY=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzQ5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxNDA3L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjI5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1NzEvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "15bac7db-27a8-45d6-a8c8-327c5818dccd" + "32bd9bb6-94dd-4935-bba1-5be14b2007ad" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -2715,13 +2772,13 @@ "1196" ], "x-ms-request-id": [ - "7c9cfa67-57cf-41c8-af9d-cfdd96242b14" + "02ecaac2-28e5-4694-b81e-81d1e42a5aa6" ], "x-ms-correlation-request-id": [ - "7c9cfa67-57cf-41c8-af9d-cfdd96242b14" + "02ecaac2-28e5-4694-b81e-81d1e42a5aa6" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184614Z:7c9cfa67-57cf-41c8-af9d-cfdd96242b14" + "WESTUS2:20200916T225938Z:02ecaac2-28e5-4694-b81e-81d1e42a5aa6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2730,7 +2787,7 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:46:14 GMT" + "Wed, 16 Sep 2020 22:59:37 GMT" ], "Content-Length": [ "229" @@ -2742,25 +2799,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"JraJi6axiOsCIweCPen07liPTtaLfQuieMRucsKvJZU=\",\r\n \"secondaryKey\": \"4cZMj3ziVaPRciPK8tGJbH9rSBYOsWCgGiJdllPqMx0=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"8tTsTbS/pn/vf+h3CCuYkFtSakFB52VQ1PCQOqpUwC0=\",\r\n \"secondaryKey\": \"HbnNSzYVCz/kgaA9+ktkSdqYZha/DuxRpQGJ0HanVoY=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzQ5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxNDA3L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjI5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1NzEvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a38e5db-6839-4c23-80af-2a83afaeadc0" + "5e431758-12fc-4441-b620-99450339178d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -2778,13 +2835,13 @@ "1195" ], "x-ms-request-id": [ - "09cd22b3-6d52-44a5-943e-0572581f4fa3" + "e613d66e-0134-4f66-b248-0dd7cf42d083" ], "x-ms-correlation-request-id": [ - "09cd22b3-6d52-44a5-943e-0572581f4fa3" + "e613d66e-0134-4f66-b248-0dd7cf42d083" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184615Z:09cd22b3-6d52-44a5-943e-0572581f4fa3" + "WESTUS2:20200916T225938Z:e613d66e-0134-4f66-b248-0dd7cf42d083" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2793,7 +2850,7 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:46:14 GMT" + "Wed, 16 Sep 2020 22:59:37 GMT" ], "Content-Length": [ "229" @@ -2805,25 +2862,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"JraJi6axiOsCIweCPen07liPTtaLfQuieMRucsKvJZU=\",\r\n \"secondaryKey\": \"4cZMj3ziVaPRciPK8tGJbH9rSBYOsWCgGiJdllPqMx0=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"8tTsTbS/pn/vf+h3CCuYkFtSakFB52VQ1PCQOqpUwC0=\",\r\n \"secondaryKey\": \"HbnNSzYVCz/kgaA9+ktkSdqYZha/DuxRpQGJ0HanVoY=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzQ5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxNDA3L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjI5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1NzEvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "20afbda4-8edd-4c20-b840-387175c91db2" + "ff544b6c-923f-4af3-b5b9-5606c423cf63" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -2841,13 +2898,13 @@ "1194" ], "x-ms-request-id": [ - "c1117104-b893-48fb-9512-28b088ba63de" + "d0ac2a16-0821-4e10-9ff6-9dc91b8a6a5d" ], "x-ms-correlation-request-id": [ - "c1117104-b893-48fb-9512-28b088ba63de" + "d0ac2a16-0821-4e10-9ff6-9dc91b8a6a5d" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184615Z:c1117104-b893-48fb-9512-28b088ba63de" + "WESTUS2:20200916T225939Z:d0ac2a16-0821-4e10-9ff6-9dc91b8a6a5d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2856,7 +2913,7 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:46:14 GMT" + "Wed, 16 Sep 2020 22:59:38 GMT" ], "Content-Length": [ "229" @@ -2868,25 +2925,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"JraJi6axiOsCIweCPen07liPTtaLfQuieMRucsKvJZU=\",\r\n \"secondaryKey\": \"4cZMj3ziVaPRciPK8tGJbH9rSBYOsWCgGiJdllPqMx0=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"8tTsTbS/pn/vf+h3CCuYkFtSakFB52VQ1PCQOqpUwC0=\",\r\n \"secondaryKey\": \"HbnNSzYVCz/kgaA9+ktkSdqYZha/DuxRpQGJ0HanVoY=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzQ5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxNDA3L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjI5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1NzEvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e0235796-fd79-40b0-88b8-fcecf72faa6e" + "0764a68f-dac6-427d-830b-c03d8cd4f05e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -2904,13 +2961,13 @@ "1193" ], "x-ms-request-id": [ - "906f1bce-9042-439b-8d80-35a8671f9a1f" + "4f6e2db3-f28a-4caf-b389-ed8dc7d6c75b" ], "x-ms-correlation-request-id": [ - "906f1bce-9042-439b-8d80-35a8671f9a1f" + "4f6e2db3-f28a-4caf-b389-ed8dc7d6c75b" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184615Z:906f1bce-9042-439b-8d80-35a8671f9a1f" + "WESTUS2:20200916T225939Z:4f6e2db3-f28a-4caf-b389-ed8dc7d6c75b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2919,7 +2976,7 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:46:15 GMT" + "Wed, 16 Sep 2020 22:59:38 GMT" ], "Content-Length": [ "229" @@ -2931,25 +2988,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"JraJi6axiOsCIweCPen07liPTtaLfQuieMRucsKvJZU=\",\r\n \"secondaryKey\": \"4cZMj3ziVaPRciPK8tGJbH9rSBYOsWCgGiJdllPqMx0=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"8tTsTbS/pn/vf+h3CCuYkFtSakFB52VQ1PCQOqpUwC0=\",\r\n \"secondaryKey\": \"HbnNSzYVCz/kgaA9+ktkSdqYZha/DuxRpQGJ0HanVoY=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzQ5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxNDA3L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjI5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1NzEvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3cf190ed-4072-4b18-95ce-e0e06102dd44" + "cc3b48e5-09b5-4bd3-bdcd-46bd09c14f7d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -2967,13 +3024,13 @@ "1192" ], "x-ms-request-id": [ - "02e4e115-a377-473d-ac5e-4d6afabebdfa" + "bc6423ef-751b-4c74-b062-5907b2ac78f2" ], "x-ms-correlation-request-id": [ - "02e4e115-a377-473d-ac5e-4d6afabebdfa" + "bc6423ef-751b-4c74-b062-5907b2ac78f2" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184616Z:02e4e115-a377-473d-ac5e-4d6afabebdfa" + "WESTUS2:20200916T225939Z:bc6423ef-751b-4c74-b062-5907b2ac78f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2982,7 +3039,7 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:46:15 GMT" + "Wed, 16 Sep 2020 22:59:39 GMT" ], "Content-Length": [ "229" @@ -2994,25 +3051,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"JraJi6axiOsCIweCPen07liPTtaLfQuieMRucsKvJZU=\",\r\n \"secondaryKey\": \"4cZMj3ziVaPRciPK8tGJbH9rSBYOsWCgGiJdllPqMx0=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"8tTsTbS/pn/vf+h3CCuYkFtSakFB52VQ1PCQOqpUwC0=\",\r\n \"secondaryKey\": \"HbnNSzYVCz/kgaA9+ktkSdqYZha/DuxRpQGJ0HanVoY=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzQ5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxNDA3L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjI5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1NzEvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ebef2085-1b81-4a67-8c2f-bd15fc8eec0b" + "733441e5-d04b-4a9f-be07-7e6ef79d3ebf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -3030,13 +3087,13 @@ "1191" ], "x-ms-request-id": [ - "a1d4eadc-2b18-46f8-9581-f55c60accd27" + "82c2837c-162d-4707-8b6d-86232e3c1a18" ], "x-ms-correlation-request-id": [ - "a1d4eadc-2b18-46f8-9581-f55c60accd27" + "82c2837c-162d-4707-8b6d-86232e3c1a18" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184616Z:a1d4eadc-2b18-46f8-9581-f55c60accd27" + "WESTUS2:20200916T225940Z:82c2837c-162d-4707-8b6d-86232e3c1a18" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3045,7 +3102,7 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:46:16 GMT" + "Wed, 16 Sep 2020 22:59:39 GMT" ], "Content-Length": [ "229" @@ -3057,25 +3114,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"JraJi6axiOsCIweCPen07liPTtaLfQuieMRucsKvJZU=\",\r\n \"secondaryKey\": \"4cZMj3ziVaPRciPK8tGJbH9rSBYOsWCgGiJdllPqMx0=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"8tTsTbS/pn/vf+h3CCuYkFtSakFB52VQ1PCQOqpUwC0=\",\r\n \"secondaryKey\": \"HbnNSzYVCz/kgaA9+ktkSdqYZha/DuxRpQGJ0HanVoY=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzQ5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxNDA3L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjI5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1NzEvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "baedd59c-f3a5-415d-af57-c6223e93cf85" + "553f8f6c-7c2d-42e1-8230-88159feaa201" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -3093,13 +3150,13 @@ "1190" ], "x-ms-request-id": [ - "e30ea349-1aac-459b-9f1d-7609d7c12a58" + "bec133cc-7896-4320-a5ce-8fb0975f3a76" ], "x-ms-correlation-request-id": [ - "e30ea349-1aac-459b-9f1d-7609d7c12a58" + "bec133cc-7896-4320-a5ce-8fb0975f3a76" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184617Z:e30ea349-1aac-459b-9f1d-7609d7c12a58" + "WESTUS2:20200916T225940Z:bec133cc-7896-4320-a5ce-8fb0975f3a76" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3108,7 +3165,7 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:46:16 GMT" + "Wed, 16 Sep 2020 22:59:39 GMT" ], "Content-Length": [ "229" @@ -3120,25 +3177,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"JraJi6axiOsCIweCPen07liPTtaLfQuieMRucsKvJZU=\",\r\n \"secondaryKey\": \"4cZMj3ziVaPRciPK8tGJbH9rSBYOsWCgGiJdllPqMx0=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"8tTsTbS/pn/vf+h3CCuYkFtSakFB52VQ1PCQOqpUwC0=\",\r\n \"secondaryKey\": \"HbnNSzYVCz/kgaA9+ktkSdqYZha/DuxRpQGJ0HanVoY=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzQ5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxNDA3L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjI5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1NzEvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8ec0042d-4f85-4f5b-a306-5c192a21687c" + "e687b6bb-1099-4a58-b8fa-a4a53804fdea" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -3156,13 +3213,13 @@ "1189" ], "x-ms-request-id": [ - "8862f165-445e-4248-9d6e-98bffb3b3a49" + "c6ff785f-9c60-475f-8acc-19359e5a4db1" ], "x-ms-correlation-request-id": [ - "8862f165-445e-4248-9d6e-98bffb3b3a49" + "c6ff785f-9c60-475f-8acc-19359e5a4db1" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184617Z:8862f165-445e-4248-9d6e-98bffb3b3a49" + "WESTUS2:20200916T225941Z:c6ff785f-9c60-475f-8acc-19359e5a4db1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3171,7 +3228,7 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:46:17 GMT" + "Wed, 16 Sep 2020 22:59:40 GMT" ], "Content-Length": [ "229" @@ -3183,19 +3240,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"JraJi6axiOsCIweCPen07liPTtaLfQuieMRucsKvJZU=\",\r\n \"secondaryKey\": \"4cZMj3ziVaPRciPK8tGJbH9rSBYOsWCgGiJdllPqMx0=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"8tTsTbS/pn/vf+h3CCuYkFtSakFB52VQ1PCQOqpUwC0=\",\r\n \"secondaryKey\": \"HbnNSzYVCz/kgaA9+ktkSdqYZha/DuxRpQGJ0HanVoY=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/provisioningServices/ps1407/operationResults/b3NfaWRfM2M1Mzc3MjAtMjcxZi00ZmEzLWI5MWUtNTRhMGUzYjU4YWNl?api-version=2017-11-15&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzQ5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxNDA3L29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZNMk0xTXpjM01qQXRNamN4WmkwMFptRXpMV0k1TVdVdE5UUmhNR1V6WWpVNFlXTmw/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/provisioningServices/ps571/operationResults/b3NfaWRfNTMzMGIxZWMtZTM1Yi00NWVkLThlMWEtY2VmZTcyNjgxZDIz?api-version=2017-11-15&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjI5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1NzEvb3BlcmF0aW9uUmVzdWx0cy9iM05mYVdSZk5UTXpNR0l4WldNdFpUTTFZaTAwTldWa0xUaGxNV0V0WTJWbVpUY3lOamd4WkRJej9hcGktdmVyc2lvbj0yMDE3LTExLTE1JmFzeW5jaW5mbw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -3213,13 +3270,13 @@ "11982" ], "x-ms-request-id": [ - "5540cc48-2799-4018-b4a0-740194210aa5" + "3853d617-12b1-4012-8b23-2c94db1eb4e7" ], "x-ms-correlation-request-id": [ - "5540cc48-2799-4018-b4a0-740194210aa5" + "3853d617-12b1-4012-8b23-2c94db1eb4e7" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184653Z:5540cc48-2799-4018-b4a0-740194210aa5" + "WESTUS2:20200916T230013Z:3853d617-12b1-4012-8b23-2c94db1eb4e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3228,7 +3285,7 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:46:53 GMT" + "Wed, 16 Sep 2020 23:00:13 GMT" ], "Content-Length": [ "22" @@ -3244,21 +3301,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3492/providers/Microsoft.Devices/IotHubs/ps4367?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzQ5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQzNjc/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2291/providers/Microsoft.Devices/IotHubs/ps928?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjI5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkyOD9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "86d477ce-035c-45f2-9212-3b7f37183bf5" + "b288a4c0-5f1d-4dee-9c50-998265595662" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -3270,13 +3327,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfOTA3OTA4MTYtNzlmZS00MGI3LWI5N2UtNGRiOWJjYjVhZmU2?api-version=2019-07-01-preview&operationSource=os_ih" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNzNjMTM0YmUtMGNiZS00N2MwLTkxYmYtZjZiOTZlM2QzZjBk?api-version=2019-07-01-preview&operationSource=os_ih" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfOTA3OTA4MTYtNzlmZS00MGI3LWI5N2UtNGRiOWJjYjVhZmU2?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNzNjMTM0YmUtMGNiZS00N2MwLTkxYmYtZjZiOTZlM2QzZjBk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3285,13 +3342,13 @@ "14999" ], "x-ms-request-id": [ - "95b23ffc-26a8-4eb2-853d-02023542fffc" + "a2fba945-4308-4799-bfaf-faa591a20168" ], "x-ms-correlation-request-id": [ - "95b23ffc-26a8-4eb2-853d-02023542fffc" + "a2fba945-4308-4799-bfaf-faa591a20168" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184654Z:95b23ffc-26a8-4eb2-853d-02023542fffc" + "WESTUS2:20200916T230014Z:a2fba945-4308-4799-bfaf-faa591a20168" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3300,7 +3357,7 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:46:54 GMT" + "Wed, 16 Sep 2020 23:00:14 GMT" ], "Content-Length": [ "4" @@ -3316,15 +3373,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfOTA3OTA4MTYtNzlmZS00MGI3LWI5N2UtNGRiOWJjYjVhZmU2?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmT1RBM09UQTRNVFl0TnpsbVpTMDBNR0kzTFdJNU4yVXROR1JpT1dKallqVmhabVUyP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNzNjMTM0YmUtMGNiZS00N2MwLTkxYmYtZjZiOTZlM2QzZjBk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTnpOak1UTTBZbVV0TUdOaVpTMDBOMk13TFRreFltWXRaalppT1RabE0yUXpaakJrP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -3339,16 +3396,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11989" ], "x-ms-request-id": [ - "5dacc253-f3c6-4838-aacf-215df5337d89" + "b018ebd3-bb3f-47c4-80f4-0e59ce4d2f7d" ], "x-ms-correlation-request-id": [ - "5dacc253-f3c6-4838-aacf-215df5337d89" + "b018ebd3-bb3f-47c4-80f4-0e59ce4d2f7d" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184709Z:5dacc253-f3c6-4838-aacf-215df5337d89" + "WESTUS2:20200916T230029Z:b018ebd3-bb3f-47c4-80f4-0e59ce4d2f7d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3357,7 +3414,7 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:47:09 GMT" + "Wed, 16 Sep 2020 23:00:29 GMT" ], "Content-Length": [ "22" @@ -3373,15 +3430,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfOTA3OTA4MTYtNzlmZS00MGI3LWI5N2UtNGRiOWJjYjVhZmU2?api-version=2019-07-01-preview&operationSource=os_ih", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmT1RBM09UQTRNVFl0TnpsbVpTMDBNR0kzTFdJNU4yVXROR1JpT1dKallqVmhabVUyP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWg=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNzNjMTM0YmUtMGNiZS00N2MwLTkxYmYtZjZiOTZlM2QzZjBk?api-version=2019-07-01-preview&operationSource=os_ih", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTnpOak1UTTBZbVV0TUdOaVpTMDBOMk13TFRreFltWXRaalppT1RabE0yUXpaakJrP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWg=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" ] }, @@ -3393,7 +3450,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfOTA3OTA4MTYtNzlmZS00MGI3LWI5N2UtNGRiOWJjYjVhZmU2?api-version=2019-07-01-preview&operationSource=os_ih" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNzNjMTM0YmUtMGNiZS00N2MwLTkxYmYtZjZiOTZlM2QzZjBk?api-version=2019-07-01-preview&operationSource=os_ih" ], "Retry-After": [ "15" @@ -3402,16 +3459,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11988" ], "x-ms-request-id": [ - "3f4e56de-d50f-4eb8-9a3d-d4fc01be432c" + "c056051c-964a-45a5-94c1-0ab35794086d" ], "x-ms-correlation-request-id": [ - "3f4e56de-d50f-4eb8-9a3d-d4fc01be432c" + "c056051c-964a-45a5-94c1-0ab35794086d" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184710Z:3f4e56de-d50f-4eb8-9a3d-d4fc01be432c" + "WESTUS2:20200916T230029Z:c056051c-964a-45a5-94c1-0ab35794086d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3420,7 +3477,7 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:47:09 GMT" + "Wed, 16 Sep 2020 23:00:29 GMT" ], "Expires": [ "-1" @@ -3433,22 +3490,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourcegroups/ps3492?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlZ3JvdXBzL3BzMzQ5Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourcegroups/ps2291?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlZ3JvdXBzL3BzMjI5MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "89a6d5a0-7f28-493b-8e17-26d164c76919" + "43dd2dfb-1ba0-4ebf-b366-e1571c4d2f41" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -3459,7 +3516,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIyOTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3468,13 +3525,13 @@ "14999" ], "x-ms-request-id": [ - "f29dd0ff-ee51-42db-92e6-14b0506c8b79" + "3c96e26d-0a10-4b5d-8722-ee65c9eee8a9" ], "x-ms-correlation-request-id": [ - "f29dd0ff-ee51-42db-92e6-14b0506c8b79" + "3c96e26d-0a10-4b5d-8722-ee65c9eee8a9" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184711Z:f29dd0ff-ee51-42db-92e6-14b0506c8b79" + "WESTUS2:20200916T230031Z:3c96e26d-0a10-4b5d-8722-ee65c9eee8a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3483,7 +3540,7 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:47:10 GMT" + "Wed, 16 Sep 2020 23:00:30 GMT" ], "Expires": [ "-1" @@ -3496,16 +3553,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNME9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIyOTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeU9URXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -3516,7 +3573,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIyOTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3525,13 +3582,13 @@ "11999" ], "x-ms-request-id": [ - "73b9de57-dade-4935-8485-eef739fb3eed" + "4e04531f-ea33-4c7e-8342-8c66fe6d6a62" ], "x-ms-correlation-request-id": [ - "73b9de57-dade-4935-8485-eef739fb3eed" + "4e04531f-ea33-4c7e-8342-8c66fe6d6a62" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184726Z:73b9de57-dade-4935-8485-eef739fb3eed" + "WESTUS2:20200916T230046Z:4e04531f-ea33-4c7e-8342-8c66fe6d6a62" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3540,7 +3597,7 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:47:25 GMT" + "Wed, 16 Sep 2020 23:00:45 GMT" ], "Expires": [ "-1" @@ -3553,16 +3610,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNME9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIyOTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeU9URXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -3573,7 +3630,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIyOTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3582,13 +3639,13 @@ "11998" ], "x-ms-request-id": [ - "2e58802d-f542-4a07-abc6-919efc0bd5d1" + "2443a73d-896b-4c0c-9147-47b6fed84117" ], "x-ms-correlation-request-id": [ - "2e58802d-f542-4a07-abc6-919efc0bd5d1" + "2443a73d-896b-4c0c-9147-47b6fed84117" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184741Z:2e58802d-f542-4a07-abc6-919efc0bd5d1" + "WESTUS2:20200916T230101Z:2443a73d-896b-4c0c-9147-47b6fed84117" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3597,7 +3654,7 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:47:41 GMT" + "Wed, 16 Sep 2020 23:01:01 GMT" ], "Expires": [ "-1" @@ -3610,16 +3667,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNME9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIyOTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeU9URXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -3630,7 +3687,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIyOTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3639,13 +3696,13 @@ "11997" ], "x-ms-request-id": [ - "b726e323-aa10-4143-a7ff-4931f5525692" + "4663f52f-cc29-49ff-b2f0-0347854588aa" ], "x-ms-correlation-request-id": [ - "b726e323-aa10-4143-a7ff-4931f5525692" + "4663f52f-cc29-49ff-b2f0-0347854588aa" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184756Z:b726e323-aa10-4143-a7ff-4931f5525692" + "WESTUS2:20200916T230116Z:4663f52f-cc29-49ff-b2f0-0347854588aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3654,7 +3711,7 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:47:55 GMT" + "Wed, 16 Sep 2020 23:01:16 GMT" ], "Expires": [ "-1" @@ -3667,16 +3724,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNME9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIyOTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeU9URXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -3687,7 +3744,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIyOTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3696,13 +3753,13 @@ "11996" ], "x-ms-request-id": [ - "fef88ef7-7694-4b59-b607-6ab7507fe6f2" + "1e7fbb02-7e3d-4e1d-b27c-784bd5c94acf" ], "x-ms-correlation-request-id": [ - "fef88ef7-7694-4b59-b607-6ab7507fe6f2" + "1e7fbb02-7e3d-4e1d-b27c-784bd5c94acf" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184811Z:fef88ef7-7694-4b59-b607-6ab7507fe6f2" + "WESTUS2:20200916T230131Z:1e7fbb02-7e3d-4e1d-b27c-784bd5c94acf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3711,7 +3768,7 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:48:11 GMT" + "Wed, 16 Sep 2020 23:01:30 GMT" ], "Expires": [ "-1" @@ -3724,16 +3781,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNME9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIyOTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeU9URXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -3744,7 +3801,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIyOTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3753,13 +3810,13 @@ "11995" ], "x-ms-request-id": [ - "5a254b22-0c41-468c-b229-7a8ac3a8aaae" + "48eefef0-b7c4-4f2f-bfd4-41f95234441c" ], "x-ms-correlation-request-id": [ - "5a254b22-0c41-468c-b229-7a8ac3a8aaae" + "48eefef0-b7c4-4f2f-bfd4-41f95234441c" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184826Z:5a254b22-0c41-468c-b229-7a8ac3a8aaae" + "WESTUS2:20200916T230146Z:48eefef0-b7c4-4f2f-bfd4-41f95234441c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3768,7 +3825,7 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:48:26 GMT" + "Wed, 16 Sep 2020 23:01:45 GMT" ], "Expires": [ "-1" @@ -3781,16 +3838,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNME9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIyOTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeU9URXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -3801,7 +3858,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIyOTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3810,13 +3867,13 @@ "11994" ], "x-ms-request-id": [ - "555afe96-c8f9-4482-b9c5-ea0de86f385e" + "68634c17-7cbe-43c5-8c8c-2bf582c81279" ], "x-ms-correlation-request-id": [ - "555afe96-c8f9-4482-b9c5-ea0de86f385e" + "68634c17-7cbe-43c5-8c8c-2bf582c81279" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184841Z:555afe96-c8f9-4482-b9c5-ea0de86f385e" + "WESTUS2:20200916T230201Z:68634c17-7cbe-43c5-8c8c-2bf582c81279" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3825,7 +3882,7 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:48:40 GMT" + "Wed, 16 Sep 2020 23:02:00 GMT" ], "Expires": [ "-1" @@ -3838,16 +3895,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNME9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIyOTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeU9URXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -3857,23 +3914,17 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], "x-ms-request-id": [ - "6acf084e-6c39-4a31-92d3-f5bce256892e" + "5cf949e1-d768-45bb-a6da-cb49447e2d77" ], "x-ms-correlation-request-id": [ - "6acf084e-6c39-4a31-92d3-f5bce256892e" + "5cf949e1-d768-45bb-a6da-cb49447e2d77" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T184856Z:6acf084e-6c39-4a31-92d3-f5bce256892e" + "WESTUS2:20200916T230216Z:5cf949e1-d768-45bb-a6da-cb49447e2d77" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3882,457 +3933,7 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:48:56 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNME9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "x-ms-request-id": [ - "93a4c531-2e57-4fea-b6c1-b6ddea549a99" - ], - "x-ms-correlation-request-id": [ - "93a4c531-2e57-4fea-b6c1-b6ddea549a99" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200522T184912Z:93a4c531-2e57-4fea-b6c1-b6ddea549a99" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 22 May 2020 18:49:11 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNME9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "x-ms-request-id": [ - "56497240-9ae6-46b9-b7ed-c6eb5ac15417" - ], - "x-ms-correlation-request-id": [ - "56497240-9ae6-46b9-b7ed-c6eb5ac15417" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200522T184927Z:56497240-9ae6-46b9-b7ed-c6eb5ac15417" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 22 May 2020 18:49:26 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNME9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], - "x-ms-request-id": [ - "1009c10d-3809-4abd-99bd-1c8ce4e41047" - ], - "x-ms-correlation-request-id": [ - "1009c10d-3809-4abd-99bd-1c8ce4e41047" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200522T184942Z:1009c10d-3809-4abd-99bd-1c8ce4e41047" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 22 May 2020 18:49:41 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNME9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" - ], - "x-ms-request-id": [ - "8199cfe8-ecdb-4835-a072-8ef26d7b0df5" - ], - "x-ms-correlation-request-id": [ - "8199cfe8-ecdb-4835-a072-8ef26d7b0df5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200522T184957Z:8199cfe8-ecdb-4835-a072-8ef26d7b0df5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 22 May 2020 18:49:56 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNME9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" - ], - "x-ms-request-id": [ - "59226f54-af54-421a-bcba-1bba42716151" - ], - "x-ms-correlation-request-id": [ - "59226f54-af54-421a-bcba-1bba42716151" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200522T185012Z:59226f54-af54-421a-bcba-1bba42716151" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 22 May 2020 18:50:12 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNME9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" - ], - "x-ms-request-id": [ - "9f2be5a0-6dc8-4daf-8cd5-b68111e3be68" - ], - "x-ms-correlation-request-id": [ - "9f2be5a0-6dc8-4daf-8cd5-b68111e3be68" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200522T185027Z:9f2be5a0-6dc8-4daf-8cd5-b68111e3be68" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 22 May 2020 18:50:26 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNME9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" - ], - "x-ms-request-id": [ - "664519c7-192b-440b-ac1a-55dd0fb6a0f0" - ], - "x-ms-correlation-request-id": [ - "664519c7-192b-440b-ac1a-55dd0fb6a0f0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200522T185042Z:664519c7-192b-440b-ac1a-55dd0fb6a0f0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 22 May 2020 18:50:41 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNME9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" - ], - "x-ms-request-id": [ - "2b7de372-dd5c-41f9-88ed-dadf2ae2e766" - ], - "x-ms-correlation-request-id": [ - "2b7de372-dd5c-41f9-88ed-dadf2ae2e766" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200522T185057Z:2b7de372-dd5c-41f9-88ed-dadf2ae2e766" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 22 May 2020 18:50:57 GMT" + "Wed, 16 Sep 2020 23:02:16 GMT" ], "Expires": [ "-1" @@ -4345,16 +3946,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNME9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIyOTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeU9URXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -4365,16 +3966,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11992" ], "x-ms-request-id": [ - "054746c8-3ec4-4975-ae14-e8b8160a05f9" + "10998651-2cc0-4f72-afbc-c62439e67237" ], "x-ms-correlation-request-id": [ - "054746c8-3ec4-4975-ae14-e8b8160a05f9" + "10998651-2cc0-4f72-afbc-c62439e67237" ], "x-ms-routing-request-id": [ - "WESTUS2:20200522T185057Z:054746c8-3ec4-4975-ae14-e8b8160a05f9" + "WESTUS2:20200916T230216Z:10998651-2cc0-4f72-afbc-c62439e67237" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4383,7 +3984,7 @@ "nosniff" ], "Date": [ - "Fri, 22 May 2020 18:50:57 GMT" + "Wed, 16 Sep 2020 23:02:16 GMT" ], "Expires": [ "-1" @@ -4398,11 +3999,11 @@ ], "Names": { "Test-AzIotDpsRegistrationLifeCycle": [ - "ps1407", - "ps3492", - "ps4367", - "ps9924", - "ps8174" + "ps571", + "ps2291", + "ps928", + "ps7796", + "ps432" ] }, "Variables": { diff --git a/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/SessionRecords/Commands.DeviceProvisioningServices.Test.IotDpsTests/IotDpsLifeCycle.json b/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/SessionRecords/Commands.DeviceProvisioningServices.Test.IotDpsTests/IotDpsLifeCycle.json index b5a0a98aeb83..0dc445b318fe 100644 --- a/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/SessionRecords/Commands.DeviceProvisioningServices.Test.IotDpsTests/IotDpsLifeCycle.json +++ b/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/SessionRecords/Commands.DeviceProvisioningServices.Test.IotDpsTests/IotDpsLifeCycle.json @@ -7,16 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "291de67b-5e68-405e-9e58-5d0e67ca2a59" + "62f1115e-dca4-4c32-a6ca-cccc672d94fa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -30,13 +30,13 @@ "11998" ], "x-ms-request-id": [ - "01c03677-d8a6-48ba-a2fe-bbaabce0b206" + "6837d830-f75d-4859-a5b8-48670b01e88e" ], "x-ms-correlation-request-id": [ - "01c03677-d8a6-48ba-a2fe-bbaabce0b206" + "6837d830-f75d-4859-a5b8-48670b01e88e" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T222939Z:01c03677-d8a6-48ba-a2fe-bbaabce0b206" + "WESTUS2:20200916T232816Z:6837d830-f75d-4859-a5b8-48670b01e88e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:29:39 GMT" + "Wed, 16 Sep 2020 23:28:15 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54,10 +54,10 @@ "-1" ], "Content-Length": [ - "4349" + "6060" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices\",\r\n \"namespace\": \"Microsoft.Devices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0cd79364-7a90-4354-9984-6e36c841418d\",\r\n \"roleDefinitionId\": \"C121DF10-FE58-4BC4-97F9-8296879F7BBB\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22-preview\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-09-25-preview\",\r\n \"2017-08-21-preview\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/eventGridFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-31\",\r\n \"2018-01-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices\",\r\n \"namespace\": \"Microsoft.Devices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0cd79364-7a90-4354-9984-6e36c841418d\",\r\n \"roleDefinitionId\": \"C121DF10-FE58-4BC4-97F9-8296879F7BBB\"\r\n },\r\n {\r\n \"applicationId\": \"29f411f1-b2cf-4043-8ac8-2185d7316811\"\r\n },\r\n {\r\n \"applicationId\": \"89d10474-74af-4874-99a7-c23c2f643083\",\r\n \"roleDefinitionId\": \"7df22794-26e3-4f94-9d50-a4f0f6e1cb41\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Australia Central\",\r\n \"Australia Central 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/eventGridFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Australia Central\",\r\n \"Australia Central 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-31\",\r\n \"2018-01-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/securitySettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Australia Central\",\r\n \"Australia Central 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants/securitySettings\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { @@ -67,15 +67,15 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "43cb6492-d12e-4c69-81ea-dc5b7c9c6cea" + "d7887079-eaa9-4cbd-a7fa-6576e027f3fc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -90,16 +90,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11994" ], "x-ms-request-id": [ - "6c3860f3-9159-4ce7-bc00-208fadc9d858" + "6c8f60e3-0db0-46d8-b7dc-f70a497901cd" ], "x-ms-correlation-request-id": [ - "6c3860f3-9159-4ce7-bc00-208fadc9d858" + "6c8f60e3-0db0-46d8-b7dc-f70a497901cd" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T222940Z:6c3860f3-9159-4ce7-bc00-208fadc9d858" + "WESTUS2:20200916T232816Z:6c8f60e3-0db0-46d8-b7dc-f70a497901cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -108,10 +108,10 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:29:39 GMT" + "Wed, 16 Sep 2020 23:28:16 GMT" ], "Content-Length": [ - "8338" + "12363" ], "Content-Type": [ "application/json; charset=utf-8" @@ -120,26 +120,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"etag\": \"AAAAAADOvRk=\",\r\n \"name\": \"affandps\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"iotHubs\": [\r\n {\r\n \"name\": \"affanga.azure-devices.net\",\r\n \"connectionString\": \"HostName=affanga.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"name\": \"affancanary.azure-devices.net\",\r\n \"connectionString\": \"HostName=affancanary.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"name\": \"ajith-canary1.azure-devices.net\",\r\n \"connectionString\": \"HostName=ajith-canary1.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"name\": \"affanmain.azure-devices.net\",\r\n \"connectionString\": \"HostName=affanmain.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****\",\r\n \"location\": \"japaneast\"\r\n },\r\n {\r\n \"applyAllocationPolicy\": true,\r\n \"allocationWeight\": 592,\r\n \"name\": \"affanbackuphub.azure-devices.net\",\r\n \"connectionString\": \"HostName=affanbackuphub.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****\",\r\n \"location\": \"northeurope\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"affandps.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00000012\"\r\n },\r\n \"resourcegroup\": \"affandarrg\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/affandarrg/providers/Microsoft.Devices/provisioningServices/affandps\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"etag\": \"AAAAAAEgoFM=\",\r\n \"name\": \"sapan-dps-1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"iotHubs\": [\r\n {\r\n \"name\": \"sapan-iot-5.azure-devices.net\",\r\n \"connectionString\": \"HostName=sapan-iot-5.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"name\": \"smoke-iot-3.azure-devices.net\",\r\n \"connectionString\": \"HostName=smoke-iot-3.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****\",\r\n \"location\": \"westus2\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"sapan-dps-1.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0005A0A5\"\r\n },\r\n \"resourcegroup\": \"sapan-rg\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sapan-rg/providers/Microsoft.Devices/provisioningServices/sapan-dps-1\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"etag\": \"AAAAAAFEvVs=\",\r\n \"name\": \"askhura-test-dps\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"iotHubs\": [\r\n {\r\n \"name\": \"askhura-iot-hub.azure-devices.net\",\r\n \"connectionString\": \"HostName=askhura-iot-hub.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****\",\r\n \"location\": \"westus\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"askhura-test-dps.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0005B9EC\"\r\n },\r\n \"resourcegroup\": \"askhura-test-rg\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/provisioningServices/askhura-test-dps\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"etag\": \"AAAAAADHDcY=\",\r\n \"name\": \"dpstestme-001\",\r\n \"location\": \"Australia Southeast\",\r\n \"properties\": {\r\n \"state\": \"ActivationFailed\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"dpstestme-001.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0005DDEB\"\r\n },\r\n \"resourcegroup\": \"sachinctest\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sachinctest/providers/Microsoft.Devices/provisioningServices/dpstestme-001\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"etag\": \"AAAAAADOvRo=\",\r\n \"name\": \"dpstestme-002\",\r\n \"location\": \"Australia Southeast\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"dpstestme-002.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0005DEE1\"\r\n },\r\n \"resourcegroup\": \"sachinctest\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sachinctest/providers/Microsoft.Devices/provisioningServices/dpstestme-002\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"etag\": \"AAAAAADXbPs=\",\r\n \"name\": \"ea-dps\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"iotHubs\": [\r\n {\r\n \"name\": \"ea-genhub.azure-devices.net\",\r\n \"connectionString\": \"HostName=ea-genhub.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****\",\r\n \"location\": \"westus\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ea-dps.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0006289F\"\r\n },\r\n \"resourcegroup\": \"ea-gen\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ea-gen/providers/Microsoft.Devices/provisioningServices/ea-dps\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"etag\": \"AAAAAADrq7U=\",\r\n \"name\": \"test-dps-failover\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"test-dps-failover.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0006856A\"\r\n },\r\n \"resourcegroup\": \"sanand-rg\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sanand-rg/providers/Microsoft.Devices/provisioningServices/test-dps-failover\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"etag\": \"AAAAAAEBlVA=\",\r\n \"name\": \"dps-rezas\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"dps-rezas.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0006EBBD\"\r\n },\r\n \"resourcegroup\": \"rezas-rg\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/rezas-rg/providers/Microsoft.Devices/provisioningServices/dps-rezas\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"etag\": \"AAAAAAE37/I=\",\r\n \"name\": \"sapan-dps-2\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"sapan-dps-2.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0007B27C\"\r\n },\r\n \"resourcegroup\": \"sapan-rg\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sapan-rg/providers/Microsoft.Devices/provisioningServices/sapan-dps-2\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"etag\": \"AAAAAAE90Ac=\",\r\n \"name\": \"dps-nprr4\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"iotHubs\": [\r\n {\r\n \"name\": \"iothub-nprr4.azure-devices.net\",\r\n \"connectionString\": \"HostName=iothub-nprr4.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****\",\r\n \"location\": \"southcentralus\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"dps-nprr4.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0007CD32\"\r\n },\r\n \"resourcegroup\": \"jlian-real-life-sol\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/jlian-real-life-sol/providers/Microsoft.Devices/provisioningServices/dps-nprr4\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {\r\n \"IotSuiteType\": \"RemoteMonitoringV2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"etag\": \"AAAAAAMAEog=\",\r\n \"name\": \"sapan-dps-1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"name\": \"sapan-iot-1.azure-devices.net\",\r\n \"connectionString\": \"HostName=sapan-iot-1.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"name\": \"sapan-iot-2.azure-devices.net\",\r\n \"connectionString\": \"HostName=sapan-iot-2.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****\",\r\n \"location\": \"westus2\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"sapan-dps-1.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0005A0A5\"\r\n },\r\n \"resourcegroup\": \"sapan-rg\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sapan-rg/providers/Microsoft.Devices/provisioningServices/sapan-dps-1\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"etag\": \"AAAAAALDKnQ=\",\r\n \"name\": \"askhura-test-dps\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"name\": \"askhura-iot-hub.azure-devices.net\",\r\n \"connectionString\": \"HostName=askhura-iot-hub.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"name\": \"affancentral.azure-devices.net\",\r\n \"connectionString\": \"HostName=affancentral.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"name\": \"aajollyiothubtest.azure-devices.net\",\r\n \"connectionString\": \"HostName=aajollyiothubtest.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"name\": \"ankurwestcus.azure-devices.net\",\r\n \"connectionString\": \"HostName=ankurwestcus.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"name\": \"sansun-ps.azure-devices.net\",\r\n \"connectionString\": \"HostName=sansun-ps.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****\",\r\n \"location\": \"koreasouth\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Static\",\r\n \"serviceOperationsHostName\": \"askhura-test-dps.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0005B9EC\"\r\n },\r\n \"resourcegroup\": \"askhura-test-rg\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/provisioningServices/askhura-test-dps\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"etag\": \"AAAAAADHDcY=\",\r\n \"name\": \"dpstestme-001\",\r\n \"location\": \"Australia Southeast\",\r\n \"properties\": {\r\n \"state\": \"ActivationFailed\",\r\n \"provisioningState\": \"Failed\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"dpstestme-001.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0005DDEB\"\r\n },\r\n \"resourcegroup\": \"sachinctest\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sachinctest/providers/Microsoft.Devices/provisioningServices/dpstestme-001\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"etag\": \"AAAAAAKgCS8=\",\r\n \"name\": \"dpstestme-002\",\r\n \"location\": \"Australia Southeast\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"name\": \"sachinctest0515.azure-devices.net\",\r\n \"connectionString\": \"HostName=sachinctest0515.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****\",\r\n \"location\": \"westus\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"dpstestme-002.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0005DEE1\"\r\n },\r\n \"resourcegroup\": \"sachinctest\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sachinctest/providers/Microsoft.Devices/provisioningServices/dpstestme-002\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"etag\": \"AAAAAADXbPs=\",\r\n \"name\": \"ea-dps\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"name\": \"ea-genhub.azure-devices.net\",\r\n \"connectionString\": \"HostName=ea-genhub.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****\",\r\n \"location\": \"westus\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ea-dps.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0006289F\"\r\n },\r\n \"resourcegroup\": \"ea-gen\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ea-gen/providers/Microsoft.Devices/provisioningServices/ea-dps\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"etag\": \"AAAAAAGX2Mo=\",\r\n \"name\": \"csharp-iotuap-eastus-01\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": true,\r\n \"name\": \"csharp-iotuap-eastus-01.azure-devices.net\",\r\n \"connectionString\": \"HostName=csharp-iotuap-eastus-01.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"csharp-iotuap-eastus-01.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00097E78\"\r\n },\r\n \"resourcegroup\": \"csharp-iotuap-eastus-01\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/provisioningServices/csharp-iotuap-eastus-01\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"etag\": \"AAAAAAHwG5M=\",\r\n \"name\": \"PrivatePreviewBugBash\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"name\": \"affanga.azure-devices.net\",\r\n \"connectionString\": \"HostName=affanga.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****\",\r\n \"location\": \"westus\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"PrivatePreviewBugBash.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne000AF3B8\"\r\n },\r\n \"resourcegroup\": \"dpsbugbash\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/dpsbugbash/providers/Microsoft.Devices/provisioningServices/PrivatePreviewBugBash\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"etag\": \"AAAAAAI4luY=\",\r\n \"name\": \"control-plane-test-dps\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"control-plane-test-dps.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne000C6135\"\r\n },\r\n \"resourcegroup\": \"control-plane-dps-tests-rg\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/control-plane-dps-tests-rg/providers/Microsoft.Devices/provisioningServices/control-plane-test-dps\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"etag\": \"AAAAAAMQLB0=\",\r\n \"name\": \"sapan-dps-2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"ActivationFailed\",\r\n \"provisioningState\": \"Failed\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"sapan-rg\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sapan-rg/providers/Microsoft.Devices/provisioningServices/sapan-dps-2\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"etag\": \"AAAAAAO51KQ=\",\r\n \"name\": \"azure-iot-dde-devlab-dps\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"name\": \"azure-iot-dde-devlab-hub.azure-devices.net\",\r\n \"connectionString\": \"HostName=azure-iot-dde-devlab-hub.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"azure-iot-dde-devlab-dps.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0011BC0D\"\r\n },\r\n \"resourcegroup\": \"azure-iot-dde-devlab-dps\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/azure-iot-dde-devlab-dps/providers/Microsoft.Devices/provisioningServices/azure-iot-dde-devlab-dps\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"etag\": \"AAAAAAN4mDc=\",\r\n \"name\": \"ps2153\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps2153.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00122DF7\"\r\n },\r\n \"resourcegroup\": \"ps8239\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8239/providers/Microsoft.Devices/provisioningServices/ps2153\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"etag\": \"AAAAAAN+snw=\",\r\n \"name\": \"askhura-dps-souhcentral\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"name\": \"askhura-iot-hub.azure-devices.net\",\r\n \"connectionString\": \"HostName=askhura-iot-hub.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"name\": \"asrudra-iot-hub.azure-devices.net\",\r\n \"connectionString\": \"HostName=asrudra-iot-hub.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****\",\r\n \"location\": \"westus\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"askhura-dps-souhcentral.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00124CE8\"\r\n },\r\n \"resourcegroup\": \"askhura-test-rg\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/provisioningServices/askhura-dps-souhcentral\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"etag\": \"AAAAAAQM4d0=\",\r\n \"name\": \"sapan-dps-3\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"sapan-dps-3.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00151629\"\r\n },\r\n \"resourcegroup\": \"sapan-rg\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sapan-rg/providers/Microsoft.Devices/provisioningServices/sapan-dps-3\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"etag\": \"AAAAAAQmbcY=\",\r\n \"name\": \"aziotbld-embedded-c\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"name\": \"aziotbld-c.azure-devices.net\",\r\n \"connectionString\": \"HostName=aziotbld-c.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****\",\r\n \"location\": \"westus2\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"aziotbld-embedded-c.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne001588BA\"\r\n },\r\n \"resourcegroup\": \"aziotbld-embedded-sdk\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/aziotbld-embedded-sdk/providers/Microsoft.Devices/provisioningServices/aziotbld-embedded-c\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourcegroups/ps2235?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlZ3JvdXBzL3BzMjIzNT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourcegroups/ps2412?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlZ3JvdXBzL3BzMjQxMj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fb4c9892-4389-4d22-99b6-3bfa08c81109" + "a415e838-af6e-4882-abdb-e7d1a25a18e0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ], "Content-Type": [ "application/json; charset=utf-8" @@ -159,13 +159,13 @@ "1198" ], "x-ms-request-id": [ - "3c6da2dc-bf68-43ba-a36b-08e42cda13f6" + "0623605c-ca87-4665-aac4-0cad19ba31da" ], "x-ms-correlation-request-id": [ - "3c6da2dc-bf68-43ba-a36b-08e42cda13f6" + "0623605c-ca87-4665-aac4-0cad19ba31da" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T222942Z:3c6da2dc-bf68-43ba-a36b-08e42cda13f6" + "WESTUS2:20200916T232817Z:0623605c-ca87-4665-aac4-0cad19ba31da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -174,7 +174,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:29:42 GMT" + "Wed, 16 Sep 2020 23:28:16 GMT" ], "Content-Length": [ "165" @@ -186,25 +186,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2235\",\r\n \"name\": \"ps2235\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2412\",\r\n \"name\": \"ps2412\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2235/providers/Microsoft.Devices/provisioningServices/ps1479?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjIzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxNDc5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2412/providers/Microsoft.Devices/provisioningServices/ps1117?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxMTE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "25ddf1ef-2053-4ac7-95bd-9b1b2b9a24ab" + "11db2b86-1566-48f9-aab2-23515d21b807" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ], "Content-Type": [ @@ -222,22 +222,22 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2235/providers/Microsoft.Devices/provisioningServices/ps1479/operationResults/b3NfaWRfOTRhMDgyZTMtYzQwMi00Njg4LWEzY2YtNDM0NTg0MThiNGZl?api-version=2017-11-15&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2412/providers/Microsoft.Devices/provisioningServices/ps1117/operationResults/b3NfaWRfYTJiYzRkNzQtNzgwMi00YTJiLWFlYzYtMzE1NGM2NjJmOTg4?api-version=2017-11-15&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "4999" + "4998" ], "x-ms-request-id": [ - "2eefcb00-8161-436d-b93a-7836b92dbcf8" + "d8c28e39-0a95-4b62-827b-799e5226cd68" ], "x-ms-correlation-request-id": [ - "2eefcb00-8161-436d-b93a-7836b92dbcf8" + "d8c28e39-0a95-4b62-827b-799e5226cd68" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T222945Z:2eefcb00-8161-436d-b93a-7836b92dbcf8" + "WESTUS2:20200916T232819Z:d8c28e39-0a95-4b62-827b-799e5226cd68" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -246,7 +246,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:29:44 GMT" + "Wed, 16 Sep 2020 23:28:18 GMT" ], "Content-Length": [ "462" @@ -258,32 +258,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps1479\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Activating\",\r\n \"provisioningState\": \"Accepted\",\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps2235\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2235/providers/Microsoft.Devices/provisioningServices/ps1479\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps1117\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Activating\",\r\n \"provisioningState\": \"Accepted\",\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps2412\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2412/providers/Microsoft.Devices/provisioningServices/ps1117\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2235/providers/Microsoft.Devices/provisioningServices/ps1479?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjIzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxNDc5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2412/providers/Microsoft.Devices/provisioningServices/ps1117?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxMTE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAAAFNcP4=\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"GeoLatency\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"etag\": \"AAAAAASgcBI=\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"GeoLatency\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6e8bf1dc-a466-4e64-b52e-fa388c44bea1" + "395129e5-1d7b-4f9f-9359-a1adb0fbd9af" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "214" + "253" ] }, "ResponseHeaders": { @@ -294,22 +294,22 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2235/providers/Microsoft.Devices/provisioningServices/ps1479/operationResults/b3NfaWRfNjViNDZkNjMtMzFlYy00MWZmLWJiNWUtMzhlY2IzZGMwOGIw?api-version=2017-11-15&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2412/providers/Microsoft.Devices/provisioningServices/ps1117/operationResults/b3NfaWRfOWI0YTcwNjQtNTY2NC00NzZmLTk3NjctYzQ1MGFmODk1N2Ex?api-version=2017-11-15&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "4998" + "4997" ], "x-ms-request-id": [ - "b9e32281-a070-467c-80a6-ccd02e4b718f" + "e5082058-58e7-43c8-a223-cb025f611017" ], "x-ms-correlation-request-id": [ - "b9e32281-a070-467c-80a6-ccd02e4b718f" + "e5082058-58e7-43c8-a223-cb025f611017" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T223017Z:b9e32281-a070-467c-80a6-ccd02e4b718f" + "WESTUS2:20200916T232951Z:e5082058-58e7-43c8-a223-cb025f611017" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -318,7 +318,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:30:16 GMT" + "Wed, 16 Sep 2020 23:29:51 GMT" ], "Content-Length": [ "504" @@ -330,19 +330,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAFNcP4=\",\r\n \"name\": \"ps1479\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Transitioning\",\r\n \"provisioningState\": \"Accepted\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"GeoLatency\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps2235\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2235/providers/Microsoft.Devices/provisioningServices/ps1479\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgcBI=\",\r\n \"name\": \"ps1117\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Transitioning\",\r\n \"provisioningState\": \"Accepted\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"GeoLatency\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps2412\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2412/providers/Microsoft.Devices/provisioningServices/ps1117\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2235/providers/Microsoft.Devices/provisioningServices/ps1479/operationResults/b3NfaWRfOTRhMDgyZTMtYzQwMi00Njg4LWEzY2YtNDM0NTg0MThiNGZl?api-version=2017-11-15&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjIzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxNDc5L29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZPVFJoTURneVpUTXRZelF3TWkwME5qZzRMV0V6WTJZdE5ETTBOVGcwTVRoaU5HWmw/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2412/providers/Microsoft.Devices/provisioningServices/ps1117/operationResults/b3NfaWRfYTJiYzRkNzQtNzgwMi00YTJiLWFlYzYtMzE1NGM2NjJmOTg4?api-version=2017-11-15&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxMTE3L29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZZVEppWXpSa056UXROemd3TWkwMFlUSmlMV0ZsWXpZdE16RTFOR00yTmpKbU9UZzQ/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -357,16 +357,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11993" ], "x-ms-request-id": [ - "21022127-dc05-4d9f-aa69-b5f0a6741221" + "63ad7169-dfcb-41c7-a658-eb778ae4109b" ], "x-ms-correlation-request-id": [ - "21022127-dc05-4d9f-aa69-b5f0a6741221" + "63ad7169-dfcb-41c7-a658-eb778ae4109b" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T223015Z:21022127-dc05-4d9f-aa69-b5f0a6741221" + "WESTUS2:20200916T232849Z:63ad7169-dfcb-41c7-a658-eb778ae4109b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -375,10 +375,10 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:30:15 GMT" + "Wed, 16 Sep 2020 23:28:48 GMT" ], "Content-Length": [ - "22" + "20" ], "Content-Type": [ "application/json; charset=utf-8" @@ -387,19 +387,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2235/providers/Microsoft.Devices/provisioningServices/ps1479?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjIzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxNDc5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2412/providers/Microsoft.Devices/provisioningServices/ps1117/operationResults/b3NfaWRfYTJiYzRkNzQtNzgwMi00YTJiLWFlYzYtMzE1NGM2NjJmOTg4?api-version=2017-11-15&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxMTE3L29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZZVEppWXpSa056UXROemd3TWkwMFlUSmlMV0ZsWXpZdE16RTFOR00yTmpKbU9UZzQ/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -414,16 +414,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11992" ], "x-ms-request-id": [ - "3fa38350-3abd-4b0e-addf-e1de9085e715" + "6195853e-ecee-4149-befa-e88588990b33" ], "x-ms-correlation-request-id": [ - "3fa38350-3abd-4b0e-addf-e1de9085e715" + "6195853e-ecee-4149-befa-e88588990b33" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T223015Z:3fa38350-3abd-4b0e-addf-e1de9085e715" + "WESTUS2:20200916T232919Z:6195853e-ecee-4149-befa-e88588990b33" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,10 +432,10 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:30:15 GMT" + "Wed, 16 Sep 2020 23:29:18 GMT" ], "Content-Length": [ - "608" + "20" ], "Content-Type": [ "application/json; charset=utf-8" @@ -444,25 +444,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAFNcP4=\",\r\n \"name\": \"ps1479\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps1479.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00081544\"\r\n },\r\n \"resourcegroup\": \"ps2235\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2235/providers/Microsoft.Devices/provisioningServices/ps1479\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2235/providers/Microsoft.Devices/provisioningServices/ps1479?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjIzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxNDc5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2412/providers/Microsoft.Devices/provisioningServices/ps1117/operationResults/b3NfaWRfYTJiYzRkNzQtNzgwMi00YTJiLWFlYzYtMzE1NGM2NjJmOTg4?api-version=2017-11-15&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxMTE3L29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZZVEppWXpSa056UXROemd3TWkwMFlUSmlMV0ZsWXpZdE16RTFOR00yTmpKbU9UZzQ/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "3306dc61-19db-4569-bc52-6bfa050d1bd5" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -477,16 +471,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11991" ], "x-ms-request-id": [ - "531a03d5-2304-4c0b-9cac-fb2d4e7d890d" + "d72e3c98-f846-4f2d-b72e-ceb65992cc39" ], "x-ms-correlation-request-id": [ - "531a03d5-2304-4c0b-9cac-fb2d4e7d890d" + "d72e3c98-f846-4f2d-b72e-ceb65992cc39" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T223015Z:531a03d5-2304-4c0b-9cac-fb2d4e7d890d" + "WESTUS2:20200916T232949Z:d72e3c98-f846-4f2d-b72e-ceb65992cc39" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -495,10 +489,10 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:30:15 GMT" + "Wed, 16 Sep 2020 23:29:49 GMT" ], "Content-Length": [ - "608" + "22" ], "Content-Type": [ "application/json; charset=utf-8" @@ -507,25 +501,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAFNcP4=\",\r\n \"name\": \"ps1479\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps1479.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00081544\"\r\n },\r\n \"resourcegroup\": \"ps2235\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2235/providers/Microsoft.Devices/provisioningServices/ps1479\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2235/providers/Microsoft.Devices/provisioningServices/ps1479?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjIzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxNDc5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2412/providers/Microsoft.Devices/provisioningServices/ps1117?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxMTE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "68e7d367-af3f-4451-8789-b546fb4f0ce2" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -540,16 +528,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11990" ], "x-ms-request-id": [ - "361bb512-0a5a-4bca-9762-915e665bb9ae" + "cf8ada6c-75ce-4e02-8257-42ac8510a631" ], "x-ms-correlation-request-id": [ - "361bb512-0a5a-4bca-9762-915e665bb9ae" + "cf8ada6c-75ce-4e02-8257-42ac8510a631" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T223015Z:361bb512-0a5a-4bca-9762-915e665bb9ae" + "WESTUS2:20200916T232949Z:cf8ada6c-75ce-4e02-8257-42ac8510a631" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -558,10 +546,10 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:30:15 GMT" + "Wed, 16 Sep 2020 23:29:49 GMT" ], "Content-Length": [ - "608" + "640" ], "Content-Type": [ "application/json; charset=utf-8" @@ -570,25 +558,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAFNcP4=\",\r\n \"name\": \"ps1479\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps1479.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00081544\"\r\n },\r\n \"resourcegroup\": \"ps2235\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2235/providers/Microsoft.Devices/provisioningServices/ps1479\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgcBI=\",\r\n \"name\": \"ps1117\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps1117.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00180049\"\r\n },\r\n \"resourcegroup\": \"ps2412\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2412/providers/Microsoft.Devices/provisioningServices/ps1117\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2235/providers/Microsoft.Devices/provisioningServices/ps1479?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjIzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxNDc5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2412/providers/Microsoft.Devices/provisioningServices/ps1117?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxMTE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "803658f1-e774-4409-a2d9-f6a647f79429" + "38a61524-4c2a-4c7a-95ad-68af36a6bc5e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -603,16 +591,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11989" ], "x-ms-request-id": [ - "016d4da4-c0d4-4496-b06c-0433d266bc7b" + "88a8ca3d-e56e-4aa3-b31f-7bf163578948" ], "x-ms-correlation-request-id": [ - "016d4da4-c0d4-4496-b06c-0433d266bc7b" + "88a8ca3d-e56e-4aa3-b31f-7bf163578948" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T223015Z:016d4da4-c0d4-4496-b06c-0433d266bc7b" + "WESTUS2:20200916T232949Z:88a8ca3d-e56e-4aa3-b31f-7bf163578948" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -621,10 +609,10 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:30:15 GMT" + "Wed, 16 Sep 2020 23:29:49 GMT" ], "Content-Length": [ - "608" + "640" ], "Content-Type": [ "application/json; charset=utf-8" @@ -633,25 +621,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAFNcP4=\",\r\n \"name\": \"ps1479\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps1479.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00081544\"\r\n },\r\n \"resourcegroup\": \"ps2235\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2235/providers/Microsoft.Devices/provisioningServices/ps1479\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgcBI=\",\r\n \"name\": \"ps1117\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps1117.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00180049\"\r\n },\r\n \"resourcegroup\": \"ps2412\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2412/providers/Microsoft.Devices/provisioningServices/ps1117\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2235/providers/Microsoft.Devices/provisioningServices/ps1479?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjIzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxNDc5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2412/providers/Microsoft.Devices/provisioningServices/ps1117?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxMTE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e3f9fb8e-26ac-4129-a0a4-6d06f723f979" + "0029b95e-a9db-48b1-8678-600d73578f29" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -666,16 +654,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11988" ], "x-ms-request-id": [ - "4043cdc1-9f0d-46f3-9465-e6d4078faad1" + "9347bf05-6e54-4b32-a8f0-ade88f5e4d63" ], "x-ms-correlation-request-id": [ - "4043cdc1-9f0d-46f3-9465-e6d4078faad1" + "9347bf05-6e54-4b32-a8f0-ade88f5e4d63" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T223016Z:4043cdc1-9f0d-46f3-9465-e6d4078faad1" + "WESTUS2:20200916T232950Z:9347bf05-6e54-4b32-a8f0-ade88f5e4d63" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -684,10 +672,10 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:30:15 GMT" + "Wed, 16 Sep 2020 23:29:49 GMT" ], "Content-Length": [ - "608" + "640" ], "Content-Type": [ "application/json; charset=utf-8" @@ -696,19 +684,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAFNcP4=\",\r\n \"name\": \"ps1479\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps1479.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00081544\"\r\n },\r\n \"resourcegroup\": \"ps2235\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2235/providers/Microsoft.Devices/provisioningServices/ps1479\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgcBI=\",\r\n \"name\": \"ps1117\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps1117.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00180049\"\r\n },\r\n \"resourcegroup\": \"ps2412\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2412/providers/Microsoft.Devices/provisioningServices/ps1117\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2235/providers/Microsoft.Devices/provisioningServices/ps1479?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjIzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxNDc5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2412/providers/Microsoft.Devices/provisioningServices/ps1117?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxMTE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "39d293d0-8024-4803-812e-a4eb5137df46" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -723,16 +717,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11987" ], "x-ms-request-id": [ - "add09c59-8a52-4886-bddc-3006b8499406" + "67739f14-d7d5-4ee0-bffd-40d9a52330fd" ], "x-ms-correlation-request-id": [ - "add09c59-8a52-4886-bddc-3006b8499406" + "67739f14-d7d5-4ee0-bffd-40d9a52330fd" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T223049Z:add09c59-8a52-4886-bddc-3006b8499406" + "WESTUS2:20200916T232950Z:67739f14-d7d5-4ee0-bffd-40d9a52330fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -741,10 +735,10 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:30:48 GMT" + "Wed, 16 Sep 2020 23:29:50 GMT" ], "Content-Length": [ - "612" + "640" ], "Content-Type": [ "application/json; charset=utf-8" @@ -753,25 +747,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAFNcSk=\",\r\n \"name\": \"ps1479\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"GeoLatency\",\r\n \"serviceOperationsHostName\": \"ps1479.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00081544\"\r\n },\r\n \"resourcegroup\": \"ps2235\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2235/providers/Microsoft.Devices/provisioningServices/ps1479\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgcBI=\",\r\n \"name\": \"ps1117\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps1117.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00180049\"\r\n },\r\n \"resourcegroup\": \"ps2412\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2412/providers/Microsoft.Devices/provisioningServices/ps1117\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2235/providers/Microsoft.Devices/provisioningServices/ps1479?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjIzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxNDc5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2412/providers/Microsoft.Devices/provisioningServices/ps1117?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxMTE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "05f694d1-a8e6-4df2-8798-539be3ba8e68" + "70c40350-094a-4825-af71-f29e3d4672aa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -786,16 +780,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11986" ], "x-ms-request-id": [ - "5665355a-db39-4277-9775-3abff4337c7c" + "95a4d162-3f40-47a6-a607-dcd540641ebc" ], "x-ms-correlation-request-id": [ - "5665355a-db39-4277-9775-3abff4337c7c" + "95a4d162-3f40-47a6-a607-dcd540641ebc" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T223050Z:5665355a-db39-4277-9775-3abff4337c7c" + "WESTUS2:20200916T232950Z:95a4d162-3f40-47a6-a607-dcd540641ebc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -804,10 +798,10 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:30:50 GMT" + "Wed, 16 Sep 2020 23:29:50 GMT" ], "Content-Length": [ - "612" + "640" ], "Content-Type": [ "application/json; charset=utf-8" @@ -816,25 +810,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAFNcSk=\",\r\n \"name\": \"ps1479\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"GeoLatency\",\r\n \"serviceOperationsHostName\": \"ps1479.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00081544\"\r\n },\r\n \"resourcegroup\": \"ps2235\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2235/providers/Microsoft.Devices/provisioningServices/ps1479\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgcBI=\",\r\n \"name\": \"ps1117\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps1117.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00180049\"\r\n },\r\n \"resourcegroup\": \"ps2412\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2412/providers/Microsoft.Devices/provisioningServices/ps1117\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2235/providers/Microsoft.Devices/provisioningServices/ps1479?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjIzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxNDc5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2412/providers/Microsoft.Devices/provisioningServices/ps1117?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxMTE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "a5ae49ba-8d84-47cd-8270-30e564cda4a0" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -849,16 +837,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11986" ], "x-ms-request-id": [ - "6ccf9139-f289-4ea0-a792-3939ca39041b" + "814e2ed7-bfde-43c6-851f-5eb51e0f1d2f" ], "x-ms-correlation-request-id": [ - "6ccf9139-f289-4ea0-a792-3939ca39041b" + "814e2ed7-bfde-43c6-851f-5eb51e0f1d2f" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T223052Z:6ccf9139-f289-4ea0-a792-3939ca39041b" + "WESTUS2:20200916T233022Z:814e2ed7-bfde-43c6-851f-5eb51e0f1d2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -867,10 +855,10 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:30:52 GMT" + "Wed, 16 Sep 2020 23:30:21 GMT" ], "Content-Length": [ - "627" + "644" ], "Content-Type": [ "application/json; charset=utf-8" @@ -879,19 +867,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAFNccE=\",\r\n \"name\": \"ps1479\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"GeoLatency\",\r\n \"serviceOperationsHostName\": \"ps1479.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00081544\"\r\n },\r\n \"resourcegroup\": \"ps2235\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2235/providers/Microsoft.Devices/provisioningServices/ps1479\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgcGs=\",\r\n \"name\": \"ps1117\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"GeoLatency\",\r\n \"serviceOperationsHostName\": \"ps1117.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00180049\"\r\n },\r\n \"resourcegroup\": \"ps2412\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2412/providers/Microsoft.Devices/provisioningServices/ps1117\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2235/providers/Microsoft.Devices/provisioningServices/ps1479/operationResults/b3NfaWRfNjViNDZkNjMtMzFlYy00MWZmLWJiNWUtMzhlY2IzZGMwOGIw?api-version=2017-11-15&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjIzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxNDc5L29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZOalZpTkRaa05qTXRNekZsWXkwME1XWm1MV0ppTldVdE16aGxZMkl6WkdNd09HSXc/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2412/providers/Microsoft.Devices/provisioningServices/ps1117?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxMTE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "43fd141e-33fb-4d0a-8f3d-78dc37de320d" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -902,20 +896,20 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], "x-ms-request-id": [ - "ce373cc6-f88a-4a5c-af8e-f61ee7aac153" + "77935030-b32f-4687-8ae7-7599adaddfc8" ], "x-ms-correlation-request-id": [ - "ce373cc6-f88a-4a5c-af8e-f61ee7aac153" + "77935030-b32f-4687-8ae7-7599adaddfc8" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T223047Z:ce373cc6-f88a-4a5c-af8e-f61ee7aac153" + "WESTUS2:20200916T233022Z:77935030-b32f-4687-8ae7-7599adaddfc8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -924,10 +918,10 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:30:46 GMT" + "Wed, 16 Sep 2020 23:30:21 GMT" ], "Content-Length": [ - "22" + "644" ], "Content-Type": [ "application/json; charset=utf-8" @@ -936,32 +930,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgcGs=\",\r\n \"name\": \"ps1117\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"GeoLatency\",\r\n \"serviceOperationsHostName\": \"ps1117.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00180049\"\r\n },\r\n \"resourcegroup\": \"ps2412\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2412/providers/Microsoft.Devices/provisioningServices/ps1117\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2235/providers/Microsoft.Devices/provisioningServices/ps1479?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjIzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxNDc5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", - "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n }\r\n}", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2412/providers/Microsoft.Devices/provisioningServices/ps1117?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxMTE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "76a80339-0e7b-4442-83d0-f8f4cdff8a18" + "e288f7ab-04c0-4ba1-aa71-3fec3abd4d9c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "44" ] }, "ResponseHeaders": { @@ -974,17 +962,17 @@ "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "4997" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" ], "x-ms-request-id": [ - "5fc159b5-59c5-4bff-9a14-5d429cd011dd" + "17af7139-cbd7-4daf-8cfb-438a4539bc41" ], "x-ms-correlation-request-id": [ - "5fc159b5-59c5-4bff-9a14-5d429cd011dd" + "17af7139-cbd7-4daf-8cfb-438a4539bc41" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T223051Z:5fc159b5-59c5-4bff-9a14-5d429cd011dd" + "WESTUS2:20200916T233023Z:17af7139-cbd7-4daf-8cfb-438a4539bc41" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -993,10 +981,10 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:30:51 GMT" + "Wed, 16 Sep 2020 23:30:22 GMT" ], "Content-Length": [ - "615" + "659" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1005,32 +993,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"\",\r\n \"name\": \"ps1479\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"GeoLatency\",\r\n \"serviceOperationsHostName\": \"ps1479.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00081544\"\r\n },\r\n \"resourcegroup\": \"ps2235\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2235/providers/Microsoft.Devices/provisioningServices/ps1479\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAAASgcNg=\",\r\n \"name\": \"ps1117\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"GeoLatency\",\r\n \"serviceOperationsHostName\": \"ps1117.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00180049\"\r\n },\r\n \"resourcegroup\": \"ps2412\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2412/providers/Microsoft.Devices/provisioningServices/ps1117\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2235/providers/Microsoft.Devices/provisioningServices/ps1479?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjIzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxNDc5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", - "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n }\r\n}", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2412/providers/Microsoft.Devices/provisioningServices/ps1117/operationResults/b3NfaWRfOWI0YTcwNjQtNTY2NC00NzZmLTk3NjctYzQ1MGFmODk1N2Ex?api-version=2017-11-15&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxMTE3L29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZPV0kwWVRjd05qUXROVFkyTkMwME56Wm1MVGszTmpjdFl6UTFNR0ZtT0RrMU4yRXg/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "ce603878-4c15-45b9-8221-8381f0b1bf41" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "67" ] }, "ResponseHeaders": { @@ -1043,17 +1019,17 @@ "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "4996" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" ], "x-ms-request-id": [ - "08041ca3-704f-4db4-bef8-d3ca24c5d9ec" + "f4e01a9c-cf12-468d-938f-1dcc67a2751c" ], "x-ms-correlation-request-id": [ - "08041ca3-704f-4db4-bef8-d3ca24c5d9ec" + "f4e01a9c-cf12-468d-938f-1dcc67a2751c" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T223054Z:08041ca3-704f-4db4-bef8-d3ca24c5d9ec" + "WESTUS2:20200916T233022Z:f4e01a9c-cf12-468d-938f-1dcc67a2751c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1062,10 +1038,10 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:30:53 GMT" + "Wed, 16 Sep 2020 23:30:21 GMT" ], "Content-Length": [ - "631" + "22" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1074,25 +1050,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"\",\r\n \"name\": \"ps1479\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"GeoLatency\",\r\n \"serviceOperationsHostName\": \"ps1479.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00081544\"\r\n },\r\n \"resourcegroup\": \"ps2235\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2235/providers/Microsoft.Devices/provisioningServices/ps1479\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2235/providers/Microsoft.Devices/provisioningServices/ps1479?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjIzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxNDc5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2412/providers/Microsoft.Devices/provisioningServices/ps1117?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxMTE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e621d09d-a1ad-40c7-9221-7ddadd8f4f72" + "5d99522e-9ad0-46c9-aa09-a12f71f2614a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ], "Content-Type": [ @@ -1113,16 +1089,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "4995" + "4996" ], "x-ms-request-id": [ - "6894419d-ea28-49e6-94c0-44aac35fdbba" + "c55fb4d8-e6d1-4ab2-95fe-fd7796007976" ], "x-ms-correlation-request-id": [ - "6894419d-ea28-49e6-94c0-44aac35fdbba" + "c55fb4d8-e6d1-4ab2-95fe-fd7796007976" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T223055Z:6894419d-ea28-49e6-94c0-44aac35fdbba" + "WESTUS2:20200916T233023Z:c55fb4d8-e6d1-4ab2-95fe-fd7796007976" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1131,10 +1107,10 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:30:54 GMT" + "Wed, 16 Sep 2020 23:30:22 GMT" ], "Content-Length": [ - "615" + "647" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1143,26 +1119,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"\",\r\n \"name\": \"ps1479\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"GeoLatency\",\r\n \"serviceOperationsHostName\": \"ps1479.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00081544\"\r\n },\r\n \"resourcegroup\": \"ps2235\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2235/providers/Microsoft.Devices/provisioningServices/ps1479\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"\",\r\n \"name\": \"ps1117\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"GeoLatency\",\r\n \"serviceOperationsHostName\": \"ps1117.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00180049\"\r\n },\r\n \"resourcegroup\": \"ps2412\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2412/providers/Microsoft.Devices/provisioningServices/ps1117\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2235/providers/Microsoft.Devices/provisioningServices/ps1479?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjIzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxNDc5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", - "RequestMethod": "DELETE", - "RequestBody": "", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2412/providers/Microsoft.Devices/provisioningServices/ps1117?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxMTE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c4c362a4-9ff6-49ab-a027-65b9475c7974" + "d2b6051c-aa83-48cc-89d3-fff58d1e98d2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "67" ] }, "ResponseHeaders": { @@ -1172,29 +1154,20 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2235/providers/Microsoft.Devices/provisioningServices/ps1479/operationResults/b3NfaWRfNjdhYzIyMzMtOTM5Mi00MDg0LWJhY2UtODA0MjNlZjcwNTZl?api-version=2017-11-15" - ], - "Retry-After": [ - "15" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2235/providers/Microsoft.Devices/provisioningServices/ps1479/operationResults/b3NfaWRfNjdhYzIyMzMtOTM5Mi00MDg0LWJhY2UtODA0MjNlZjcwNTZl?api-version=2017-11-15&asyncinfo" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "4995" ], "x-ms-request-id": [ - "9e891252-38dc-4900-9805-8b4b7f87b5eb" + "f4ea4978-c7df-4a1b-ba57-b102e740b5a9" ], "x-ms-correlation-request-id": [ - "9e891252-38dc-4900-9805-8b4b7f87b5eb" + "f4ea4978-c7df-4a1b-ba57-b102e740b5a9" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T223056Z:9e891252-38dc-4900-9805-8b4b7f87b5eb" + "WESTUS2:20200916T233023Z:f4ea4978-c7df-4a1b-ba57-b102e740b5a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1203,10 +1176,10 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:30:56 GMT" + "Wed, 16 Sep 2020 23:30:23 GMT" ], "Content-Length": [ - "4" + "663" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1215,20 +1188,32 @@ "-1" ] }, - "ResponseBody": "null", - "StatusCode": 202 + "ResponseBody": "{\r\n \"etag\": \"\",\r\n \"name\": \"ps1117\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"GeoLatency\",\r\n \"serviceOperationsHostName\": \"ps1117.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00180049\"\r\n },\r\n \"resourcegroup\": \"ps2412\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2412/providers/Microsoft.Devices/provisioningServices/ps1117\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2235/providers/Microsoft.Devices/provisioningServices/ps1479/operationResults/b3NfaWRfNjdhYzIyMzMtOTM5Mi00MDg0LWJhY2UtODA0MjNlZjcwNTZl?api-version=2017-11-15&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjIzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxNDc5L29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZOamRoWXpJeU16TXRPVE01TWkwME1EZzBMV0poWTJVdE9EQTBNak5sWmpjd05UWmw/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2412/providers/Microsoft.Devices/provisioningServices/ps1117?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxMTE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n }\r\n}", "RequestHeaders": { + "x-ms-client-request-id": [ + "3e249d97-6483-4976-9319-c231fcd54a61" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "44" ] }, "ResponseHeaders": { @@ -1241,17 +1226,17 @@ "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "4994" ], "x-ms-request-id": [ - "ece911f4-4873-433d-bf75-2926b6713d6e" + "1fe23951-5aed-402d-8515-9c40b3169872" ], "x-ms-correlation-request-id": [ - "ece911f4-4873-433d-bf75-2926b6713d6e" + "1fe23951-5aed-402d-8515-9c40b3169872" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T223111Z:ece911f4-4873-433d-bf75-2926b6713d6e" + "WESTUS2:20200916T233024Z:1fe23951-5aed-402d-8515-9c40b3169872" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1260,10 +1245,10 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:31:11 GMT" + "Wed, 16 Sep 2020 23:30:24 GMT" ], "Content-Length": [ - "20" + "647" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1272,19 +1257,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", + "ResponseBody": "{\r\n \"etag\": \"\",\r\n \"name\": \"ps1117\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"GeoLatency\",\r\n \"serviceOperationsHostName\": \"ps1117.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00180049\"\r\n },\r\n \"resourcegroup\": \"ps2412\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2412/providers/Microsoft.Devices/provisioningServices/ps1117\",\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2235/providers/Microsoft.Devices/provisioningServices/ps1479/operationResults/b3NfaWRfNjdhYzIyMzMtOTM5Mi00MDg0LWJhY2UtODA0MjNlZjcwNTZl?api-version=2017-11-15&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjIzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxNDc5L29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZOamRoWXpJeU16TXRPVE01TWkwME1EZzBMV0poWTJVdE9EQTBNak5sWmpjd05UWmw/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2412/providers/Microsoft.Devices/provisioningServices/ps1117?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxMTE3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "86a98a79-b870-4a7b-9ad6-21877054b9b1" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1295,20 +1286,29 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2412/providers/Microsoft.Devices/provisioningServices/ps1117/operationResults/b3NfaWRfOTE5NzUxNTAtNWM2OS00YzFiLWJhNjMtMjhkMDkyOGVlODBj?api-version=2017-11-15" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2412/providers/Microsoft.Devices/provisioningServices/ps1117/operationResults/b3NfaWRfOTE5NzUxNTAtNWM2OS00YzFiLWJhNjMtMjhkMDkyOGVlODBj?api-version=2017-11-15&asyncinfo" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-request-id": [ - "56915aab-ec59-42f0-a5cd-fcf4415beeb7" + "6575e60f-6d14-401e-b86f-ee2418b6d121" ], "x-ms-correlation-request-id": [ - "56915aab-ec59-42f0-a5cd-fcf4415beeb7" + "6575e60f-6d14-401e-b86f-ee2418b6d121" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T223126Z:56915aab-ec59-42f0-a5cd-fcf4415beeb7" + "WESTUS2:20200916T233025Z:6575e60f-6d14-401e-b86f-ee2418b6d121" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1317,10 +1317,10 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:31:26 GMT" + "Wed, 16 Sep 2020 23:30:24 GMT" ], "Content-Length": [ - "22" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1329,19 +1329,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 + "ResponseBody": "null", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2235/providers/Microsoft.Devices/provisioningServices/ps1479/operationResults/b3NfaWRfNjdhYzIyMzMtOTM5Mi00MDg0LWJhY2UtODA0MjNlZjcwNTZl?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjIzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxNDc5L29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZOamRoWXpJeU16TXRPVE01TWkwME1EZzBMV0poWTJVdE9EQTBNak5sWmpjd05UWmw/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2412/providers/Microsoft.Devices/provisioningServices/ps1117/operationResults/b3NfaWRfOTE5NzUxNTAtNWM2OS00YzFiLWJhNjMtMjhkMDkyOGVlODBj?api-version=2017-11-15&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxMTE3L29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZPVEU1TnpVeE5UQXROV00yT1MwMFl6RmlMV0poTmpNdE1qaGtNRGt5T0dWbE9EQmo/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", + "OSVersion/Microsoft.Windows.10.0.19041.", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, @@ -1352,26 +1352,20 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2235/providers/Microsoft.Devices/provisioningServices/ps1479/operationResults/b3NfaWRfNjdhYzIyMzMtOTM5Mi00MDg0LWJhY2UtODA0MjNlZjcwNTZl/operationResults/b3NfaWRfNjdhYzIyMzMtOTM5Mi00MDg0LWJhY2UtODA0MjNlZjcwNTZl?api-version=2017-11-15" - ], - "Retry-After": [ - "15" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11983" ], "x-ms-request-id": [ - "e3813ba0-5e98-4fd3-9b27-6c523c6f5d45" + "a099285c-a756-4f23-85f5-7c91a747817d" ], "x-ms-correlation-request-id": [ - "e3813ba0-5e98-4fd3-9b27-6c523c6f5d45" + "a099285c-a756-4f23-85f5-7c91a747817d" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T223126Z:e3813ba0-5e98-4fd3-9b27-6c523c6f5d45" + "WESTUS2:20200916T233040Z:a099285c-a756-4f23-85f5-7c91a747817d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1380,35 +1374,32 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:31:26 GMT" + "Wed, 16 Sep 2020 23:30:39 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourcegroups/ps2235?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlZ3JvdXBzL3BzMjIzNT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2412/providers/Microsoft.Devices/provisioningServices/ps1117/operationResults/b3NfaWRfOTE5NzUxNTAtNWM2OS00YzFiLWJhNjMtMjhkMDkyOGVlODBj?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxMTE3L29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZPVEU1TnpVeE5UQXROV00yT1MwMFl6RmlMV0poTmpNdE1qaGtNRGt5T0dWbE9EQmo/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "6f7a83a9-1ac9-4f97-888f-59d21053990f" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, "ResponseHeaders": { @@ -1419,22 +1410,25 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIyMzUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2412/providers/Microsoft.Devices/provisioningServices/ps1117/operationResults/b3NfaWRfOTE5NzUxNTAtNWM2OS00YzFiLWJhNjMtMjhkMDkyOGVlODBj/operationResults/b3NfaWRfOTE5NzUxNTAtNWM2OS00YzFiLWJhNjMtMjhkMDkyOGVlODBj?api-version=2017-11-15" ], "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" ], "x-ms-request-id": [ - "50567739-57b7-42a0-801a-378b6c9b88ec" + "5fbcccd8-c9f1-48b4-8e89-7a9ab2bacf31" ], "x-ms-correlation-request-id": [ - "50567739-57b7-42a0-801a-378b6c9b88ec" + "5fbcccd8-c9f1-48b4-8e89-7a9ab2bacf31" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T223127Z:50567739-57b7-42a0-801a-378b6c9b88ec" + "WESTUS2:20200916T233040Z:5fbcccd8-c9f1-48b4-8e89-7a9ab2bacf31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1443,7 +1437,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:31:26 GMT" + "Wed, 16 Sep 2020 23:30:39 GMT" ], "Expires": [ "-1" @@ -1453,19 +1447,25 @@ ] }, "ResponseBody": "", - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIyMzUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeU16VXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourcegroups/ps2412?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlZ3JvdXBzL3BzMjQxMj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "594ad72d-1c08-4e9b-9991-88a28cf44a8f" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -1476,22 +1476,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIyMzUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI0MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-request-id": [ - "f0d84ba5-22d6-4cb2-818b-0dcd2674641c" + "5a669a55-f094-46e8-8272-f5addc673023" ], "x-ms-correlation-request-id": [ - "f0d84ba5-22d6-4cb2-818b-0dcd2674641c" + "5a669a55-f094-46e8-8272-f5addc673023" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T223142Z:f0d84ba5-22d6-4cb2-818b-0dcd2674641c" + "WESTUS2:20200916T233041Z:5a669a55-f094-46e8-8272-f5addc673023" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1500,7 +1500,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:31:41 GMT" + "Wed, 16 Sep 2020 23:30:40 GMT" ], "Expires": [ "-1" @@ -1513,16 +1513,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIyMzUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeU16VXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI0MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJME1USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -1533,22 +1533,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIyMzUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI0MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11999" ], "x-ms-request-id": [ - "ec4bfd23-5ff3-4cda-8513-85fb255093f8" + "21b2c9a3-3b1a-442c-91ec-b8a518882a6a" ], "x-ms-correlation-request-id": [ - "ec4bfd23-5ff3-4cda-8513-85fb255093f8" + "21b2c9a3-3b1a-442c-91ec-b8a518882a6a" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T223157Z:ec4bfd23-5ff3-4cda-8513-85fb255093f8" + "WESTUS2:20200916T233056Z:21b2c9a3-3b1a-442c-91ec-b8a518882a6a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1557,7 +1557,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:31:56 GMT" + "Wed, 16 Sep 2020 23:30:55 GMT" ], "Expires": [ "-1" @@ -1570,16 +1570,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIyMzUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeU16VXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI0MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJME1USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -1590,22 +1590,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIyMzUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI0MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11998" ], "x-ms-request-id": [ - "5ea44246-d4d0-49bb-86b3-9efe26685d36" + "dd1884e1-aa88-4703-99e7-71aafe84ab2f" ], "x-ms-correlation-request-id": [ - "5ea44246-d4d0-49bb-86b3-9efe26685d36" + "dd1884e1-aa88-4703-99e7-71aafe84ab2f" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T223212Z:5ea44246-d4d0-49bb-86b3-9efe26685d36" + "WESTUS2:20200916T233111Z:dd1884e1-aa88-4703-99e7-71aafe84ab2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1614,7 +1614,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:32:11 GMT" + "Wed, 16 Sep 2020 23:31:10 GMT" ], "Expires": [ "-1" @@ -1627,16 +1627,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIyMzUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeU16VXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI0MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJME1USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -1647,16 +1647,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11997" ], "x-ms-request-id": [ - "973c6e29-10f9-490a-a1c8-5d4ad2b91eba" + "1003d721-feee-4779-9d1c-9f3905ad0229" ], "x-ms-correlation-request-id": [ - "973c6e29-10f9-490a-a1c8-5d4ad2b91eba" + "1003d721-feee-4779-9d1c-9f3905ad0229" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T223227Z:973c6e29-10f9-490a-a1c8-5d4ad2b91eba" + "WESTUS2:20200916T233126Z:1003d721-feee-4779-9d1c-9f3905ad0229" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1665,7 +1665,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:32:26 GMT" + "Wed, 16 Sep 2020 23:31:26 GMT" ], "Expires": [ "-1" @@ -1678,16 +1678,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIyMzUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeU16VXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI0MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJME1USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -1698,16 +1698,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11996" ], "x-ms-request-id": [ - "360c3ae6-c8dd-4885-8efd-be944e727d4d" + "cd747ea5-bd57-42b7-8592-f8b8dfc78406" ], "x-ms-correlation-request-id": [ - "360c3ae6-c8dd-4885-8efd-be944e727d4d" + "cd747ea5-bd57-42b7-8592-f8b8dfc78406" ], "x-ms-routing-request-id": [ - "WESTUS:20190930T223227Z:360c3ae6-c8dd-4885-8efd-be944e727d4d" + "WESTUS2:20200916T233126Z:cd747ea5-bd57-42b7-8592-f8b8dfc78406" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1716,7 +1716,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Sep 2019 22:32:26 GMT" + "Wed, 16 Sep 2020 23:31:26 GMT" ], "Expires": [ "-1" @@ -1731,8 +1731,8 @@ ], "Names": { "Test-AzureIotDpsLifeCycle": [ - "ps1479", - "ps2235" + "ps1117", + "ps2412" ] }, "Variables": { diff --git a/src/DeviceProvisioningServices/DeviceProvisioningServices.sln b/src/DeviceProvisioningServices/DeviceProvisioningServices.sln index e210462d3f4c..33d64fa46d05 100644 --- a/src/DeviceProvisioningServices/DeviceProvisioningServices.sln +++ b/src/DeviceProvisioningServices/DeviceProvisioningServices.sln @@ -19,7 +19,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ScenarioTest.ResourceManage EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TestFx", "..\..\tools\TestFx\TestFx.csproj", "{BC80A1D0-FFA4-43D9-AA74-799F5CB54B58}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "IotHub", "..\IotHub\IotHub\IotHub.csproj", "{FD98F78A-2655-40A3-9330-A2B2CCBF7625}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "IotHub", "..\IotHub\IotHub\IotHub.csproj", "{7F81FF1A-8216-4F21-BC14-53BA42FC6478}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -55,17 +55,17 @@ Global {BC80A1D0-FFA4-43D9-AA74-799F5CB54B58}.Debug|Any CPU.Build.0 = Debug|Any CPU {BC80A1D0-FFA4-43D9-AA74-799F5CB54B58}.Release|Any CPU.ActiveCfg = Release|Any CPU {BC80A1D0-FFA4-43D9-AA74-799F5CB54B58}.Release|Any CPU.Build.0 = Release|Any CPU - {FD98F78A-2655-40A3-9330-A2B2CCBF7625}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {FD98F78A-2655-40A3-9330-A2B2CCBF7625}.Debug|Any CPU.Build.0 = Debug|Any CPU - {FD98F78A-2655-40A3-9330-A2B2CCBF7625}.Release|Any CPU.ActiveCfg = Release|Any CPU - {FD98F78A-2655-40A3-9330-A2B2CCBF7625}.Release|Any CPU.Build.0 = Release|Any CPU + {7F81FF1A-8216-4F21-BC14-53BA42FC6478}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {7F81FF1A-8216-4F21-BC14-53BA42FC6478}.Debug|Any CPU.Build.0 = Debug|Any CPU + {7F81FF1A-8216-4F21-BC14-53BA42FC6478}.Release|Any CPU.ActiveCfg = Release|Any CPU + {7F81FF1A-8216-4F21-BC14-53BA42FC6478}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection GlobalSection(NestedProjects) = preSolution {4802BBF0-70F7-4FCB-81A6-381810234F14} = {DB3F9035-1533-4D52-B782-285C784EFDD4} - {FD98F78A-2655-40A3-9330-A2B2CCBF7625} = {DB3F9035-1533-4D52-B782-285C784EFDD4} + {7F81FF1A-8216-4F21-BC14-53BA42FC6478} = {DB3F9035-1533-4D52-B782-285C784EFDD4} EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {930E4484-D6C7-4C25-AE5B-05EDACF6ED88} diff --git a/src/DeviceProvisioningServices/DeviceProvisioningServices/ChangeLog.md b/src/DeviceProvisioningServices/DeviceProvisioningServices/ChangeLog.md index 3879b1e1f4e2..339d28bf3a5e 100644 --- a/src/DeviceProvisioningServices/DeviceProvisioningServices/ChangeLog.md +++ b/src/DeviceProvisioningServices/DeviceProvisioningServices/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* Update devices provisioning service sdk ## Version 0.7.4 * Fixed debug: Enrollment does not retain/assign linked IotHubs while choosing Custom allocation policy. [#12154] diff --git a/src/DeviceProvisioningServices/DeviceProvisioningServices/DeviceProvisioningServices.csproj b/src/DeviceProvisioningServices/DeviceProvisioningServices/DeviceProvisioningServices.csproj index e36a5cf8c149..c35fae49ac5b 100644 --- a/src/DeviceProvisioningServices/DeviceProvisioningServices/DeviceProvisioningServices.csproj +++ b/src/DeviceProvisioningServices/DeviceProvisioningServices/DeviceProvisioningServices.csproj @@ -1,4 +1,4 @@ - + DeviceProvisioningServices @@ -11,8 +11,12 @@ - + + + + + \ No newline at end of file diff --git a/src/EventHub/EventHub.Test/ScenarioTests/NetworkRuleSetTests.ps1 b/src/EventHub/EventHub.Test/ScenarioTests/NetworkRuleSetTests.ps1 index a649de29b84e..08f88192d3b7 100644 --- a/src/EventHub/EventHub.Test/ScenarioTests/NetworkRuleSetTests.ps1 +++ b/src/EventHub/EventHub.Test/ScenarioTests/NetworkRuleSetTests.ps1 @@ -74,6 +74,7 @@ function NetworkRuleSetTests Write-Debug "Get NetworkRuleSet" $getResult1 = Get-AzEventHubNetworkRuleSet -ResourceGroup $resourceGroupName -Name $namespaceName + $getResult1.TrustedServiceAccessEnabled = $true Assert-AreEqual $getResult1.VirtualNetworkRules.Count 3 "VirtualNetworkRules count did not matched" Assert-AreEqual $getResult1.IpRules.Count 3 "IPRules count did not matched" @@ -90,6 +91,7 @@ function NetworkRuleSetTests $setResult = Set-AzEventHubNetworkRuleSet -ResourceGroup $resourceGroupName -Name $namespaceName2 -InputObject $getResult1 Assert-AreEqual $setResult.VirtualNetworkRules.Count 3 "Set -VirtualNetworkRules count did not matched" Assert-AreEqual $setResult.IpRules.Count 3 "Set - IPRules count did not matched" + Assert-AreEqual $true $setResult.TrustedServiceAccessEnabled # Set-AzEventHubNetworkRuleSet with Resource ID $setResult1 = Set-AzEventHubNetworkRuleSet -ResourceGroup $resourceGroupName -Name $namespaceName2 -ResourceId $getResult.Id diff --git a/src/EventHub/EventHub.Test/SessionRecords/Microsoft.Azure.Commands.EventHub.Test.ScenarioTests.NetworkRuleSetTests/NetworkRuleSetCRUD.json b/src/EventHub/EventHub.Test/SessionRecords/Microsoft.Azure.Commands.EventHub.Test.ScenarioTests.NetworkRuleSetTests/NetworkRuleSetCRUD.json index 7e4bf4da2706..099ffb89e933 100644 --- a/src/EventHub/EventHub.Test/SessionRecords/Microsoft.Azure.Commands.EventHub.Test.ScenarioTests.NetworkRuleSetTests/NetworkRuleSetCRUD.json +++ b/src/EventHub/EventHub.Test/SessionRecords/Microsoft.Azure.Commands.EventHub.Test.ScenarioTests.NetworkRuleSetTests/NetworkRuleSetCRUD.json @@ -7,16 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c86242df-b53a-4f14-8d6d-a737831fff03" + "edd9bb7b-889a-48f5-96f6-063f7d43415b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" ] }, "ResponseHeaders": { @@ -27,16 +27,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-request-id": [ - "778b62d1-b2b3-4c0b-a3fa-357887bef3cd" + "c4a0e34f-d605-4e86-abbf-b6a7786677a7" ], "x-ms-correlation-request-id": [ - "778b62d1-b2b3-4c0b-a3fa-357887bef3cd" + "c4a0e34f-d605-4e86-abbf-b6a7786677a7" ], "x-ms-routing-request-id": [ - "WESTUS:20200612T051703Z:778b62d1-b2b3-4c0b-a3fa-357887bef3cd" + "WESTUS:20200915T054001Z:c4a0e34f-d605-4e86-abbf-b6a7786677a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Fri, 12 Jun 2020 05:17:02 GMT" + "Tue, 15 Sep 2020 05:40:01 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54,29 +54,29 @@ "-1" ], "Content-Length": [ - "826132" + "898259" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Kubernetes\",\r\n \"namespace\": \"Microsoft.Kubernetes\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"64b12d6e-6549-484c-8cc6-6281839ba394\",\r\n \"roleDefinitionId\": \"1d1d44cf-68a1-4def-a2b6-cd7efc3515af\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatuses\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"West Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registeredSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2019-09-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connectedClusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-11-01-preview\",\r\n \"2019-09-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.KubernetesConfiguration\",\r\n \"namespace\": \"Microsoft.KubernetesConfiguration\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c699bf69-fb1d-4eaf-999b-99e6b2ae4d85\",\r\n \"roleDefinitionId\": \"90155430-a360-410f-af5d-89dc284d85c6\"\r\n },\r\n {\r\n \"applicationId\": \"03db181c-e9d3-4868-9097-f0b728327182\",\r\n \"roleDefinitionId\": \"DE2ADB97-42D8-49C8-8FCF-DBB53EF936AC\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sourceControlConfigurations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.SaaS\",\r\n \"namespace\": \"Microsoft.SaaS\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"f738ef14-47dc-4564-b53b-45069484ccc7\",\r\n \"roleDefinitionId\": \"b131dd2d-387a-4cae-bb9b-3d021f80d1e6\"\r\n },\r\n {\r\n \"applicationId\": \"20e940b3-4c77-4b0b-9a53-9e16a1b010a7\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checknameavailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkModernEligibility\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"saasresources\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.AppConfiguration\",\r\n \"namespace\": \"Microsoft.AppConfiguration\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"35ffadb3-7fc1-497e-b61b-381d28e744cc\",\r\n \"roleDefinitionId\": \"fffa409e-a8cc-4cbf-8e1c-6d940b33040e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"configurationStores\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2019-10-01\",\r\n \"2019-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"configurationStores/eventGridFilters\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2019-10-01\",\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2019-10-01\",\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2019-10-01\",\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2019-10-01\",\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2019-10-01\",\r\n \"2019-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.MachineLearningServices\",\r\n \"namespace\": \"Microsoft.MachineLearningServices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"376aa7d7-51a9-463d-bd4d-7e1691345612\",\r\n \"managedByRoleDefinitionId\": \"91d00862-cf55-46a5-9dce-260bbd92ce25\"\r\n },\r\n {\r\n \"applicationId\": \"18a66f5f-dbdf-4c17-9dd7-1634712a9cbe\",\r\n \"roleDefinitionId\": \"8b910db7-60f9-4c04-af30-71aab18eda90\",\r\n \"managedByRoleDefinitionId\": \"91d00862-cf55-46a5-9dce-260bbd92ce25\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"Canada Central\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-02-18-preview\",\r\n \"2020-02-02\",\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/computes\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-02-18-preview\",\r\n \"2020-02-02\",\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/eventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\",\r\n \"West India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-02-18-preview\",\r\n \"2020-02-02\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-02-18-preview\",\r\n \"2020-02-02\",\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-02-18-preview\",\r\n \"2020-02-02\",\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/computeOperationsStatus\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-02-18-preview\",\r\n \"2020-02-02\",\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/workspaceOperationsStatus\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-02-18-preview\",\r\n \"2020-02-02\",\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-02-18-preview\",\r\n \"2020-02-02\",\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmsizes\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-02-18-preview\",\r\n \"2020-02-02\",\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-02-18-preview\",\r\n \"2020-02-02\",\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/updatequotas\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-02-18-preview\",\r\n \"2020-02-02\",\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n {\r\n \"applicationId\": \"737d58c1-397a-46e7-9d12-7d8c830883c2\",\r\n \"roleDefinitionId\": \"716bb53a-0390-4428-bf41-b1bedde7d751\"\r\n },\r\n {\r\n \"applicationId\": \"918d0db8-4a38-4938-93c1-9313bdfe0272\",\r\n \"roleDefinitionId\": \"dcd2d2c9-3f80-4d72-95a8-2593111b4b12\"\r\n },\r\n {\r\n \"applicationId\": \"d2fa1650-4805-4a83-bcb9-cf41fe63539c\",\r\n \"roleDefinitionId\": \"c15f8dab-b103-4f8d-9afb-fbe4b8e98de2\"\r\n },\r\n {\r\n \"applicationId\": \"a4c95b9e-3994-40cc-8953-5dc66d48348d\",\r\n \"roleDefinitionId\": \"dc88c655-90fa-48d9-8d51-003cc8738508\"\r\n },\r\n {\r\n \"applicationId\": \"62c559cd-db0c-4da0-bab2-972528c65d42\",\r\n \"roleDefinitionId\": \"437b639a-6d74-491d-959f-d172e8c5c1fc\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Switzerland North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"registries/scopeMaps\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/tokens\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/generateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/privateEndpointConnections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Switzerland North\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Switzerland North\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Switzerland North\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/privateLinkResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Switzerland North\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/importImage\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/exportPipelines\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Switzerland North\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"registries/importPipelines\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Switzerland North\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"registries/pipelineRuns\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Switzerland North\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listBuildSourceUploadUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/scheduleRun\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/runs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/taskRuns\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/taskRuns/listDetails\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/agentPools\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/agentPools/listQueueStatus\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/runs/listLogSasUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/runs/cancel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/tasks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"registries/tasks/listDetails\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/getBuildSourceUploadUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/queueBuild\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/getLogLink\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/cancel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/listSourceRepositoryProperties\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps/listBuildArguments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/replications\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/ping\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/getCallbackConfig\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/listEvents\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setupAuth\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/authorize\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listCredentials\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredential\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listUsages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Switzerland North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/updatePolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Switzerland North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/eventGridFilters\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\",\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"86695298-2eb9-48a7-9ec3-2fdb38b6878b\"\r\n },\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany West Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01-preview\",\r\n \"2017-04-26-preview\",\r\n \"2017-03-15-preview\",\r\n \"2017-03-03-preview\",\r\n \"2017-01-01-preview\",\r\n \"2015-11-01-preview\",\r\n \"2015-03-20\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01-preview\",\r\n \"2019-08-01-preview\",\r\n \"2017-04-26-preview\",\r\n \"2017-03-15-preview\",\r\n \"2017-03-03-preview\",\r\n \"2017-01-01-preview\",\r\n \"2015-11-01-preview\",\r\n \"2015-03-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatuses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany West Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01-preview\",\r\n \"2019-08-01-preview\",\r\n \"2017-04-26-preview\",\r\n \"2017-03-15-preview\",\r\n \"2017-03-03-preview\",\r\n \"2017-01-01-preview\",\r\n \"2015-11-01-preview\",\r\n \"2015-03-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/scopedPrivateLinkProxies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany West Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01-preview\",\r\n \"2019-08-01-preview\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/metadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/dataSources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany West Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01-preview\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/linkedStorageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany West Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01-preview\",\r\n \"2014-10-10\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/linkedServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany West Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01-preview\",\r\n \"2019-08-01-preview\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01-preview\",\r\n \"2015-03-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedWorkspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany West Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01-preview\",\r\n \"2015-11-01-preview\",\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.OperationsManagement\",\r\n \"namespace\": \"Microsoft.OperationsManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"aa249101-6816-4966-aafa-08175d795f14\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"solutions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central Us\",\r\n \"East Us 2\",\r\n \"East Asia\",\r\n \"West Us\",\r\n \"South Central Us\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managementconfigurations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central Us\",\r\n \"East Us 2\",\r\n \"East Asia\",\r\n \"West Us\",\r\n \"South Central Us\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managementassociations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"views\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central Us\",\r\n \"East Us 2\",\r\n \"East Asia\",\r\n \"West Us\",\r\n \"South Central Us\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Databricks\",\r\n \"namespace\": \"Microsoft.Databricks\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d9327919-6775-4843-9037-3fb0fb0473cb\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"applicationId\": \"2ff814a6-3304-4ab8-85cb-cd0e6f879c1d\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/virtualNetworkPeerings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Brazil South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/dbWorkspaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Brazil South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"UAE North\",\r\n \"Brazil South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Brazil South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-15\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/getNetworkPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"roleDefinitionId\": \"e4770acb-272e-4dc8-87f3-12f44a612224\"\r\n },\r\n {\r\n \"applicationId\": \"a303894e-f1d8-4a37-bf10-67aa654a0596\",\r\n \"roleDefinitionId\": \"903ac751-8ad5-4e5a-bfc2-5e49f450a241\"\r\n },\r\n {\r\n \"applicationId\": \"a8b6bf88-1d1a-4626-b040-9a729ea93c65\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"184909ca-69f1-4368-a6a7-c558ee6eb0bd\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"5e5e43d4-54da-4211-86a4-c6e7f3715801\",\r\n \"roleDefinitionId\": \"ffcd6e5b-8772-457d-bb17-89703c03428f\"\r\n },\r\n {\r\n \"applicationId\": \"ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n },\r\n {\r\n \"applicationId\": \"372140e0-b3b7-4226-8ef9-d57986796201\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n },\r\n {\r\n \"applicationId\": \"b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab\",\r\n \"roleDefinitionId\": \"6efa92ca-56b6-40af-a468-5e3d2b5232f0\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runCommands\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections/restorePoints\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"proximityPlacementGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"sshPublicKeys\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/artifactPublishers\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capsoperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\",\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/diskoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diskEncryptionSets\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations/vsmoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UK West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"France South\",\r\n \"West US 2\",\r\n \"Japan West\",\r\n \"France Central\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/logAnalytics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Australia East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Australia East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMExtensions\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMExtensions/versions\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ContainerService\",\r\n \"namespace\": \"Microsoft.ContainerService\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"7319c514-987d-4e9b-ac3d-d38c4f427f4c\",\r\n \"roleDefinitionId\": \"1b4a0c7f-2217-416f-acfa-cf73452fdc1c\",\r\n \"managedByRoleDefinitionId\": \"9e3af657-a8ff-583c-a75c-2fe7c4bcb635\",\r\n \"managedByAuthorization\": {\r\n \"allowManagedByInheritance\": true\r\n }\r\n },\r\n {\r\n \"applicationId\": \"6dae42f8-4368-4678-94ff-3960e28e3630\",\r\n \"roleDefinitionId\": \"831388fc-33b1-4dd1-b64c-40fdcaf96654\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"containerServices\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"managedClusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Germany North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany West Central\",\r\n \"UAE North\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-02-01\",\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-08-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-08-01-preview\",\r\n \"2018-03-31\",\r\n \"2017-08-31\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"openShiftManagedClusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"Central India\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-30-preview\",\r\n \"2019-04-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/openShiftClusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"Central India\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-30-preview\",\r\n \"2019-04-30\",\r\n \"2018-09-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE North\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2016-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE North\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-31\",\r\n \"2018-03-31\",\r\n \"2017-08-31\",\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/orchestrators\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE North\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-02-01\",\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-08-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2017-09-30\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.RecoveryServices\",\r\n \"namespace\": \"Microsoft.RecoveryServices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6\"\r\n },\r\n {\r\n \"applicationId\": \"3b2fa68d-a091-48c9-95be-88d572e08fb7\",\r\n \"roleDefinitionId\": \"47d68fae-99c7-4c10-b9db-2316116a061e\"\r\n },\r\n {\r\n \"applicationId\": \"9bdab391-7bbe-42e8-8132-e4491dc29cc0\",\r\n \"roleDefinitionId\": \"0383f7f5-023d-4379-b2c7-9ef786459969\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2020-02-02\",\r\n \"2019-06-15\",\r\n \"2019-05-13-preview\",\r\n \"2019-05-13\",\r\n \"2018-12-20-preview\",\r\n \"2018-07-10-preview\",\r\n \"2018-07-10\",\r\n \"2018-01-10\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-12-01\",\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2016-05-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2020-02-02\",\r\n \"2019-06-15\",\r\n \"2019-05-13-preview\",\r\n \"2019-05-13\",\r\n \"2018-07-10-preview\",\r\n \"2018-07-10\",\r\n \"2018-01-10\",\r\n \"2017-09-01\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-12-01\",\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupStatus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocatedStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocateStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupValidateFeatures\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupPreValidateProtection\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupCrrJobs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupCrrJob\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupAadProperties\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupCrossRegionRestore\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupCrrOperationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupCrrOperationsStatus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"backupProtectedItems\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"replicationEligibilityResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-10\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e4ab13ed-33cb-41b4-9140-6e264582cf85\",\r\n \"roleDefinitionId\": \"ec3ddc95-44dc-47a2-9926-5e9f5ffd44ec\"\r\n },\r\n {\r\n \"applicationId\": \"0130cc9f-7ac5-4026-bd5f-80a08a54e6d9\",\r\n \"roleDefinitionId\": \"45e8abf8-0ec4-44f3-9c37-cff4f7779302\"\r\n },\r\n {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n {\r\n \"applicationId\": \"76c7f279-7959-468f-8943-3954880e0d8c\",\r\n \"roleDefinitionId\": \"7f7513a8-73f9-4c5f-97a2-c41f0ea783ef\"\r\n },\r\n {\r\n \"applicationId\": \"022907d3-0f1b-48f7-badc-1ba6abab6d66\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/keys\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/encryptionProtector\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceEncryptionProtectorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceEncryptionProtectorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/tdeCertificates\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/communicationLinks\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administrators\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverAdministratorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverAdministratorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/geoBackupPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/backupLongTermRetentionPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/backupShortTermRetentionPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/automaticTuning\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/automaticTuning\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/transparentDataEncryption\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingSettings\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingSettings\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/extendedAuditingSettings\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-09-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/jobAccounts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/jobAgents\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/jobAgents/jobs\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/jobAgents/jobs/steps\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/jobAgents/jobs/executions\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/disasterRecoveryConfiguration\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/dnsAliases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/failoverGroups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/aggregatedDatabaseMetrics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries/queryText\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPools/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/extensions\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPoolEstimates\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditRecords\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentScans\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/workloadGroups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/databases/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentSettings\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessment\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/recommendedSensitivityLabels\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups/syncMembers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/syncAgents\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"instancePools\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/instancePoolOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instancePoolAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/administrators\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/databases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/recoverableDatabases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/metrics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/metricDefinitions\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/databases/backupLongTermRetentionPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionManagedInstances\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionManagedInstanceBackups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceLongTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceLongTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionManagedInstanceBackupOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionManagedInstanceBackupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseCompleteRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseCompleteRestoreOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/tdeCertificates\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualClusters\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualClusterAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualClusterOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncMemberOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncAgentOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncDatabaseIds\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedShortTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedShortTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/notifyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ResourceHealth\",\r\n \"namespace\": \"Microsoft.ResourceHealth\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8bdebf23-c0fe-4187-a378-717ad86f6a53\",\r\n \"roleDefinitionId\": \"cc026344-c8b1-4561-83ba-59eba84b27cc\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilityStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01-preview\",\r\n \"2020-05-01\",\r\n \"2018-08-01-rc\",\r\n \"2018-08-01-preview\",\r\n \"2018-07-01-rc\",\r\n \"2018-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"childAvailabilityStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-06-beta\",\r\n \"2018-08-01-rc\",\r\n \"2018-08-01-preview\",\r\n \"2018-07-01-rc\",\r\n \"2018-07-01-preview\",\r\n \"2018-07-01-beta\",\r\n \"2017-07-01-rc\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01-beta\",\r\n \"2015-01-01-rc\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"childResources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-06-beta\",\r\n \"2018-08-01-rc\",\r\n \"2018-08-01-preview\",\r\n \"2018-07-01-rc\",\r\n \"2018-07-01-preview\",\r\n \"2018-07-01-beta\",\r\n \"2017-07-01-rc\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01-beta\",\r\n \"2015-01-01-rc\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"events\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-rc\",\r\n \"2018-07-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"metadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-rc\",\r\n \"2018-07-01-preview\",\r\n \"2018-07-01-beta\",\r\n \"2018-07-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"emergingissues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-06-beta\",\r\n \"2018-07-01-rc\",\r\n \"2018-07-01-preview\",\r\n \"2018-07-01-beta\",\r\n \"2018-07-01-alpha\",\r\n \"2018-07-01\",\r\n \"2017-07-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifications\",\r\n \"locations\": [\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"fc75330b-179d-49af-87dd-3b1acf6827fa\",\r\n \"roleDefinitionId\": \"95fd5de3-d071-4362-92bf-cf341c1de832\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Central US\",\r\n \"West US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-13-preview\",\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/configurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"West US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/webhooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Central US\",\r\n \"West US\",\r\n \"Australia Central\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/softwareUpdateConfigurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Central US\",\r\n \"West US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/jobs\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Central US\",\r\n \"West US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/privateLinkResources\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Central US\",\r\n \"West US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-13-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/privateEndpointConnections\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Central US\",\r\n \"West US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-13-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Central US\",\r\n \"West US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-13-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6bccf540-eb86-4037-af03-7fa058c2db75\",\r\n \"roleDefinitionId\": \"89dcede2-9219-403a-9723-d3c6473f9472\"\r\n },\r\n {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n {\r\n \"applicationId\": \"035f9e1d-4f00-4419-bf50-bf2d87eb4878\",\r\n \"roleDefinitionId\": \"323795fe-ba3d-4f5a-ad42-afb4e1ea9485\"\r\n },\r\n {\r\n \"applicationId\": \"f5c26e74-f226-4ae8-85f0-b4af0080ac9e\",\r\n \"roleDefinitionId\": \"529d7ae6-e892-4d43-809d-8547aeb90643\"\r\n },\r\n {\r\n \"applicationId\": \"b503eb83-1222-4dcc-b116-b98ed5216e05\",\r\n \"roleDefinitionId\": \"68699c37-c689-44d4-9248-494b782d46ae\"\r\n },\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n },\r\n {\r\n \"applicationId\": \"3af5a1e8-2459-45cb-8683-bcd6cccbcc13\",\r\n \"roleDefinitionId\": \"b1309299-720d-4159-9897-6158a61aee41\"\r\n },\r\n {\r\n \"applicationId\": \"6a0a243c-0886-468a-a4c2-eff52c7445da\",\r\n \"roleDefinitionId\": \"d2eda64b-c5e6-4930-8642-2d80ecd7c2e2\"\r\n },\r\n {\r\n \"applicationId\": \"707be275-6b9d-4ee7-88f9-c0c2bd646e0f\",\r\n \"roleDefinitionId\": \"fa027d90-6ba0-4c33-9a54-59edaf2327e7\"\r\n },\r\n {\r\n \"applicationId\": \"461e8683-5575-4561-ac7f-899cc907d62a\",\r\n \"roleDefinitionId\": \"68699c37-c689-44d4-9248-494b782d46ae\"\r\n },\r\n {\r\n \"applicationId\": \"562db366-1b96-45d2-aa4a-f2148cef2240\",\r\n \"roleDefinitionId\": \"4109c8be-c1c8-4be0-af52-9d3c76c140ab\"\r\n },\r\n {\r\n \"applicationId\": \"e933bd07-d2ee-4f1d-933c-3752b819567b\",\r\n \"roleDefinitionId\": \"abbcfd44-e662-419a-9b5a-478f8e2f57c9\"\r\n },\r\n {\r\n \"applicationId\": \"f6b60513-f290-450e-a2f3-9930de61c5e7\",\r\n \"roleDefinitionId\": \"4ef11659-08ac-48af-98a7-25fb6b1e1bc4\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"components/query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/metadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/metrics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/events\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"webtests/getTestResultFile\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-10-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"scheduledqueryrules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-16\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"components/pricingPlans\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"migrateToNewPricingModel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"rollbackToLegacyPricingModel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listMigrationdate\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logprofiles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"migratealertrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricalerts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2016-09-01-preview\",\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vmInsightsOnboardingStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-27-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2015-07-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"extendedDiagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-02-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"logDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"eventCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"metricbatch\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"actiongroups\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2018-09-01\",\r\n \"2018-03-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"activityLogAlerts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"baseline\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-11-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"metricbaselines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"calculatebaseline\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-11-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"workbooks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"South Africa North\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-12\",\r\n \"2018-06-17-preview\",\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"workbooktemplates\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"South Africa North\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-17-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"myWorkbooks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-12\",\r\n \"2018-06-17-preview\",\r\n \"2018-06-15-preview\",\r\n \"2018-06-01-preview\",\r\n \"2016-06-15-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"logs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"transactions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-17-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"topology\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-17-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"privateLinkScopes/privateEndpointConnections\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-17-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateLinkScopes/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-17-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateLinkScopes/scopedResources\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-17-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/linkedstorageaccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateLinkScopeOperationStatuses\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-17-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataCollectionRules\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dataCollectionRuleAssociations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n {\r\n \"applicationId\": \"7c33bfcb-8d33-48d6-8e60-dc6404003489\",\r\n \"roleDefinitionId\": \"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3\"\r\n },\r\n {\r\n \"applicationId\": \"1e3e4475-288f-4018-a376-df66fd7fac5f\",\r\n \"roleDefinitionId\": \"1d538b69-3d87-4e56-8ff8-25786fd48261\"\r\n },\r\n {\r\n \"applicationId\": \"a0be0c72-870e-46f0-9c49-c98333a996f7\",\r\n \"roleDefinitionId\": \"7ce22727-ffce-45a9-930c-ddb2e56fa131\"\r\n },\r\n {\r\n \"applicationId\": \"486c78bf-a0f7-45f1-92fd-37215929e116\",\r\n \"roleDefinitionId\": \"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d\"\r\n },\r\n {\r\n \"applicationId\": \"19947cfd-0303-466c-ac3c-fcc19a7a1570\",\r\n \"roleDefinitionId\": \"d813ab6c-bfb7-413e-9462-005b21f0ce09\"\r\n },\r\n {\r\n \"applicationId\": \"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd\",\r\n \"roleDefinitionId\": \"8141843c-c51c-4c1e-a5bf-0d351594b86c\"\r\n },\r\n {\r\n \"applicationId\": \"328fd23b-de6e-462c-9433-e207470a5727\",\r\n \"roleDefinitionId\": \"79e29e06-4056-41e5-a6b2-959f1f47747e\"\r\n },\r\n {\r\n \"applicationId\": \"6d057c82-a784-47ae-8d12-ca7b38cf06b4\",\r\n \"roleDefinitionId\": \"c27dd31e-c1e5-4ab0-93e1-a12ba34f182e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"natGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateEndpointRedirectMaps\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serviceEndpointPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkIntentPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPPrefixes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ddosCustomPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/connectionMonitors\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/flowLogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/pingMeshes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayWebApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkAvailableEndpointServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableDelegations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serviceTags\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availablePrivateEndpointTypes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableServiceAliases\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkPrivateLinkServiceVisibility\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/autoApprovedPrivateLinkServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/batchValidatePrivateEndpointsForResourceMove\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/batchNotifyPrivateEndpointsForResourceMove\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/supportedVirtualMachineSizes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkAcceleratedNetworkingSupport\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/effectiveResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"getDnsResourceReference\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"internalNotify\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/NS\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/recordsets\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/virtualNetworkLinks\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZonesInternal\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles/heatMaps\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerUserMetricsKeys\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableWafRuleSets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableSslOptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableServerVariables\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableRequestHeaders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableResponseHeaders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"bgpServiceCommunities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualWans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnSites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnServerConfigurations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"p2sVpnGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"firewallPolicies\",\r\n \"locations\": [\r\n \"UAE North\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Japan West\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"South India\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ipGroups\",\r\n \"locations\": [\r\n \"UAE North\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Japan West\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"South India\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/nfvOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/nfvOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityPartnerProviders\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"azureFirewalls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"azureFirewallFqdnTags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkTaps\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"privateLinkServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ddosProtectionPlans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"networkProfiles\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"checkFrontdoorNameAvailability\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"frontdoorWebApplicationFirewallManagedRuleSets\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2019-10-01\",\r\n \"2019-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/bareMetalTenants\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"bastionHosts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualRouters\",\r\n \"locations\": [\r\n \"UAE North\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Japan West\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"South India\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ipAllocations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/commitInternalAzureNetworkManagerConfiguration\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/lenses\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoorOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"frontdoors\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoors/frontendEndpoints\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"frontdoorWebApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2019-10-01\",\r\n \"2019-03-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"networkExperimentProfiles\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validate\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"isusernameavailable\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"staticSites\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/getNetworkPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"France Central\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"West India\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-08-01\",\r\n \"2019-01-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"West India\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-08-01\",\r\n \"2019-01-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/networkConfig\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/networkConfig\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2015-01-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2015-01-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"West India\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-02-01\",\r\n \"2019-01-01\",\r\n \"2018-11-01\",\r\n \"2018-08-01\",\r\n \"2018-05-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-02-01\",\r\n \"2018-11-01\",\r\n \"2018-08-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-02-01\",\r\n \"2018-11-01\",\r\n \"2018-08-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"kubeEnvironments\",\r\n \"locations\": [\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-02-01\",\r\n \"2019-01-01\",\r\n \"2018-11-01\",\r\n \"2018-08-01\",\r\n \"2018-05-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedSites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedSites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-11-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"customApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/listWsdlInterfaces\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extractApiDefinitionFromWsdl\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runtimes\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/apiOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connectionGateways\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/connectionGatewayInstallations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingMeters\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"verifyHostingEnvironmentVnet\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/eventGridFilters\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway West\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"South Africa West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/eventGridFilters\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway West\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"South Africa West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2015-01-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/eventGridFilters\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway West\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"South Africa West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2015-01-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/eventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"West India\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-02-01\",\r\n \"2019-01-01\",\r\n \"2018-11-01\",\r\n \"2018-08-01\",\r\n \"2018-05-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.AlertsManagement\",\r\n \"namespace\": \"Microsoft.AlertsManagement\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"3af5a1e8-2459-45cb-8683-bcd6cccbcc13\",\r\n \"roleDefinitionId\": \"b1309299-720d-4159-9897-6158a61aee41\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-05-preview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-11-02-privatepreview\",\r\n \"2018-05-05-preview\",\r\n \"2018-05-05\",\r\n \"2017-11-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"alertsSummary\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-05-preview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-05-05-preview\",\r\n \"2018-05-05\",\r\n \"2017-11-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"smartGroups\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-05-preview\",\r\n \"2018-05-05-preview\",\r\n \"2018-05-05\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartDetectorAlertRules\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"actionRules\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-05-preview\",\r\n \"2018-11-02-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"alertsList\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-02-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertsSummaryList\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-02-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertsMetaData\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-05-preview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2018-05-05\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Advisor\",\r\n \"namespace\": \"Microsoft.Advisor\",\r\n \"authorization\": {\r\n \"applicationId\": \"c39c9bac-9d1f-4dfb-aa29-27f6365e5cb7\",\r\n \"roleDefinitionId\": \"8a63b04c-3731-409b-9765-f1175c047872\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"suppressions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"generateRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"France Central\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"West Central US\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-12-01\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-12-01\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-12-01\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-12-01\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-12-01\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"de926fbf-e23b-41f9-ae15-c943a9cfa630\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2018-12-01-preview\",\r\n \"2018-09-01-preview\",\r\n \"2018-07-01\",\r\n \"2018-01-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-01-01-preview\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-09-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-06-01\",\r\n \"2019-01-01\",\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2016-12-01\",\r\n \"2016-04-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-06-01\",\r\n \"2019-01-01\",\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-06-01-preview\",\r\n \"2016-12-01\",\r\n \"2016-04-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity, SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"elevateAccess\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateLinkResources\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/EventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"authorizations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-31\",\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-31\",\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-31\",\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origingroups\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/customdomains\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-31\",\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults/origingroupresults\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-31\",\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-31\",\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-31\",\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults/originresults\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-31\",\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults/customdomainresults\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-31\",\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-31\",\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkResourceUsage\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-31\",\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateProbe\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-31\",\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-31\",\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"edgenodes\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-31\",\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CdnWebApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"CdnWebApplicationFirewallManagedRuleSets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/virtualNetworkPeerings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/remoteVirtualNetworkPeeringProxies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01-beta\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCrossConnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCrossConnections/peerings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2018-06-01\",\r\n \"2017-11-15\",\r\n \"2017-11-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domainNames/internalLoadBalancers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Germany West Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2018-06-01\",\r\n \"2017-11-15\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/serviceCertificates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"moveSubscriptionResources\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateSubscriptionMoveAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationStatuses\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystems\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystemFamilies\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/diagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vmImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/vmImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"osImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"osPlatformImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01-beta\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ClassicInfrastructureMigrate\",\r\n \"namespace\": \"Microsoft.ClassicInfrastructureMigrate\",\r\n \"authorization\": {\r\n \"applicationId\": \"5e5abe2b-83cd-4786-826a-a05653ebb103\",\r\n \"roleDefinitionId\": \"766c4d9b-ef83-4f73-8352-1450a506a69b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicInfrastructureResources\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.CognitiveServices\",\r\n \"namespace\": \"Microsoft.CognitiveServices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"7d312290-28c8-473c-a0ed-8e53749b6d6d\",\r\n \"roleDefinitionId\": \"5cb87f79-a7c3-4a95-9414-45b65974b51b\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkSkuAvailability\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-18\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Commerce\",\r\n \"namespace\": \"Microsoft.Commerce\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"UsageAggregates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2015-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RateCard\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-31-preview\",\r\n \"2015-06-01-preview\",\r\n \"2015-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2015-03-31\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.DBforMySQL\",\r\n \"namespace\": \"Microsoft.DBforMySQL\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n {\r\n \"applicationId\": \"123cd850-d9df-40bd-94d5-c9f07b7fa203\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UAE North\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendedActionSessionsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendedActionSessionsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/topQueryStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/queryTexts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/waitStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateLinkResources\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateEndpointConnections\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/keys\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ContainerInstance\",\r\n \"namespace\": \"Microsoft.ContainerInstance\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6bb8e274-af5d-4df2-98a3-4fd78b4cafd9\",\r\n \"roleDefinitionId\": \"3c60422b-a83a-428d-9830-22609c77aa6c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"containerGroups\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"serviceAssociationLinks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/cachedImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs/environments\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Switzerland North\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-15-preview\",\r\n \"2018-09-15\",\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"schedules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Switzerland North\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-15-preview\",\r\n \"2018-09-15\",\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"labs/virtualMachines\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Switzerland North\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-15-preview\",\r\n \"2018-09-15\",\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"labs/serviceRunners\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Switzerland North\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-15-preview\",\r\n \"2018-09-15\",\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-15-preview\",\r\n \"2018-09-15\",\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-15-preview\",\r\n \"2018-09-15\",\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Switzerland North\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-15-preview\",\r\n \"2018-09-15\",\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0947a342-ab4a-43be-93b3-b8243fc161e5\",\r\n \"roleDefinitionId\": \"f0a6aa2a-e9d8-4bae-bcc2-36b405e8a5da\"\r\n },\r\n {\r\n \"applicationId\": \"5d13f7d7-0567-429c-9880-320e9555e5fc\",\r\n \"roleDefinitionId\": \"956a8f20-9168-4c71-8e27-3c0460ac39a4\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"factories\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Africa North\",\r\n \"Australia Southeast\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"factories/integrationRuntimes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Africa North\",\r\n \"Australia Southeast\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/configureFactoryRepo\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Africa North\",\r\n \"Australia Southeast\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/getFeatureValue\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Africa North\",\r\n \"Australia Southeast\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/eventGridFilters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Devices\",\r\n \"namespace\": \"Microsoft.Devices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0cd79364-7a90-4354-9984-6e36c841418d\",\r\n \"roleDefinitionId\": \"C121DF10-FE58-4BC4-97F9-8296879F7BBB\"\r\n },\r\n {\r\n \"applicationId\": \"29f411f1-b2cf-4043-8ac8-2185d7316811\"\r\n },\r\n {\r\n \"applicationId\": \"89d10474-74af-4874-99a7-c23c2f643083\",\r\n \"roleDefinitionId\": \"7df22794-26e3-4f94-9d50-a4f0f6e1cb41\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-11-04\",\r\n \"2019-09-01\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22-preview\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-09-25-preview\",\r\n \"2017-08-21-preview\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/eventGridFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-31\",\r\n \"2018-01-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-12-01-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"57c0fc58-a83a-41d0-8ae9-08952659bdfd\",\r\n \"roleDefinitionId\": \"FFFD5CF5-FFD3-4B24-B0E2-0715ADD4C282\"\r\n },\r\n {\r\n \"applicationId\": \"36e2398c-9dd3-4f29-9a72-d9f2cfc47ad9\",\r\n \"roleDefinitionId\": \"D5A795DE-916D-4818-B015-33C9E103E39B\"\r\n },\r\n {\r\n \"applicationId\": \"a232010e-820c-4083-83bb-3ace5fc29d0b\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2019-12-12\",\r\n \"2019-08-01-preview\",\r\n \"2019-08-01\",\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2019-12-12\",\r\n \"2019-08-01-preview\",\r\n \"2019-08-01\",\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2019-12-12\",\r\n \"2019-08-01-preview\",\r\n \"2019-08-01\",\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2019-12-12\",\r\n \"2019-08-01-preview\",\r\n \"2019-08-01\",\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2019-12-12\",\r\n \"2019-08-01-preview\",\r\n \"2019-08-01\",\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2019-12-12\",\r\n \"2019-08-01-preview\",\r\n \"2019-08-01\",\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2019-12-12\",\r\n \"2019-08-01-preview\",\r\n \"2019-08-01\",\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2019-12-12\",\r\n \"2019-08-01-preview\",\r\n \"2019-08-01\",\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventGrid\",\r\n \"namespace\": \"Microsoft.EventGrid\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"4962773b-9cdb-44cf-a8bf-237846a00ab7\",\r\n \"roleDefinitionId\": \"7FE036D8-246F-48BF-A78F-AB3EE699C8F3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/eventSubscriptions\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventSubscriptions\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"topics\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2018-09-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"domains/topics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2018-09-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topicTypes\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/topicTypes\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"extensionTopics\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationsStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"systemTopics\",\r\n \"locations\": [\r\n \"global\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"systemTopics/eventSubscriptions\",\r\n \"locations\": [\r\n \"global\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"partnerNamespaces\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"partnerTopics\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"partnerTopics/eventSubscriptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"partnerNamespaces/eventChannels\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"partnerRegistrations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\",\r\n \"roleDefinitionId\": \"eb8e1991-5de0-42a6-a64b-29b059341b7b\"\r\n },\r\n {\r\n \"applicationId\": \"6201d19e-14fb-4472-a2d6-5634a5c97568\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/networkrulesets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableClusterRegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9191c4da-09fe-49d9-a5f1-d41cbe92ad95\",\r\n \"roleDefinitionId\": \"d102a6f3-d9cb-4633-8950-1243b975886c\",\r\n \"managedByRoleDefinitionId\": \"346da55d-e1db-4a5a-89db-33ab3cdb6fc6\"\r\n },\r\n {\r\n \"applicationId\": \"7865c1d2-f040-46cc-875f-831a1ef6a28a\",\r\n \"roleDefinitionId\": \"e27c0895-d168-46d5-8b65-870eb2350378\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"South Africa North\",\r\n \"Germany West Central\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"South Africa North\",\r\n \"Germany West Central\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"South Africa North\",\r\n \"Germany West Central\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"South Africa North\",\r\n \"Germany West Central\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"South Africa North\",\r\n \"Germany West Central\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/billingSpecs\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"South Africa North\",\r\n \"Germany West Central\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"South Africa North\",\r\n \"Germany West Central\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureasyncoperations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"South Africa North\",\r\n \"Germany West Central\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateCreateRequest\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"South Africa North\",\r\n \"Germany West Central\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2018-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2018-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2018-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2018-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"integrationAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2018-07-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"integrationServiceEnvironments\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-05-01\",\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"integrationServiceEnvironments/managedApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-05-01\",\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"isolatedEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.IoTCentral\",\r\n \"namespace\": \"Microsoft.IoTCentral\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9edfcdd9-0bc5-4bd4-b287-c3afc716aac7\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"IoTApps\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Central US\",\r\n \"West Central US\",\r\n \"Australia\",\r\n \"Asia Pacific\",\r\n \"Europe\",\r\n \"Japan\",\r\n \"UK\",\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkSubdomainAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appTemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.IoTSpaces\",\r\n \"namespace\": \"Microsoft.IoTSpaces\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0b07f429-9f4b-4714-9392-cc5e8e80c8b0\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"West US 2\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"Graph\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"West US 2\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-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-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cfa8b339-82a2-471a-a3c9-0fc0be7a4093\",\r\n \"roleDefinitionId\": \"1cf9858a-28a2-4228-abba-94e606305b95\"\r\n },\r\n {\r\n \"applicationId\": \"589d5083-6f11-4d30-a62a-a4b316a14abf\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/accessPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/eventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedHSMs\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.MachineLearning\",\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Workspaces\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"webServices\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"commitmentPlans\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ManagedIdentity\",\r\n \"namespace\": \"Microsoft.ManagedIdentity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Identities\",\r\n \"locations\": [\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-30\",\r\n \"2015-08-31-PREVIEW\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"userAssignedIdentities\",\r\n \"locations\": [\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-30\",\r\n \"2015-08-31-PREVIEW\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-30\",\r\n \"2015-08-31-PREVIEW\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Media\",\r\n \"namespace\": \"Microsoft.Media\",\r\n \"authorization\": {\r\n \"applicationId\": \"374b2a64-3b6b-436b-934c-b820eacca870\",\r\n \"roleDefinitionId\": \"aab70789-0cec-44b5-95d7-84b64c9487af\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mediaservices\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Germany West Central\",\r\n \"Germany North\",\r\n \"Switzerland West\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/assets\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Germany West Central\",\r\n \"Germany North\",\r\n \"Switzerland West\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/contentKeyPolicies\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Germany West Central\",\r\n \"Germany North\",\r\n \"Switzerland West\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingLocators\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Germany West Central\",\r\n \"Germany North\",\r\n \"Switzerland West\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingPolicies\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Germany West Central\",\r\n \"Germany North\",\r\n \"Switzerland West\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/eventGridFilters\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Germany West Central\",\r\n \"Germany North\",\r\n \"Switzerland West\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Germany West Central\",\r\n \"Germany North\",\r\n \"Switzerland West\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms/jobs\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Germany West Central\",\r\n \"Germany North\",\r\n \"Switzerland West\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpoints\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Germany West Central\",\r\n \"Germany North\",\r\n \"Switzerland West\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Germany West Central\",\r\n \"Germany North\",\r\n \"Switzerland West\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents/liveOutputs\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Germany West Central\",\r\n \"Germany North\",\r\n \"Switzerland West\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpointOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Germany West Central\",\r\n \"Germany North\",\r\n \"Switzerland West\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEventOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Germany West Central\",\r\n \"Germany North\",\r\n \"Switzerland West\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveOutputOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Germany West Central\",\r\n \"Germany North\",\r\n \"Switzerland West\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/assets/assetFilters\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Germany West Central\",\r\n \"Germany North\",\r\n \"Switzerland West\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/accountFilters\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Germany West Central\",\r\n \"Germany North\",\r\n \"Switzerland West\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2018-02-05\",\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checknameavailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Germany West Central\",\r\n \"Germany North\",\r\n \"Switzerland West\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n {\r\n \"applicationId\": \"e406a681-f3d4-42a8-90b6-c2b029497af1\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Germany West Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Germany West Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Relay\",\r\n \"namespace\": \"Microsoft.Relay\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"91bb937c-29c2-4275-982f-9465f0caf03d\",\r\n \"roleDefinitionId\": \"6ea9e989-a5f4-4187-8d11-c8db3dd04da1\"\r\n },\r\n {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/privateEndpointConnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/hybridconnections\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/hybridconnections/authorizationrules\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/wcfrelays\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/wcfrelays/authorizationrules\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-13\",\r\n \"2019-10-01-Preview\",\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-13\",\r\n \"2019-10-01-Preview\",\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-13\",\r\n \"2019-10-01-Preview\",\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-13\",\r\n \"2019-10-01-Preview\",\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Portal\",\r\n \"namespace\": \"Microsoft.Portal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dashboards\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2018-10-01-preview\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\",\r\n \"2018-10-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"consoles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\",\r\n \"2018-10-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/consoles\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central India\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\",\r\n \"2018-10-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"userSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\",\r\n \"2018-10-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central India\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\",\r\n \"2018-10-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Security\",\r\n \"namespace\": \"Microsoft.Security\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8edd93e1-2103-40b4-bd70-6e34e586362d\",\r\n \"roleDefinitionId\": \"855AF4C4-82F6-414C-B1A2-628025628B9A\"\r\n },\r\n {\r\n \"applicationId\": \"fc780465-2017-40d4-a0c5-307022471b92\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatuses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tasks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"regulatoryComplianceStandards\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"regulatoryComplianceStandards/regulatoryComplianceControls\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"regulatoryComplianceStandards/regulatoryComplianceControls/regulatoryComplianceAssessments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoDismissAlertsRules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataCollectionAgents\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"pricings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"AutoProvisioningSettings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Compliances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"securityContacts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaceSettings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"complianceResults\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"policies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"assessments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"assessmentMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"subAssessments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securitySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securitySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"discoveredSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/discoveredSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"allowedConnections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allowedConnections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topologies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/topologies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securitySolutionsReferenceData\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securitySolutionsReferenceData\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatusesSummaries\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/alerts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tasks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"externalSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/externalSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"InformationProtectionPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"advancedThreatProtectionSettings\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"deviceSecurityGroups\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"West Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"iotSecuritySolutions\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"West Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"iotSecuritySolutions/analyticsModels\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"iotSecuritySolutions/analyticsModels/aggregatedAlerts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"iotSecuritySolutions/analyticsModels/aggregatedRecommendations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"settings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverVulnerabilityAssessments\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2015-06-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"adaptiveNetworkHardenings\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2015-06-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"automations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"France Central\",\r\n \"France South\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"80a10ef9-8168-493d-abf9-3297c4ef6e3c\",\r\n \"roleDefinitionId\": \"2b7763f7-bbe2-4e19-befe-28c79f1cf7f7\"\r\n },\r\n {\r\n \"applicationId\": \"eb070ea5-bd17-41f1-ad68-5851f6e71774\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/networkrulesets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/queues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/queues/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/subscriptions/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"premiumMessagingRegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventgridfilters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ServiceFabric\",\r\n \"namespace\": \"Microsoft.ServiceFabric\",\r\n \"authorization\": {\r\n \"applicationId\": \"74cb6831-0dbb-4be1-8206-fd4df301cdc2\",\r\n \"roleDefinitionId\": \"e55cc65f-6903-4917-b4ef-f8d4640b57f5\",\r\n \"managedByRoleDefinitionId\": \"9e3af657-a8ff-583c-a75c-2fe7c4bcb635\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-privatepreview\",\r\n \"2019-11-01-preview\",\r\n \"2019-06-01-preview\",\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-privatepreview\",\r\n \"2019-11-01-preview\",\r\n \"2019-06-01-preview\",\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01-privatepreview\",\r\n \"2020-02-01-preview\",\r\n \"2019-11-01-privatepreview\",\r\n \"2019-11-01-preview\",\r\n \"2019-06-01-preview\",\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/clusterVersions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-01-privatepreview\",\r\n \"2020-02-01-preview\",\r\n \"2019-11-01-privatepreview\",\r\n \"2019-11-01-preview\",\r\n \"2019-06-01-preview\",\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/environments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-01-privatepreview\",\r\n \"2020-02-01-preview\",\r\n \"2019-11-01-privatepreview\",\r\n \"2019-11-01-preview\",\r\n \"2019-06-01-preview\",\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-01-privatepreview\",\r\n \"2020-02-01-preview\",\r\n \"2019-11-01-privatepreview\",\r\n \"2019-11-01-preview\",\r\n \"2019-06-01-preview\",\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-01-privatepreview\",\r\n \"2020-02-01-preview\",\r\n \"2019-11-01-privatepreview\",\r\n \"2019-11-01-preview\",\r\n \"2019-06-01-preview\",\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01-privatepreview\",\r\n \"2020-02-01-preview\",\r\n \"2019-11-01-privatepreview\",\r\n \"2019-11-01-preview\",\r\n \"2019-06-01-preview\",\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2018-11-01\",\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2018-11-01\",\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2018-11-01\",\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2018-11-01\",\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.TimeSeriesInsights\",\r\n \"namespace\": \"Microsoft.TimeSeriesInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"120d688d-1518-4cf7-bd38-182f158850b6\",\r\n \"roleDefinitionId\": \"5a43abdf-bb87-42c4-9e56-1c24bf364150\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"South Central Us\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-15-preview\",\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/eventsources\",\r\n \"locations\": [\r\n \"South Central Us\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-15-preview\",\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/referenceDataSets\",\r\n \"locations\": [\r\n \"South Central Us\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-15-preview\",\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/accessPolicies\",\r\n \"locations\": [\r\n \"South Central Us\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-15-preview\",\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central Us\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2 EUAP\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"West Central US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-02-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"account/extension\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.PolicyInsights\",\r\n \"namespace\": \"Microsoft.PolicyInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"1d78a85d-813d-46f0-b496-dd72f50a3ec0\",\r\n \"roleDefinitionId\": \"63d2b225-4c34-4641-8768-21a1f7c68ce8\"\r\n },\r\n {\r\n \"applicationId\": \"8cae6e77-e04e-42ce-b5cb-50d82bce26b1\",\r\n \"roleDefinitionId\": \"4a2d3d6b-a6ea-45e2-9882-c9ba3e726ed7\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyEvents\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"policyStates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"asyncOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"remediations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"policyTrackedResources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Kusto\",\r\n \"namespace\": \"Microsoft.Kusto\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2746ea77-4702-4b45-80ca-3c97e680e8b7\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-15\",\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/databases\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-15\",\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/attacheddatabaseconfigurations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-15\",\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/principalassignments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-15\",\r\n \"2019-11-09\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/databases/eventhubconnections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-15\",\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/databases/dataconnections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-15\",\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/databases/principalassignments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-15\",\r\n \"2019-11-09\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-15\",\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-15\",\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-15\",\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-15\",\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"authorization\": {\r\n \"applicationId\": \"ea2f600a-4980-45b7-89bf-d34da487bda1\",\r\n \"roleDefinitionId\": \"54d7f2e3-5040-48a7-ae90-eebf629cfa0b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domains/domainOwnershipIdentifiers\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/84codes.CloudAMQP\",\r\n \"namespace\": \"84codes.CloudAMQP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Conexlink.MyCloudIT\",\r\n \"namespace\": \"Conexlink.MyCloudIT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/LiveArena.Broadcast\",\r\n \"namespace\": \"LiveArena.Broadcast\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Mailjet.Email\",\r\n \"namespace\": \"Mailjet.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-10-01\",\r\n \"2017-05-29\",\r\n \"2017-02-03\",\r\n \"2016-11-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\",\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\",\r\n \"2016-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.AAD\",\r\n \"namespace\": \"Microsoft.AAD\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"443155a6-77f3-45e3-882b-22b3a8d431fb\",\r\n \"roleDefinitionId\": \"7389DE79-3180-4F07-B2BA-C5BA1F01B03A\"\r\n },\r\n {\r\n \"applicationId\": \"abba844e-bc0e-44b0-947a-dc74e5d09022\",\r\n \"roleDefinitionId\": \"63BC473E-7767-42A5-A3BF-08EB71200E04\"\r\n },\r\n {\r\n \"applicationId\": \"d87dcbc6-a371-462e-88e3-28ad15ec4e64\",\r\n \"roleDefinitionId\": \"861776c5-e0df-4f95-be4f-ac1eec193323\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DomainServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"DomainServices/oucontainer\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/microsoft.aadiam\",\r\n \"namespace\": \"microsoft.aadiam\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"1b912ec3-a9dd-4c4d-a53e-76aa7adb28d7\",\r\n \"roleDefinitionId\": \"c4cfa0e8-3cb5-4ced-9c3c-efaad3348120\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"privateLinkForAzureAD\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Addons\",\r\n \"namespace\": \"Microsoft.Addons\",\r\n \"authorization\": {\r\n \"applicationId\": \"24d3987b-be4a-48e0-a3e7-11c186f39e41\",\r\n \"roleDefinitionId\": \"8004BAAB-A4CB-4981-8571-F7E44D039D93\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"supportProviders\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"addsservices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"aadsupportcases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servicehealthmetrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"anonymousapiusers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.AnalysisServices\",\r\n \"namespace\": \"Microsoft.AnalysisServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"4ac7d521-0382-477b-b0f8-7e1d95f85ca2\",\r\n \"roleDefinitionId\": \"490d5987-bcf6-4be6-b6b2-056a78cb693a\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.AppPlatform\",\r\n \"namespace\": \"Microsoft.AppPlatform\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"03b39d0f-4213-4864-a245-b1476ec03169\"\r\n },\r\n {\r\n \"applicationId\": \"b61cc489-e138-4a69-8bf3-c2c5855c8784\",\r\n \"roleDefinitionId\": \"462ddd96-910a-44f5-adfa-644d99942778\"\r\n },\r\n {\r\n \"applicationId\": \"e8de9221-a19c-4c81-b814-fd37c6caf9d2\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Spring\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"Spring/apps\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"Spring/apps/deployments\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatus\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Attestation\",\r\n \"namespace\": \"Microsoft.Attestation\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c61423b7-1d1f-430d-b444-0eee53298103\",\r\n \"roleDefinitionId\": \"7299b0b1-11da-4858-8943-7db197005959\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"attestationProviders\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-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 \"2018-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.AutonomousSystems\",\r\n \"namespace\": \"Microsoft.AutonomousSystems\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a967240f-810b-4f79-85e5-25870cc69cbb\",\r\n \"roleDefinitionId\": \"47b23f55-5e18-4fc7-a69a-f9b79a9811ea\",\r\n \"managedByRoleDefinitionId\": \"6ee14824-e3a8-4536-ad65-346e3406f3c4\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/validateCreateRequest\",\r\n \"locations\": [\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/operationresults\",\r\n \"locations\": [\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.AVS\",\r\n \"namespace\": \"Microsoft.AVS\",\r\n \"authorizations\": [\r\n {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"VMCP\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkTrialAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkQuotaAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateClouds\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-09-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateClouds/clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-09-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.AzureActiveDirectory\",\r\n \"namespace\": \"Microsoft.AzureActiveDirectory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"b2cDirectories\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-privatepreview\",\r\n \"2017-01-30\",\r\n \"2016-12-13-preview\",\r\n \"2016-02-10-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-privatepreview\",\r\n \"2017-01-30\",\r\n \"2016-12-13-preview\",\r\n \"2016-02-10-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"b2ctenants\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-02-10-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.AzureData\",\r\n \"namespace\": \"Microsoft.AzureData\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"bb55177b-a7d9-4939-a257-8ab53a3b2bc6\"\r\n },\r\n {\r\n \"applicationId\": \"a12e8ccb-0fcd-46f8-b6a1-b9df7a9d7231\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sqlServerRegistrations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-10-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-10-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sqlServerRegistrations/sqlServers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-10-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataControllers\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-24-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"postgresInstances\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-24-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"sqlManagedInstances\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-24-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"sqlServerInstances\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-24-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.AzureStack\",\r\n \"namespace\": \"Microsoft.AzureStack\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registrations/products\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrations/customerSubscriptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudManifestFiles\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.AzureStackHCI\",\r\n \"namespace\": \"Microsoft.AzureStackHCI\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"1412d89f-b8a8-4111-b4fd-e82905cbd85d\",\r\n \"roleDefinitionId\": \"90ffa33f-4875-44d8-b86f-d41c3aa6050e\"\r\n },\r\n {\r\n \"applicationId\": \"1322e676-dee7-41ee-a874-ac923822781c\",\r\n \"roleDefinitionId\": \"e91a9804-9f4d-4501-bf85-03bd4ea78451\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.BatchAI\",\r\n \"namespace\": \"Microsoft.BatchAI\",\r\n \"authorization\": {\r\n \"applicationId\": \"9fcb3732-5f52-4135-8c08-9d4bbaf203ea\",\r\n \"roleDefinitionId\": \"703B89C7-CE2C-431B-BDD8-FA34E39AF696\",\r\n \"managedByRoleDefinitionId\": \"90B8E153-EBFF-4073-A95F-4DAD56B14C78\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/clusters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/fileservers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments/jobs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"fileservers\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Billing\",\r\n \"namespace\": \"Microsoft.Billing\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"80dbdb39-4f33-4799-8b6f-711b5e3e61b6\",\r\n \"roleDefinitionId\": \"acdc79db-513f-461d-a542-61908d543bdc\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"billingPeriods\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"invoices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingRoleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"billingRoleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"createBillingRoleAssignment\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/createBillingRoleAssignment\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/createBillingRoleAssignment\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/createBillingRoleAssignment\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingPermissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingRoleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingRoleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingPermissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\",\r\n \"2018-06-30\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/billingRoleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/billingRoleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/billingPermissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/customers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/instructions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers/billingSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers/products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers/transactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/billingRoleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/billingRoleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/billingPermissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers/billingPermissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/elevate\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/createInvoiceSectionOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/patchOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/patchOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/productMoveOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/billingSubscriptionMoveOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/listInvoiceSectionsWithCreateSubscriptionPermission\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/BillingProfiles/patchOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-06-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/enrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-06-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/paymentMethods\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/availableBalance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/transactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/transactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/transactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/transactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoices/transactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingSubscriptions/invoices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/billingSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/billingSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/billingSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/products/updateAutoRenew\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/products/updateAutoRenew\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\",\r\n \"2018-06-30\",\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/initiateTransfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/initiateTransfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/transfers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/transfers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"transfers/acceptTransfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"transfers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"transfers/declineTransfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"transfers/validateTransfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers/initiateTransfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers/transfers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingProperty\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/policies\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers/policies\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoices/pricesheet\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/pricesheet\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/pricesheetDownloadOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/billingSubscriptions/transfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/products/transfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/products/transfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/productTransfersResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"transfers/operationStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/agreements\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/lineOfCredit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/paymentMethods\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateAddress\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Blockchain\",\r\n \"namespace\": \"Microsoft.Blockchain\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"78827f38-7b69-4d5e-a627-d6fdd9c759a0\",\r\n \"roleDefinitionId\": \"9c68eaf3-8315-4e5c-b857-641b16b21f8f\"\r\n },\r\n {\r\n \"applicationId\": \"049d4938-2ef2-4274-aa8f-630fc9bc33d1\",\r\n \"roleDefinitionId\": \"c6dd0893-0495-488a-ac21-ee5f1ba89769\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"watchers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"blockchainMembers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Japan East\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/watcherOperationResults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/blockchainMemberOperationResults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Japan East\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Japan East\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/listConsortiums\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Japan East\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cordaMembers\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.BlockchainTokens\",\r\n \"namespace\": \"Microsoft.BlockchainTokens\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Blueprint\",\r\n \"namespace\": \"Microsoft.Blueprint\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"f71766dc-90d9-4b7d-bd9d-4499c4331c3f\",\r\n \"roleDefinitionId\": \"cb180127-cf6d-4672-9e75-e29a487f9658\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"blueprints\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\",\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"blueprints/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\",\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\",\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\",\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\",\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity, SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments/assignmentOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\",\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.BotService\",\r\n \"namespace\": \"Microsoft.BotService\",\r\n \"authorization\": {\r\n \"applicationId\": \"f3723d34-6ff5-4ceb-a148-d99dcd2511fc\",\r\n \"roleDefinitionId\": \"71213c26-43ed-41d8-9905-3c12971517a3\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"botServices\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"botServices/channels\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"botServices/connections\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAuthServiceProviders\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Capacity\",\r\n \"namespace\": \"Microsoft.Capacity\",\r\n \"authorization\": {\r\n \"applicationId\": \"4d0ad6c7-f6c3-46d8-ab0d-1406d5e6c86b\",\r\n \"roleDefinitionId\": \"FD9C0A9A-4DB9-4F41-8A61-98385DEB6E2D\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-06-01\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listbenefits\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations/revisions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appliedReservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatePrice\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculateExchange\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"exchange\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/calculateRefund\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/return\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/split\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/merge\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/swap\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateReservationOrder\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/availableScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations/availableScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"commercialReservationOrders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatePurchasePrice\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01-privatepreview\",\r\n \"2019-06-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"placePurchaseOrder\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01-privatepreview\",\r\n \"2019-06-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkPurchaseStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01-privatepreview\",\r\n \"2019-06-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.CertificateRegistration\",\r\n \"namespace\": \"Microsoft.CertificateRegistration\",\r\n \"authorization\": {\r\n \"applicationId\": \"f3c21649-0979-4721-ac85-b0216b2cf413\",\r\n \"roleDefinitionId\": \"933fba7e-2ed3-4da8-973d-8bd8298a9b40\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"certificateOrders\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"certificateOrders/certificates\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateCertificateRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ChangeAnalysis\",\r\n \"namespace\": \"Microsoft.ChangeAnalysis\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2cfc91a4-7baa-4a8f-a6c9-5f3d279060b8\",\r\n \"roleDefinitionId\": \"f5a6bd90-af71-455c-9030-c486e8c42c95\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\",\r\n \"2019-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ClassicSubscription\",\r\n \"namespace\": \"Microsoft.ClassicSubscription\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Consumption\",\r\n \"namespace\": \"Microsoft.Consumption\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c5b17a4f-cc6f-4649-9480-684280a2af3a\",\r\n \"roleDefinitionId\": \"4a2e6ae9-2713-4cc9-a3b3-312899d687c3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Forecasts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"AggregatedCost\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"ReservationRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"ReservationRecommendationDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"ReservationSummaries\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"ReservationTransactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Balances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Marketplaces\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Pricesheets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"ReservationDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Budgets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\",\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-12-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"CostTags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-12-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-08-01-preview\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Terms\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"UsageDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-05-01\",\r\n \"2019-04-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-12-01-preview\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\",\r\n \"2017-04-24-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Charges\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"credits\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"events\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"lots\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"OperationStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-05-01\",\r\n \"2019-04-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"OperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-05-01\",\r\n \"2019-04-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.CostManagement\",\r\n \"namespace\": \"Microsoft.CostManagement\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"3184af01-7a88-49e0-8b55-8ecdce0aa950\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Connectors\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"CloudConnectors\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalBillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalBillingAccounts/Dimensions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalBillingAccounts/Query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalSubscriptions/Dimensions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalSubscriptions/Query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Forecast\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\",\r\n \"2018-12-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"ExternalSubscriptions/Forecast\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\",\r\n \"2018-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalBillingAccounts/Forecast\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\",\r\n \"2018-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Settings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-08-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"register\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-12-01-preview\",\r\n \"2018-10-01-preview\",\r\n \"2018-08-31\",\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Dimensions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-12-01-preview\",\r\n \"2018-10-01-preview\",\r\n \"2018-08-31\",\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Budgets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"ExternalSubscriptions/Alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalBillingAccounts/Alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"showbackRules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\",\r\n \"2019-02-03-alpha\",\r\n \"2019-02-02-alpha\",\r\n \"2019-02-01-alpha\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Exports\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-09-01\",\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Reports\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-12-01-preview\",\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Reportconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"EnrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Views\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.CostManagementExports\",\r\n \"namespace\": \"Microsoft.CostManagementExports\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e5408ad0-c4e2-43aa-b6f2-3b4951286d99\",\r\n \"roleDefinitionId\": \"5e4888b3-2747-4e5b-9897-ec0865b91bcf\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.CustomerLockbox\",\r\n \"namespace\": \"Microsoft.CustomerLockbox\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a0551534-cfc9-4e1f-9a7a-65093b32bb38\"\r\n },\r\n {\r\n \"applicationId\": \"01fc33a7-78ba-4d2f-a4b7-768e336e890e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"requests\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.CustomProviders\",\r\n \"namespace\": \"Microsoft.CustomProviders\",\r\n \"authorization\": {\r\n \"applicationId\": \"bf8eb16c-7ba7-4b47-86be-ac5e4b2007a5\",\r\n \"roleDefinitionId\": \"FACF09C9-A5D0-4D34-8B1F-B623AC29C6F7\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceProviders\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"associations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatuses\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.DataBox\",\r\n \"namespace\": \"Microsoft.DataBox\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"5613cb5c-a7c9-4099-8034-511fd7616cb2\",\r\n \"roleDefinitionId\": \"382D72D1-63DC-4243-9B99-CB69FDD473D8\",\r\n \"managedByRoleDefinitionId\": \"f4c0a4f9-768c-4927-ab83-d319111d6ef4\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateAddress\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableSkus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateInputs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/regionConfiguration\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.DataBoxEdge\",\r\n \"namespace\": \"Microsoft.DataBoxEdge\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2368d027-f996-4edb-bf48-928f98f2ab8c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01-preview\",\r\n \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01-preview\",\r\n \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01-preview\",\r\n \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableSkus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"authorization\": {\r\n \"applicationId\": \"213f5f78-fb30-46c7-9e98-91c720a1c026\",\r\n \"roleDefinitionId\": \"D55E2225-A6AB-481C-A5BE-1B7687C293FA\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01-preview\",\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01-preview\",\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.DataMigration\",\r\n \"namespace\": \"Microsoft.DataMigration\",\r\n \"authorization\": {\r\n \"applicationId\": \"a4bad4aa-bf02-4631-9f78-a64ffdba8150\",\r\n \"roleDefinitionId\": \"b831a21d-db98-4760-89cb-bef871952df1\",\r\n \"managedByRoleDefinitionId\": \"6256fb55-9e59-4018-a9e1-76b11c0a4c89\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"services/projects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatuses\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.DataProtection\",\r\n \"namespace\": \"Microsoft.DataProtection\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BackupVaults\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-alpha\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatus\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.DataShare\",\r\n \"namespace\": \"Microsoft.DataShare\",\r\n \"authorization\": {\r\n \"applicationId\": \"799f1985-1517-4fe1-af2b-ba3d87d4996b\",\r\n \"roleDefinitionId\": \"0146496b-e06f-439a-83be-49fac884edf5\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/shares\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/shares/datasets\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/shares/synchronizationSettings\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/shares/invitations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/sharesubscriptions\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/shares/providersharesubscriptions\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/sharesubscriptions/datasetmappings\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/sharesubscriptions/triggers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/sharesubscriptions/consumerSourceDataSets\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listinvitations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/rejectInvitation\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/consumerInvitations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2018-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.DBforMariaDB\",\r\n \"namespace\": \"Microsoft.DBforMariaDB\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n {\r\n \"applicationId\": \"123cd850-d9df-40bd-94d5-c9f07b7fa203\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendedActionSessionsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendedActionSessionsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/topQueryStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/queryTexts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/waitStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateLinkResources\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateEndpointConnections\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/keys\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.DBforPostgreSQL\",\r\n \"namespace\": \"Microsoft.DBforPostgreSQL\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n {\r\n \"applicationId\": \"93efed00-6552-4119-833a-422b297199f9\",\r\n \"roleDefinitionId\": \"a864a0a2-ab66-47a6-97a8-223dc1379f87\"\r\n },\r\n {\r\n \"applicationId\": \"123cd850-d9df-40bd-94d5-c9f07b7fa203\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"serversv2\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-29-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverGroups\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-29-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"singleServers\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-14-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendedActionSessionsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendedActionSessionsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/topQueryStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/queryTexts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/waitStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateLinkResources\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateEndpointConnections\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/keys\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.DeploymentManager\",\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"5b306cba-9c71-49db-96c3-d17ca2379c4d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"artifactSources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serviceTopologies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serviceTopologies/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serviceTopologies/services/serviceUnits\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"steps\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.DesktopVirtualization\",\r\n \"namespace\": \"Microsoft.DesktopVirtualization\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"50e95039-b200-4007-bc97-8d5790743a63\",\r\n \"roleDefinitionId\": \"CAD30215-AD1C-43BF-BE90-7BFA8B493E62\"\r\n },\r\n {\r\n \"applicationId\": \"9cdead84-a844-4324-93f2-b2e6bb768d07\"\r\n },\r\n {\r\n \"applicationId\": \"a85cf173-4192-42f8-81fa-777a763e6e2c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-10-preview\",\r\n \"2019-09-24-preview\",\r\n \"2019-01-23-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationgroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-10-preview\",\r\n \"2019-09-24-preview\",\r\n \"2019-01-23-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationgroups/applications\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-10-preview\",\r\n \"2019-09-24-preview\",\r\n \"2019-01-23-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationgroups/desktops\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-10-preview\",\r\n \"2019-09-24-preview\",\r\n \"2019-01-23-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationgroups/startmenuitems\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-10-preview\",\r\n \"2019-09-24-preview\",\r\n \"2019-01-23-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostpools\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-10-preview\",\r\n \"2019-09-24-preview\",\r\n \"2019-01-23-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hostpools/sessionhosts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-10-preview\",\r\n \"2019-09-24-preview\",\r\n \"2019-01-23-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostpools/sessionhosts/usersessions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-10-preview\",\r\n \"2019-09-24-preview\",\r\n \"2019-01-23-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostpools/usersessions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-10-preview\",\r\n \"2019-09-24-preview\",\r\n \"2019-01-23-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-10-preview\",\r\n \"2019-09-24-preview\",\r\n \"2019-01-23-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.DevOps\",\r\n \"namespace\": \"Microsoft.DevOps\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"pipelines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.DevSpaces\",\r\n \"namespace\": \"Microsoft.DevSpaces\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"controllers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia SouthEast\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"controllers/listConnectionDetails\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia SouthEast\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia SouthEast\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia SouthEast\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia SouthEast\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkContainerHostMapping\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia SouthEast\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.DigitalTwins\",\r\n \"namespace\": \"Microsoft.DigitalTwins\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0b07f429-9f4b-4714-9392-cc5e8e80c8b0\"\r\n },\r\n {\r\n \"applicationId\": \"c115998b-3d59-49b4-b55b-042a9ba1dbfe\",\r\n \"roleDefinitionId\": \"07af60d1-cd6d-4ad4-9b56-ece6c78a3fe1\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"digitalTwinsInstances/operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EnterpriseKnowledgeGraph\",\r\n \"namespace\": \"Microsoft.EnterpriseKnowledgeGraph\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-03\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-03\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-03\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-03\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Experimentation\",\r\n \"namespace\": \"Microsoft.Experimentation\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e00d2f8a-f6c8-46e4-b379-e66082e28ca8\",\r\n \"roleDefinitionId\": \"d3a360d9-17f9-410e-9465-5c914c8cf570\",\r\n \"managedByRoleDefinitionId\": \"fa096ccd-4e8f-49de-9594-64449b3ac6b3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Falcon\",\r\n \"namespace\": \"Microsoft.Falcon\",\r\n \"authorizations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-20-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"featureProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptionFeatureRegistrations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.GuestConfiguration\",\r\n \"namespace\": \"Microsoft.GuestConfiguration\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e935b4a5-8968-416d-8414-caed51c782a9\",\r\n \"roleDefinitionId\": \"9c6ffa40-421e-4dc0-9739-76b0699a11de\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"guestConfigurationAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-20\",\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"software\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"softwareUpdates\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"softwareUpdateProfile\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-20\",\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configurationProfileAssignments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"autoManagedVmConfigurationProfiles\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"autoManagedAccounts\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.HanaOnAzure\",\r\n \"namespace\": \"Microsoft.HanaOnAzure\",\r\n \"authorization\": {\r\n \"applicationId\": \"cc5476ec-3074-44d1-8461-711f5d9b0e39\",\r\n \"roleDefinitionId\": \"4a10987e-dbcf-4c3d-8e3d-7ddcd9c771c2\",\r\n \"managedByRoleDefinitionId\": \"9e3af657-a8ff-583c-a75c-2fe7c4bcb635\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"hanaInstances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-03-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sapMonitors\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-03-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-03-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-03-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-03-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-03-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.HardwareSecurityModules\",\r\n \"namespace\": \"Microsoft.HardwareSecurityModules\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0eb690b7-d23e-4fb0-b43e-cd161ac80cc3\",\r\n \"roleDefinitionId\": \"48397dc8-3910-486a-8165-ab2df987447f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-31-preview\",\r\n \"2018-10-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-31-preview\",\r\n \"2018-10-31\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.HealthcareApis\",\r\n \"namespace\": \"Microsoft.HealthcareApis\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"4f6778d8-5aef-43dc-a1ff-b073724b9495\"\r\n },\r\n {\r\n \"applicationId\": \"3274406e-4e0a-4852-ba4f-d7226630abb7\",\r\n \"roleDefinitionId\": \"e39edba5-cde8-4529-ba1f-159138220220\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"UK West\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-16\",\r\n \"2018-08-20-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"UK West\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-16\",\r\n \"2018-08-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"UK West\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-16\",\r\n \"2018-08-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"UK West\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-16\",\r\n \"2018-08-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"UK West\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-16\",\r\n \"2018-08-20-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.HybridCompute\",\r\n \"namespace\": \"Microsoft.HybridCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"machines\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-11-preview\",\r\n \"2019-12-12\",\r\n \"2019-08-02-preview\",\r\n \"2019-03-18-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"machines/extensions\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-11-preview\",\r\n \"2019-12-12\",\r\n \"2019-08-02-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-11-preview\",\r\n \"2019-12-12\",\r\n \"2019-08-02-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatus\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-11-preview\",\r\n \"2019-12-12\",\r\n \"2019-08-02-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-11-preview\",\r\n \"2019-12-12\",\r\n \"2019-08-02-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-11-preview\",\r\n \"2019-12-12\",\r\n \"2019-08-02-preview\",\r\n \"2019-03-18-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.HybridData\",\r\n \"namespace\": \"Microsoft.HybridData\",\r\n \"authorization\": {\r\n \"applicationId\": \"621269cf-1195-44a3-a835-c613d103dd15\",\r\n \"roleDefinitionId\": \"00320cd4-8823-47f2-bbe4-5c9da031311d\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataManagers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2016-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.HybridNetwork\",\r\n \"namespace\": \"Microsoft.HybridNetwork\",\r\n \"authorizations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/OperationStatuses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"devices\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vnfs\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vendors/vnfs\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Hydra\",\r\n \"namespace\": \"Microsoft.Hydra\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"37ae09d4-a310-41e1-803d-8e85cec4bf23\",\r\n \"roleDefinitionId\": \"37ae09d4-a310-41e1-803d-8e85cec4bf23\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ImportExport\",\r\n \"namespace\": \"Microsoft.ImportExport\",\r\n \"authorization\": {\r\n \"applicationId\": \"7de4d5c5-5b32-4235-b8a9-33b34d6bcd2a\",\r\n \"roleDefinitionId\": \"9f7aa6bb-9454-46b6-8c01-a4b0f33ca151\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.LabServices\",\r\n \"namespace\": \"Microsoft.LabServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labaccounts\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2018-10-15\",\r\n \"2017-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2018-10-15\",\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2018-10-15\",\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"users\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2019-01-01-beta\",\r\n \"2019-01-01-alpha\",\r\n \"2018-10-15\",\r\n \"2017-12-01-preview\",\r\n \"2017-12-01-beta\",\r\n \"2017-12-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2018-10-15\",\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Maintenance\",\r\n \"namespace\": \"Microsoft.Maintenance\",\r\n \"authorization\": {\r\n \"applicationId\": \"f18474f2-a66a-4bb0-a3c9-9b8d892092fa\",\r\n \"roleDefinitionId\": \"2f1ef7b0-d5c4-4d3c-98fa-6a9fa8e74aa5\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"maintenanceConfigurations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01-preview\",\r\n \"2017-04-26\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"updates\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01-preview\",\r\n \"2017-04-26\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"configurationAssignments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01-preview\",\r\n \"2017-04-26\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"applyUpdates\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01-preview\",\r\n \"2017-04-26\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ManagedServices\",\r\n \"namespace\": \"Microsoft.ManagedServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"66c6d0d1-f2e7-4a18-97a9-ed10f3347016\",\r\n \"roleDefinitionId\": \"1e86f807-6ec0-40b3-8b5f-686b7e43a0a2\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01-preview\",\r\n \"2019-09-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"marketplaceRegistrationDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01-preview\",\r\n \"2019-09-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrationDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01-preview\",\r\n \"2019-09-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01-preview\",\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"registrationAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01-preview\",\r\n \"2019-09-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01-preview\",\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operationStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01-preview\",\r\n \"2019-09-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Management\",\r\n \"namespace\": \"Microsoft.Management\",\r\n \"authorization\": {\r\n \"applicationId\": \"f2c304cf-8e7e-4c3f-8164-16299ad9d272\",\r\n \"roleDefinitionId\": \"c1cf3708-588a-4647-be7f-f400bbe214cf\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managementGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"getEntities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managementGroups/settings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults/asyncOperation\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenantBackfillStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"startTenantBackfill\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Maps\",\r\n \"namespace\": \"Microsoft.Maps\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"608f6f31-fed0-4f7b-809f-90f6c9b3de78\",\r\n \"roleDefinitionId\": \"3431F0E6-63BC-482D-A96E-0AB819610A5F\"\r\n },\r\n {\r\n \"applicationId\": \"ba1ea022-5807-41d5-bbeb-292c7e1cf5f6\",\r\n \"roleDefinitionId\": \"48195074-b752-4868-be0f-7c324a224aa1\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-01-preview\",\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/privateAtlases\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/eventGridFilters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01-preview\",\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01-preview\",\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a0e1e353-1a3e-42cf-a8ea-3a9746eec58c\"\r\n },\r\n {\r\n \"applicationId\": \"a5ce81bb-67c7-4043-952a-22004782adb5\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"register\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privategalleryitems\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs/importImage\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/agreements\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAvailableOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishers/offers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishers/offers/amendments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateStoreClient\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-beta\",\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateStores\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateStores/offers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.MarketplaceApps\",\r\n \"namespace\": \"Microsoft.MarketplaceApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicDevServices\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offertypes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Migrate\",\r\n \"namespace\": \"Microsoft.Migrate\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3bfd6ac-eace-4438-9dc1-eed439e738de\",\r\n \"roleDefinitionId\": \"e88f4159-1d71-4b12-8ef0-38c039cb051e\"\r\n },\r\n {\r\n \"applicationId\": \"51df634f-ddb4-4901-8a2d-52f6393a796b\",\r\n \"roleDefinitionId\": \"d7568dc2-2265-41f7-9c0f-1e9c7862ca62\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"projects\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"migrateprojects\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-06-01\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"assessmentProjects\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2018-06-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/assessmentOptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"moveCollections\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.MixedReality\",\r\n \"namespace\": \"Microsoft.MixedReality\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c7ddd9b4-5172-4e28-bd29-1e0792947d18\",\r\n \"roleDefinitionId\": \"b67ee066-e058-4ddb-92bc-83cdd74bc38a\"\r\n },\r\n {\r\n \"applicationId\": \"a15bc1de-f777-408f-9d2b-a27ed19c72ba\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-06-preview\",\r\n \"2019-12-02-preview\",\r\n \"2019-02-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-06-preview\",\r\n \"2019-12-02-preview\",\r\n \"2019-02-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-06-preview\",\r\n \"2019-12-02-preview\",\r\n \"2019-02-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"spatialAnchorsAccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-12-02-preview\",\r\n \"2019-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"remoteRenderingAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-06-preview\",\r\n \"2019-12-02-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.NetApp\",\r\n \"namespace\": \"Microsoft.NetApp\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"12fb057d-b751-47cd-857c-f2934bb677b4\",\r\n \"roleDefinitionId\": \"e4796bef-6b6d-4cbc-ba1e-27f1a308d860\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UAE Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West US (Stage)\",\r\n \"West US 2 (Stage)\",\r\n \"South Central US (Stage)\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01\",\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2017-08-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01\",\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-08-01\",\r\n \"2019-07-15-preview\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2017-08-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ObjectStore\",\r\n \"namespace\": \"Microsoft.ObjectStore\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"osNamespaces\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.OffAzure\",\r\n \"namespace\": \"Microsoft.OffAzure\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"728a93e3-065d-4678-93b1-3cc281223341\",\r\n \"roleDefinitionId\": \"b9967bf7-a345-4af8-95f0-49916f760fc6\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"VMwareSites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\",\r\n \"2019-06-06\",\r\n \"2019-05-01-preview\",\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"HyperVSites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-06-06\",\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ServerSites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ImportSites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2020-01-01-preview\",\r\n \"2019-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-06-06\",\r\n \"2018-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Peering\",\r\n \"namespace\": \"Microsoft.Peering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"peerings\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"East Asia\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West India\",\r\n \"South India\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"peeringLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"legacyPeerings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"peerAsns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"peeringServices\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"East Asia\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West India\",\r\n \"South India\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"peeringServiceCountries\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"peeringServiceLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"peeringServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceProviderAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.PowerBI\",\r\n \"namespace\": \"Microsoft.PowerBI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaceCollections\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.PowerBIDedicated\",\r\n \"namespace\": \"Microsoft.PowerBIDedicated\",\r\n \"authorization\": {\r\n \"applicationId\": \"4ac7d521-0382-477b-b0f8-7e1d95f85ca2\",\r\n \"roleDefinitionId\": \"490d5987-bcf6-4be6-b6b2-056a78cb693a\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"capacities\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Canada East\",\r\n \"South Africa West\",\r\n \"UK West\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South Africa West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.PowerPlatform\",\r\n \"namespace\": \"Microsoft.PowerPlatform\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ProjectBabylon\",\r\n \"namespace\": \"Microsoft.ProjectBabylon\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"73c2949e-da2d-457a-9607-fcc665198967\",\r\n \"roleDefinitionId\": \"1BC09725-0C9B-4F57-A3D0-FCCF4EB40120\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ProviderHub\",\r\n \"namespace\": \"Microsoft.ProviderHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"providerRegistrations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerRegistrations/resourceTypeRegistrations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"availableAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Quantum\",\r\n \"namespace\": \"Microsoft.Quantum\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a77d91dc-971b-4cf7-90c8-f183194249bc\",\r\n \"roleDefinitionId\": \"915bd376-2da8-411d-9906-895a54086a66\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/OperationStatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Workspaces\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations/offerings\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-04-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.RedHatOpenShift\",\r\n \"namespace\": \"Microsoft.RedHatOpenShift\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"f1dd0a37-89c6-4e07-bcd1-ffd3d43d8875\",\r\n \"roleDefinitionId\": \"640c5ac9-6f32-4891-94f4-d20f7aa9a7e6\",\r\n \"managedByRoleDefinitionId\": \"9e3af657-a8ff-583c-a75c-2fe7c4bcb635\",\r\n \"managedByAuthorization\": {\r\n \"allowManagedByInheritance\": true\r\n }\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-30\",\r\n \"2019-12-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsstatus\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"OpenShiftClusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-30\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-30\",\r\n \"2019-12-31-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ResourceGraph\",\r\n \"namespace\": \"Microsoft.ResourceGraph\",\r\n \"authorization\": {\r\n \"applicationId\": \"509e4652-da8d-478d-a730-e9d4a1996ca4\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourcesHistory\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceChanges\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceChangeDetails\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptionsStatus\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"authorization\": {\r\n \"applicationId\": \"3b990c8b-9607-4c2a-8b04-1d41985facca\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifyResourceJobs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"checkPolicyCompliance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkresourcename\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculateTemplateHash\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourcegroups/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagNames/tagValues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"deploymentScripts/logs\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deploymentScriptOperationResults\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.SecurityInsights\",\r\n \"namespace\": \"Microsoft.SecurityInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"98785600-1bb7-4fb9-b9fa-19afe2c8a360\",\r\n \"roleDefinitionId\": \"ef1c46aa-ae81-4091-ab83-f75f28efb7b8\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertRules\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"alertRuleTemplates\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"cases\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"bookmarks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"dataConnectors\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"dataConnectorsCheckRequirements\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"entities\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"incidents\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"officeConsents\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"settings\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"aggregations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"entityQueries\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"threatIntelligence\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"automationRules\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.SerialConsole\",\r\n \"namespace\": \"Microsoft.SerialConsole\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"consoleServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/consoleServices\",\r\n \"locations\": [\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ServiceFabricMesh\",\r\n \"namespace\": \"Microsoft.ServiceFabricMesh\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d10de03d-5ba3-497a-90e6-7ff8c9736059\",\r\n \"roleDefinitionId\": \"BC13595A-E262-4621-929E-56FF90E6BF18\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"networks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"volumes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"secrets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/applicationOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/networkOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/volumeOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/gatewayOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/secretOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.SignalRService\",\r\n \"namespace\": \"Microsoft.SignalRService\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cdad765c-f191-43ba-b9f5-7aef392f811d\",\r\n \"roleDefinitionId\": \"346b504e-4aec-45d1-be25-a6e10f3cb4fe\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SignalR\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatuses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"SignalR/eventGridFilters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.SoftwarePlan\",\r\n \"namespace\": \"Microsoft.SoftwarePlan\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"hybridUseBenefits\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Solutions\",\r\n \"namespace\": \"Microsoft.Solutions\",\r\n \"authorization\": {\r\n \"applicationId\": \"ba4bc2bd-843f-4d61-9d33-199178eae34e\",\r\n \"roleDefinitionId\": \"6cb99a0b-29a8-49bc-b57b-057acc68cd9a\",\r\n \"managedByRoleDefinitionId\": \"9e3af657-a8ff-583c-a75c-2fe7c4bcb635\",\r\n \"managedByAuthorization\": {\r\n \"managedByResourceRoleDefinitionId\": \"9e3af657-a8ff-583c-a75c-2fe7c4bcb635\"\r\n }\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"applicationDefinitions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"jitRequests\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.SqlVirtualMachine\",\r\n \"namespace\": \"Microsoft.SqlVirtualMachine\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"bd93b475-f9e2-476e-963d-b2daf143ffb9\",\r\n \"roleDefinitionId\": \"f96bd990-ffdf-4c17-8ee3-77454d9c3f5d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SqlVirtualMachineGroups\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"SqlVirtualMachines\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"SqlVirtualMachineGroups/AvailabilityGroupListeners\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/OperationTypes\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/sqlVirtualMachineOperationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/sqlVirtualMachineGroupOperationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/availabilityGroupListenerOperationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/registerSqlVmCandidate\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.StorageSync\",\r\n \"namespace\": \"Microsoft.StorageSync\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9469b9f5-6722-4481-a2b2-14ed560b706f\",\r\n \"roleDefinitionId\": \"4cd49d82-1f4d-43fc-af0c-1c1203668e5a\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageSyncServices\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2019-10-01\",\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2019-10-01\",\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/cloudEndpoints\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2019-10-01\",\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/serverEndpoints\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2019-10-01\",\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/registeredServers\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2019-10-01\",\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/workflows\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2019-10-01\",\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2019-10-01\",\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2019-10-01\",\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2019-10-01\",\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2019-10-01\",\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.StorSimple\",\r\n \"namespace\": \"Microsoft.StorSimple\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"managers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-05-15\",\r\n \"2017-01-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-03-15\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-03-15\",\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Subscription\",\r\n \"namespace\": \"Microsoft.Subscription\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3335adb-5ca0-40dc-b8d3-bedc094e523b\"\r\n },\r\n {\r\n \"applicationId\": \"5da7367f-09c8-493e-8fd4-638089cddec3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SubscriptionDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"SubscriptionOperations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CreateSubscription\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cancel\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"rename\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enable\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"959678cf-d004-4c22-82a6-d2ce549a58b8\",\r\n \"roleDefinitionId\": \"81a3dd11-5123-4ec3-9485-772b0a27d1bd\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2019-05-01-preview\",\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"services/problemclassifications\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2019-05-01-preview\",\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationsstatus\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2019-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Synapse\",\r\n \"namespace\": \"Microsoft.Synapse\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9e09aefc-b2e5-4d19-9f74-3e3e8b11a57b\",\r\n \"roleDefinitionId\": \"a53b114a-452b-4d20-bcd6-c51c3c8c5878\",\r\n \"managedByRoleDefinitionId\": \"ede175bc-31e5-4074-ba98-e62b895797aa\"\r\n },\r\n {\r\n \"applicationId\": \"1ac05c7e-12d2-4605-bf9d-549d7041c6b3\",\r\n \"roleDefinitionId\": \"48e77487-c9fa-4abe-8484-71ebdebdbbc2\"\r\n },\r\n {\r\n \"applicationId\": \"ec52d13d-2e85-410e-a89a-8c79fb6a32ac\",\r\n \"roleDefinitionId\": \"c3a447c3-a63a-4905-a125-c6856f9d0e17\"\r\n },\r\n {\r\n \"applicationId\": \"5ebe1e69-13dd-4953-84fa-a74ed591db2e\",\r\n \"roleDefinitionId\": \"e8ebe3e8-569b-4ad3-bea1-5b274fe0c49f\"\r\n },\r\n {\r\n \"applicationId\": \"2e458d69-0892-4655-b713-4f7b182315dd\",\r\n \"roleDefinitionId\": \"45EA3B16-D4DD-48CA-BF0D-BBE644C0C0AF\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/bigDataPools\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/sqlPools\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/operationStatuses\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/operationResults\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"EAST US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Token\",\r\n \"namespace\": \"Microsoft.Token\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"fe053c5f-3692-4f14-aef2-ee34fc081cae\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"stores\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"Australia Southeast\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"stores/accessPolicies\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"Australia Southeast\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"stores/services\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"Australia Southeast\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"stores/services/tokens\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"Australia Southeast\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.VirtualMachineImages\",\r\n \"namespace\": \"Microsoft.VirtualMachineImages\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cf32a0cc-373c-47c9-9156-0db11f6a6dfc\",\r\n \"roleDefinitionId\": \"0ee55a0b-f45f-4392-92ec-e8bf1b4b5da5\",\r\n \"managedByRoleDefinitionId\": \"9e3af657-a8ff-583c-a75c-2fe7c4bcb635\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"imageTemplates\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-14\",\r\n \"2019-05-01-preview\",\r\n \"2019-02-01-preview\",\r\n \"2018-02-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"imageTemplates/runOutputs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-14\",\r\n \"2019-05-01-preview\",\r\n \"2019-02-01-preview\",\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-14\",\r\n \"2019-05-01-preview\",\r\n \"2019-02-01-preview\",\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-14\",\r\n \"2019-05-01-preview\",\r\n \"2019-02-01-preview\",\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-14\",\r\n \"2019-05-01-preview\",\r\n \"2019-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.VMware\",\r\n \"namespace\": \"Microsoft.VMware\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"ac9dc5fe-b644-4832-9d03-d9f1ab70c5f7\",\r\n \"roleDefinitionId\": \"dd032bd9-65cc-4171-b688-c612566422ae\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-20-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/OperationStatuses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 EUAP\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-20-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-20-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ArcZones\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-20-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"VCenters\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-20-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ResourcePools\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-20-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"VirtualNetworks\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-20-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"VirtualMachineTemplates\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-20-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"VirtualMachines\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-20-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.VMwareCloudSimple\",\r\n \"namespace\": \"Microsoft.VMwareCloudSimple\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d96199e7-4674-4bbf-a1c6-ddf93682f5ee\",\r\n \"roleDefinitionId\": \"533012ca-a3e7-44e4-93b4-3143f8b9409d\",\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"CloudSimpleExtension\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dedicatedCloudNodes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dedicatedCloudServices\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availabilities\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateClouds\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateClouds/virtualNetworks\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateClouds/virtualMachineTemplates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateClouds/resourcePools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.VnfManager\",\r\n \"namespace\": \"Microsoft.VnfManager\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"b8ed041c-aa91-418e-8f47-20c70abc2de1\",\r\n \"roleDefinitionId\": \"c8d69fc0-f0ed-43b3-bf1d-4dfdaacc6d2d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"devices\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vnfs\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vendors/vnfs\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.VSOnline\",\r\n \"namespace\": \"Microsoft.VSOnline\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9bd5ab7f-4031-4045-ace9-6bebbad202f6\",\r\n \"roleDefinitionId\": \"b879ac78-f1e6-448d-ab4c-5908cd5967c1\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West Us 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-07-01-beta\",\r\n \"2019-07-01-alpha\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"plans\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West Us 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-26-preview\",\r\n \"2020-05-26-beta\",\r\n \"2020-05-26-alpha\",\r\n \"2019-07-01-preview\",\r\n \"2019-07-01-beta\",\r\n \"2019-07-01-alpha\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-26-privatepreview\",\r\n \"2020-05-26-preview\",\r\n \"2020-05-26-beta\",\r\n \"2020-05-26-alpha\",\r\n \"2019-07-01-privatepreview\",\r\n \"2019-07-01-preview\",\r\n \"2019-07-01-beta\",\r\n \"2019-07-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registeredSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-26-privatepreview\",\r\n \"2020-05-26-preview\",\r\n \"2020-05-26-beta\",\r\n \"2020-05-26-alpha\",\r\n \"2019-07-01-privatepreview\",\r\n \"2019-07-01-preview\",\r\n \"2019-07-01-beta\",\r\n \"2019-07-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.WindowsESU\",\r\n \"namespace\": \"Microsoft.WindowsESU\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e6c69915-bcc7-4335-b655-c62f949d691b\",\r\n \"roleDefinitionId\": \"9bccffcd-2d3d-4b7c-a2cb-bb26e77b4810\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-16-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-16-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/OperationStatuses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.WindowsIoT\",\r\n \"namespace\": \"Microsoft.WindowsIoT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DeviceServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2018-02-16-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2018-02-16-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.WorkloadBuilder\",\r\n \"namespace\": \"Microsoft.WorkloadBuilder\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-07-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/OperationStatuses\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-07-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workloads\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"workloads/versions/artifacts\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workloads/versions\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workloads/instances\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.WorkloadMonitor\",\r\n \"namespace\": \"Microsoft.WorkloadMonitor\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"componentsSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitorInstancesSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitorInstances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"monitors\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"notificationSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Myget.PackageManagement\",\r\n \"namespace\": \"Myget.PackageManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Paraleap.CloudMonix\",\r\n \"namespace\": \"Paraleap.CloudMonix\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Pokitdok.Platform\",\r\n \"namespace\": \"Pokitdok.Platform\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/RavenHq.Db\",\r\n \"namespace\": \"RavenHq.Db\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Raygun.CrashReporting\",\r\n \"namespace\": \"Raygun.CrashReporting\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Sparkpost.Basic\",\r\n \"namespace\": \"Sparkpost.Basic\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/stackify.retrace\",\r\n \"namespace\": \"stackify.retrace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/U2uconsult.TheIdentityHub\",\r\n \"namespace\": \"U2uconsult.TheIdentityHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Wandisco.Fusion\",\r\n \"namespace\": \"Wandisco.Fusion\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"37b36496-3f4f-443a-a406-5e0a0535f6a3\",\r\n \"roleDefinitionId\": \"b10cdc1f-fd21-4fe9-bae7-7e2e25a91a21\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/operationStatuses\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2 EUAP\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registeredSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ProjectArcadia\",\r\n \"namespace\": \"Microsoft.ProjectArcadia\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9e09aefc-b2e5-4d19-9f74-3e3e8b11a57b\",\r\n \"roleDefinitionId\": \"a53b114a-452b-4d20-bcd6-c51c3c8c5878\"\r\n },\r\n {\r\n \"applicationId\": \"1ac05c7e-12d2-4605-bf9d-549d7041c6b3\",\r\n \"roleDefinitionId\": \"48e77487-c9fa-4abe-8484-71ebdebdbbc2\"\r\n },\r\n {\r\n \"applicationId\": \"ec52d13d-2e85-410e-a89a-8c79fb6a32ac\",\r\n \"roleDefinitionId\": \"c3a447c3-a63a-4905-a125-c6856f9d0e17\"\r\n },\r\n {\r\n \"applicationId\": \"5ebe1e69-13dd-4953-84fa-a74ed591db2e\",\r\n \"roleDefinitionId\": \"e8ebe3e8-569b-4ad3-bea1-5b274fe0c49f\"\r\n },\r\n {\r\n \"applicationId\": \"2e458d69-0892-4655-b713-4f7b182315dd\",\r\n \"roleDefinitionId\": \"45EA3B16-D4DD-48CA-BF0D-BBE644C0C0AF\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/sparkComputes\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/sqlComputes\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/operationStatus\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/operationResults\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"EAST US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"EAST US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.SecurityDetonation\",\r\n \"namespace\": \"Microsoft.SecurityDetonation\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"29820072-374d-49b8-945a-3941d7e9b468\",\r\n \"roleDefinitionId\": \"4ddf1807-30b0-464a-9d16-a8822daf866b\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"chambers\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-01-preview\",\r\n \"2019-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Kubernetes\",\r\n \"namespace\": \"Microsoft.Kubernetes\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"64b12d6e-6549-484c-8cc6-6281839ba394\",\r\n \"roleDefinitionId\": \"1d1d44cf-68a1-4def-a2b6-cd7efc3515af\"\r\n },\r\n {\r\n \"applicationId\": \"359431ad-ece5-496b-8768-be4bbfd82f36\",\r\n \"roleDefinitionId\": \"1b5c71b7-9814-4b40-b62a-23018af874d8\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatuses\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"West Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registeredSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-11-01-preview\",\r\n \"2019-09-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connectedClusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-11-01-preview\",\r\n \"2019-09-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.KubernetesConfiguration\",\r\n \"namespace\": \"Microsoft.KubernetesConfiguration\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c699bf69-fb1d-4eaf-999b-99e6b2ae4d85\",\r\n \"roleDefinitionId\": \"90155430-a360-410f-af5d-89dc284d85c6\"\r\n },\r\n {\r\n \"applicationId\": \"03db181c-e9d3-4868-9097-f0b728327182\",\r\n \"roleDefinitionId\": \"DE2ADB97-42D8-49C8-8FCF-DBB53EF936AC\"\r\n },\r\n {\r\n \"applicationId\": \"a0f92522-89de-4c5e-9a75-0044ccf66efd\",\r\n \"roleDefinitionId\": \"b3429810-7d5c-420e-8605-cf280f3099f2\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sourceControlConfigurations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.SaaS\",\r\n \"namespace\": \"Microsoft.SaaS\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"f738ef14-47dc-4564-b53b-45069484ccc7\",\r\n \"roleDefinitionId\": \"b131dd2d-387a-4cae-bb9b-3d021f80d1e6\"\r\n },\r\n {\r\n \"applicationId\": \"20e940b3-4c77-4b0b-9a53-9e16a1b010a7\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checknameavailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkModernEligibility\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"saasresources\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.VSOnline\",\r\n \"namespace\": \"Microsoft.VSOnline\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9bd5ab7f-4031-4045-ace9-6bebbad202f6\",\r\n \"roleDefinitionId\": \"b879ac78-f1e6-448d-ab4c-5908cd5967c1\"\r\n },\r\n {\r\n \"applicationId\": \"48ef7923-268f-473d-bcf1-07f0997961f4\",\r\n \"roleDefinitionId\": \"b879ac78-f1e6-448d-ab4c-5908cd5967c1\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West Us 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-07-01-beta\",\r\n \"2019-07-01-alpha\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"plans\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West Us 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-26-preview\",\r\n \"2020-05-26-beta\",\r\n \"2020-05-26-alpha\",\r\n \"2019-07-01-preview\",\r\n \"2019-07-01-beta\",\r\n \"2019-07-01-alpha\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-26-privatepreview\",\r\n \"2020-05-26-preview\",\r\n \"2020-05-26-beta\",\r\n \"2020-05-26-alpha\",\r\n \"2019-07-01-privatepreview\",\r\n \"2019-07-01-preview\",\r\n \"2019-07-01-beta\",\r\n \"2019-07-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registeredSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-26-privatepreview\",\r\n \"2020-05-26-preview\",\r\n \"2020-05-26-beta\",\r\n \"2020-05-26-alpha\",\r\n \"2019-07-01-privatepreview\",\r\n \"2019-07-01-preview\",\r\n \"2019-07-01-beta\",\r\n \"2019-07-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.AppPlatform\",\r\n \"namespace\": \"Microsoft.AppPlatform\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"03b39d0f-4213-4864-a245-b1476ec03169\"\r\n },\r\n {\r\n \"applicationId\": \"b61cc489-e138-4a69-8bf3-c2c5855c8784\",\r\n \"roleDefinitionId\": \"462ddd96-910a-44f5-adfa-644d99942778\"\r\n },\r\n {\r\n \"applicationId\": \"e8de9221-a19c-4c81-b814-fd37c6caf9d2\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Spring\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-01\",\r\n \"2019-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"Spring/apps\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-01\",\r\n \"2019-05-01-preview\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"Spring/apps/deployments\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-01\",\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-01\",\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-07-01\",\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-01\",\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatus\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-01\",\r\n \"2019-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.GuestConfiguration\",\r\n \"namespace\": \"Microsoft.GuestConfiguration\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e935b4a5-8968-416d-8414-caed51c782a9\",\r\n \"roleDefinitionId\": \"9c6ffa40-421e-4dc0-9739-76b0699a11de\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"guestConfigurationAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-25\",\r\n \"2018-11-20\",\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"software\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"softwareUpdates\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"softwareUpdateProfile\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-25\",\r\n \"2018-11-20\",\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configurationProfileAssignments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"autoManagedVmConfigurationProfiles\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"autoManagedAccounts\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Notebooks\",\r\n \"namespace\": \"Microsoft.Notebooks\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"NotebookProxies\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-11-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-11-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ChangeAnalysis\",\r\n \"namespace\": \"Microsoft.ChangeAnalysis\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2cfc91a4-7baa-4a8f-a6c9-5f3d279060b8\",\r\n \"roleDefinitionId\": \"f5a6bd90-af71-455c-9030-c486e8c42c95\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\",\r\n \"2019-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceChanges\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.AppConfiguration\",\r\n \"namespace\": \"Microsoft.AppConfiguration\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"35ffadb3-7fc1-497e-b61b-381d28e744cc\",\r\n \"roleDefinitionId\": \"fffa409e-a8cc-4cbf-8e1c-6d940b33040e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"configurationStores\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-01-preview\",\r\n \"2020-06-01\",\r\n \"2019-11-01-preview\",\r\n \"2019-10-01\",\r\n \"2019-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"configurationStores/keyValues\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configurationStores/eventGridFilters\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-01-preview\",\r\n \"2020-06-01\",\r\n \"2019-11-01-preview\",\r\n \"2019-10-01\",\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-01-preview\",\r\n \"2020-06-01\",\r\n \"2019-11-01-preview\",\r\n \"2019-10-01\",\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-01-preview\",\r\n \"2020-06-01\",\r\n \"2019-11-01-preview\",\r\n \"2019-10-01\",\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-01-preview\",\r\n \"2020-06-01\",\r\n \"2019-11-01-preview\",\r\n \"2019-10-01\",\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-01-preview\",\r\n \"2020-06-01\",\r\n \"2019-11-01-preview\",\r\n \"2019-10-01\",\r\n \"2019-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.MachineLearningServices\",\r\n \"namespace\": \"Microsoft.MachineLearningServices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"376aa7d7-51a9-463d-bd4d-7e1691345612\",\r\n \"managedByRoleDefinitionId\": \"91d00862-cf55-46a5-9dce-260bbd92ce25\"\r\n },\r\n {\r\n \"applicationId\": \"607ece82-f922-494f-88b8-30effaf12214\",\r\n \"roleDefinitionId\": \"d312a9a6-5102-420b-b8b3-aa6b22670aaa\",\r\n \"managedByRoleDefinitionId\": \"91d00862-cf55-46a5-9dce-260bbd92ce25\"\r\n },\r\n {\r\n \"applicationId\": \"18a66f5f-dbdf-4c17-9dd7-1634712a9cbe\",\r\n \"roleDefinitionId\": \"8b910db7-60f9-4c04-af30-71aab18eda90\",\r\n \"managedByRoleDefinitionId\": \"91d00862-cf55-46a5-9dce-260bbd92ce25\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"Canada Central\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-01-preview\",\r\n \"2020-08-01\",\r\n \"2020-06-01\",\r\n \"2020-05-15-preview\",\r\n \"2020-05-01-preview\",\r\n \"2020-04-01-preview\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-02-18-preview\",\r\n \"2020-02-02\",\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/computes\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-01-preview\",\r\n \"2020-08-01\",\r\n \"2020-06-01\",\r\n \"2020-05-15-preview\",\r\n \"2020-05-01-preview\",\r\n \"2020-04-01-preview\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-02-18-preview\",\r\n \"2020-02-02\",\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/eventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\",\r\n \"West India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-01-preview\",\r\n \"2020-08-01\",\r\n \"2020-06-01\",\r\n \"2020-05-15-preview\",\r\n \"2020-05-01-preview\",\r\n \"2020-04-01-preview\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-02-18-preview\",\r\n \"2020-02-02\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-01-preview\",\r\n \"2020-08-01\",\r\n \"2020-06-01\",\r\n \"2020-05-15-preview\",\r\n \"2020-05-01-preview\",\r\n \"2020-04-01-preview\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-02-18-preview\",\r\n \"2020-02-02\",\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-01-preview\",\r\n \"2020-08-01\",\r\n \"2020-06-01\",\r\n \"2020-05-15-preview\",\r\n \"2020-05-01-preview\",\r\n \"2020-04-01-preview\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-02-18-preview\",\r\n \"2020-02-02\",\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/computeOperationsStatus\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-01-preview\",\r\n \"2020-08-01\",\r\n \"2020-06-01\",\r\n \"2020-05-15-preview\",\r\n \"2020-05-01-preview\",\r\n \"2020-04-01-preview\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-02-18-preview\",\r\n \"2020-02-02\",\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/workspaceOperationsStatus\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-01-preview\",\r\n \"2020-08-01\",\r\n \"2020-06-01\",\r\n \"2020-05-15-preview\",\r\n \"2020-05-01-preview\",\r\n \"2020-04-01-preview\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-02-18-preview\",\r\n \"2020-02-02\",\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-01-preview\",\r\n \"2020-08-01\",\r\n \"2020-06-01\",\r\n \"2020-05-15-preview\",\r\n \"2020-05-01-preview\",\r\n \"2020-04-01-preview\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-02-18-preview\",\r\n \"2020-02-02\",\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmsizes\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-01-preview\",\r\n \"2020-08-01\",\r\n \"2020-06-01\",\r\n \"2020-05-15-preview\",\r\n \"2020-05-01-preview\",\r\n \"2020-04-01-preview\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-02-18-preview\",\r\n \"2020-02-02\",\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-01-preview\",\r\n \"2020-08-01\",\r\n \"2020-06-01\",\r\n \"2020-05-15-preview\",\r\n \"2020-05-01-preview\",\r\n \"2020-04-01-preview\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-02-18-preview\",\r\n \"2020-02-02\",\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/updatequotas\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-01-preview\",\r\n \"2020-08-01\",\r\n \"2020-06-01\",\r\n \"2020-05-15-preview\",\r\n \"2020-05-01-preview\",\r\n \"2020-04-01-preview\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-02-18-preview\",\r\n \"2020-02-02\",\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/linkedServices\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-15-preview\",\r\n \"2020-05-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n {\r\n \"applicationId\": \"737d58c1-397a-46e7-9d12-7d8c830883c2\",\r\n \"roleDefinitionId\": \"716bb53a-0390-4428-bf41-b1bedde7d751\"\r\n },\r\n {\r\n \"applicationId\": \"918d0db8-4a38-4938-93c1-9313bdfe0272\",\r\n \"roleDefinitionId\": \"dcd2d2c9-3f80-4d72-95a8-2593111b4b12\"\r\n },\r\n {\r\n \"applicationId\": \"d2fa1650-4805-4a83-bcb9-cf41fe63539c\",\r\n \"roleDefinitionId\": \"c15f8dab-b103-4f8d-9afb-fbe4b8e98de2\"\r\n },\r\n {\r\n \"applicationId\": \"a4c95b9e-3994-40cc-8953-5dc66d48348d\",\r\n \"roleDefinitionId\": \"dc88c655-90fa-48d9-8d51-003cc8738508\"\r\n },\r\n {\r\n \"applicationId\": \"62c559cd-db0c-4da0-bab2-972528c65d42\",\r\n \"roleDefinitionId\": \"437b639a-6d74-491d-959f-d172e8c5c1fc\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Switzerland North\",\r\n \"UAE Central\",\r\n \"Switzerland West\",\r\n \"Germany West Central\",\r\n \"Brazil Southeast\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"registries/scopeMaps\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"UAE Central\",\r\n \"Switzerland West\",\r\n \"Germany West Central\",\r\n \"Brazil Southeast\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/tokens\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"UAE Central\",\r\n \"Switzerland West\",\r\n \"Germany West Central\",\r\n \"Brazil Southeast\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/generateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"UAE Central\",\r\n \"Switzerland West\",\r\n \"Germany West Central\",\r\n \"Brazil Southeast\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/privateEndpointConnections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Switzerland North\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"Switzerland West\",\r\n \"Germany West Central\",\r\n \"Brazil Southeast\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Switzerland North\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"Switzerland West\",\r\n \"Germany West Central\",\r\n \"Brazil Southeast\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Switzerland North\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"Switzerland West\",\r\n \"Germany West Central\",\r\n \"Brazil Southeast\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/privateLinkResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Switzerland North\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"Switzerland West\",\r\n \"Germany West Central\",\r\n \"Brazil Southeast\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/importImage\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\",\r\n \"UAE Central\",\r\n \"Switzerland West\",\r\n \"Germany West Central\",\r\n \"Brazil Southeast\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/exportPipelines\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Switzerland North\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"Switzerland West\",\r\n \"Germany West Central\",\r\n \"Brazil Southeast\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"registries/importPipelines\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Switzerland North\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"Switzerland West\",\r\n \"Germany West Central\",\r\n \"Brazil Southeast\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"registries/pipelineRuns\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Switzerland North\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"Switzerland West\",\r\n \"Germany West Central\",\r\n \"Brazil Southeast\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listBuildSourceUploadUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE Central\",\r\n \"Brazil Southeast\",\r\n \"Germany West Central\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/scheduleRun\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE Central\",\r\n \"Brazil Southeast\",\r\n \"Germany West Central\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/runs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE Central\",\r\n \"Brazil Southeast\",\r\n \"Germany West Central\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/taskRuns\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE Central\",\r\n \"Brazil Southeast\",\r\n \"Germany West Central\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/taskRuns/listDetails\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE Central\",\r\n \"Brazil Southeast\",\r\n \"Germany West Central\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/agentPools\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/agentPools/listQueueStatus\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/runs/listLogSasUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE Central\",\r\n \"Brazil Southeast\",\r\n \"Germany West Central\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/runs/cancel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE Central\",\r\n \"Brazil Southeast\",\r\n \"Germany West Central\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/tasks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE Central\",\r\n \"Brazil Southeast\",\r\n \"Germany West Central\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"registries/tasks/listDetails\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE Central\",\r\n \"Brazil Southeast\",\r\n \"Germany West Central\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/getBuildSourceUploadUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE Central\",\r\n \"Brazil Southeast\",\r\n \"Germany West Central\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/queueBuild\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE Central\",\r\n \"Brazil Southeast\",\r\n \"Germany West Central\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE Central\",\r\n \"Brazil Southeast\",\r\n \"Germany West Central\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/getLogLink\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE Central\",\r\n \"Brazil Southeast\",\r\n \"Germany West Central\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/cancel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE Central\",\r\n \"Brazil Southeast\",\r\n \"Germany West Central\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE Central\",\r\n \"Brazil Southeast\",\r\n \"Germany West Central\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/listSourceRepositoryProperties\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE Central\",\r\n \"Brazil Southeast\",\r\n \"Germany West Central\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE Central\",\r\n \"Brazil Southeast\",\r\n \"Germany West Central\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps/listBuildArguments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE Central\",\r\n \"Brazil Southeast\",\r\n \"Germany West Central\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/replications\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\",\r\n \"UAE Central\",\r\n \"Switzerland West\",\r\n \"Germany West Central\",\r\n \"Brazil Southeast\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\",\r\n \"UAE Central\",\r\n \"Switzerland West\",\r\n \"Germany West Central\",\r\n \"Brazil Southeast\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/ping\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\",\r\n \"UAE Central\",\r\n \"Switzerland West\",\r\n \"Germany West Central\",\r\n \"Brazil Southeast\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/getCallbackConfig\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\",\r\n \"UAE Central\",\r\n \"Switzerland West\",\r\n \"Germany West Central\",\r\n \"Brazil Southeast\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/listEvents\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\",\r\n \"UAE Central\",\r\n \"Switzerland West\",\r\n \"Germany West Central\",\r\n \"Brazil Southeast\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setupAuth\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE Central\",\r\n \"Brazil Southeast\",\r\n \"Germany West Central\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/authorize\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE Central\",\r\n \"Brazil Southeast\",\r\n \"Germany West Central\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\",\r\n \"UAE Central\",\r\n \"Switzerland West\",\r\n \"Germany West Central\",\r\n \"Brazil Southeast\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\",\r\n \"UAE Central\",\r\n \"Switzerland West\",\r\n \"Germany West Central\",\r\n \"Brazil Southeast\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listCredentials\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Switzerland North\",\r\n \"UAE Central\",\r\n \"Switzerland West\",\r\n \"Germany West Central\",\r\n \"Brazil Southeast\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredential\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Switzerland North\",\r\n \"UAE Central\",\r\n \"Switzerland West\",\r\n \"Germany West Central\",\r\n \"Brazil Southeast\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listUsages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\",\r\n \"UAE Central\",\r\n \"Switzerland West\",\r\n \"Germany West Central\",\r\n \"Brazil Southeast\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE Central\",\r\n \"Germany West Central\",\r\n \"Brazil Southeast\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/updatePolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE Central\",\r\n \"Germany West Central\",\r\n \"Brazil Southeast\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/eventGridFilters\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\",\r\n \"UAE Central\",\r\n \"Switzerland West\",\r\n \"Germany West Central\",\r\n \"Brazil Southeast\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"UAE Central\",\r\n \"Switzerland West\",\r\n \"Germany West Central\",\r\n \"Brazil Southeast\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\",\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"UAE Central\",\r\n \"Switzerland West\",\r\n \"Germany West Central\",\r\n \"Brazil Southeast\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"UAE Central\",\r\n \"Switzerland West\",\r\n \"Germany West Central\",\r\n \"Brazil Southeast\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"86695298-2eb9-48a7-9ec3-2fdb38b6878b\"\r\n },\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-08-01\",\r\n \"2020-03-01-preview\",\r\n \"2017-04-26-preview\",\r\n \"2017-03-15-preview\",\r\n \"2017-03-03-preview\",\r\n \"2017-01-01-preview\",\r\n \"2015-11-01-preview\",\r\n \"2015-03-20\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-08-01\",\r\n \"2020-03-01-preview\",\r\n \"2019-08-01-preview\",\r\n \"2017-04-26-preview\",\r\n \"2017-03-15-preview\",\r\n \"2017-03-03-preview\",\r\n \"2017-01-01-preview\",\r\n \"2015-11-01-preview\",\r\n \"2015-03-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatuses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-08-01\",\r\n \"2020-03-01-preview\",\r\n \"2019-08-01-preview\",\r\n \"2017-04-26-preview\",\r\n \"2017-03-15-preview\",\r\n \"2017-03-03-preview\",\r\n \"2017-01-01-preview\",\r\n \"2015-11-01-preview\",\r\n \"2015-03-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/scopedPrivateLinkProxies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01-preview\",\r\n \"2019-08-01-preview\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/metadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/dataSources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-08-01\",\r\n \"2020-03-01-preview\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/linkedStorageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-08-01\",\r\n \"2020-03-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-08-01\",\r\n \"2020-03-01-preview\",\r\n \"2014-10-10\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/linkedServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-08-01\",\r\n \"2020-03-01-preview\",\r\n \"2019-08-01-preview\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01-preview\",\r\n \"2015-03-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedWorkspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-08-01\",\r\n \"2020-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-08-01\",\r\n \"2020-03-01-preview\",\r\n \"2015-11-01-preview\",\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.OperationsManagement\",\r\n \"namespace\": \"Microsoft.OperationsManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"aa249101-6816-4966-aafa-08175d795f14\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"solutions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central Us\",\r\n \"East Us 2\",\r\n \"East Asia\",\r\n \"West Us\",\r\n \"South Central Us\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE Central\",\r\n \"Australia Central 2\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managementconfigurations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central Us\",\r\n \"East Us 2\",\r\n \"East Asia\",\r\n \"West Us\",\r\n \"South Central Us\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managementassociations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"views\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central Us\",\r\n \"East Us 2\",\r\n \"East Asia\",\r\n \"West Us\",\r\n \"South Central Us\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Databricks\",\r\n \"namespace\": \"Microsoft.Databricks\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d9327919-6775-4843-9037-3fb0fb0473cb\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"applicationId\": \"2ff814a6-3304-4ab8-85cb-cd0e6f879c1d\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/virtualNetworkPeerings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Brazil South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/dbWorkspaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Brazil South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"UAE North\",\r\n \"Brazil South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-15\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/getNetworkPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"roleDefinitionId\": \"e4770acb-272e-4dc8-87f3-12f44a612224\"\r\n },\r\n {\r\n \"applicationId\": \"a303894e-f1d8-4a37-bf10-67aa654a0596\",\r\n \"roleDefinitionId\": \"903ac751-8ad5-4e5a-bfc2-5e49f450a241\"\r\n },\r\n {\r\n \"applicationId\": \"a8b6bf88-1d1a-4626-b040-9a729ea93c65\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"184909ca-69f1-4368-a6a7-c558ee6eb0bd\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"5e5e43d4-54da-4211-86a4-c6e7f3715801\",\r\n \"roleDefinitionId\": \"ffcd6e5b-8772-457d-bb17-89703c03428f\"\r\n },\r\n {\r\n \"applicationId\": \"ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n },\r\n {\r\n \"applicationId\": \"372140e0-b3b7-4226-8ef9-d57986796201\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n },\r\n {\r\n \"applicationId\": \"b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab\",\r\n \"roleDefinitionId\": \"6efa92ca-56b6-40af-a468-5e3d2b5232f0\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runCommands\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections/restorePoints\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"proximityPlacementGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"sshPublicKeys\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/spotEvictionRates\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/spotPriceHistory\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/artifactPublishers\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capsoperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\",\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/galleries\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/diskoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diskEncryptionSets\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"diskAccesses\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-30\",\r\n \"2020-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/logAnalytics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Australia East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Australia East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ContainerService\",\r\n \"namespace\": \"Microsoft.ContainerService\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"7319c514-987d-4e9b-ac3d-d38c4f427f4c\",\r\n \"roleDefinitionId\": \"1b4a0c7f-2217-416f-acfa-cf73452fdc1c\",\r\n \"managedByRoleDefinitionId\": \"9e3af657-a8ff-583c-a75c-2fe7c4bcb635\",\r\n \"managedByAuthorization\": {\r\n \"allowManagedByInheritance\": true\r\n }\r\n },\r\n {\r\n \"applicationId\": \"6dae42f8-4368-4678-94ff-3960e28e3630\",\r\n \"roleDefinitionId\": \"831388fc-33b1-4dd1-b64c-40fdcaf96654\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"containerServices\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"managedClusters\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Germany North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany West Central\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-02-01\",\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-08-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-08-01-preview\",\r\n \"2018-03-31\",\r\n \"2017-08-31\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"openShiftManagedClusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-30-preview\",\r\n \"2019-04-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/openShiftClusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-30-preview\",\r\n \"2019-04-30\",\r\n \"2018-09-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2016-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"France Central\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-31\",\r\n \"2018-03-31\",\r\n \"2017-08-31\",\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/orchestrators\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-02-01\",\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-08-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2017-09-30\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.RecoveryServices\",\r\n \"namespace\": \"Microsoft.RecoveryServices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6\"\r\n },\r\n {\r\n \"applicationId\": \"3b2fa68d-a091-48c9-95be-88d572e08fb7\",\r\n \"roleDefinitionId\": \"47d68fae-99c7-4c10-b9db-2316116a061e\"\r\n },\r\n {\r\n \"applicationId\": \"9bdab391-7bbe-42e8-8132-e4491dc29cc0\",\r\n \"roleDefinitionId\": \"0383f7f5-023d-4379-b2c7-9ef786459969\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2020-02-02\",\r\n \"2019-06-15\",\r\n \"2019-05-13-preview\",\r\n \"2019-05-13\",\r\n \"2018-12-20-preview\",\r\n \"2018-07-10-preview\",\r\n \"2018-07-10\",\r\n \"2018-01-10\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-12-01\",\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2016-05-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2020-02-02\",\r\n \"2019-06-15\",\r\n \"2019-05-13-preview\",\r\n \"2019-05-13\",\r\n \"2018-07-10-preview\",\r\n \"2018-07-10\",\r\n \"2018-01-10\",\r\n \"2017-09-01\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-12-01\",\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupStatus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocatedStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocateStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupValidateFeatures\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupPreValidateProtection\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupCrrJobs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupCrrJob\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupAadProperties\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupCrossRegionRestore\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupCrrOperationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupCrrOperationsStatus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"backupProtectedItems\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"replicationEligibilityResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-10\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e4ab13ed-33cb-41b4-9140-6e264582cf85\",\r\n \"roleDefinitionId\": \"ec3ddc95-44dc-47a2-9926-5e9f5ffd44ec\"\r\n },\r\n {\r\n \"applicationId\": \"0130cc9f-7ac5-4026-bd5f-80a08a54e6d9\",\r\n \"roleDefinitionId\": \"45e8abf8-0ec4-44f3-9c37-cff4f7779302\"\r\n },\r\n {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n {\r\n \"applicationId\": \"76c7f279-7959-468f-8943-3954880e0d8c\",\r\n \"roleDefinitionId\": \"7f7513a8-73f9-4c5f-97a2-c41f0ea783ef\"\r\n },\r\n {\r\n \"applicationId\": \"022907d3-0f1b-48f7-badc-1ba6abab6d66\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/keys\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/encryptionProtector\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceEncryptionProtectorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceEncryptionProtectorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/tdeCertificates\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/communicationLinks\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administrators\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverAdministratorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverAdministratorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/geoBackupPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/backupLongTermRetentionPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/backupShortTermRetentionPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/automaticTuning\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/automaticTuning\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/transparentDataEncryption\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingSettings\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingSettings\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/extendedAuditingSettings\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-09-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/jobAccounts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/jobAgents\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/jobAgents/jobs\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/jobAgents/jobs/steps\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/jobAgents/jobs/executions\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/disasterRecoveryConfiguration\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/dnsAliases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/failoverGroups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/aggregatedDatabaseMetrics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries/queryText\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPools/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/extensions\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPoolEstimates\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditRecords\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentScans\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/workloadGroups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/databases/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentSettings\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessment\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/recommendedSensitivityLabels\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups/syncMembers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/syncAgents\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"instancePools\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/importExportOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/importExportAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instancePoolOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instancePoolAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/administrators\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/databases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/recoverableDatabases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/metrics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/metricDefinitions\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/databases/backupLongTermRetentionPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/sqlAgent\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstancePrivateEndpointConnectionProxyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstancePrivateEndpointConnectionProxyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstancePrivateEndpointConnectionOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstancePrivateEndpointConnectionAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionManagedInstances\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionManagedInstanceBackups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceLongTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceLongTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionManagedInstanceBackupOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionManagedInstanceBackupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseCompleteRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseCompleteRestoreOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/tdeCertificates\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualClusters\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualClusterAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualClusterOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncMemberOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncAgentOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncDatabaseIds\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedShortTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedShortTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/notifyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverTrustGroups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverTrustGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverTrustGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ResourceHealth\",\r\n \"namespace\": \"Microsoft.ResourceHealth\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8bdebf23-c0fe-4187-a378-717ad86f6a53\",\r\n \"roleDefinitionId\": \"cc026344-c8b1-4561-83ba-59eba84b27cc\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilityStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01-preview\",\r\n \"2020-05-01\",\r\n \"2018-08-01-rc\",\r\n \"2018-08-01-preview\",\r\n \"2018-07-01-rc\",\r\n \"2018-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"childAvailabilityStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-06-beta\",\r\n \"2018-08-01-rc\",\r\n \"2018-08-01-preview\",\r\n \"2018-07-01-rc\",\r\n \"2018-07-01-preview\",\r\n \"2018-07-01-beta\",\r\n \"2017-07-01-rc\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01-beta\",\r\n \"2015-01-01-rc\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"childResources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-06-beta\",\r\n \"2018-08-01-rc\",\r\n \"2018-08-01-preview\",\r\n \"2018-07-01-rc\",\r\n \"2018-07-01-preview\",\r\n \"2018-07-01-beta\",\r\n \"2017-07-01-rc\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01-beta\",\r\n \"2015-01-01-rc\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"events\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-rc\",\r\n \"2018-07-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"metadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-rc\",\r\n \"2018-07-01-preview\",\r\n \"2018-07-01-beta\",\r\n \"2018-07-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"emergingissues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-06-beta\",\r\n \"2018-07-01-rc\",\r\n \"2018-07-01-preview\",\r\n \"2018-07-01-beta\",\r\n \"2018-07-01-alpha\",\r\n \"2018-07-01\",\r\n \"2017-07-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifications\",\r\n \"locations\": [\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"fc75330b-179d-49af-87dd-3b1acf6827fa\",\r\n \"roleDefinitionId\": \"95fd5de3-d071-4362-92bf-cf341c1de832\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Central US\",\r\n \"West US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-13-preview\",\r\n \"2019-06-01\",\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/configurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"West US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/webhooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Central US\",\r\n \"West US\",\r\n \"Australia Central\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/softwareUpdateConfigurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Central US\",\r\n \"West US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/jobs\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Central US\",\r\n \"West US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/privateLinkResources\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Central US\",\r\n \"West US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-13-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/privateEndpointConnections\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Central US\",\r\n \"West US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-13-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Central US\",\r\n \"West US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-13-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6bccf540-eb86-4037-af03-7fa058c2db75\",\r\n \"roleDefinitionId\": \"89dcede2-9219-403a-9723-d3c6473f9472\"\r\n },\r\n {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n {\r\n \"applicationId\": \"035f9e1d-4f00-4419-bf50-bf2d87eb4878\",\r\n \"roleDefinitionId\": \"323795fe-ba3d-4f5a-ad42-afb4e1ea9485\"\r\n },\r\n {\r\n \"applicationId\": \"f5c26e74-f226-4ae8-85f0-b4af0080ac9e\",\r\n \"roleDefinitionId\": \"529d7ae6-e892-4d43-809d-8547aeb90643\"\r\n },\r\n {\r\n \"applicationId\": \"b503eb83-1222-4dcc-b116-b98ed5216e05\",\r\n \"roleDefinitionId\": \"68699c37-c689-44d4-9248-494b782d46ae\"\r\n },\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n },\r\n {\r\n \"applicationId\": \"3af5a1e8-2459-45cb-8683-bcd6cccbcc13\",\r\n \"roleDefinitionId\": \"b1309299-720d-4159-9897-6158a61aee41\"\r\n },\r\n {\r\n \"applicationId\": \"6a0a243c-0886-468a-a4c2-eff52c7445da\",\r\n \"roleDefinitionId\": \"d2eda64b-c5e6-4930-8642-2d80ecd7c2e2\"\r\n },\r\n {\r\n \"applicationId\": \"707be275-6b9d-4ee7-88f9-c0c2bd646e0f\",\r\n \"roleDefinitionId\": \"fa027d90-6ba0-4c33-9a54-59edaf2327e7\"\r\n },\r\n {\r\n \"applicationId\": \"461e8683-5575-4561-ac7f-899cc907d62a\",\r\n \"roleDefinitionId\": \"68699c37-c689-44d4-9248-494b782d46ae\"\r\n },\r\n {\r\n \"applicationId\": \"562db366-1b96-45d2-aa4a-f2148cef2240\",\r\n \"roleDefinitionId\": \"4109c8be-c1c8-4be0-af52-9d3c76c140ab\"\r\n },\r\n {\r\n \"applicationId\": \"e933bd07-d2ee-4f1d-933c-3752b819567b\",\r\n \"roleDefinitionId\": \"abbcfd44-e662-419a-9b5a-478f8e2f57c9\"\r\n },\r\n {\r\n \"applicationId\": \"f6b60513-f290-450e-a2f3-9930de61c5e7\",\r\n \"roleDefinitionId\": \"4ef11659-08ac-48af-98a7-25fb6b1e1bc4\"\r\n },\r\n {\r\n \"applicationId\": \"12743ff8-d3de-49d0-a4ce-6c91a4245ea0\",\r\n \"roleDefinitionId\": \"207b20a7-6802-4ae4-aaa2-1a36dd45bba0\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Australia Southeast\",\r\n \"Australia Central 2\",\r\n \"Germany West Central\",\r\n \"Switzerland West\",\r\n \"UAE Central\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2018-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"components/query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/metadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/metrics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/events\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Australia Southeast\",\r\n \"Australia Central 2\",\r\n \"Germany West Central\",\r\n \"Switzerland West\",\r\n \"UAE Central\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"webtests/getTestResultFile\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-10-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"scheduledqueryrules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE Central\",\r\n \"Germany West Central\",\r\n \"Australia Central 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-16\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"components/pricingPlans\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"migrateToNewPricingModel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"rollbackToLegacyPricingModel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listMigrationdate\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logprofiles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"migratealertrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricalerts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2016-09-01-preview\",\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vmInsightsOnboardingStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-27-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2015-07-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"extendedDiagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-02-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"Brazil Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"logDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"eventCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"Brazil Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"metricbatch\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"Brazil Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"actiongroups\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2018-09-01\",\r\n \"2018-03-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"activityLogAlerts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"baseline\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-11-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"metricbaselines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"calculatebaseline\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-11-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"workbooks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"South Africa North\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Australia Southeast\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-12\",\r\n \"2018-06-17-preview\",\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"workbooktemplates\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"South Africa North\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-17-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"myWorkbooks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Australia Southeast\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-12\",\r\n \"2018-06-17-preview\",\r\n \"2018-06-15-preview\",\r\n \"2018-06-01-preview\",\r\n \"2016-06-15-preview\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity, SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"logs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"transactions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-17-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"topology\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-17-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"generateLiveToken\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-02-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"dataCollectionRules\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dataCollectionRuleAssociations\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"privateLinkScopes\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-17-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateLinkScopes/privateEndpointConnections\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-17-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateLinkScopes/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-17-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateLinkScopes/scopedResources\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-17-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/linkedstorageaccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateLinkScopeOperationStatuses\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-17-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n {\r\n \"applicationId\": \"7c33bfcb-8d33-48d6-8e60-dc6404003489\",\r\n \"roleDefinitionId\": \"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3\"\r\n },\r\n {\r\n \"applicationId\": \"1e3e4475-288f-4018-a376-df66fd7fac5f\",\r\n \"roleDefinitionId\": \"1d538b69-3d87-4e56-8ff8-25786fd48261\"\r\n },\r\n {\r\n \"applicationId\": \"a0be0c72-870e-46f0-9c49-c98333a996f7\",\r\n \"roleDefinitionId\": \"7ce22727-ffce-45a9-930c-ddb2e56fa131\"\r\n },\r\n {\r\n \"applicationId\": \"486c78bf-a0f7-45f1-92fd-37215929e116\",\r\n \"roleDefinitionId\": \"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d\"\r\n },\r\n {\r\n \"applicationId\": \"19947cfd-0303-466c-ac3c-fcc19a7a1570\",\r\n \"roleDefinitionId\": \"d813ab6c-bfb7-413e-9462-005b21f0ce09\"\r\n },\r\n {\r\n \"applicationId\": \"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd\",\r\n \"roleDefinitionId\": \"8141843c-c51c-4c1e-a5bf-0d351594b86c\"\r\n },\r\n {\r\n \"applicationId\": \"328fd23b-de6e-462c-9433-e207470a5727\",\r\n \"roleDefinitionId\": \"79e29e06-4056-41e5-a6b2-959f1f47747e\"\r\n },\r\n {\r\n \"applicationId\": \"6d057c82-a784-47ae-8d12-ca7b38cf06b4\",\r\n \"roleDefinitionId\": \"c27dd31e-c1e5-4ab0-93e1-a12ba34f182e\"\r\n },\r\n {\r\n \"applicationId\": \"b4ca0290-4e73-4e31-ade0-c82ecfaabf6a\",\r\n \"roleDefinitionId\": \"18363e25-ff21-4159-ae8d-7dfecb5bd001\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"natGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"customIpPrefixes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateEndpointRedirectMaps\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serviceEndpointPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkIntentPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPPrefixes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"masterCustomIpPrefixes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ddosCustomPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/connectionMonitors\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/flowLogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/pingMeshes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayWebApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setLoadBalancerFrontendPublicIpAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkAvailableEndpointServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableDelegations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serviceTags\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availablePrivateEndpointTypes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableServiceAliases\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkPrivateLinkServiceVisibility\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/autoApprovedPrivateLinkServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/batchValidatePrivateEndpointsForResourceMove\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/batchNotifyPrivateEndpointsForResourceMove\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/supportedVirtualMachineSizes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkAcceleratedNetworkingSupport\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/effectiveResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"getDnsResourceReference\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"internalNotify\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/NS\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/recordsets\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/virtualNetworkLinks\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZonesInternal\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles/heatMaps\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerUserMetricsKeys\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableWafRuleSets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableSslOptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableServerVariables\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableRequestHeaders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableResponseHeaders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"bgpServiceCommunities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualWans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnSites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnServerConfigurations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"p2sVpnGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"firewallPolicies\",\r\n \"locations\": [\r\n \"UAE North\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Japan West\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"South India\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ipGroups\",\r\n \"locations\": [\r\n \"UAE North\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Japan West\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"South India\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/nfvOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/nfvOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityPartnerProviders\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"azureFirewalls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"azureFirewallFqdnTags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkTaps\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"privateLinkServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ddosProtectionPlans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"networkProfiles\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"checkFrontdoorNameAvailability\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-01\",\r\n \"2020-05-01\",\r\n \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"frontdoorWebApplicationFirewallManagedRuleSets\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2019-10-01\",\r\n \"2019-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/bareMetalTenants\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"bastionHosts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualRouters\",\r\n \"locations\": [\r\n \"UAE North\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Japan West\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"South India\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"networkVirtualAppliances\",\r\n \"locations\": [\r\n \"UAE North\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Japan West\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"South India\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ipAllocations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/commitInternalAzureNetworkManagerConfiguration\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkVirtualApplianceSkus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/lenses\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoorOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"frontdoors\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoors/frontendEndpoints\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"frontdoors/frontendEndpoints/customHttpsConfiguration\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"frontdoorWebApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2019-10-01\",\r\n \"2019-03-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"networkExperimentProfiles\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validate\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"isusernameavailable\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"staticSites\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01-preview\",\r\n \"2019-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/getNetworkPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"France Central\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"West India\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01-preview\",\r\n \"2019-08-01\",\r\n \"2019-01-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"West India\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01-preview\",\r\n \"2019-08-01\",\r\n \"2019-01-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/networkConfig\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/networkConfig\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2015-01-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2015-01-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"West India\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2019-02-01\",\r\n \"2019-01-01\",\r\n \"2018-11-01\",\r\n \"2018-08-01\",\r\n \"2018-05-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2019-02-01\",\r\n \"2018-11-01\",\r\n \"2018-08-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2019-02-01\",\r\n \"2018-11-01\",\r\n \"2018-08-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"kubeEnvironments\",\r\n \"locations\": [\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2019-02-01\",\r\n \"2019-01-01\",\r\n \"2018-11-01\",\r\n \"2018-08-01\",\r\n \"2018-05-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedSites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedSites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-11-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"customApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/listWsdlInterfaces\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extractApiDefinitionFromWsdl\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runtimes\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/apiOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connectionGateways\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/connectionGatewayInstallations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingMeters\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"verifyHostingEnvironmentVnet\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/eventGridFilters\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway West\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"South Africa West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/eventGridFilters\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway West\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"South Africa West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2015-01-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/eventGridFilters\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway West\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"South Africa West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2015-01-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/eventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"West India\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2019-02-01\",\r\n \"2019-01-01\",\r\n \"2018-11-01\",\r\n \"2018-08-01\",\r\n \"2018-05-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.AlertsManagement\",\r\n \"namespace\": \"Microsoft.AlertsManagement\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"3af5a1e8-2459-45cb-8683-bcd6cccbcc13\",\r\n \"roleDefinitionId\": \"b1309299-720d-4159-9897-6158a61aee41\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-05-preview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-11-02-privatepreview\",\r\n \"2018-05-05-preview\",\r\n \"2018-05-05\",\r\n \"2017-11-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"alertsSummary\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-05-preview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-05-05-preview\",\r\n \"2018-05-05\",\r\n \"2017-11-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"smartGroups\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-05-preview\",\r\n \"2018-05-05-preview\",\r\n \"2018-05-05\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartDetectorAlertRules\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"actionRules\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-05-preview\",\r\n \"2018-11-02-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"alertsList\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-02-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertsSummaryList\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-02-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertsMetaData\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-05-preview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2018-05-05\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Advisor\",\r\n \"namespace\": \"Microsoft.Advisor\",\r\n \"authorization\": {\r\n \"applicationId\": \"c39c9bac-9d1f-4dfb-aa29-27f6365e5cb7\",\r\n \"roleDefinitionId\": \"8a63b04c-3731-409b-9765-f1175c047872\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"suppressions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"generateRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central India\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"West Central US\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"France Central\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01-preview\",\r\n \"2019-12-01-preview\",\r\n \"2019-12-01\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central India\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"West Central US\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"France Central\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01-preview\",\r\n \"2019-12-01-preview\",\r\n \"2019-12-01\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01-preview\",\r\n \"2019-12-01-preview\",\r\n \"2019-12-01\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01-preview\",\r\n \"2019-12-01-preview\",\r\n \"2019-12-01\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01-preview\",\r\n \"2019-12-01-preview\",\r\n \"2019-12-01\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"de926fbf-e23b-41f9-ae15-c943a9cfa630\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\",\r\n \"2020-03-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2018-12-01-preview\",\r\n \"2018-09-01-preview\",\r\n \"2018-07-01\",\r\n \"2018-01-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-01-01-preview\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"denyAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\",\r\n \"2018-07-01-preview\",\r\n \"2018-07-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-09-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-06-01\",\r\n \"2019-01-01\",\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2016-12-01\",\r\n \"2016-04-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"policySetDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-06-01\",\r\n \"2019-01-01\",\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-06-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-06-01\",\r\n \"2019-01-01\",\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-06-01-preview\",\r\n \"2016-12-01\",\r\n \"2016-04-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity, SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"policyExemptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-07-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"dataAliases\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"elevateAccess\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAccess\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"findOrphanRoleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"roleAssignmentsUsageMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"privateLinkAssociations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"resourceManagementPrivateLinks\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operationStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateLinkResources\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/EventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"authorizations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-15\",\r\n \"2020-03-31\",\r\n \"2019-12-31\",\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-15\",\r\n \"2020-03-31\",\r\n \"2019-12-31\",\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-15\",\r\n \"2020-03-31\",\r\n \"2019-12-31\",\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origingroups\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-15\",\r\n \"2020-03-31\",\r\n \"2019-12-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/customdomains\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-15\",\r\n \"2020-03-31\",\r\n \"2019-12-31\",\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults/origingroupresults\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-15\",\r\n \"2020-03-31\",\r\n \"2019-12-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-15\",\r\n \"2020-03-31\",\r\n \"2019-12-31\",\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-15\",\r\n \"2020-03-31\",\r\n \"2019-12-31\",\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-15\",\r\n \"2020-03-31\",\r\n \"2019-12-31\",\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults/originresults\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-15\",\r\n \"2020-03-31\",\r\n \"2019-12-31\",\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults/customdomainresults\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-15\",\r\n \"2020-03-31\",\r\n \"2019-12-31\",\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-15\",\r\n \"2020-03-31\",\r\n \"2019-12-31\",\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkResourceUsage\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-15\",\r\n \"2020-03-31\",\r\n \"2019-12-31\",\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateProbe\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-15\",\r\n \"2020-03-31\",\r\n \"2019-12-31\",\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-15\",\r\n \"2020-03-31\",\r\n \"2019-12-31\",\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"edgenodes\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-15\",\r\n \"2020-03-31\",\r\n \"2019-12-31\",\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CdnWebApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-15\",\r\n \"2019-06-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"CdnWebApplicationFirewallManagedRuleSets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-15\",\r\n \"2019-06-15-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/virtualNetworkPeerings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/remoteVirtualNetworkPeeringProxies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01-beta\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCrossConnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCrossConnections/peerings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2018-06-01\",\r\n \"2017-11-15\",\r\n \"2017-11-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domainNames/internalLoadBalancers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Germany West Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2018-06-01\",\r\n \"2017-11-15\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/serviceCertificates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"moveSubscriptionResources\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateSubscriptionMoveAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationStatuses\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystems\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystemFamilies\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/diagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vmImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/vmImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"osImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"osPlatformImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01-beta\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ClassicInfrastructureMigrate\",\r\n \"namespace\": \"Microsoft.ClassicInfrastructureMigrate\",\r\n \"authorization\": {\r\n \"applicationId\": \"5e5abe2b-83cd-4786-826a-a05653ebb103\",\r\n \"roleDefinitionId\": \"766c4d9b-ef83-4f73-8352-1450a506a69b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicInfrastructureResources\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.CognitiveServices\",\r\n \"namespace\": \"Microsoft.CognitiveServices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"7d312290-28c8-473c-a0ed-8e53749b6d6d\",\r\n \"roleDefinitionId\": \"5cb87f79-a7c3-4a95-9414-45b65974b51b\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkSkuAvailability\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-18\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/privateLinkResources\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/privateEndpointConnections\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Commerce\",\r\n \"namespace\": \"Microsoft.Commerce\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"UsageAggregates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2015-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RateCard\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-31-preview\",\r\n \"2015-06-01-preview\",\r\n \"2015-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2015-03-31\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.DBforMySQL\",\r\n \"namespace\": \"Microsoft.DBforMySQL\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n {\r\n \"applicationId\": \"e6f9f783-1fdb-4755-acaf-abed6c642885\",\r\n \"roleDefinitionId\": \"a864a0a2-ab66-47a6-97a8-223dc1379f87\"\r\n },\r\n {\r\n \"applicationId\": \"123cd850-d9df-40bd-94d5-c9f07b7fa203\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"flexibleServers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-01-privatepreview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UAE North\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendedActionSessionsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendedActionSessionsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/topQueryStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/queryTexts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/waitStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateLinkResources\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateEndpointConnections\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/keys\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/start\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/stop\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/upgrade\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ContainerInstance\",\r\n \"namespace\": \"Microsoft.ContainerInstance\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6bb8e274-af5d-4df2-98a3-4fd78b4cafd9\",\r\n \"roleDefinitionId\": \"3c60422b-a83a-428d-9830-22609c77aa6c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"containerGroups\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"serviceAssociationLinks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/cachedImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs/environments\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Switzerland North\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-15-preview\",\r\n \"2018-09-15\",\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"schedules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Switzerland North\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-15-preview\",\r\n \"2018-09-15\",\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"labs/virtualMachines\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Switzerland North\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-15-preview\",\r\n \"2018-09-15\",\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"labs/serviceRunners\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Switzerland North\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-15-preview\",\r\n \"2018-09-15\",\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-15-preview\",\r\n \"2018-09-15\",\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-15-preview\",\r\n \"2018-09-15\",\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Switzerland North\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-15-preview\",\r\n \"2018-09-15\",\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0947a342-ab4a-43be-93b3-b8243fc161e5\",\r\n \"roleDefinitionId\": \"f0a6aa2a-e9d8-4bae-bcc2-36b405e8a5da\"\r\n },\r\n {\r\n \"applicationId\": \"5d13f7d7-0567-429c-9880-320e9555e5fc\",\r\n \"roleDefinitionId\": \"956a8f20-9168-4c71-8e27-3c0460ac39a4\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"factories\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Africa North\",\r\n \"Australia Southeast\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"factories/integrationRuntimes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Africa North\",\r\n \"Australia Southeast\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/configureFactoryRepo\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Africa North\",\r\n \"Australia Southeast\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/getFeatureValue\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Africa North\",\r\n \"Australia Southeast\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/eventGridFilters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Devices\",\r\n \"namespace\": \"Microsoft.Devices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0cd79364-7a90-4354-9984-6e36c841418d\",\r\n \"roleDefinitionId\": \"C121DF10-FE58-4BC4-97F9-8296879F7BBB\"\r\n },\r\n {\r\n \"applicationId\": \"29f411f1-b2cf-4043-8ac8-2185d7316811\"\r\n },\r\n {\r\n \"applicationId\": \"89d10474-74af-4874-99a7-c23c2f643083\",\r\n \"roleDefinitionId\": \"7df22794-26e3-4f94-9d50-a4f0f6e1cb41\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-11-04\",\r\n \"2019-09-01\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22-preview\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-09-25-preview\",\r\n \"2017-08-21-preview\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/eventGridFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-31\",\r\n \"2018-01-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/securitySettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-12-01-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"57c0fc58-a83a-41d0-8ae9-08952659bdfd\",\r\n \"roleDefinitionId\": \"FFFD5CF5-FFD3-4B24-B0E2-0715ADD4C282\"\r\n },\r\n {\r\n \"applicationId\": \"36e2398c-9dd3-4f29-9a72-d9f2cfc47ad9\",\r\n \"roleDefinitionId\": \"D5A795DE-916D-4818-B015-33C9E103E39B\"\r\n },\r\n {\r\n \"applicationId\": \"a232010e-820c-4083-83bb-3ace5fc29d0b\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01-preview\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2019-12-12\",\r\n \"2019-08-01-preview\",\r\n \"2019-08-01\",\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01-preview\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2019-12-12\",\r\n \"2019-08-01-preview\",\r\n \"2019-08-01\",\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01-preview\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2019-12-12\",\r\n \"2019-08-01-preview\",\r\n \"2019-08-01\",\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01-preview\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2019-12-12\",\r\n \"2019-08-01-preview\",\r\n \"2019-08-01\",\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01-preview\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2019-12-12\",\r\n \"2019-08-01-preview\",\r\n \"2019-08-01\",\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01-preview\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2019-12-12\",\r\n \"2019-08-01-preview\",\r\n \"2019-08-01\",\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01-preview\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2019-12-12\",\r\n \"2019-08-01-preview\",\r\n \"2019-08-01\",\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01-preview\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2019-12-12\",\r\n \"2019-08-01-preview\",\r\n \"2019-08-01\",\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/restorableDatabaseAccounts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"restorableDatabaseAccounts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventGrid\",\r\n \"namespace\": \"Microsoft.EventGrid\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"4962773b-9cdb-44cf-a8bf-237846a00ab7\",\r\n \"roleDefinitionId\": \"7FE036D8-246F-48BF-A78F-AB3EE699C8F3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/eventSubscriptions\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventSubscriptions\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"topics\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2018-09-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"domains/topics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2018-09-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topicTypes\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Brazil Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Brazil Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/topicTypes\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"extensionTopics\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationsStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"systemTopics\",\r\n \"locations\": [\r\n \"global\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"systemTopics/eventSubscriptions\",\r\n \"locations\": [\r\n \"global\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"partnerNamespaces\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"partnerTopics\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"partnerTopics/eventSubscriptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"partnerNamespaces/eventChannels\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"partnerRegistrations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\",\r\n \"roleDefinitionId\": \"eb8e1991-5de0-42a6-a64b-29b059341b7b\"\r\n },\r\n {\r\n \"applicationId\": \"6201d19e-14fb-4472-a2d6-5634a5c97568\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/networkrulesets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableClusterRegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9191c4da-09fe-49d9-a5f1-d41cbe92ad95\",\r\n \"roleDefinitionId\": \"d102a6f3-d9cb-4633-8950-1243b975886c\",\r\n \"managedByRoleDefinitionId\": \"346da55d-e1db-4a5a-89db-33ab3cdb6fc6\"\r\n },\r\n {\r\n \"applicationId\": \"7865c1d2-f040-46cc-875f-831a1ef6a28a\",\r\n \"roleDefinitionId\": \"e27c0895-d168-46d5-8b65-870eb2350378\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"South Africa North\",\r\n \"Germany West Central\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"South Africa North\",\r\n \"Germany West Central\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"South Africa North\",\r\n \"Germany West Central\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"South Africa North\",\r\n \"Germany West Central\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"South Africa North\",\r\n \"Germany West Central\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/billingSpecs\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"South Africa North\",\r\n \"Germany West Central\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"South Africa North\",\r\n \"Germany West Central\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureasyncoperations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"South Africa North\",\r\n \"Germany West Central\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateCreateRequest\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"South Africa North\",\r\n \"Germany West Central\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2018-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2018-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2018-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2018-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"integrationAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2018-07-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"integrationServiceEnvironments\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-05-01\",\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"integrationServiceEnvironments/managedApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-05-01\",\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"isolatedEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.IoTCentral\",\r\n \"namespace\": \"Microsoft.IoTCentral\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9edfcdd9-0bc5-4bd4-b287-c3afc716aac7\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"IoTApps\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Central US\",\r\n \"West Central US\",\r\n \"Australia\",\r\n \"Asia Pacific\",\r\n \"Europe\",\r\n \"Japan\",\r\n \"UK\",\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkSubdomainAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appTemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.IoTSpaces\",\r\n \"namespace\": \"Microsoft.IoTSpaces\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0b07f429-9f4b-4714-9392-cc5e8e80c8b0\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"West US 2\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"Graph\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"West US 2\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-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-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cfa8b339-82a2-471a-a3c9-0fc0be7a4093\",\r\n \"roleDefinitionId\": \"1cf9858a-28a2-4228-abba-94e606305b95\"\r\n },\r\n {\r\n \"applicationId\": \"589d5083-6f11-4d30-a62a-a4b316a14abf\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/accessPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\",\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/eventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedHSMs\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.MachineLearning\",\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Workspaces\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"webServices\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"commitmentPlans\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ManagedIdentity\",\r\n \"namespace\": \"Microsoft.ManagedIdentity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Identities\",\r\n \"locations\": [\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-30\",\r\n \"2015-08-31-PREVIEW\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"userAssignedIdentities\",\r\n \"locations\": [\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-30\",\r\n \"2015-08-31-PREVIEW\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-30\",\r\n \"2015-08-31-PREVIEW\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Media\",\r\n \"namespace\": \"Microsoft.Media\",\r\n \"authorization\": {\r\n \"applicationId\": \"374b2a64-3b6b-436b-934c-b820eacca870\",\r\n \"roleDefinitionId\": \"aab70789-0cec-44b5-95d7-84b64c9487af\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mediaservices\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Germany West Central\",\r\n \"Germany North\",\r\n \"Switzerland West\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/assets\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Germany West Central\",\r\n \"Germany North\",\r\n \"Switzerland West\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/contentKeyPolicies\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Germany West Central\",\r\n \"Germany North\",\r\n \"Switzerland West\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingLocators\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Germany West Central\",\r\n \"Germany North\",\r\n \"Switzerland West\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingPolicies\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Germany West Central\",\r\n \"Germany North\",\r\n \"Switzerland West\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/eventGridFilters\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Germany West Central\",\r\n \"Germany North\",\r\n \"Switzerland West\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Germany West Central\",\r\n \"Germany North\",\r\n \"Switzerland West\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms/jobs\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Germany West Central\",\r\n \"Germany North\",\r\n \"Switzerland West\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpoints\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Germany West Central\",\r\n \"Germany North\",\r\n \"Switzerland West\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Germany West Central\",\r\n \"Germany North\",\r\n \"Switzerland West\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents/liveOutputs\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Germany West Central\",\r\n \"Germany North\",\r\n \"Switzerland West\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpointOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Germany West Central\",\r\n \"Germany North\",\r\n \"Switzerland West\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEventOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Germany West Central\",\r\n \"Germany North\",\r\n \"Switzerland West\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveOutputOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Germany West Central\",\r\n \"Germany North\",\r\n \"Switzerland West\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/assets/assetFilters\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Germany West Central\",\r\n \"Germany North\",\r\n \"Switzerland West\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/accountFilters\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Germany West Central\",\r\n \"Germany North\",\r\n \"Switzerland West\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2018-02-05\",\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checknameavailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Germany West Central\",\r\n \"Germany North\",\r\n \"Switzerland West\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n {\r\n \"applicationId\": \"e406a681-f3d4-42a8-90b6-c2b029497af1\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deletedAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-08-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Germany West Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Germany West Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Germany West Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Germany West Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Germany West Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Germany West Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Relay\",\r\n \"namespace\": \"Microsoft.Relay\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"91bb937c-29c2-4275-982f-9465f0caf03d\",\r\n \"roleDefinitionId\": \"6ea9e989-a5f4-4187-8d11-c8db3dd04da1\"\r\n },\r\n {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/privateEndpointConnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/hybridconnections\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/hybridconnections/authorizationrules\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/wcfrelays\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/wcfrelays/authorizationrules\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-08-01-Preview\",\r\n \"2020-08-01\",\r\n \"2020-03-13\",\r\n \"2019-10-01-Preview\",\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-13\",\r\n \"2019-10-01-Preview\",\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-08-01-Preview\",\r\n \"2020-08-01\",\r\n \"2020-03-13\",\r\n \"2019-10-01-Preview\",\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-08-01-Preview\",\r\n \"2020-08-01\",\r\n \"2020-03-13\",\r\n \"2019-10-01-Preview\",\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Portal\",\r\n \"namespace\": \"Microsoft.Portal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dashboards\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2018-10-01-preview\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\",\r\n \"2018-10-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"consoles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\",\r\n \"2018-10-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/consoles\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central India\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\",\r\n \"2018-10-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"userSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\",\r\n \"2018-10-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central India\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\",\r\n \"2018-10-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Security\",\r\n \"namespace\": \"Microsoft.Security\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8edd93e1-2103-40b4-bd70-6e34e586362d\",\r\n \"roleDefinitionId\": \"855AF4C4-82F6-414C-B1A2-628025628B9A\"\r\n },\r\n {\r\n \"applicationId\": \"fc780465-2017-40d4-a0c5-307022471b92\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatuses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tasks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"secureScores\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"secureScores/secureScoreControls\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"secureScoreControls\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"secureScoreControlDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connectors\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"regulatoryComplianceStandards\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"regulatoryComplianceStandards/regulatoryComplianceControls\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"regulatoryComplianceStandards/regulatoryComplianceControls/regulatoryComplianceAssessments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-01-01\",\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertsSuppressionRules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoDismissAlertsRules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataCollectionAgents\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"pricings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"AutoProvisioningSettings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Compliances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"securityContacts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaceSettings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"complianceResults\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"policies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"assessments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"assessmentMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"subAssessments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securitySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securitySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"discoveredSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/discoveredSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"allowedConnections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allowedConnections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topologies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/topologies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securitySolutionsReferenceData\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securitySolutionsReferenceData\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"jitPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatusesSummaries\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/alerts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-01-01\",\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tasks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"externalSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/externalSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"InformationProtectionPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"advancedThreatProtectionSettings\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"sqlVulnerabilityAssessments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-07-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"deviceSecurityGroups\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"West Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"iotSecuritySolutions\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"West Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"iotDefenderSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-08-06-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"iotSensors\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-08-06-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"iotSecuritySolutions/analyticsModels\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"iotSecuritySolutions/iotAlertTypes\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"iotSecuritySolutions/iotAlerts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"iotSecuritySolutions/iotRecommendationTypes\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"iotSecuritySolutions/iotRecommendations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"iotSecuritySolutions/analyticsModels/aggregatedAlerts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"iotSecuritySolutions/analyticsModels/aggregatedRecommendations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"settings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverVulnerabilityAssessments\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2015-06-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"adaptiveNetworkHardenings\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2015-06-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"automations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"France Central\",\r\n \"France South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Germany West Central\",\r\n \"Germany North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"80a10ef9-8168-493d-abf9-3297c4ef6e3c\",\r\n \"roleDefinitionId\": \"2b7763f7-bbe2-4e19-befe-28c79f1cf7f7\"\r\n },\r\n {\r\n \"applicationId\": \"eb070ea5-bd17-41f1-ad68-5851f6e71774\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/networkrulesets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/queues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/queues/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/subscriptions/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"premiumMessagingRegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventgridfilters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ServiceFabric\",\r\n \"namespace\": \"Microsoft.ServiceFabric\",\r\n \"authorization\": {\r\n \"applicationId\": \"74cb6831-0dbb-4be1-8206-fd4df301cdc2\",\r\n \"roleDefinitionId\": \"e55cc65f-6903-4917-b4ef-f8d4640b57f5\",\r\n \"managedByRoleDefinitionId\": \"9e3af657-a8ff-583c-a75c-2fe7c4bcb635\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01-privatepreview\",\r\n \"2020-12-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-11-01-privatepreview\",\r\n \"2019-11-01-preview\",\r\n \"2019-06-01-preview\",\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01-privatepreview\",\r\n \"2020-12-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-11-01-privatepreview\",\r\n \"2019-11-01-preview\",\r\n \"2019-06-01-preview\",\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-12-01-privatepreview\",\r\n \"2020-12-01-preview\",\r\n \"2020-03-01\",\r\n \"2020-02-01-privatepreview\",\r\n \"2020-02-01-preview\",\r\n \"2019-11-01-privatepreview\",\r\n \"2019-11-01-preview\",\r\n \"2019-06-01-preview\",\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/clusterVersions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01-privatepreview\",\r\n \"2020-12-01-preview\",\r\n \"2020-03-01\",\r\n \"2020-02-01-privatepreview\",\r\n \"2020-02-01-preview\",\r\n \"2019-11-01-privatepreview\",\r\n \"2019-11-01-preview\",\r\n \"2019-06-01-preview\",\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/environments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01-privatepreview\",\r\n \"2020-12-01-preview\",\r\n \"2020-03-01\",\r\n \"2020-02-01-privatepreview\",\r\n \"2020-02-01-preview\",\r\n \"2019-11-01-privatepreview\",\r\n \"2019-11-01-preview\",\r\n \"2019-06-01-preview\",\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01-privatepreview\",\r\n \"2020-12-01-preview\",\r\n \"2020-03-01\",\r\n \"2020-02-01-privatepreview\",\r\n \"2020-02-01-preview\",\r\n \"2019-11-01-privatepreview\",\r\n \"2019-11-01-preview\",\r\n \"2019-06-01-preview\",\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01-privatepreview\",\r\n \"2020-12-01-preview\",\r\n \"2020-03-01\",\r\n \"2020-02-01-privatepreview\",\r\n \"2020-02-01-preview\",\r\n \"2019-11-01-privatepreview\",\r\n \"2019-11-01-preview\",\r\n \"2019-06-01-preview\",\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-12-01-privatepreview\",\r\n \"2020-12-01-preview\",\r\n \"2020-03-01\",\r\n \"2020-02-01-privatepreview\",\r\n \"2020-02-01-preview\",\r\n \"2019-11-01-privatepreview\",\r\n \"2019-11-01-preview\",\r\n \"2019-06-01-preview\",\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedclusters\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managedclusters/nodetypes\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedClusterOperations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedClusterOperationResults\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2018-11-01\",\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2018-11-01\",\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2018-11-01\",\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2018-11-01\",\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.TimeSeriesInsights\",\r\n \"namespace\": \"Microsoft.TimeSeriesInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"120d688d-1518-4cf7-bd38-182f158850b6\",\r\n \"roleDefinitionId\": \"5a43abdf-bb87-42c4-9e56-1c24bf364150\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"France Central\",\r\n \"South Central Us\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-15\",\r\n \"2018-08-15-preview\",\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/eventsources\",\r\n \"locations\": [\r\n \"France Central\",\r\n \"South Central Us\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-15\",\r\n \"2018-08-15-preview\",\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/referenceDataSets\",\r\n \"locations\": [\r\n \"France Central\",\r\n \"South Central Us\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-15\",\r\n \"2018-08-15-preview\",\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/accessPolicies\",\r\n \"locations\": [\r\n \"France Central\",\r\n \"South Central Us\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-15\",\r\n \"2018-08-15-preview\",\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"France Central\",\r\n \"South Central Us\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2 EUAP\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"West Central US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-02-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"account/extension\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.PolicyInsights\",\r\n \"namespace\": \"Microsoft.PolicyInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"1d78a85d-813d-46f0-b496-dd72f50a3ec0\",\r\n \"roleDefinitionId\": \"63d2b225-4c34-4641-8768-21a1f7c68ce8\"\r\n },\r\n {\r\n \"applicationId\": \"8cae6e77-e04e-42ce-b5cb-50d82bce26b1\",\r\n \"roleDefinitionId\": \"4a2d3d6b-a6ea-45e2-9882-c9ba3e726ed7\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyEvents\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"policyStates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"asyncOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"remediations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"policyTrackedResources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Kusto\",\r\n \"namespace\": \"Microsoft.Kusto\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2746ea77-4702-4b45-80ca-3c97e680e8b7\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Brazil Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-14\",\r\n \"2020-02-15\",\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/databases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Brazil Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-14\",\r\n \"2020-02-15\",\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/attacheddatabaseconfigurations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Brazil Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-14\",\r\n \"2020-02-15\",\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/principalassignments\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Brazil Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-14\",\r\n \"2020-02-15\",\r\n \"2019-11-09\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/databases/eventhubconnections\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Brazil Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-14\",\r\n \"2020-02-15\",\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/databases/dataconnections\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Brazil Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-14\",\r\n \"2020-02-15\",\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/databases/principalassignments\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Brazil Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-14\",\r\n \"2020-02-15\",\r\n \"2019-11-09\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Brazil Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-14\",\r\n \"2020-02-15\",\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-14\",\r\n \"2020-02-15\",\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Brazil Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-14\",\r\n \"2020-02-15\",\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-14\",\r\n \"2020-02-15\",\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"authorization\": {\r\n \"applicationId\": \"ea2f600a-4980-45b7-89bf-d34da487bda1\",\r\n \"roleDefinitionId\": \"54d7f2e3-5040-48a7-ae90-eebf629cfa0b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domains/domainOwnershipIdentifiers\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/84codes.CloudAMQP\",\r\n \"namespace\": \"84codes.CloudAMQP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Conexlink.MyCloudIT\",\r\n \"namespace\": \"Conexlink.MyCloudIT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/LiveArena.Broadcast\",\r\n \"namespace\": \"LiveArena.Broadcast\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Mailjet.Email\",\r\n \"namespace\": \"Mailjet.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-10-01\",\r\n \"2017-05-29\",\r\n \"2017-02-03\",\r\n \"2016-11-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\",\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\",\r\n \"2016-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.AAD\",\r\n \"namespace\": \"Microsoft.AAD\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"443155a6-77f3-45e3-882b-22b3a8d431fb\",\r\n \"roleDefinitionId\": \"7389DE79-3180-4F07-B2BA-C5BA1F01B03A\"\r\n },\r\n {\r\n \"applicationId\": \"abba844e-bc0e-44b0-947a-dc74e5d09022\",\r\n \"roleDefinitionId\": \"63BC473E-7767-42A5-A3BF-08EB71200E04\"\r\n },\r\n {\r\n \"applicationId\": \"d87dcbc6-a371-462e-88e3-28ad15ec4e64\",\r\n \"roleDefinitionId\": \"861776c5-e0df-4f95-be4f-ac1eec193323\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DomainServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"DomainServices/oucontainer\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/microsoft.aadiam\",\r\n \"namespace\": \"microsoft.aadiam\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"1b912ec3-a9dd-4c4d-a53e-76aa7adb28d7\",\r\n \"roleDefinitionId\": \"c4cfa0e8-3cb5-4ced-9c3c-efaad3348120\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"azureADMetrics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-01-preview\",\r\n \"2020-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateLinkForAzureAD\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Addons\",\r\n \"namespace\": \"Microsoft.Addons\",\r\n \"authorization\": {\r\n \"applicationId\": \"24d3987b-be4a-48e0-a3e7-11c186f39e41\",\r\n \"roleDefinitionId\": \"8004BAAB-A4CB-4981-8571-F7E44D039D93\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"supportProviders\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"addsservices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"aadsupportcases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servicehealthmetrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"anonymousapiusers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.AISupercomputer\",\r\n \"namespace\": \"Microsoft.AISupercomputer\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"349e15d0-1c96-4829-95e5-7fc8fb358ff3\",\r\n \"roleDefinitionId\": \"da5c10f8-3b94-4076-bb95-1421b4518aee\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceTypeSeries\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceTypeSeries/instanceTypes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.AnalysisServices\",\r\n \"namespace\": \"Microsoft.AnalysisServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"4ac7d521-0382-477b-b0f8-7e1d95f85ca2\",\r\n \"roleDefinitionId\": \"490d5987-bcf6-4be6-b6b2-056a78cb693a\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Attestation\",\r\n \"namespace\": \"Microsoft.Attestation\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c61423b7-1d1f-430d-b444-0eee53298103\",\r\n \"roleDefinitionId\": \"7299b0b1-11da-4858-8943-7db197005959\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"attestationProviders\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"defaultProviders\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"East US\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/defaultProvider\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"East US\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Automanage\",\r\n \"namespace\": \"Microsoft.Automanage\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9ae330ab-d710-466b-851c-c828e7340846\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"configurationProfileAssignments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"configurationProfilePreferences\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-30-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.AutonomousSystems\",\r\n \"namespace\": \"Microsoft.AutonomousSystems\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a967240f-810b-4f79-85e5-25870cc69cbb\",\r\n \"roleDefinitionId\": \"47b23f55-5e18-4fc7-a69a-f9b79a9811ea\",\r\n \"managedByRoleDefinitionId\": \"6ee14824-e3a8-4536-ad65-346e3406f3c4\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/validateCreateRequest\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.AVS\",\r\n \"namespace\": \"Microsoft.AVS\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"608f9929-9737-432e-860f-4e1c1821052f\",\r\n \"roleDefinitionId\": \"a12e1b40-7eca-4c51-be1d-d8bc564dcfdd\",\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"VMCP\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-20\",\r\n \"2019-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-20\",\r\n \"2019-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkTrialAvailability\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-20\",\r\n \"2019-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkQuotaAvailability\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-20\",\r\n \"2019-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateClouds\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-20\",\r\n \"2019-08-09-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateClouds/clusters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-20\",\r\n \"2019-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateClouds/authorizations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateClouds/hcxEnterpriseSites\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-20\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.AzureActiveDirectory\",\r\n \"namespace\": \"Microsoft.AzureActiveDirectory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"guestUsages\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"b2cDirectories\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01-preview\",\r\n \"2019-01-01-privatepreview\",\r\n \"2017-01-30\",\r\n \"2016-12-13-preview\",\r\n \"2016-02-10-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01-preview\",\r\n \"2019-01-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01-preview\",\r\n \"2019-01-01-privatepreview\",\r\n \"2017-01-30\",\r\n \"2016-12-13-preview\",\r\n \"2016-02-10-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"b2ctenants\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01-preview\",\r\n \"2016-02-10-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.AzureData\",\r\n \"namespace\": \"Microsoft.AzureData\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"bb55177b-a7d9-4939-a257-8ab53a3b2bc6\",\r\n \"roleDefinitionId\": \"f83de625-af9e-4458-ac9c-e5d62b05fd06\"\r\n },\r\n {\r\n \"applicationId\": \"a12e8ccb-0fcd-46f8-b6a1-b9df7a9d7231\",\r\n \"roleDefinitionId\": \"f83de625-af9e-4458-ac9c-e5d62b05fd06\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sqlServerRegistrations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-10-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"South Africa North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-10-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sqlServerRegistrations/sqlServers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"South Africa North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-10-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataControllers\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-24-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"postgresInstances\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-24-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"sqlManagedInstances\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-24-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"sqlServerInstances\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-24-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.AzureStack\",\r\n \"namespace\": \"Microsoft.AzureStack\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01-preview\",\r\n \"2017-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registrations/products\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrations/customerSubscriptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudManifestFiles\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.AzureStackHCI\",\r\n \"namespace\": \"Microsoft.AzureStackHCI\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"1412d89f-b8a8-4111-b4fd-e82905cbd85d\",\r\n \"roleDefinitionId\": \"90ffa33f-4875-44d8-b86f-d41c3aa6050e\"\r\n },\r\n {\r\n \"applicationId\": \"1322e676-dee7-41ee-a874-ac923822781c\",\r\n \"roleDefinitionId\": \"e91a9804-9f4d-4501-bf85-03bd4ea78451\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-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 \"2020-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.BatchAI\",\r\n \"namespace\": \"Microsoft.BatchAI\",\r\n \"authorization\": {\r\n \"applicationId\": \"9fcb3732-5f52-4135-8c08-9d4bbaf203ea\",\r\n \"roleDefinitionId\": \"703B89C7-CE2C-431B-BDD8-FA34E39AF696\",\r\n \"managedByRoleDefinitionId\": \"90B8E153-EBFF-4073-A95F-4DAD56B14C78\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/clusters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/fileservers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments/jobs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"fileservers\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Billing\",\r\n \"namespace\": \"Microsoft.Billing\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"80dbdb39-4f33-4799-8b6f-711b5e3e61b6\",\r\n \"roleDefinitionId\": \"acdc79db-513f-461d-a542-61908d543bdc\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"billingPeriods\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"invoices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingRoleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"billingRoleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"createBillingRoleAssignment\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/createBillingRoleAssignment\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/createBillingRoleAssignment\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/createBillingRoleAssignment\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingPermissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingRoleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingRoleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingPermissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\",\r\n \"2018-06-30\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/billingRoleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/billingRoleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/billingPermissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/customers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/instructions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers/billingSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers/products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers/transactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/billingRoleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/billingRoleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/billingPermissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers/billingPermissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/elevate\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/createInvoiceSectionOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/patchOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/patchOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/productMoveOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/billingSubscriptionMoveOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/listInvoiceSectionsWithCreateSubscriptionPermission\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/BillingProfiles/patchOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-06-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/departments/billingRoleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/departments/billingRoleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/departments/billingPermissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/enrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-06-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/enrollmentAccounts/billingRoleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/enrollmentAccounts/billingRoleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/enrollmentAccounts/billingPermissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/paymentMethods\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/availableBalance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/transactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/transactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/transactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/transactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoices/transactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoices/transactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingSubscriptions/invoices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/billingSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/billingSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/billingSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/products/updateAutoRenew\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/products/updateAutoRenew\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\",\r\n \"2018-06-30\",\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/initiateTransfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/initiateTransfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/transfers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/transfers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"transfers/acceptTransfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"transfers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"transfers/declineTransfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"transfers/validateTransfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers/initiateTransfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers/transfers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingProperty\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/policies\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers/policies\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoices/pricesheet\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/pricesheet\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/pricesheetDownloadOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/billingSubscriptions/transfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/products/transfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/products/transfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/productTransfersResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"transfers/operationStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/agreements\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/lineOfCredit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/paymentMethods\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/validateDetachPaymentMethodEligibility\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateAddress\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Blockchain\",\r\n \"namespace\": \"Microsoft.Blockchain\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"78827f38-7b69-4d5e-a627-d6fdd9c759a0\",\r\n \"roleDefinitionId\": \"9c68eaf3-8315-4e5c-b857-641b16b21f8f\"\r\n },\r\n {\r\n \"applicationId\": \"049d4938-2ef2-4274-aa8f-630fc9bc33d1\",\r\n \"roleDefinitionId\": \"c6dd0893-0495-488a-ac21-ee5f1ba89769\"\r\n },\r\n {\r\n \"applicationId\": \"911e905a-a50e-4c94-9f7c-48bb12f549ed\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"watchers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"blockchainMembers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Japan East\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/watcherOperationResults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/blockchainMemberOperationResults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Japan East\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Japan East\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/listConsortiums\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Japan East\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cordaMembers\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.BlockchainTokens\",\r\n \"namespace\": \"Microsoft.BlockchainTokens\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Blueprint\",\r\n \"namespace\": \"Microsoft.Blueprint\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"f71766dc-90d9-4b7d-bd9d-4499c4331c3f\",\r\n \"roleDefinitionId\": \"cb180127-cf6d-4672-9e75-e29a487f9658\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"blueprints\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\",\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"blueprints/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\",\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\",\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\",\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\",\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity, SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments/assignmentOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\",\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.BotService\",\r\n \"namespace\": \"Microsoft.BotService\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"f3723d34-6ff5-4ceb-a148-d99dcd2511fc\",\r\n \"roleDefinitionId\": \"71213c26-43ed-41d8-9905-3c12971517a3\"\r\n },\r\n {\r\n \"applicationId\": \"27a762be-14e7-4f92-899c-151877d6d497\",\r\n \"roleDefinitionId\": \"aab320d1-5b9b-4748-982e-be803163df77\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"botServices\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"botServices/channels\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"botServices/connections\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAuthServiceProviders\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Capacity\",\r\n \"namespace\": \"Microsoft.Capacity\",\r\n \"authorization\": {\r\n \"applicationId\": \"4d0ad6c7-f6c3-46d8-ab0d-1406d5e6c86b\",\r\n \"roleDefinitionId\": \"FD9C0A9A-4DB9-4F41-8A61-98385DEB6E2D\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-06-01\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01-beta\",\r\n \"2020-06-01\",\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01-beta\",\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listbenefits\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01-beta\",\r\n \"2020-06-01\",\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations/revisions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01-beta\",\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appliedReservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01-beta\",\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01-beta\",\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01-beta\",\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatePrice\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01-beta\",\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculateExchange\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"exchange\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01-beta\",\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/calculateRefund\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01-beta\",\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/return\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01-beta\",\r\n \"2020-06-01\",\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/split\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01-beta\",\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/merge\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01-beta\",\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/swap\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateReservationOrder\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01-beta\",\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/availableScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01-beta\",\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations/availableScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"commercialReservationOrders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatePurchasePrice\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01-privatepreview\",\r\n \"2019-06-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"placePurchaseOrder\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01-privatepreview\",\r\n \"2019-06-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkPurchaseStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01-privatepreview\",\r\n \"2019-06-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ownReservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.CertificateRegistration\",\r\n \"namespace\": \"Microsoft.CertificateRegistration\",\r\n \"authorization\": {\r\n \"applicationId\": \"f3c21649-0979-4721-ac85-b0216b2cf413\",\r\n \"roleDefinitionId\": \"933fba7e-2ed3-4da8-973d-8bd8298a9b40\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"certificateOrders\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"certificateOrders/certificates\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateCertificateRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ClassicSubscription\",\r\n \"namespace\": \"Microsoft.ClassicSubscription\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Codespaces\",\r\n \"namespace\": \"Microsoft.Codespaces\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9bd5ab7f-4031-4045-ace9-6bebbad202f6\",\r\n \"roleDefinitionId\": \"59cd8abb-1e79-437f-9a05-4bca235c4c35\"\r\n },\r\n {\r\n \"applicationId\": \"48ef7923-268f-473d-bcf1-07f0997961f4\",\r\n \"roleDefinitionId\": \"59cd8abb-1e79-437f-9a05-4bca235c4c35\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"plans\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West Us 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-10-beta\",\r\n \"2020-07-10-alpha\",\r\n \"2020-06-16-beta\",\r\n \"2020-06-16-alpha\",\r\n \"2020-06-16\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-07-10-privatepreview\",\r\n \"2020-07-10-beta\",\r\n \"2020-07-10-alpha\",\r\n \"2020-06-16-privatepreview\",\r\n \"2020-06-16-beta\",\r\n \"2020-06-16-alpha\",\r\n \"2020-06-16\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registeredSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-07-10-privatepreview\",\r\n \"2020-07-10-beta\",\r\n \"2020-07-10-alpha\",\r\n \"2020-06-16-privatepreview\",\r\n \"2020-06-16-beta\",\r\n \"2020-06-16-alpha\",\r\n \"2020-06-16\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ConnectedCache\",\r\n \"namespace\": \"Microsoft.ConnectedCache\",\r\n \"authorizations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"CacheNodes\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Consumption\",\r\n \"namespace\": \"Microsoft.Consumption\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c5b17a4f-cc6f-4649-9480-684280a2af3a\",\r\n \"roleDefinitionId\": \"4a2e6ae9-2713-4cc9-a3b3-312899d687c3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Forecasts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"AggregatedCost\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"ReservationRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"ReservationRecommendationDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"ReservationSummaries\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"ReservationTransactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Balances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Marketplaces\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Pricesheets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"ReservationDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Budgets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\",\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-12-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"CostTags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-12-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-08-01-preview\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Terms\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"UsageDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-05-01\",\r\n \"2019-04-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-12-01-preview\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\",\r\n \"2017-04-24-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Charges\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"credits\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"events\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"lots\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"OperationStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-05-01\",\r\n \"2019-04-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"OperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-05-01\",\r\n \"2019-04-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.CostManagement\",\r\n \"namespace\": \"Microsoft.CostManagement\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"3184af01-7a88-49e0-8b55-8ecdce0aa950\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Connectors\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"CloudConnectors\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CheckConnectorEligibility\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalBillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalBillingAccounts/Dimensions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalBillingAccounts/Query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalSubscriptions/Dimensions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalSubscriptions/Query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Forecast\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\",\r\n \"2018-12-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"ExternalSubscriptions/Forecast\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\",\r\n \"2018-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalBillingAccounts/Forecast\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\",\r\n \"2018-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Settings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-08-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"register\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-12-01-preview\",\r\n \"2018-10-01-preview\",\r\n \"2018-08-31\",\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Dimensions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-12-01-preview\",\r\n \"2018-10-01-preview\",\r\n \"2018-08-31\",\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Budgets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"ExternalSubscriptions/Alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalBillingAccounts/Alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"showbackRules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\",\r\n \"2019-02-03-alpha\",\r\n \"2019-02-02-alpha\",\r\n \"2019-02-01-alpha\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"costAllocationRules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Exports\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2020-05-01-preview\",\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-09-01\",\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Reports\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-12-01-preview\",\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Reportconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"EnrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Views\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Insights\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.CostManagementExports\",\r\n \"namespace\": \"Microsoft.CostManagementExports\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e5408ad0-c4e2-43aa-b6f2-3b4951286d99\",\r\n \"roleDefinitionId\": \"5e4888b3-2747-4e5b-9897-ec0865b91bcf\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.CustomerLockbox\",\r\n \"namespace\": \"Microsoft.CustomerLockbox\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a0551534-cfc9-4e1f-9a7a-65093b32bb38\",\r\n \"roleDefinitionId\": \"114bcfb6-5524-4d80-948a-d8a9937bc3e5\"\r\n },\r\n {\r\n \"applicationId\": \"01fc33a7-78ba-4d2f-a4b7-768e336e890e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"requests\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.CustomProviders\",\r\n \"namespace\": \"Microsoft.CustomProviders\",\r\n \"authorization\": {\r\n \"applicationId\": \"bf8eb16c-7ba7-4b47-86be-ac5e4b2007a5\",\r\n \"roleDefinitionId\": \"FACF09C9-A5D0-4D34-8B1F-B623AC29C6F7\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceProviders\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"associations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatuses\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.D365CustomerInsights\",\r\n \"namespace\": \"Microsoft.D365CustomerInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-10-privatepreview\",\r\n \"2020-06-10-preview\",\r\n \"2020-06-10-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.DataBox\",\r\n \"namespace\": \"Microsoft.DataBox\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"5613cb5c-a7c9-4099-8034-511fd7616cb2\",\r\n \"roleDefinitionId\": \"382D72D1-63DC-4243-9B99-CB69FDD473D8\",\r\n \"managedByRoleDefinitionId\": \"f4c0a4f9-768c-4927-ab83-d319111d6ef4\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateAddress\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableSkus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateInputs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/regionConfiguration\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.DataBoxEdge\",\r\n \"namespace\": \"Microsoft.DataBoxEdge\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2368d027-f996-4edb-bf48-928f98f2ab8c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-01-preview\",\r\n \"2020-09-01\",\r\n \"2020-07-01-preview\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01-preview\",\r\n \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-01-preview\",\r\n \"2020-09-01\",\r\n \"2020-07-01-preview\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01-preview\",\r\n \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-01-preview\",\r\n \"2020-09-01\",\r\n \"2020-07-01-preview\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01-preview\",\r\n \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableSkus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-09-01-preview\",\r\n \"2020-09-01\",\r\n \"2020-07-01-preview\",\r\n \"2020-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"authorization\": {\r\n \"applicationId\": \"213f5f78-fb30-46c7-9e98-91c720a1c026\",\r\n \"roleDefinitionId\": \"D55E2225-A6AB-481C-A5BE-1B7687C293FA\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.DataCollaboration\",\r\n \"namespace\": \"Microsoft.DataCollaboration\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cc451ba-a8ec-496f-bdff-591f5ae2876c\",\r\n \"roleDefinitionId\": \"fdf757e9-19df-4152-a1ae-5e719161cd12\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"listinvitations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/consumerInvitations/reject\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/consumerInvitations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-04-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.DataMigration\",\r\n \"namespace\": \"Microsoft.DataMigration\",\r\n \"authorization\": {\r\n \"applicationId\": \"a4bad4aa-bf02-4631-9f78-a64ffdba8150\",\r\n \"roleDefinitionId\": \"b831a21d-db98-4760-89cb-bef871952df1\",\r\n \"managedByRoleDefinitionId\": \"6256fb55-9e59-4018-a9e1-76b11c0a4c89\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"services/projects\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatuses\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.DataProtection\",\r\n \"namespace\": \"Microsoft.DataProtection\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-alpha\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatus\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ResourceOperationGateKeepers\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-alpha\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.DataShare\",\r\n \"namespace\": \"Microsoft.DataShare\",\r\n \"authorization\": {\r\n \"applicationId\": \"799f1985-1517-4fe1-af2b-ba3d87d4996b\",\r\n \"roleDefinitionId\": \"0146496b-e06f-439a-83be-49fac884edf5\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/shares\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/shares/datasets\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/shares/synchronizationSettings\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/shares/invitations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/sharesubscriptions\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/shares/providersharesubscriptions\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/sharesubscriptions/datasetmappings\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/sharesubscriptions/triggers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/sharesubscriptions/consumerSourceDataSets\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listinvitations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/rejectInvitation\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/consumerInvitations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2018-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.DBforMariaDB\",\r\n \"namespace\": \"Microsoft.DBforMariaDB\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n {\r\n \"applicationId\": \"123cd850-d9df-40bd-94d5-c9f07b7fa203\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendedActionSessionsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendedActionSessionsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/topQueryStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/queryTexts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/waitStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateLinkResources\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateEndpointConnections\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/keys\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.DBforPostgreSQL\",\r\n \"namespace\": \"Microsoft.DBforPostgreSQL\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n {\r\n \"applicationId\": \"93efed00-6552-4119-833a-422b297199f9\",\r\n \"roleDefinitionId\": \"a864a0a2-ab66-47a6-97a8-223dc1379f87\"\r\n },\r\n {\r\n \"applicationId\": \"123cd850-d9df-40bd-94d5-c9f07b7fa203\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"serversv2\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-29-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverGroups\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-29-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"flexibleServers\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-14-privatepreview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkVirtualNetworkSubnetUsage\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-29-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendedActionSessionsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendedActionSessionsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/topQueryStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/queryTexts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/waitStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateLinkResources\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateEndpointConnections\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/keys\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.DeploymentManager\",\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"5b306cba-9c71-49db-96c3-d17ca2379c4d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"artifactSources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serviceTopologies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serviceTopologies/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serviceTopologies/services/serviceUnits\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"steps\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.DesktopVirtualization\",\r\n \"namespace\": \"Microsoft.DesktopVirtualization\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"50e95039-b200-4007-bc97-8d5790743a63\",\r\n \"roleDefinitionId\": \"CAD30215-AD1C-43BF-BE90-7BFA8B493E62\"\r\n },\r\n {\r\n \"applicationId\": \"9cdead84-a844-4324-93f2-b2e6bb768d07\"\r\n },\r\n {\r\n \"applicationId\": \"a85cf173-4192-42f8-81fa-777a763e6e2c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-10-preview\",\r\n \"2019-09-24-preview\",\r\n \"2019-01-23-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationgroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-10-preview\",\r\n \"2019-09-24-preview\",\r\n \"2019-01-23-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationgroups/applications\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-10-preview\",\r\n \"2019-09-24-preview\",\r\n \"2019-01-23-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationgroups/desktops\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-10-preview\",\r\n \"2019-09-24-preview\",\r\n \"2019-01-23-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationgroups/startmenuitems\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-10-preview\",\r\n \"2019-09-24-preview\",\r\n \"2019-01-23-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostpools\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-10-preview\",\r\n \"2019-09-24-preview\",\r\n \"2019-01-23-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hostpools/sessionhosts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-10-preview\",\r\n \"2019-09-24-preview\",\r\n \"2019-01-23-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostpools/sessionhosts/usersessions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-10-preview\",\r\n \"2019-09-24-preview\",\r\n \"2019-01-23-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostpools/usersessions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-10-preview\",\r\n \"2019-09-24-preview\",\r\n \"2019-01-23-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-10-preview\",\r\n \"2019-09-24-preview\",\r\n \"2019-01-23-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.DeviceUpdate\",\r\n \"namespace\": \"Microsoft.DeviceUpdate\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6ee392c4-d339-4083-b04d-6b7947c6cf78\",\r\n \"roleDefinitionId\": \"a7c9caf5-ee6d-4cdd-94e0-917c34a027ec\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.DevOps\",\r\n \"namespace\": \"Microsoft.DevOps\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"pipelines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-13-preview\",\r\n \"2019-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.DevSpaces\",\r\n \"namespace\": \"Microsoft.DevSpaces\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"controllers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia SouthEast\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"controllers/listConnectionDetails\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia SouthEast\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia SouthEast\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia SouthEast\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia SouthEast\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkContainerHostMapping\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia SouthEast\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.DigitalTwins\",\r\n \"namespace\": \"Microsoft.DigitalTwins\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0b07f429-9f4b-4714-9392-cc5e8e80c8b0\"\r\n },\r\n {\r\n \"applicationId\": \"c115998b-3d59-49b4-b55b-042a9ba1dbfe\",\r\n \"roleDefinitionId\": \"07af60d1-cd6d-4ad4-9b56-ece6c78a3fe1\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"digitalTwinsInstances\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"digitalTwinsInstances/operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"digitalTwinsInstances/endpoints\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EnterpriseKnowledgeGraph\",\r\n \"namespace\": \"Microsoft.EnterpriseKnowledgeGraph\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-03\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-03\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-03\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-03\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Experimentation\",\r\n \"namespace\": \"Microsoft.Experimentation\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e00d2f8a-f6c8-46e4-b379-e66082e28ca8\",\r\n \"roleDefinitionId\": \"d3a360d9-17f9-410e-9465-5c914c8cf570\",\r\n \"managedByRoleDefinitionId\": \"fa096ccd-4e8f-49de-9594-64449b3ac6b3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ExtendedLocation\",\r\n \"namespace\": \"Microsoft.ExtendedLocation\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"bc313c14-388c-4e7d-a58e-70017303ee3b\",\r\n \"roleDefinitionId\": \"a775b938-2819-4dd0-8067-01f6e3b06392\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-07-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-07-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Falcon\",\r\n \"namespace\": \"Microsoft.Falcon\",\r\n \"authorizations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-20-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"featureProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-09-01\",\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptionFeatureRegistrations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-09-01\",\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.HanaOnAzure\",\r\n \"namespace\": \"Microsoft.HanaOnAzure\",\r\n \"authorization\": {\r\n \"applicationId\": \"cc5476ec-3074-44d1-8461-711f5d9b0e39\",\r\n \"roleDefinitionId\": \"4a10987e-dbcf-4c3d-8e3d-7ddcd9c771c2\",\r\n \"managedByRoleDefinitionId\": \"9e3af657-a8ff-583c-a75c-2fe7c4bcb635\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"hanaInstances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-03-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sapMonitors\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-03-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-03-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-03-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-03-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-03-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.HardwareSecurityModules\",\r\n \"namespace\": \"Microsoft.HardwareSecurityModules\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0eb690b7-d23e-4fb0-b43e-cd161ac80cc3\",\r\n \"roleDefinitionId\": \"48397dc8-3910-486a-8165-ab2df987447f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-31-preview\",\r\n \"2018-10-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-31-preview\",\r\n \"2018-10-31\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.HealthcareApis\",\r\n \"namespace\": \"Microsoft.HealthcareApis\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"4f6778d8-5aef-43dc-a1ff-b073724b9495\"\r\n },\r\n {\r\n \"applicationId\": \"3274406e-4e0a-4852-ba4f-d7226630abb7\",\r\n \"roleDefinitionId\": \"e39edba5-cde8-4529-ba1f-159138220220\"\r\n },\r\n {\r\n \"applicationId\": \"894b1496-c6e0-4001-b69c-81b327564ca4\",\r\n \"roleDefinitionId\": \"c69c1f48-8535-41e7-9667-539790b1c663\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"UK West\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-16\",\r\n \"2018-08-20-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"services/iomtconnectors\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"UK West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"services/iomtconnectors/connections\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"UK West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"services/iomtconnectors/mappings\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"UK West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"UK West\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-16\",\r\n \"2018-08-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"UK West\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01-preview\",\r\n \"2019-09-16\",\r\n \"2018-08-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"UK West\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-16\",\r\n \"2018-08-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"UK West\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-30\",\r\n \"2019-09-16\",\r\n \"2018-08-20-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.HybridCompute\",\r\n \"namespace\": \"Microsoft.HybridCompute\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8c420feb-03df-47cc-8a05-55df0cf3064b\",\r\n \"roleDefinitionId\": \"83eeb1c6-47f8-4da2-bbc3-42a7ac767360\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"machines\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-08-02\",\r\n \"2020-07-30-preview\",\r\n \"2020-03-11-preview\",\r\n \"2019-12-12\",\r\n \"2019-08-02-preview\",\r\n \"2019-03-18-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"machines/extensions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-08-02\",\r\n \"2020-07-30-preview\",\r\n \"2020-03-11-preview\",\r\n \"2019-12-12\",\r\n \"2019-08-02-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-08-02\",\r\n \"2020-07-30-preview\",\r\n \"2020-03-11-preview\",\r\n \"2019-12-12\",\r\n \"2019-08-02-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatus\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-08-02\",\r\n \"2020-07-30-preview\",\r\n \"2020-03-11-preview\",\r\n \"2019-12-12\",\r\n \"2019-08-02-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-08-02\",\r\n \"2020-07-30-preview\",\r\n \"2020-03-11-preview\",\r\n \"2019-12-12\",\r\n \"2019-08-02-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-08-02\",\r\n \"2020-07-30-preview\",\r\n \"2020-03-11-preview\",\r\n \"2019-12-12\",\r\n \"2019-08-02-preview\",\r\n \"2019-03-18-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.HybridData\",\r\n \"namespace\": \"Microsoft.HybridData\",\r\n \"authorization\": {\r\n \"applicationId\": \"621269cf-1195-44a3-a835-c613d103dd15\",\r\n \"roleDefinitionId\": \"00320cd4-8823-47f2-bbe4-5c9da031311d\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataManagers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2016-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.HybridNetwork\",\r\n \"namespace\": \"Microsoft.HybridNetwork\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"b8ed041c-aa91-418e-8f47-20c70abc2de1\",\r\n \"roleDefinitionId\": \"b193432e-9b7e-4885-b2c0-052afdceace3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ImportExport\",\r\n \"namespace\": \"Microsoft.ImportExport\",\r\n \"authorization\": {\r\n \"applicationId\": \"7de4d5c5-5b32-4235-b8a9-33b34d6bcd2a\",\r\n \"roleDefinitionId\": \"9f7aa6bb-9454-46b6-8c01-a4b0f33ca151\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-08-01\",\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-08-01\",\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-08-01\",\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-08-01\",\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.IndustryDataLifecycle\",\r\n \"namespace\": \"Microsoft.IndustryDataLifecycle\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"3072002f-3e97-4979-91f2-09fe40da755d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"custodianCollaboratives/termsOfUseDocuments\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-12-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"custodianCollaboratives/collaborativeImage\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-12-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"custodianCollaboratives/invitations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-12-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"custodianCollaboratives/invitations/termsOfUseDocuments\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-12-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"memberCollaboratives\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-12-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"collaborativeInvitations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-12-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-12-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/rejectInvitation\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-12-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/downloadInvitationFile\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-12-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataproviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-12-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataPackages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-12-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"memberCollaboratives/sharedDataPackages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-12-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"custodianCollaboratives/receivedDataPackages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-12-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-12-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.LabServices\",\r\n \"namespace\": \"Microsoft.LabServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labaccounts\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2018-10-15\",\r\n \"2017-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2018-10-15\",\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2018-10-15\",\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"users\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2019-01-01-beta\",\r\n \"2019-01-01-alpha\",\r\n \"2018-10-15\",\r\n \"2017-12-01-preview\",\r\n \"2017-12-01-beta\",\r\n \"2017-12-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2018-10-15\",\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Maintenance\",\r\n \"namespace\": \"Microsoft.Maintenance\",\r\n \"authorization\": {\r\n \"applicationId\": \"f18474f2-a66a-4bb0-a3c9-9b8d892092fa\",\r\n \"roleDefinitionId\": \"2f1ef7b0-d5c4-4d3c-98fa-6a9fa8e74aa5\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"maintenanceConfigurations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-01-preview\",\r\n \"2020-04-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01-preview\",\r\n \"2017-04-26\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"updates\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-01-preview\",\r\n \"2020-04-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01-preview\",\r\n \"2017-04-26\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"configurationAssignments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-01-preview\",\r\n \"2020-04-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01-preview\",\r\n \"2017-04-26\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"applyUpdates\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-01-preview\",\r\n \"2020-04-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01-preview\",\r\n \"2017-04-26\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"publicMaintenanceConfigurations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ManagedServices\",\r\n \"namespace\": \"Microsoft.ManagedServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"66c6d0d1-f2e7-4a18-97a9-ed10f3347016\",\r\n \"roleDefinitionId\": \"1e86f807-6ec0-40b3-8b5f-686b7e43a0a2\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01-preview\",\r\n \"2019-09-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"marketplaceRegistrationDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01-preview\",\r\n \"2019-09-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrationDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01-preview\",\r\n \"2019-09-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01-preview\",\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"registrationAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01-preview\",\r\n \"2019-09-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01-preview\",\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operationStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01-preview\",\r\n \"2019-09-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Management\",\r\n \"namespace\": \"Microsoft.Management\",\r\n \"authorization\": {\r\n \"applicationId\": \"f2c304cf-8e7e-4c3f-8164-16299ad9d272\",\r\n \"roleDefinitionId\": \"c1cf3708-588a-4647-be7f-f400bbe214cf\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managementGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"getEntities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managementGroups/settings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-02-01\",\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults/asyncOperation\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenantBackfillStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"startTenantBackfill\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Maps\",\r\n \"namespace\": \"Microsoft.Maps\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"608f6f31-fed0-4f7b-809f-90f6c9b3de78\",\r\n \"roleDefinitionId\": \"3431F0E6-63BC-482D-A96E-0AB819610A5F\"\r\n },\r\n {\r\n \"applicationId\": \"ba1ea022-5807-41d5-bbeb-292c7e1cf5f6\",\r\n \"roleDefinitionId\": \"48195074-b752-4868-be0f-7c324a224aa1\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-01-preview\",\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/privateAtlases\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/eventGridFilters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01-preview\",\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01-preview\",\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a0e1e353-1a3e-42cf-a8ea-3a9746eec58c\"\r\n },\r\n {\r\n \"applicationId\": \"a5ce81bb-67c7-4043-952a-22004782adb5\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"register\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privategalleryitems\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"macc\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs/importImage\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/agreements\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAvailableOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishers/offers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishers/offers/amendments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateStoreClient\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-beta\",\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateStores\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateStores/offers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.MarketplaceApps\",\r\n \"namespace\": \"Microsoft.MarketplaceApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicDevServices\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offertypes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Migrate\",\r\n \"namespace\": \"Microsoft.Migrate\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3bfd6ac-eace-4438-9dc1-eed439e738de\",\r\n \"roleDefinitionId\": \"e88f4159-1d71-4b12-8ef0-38c039cb051e\"\r\n },\r\n {\r\n \"applicationId\": \"51df634f-ddb4-4901-8a2d-52f6393a796b\",\r\n \"roleDefinitionId\": \"d7568dc2-2265-41f7-9c0f-1e9c7862ca62\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"projects\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"migrateprojects\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-06-01\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"assessmentProjects\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01-preview\",\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2018-06-30-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2018-06-30-preview\",\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/assessmentOptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"moveCollections\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.MixedReality\",\r\n \"namespace\": \"Microsoft.MixedReality\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c7ddd9b4-5172-4e28-bd29-1e0792947d18\",\r\n \"roleDefinitionId\": \"b67ee066-e058-4ddb-92bc-83cdd74bc38a\"\r\n },\r\n {\r\n \"applicationId\": \"a15bc1de-f777-408f-9d2b-a27ed19c72ba\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-06-preview\",\r\n \"2019-12-02-preview\",\r\n \"2019-02-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-06-preview\",\r\n \"2019-12-02-preview\",\r\n \"2019-02-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-06-preview\",\r\n \"2019-12-02-preview\",\r\n \"2019-02-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"spatialAnchorsAccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-12-02-preview\",\r\n \"2019-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"remoteRenderingAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-06-preview\",\r\n \"2019-12-02-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.NetApp\",\r\n \"namespace\": \"Microsoft.NetApp\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"12fb057d-b751-47cd-857c-f2934bb677b4\",\r\n \"roleDefinitionId\": \"e4796bef-6b6d-4cbc-ba1e-27f1a308d860\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UAE Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West US (Stage)\",\r\n \"West US 2 (Stage)\",\r\n \"South Central US (Stage)\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01\",\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2017-08-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01\",\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-08-01\",\r\n \"2019-07-15-preview\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2017-08-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ObjectStore\",\r\n \"namespace\": \"Microsoft.ObjectStore\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"osNamespaces\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.OffAzure\",\r\n \"namespace\": \"Microsoft.OffAzure\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"728a93e3-065d-4678-93b1-3cc281223341\",\r\n \"roleDefinitionId\": \"b9967bf7-a345-4af8-95f0-49916f760fc6\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"VMwareSites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\",\r\n \"2019-06-06\",\r\n \"2019-05-01-preview\",\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"HyperVSites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-06-06\",\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ServerSites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-05-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ImportSites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2020-01-01-preview\",\r\n \"2019-05-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-06-06\",\r\n \"2018-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Peering\",\r\n \"namespace\": \"Microsoft.Peering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"peerings\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"East Asia\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West India\",\r\n \"South India\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"peeringLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"legacyPeerings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"peerAsns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"peeringServices\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"East Asia\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West India\",\r\n \"South India\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"peeringServiceCountries\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"peeringServiceLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"peeringServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceProviderAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.PowerBI\",\r\n \"namespace\": \"Microsoft.PowerBI\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"00000009-0000-0000-c000-000000000000\",\r\n \"roleDefinitionId\": \"d2079c0c-4a98-48b1-b511-eae3fc2003ab\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaceCollections\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateLinkServicesForPowerBI\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"privateLinkServicesForPowerBI/operationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2016-01-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.PowerBIDedicated\",\r\n \"namespace\": \"Microsoft.PowerBIDedicated\",\r\n \"authorization\": {\r\n \"applicationId\": \"4ac7d521-0382-477b-b0f8-7e1d95f85ca2\",\r\n \"roleDefinitionId\": \"490d5987-bcf6-4be6-b6b2-056a78cb693a\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"capacities\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"Germany West Central\",\r\n \"Germany North\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Canada East\",\r\n \"South Africa West\",\r\n \"UK West\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"Germany West Central\",\r\n \"Germany North\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South Africa West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"Germany West Central\",\r\n \"Germany North\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"Germany West Central\",\r\n \"Germany North\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.PowerPlatform\",\r\n \"namespace\": \"Microsoft.PowerPlatform\",\r\n \"authorization\": {\r\n \"applicationId\": \"e64bd61e-5424-451f-b666-e02ee2878437\",\r\n \"roleDefinitionId\": \"51598b27-f396-476b-b212-90d7da526159\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ProjectBabylon\",\r\n \"namespace\": \"Microsoft.ProjectBabylon\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"73c2949e-da2d-457a-9607-fcc665198967\",\r\n \"roleDefinitionId\": \"1BC09725-0C9B-4F57-A3D0-FCCF4EB40120\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ProviderHub\",\r\n \"namespace\": \"Microsoft.ProviderHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"providerRegistrations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerRegistrations/resourceTypeRegistrations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01-preview\",\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerRegistrations/defaultRollouts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"availableAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Quantum\",\r\n \"namespace\": \"Microsoft.Quantum\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a77d91dc-971b-4cf7-90c8-f183194249bc\",\r\n \"roleDefinitionId\": \"915bd376-2da8-411d-9906-895a54086a66\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/OperationStatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Workspaces\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations/offerings\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-04-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.RedHatOpenShift\",\r\n \"namespace\": \"Microsoft.RedHatOpenShift\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"f1dd0a37-89c6-4e07-bcd1-ffd3d43d8875\",\r\n \"roleDefinitionId\": \"640c5ac9-6f32-4891-94f4-d20f7aa9a7e6\",\r\n \"managedByRoleDefinitionId\": \"9e3af657-a8ff-583c-a75c-2fe7c4bcb635\",\r\n \"managedByAuthorization\": {\r\n \"allowManagedByInheritance\": true\r\n }\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-30\",\r\n \"2019-12-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsstatus\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"OpenShiftClusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-30\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-30\",\r\n \"2019-12-31-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ResourceGraph\",\r\n \"namespace\": \"Microsoft.ResourceGraph\",\r\n \"authorization\": {\r\n \"applicationId\": \"509e4652-da8d-478d-a730-e9d4a1996ca4\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\",\r\n \"2019-04-01\",\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourcesHistory\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\",\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceChanges\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\",\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceChangeDetails\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\",\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\",\r\n \"2019-04-01\",\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptionsStatus\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"authorization\": {\r\n \"applicationId\": \"3b990c8b-9607-4c2a-8b04-1d41985facca\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifyResourceJobs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"checkPolicyCompliance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkresourcename\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculateTemplateHash\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourcegroups/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagNames/tagValues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"deploymentScripts/logs\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deploymentScriptOperationResults\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ScVmm\",\r\n \"namespace\": \"Microsoft.ScVmm\",\r\n \"authorizations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/OperationStatuses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vmmservers\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"East US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-05-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clouds\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"East US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-05-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"VirtualNetworks\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"East US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-05-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"VirtualMachineTemplates\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"East US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-05-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"VirtualMachines\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"East US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-05-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.SecurityInsights\",\r\n \"namespace\": \"Microsoft.SecurityInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"98785600-1bb7-4fb9-b9fa-19afe2c8a360\",\r\n \"roleDefinitionId\": \"ef1c46aa-ae81-4091-ab83-f75f28efb7b8\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertRules\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"alertRuleTemplates\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"cases\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"bookmarks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"dataConnectors\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"dataConnectorsCheckRequirements\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"entities\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"incidents\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"officeConsents\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"settings\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"aggregations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"entityQueries\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"threatIntelligence\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"automationRules\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"watchlists\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.SerialConsole\",\r\n \"namespace\": \"Microsoft.SerialConsole\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"consoleServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/consoleServices\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ServiceFabricMesh\",\r\n \"namespace\": \"Microsoft.ServiceFabricMesh\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d10de03d-5ba3-497a-90e6-7ff8c9736059\",\r\n \"roleDefinitionId\": \"BC13595A-E262-4621-929E-56FF90E6BF18\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Central India\",\r\n \"UAE North\",\r\n \"Germany West Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"networks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Central India\",\r\n \"UAE North\",\r\n \"Germany West Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"volumes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Central India\",\r\n \"UAE North\",\r\n \"Germany West Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"secrets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Central India\",\r\n \"UAE North\",\r\n \"Germany West Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Central India\",\r\n \"UAE North\",\r\n \"Germany West Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/applicationOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Central India\",\r\n \"UAE North\",\r\n \"Germany West Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/networkOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Central India\",\r\n \"UAE North\",\r\n \"Germany West Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/volumeOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Central India\",\r\n \"UAE North\",\r\n \"Germany West Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/gatewayOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Central India\",\r\n \"UAE North\",\r\n \"Germany West Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/secretOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Central India\",\r\n \"UAE North\",\r\n \"Germany West Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ServicesHub\",\r\n \"namespace\": \"Microsoft.ServicesHub\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9ed4cd8c-9a98-405f-966b-38ab1b0c24a3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"connectors\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"supportOfferingEntitlement\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-15-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.SignalRService\",\r\n \"namespace\": \"Microsoft.SignalRService\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cdad765c-f191-43ba-b9f5-7aef392f811d\",\r\n \"roleDefinitionId\": \"346b504e-4aec-45d1-be25-a6e10f3cb4fe\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SignalR\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-01-preview\",\r\n \"2020-05-01\",\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-07-01-preview\",\r\n \"2020-05-01\",\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-01-preview\",\r\n \"2020-05-01\",\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatuses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-01-preview\",\r\n \"2020-05-01\",\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-01-preview\",\r\n \"2020-05-01\",\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-01-preview\",\r\n \"2020-05-01\",\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-01-preview\",\r\n \"2020-05-01\",\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"SignalR/eventGridFilters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-01-preview\",\r\n \"2020-05-01\",\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.SoftwarePlan\",\r\n \"namespace\": \"Microsoft.SoftwarePlan\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"hybridUseBenefits\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Solutions\",\r\n \"namespace\": \"Microsoft.Solutions\",\r\n \"authorization\": {\r\n \"applicationId\": \"ba4bc2bd-843f-4d61-9d33-199178eae34e\",\r\n \"roleDefinitionId\": \"6cb99a0b-29a8-49bc-b57b-057acc68cd9a\",\r\n \"managedByRoleDefinitionId\": \"9e3af657-a8ff-583c-a75c-2fe7c4bcb635\",\r\n \"managedByAuthorization\": {\r\n \"managedByResourceRoleDefinitionId\": \"9e3af657-a8ff-583c-a75c-2fe7c4bcb635\"\r\n }\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-08-21-preview\",\r\n \"2019-07-01\",\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"applicationDefinitions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-08-21-preview\",\r\n \"2019-07-01\",\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-08-21-preview\",\r\n \"2019-07-01\",\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"jitRequests\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-08-21-preview\",\r\n \"2019-07-01\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-08-21-preview\",\r\n \"2019-07-01\",\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-08-21-preview\",\r\n \"2019-07-01\",\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.SqlVirtualMachine\",\r\n \"namespace\": \"Microsoft.SqlVirtualMachine\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"bd93b475-f9e2-476e-963d-b2daf143ffb9\",\r\n \"roleDefinitionId\": \"f96bd990-ffdf-4c17-8ee3-77454d9c3f5d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SqlVirtualMachineGroups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"SqlVirtualMachines\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"SqlVirtualMachineGroups/AvailabilityGroupListeners\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/OperationTypes\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/sqlVirtualMachineOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/sqlVirtualMachineGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/availabilityGroupListenerOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/registerSqlVmCandidate\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.StorageCache\",\r\n \"namespace\": \"Microsoft.StorageCache\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"4392ab71-2ce2-4b0d-8770-b352745c73f5\",\r\n \"roleDefinitionId\": \"e27430df-bd6b-4f3a-bd6d-d52ad1a7d075\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caches\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2019-11-01\",\r\n \"2019-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"caches/storageTargets\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2019-11-01\",\r\n \"2019-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2019-11-01\",\r\n \"2019-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usageModels\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2019-11-01\",\r\n \"2019-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2019-11-01\",\r\n \"2019-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/ascoperations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2019-11-01\",\r\n \"2019-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.StorageSync\",\r\n \"namespace\": \"Microsoft.StorageSync\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9469b9f5-6722-4481-a2b2-14ed560b706f\",\r\n \"roleDefinitionId\": \"4cd49d82-1f4d-43fc-af0c-1c1203668e5a\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageSyncServices\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2019-10-01\",\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2019-10-01\",\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/cloudEndpoints\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2019-10-01\",\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/serverEndpoints\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2019-10-01\",\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/registeredServers\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2019-10-01\",\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/workflows\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2019-10-01\",\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2019-10-01\",\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2019-10-01\",\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2019-10-01\",\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2019-10-01\",\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.StorSimple\",\r\n \"namespace\": \"Microsoft.StorSimple\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"managers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-05-15\",\r\n \"2017-01-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-03-15\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-03-15\",\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Subscription\",\r\n \"namespace\": \"Microsoft.Subscription\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3335adb-5ca0-40dc-b8d3-bedc094e523b\"\r\n },\r\n {\r\n \"applicationId\": \"5da7367f-09c8-493e-8fd4-638089cddec3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SubscriptionDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"SubscriptionOperations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CreateSubscription\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cancel\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-01\",\r\n \"2019-10-01-preview\",\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"rename\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-01\",\r\n \"2019-10-01-preview\",\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enable\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-01\",\r\n \"2019-10-01-preview\",\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"aliases\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-09-01\",\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"acceptChangeTenant\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"changeTenantStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"changeTenantRequest\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"959678cf-d004-4c22-82a6-d2ce549a58b8\",\r\n \"roleDefinitionId\": \"81a3dd11-5123-4ec3-9485-772b0a27d1bd\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2019-05-01-preview\",\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"services/problemclassifications\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2019-05-01-preview\",\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationsstatus\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2019-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Synapse\",\r\n \"namespace\": \"Microsoft.Synapse\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9e09aefc-b2e5-4d19-9f74-3e3e8b11a57b\",\r\n \"roleDefinitionId\": \"a53b114a-452b-4d20-bcd6-c51c3c8c5878\",\r\n \"managedByRoleDefinitionId\": \"ede175bc-31e5-4074-ba98-e62b895797aa\"\r\n },\r\n {\r\n \"applicationId\": \"1ac05c7e-12d2-4605-bf9d-549d7041c6b3\",\r\n \"roleDefinitionId\": \"48e77487-c9fa-4abe-8484-71ebdebdbbc2\"\r\n },\r\n {\r\n \"applicationId\": \"ec52d13d-2e85-410e-a89a-8c79fb6a32ac\",\r\n \"roleDefinitionId\": \"c3a447c3-a63a-4905-a125-c6856f9d0e17\"\r\n },\r\n {\r\n \"applicationId\": \"5ebe1e69-13dd-4953-84fa-a74ed591db2e\",\r\n \"roleDefinitionId\": \"e8ebe3e8-569b-4ad3-bea1-5b274fe0c49f\"\r\n },\r\n {\r\n \"applicationId\": \"2e458d69-0892-4655-b713-4f7b182315dd\",\r\n \"roleDefinitionId\": \"45EA3B16-D4DD-48CA-BF0D-BBE644C0C0AF\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/bigDataPools\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/sqlPools\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/operationStatuses\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/operationResults\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"EAST US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateLinkHubs\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatuses\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/sqlDatabases\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/sqlDatabaseAzureAsyncOperation\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/sqlDatabaseOperationResults\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/sqlPoolAzureAsyncOperation\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/sqlPoolOperationResults\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.Token\",\r\n \"namespace\": \"Microsoft.Token\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"fe053c5f-3692-4f14-aef2-ee34fc081cae\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"stores\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"Australia Southeast\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"stores/accessPolicies\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"Australia Southeast\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"stores/services\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"Australia Southeast\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"stores/services/tokens\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"Australia Southeast\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.VirtualMachineImages\",\r\n \"namespace\": \"Microsoft.VirtualMachineImages\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cf32a0cc-373c-47c9-9156-0db11f6a6dfc\",\r\n \"roleDefinitionId\": \"0ee55a0b-f45f-4392-92ec-e8bf1b4b5da5\",\r\n \"managedByRoleDefinitionId\": \"9e3af657-a8ff-583c-a75c-2fe7c4bcb635\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"imageTemplates\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-14\",\r\n \"2019-05-01-preview\",\r\n \"2019-02-01-preview\",\r\n \"2018-02-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"imageTemplates/runOutputs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-14\",\r\n \"2019-05-01-preview\",\r\n \"2019-02-01-preview\",\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-14\",\r\n \"2019-05-01-preview\",\r\n \"2019-02-01-preview\",\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-14\",\r\n \"2019-05-01-preview\",\r\n \"2019-02-01-preview\",\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-14\",\r\n \"2019-05-01-preview\",\r\n \"2019-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.VMware\",\r\n \"namespace\": \"Microsoft.VMware\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"ac9dc5fe-b644-4832-9d03-d9f1ab70c5f7\",\r\n \"roleDefinitionId\": \"dd032bd9-65cc-4171-b688-c612566422ae\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-20-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/OperationStatuses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 EUAP\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-20-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-20-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ArcZones\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-20-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"VCenters\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-20-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ResourcePools\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-20-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"VirtualNetworks\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-20-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"VirtualMachineTemplates\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-20-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"VirtualMachines\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-20-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.VMwareCloudSimple\",\r\n \"namespace\": \"Microsoft.VMwareCloudSimple\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d96199e7-4674-4bbf-a1c6-ddf93682f5ee\",\r\n \"roleDefinitionId\": \"533012ca-a3e7-44e4-93b4-3143f8b9409d\",\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"CloudSimpleExtension\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dedicatedCloudNodes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dedicatedCloudServices\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availabilities\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateClouds\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateClouds/virtualNetworks\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateClouds/virtualMachineTemplates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateClouds/resourcePools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.VnfManager\",\r\n \"namespace\": \"Microsoft.VnfManager\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"b8ed041c-aa91-418e-8f47-20c70abc2de1\",\r\n \"roleDefinitionId\": \"c8d69fc0-f0ed-43b3-bf1d-4dfdaacc6d2d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"devices\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vnfs\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vendors/vnfs\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.WindowsESU\",\r\n \"namespace\": \"Microsoft.WindowsESU\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e6c69915-bcc7-4335-b655-c62f949d691b\",\r\n \"roleDefinitionId\": \"9bccffcd-2d3d-4b7c-a2cb-bb26e77b4810\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-16-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-16-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/OperationStatuses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.WindowsIoT\",\r\n \"namespace\": \"Microsoft.WindowsIoT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DeviceServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2018-02-16-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2018-02-16-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.WorkloadBuilder\",\r\n \"namespace\": \"Microsoft.WorkloadBuilder\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"63c2c773-89fe-4164-a02f-b8c7fc1772ae\",\r\n \"roleDefinitionId\": \"322358fa-ea51-4f6c-b9d6-3be64015f074\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-07-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/OperationStatuses\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-07-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workloads\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"workloads/versions/artifacts\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workloads/versions\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workloads/instances\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.WorkloadMonitor\",\r\n \"namespace\": \"Microsoft.WorkloadMonitor\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"ddc728e9-153d-4032-ab80-80e57af7a56f\",\r\n \"roleDefinitionId\": \"553f60de-cc15-412f-9fdf-8f5152e7e0f5\",\r\n \"managedByRoleDefinitionId\": \"553f60de-cc15-412f-9fdf-8f5152e7e0f5\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-13-preview\",\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"componentsSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitorInstancesSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitorInstances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"monitors\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-13-preview\",\r\n \"2018-08-31-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"notificationSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Myget.PackageManagement\",\r\n \"namespace\": \"Myget.PackageManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Paraleap.CloudMonix\",\r\n \"namespace\": \"Paraleap.CloudMonix\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Pokitdok.Platform\",\r\n \"namespace\": \"Pokitdok.Platform\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/RavenHq.Db\",\r\n \"namespace\": \"RavenHq.Db\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Raygun.CrashReporting\",\r\n \"namespace\": \"Raygun.CrashReporting\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Sparkpost.Basic\",\r\n \"namespace\": \"Sparkpost.Basic\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/stackify.retrace\",\r\n \"namespace\": \"stackify.retrace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/U2uconsult.TheIdentityHub\",\r\n \"namespace\": \"U2uconsult.TheIdentityHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Wandisco.Fusion\",\r\n \"namespace\": \"Wandisco.Fusion\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"37b36496-3f4f-443a-a406-5e0a0535f6a3\",\r\n \"roleDefinitionId\": \"b10cdc1f-fd21-4fe9-bae7-7e2e25a91a21\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/operationStatuses\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2 EUAP\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registeredSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ProjectArcadia\",\r\n \"namespace\": \"Microsoft.ProjectArcadia\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9e09aefc-b2e5-4d19-9f74-3e3e8b11a57b\",\r\n \"roleDefinitionId\": \"a53b114a-452b-4d20-bcd6-c51c3c8c5878\"\r\n },\r\n {\r\n \"applicationId\": \"1ac05c7e-12d2-4605-bf9d-549d7041c6b3\",\r\n \"roleDefinitionId\": \"48e77487-c9fa-4abe-8484-71ebdebdbbc2\"\r\n },\r\n {\r\n \"applicationId\": \"ec52d13d-2e85-410e-a89a-8c79fb6a32ac\",\r\n \"roleDefinitionId\": \"c3a447c3-a63a-4905-a125-c6856f9d0e17\"\r\n },\r\n {\r\n \"applicationId\": \"5ebe1e69-13dd-4953-84fa-a74ed591db2e\",\r\n \"roleDefinitionId\": \"e8ebe3e8-569b-4ad3-bea1-5b274fe0c49f\"\r\n },\r\n {\r\n \"applicationId\": \"2e458d69-0892-4655-b713-4f7b182315dd\",\r\n \"roleDefinitionId\": \"45EA3B16-D4DD-48CA-BF0D-BBE644C0C0AF\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/sparkComputes\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/sqlComputes\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/operationStatus\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/operationResults\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"EAST US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"EAST US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.SecurityDetonation\",\r\n \"namespace\": \"Microsoft.SecurityDetonation\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"29820072-374d-49b8-945a-3941d7e9b468\",\r\n \"roleDefinitionId\": \"4ddf1807-30b0-464a-9d16-a8822daf866b\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"chambers\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-01-preview\",\r\n \"2019-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-07-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/RSG2903?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL1JTRzI5MDM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/RSG3388?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL1JTRzMzODg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "198ae935-6f9d-4950-9631-05a455e13fef" + "ed5a468c-0ef2-4919-bb8b-bdfac1c1685c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "90853cdb-4cc2-401c-b1e9-9f136d2b912a" + "f43c358d-fb1a-4f11-998e-56aafa64641f" ], "x-ms-correlation-request-id": [ - "90853cdb-4cc2-401c-b1e9-9f136d2b912a" + "f43c358d-fb1a-4f11-998e-56aafa64641f" ], "x-ms-routing-request-id": [ - "WESTUS:20200612T051704Z:90853cdb-4cc2-401c-b1e9-9f136d2b912a" + "WESTUS:20200915T054002Z:f43c358d-fb1a-4f11-998e-56aafa64641f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Fri, 12 Jun 2020 05:17:03 GMT" + "Tue, 15 Sep 2020 05:40:01 GMT" ], "Content-Length": [ "167" @@ -123,26 +123,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903\",\r\n \"name\": \"RSG2903\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388\",\r\n \"name\": \"RSG3388\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub/checkNameAvailability?api-version=2017-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvY2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"Eventhub-Namespace-7851\"\r\n}", + "RequestBody": "{\r\n \"name\": \"Eventhub-Namespace-2917\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4b7cd978-7ae4-44be-9757-02b9f3519990" + "b941480f-c86c-4dfa-82c9-c17d32991dbe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.2.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -159,7 +159,7 @@ "no-cache" ], "x-ms-request-id": [ - "d5525096-defc-4409-a1e5-8a4090251cf2_M4SN1_M4SN1" + "0191deac-02b7-42c6-ba60-6fb3e55983e1_M7SN1_M7SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" @@ -172,10 +172,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "61395d62-f951-4ed5-9811-b0b739acf3f6" + "85d84f40-2577-48cd-bed1-3f6985250b99" ], "x-ms-routing-request-id": [ - "WESTUS:20200612T051704Z:61395d62-f951-4ed5-9811-b0b739acf3f6" + "WESTUS:20200915T054003Z:85d84f40-2577-48cd-bed1-3f6985250b99" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -184,7 +184,7 @@ "nosniff" ], "Date": [ - "Fri, 12 Jun 2020 05:17:04 GMT" + "Tue, 15 Sep 2020 05:40:02 GMT" ], "Content-Length": [ "53" @@ -200,22 +200,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-7851?api-version=2018-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzI5MDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZS03ODUxP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-2917?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzMzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZS0yOTE3P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "10b37208-df29-430f-a21e-ef74031fe7a7" + "19ca377a-1ca8-4049-afe3-7ce2dbe1127a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.2.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -232,7 +232,7 @@ "no-cache" ], "x-ms-request-id": [ - "3c6b6cba-7e1c-4844-876e-5c12cf9e2132_M7SN1_M7SN1" + "905dc088-1512-4812-a333-0d63def6db46_M1SN1_M1SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" @@ -245,10 +245,10 @@ "49" ], "x-ms-correlation-request-id": [ - "e6bdb107-4c3b-4367-ba94-6f82e5e43862" + "99192687-beaf-4201-a89c-73db2bb749ac" ], "x-ms-routing-request-id": [ - "WESTUS:20200612T051706Z:e6bdb107-4c3b-4367-ba94-6f82e5e43862" + "WESTUS:20200915T054005Z:99192687-beaf-4201-a89c-73db2bb749ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -257,10 +257,10 @@ "nosniff" ], "Date": [ - "Fri, 12 Jun 2020 05:17:05 GMT" + "Tue, 15 Sep 2020 05:40:04 GMT" ], "Content-Length": [ - "707" + "705" ], "Content-Type": [ "application/json; charset=utf-8" @@ -269,20 +269,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-7851\",\r\n \"name\": \"Eventhub-Namespace-7851\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:eventhub-namespace-7851\",\r\n \"createdAt\": \"2020-06-12T05:17:05.643Z\",\r\n \"updatedAt\": \"2020-06-12T05:17:05.643Z\",\r\n \"serviceBusEndpoint\": \"https://Eventhub-Namespace-7851.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-2917\",\r\n \"name\": \"Eventhub-Namespace-2917\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:eventhub-namespace-2917\",\r\n \"createdAt\": \"2020-09-15T05:40:04.74Z\",\r\n \"updatedAt\": \"2020-09-15T05:40:04.74Z\",\r\n \"serviceBusEndpoint\": \"https://Eventhub-Namespace-2917.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-7851?api-version=2018-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzI5MDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZS03ODUxP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-2917?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzMzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZS0yOTE3P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.2.0" ] }, "ResponseHeaders": { @@ -293,7 +293,7 @@ "no-cache" ], "x-ms-request-id": [ - "1243ef9f-e314-4d31-80c0-2e30f991a674_M6SN1_M6SN1" + "ecb71606-0d6c-427c-a6dd-5831bde593c7_M7SN1_M7SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" @@ -306,10 +306,10 @@ "11999" ], "x-ms-correlation-request-id": [ - "6416ee11-922e-48bd-a375-2109313fe18d" + "e0aea589-ff80-41d5-b9e9-37a455fcd77e" ], "x-ms-routing-request-id": [ - "WESTUS:20200612T051736Z:6416ee11-922e-48bd-a375-2109313fe18d" + "WESTUS:20200915T054035Z:e0aea589-ff80-41d5-b9e9-37a455fcd77e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -318,10 +318,10 @@ "nosniff" ], "Date": [ - "Fri, 12 Jun 2020 05:17:36 GMT" + "Tue, 15 Sep 2020 05:40:35 GMT" ], "Content-Length": [ - "707" + "705" ], "Content-Type": [ "application/json; charset=utf-8" @@ -330,20 +330,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-7851\",\r\n \"name\": \"Eventhub-Namespace-7851\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:eventhub-namespace-7851\",\r\n \"createdAt\": \"2020-06-12T05:17:05.643Z\",\r\n \"updatedAt\": \"2020-06-12T05:17:05.643Z\",\r\n \"serviceBusEndpoint\": \"https://Eventhub-Namespace-7851.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-2917\",\r\n \"name\": \"Eventhub-Namespace-2917\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:eventhub-namespace-2917\",\r\n \"createdAt\": \"2020-09-15T05:40:04.74Z\",\r\n \"updatedAt\": \"2020-09-15T05:40:04.74Z\",\r\n \"serviceBusEndpoint\": \"https://Eventhub-Namespace-2917.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-7851?api-version=2018-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzI5MDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZS03ODUxP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-2917?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzMzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZS0yOTE3P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.2.0" ] }, "ResponseHeaders": { @@ -354,7 +354,7 @@ "no-cache" ], "x-ms-request-id": [ - "6e94a54d-c702-45f8-bfa8-51cedb7ba57e_M7SN1_M7SN1" + "908b1a0b-718f-49b7-b230-e205cf26732f_M1SN1_M1SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" @@ -367,10 +367,10 @@ "11998" ], "x-ms-correlation-request-id": [ - "cf3e5b5e-e6c9-4fd6-81b9-8355cffebae0" + "751f3c65-1ada-4702-813f-0c4a3f7c470d" ], "x-ms-routing-request-id": [ - "WESTUS:20200612T051806Z:cf3e5b5e-e6c9-4fd6-81b9-8355cffebae0" + "WESTUS:20200915T054105Z:751f3c65-1ada-4702-813f-0c4a3f7c470d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -379,10 +379,10 @@ "nosniff" ], "Date": [ - "Fri, 12 Jun 2020 05:18:05 GMT" + "Tue, 15 Sep 2020 05:41:05 GMT" ], "Content-Length": [ - "705" + "703" ], "Content-Type": [ "application/json; charset=utf-8" @@ -391,26 +391,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-7851\",\r\n \"name\": \"Eventhub-Namespace-7851\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:eventhub-namespace-7851\",\r\n \"createdAt\": \"2020-06-12T05:17:05.643Z\",\r\n \"updatedAt\": \"2020-06-12T05:17:53.313Z\",\r\n \"serviceBusEndpoint\": \"https://Eventhub-Namespace-7851.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-2917\",\r\n \"name\": \"Eventhub-Namespace-2917\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:eventhub-namespace-2917\",\r\n \"createdAt\": \"2020-09-15T05:40:04.74Z\",\r\n \"updatedAt\": \"2020-09-15T05:40:52.02Z\",\r\n \"serviceBusEndpoint\": \"https://Eventhub-Namespace-2917.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-7851?api-version=2018-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzI5MDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZS03ODUxP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-2917?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzMzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZS0yOTE3P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "64447522-0b6f-434c-a1f8-1d49c3265094" + "48068625-e115-4d67-972e-3ba5d3d44446" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.2.0" ] }, "ResponseHeaders": { @@ -421,7 +421,7 @@ "no-cache" ], "x-ms-request-id": [ - "9eacb655-ef1b-4237-a859-030a6d9dc55e_M5SN1_M5SN1" + "70503bb1-bb13-40d8-b754-d4dd51ffb156_M2SN1_M2SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" @@ -431,13 +431,13 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11999" ], "x-ms-correlation-request-id": [ - "0dd4c0bc-2d40-4c8b-a7dd-c3644fc3893a" + "74adf023-e160-426a-8df9-bc44d1c2b27e" ], "x-ms-routing-request-id": [ - "WESTUS:20200612T051806Z:0dd4c0bc-2d40-4c8b-a7dd-c3644fc3893a" + "WESTUS:20200915T054105Z:74adf023-e160-426a-8df9-bc44d1c2b27e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -446,10 +446,10 @@ "nosniff" ], "Date": [ - "Fri, 12 Jun 2020 05:18:06 GMT" + "Tue, 15 Sep 2020 05:41:05 GMT" ], "Content-Length": [ - "705" + "703" ], "Content-Type": [ "application/json; charset=utf-8" @@ -458,26 +458,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-7851\",\r\n \"name\": \"Eventhub-Namespace-7851\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:eventhub-namespace-7851\",\r\n \"createdAt\": \"2020-06-12T05:17:05.643Z\",\r\n \"updatedAt\": \"2020-06-12T05:17:53.313Z\",\r\n \"serviceBusEndpoint\": \"https://Eventhub-Namespace-7851.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-2917\",\r\n \"name\": \"Eventhub-Namespace-2917\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:eventhub-namespace-2917\",\r\n \"createdAt\": \"2020-09-15T05:40:04.74Z\",\r\n \"updatedAt\": \"2020-09-15T05:40:52.02Z\",\r\n \"serviceBusEndpoint\": \"https://Eventhub-Namespace-2917.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace2-6979?api-version=2018-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzI5MDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZTItNjk3OT9hcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace2-7926?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzMzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZTItNzkyNj9hcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9734e6ed-7816-450b-97fe-61186058c5fb" + "fb4b0b91-20eb-41b6-a517-45118bcd8f53" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.2.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -494,7 +494,7 @@ "no-cache" ], "x-ms-request-id": [ - "316666fa-1c06-40b1-9a61-682fec8b23f0_M5SN1_M5SN1" + "018c55c1-60cd-47d0-b4d4-de5070202bef_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" @@ -507,10 +507,10 @@ "49" ], "x-ms-correlation-request-id": [ - "4c332faa-3e90-4ad3-a64c-d61d08ac49e6" + "6b3d58bb-99d5-4b9e-b914-3c39cd93b643" ], "x-ms-routing-request-id": [ - "WESTUS:20200612T051807Z:4c332faa-3e90-4ad3-a64c-d61d08ac49e6" + "WESTUS:20200915T054107Z:6b3d58bb-99d5-4b9e-b914-3c39cd93b643" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -519,10 +519,10 @@ "nosniff" ], "Date": [ - "Fri, 12 Jun 2020 05:18:07 GMT" + "Tue, 15 Sep 2020 05:41:07 GMT" ], "Content-Length": [ - "709" + "711" ], "Content-Type": [ "application/json; charset=utf-8" @@ -531,20 +531,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace2-6979\",\r\n \"name\": \"Eventhub-Namespace2-6979\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:eventhub-namespace2-6979\",\r\n \"createdAt\": \"2020-06-12T05:18:07.45Z\",\r\n \"updatedAt\": \"2020-06-12T05:18:07.45Z\",\r\n \"serviceBusEndpoint\": \"https://Eventhub-Namespace2-6979.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace2-7926\",\r\n \"name\": \"Eventhub-Namespace2-7926\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:eventhub-namespace2-7926\",\r\n \"createdAt\": \"2020-09-15T05:41:07.033Z\",\r\n \"updatedAt\": \"2020-09-15T05:41:07.033Z\",\r\n \"serviceBusEndpoint\": \"https://Eventhub-Namespace2-7926.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace2-6979?api-version=2018-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzI5MDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZTItNjk3OT9hcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace2-7926?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzMzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZTItNzkyNj9hcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.2.0" ] }, "ResponseHeaders": { @@ -555,7 +555,7 @@ "no-cache" ], "x-ms-request-id": [ - "cfaa724f-611f-444f-8c91-d21aecf019c7_M6SN1_M6SN1" + "7e879daa-2a4a-440b-b629-d1d5eb174192_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" @@ -568,10 +568,10 @@ "11999" ], "x-ms-correlation-request-id": [ - "d090108c-ac06-4620-ab1f-b2ca5b83eb6c" + "575d4114-37c8-420f-9110-1c0ec623b3a5" ], "x-ms-routing-request-id": [ - "WESTUS:20200612T051837Z:d090108c-ac06-4620-ab1f-b2ca5b83eb6c" + "WESTUS:20200915T054137Z:575d4114-37c8-420f-9110-1c0ec623b3a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -580,10 +580,10 @@ "nosniff" ], "Date": [ - "Fri, 12 Jun 2020 05:18:36 GMT" + "Tue, 15 Sep 2020 05:41:37 GMT" ], "Content-Length": [ - "709" + "711" ], "Content-Type": [ "application/json; charset=utf-8" @@ -592,20 +592,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace2-6979\",\r\n \"name\": \"Eventhub-Namespace2-6979\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:eventhub-namespace2-6979\",\r\n \"createdAt\": \"2020-06-12T05:18:07.45Z\",\r\n \"updatedAt\": \"2020-06-12T05:18:07.45Z\",\r\n \"serviceBusEndpoint\": \"https://Eventhub-Namespace2-6979.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace2-7926\",\r\n \"name\": \"Eventhub-Namespace2-7926\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:eventhub-namespace2-7926\",\r\n \"createdAt\": \"2020-09-15T05:41:07.033Z\",\r\n \"updatedAt\": \"2020-09-15T05:41:07.033Z\",\r\n \"serviceBusEndpoint\": \"https://Eventhub-Namespace2-7926.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace2-6979?api-version=2018-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzI5MDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZTItNjk3OT9hcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace2-7926?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzMzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZTItNzkyNj9hcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.2.0" ] }, "ResponseHeaders": { @@ -616,7 +616,7 @@ "no-cache" ], "x-ms-request-id": [ - "8838f4d2-c52c-4c4c-875f-cc1431019ad8_M5SN1_M5SN1" + "d83bd4e4-b324-462f-b1d7-bfd3a818059e_M7SN1_M7SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" @@ -629,10 +629,10 @@ "11998" ], "x-ms-correlation-request-id": [ - "1d001cf5-cfe7-4249-99b4-1cd5c7d30443" + "ec1f7087-622f-4c94-aac7-ba092073797c" ], "x-ms-routing-request-id": [ - "WESTUS:20200612T051907Z:1d001cf5-cfe7-4249-99b4-1cd5c7d30443" + "WESTUS:20200915T054207Z:ec1f7087-622f-4c94-aac7-ba092073797c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -641,10 +641,10 @@ "nosniff" ], "Date": [ - "Fri, 12 Jun 2020 05:19:07 GMT" + "Tue, 15 Sep 2020 05:42:06 GMT" ], "Content-Length": [ - "708" + "709" ], "Content-Type": [ "application/json; charset=utf-8" @@ -653,26 +653,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace2-6979\",\r\n \"name\": \"Eventhub-Namespace2-6979\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:eventhub-namespace2-6979\",\r\n \"createdAt\": \"2020-06-12T05:18:07.45Z\",\r\n \"updatedAt\": \"2020-06-12T05:18:55.393Z\",\r\n \"serviceBusEndpoint\": \"https://Eventhub-Namespace2-6979.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace2-7926\",\r\n \"name\": \"Eventhub-Namespace2-7926\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:eventhub-namespace2-7926\",\r\n \"createdAt\": \"2020-09-15T05:41:07.033Z\",\r\n \"updatedAt\": \"2020-09-15T05:41:53.047Z\",\r\n \"serviceBusEndpoint\": \"https://Eventhub-Namespace2-7926.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace2-6979?api-version=2018-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzI5MDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZTItNjk3OT9hcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace2-7926?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzMzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZTItNzkyNj9hcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "977e162d-6126-402f-ad43-550b41bcfc7f" + "9019ae48-be64-4c1b-b9c5-ef52ef70cebc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.2.0" ] }, "ResponseHeaders": { @@ -683,7 +683,7 @@ "no-cache" ], "x-ms-request-id": [ - "b0dd72e5-4900-4339-87fc-a65aea11ea10_M3SN1_M3SN1" + "db2e893d-b881-45c1-9b1f-a2d2eb74b4db_M4SN1_M4SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" @@ -693,13 +693,13 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11999" ], "x-ms-correlation-request-id": [ - "bcfdd60b-2807-4bd5-a31f-393f138b8a3c" + "b03e5b8d-1688-4f73-a718-043b5a9c0c8b" ], "x-ms-routing-request-id": [ - "WESTUS:20200612T051908Z:bcfdd60b-2807-4bd5-a31f-393f138b8a3c" + "WESTUS:20200915T054207Z:b03e5b8d-1688-4f73-a718-043b5a9c0c8b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -708,10 +708,10 @@ "nosniff" ], "Date": [ - "Fri, 12 Jun 2020 05:19:07 GMT" + "Tue, 15 Sep 2020 05:42:07 GMT" ], "Content-Length": [ - "708" + "709" ], "Content-Type": [ "application/json; charset=utf-8" @@ -720,26 +720,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace2-6979\",\r\n \"name\": \"Eventhub-Namespace2-6979\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:eventhub-namespace2-6979\",\r\n \"createdAt\": \"2020-06-12T05:18:07.45Z\",\r\n \"updatedAt\": \"2020-06-12T05:18:55.393Z\",\r\n \"serviceBusEndpoint\": \"https://Eventhub-Namespace2-6979.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace2-7926\",\r\n \"name\": \"Eventhub-Namespace2-7926\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:eventhub-namespace2-7926\",\r\n \"createdAt\": \"2020-09-15T05:41:07.033Z\",\r\n \"updatedAt\": \"2020-09-15T05:41:53.047Z\",\r\n \"serviceBusEndpoint\": \"https://Eventhub-Namespace2-7926.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-7851/networkRuleSets/default?api-version=2018-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzI5MDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZS03ODUxL25ldHdvcmtSdWxlU2V0cy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-2917/networkRuleSets/default?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzMzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZS0yOTE3L25ldHdvcmtSdWxlU2V0cy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2185c323-5fd1-48c4-9eb3-542dda31b8bc" + "ab902f9f-7cfa-4e45-9f15-f34e469c076c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.2.0" ] }, "ResponseHeaders": { @@ -750,7 +750,7 @@ "no-cache" ], "x-ms-request-id": [ - "2c4a6b0d-7fac-4b6b-8110-c15b67850467_M1SN1_M1SN1" + "2bda6333-136c-4423-bdcd-30bf371a8b65_M2SN1_M2SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" @@ -763,10 +763,10 @@ "11998" ], "x-ms-correlation-request-id": [ - "533b151a-ee8f-4f0f-8055-c398d7570b2f" + "45e9bdbb-4675-4bd1-87ec-20079e808868" ], "x-ms-routing-request-id": [ - "WESTUS:20200612T051909Z:533b151a-ee8f-4f0f-8055-c398d7570b2f" + "WESTUS:20200915T054208Z:45e9bdbb-4675-4bd1-87ec-20079e808868" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -775,7 +775,7 @@ "nosniff" ], "Date": [ - "Fri, 12 Jun 2020 05:19:08 GMT" + "Tue, 15 Sep 2020 05:42:07 GMT" ], "Content-Length": [ "340" @@ -787,26 +787,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-7851/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSets\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-2917/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSets\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-7851/networkRuleSets/default?api-version=2018-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzI5MDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZS03ODUxL25ldHdvcmtSdWxlU2V0cy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-2917/networkRuleSets/default?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzMzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZS0yOTE3L25ldHdvcmtSdWxlU2V0cy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2bf1430b-932a-4cb4-ab48-797a4133cd7e" + "63832254-320d-492f-9045-d0a30a94a349" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.2.0" ] }, "ResponseHeaders": { @@ -817,23 +817,23 @@ "no-cache" ], "x-ms-request-id": [ - "362977f8-df85-4346-868f-2c13a5ce0034_M5SN1_M5SN1" + "fdceb07c-7a5b-46ba-90a0-276f7a6cf8bb_M5CH3_M5CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" + "Service-Bus-Resource-Provider/CH3" ], "Server": [ - "Service-Bus-Resource-Provider/SN1", + "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-correlation-request-id": [ - "edbf7bef-646b-45fa-a128-2f9d553484fd" + "31e6759a-4046-4191-9367-984352f3accb" ], "x-ms-routing-request-id": [ - "WESTUS:20200612T051915Z:edbf7bef-646b-45fa-a128-2f9d553484fd" + "WESTUS:20200915T054215Z:31e6759a-4046-4191-9367-984352f3accb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -842,7 +842,7 @@ "nosniff" ], "Date": [ - "Fri, 12 Jun 2020 05:19:15 GMT" + "Tue, 15 Sep 2020 05:42:15 GMT" ], "Content-Length": [ "377" @@ -854,26 +854,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-7851/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSets\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-2917/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSets\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-7851/networkRuleSets/default?api-version=2018-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzI5MDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZS03ODUxL25ldHdvcmtSdWxlU2V0cy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-2917/networkRuleSets/default?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzMzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZS0yOTE3L25ldHdvcmtSdWxlU2V0cy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "495a417e-f68d-4709-b241-064ce49bafa0" + "b6b298ec-e78e-4e65-b8be-3311579e6058" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.2.0" ] }, "ResponseHeaders": { @@ -884,7 +884,7 @@ "no-cache" ], "x-ms-request-id": [ - "82a42bd1-0926-4797-a375-d54a97075f60_M0SN1_M0SN1" + "d348caa6-86f5-49ce-a27f-155cb7bee511_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" @@ -894,13 +894,13 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-correlation-request-id": [ - "422f911a-f40b-47c7-bc83-5d4a2be8b4f3" + "718bb2f1-8467-4e49-a764-974f94fd6639" ], "x-ms-routing-request-id": [ - "WESTUS:20200612T051922Z:422f911a-f40b-47c7-bc83-5d4a2be8b4f3" + "WESTUS:20200915T054222Z:718bb2f1-8467-4e49-a764-974f94fd6639" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -909,7 +909,7 @@ "nosniff" ], "Date": [ - "Fri, 12 Jun 2020 05:19:21 GMT" + "Tue, 15 Sep 2020 05:42:21 GMT" ], "Content-Length": [ "415" @@ -921,26 +921,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-7851/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSets\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"2.2.2.2\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-2917/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSets\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"2.2.2.2\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-7851/networkRuleSets/default?api-version=2018-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzI5MDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZS03ODUxL25ldHdvcmtSdWxlU2V0cy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-2917/networkRuleSets/default?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzMzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZS0yOTE3L25ldHdvcmtSdWxlU2V0cy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d9567350-ed8e-412b-bbab-1ae335f81056" + "892b24a8-1ce1-4655-a3c1-7f5d8e66015d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.2.0" ] }, "ResponseHeaders": { @@ -951,7 +951,7 @@ "no-cache" ], "x-ms-request-id": [ - "e08be694-fb62-410f-a5cf-c3f1d0f64eeb_M2SN1_M2SN1" + "a385fc90-176c-4b2a-8c4c-112d73e7cbb5_M7SN1_M7SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" @@ -964,10 +964,10 @@ "11999" ], "x-ms-correlation-request-id": [ - "6cb684c0-4274-4758-91a4-74baf7528574" + "f3e7c072-9992-4f63-a188-5eb9129c8e13" ], "x-ms-routing-request-id": [ - "WESTUS:20200612T051929Z:6cb684c0-4274-4758-91a4-74baf7528574" + "WESTUS:20200915T054229Z:f3e7c072-9992-4f63-a188-5eb9129c8e13" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -976,7 +976,7 @@ "nosniff" ], "Date": [ - "Fri, 12 Jun 2020 05:19:28 GMT" + "Tue, 15 Sep 2020 05:42:29 GMT" ], "Content-Length": [ "453" @@ -988,26 +988,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-7851/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSets\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"2.2.2.2\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"3.3.3.3\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-2917/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSets\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"2.2.2.2\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"3.3.3.3\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-7851/networkRuleSets/default?api-version=2018-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzI5MDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZS03ODUxL25ldHdvcmtSdWxlU2V0cy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-2917/networkRuleSets/default?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzMzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZS0yOTE3L25ldHdvcmtSdWxlU2V0cy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9cbcd382-d802-4d49-b81d-35f67f15f515" + "3b38ab89-2797-4d85-8357-3c9eff2c6985" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.2.0" ] }, "ResponseHeaders": { @@ -1018,23 +1018,23 @@ "no-cache" ], "x-ms-request-id": [ - "e98c795b-d8d5-41df-97a6-1dd6a8114e7b_M9CH3_M9CH3" + "14f8a13d-132d-45ba-a4da-1783646ad08a_M3SN1_M3SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-correlation-request-id": [ - "1c9f1631-bcd8-4e9d-8a36-89ddbb01c7d0" + "82836e06-0712-4895-8038-4c041cb3721f" ], "x-ms-routing-request-id": [ - "WESTUS:20200612T051942Z:1c9f1631-bcd8-4e9d-8a36-89ddbb01c7d0" + "WESTUS:20200915T054242Z:82836e06-0712-4895-8038-4c041cb3721f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1043,7 +1043,7 @@ "nosniff" ], "Date": [ - "Fri, 12 Jun 2020 05:19:42 GMT" + "Tue, 15 Sep 2020 05:42:42 GMT" ], "Content-Length": [ "666" @@ -1055,26 +1055,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-7851/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSets\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/default\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"2.2.2.2\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"3.3.3.3\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-2917/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSets\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/default\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"2.2.2.2\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"3.3.3.3\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-7851/networkRuleSets/default?api-version=2018-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzI5MDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZS03ODUxL25ldHdvcmtSdWxlU2V0cy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-2917/networkRuleSets/default?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzMzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZS0yOTE3L25ldHdvcmtSdWxlU2V0cy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "94d0e70b-6d37-4360-80c1-f6e1cd5ab1d8" + "fe358afd-c4dc-47f1-89e8-c6d5e7250f2f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.2.0" ] }, "ResponseHeaders": { @@ -1085,7 +1085,7 @@ "no-cache" ], "x-ms-request-id": [ - "b6e2edd2-3cd4-435c-9ce6-c2597c8e0a25_M2SN1_M2SN1" + "0501ef22-bee2-4ba4-aa63-f432d7ec3190_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" @@ -1095,13 +1095,13 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-correlation-request-id": [ - "16326fc7-dc2b-47dd-b06f-d6e6c6a9a447" + "84df700e-16bf-4cc4-ac9e-2749a6c10f08" ], "x-ms-routing-request-id": [ - "WESTUS:20200612T051950Z:16326fc7-dc2b-47dd-b06f-d6e6c6a9a447" + "WESTUS:20200915T054249Z:84df700e-16bf-4cc4-ac9e-2749a6c10f08" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1110,7 +1110,7 @@ "nosniff" ], "Date": [ - "Fri, 12 Jun 2020 05:19:50 GMT" + "Tue, 15 Sep 2020 05:42:49 GMT" ], "Content-Length": [ "882" @@ -1122,26 +1122,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-7851/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSets\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/default\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"2.2.2.2\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"3.3.3.3\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-2917/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSets\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/default\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"2.2.2.2\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"3.3.3.3\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-7851/networkRuleSets/default?api-version=2018-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzI5MDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZS03ODUxL25ldHdvcmtSdWxlU2V0cy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-2917/networkRuleSets/default?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzMzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZS0yOTE3L25ldHdvcmtSdWxlU2V0cy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e7eb526f-705a-4fc8-816c-c40ada1b8c47" + "4e8ebd89-af39-49ac-a8b8-6b4d9fb04f75" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.2.0" ] }, "ResponseHeaders": { @@ -1152,7 +1152,7 @@ "no-cache" ], "x-ms-request-id": [ - "d6be753e-077a-4fac-90f3-c1c0adfb19f3_M4SN1_M4SN1" + "009d4554-f779-41c9-8ac0-c4ae0354293c_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" @@ -1162,13 +1162,13 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11999" ], "x-ms-correlation-request-id": [ - "fb15ba8f-a82f-4f0e-8d16-dba63a2c6e0d" + "a4992734-de2f-4af3-b25c-68cc5c9412fb" ], "x-ms-routing-request-id": [ - "WESTUS:20200612T051957Z:fb15ba8f-a82f-4f0e-8d16-dba63a2c6e0d" + "WESTUS:20200915T054257Z:a4992734-de2f-4af3-b25c-68cc5c9412fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1177,7 +1177,7 @@ "nosniff" ], "Date": [ - "Fri, 12 Jun 2020 05:19:57 GMT" + "Tue, 15 Sep 2020 05:42:56 GMT" ], "Content-Length": [ "1100" @@ -1189,26 +1189,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-7851/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSets\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/default\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault01\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"2.2.2.2\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"3.3.3.3\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-2917/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSets\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/default\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault01\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"2.2.2.2\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"3.3.3.3\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-7851/networkRuleSets/default?api-version=2018-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzI5MDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZS03ODUxL25ldHdvcmtSdWxlU2V0cy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-2917/networkRuleSets/default?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzMzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZS0yOTE3L25ldHdvcmtSdWxlU2V0cy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "31c8c607-a52d-480c-91d8-3e677a6b6b23" + "4552919b-9df1-46f9-b2ea-330921657665" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.2.0" ] }, "ResponseHeaders": { @@ -1219,7 +1219,7 @@ "no-cache" ], "x-ms-request-id": [ - "dec5693a-1ad7-46b9-a266-24673a2c81c1_M3SN1_M3SN1" + "302d8dff-8381-40d3-9eb6-93572951c74d_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" @@ -1229,13 +1229,13 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11999" ], "x-ms-correlation-request-id": [ - "aa9d247c-5dda-46c9-b955-24579590b2c6" + "ed85a972-bdd2-4e3e-9efb-53e68a794995" ], "x-ms-routing-request-id": [ - "WESTUS:20200612T051958Z:aa9d247c-5dda-46c9-b955-24579590b2c6" + "WESTUS:20200915T054257Z:ed85a972-bdd2-4e3e-9efb-53e68a794995" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1244,7 +1244,7 @@ "nosniff" ], "Date": [ - "Fri, 12 Jun 2020 05:19:57 GMT" + "Tue, 15 Sep 2020 05:42:57 GMT" ], "Content-Length": [ "1100" @@ -1256,26 +1256,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-7851/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSets\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/default\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault01\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"2.2.2.2\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"3.3.3.3\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-2917/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSets\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/default\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault01\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"2.2.2.2\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"3.3.3.3\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-7851/networkRuleSets/default?api-version=2018-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzI5MDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZS03ODUxL25ldHdvcmtSdWxlU2V0cy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-2917/networkRuleSets/default?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzMzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZS0yOTE3L25ldHdvcmtSdWxlU2V0cy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "90aecdaf-c9bf-4a30-abb9-300440d3ef3c" + "acf81a41-9f60-440d-ae8c-37823ced185e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.2.0" ] }, "ResponseHeaders": { @@ -1286,7 +1286,7 @@ "no-cache" ], "x-ms-request-id": [ - "38cc4ab7-98c4-4cf1-8bcc-9f83c1cef17b_M0SN1_M0SN1" + "d2dbfc18-9681-4ae4-9422-58c69e5605a7_M2SN1_M2SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" @@ -1296,13 +1296,13 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-correlation-request-id": [ - "2da57ab3-d06b-4742-b3dc-b1b000fb9f85" + "684a7014-d8f6-49c4-8bc4-dac9de54113f" ], "x-ms-routing-request-id": [ - "WESTUS:20200612T052005Z:2da57ab3-d06b-4742-b3dc-b1b000fb9f85" + "WESTUS:20200915T054305Z:684a7014-d8f6-49c4-8bc4-dac9de54113f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1311,7 +1311,7 @@ "nosniff" ], "Date": [ - "Fri, 12 Jun 2020 05:20:05 GMT" + "Tue, 15 Sep 2020 05:43:04 GMT" ], "Content-Length": [ "1062" @@ -1323,26 +1323,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-7851/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSets\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/default\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault01\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"2.2.2.2\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-2917/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSets\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/default\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault01\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"2.2.2.2\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-7851/networkRuleSets/default?api-version=2018-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzI5MDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZS03ODUxL25ldHdvcmtSdWxlU2V0cy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-2917/networkRuleSets/default?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzMzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZS0yOTE3L25ldHdvcmtSdWxlU2V0cy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "26916de4-b71c-45ae-9d70-b3cb4375198f" + "b6870381-ca16-450d-a14a-ff3bc15c198e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.2.0" ] }, "ResponseHeaders": { @@ -1353,7 +1353,7 @@ "no-cache" ], "x-ms-request-id": [ - "f0c64acd-bab1-43a8-96fc-33941b4ae882_M4SN1_M4SN1" + "50c738ee-5671-4a8d-a6e7-fb296149b2dd_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" @@ -1363,13 +1363,13 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-correlation-request-id": [ - "aa66985e-5ef6-4343-804d-7340007817f9" + "fa38e40f-bac9-4d17-9631-9263e16e21b9" ], "x-ms-routing-request-id": [ - "WESTUS:20200612T052013Z:aa66985e-5ef6-4343-804d-7340007817f9" + "WESTUS:20200915T054313Z:fa38e40f-bac9-4d17-9631-9263e16e21b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1378,7 +1378,7 @@ "nosniff" ], "Date": [ - "Fri, 12 Jun 2020 05:20:12 GMT" + "Tue, 15 Sep 2020 05:43:12 GMT" ], "Content-Length": [ "1062" @@ -1390,26 +1390,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-7851/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSets\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/default\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault01\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"2.2.2.2\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-2917/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSets\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/default\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault01\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"2.2.2.2\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-7851/networkRuleSets/default?api-version=2018-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzI5MDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZS03ODUxL25ldHdvcmtSdWxlU2V0cy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-2917/networkRuleSets/default?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzMzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZS0yOTE3L25ldHdvcmtSdWxlU2V0cy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fc93e2cc-753e-430a-a297-cc0788869d68" + "c3d22529-f56f-46d2-998f-721c1eb24dfe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.2.0" ] }, "ResponseHeaders": { @@ -1420,7 +1420,7 @@ "no-cache" ], "x-ms-request-id": [ - "de8b35e0-4d53-4a57-b856-290f403e983f_M5SN1_M5SN1" + "77739a45-1ac2-405f-8b62-adc557a6d9ba_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" @@ -1433,10 +1433,10 @@ "11999" ], "x-ms-correlation-request-id": [ - "4a648b08-8f9c-4060-9473-090d3985416d" + "c3427bed-03b9-4728-96a6-16a3e2d08070" ], "x-ms-routing-request-id": [ - "WESTUS:20200612T052020Z:4a648b08-8f9c-4060-9473-090d3985416d" + "WESTUS:20200915T054320Z:c3427bed-03b9-4728-96a6-16a3e2d08070" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1445,7 +1445,7 @@ "nosniff" ], "Date": [ - "Fri, 12 Jun 2020 05:20:19 GMT" + "Tue, 15 Sep 2020 05:43:19 GMT" ], "Content-Length": [ "1062" @@ -1457,26 +1457,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-7851/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSets\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/default\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault01\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"2.2.2.2\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-2917/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSets\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/default\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault01\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"2.2.2.2\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-7851/networkRuleSets/default?api-version=2018-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzI5MDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZS03ODUxL25ldHdvcmtSdWxlU2V0cy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-2917/networkRuleSets/default?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzMzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZS0yOTE3L25ldHdvcmtSdWxlU2V0cy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a91f6c02-155d-479f-82dc-dc16a4813bcf" + "67212fff-a98f-4038-ab24-e1ba43681007" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.2.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1493,7 +1493,7 @@ "no-cache" ], "x-ms-request-id": [ - "a0830685-7bd0-4c7f-847a-368de1939b9a_M1SN1_M1SN1" + "6575ef9d-f9c9-4b4e-b81c-40ab85398e13_M2SN1_M2SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" @@ -1506,10 +1506,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "144b4b66-bc72-40c4-88cd-ceaf38e6ef0d" + "ae54c959-80b2-4e9d-ada2-a574b1932c69" ], "x-ms-routing-request-id": [ - "WESTUS:20200612T051915Z:144b4b66-bc72-40c4-88cd-ceaf38e6ef0d" + "WESTUS:20200915T054214Z:ae54c959-80b2-4e9d-ada2-a574b1932c69" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1518,7 +1518,7 @@ "nosniff" ], "Date": [ - "Fri, 12 Jun 2020 05:19:15 GMT" + "Tue, 15 Sep 2020 05:42:14 GMT" ], "Content-Length": [ "377" @@ -1530,26 +1530,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-7851/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSets\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-2917/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSets\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-7851/networkRuleSets/default?api-version=2018-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzI5MDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZS03ODUxL25ldHdvcmtSdWxlU2V0cy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-2917/networkRuleSets/default?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzMzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZS0yOTE3L25ldHdvcmtSdWxlU2V0cy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"2.2.2.2\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e84025f1-6a98-4150-931e-5307f452162d" + "28bf3598-7c5c-4b26-8f60-7f5742662483" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.2.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1566,23 +1566,23 @@ "no-cache" ], "x-ms-request-id": [ - "6cd2dda4-8a2d-4399-8e22-348675b060ce_M5SN1_M5SN1" + "8e64b745-ec81-4c30-adc4-47053f550d5a_M5CH3_M5CH3" ], "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" + "Service-Bus-Resource-Provider/CH3" ], "Server": [ - "Service-Bus-Resource-Provider/SN1", + "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "e81b3795-df02-4985-98ea-a87fc61694ad" + "659c39bd-ad0f-4f6b-b196-187d326b3f18" ], "x-ms-routing-request-id": [ - "WESTUS:20200612T051921Z:e81b3795-df02-4985-98ea-a87fc61694ad" + "WESTUS:20200915T054222Z:659c39bd-ad0f-4f6b-b196-187d326b3f18" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1591,7 +1591,7 @@ "nosniff" ], "Date": [ - "Fri, 12 Jun 2020 05:19:20 GMT" + "Tue, 15 Sep 2020 05:42:22 GMT" ], "Content-Length": [ "415" @@ -1603,26 +1603,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-7851/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSets\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"2.2.2.2\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-2917/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSets\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"2.2.2.2\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-7851/networkRuleSets/default?api-version=2018-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzI5MDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZS03ODUxL25ldHdvcmtSdWxlU2V0cy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-2917/networkRuleSets/default?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzMzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZS0yOTE3L25ldHdvcmtSdWxlU2V0cy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"2.2.2.2\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"3.3.3.3\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ab609e8f-325f-4405-8c24-e153021f666b" + "297fef04-7a8c-458b-bdb5-057409b8a6d5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.2.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1639,7 +1639,7 @@ "no-cache" ], "x-ms-request-id": [ - "35c80068-4b4a-484f-9ac1-4d0c1e00abe8_M0SN1_M0SN1" + "f45f815f-a23f-4c16-8f82-37a3bd0aaf12_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" @@ -1652,10 +1652,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "bf1c2ff6-63d2-4245-aac2-34a71500c820" + "7f973ad3-f78d-4b31-b938-7cdc3b6152fa" ], "x-ms-routing-request-id": [ - "WESTUS:20200612T051928Z:bf1c2ff6-63d2-4245-aac2-34a71500c820" + "WESTUS:20200915T054229Z:7f973ad3-f78d-4b31-b938-7cdc3b6152fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1664,7 +1664,7 @@ "nosniff" ], "Date": [ - "Fri, 12 Jun 2020 05:19:28 GMT" + "Tue, 15 Sep 2020 05:42:28 GMT" ], "Content-Length": [ "453" @@ -1676,26 +1676,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-7851/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSets\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"2.2.2.2\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"3.3.3.3\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-2917/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSets\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"2.2.2.2\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"3.3.3.3\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-7851/networkRuleSets/default?api-version=2018-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzI5MDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZS03ODUxL25ldHdvcmtSdWxlU2V0cy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-2917/networkRuleSets/default?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzMzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZS0yOTE3L25ldHdvcmtSdWxlU2V0cy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/default\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"2.2.2.2\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"3.3.3.3\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ae462139-8b2e-4f51-916b-bf444c78e49b" + "e67f93d0-7022-4c3c-90a4-9ddaf42083aa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.2.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1712,7 +1712,7 @@ "no-cache" ], "x-ms-request-id": [ - "bd3e4d17-f80c-4250-8838-8b030e64901c_M2SN1_M2SN1" + "7ddcc94e-6b62-4642-a684-a11f69862770_M7SN1_M7SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" @@ -1725,10 +1725,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "46575407-2229-4043-8c9c-da9d758a9c38" + "ee3cf32e-c296-4080-af28-1e45701b9cd8" ], "x-ms-routing-request-id": [ - "WESTUS:20200612T051941Z:46575407-2229-4043-8c9c-da9d758a9c38" + "WESTUS:20200915T054241Z:ee3cf32e-c296-4080-af28-1e45701b9cd8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1737,7 +1737,7 @@ "nosniff" ], "Date": [ - "Fri, 12 Jun 2020 05:19:40 GMT" + "Tue, 15 Sep 2020 05:42:41 GMT" ], "Content-Length": [ "666" @@ -1749,26 +1749,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-7851/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSets\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/default\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"2.2.2.2\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"3.3.3.3\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-2917/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSets\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/default\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"2.2.2.2\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"3.3.3.3\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-7851/networkRuleSets/default?api-version=2018-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzI5MDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZS03ODUxL25ldHdvcmtSdWxlU2V0cy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-2917/networkRuleSets/default?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzMzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZS0yOTE3L25ldHdvcmtSdWxlU2V0cy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/default\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"2.2.2.2\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"3.3.3.3\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "21dae84a-fc0e-409a-8ee1-b388d6c7942d" + "b53d6573-1dbb-4591-bd84-efc9e4370438" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.2.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1785,23 +1785,23 @@ "no-cache" ], "x-ms-request-id": [ - "b5e1a7d3-ef17-488e-9c42-274ee5c7887d_M5CH3_M5CH3" + "4af3b5f5-2e32-4b03-aec3-e8cd880bdd09_M3SN1_M3SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "bc6842de-48f2-4856-8151-947b117ab427" + "16617521-db5c-40f9-ae04-5d63abfb6db7" ], "x-ms-routing-request-id": [ - "WESTUS:20200612T051949Z:bc6842de-48f2-4856-8151-947b117ab427" + "WESTUS:20200915T054249Z:16617521-db5c-40f9-ae04-5d63abfb6db7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1810,7 +1810,7 @@ "nosniff" ], "Date": [ - "Fri, 12 Jun 2020 05:19:49 GMT" + "Tue, 15 Sep 2020 05:42:48 GMT" ], "Content-Length": [ "882" @@ -1822,26 +1822,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-7851/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSets\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/default\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"2.2.2.2\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"3.3.3.3\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-2917/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSets\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/default\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"2.2.2.2\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"3.3.3.3\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-7851/networkRuleSets/default?api-version=2018-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzI5MDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZS03ODUxL25ldHdvcmtSdWxlU2V0cy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-2917/networkRuleSets/default?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzMzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZS0yOTE3L25ldHdvcmtSdWxlU2V0cy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/default\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault01\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"2.2.2.2\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"3.3.3.3\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b7a8e925-8c42-4047-ab9d-99d5053ab595" + "0400e0e9-340c-4e72-b28e-8ac7590e6f69" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.2.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1858,7 +1858,7 @@ "no-cache" ], "x-ms-request-id": [ - "07714674-d8b2-4fbe-ae6f-13f42e830b4c_M2SN1_M2SN1" + "f88f56be-80dd-4890-8f7a-0003bcbcf0f4_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" @@ -1871,10 +1871,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "fd5b920f-11e1-4242-ba84-7657b1805ea9" + "12cbbc64-527e-42dd-b3d5-ac8c5a8e5766" ], "x-ms-routing-request-id": [ - "WESTUS:20200612T051957Z:fd5b920f-11e1-4242-ba84-7657b1805ea9" + "WESTUS:20200915T054256Z:12cbbc64-527e-42dd-b3d5-ac8c5a8e5766" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1883,7 +1883,7 @@ "nosniff" ], "Date": [ - "Fri, 12 Jun 2020 05:19:57 GMT" + "Tue, 15 Sep 2020 05:42:56 GMT" ], "Content-Length": [ "1100" @@ -1895,26 +1895,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-7851/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSets\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/default\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault01\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"2.2.2.2\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"3.3.3.3\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-2917/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSets\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/default\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault01\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"2.2.2.2\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"3.3.3.3\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-7851/networkRuleSets/default?api-version=2018-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzI5MDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZS03ODUxL25ldHdvcmtSdWxlU2V0cy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-2917/networkRuleSets/default?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzMzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZS0yOTE3L25ldHdvcmtSdWxlU2V0cy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/default\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault01\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"2.2.2.2\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "21755753-7140-42e1-bba4-040155f8c226" + "83070a02-e496-45ea-b0f7-785124c1a9a5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.2.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1931,7 +1931,7 @@ "no-cache" ], "x-ms-request-id": [ - "50841939-b4be-48ff-bd2d-aca1ba6dab60_M3SN1_M3SN1" + "89e7fbb1-80c0-4aed-bd7c-554546cc0ce6_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" @@ -1944,10 +1944,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "9e26f95f-77ad-49dc-9ae0-b45dec9a9d9a" + "494cf8a6-cf47-47b8-b5c9-f36d91c5b3c6" ], "x-ms-routing-request-id": [ - "WESTUS:20200612T052005Z:9e26f95f-77ad-49dc-9ae0-b45dec9a9d9a" + "WESTUS:20200915T054304Z:494cf8a6-cf47-47b8-b5c9-f36d91c5b3c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1956,7 +1956,7 @@ "nosniff" ], "Date": [ - "Fri, 12 Jun 2020 05:20:04 GMT" + "Tue, 15 Sep 2020 05:43:04 GMT" ], "Content-Length": [ "1062" @@ -1968,26 +1968,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-7851/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSets\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/default\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault01\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"2.2.2.2\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-2917/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSets\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/default\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault01\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"2.2.2.2\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-7851/networkRuleSets/default?api-version=2018-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzI5MDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZS03ODUxL25ldHdvcmtSdWxlU2V0cy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-2917/networkRuleSets/default?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzMzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZS0yOTE3L25ldHdvcmtSdWxlU2V0cy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault01\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"2.2.2.2\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "34e89b03-a633-4d3a-ba51-5a8a9bf607e3" + "57141882-4758-4f23-b130-f42e26b19b29" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.2.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2004,7 +2004,7 @@ "no-cache" ], "x-ms-request-id": [ - "1cee34eb-bf2b-492c-9829-1c3b39cff10c_M3SN1_M3SN1" + "cb9adc8d-3111-4383-8f87-7e0685ce65ca_M4SN1_M4SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" @@ -2017,10 +2017,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "b93dec2b-1888-498a-b881-04fe9ab97f4a" + "f4fa4bfc-6b44-41e8-b75f-5121919fd191" ], "x-ms-routing-request-id": [ - "WESTUS:20200612T052027Z:b93dec2b-1888-498a-b881-04fe9ab97f4a" + "WESTUS:20200915T054327Z:f4fa4bfc-6b44-41e8-b75f-5121919fd191" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2029,7 +2029,7 @@ "nosniff" ], "Date": [ - "Fri, 12 Jun 2020 05:20:26 GMT" + "Tue, 15 Sep 2020 05:43:26 GMT" ], "Content-Length": [ "848" @@ -2041,26 +2041,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-7851/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSets\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault01\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"2.2.2.2\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-2917/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSets\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault01\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"2.2.2.2\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-7851/networkRuleSets/default?api-version=2018-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzI5MDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZS03ODUxL25ldHdvcmtSdWxlU2V0cy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-2917/networkRuleSets/default?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzMzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZS0yOTE3L25ldHdvcmtSdWxlU2V0cy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"defaultAction\": \"Allow\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a52adaeb-274d-4212-9414-6367d5981778" + "e2d574b5-fdb9-4a66-888e-f7ca1c81e84b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.2.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2077,7 +2077,7 @@ "no-cache" ], "x-ms-request-id": [ - "8d2996f9-5864-454b-bfa3-cc2b423c866f_M1SN1_M1SN1" + "1bb6bb36-ba32-4d3a-9cbb-0f7120fc2fa0_M7SN1_M7SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" @@ -2090,10 +2090,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "4375493c-eecd-47ba-9fa4-6e677e9ed97a" + "3ab106f4-facd-4c30-a986-62e361ecac5f" ], "x-ms-routing-request-id": [ - "WESTUS:20200612T052033Z:4375493c-eecd-47ba-9fa4-6e677e9ed97a" + "WESTUS:20200915T054333Z:3ab106f4-facd-4c30-a986-62e361ecac5f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2102,7 +2102,7 @@ "nosniff" ], "Date": [ - "Fri, 12 Jun 2020 05:20:33 GMT" + "Tue, 15 Sep 2020 05:43:33 GMT" ], "Content-Length": [ "341" @@ -2114,32 +2114,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-7851/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSets\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"defaultAction\": \"Allow\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-2917/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSets\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"defaultAction\": \"Allow\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace2-6979/networkRuleSets/default?api-version=2018-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzI5MDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZTItNjk3OS9uZXR3b3JrUnVsZVNldHMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace2-7926/networkRuleSets/default?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzMzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZTItNzkyNi9uZXR3b3JrUnVsZVNldHMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/default\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault01\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"2.2.2.2\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"3.3.3.3\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"trustedServiceAccessEnabled\": true,\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/default\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault01\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"2.2.2.2\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"3.3.3.3\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "51c4d5c1-9611-49c6-8098-a8c319f95bee" + "56603b90-4215-482a-a8b5-df903ded4123" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.2.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1178" + "1220" ] }, "ResponseHeaders": { @@ -2150,7 +2150,7 @@ "no-cache" ], "x-ms-request-id": [ - "faa0d73d-7204-48e5-87d7-b389ee7ea1a9_M6SN1_M6SN1" + "472a51dd-a1cd-4531-ae38-0cdcdef36c1a_M4SN1_M4SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" @@ -2163,10 +2163,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "c0c530bf-323a-4b4f-98de-85287ecdf0c7" + "7c775927-29d0-47c9-b86a-26582d231fb7" ], "x-ms-routing-request-id": [ - "WESTUS:20200612T052012Z:c0c530bf-323a-4b4f-98de-85287ecdf0c7" + "WESTUS:20200915T054312Z:7c775927-29d0-47c9-b86a-26582d231fb7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2175,10 +2175,10 @@ "nosniff" ], "Date": [ - "Fri, 12 Jun 2020 05:20:12 GMT" + "Tue, 15 Sep 2020 05:43:12 GMT" ], "Content-Length": [ - "1101" + "1136" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2187,26 +2187,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace2-6979/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSets\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/default\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault01\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"2.2.2.2\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"3.3.3.3\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace2-7926/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSets\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/default\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault01\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"2.2.2.2\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"3.3.3.3\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"trustedServiceAccessEnabled\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace2-6979/networkRuleSets/default?api-version=2018-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzI5MDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZTItNjk3OS9uZXR3b3JrUnVsZVNldHMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace2-7926/networkRuleSets/default?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzMzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZTItNzkyNi9uZXR3b3JrUnVsZVNldHMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/default\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault01\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"2.2.2.2\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7ee050b8-6e60-4359-b2d4-8e5edf345145" + "895a4cc2-962b-415a-be3b-9710371c4434" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.2.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2223,7 +2223,7 @@ "no-cache" ], "x-ms-request-id": [ - "7ca4bd17-5c06-4b46-831a-dbaa2cc824ef_M4SN1_M4SN1" + "35969d6b-7623-40de-8f46-766c3b1de1bc_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" @@ -2233,13 +2233,13 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "f617360c-0dd4-42e8-8117-9e3074509803" + "0367dcf6-6655-4422-9a18-7ed131a35e7c" ], "x-ms-routing-request-id": [ - "WESTUS:20200612T052020Z:f617360c-0dd4-42e8-8117-9e3074509803" + "WESTUS:20200915T054319Z:0367dcf6-6655-4422-9a18-7ed131a35e7c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2248,7 +2248,7 @@ "nosniff" ], "Date": [ - "Fri, 12 Jun 2020 05:20:19 GMT" + "Tue, 15 Sep 2020 05:43:19 GMT" ], "Content-Length": [ "1063" @@ -2260,26 +2260,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace2-6979/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSets\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/default\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault01\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"2.2.2.2\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace2-7926/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSets\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/default\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault01\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"2.2.2.2\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-7851?api-version=2018-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzI5MDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZS03ODUxP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/RSG3388?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL1JTRzMzODg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0328d156-38dd-4128-b31e-a557d7716ad8" + "89dc7232-404d-4930-8593-636adad44f2e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" ] }, "ResponseHeaders": { @@ -2290,26 +2290,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-7851/operationresults/Eventhub-Namespace-7851?api-version=2018-01-01-preview" + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SU0czMzg4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01" ], - "x-ms-request-id": [ - "fd8975d8-5d93-4cae-b320-47e61a3b0d8f_M7SN1_M7SN1" - ], - "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], + "x-ms-request-id": [ + "252afb06-4fcd-4c36-8725-2fb003823310" + ], "x-ms-correlation-request-id": [ - "2a4ab841-fb81-4a04-92b1-0a4f73766f17" + "252afb06-4fcd-4c36-8725-2fb003823310" ], "x-ms-routing-request-id": [ - "WESTUS:20200612T052034Z:2a4ab841-fb81-4a04-92b1-0a4f73766f17" + "WESTUS:20200915T054334Z:252afb06-4fcd-4c36-8725-2fb003823310" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2318,7 +2314,7 @@ "nosniff" ], "Date": [ - "Fri, 12 Jun 2020 05:20:33 GMT" + "Tue, 15 Sep 2020 05:43:33 GMT" ], "Expires": [ "-1" @@ -2331,16 +2327,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-7851/operationresults/Eventhub-Namespace-7851?api-version=2018-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzI5MDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZS03ODUxL29wZXJhdGlvbnJlc3VsdHMvRXZlbnRodWItTmFtZXNwYWNlLTc4NTE/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-2917?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzMzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZS0yOTE3P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "1635b5fc-4732-42be-a125-4d41d1060099" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.2.0" ] }, "ResponseHeaders": { @@ -2350,8 +2352,11 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-2917/operationresults/Eventhub-Namespace-2917?api-version=2018-01-01-preview" + ], "x-ms-request-id": [ - "ff5d6131-70ae-49c5-bfbf-b18ca73640de_M7SN1_M7SN1" + "c465eecd-4215-4e4e-8705-7ccb02cefdef_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" @@ -2360,14 +2365,14 @@ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-correlation-request-id": [ - "e493b399-63ee-4b3f-9709-94a6e8be7076" + "87cb5686-7714-4d37-abd9-2445c997976d" ], "x-ms-routing-request-id": [ - "WESTUS:20200612T052104Z:e493b399-63ee-4b3f-9709-94a6e8be7076" + "WESTUS:20200915T054334Z:87cb5686-7714-4d37-abd9-2445c997976d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2376,7 +2381,7 @@ "nosniff" ], "Date": [ - "Fri, 12 Jun 2020 05:21:03 GMT" + "Tue, 15 Sep 2020 05:43:34 GMT" ], "Expires": [ "-1" @@ -2386,19 +2391,19 @@ ] }, "ResponseBody": "", - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG2903/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-7851/operationresults/Eventhub-Namespace-7851?api-version=2018-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzI5MDMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZS03ODUxL29wZXJhdGlvbnJlc3VsdHMvRXZlbnRodWItTmFtZXNwYWNlLTc4NTE/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SU0czMzg4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTVTBjek16ZzRMVmRGVTFSVlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" ] }, "ResponseHeaders": { @@ -2408,24 +2413,23 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "9cfacd40-9924-4f98-b913-51f3bf6496dc_M7SN1_M7SN1" - ], - "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" + "Location": [ + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SU0czMzg4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01" ], - "Server": [ - "Service-Bus-Resource-Provider/SN1", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11999" + ], + "x-ms-request-id": [ + "82d54d1e-0af7-4abd-9cc4-2337d08b2196" ], "x-ms-correlation-request-id": [ - "37ac3bd9-b9df-4d7d-8040-a799e822c815" + "82d54d1e-0af7-4abd-9cc4-2337d08b2196" ], "x-ms-routing-request-id": [ - "WESTUS:20200612T052104Z:37ac3bd9-b9df-4d7d-8040-a799e822c815" + "WESTUS:20200915T054349Z:82d54d1e-0af7-4abd-9cc4-2337d08b2196" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2434,7 +2438,7 @@ "nosniff" ], "Date": [ - "Fri, 12 Jun 2020 05:21:03 GMT" + "Tue, 15 Sep 2020 05:43:48 GMT" ], "Expires": [ "-1" @@ -2444,25 +2448,19 @@ ] }, "ResponseBody": "", - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/RSG2903?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL1JTRzI5MDM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SU0czMzg4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTVTBjek16ZzRMVmRGVTFSVlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "f763544d-d67d-4346-8d3a-a0b564de27f9" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" ] }, "ResponseHeaders": { @@ -2473,22 +2471,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SU0cyOTAzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SU0czMzg4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" ], "x-ms-request-id": [ - "a46ed365-90b8-4a98-b399-c3937614a46b" + "eff45b3b-086b-428a-bb8c-1cf3c30df363" ], "x-ms-correlation-request-id": [ - "a46ed365-90b8-4a98-b399-c3937614a46b" + "eff45b3b-086b-428a-bb8c-1cf3c30df363" ], "x-ms-routing-request-id": [ - "WESTUS:20200612T052104Z:a46ed365-90b8-4a98-b399-c3937614a46b" + "WESTUS:20200915T054404Z:eff45b3b-086b-428a-bb8c-1cf3c30df363" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2497,7 +2495,7 @@ "nosniff" ], "Date": [ - "Fri, 12 Jun 2020 05:21:04 GMT" + "Tue, 15 Sep 2020 05:44:03 GMT" ], "Expires": [ "-1" @@ -2510,16 +2508,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SU0cyOTAzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTVTBjeU9UQXpMVmRGVTFSVlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SU0czMzg4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTVTBjek16ZzRMVmRGVTFSVlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" ] }, "ResponseHeaders": { @@ -2530,7 +2528,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SU0cyOTAzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SU0czMzg4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2539,13 +2537,13 @@ "11997" ], "x-ms-request-id": [ - "53edbffb-26f8-4534-b606-e148c3d5df1b" + "a3a46cd3-cd6a-4158-a6a1-78be5f5db669" ], "x-ms-correlation-request-id": [ - "53edbffb-26f8-4534-b606-e148c3d5df1b" + "a3a46cd3-cd6a-4158-a6a1-78be5f5db669" ], "x-ms-routing-request-id": [ - "WESTUS:20200612T052119Z:53edbffb-26f8-4534-b606-e148c3d5df1b" + "WESTUS:20200915T054419Z:a3a46cd3-cd6a-4158-a6a1-78be5f5db669" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2554,7 +2552,7 @@ "nosniff" ], "Date": [ - "Fri, 12 Jun 2020 05:21:19 GMT" + "Tue, 15 Sep 2020 05:44:18 GMT" ], "Expires": [ "-1" @@ -2567,16 +2565,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SU0cyOTAzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTVTBjeU9UQXpMVmRGVTFSVlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SU0czMzg4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTVTBjek16ZzRMVmRGVTFSVlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" ] }, "ResponseHeaders": { @@ -2587,7 +2585,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SU0cyOTAzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SU0czMzg4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2596,13 +2594,13 @@ "11996" ], "x-ms-request-id": [ - "772b11be-0f02-4aeb-9cf2-1a94c58dd6cc" + "fb174b56-439b-4ce7-a5f5-d3a2843238d4" ], "x-ms-correlation-request-id": [ - "772b11be-0f02-4aeb-9cf2-1a94c58dd6cc" + "fb174b56-439b-4ce7-a5f5-d3a2843238d4" ], "x-ms-routing-request-id": [ - "WESTUS:20200612T052134Z:772b11be-0f02-4aeb-9cf2-1a94c58dd6cc" + "WESTUS:20200915T054434Z:fb174b56-439b-4ce7-a5f5-d3a2843238d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2611,7 +2609,7 @@ "nosniff" ], "Date": [ - "Fri, 12 Jun 2020 05:21:34 GMT" + "Tue, 15 Sep 2020 05:44:33 GMT" ], "Expires": [ "-1" @@ -2624,16 +2622,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SU0cyOTAzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTVTBjeU9UQXpMVmRGVTFSVlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SU0czMzg4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTVTBjek16ZzRMVmRGVTFSVlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" ] }, "ResponseHeaders": { @@ -2644,7 +2642,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SU0cyOTAzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SU0czMzg4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2653,13 +2651,13 @@ "11995" ], "x-ms-request-id": [ - "df3f124d-a29d-465c-ae2c-50882d225120" + "a8948fcb-0772-4141-b22e-3a007e178bbb" ], "x-ms-correlation-request-id": [ - "df3f124d-a29d-465c-ae2c-50882d225120" + "a8948fcb-0772-4141-b22e-3a007e178bbb" ], "x-ms-routing-request-id": [ - "WESTUS:20200612T052149Z:df3f124d-a29d-465c-ae2c-50882d225120" + "WESTUS:20200915T054449Z:a8948fcb-0772-4141-b22e-3a007e178bbb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2668,7 +2666,7 @@ "nosniff" ], "Date": [ - "Fri, 12 Jun 2020 05:21:49 GMT" + "Tue, 15 Sep 2020 05:44:48 GMT" ], "Expires": [ "-1" @@ -2681,16 +2679,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SU0cyOTAzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTVTBjeU9UQXpMVmRGVTFSVlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SU0czMzg4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTVTBjek16ZzRMVmRGVTFSVlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" ] }, "ResponseHeaders": { @@ -2701,7 +2699,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SU0cyOTAzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SU0czMzg4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2710,13 +2708,13 @@ "11994" ], "x-ms-request-id": [ - "86bfd01b-bcb6-4a88-b2bc-ec4d6b0afed0" + "33e6e033-b73c-49b7-b41e-d767d931f171" ], "x-ms-correlation-request-id": [ - "86bfd01b-bcb6-4a88-b2bc-ec4d6b0afed0" + "33e6e033-b73c-49b7-b41e-d767d931f171" ], "x-ms-routing-request-id": [ - "WESTUS:20200612T052204Z:86bfd01b-bcb6-4a88-b2bc-ec4d6b0afed0" + "WESTUS:20200915T054504Z:33e6e033-b73c-49b7-b41e-d767d931f171" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2725,7 +2723,7 @@ "nosniff" ], "Date": [ - "Fri, 12 Jun 2020 05:22:04 GMT" + "Tue, 15 Sep 2020 05:45:03 GMT" ], "Expires": [ "-1" @@ -2738,16 +2736,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SU0cyOTAzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTVTBjeU9UQXpMVmRGVTFSVlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SU0czMzg4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTVTBjek16ZzRMVmRGVTFSVlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" ] }, "ResponseHeaders": { @@ -2757,23 +2755,17 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SU0cyOTAzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], "x-ms-request-id": [ - "995a46ee-2892-4748-bd27-6b347ec4f7fd" + "c793454b-87ec-4110-a746-b541bf8061ab" ], "x-ms-correlation-request-id": [ - "995a46ee-2892-4748-bd27-6b347ec4f7fd" + "c793454b-87ec-4110-a746-b541bf8061ab" ], "x-ms-routing-request-id": [ - "WESTUS:20200612T052220Z:995a46ee-2892-4748-bd27-6b347ec4f7fd" + "WESTUS:20200915T054519Z:c793454b-87ec-4110-a746-b541bf8061ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2782,7 +2774,7 @@ "nosniff" ], "Date": [ - "Fri, 12 Jun 2020 05:22:20 GMT" + "Tue, 15 Sep 2020 05:45:18 GMT" ], "Expires": [ "-1" @@ -2792,19 +2784,19 @@ ] }, "ResponseBody": "", - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SU0cyOTAzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTVTBjeU9UQXpMVmRGVTFSVlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SU0czMzg4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTVTBjek16ZzRMVmRGVTFSVlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" ] }, "ResponseHeaders": { @@ -2814,23 +2806,17 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SU0cyOTAzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], "x-ms-request-id": [ - "7c165fa7-908d-44fa-b358-8284c2cf65e5" + "90d3eed7-ee3c-4b56-8a3c-a3806008ec5a" ], "x-ms-correlation-request-id": [ - "7c165fa7-908d-44fa-b358-8284c2cf65e5" + "90d3eed7-ee3c-4b56-8a3c-a3806008ec5a" ], "x-ms-routing-request-id": [ - "WESTUS:20200612T052235Z:7c165fa7-908d-44fa-b358-8284c2cf65e5" + "WESTUS:20200915T054519Z:90d3eed7-ee3c-4b56-8a3c-a3806008ec5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2839,7 +2825,7 @@ "nosniff" ], "Date": [ - "Fri, 12 Jun 2020 05:22:34 GMT" + "Tue, 15 Sep 2020 05:45:18 GMT" ], "Expires": [ "-1" @@ -2849,19 +2835,19 @@ ] }, "ResponseBody": "", - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SU0cyOTAzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTVTBjeU9UQXpMVmRGVTFSVlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-2917/operationresults/Eventhub-Namespace-2917?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzMzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZS0yOTE3L29wZXJhdGlvbnJlc3VsdHMvRXZlbnRodWItTmFtZXNwYWNlLTI5MTc/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.2.0" ] }, "ResponseHeaders": { @@ -2871,17 +2857,24 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], "x-ms-request-id": [ - "fa5f78de-3f6c-499f-9c9c-ff04af141b2d" + "278f0c1e-ee6b-4344-a39f-01a24f395a47_M1SN1_M1SN1" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" ], "x-ms-correlation-request-id": [ - "fa5f78de-3f6c-499f-9c9c-ff04af141b2d" + "2f102366-e8ab-4ce5-bea7-53ea6a3e6a45" ], "x-ms-routing-request-id": [ - "WESTUS:20200612T052250Z:fa5f78de-3f6c-499f-9c9c-ff04af141b2d" + "WESTUS:20200915T054404Z:2f102366-e8ab-4ce5-bea7-53ea6a3e6a45" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2890,7 +2883,7 @@ "nosniff" ], "Date": [ - "Fri, 12 Jun 2020 05:22:49 GMT" + "Tue, 15 Sep 2020 05:44:04 GMT" ], "Expires": [ "-1" @@ -2903,16 +2896,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SU0cyOTAzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTVTBjeU9UQXpMVmRGVTFSVlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RSG3388/providers/Microsoft.EventHub/namespaces/Eventhub-Namespace-2917/operationresults/Eventhub-Namespace-2917?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL1JTRzMzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL0V2ZW50aHViLU5hbWVzcGFjZS0yOTE3L29wZXJhdGlvbnJlc3VsdHMvRXZlbnRodWItTmFtZXNwYWNlLTI5MTc/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.2.0" ] }, "ResponseHeaders": { @@ -2922,17 +2915,24 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], "x-ms-request-id": [ - "1e78b86c-fa70-49e8-8012-8ece8ab2a202" + "84558ce5-c800-4d83-a758-0184a0d7204c_M1SN1_M1SN1" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" ], "x-ms-correlation-request-id": [ - "1e78b86c-fa70-49e8-8012-8ece8ab2a202" + "b40322ce-7768-4021-a63c-aad4be5b4f90" ], "x-ms-routing-request-id": [ - "WESTUS:20200612T052250Z:1e78b86c-fa70-49e8-8012-8ece8ab2a202" + "WESTUS:20200915T054404Z:b40322ce-7768-4021-a63c-aad4be5b4f90" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2941,7 +2941,7 @@ "nosniff" ], "Date": [ - "Fri, 12 Jun 2020 05:22:49 GMT" + "Tue, 15 Sep 2020 05:44:04 GMT" ], "Expires": [ "-1" @@ -2956,9 +2956,9 @@ ], "Names": { "": [ - "RSG2903", - "Eventhub-Namespace-7851", - "Eventhub-Namespace2-6979" + "RSG3388", + "Eventhub-Namespace-2917", + "Eventhub-Namespace2-7926" ] }, "Variables": { diff --git a/src/EventHub/EventHub/ChangeLog.md b/src/EventHub/EventHub/ChangeLog.md index f85705b077bb..a72209f2249a 100644 --- a/src/EventHub/EventHub/ChangeLog.md +++ b/src/EventHub/EventHub/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* Added Optional switch parameter 'TrustedServiceAccessEnabled' to 'Set-AzEventHubNetworkRuleSet' cmdlet ## Version 1.6.0 * Added new Cluster cmdlets - `New-AzEventHubCluster`, `Set-AzEventHubCluster`, `Get-AzEventHubCluster`, `Remove-AzEventHubCluster`, `Get-AzEventHubClustersAvailableRegions`. diff --git a/src/EventHub/EventHub/Cmdlets/NetworkRuleSet/SetAzureEventHubNetworkrule.cs b/src/EventHub/EventHub/Cmdlets/NetworkRuleSet/SetAzureEventHubNetworkrule.cs index 83690dc18eda..42335d01a16e 100644 --- a/src/EventHub/EventHub/Cmdlets/NetworkRuleSet/SetAzureEventHubNetworkrule.cs +++ b/src/EventHub/EventHub/Cmdlets/NetworkRuleSet/SetAzureEventHubNetworkrule.cs @@ -44,6 +44,9 @@ public class SetAzureEventHubNetworkrule : AzureEventHubsCmdletBase [PSArgumentCompleter("Allow", "Deny")] [PSDefaultValue(Value ="Deny")] public string DefaultAction { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = NetwrokruleSetPropertiesParameterSet, HelpMessage = "Indicates whether TrustedServiceAccessEnabled is enabled")] + public SwitchParameter TrustedServiceAccessEnabled { get; set; } [Parameter(Mandatory = true, ParameterSetName = NetwrokruleSetPropertiesParameterSet, Position = 2, HelpMessage = "List of IPRuleSet")] [ValidateNotNullOrEmpty] @@ -76,6 +79,7 @@ public override void ExecuteCmdlet() PSNetworkRuleSetAttributes networkRuleSetAttributes = new PSNetworkRuleSetAttributes() { DefaultAction = DefaultAction, + TrustedServiceAccessEnabled = TrustedServiceAccessEnabled.IsPresent, IpRules = IPRule.OfType().ToList(), VirtualNetworkRules = VirtualNetworkRule.OfType().ToList() }; diff --git a/src/EventHub/EventHub/Models/PSNetworkRuleSetAttributes.cs b/src/EventHub/EventHub/Models/PSNetworkRuleSetAttributes.cs index e57be5925c0e..728fb75aba60 100644 --- a/src/EventHub/EventHub/Models/PSNetworkRuleSetAttributes.cs +++ b/src/EventHub/EventHub/Models/PSNetworkRuleSetAttributes.cs @@ -45,6 +45,7 @@ public PSNetworkRuleSetAttributes() public PSNetworkRuleSetAttributes(NetworkRuleSet networkRuleSet) { DefaultAction = networkRuleSet.DefaultAction; + TrustedServiceAccessEnabled = networkRuleSet.TrustedServiceAccessEnabled; VirtualNetworkRules = PSNWRuleSetVirtualNetworkRulesAttributes.PSNWRuleSetVirtualNetworkRulesAttributesCollection(networkRuleSet.VirtualNetworkRules); IpRules = PSNWRuleSetIpRulesAttributes.PSNWRuleSetIpRulesAttributesCollection(networkRuleSet.IpRules); Id = networkRuleSet.Id; @@ -83,5 +84,7 @@ public PSNetworkRuleSetAttributes(NetworkRuleSet networkRuleSet) /// public IList IpRules { get; set; } + public bool? TrustedServiceAccessEnabled { get; set; } + } } diff --git a/src/EventHub/EventHub/Utilities/EventHubsClient.cs b/src/EventHub/EventHub/Utilities/EventHubsClient.cs index ad111ff602ae..33c8bf3fa797 100644 --- a/src/EventHub/EventHub/Utilities/EventHubsClient.cs +++ b/src/EventHub/EventHub/Utilities/EventHubsClient.cs @@ -699,6 +699,7 @@ public PSNetworkRuleSetAttributes CreateOrUpdateNetworkRuleSet(string resourceGr networkRuleSet.VirtualNetworkRules = new List(); networkRuleSet.DefaultAction = psNetworkRuleSetAttributes.DefaultAction; + networkRuleSet.TrustedServiceAccessEnabled = psNetworkRuleSetAttributes.TrustedServiceAccessEnabled; foreach (PSNWRuleSetIpRulesAttributes psiprules in psNetworkRuleSetAttributes.IpRules) { diff --git a/src/EventHub/EventHub/help/Set-AzEventHubNetworkRuleSet.md b/src/EventHub/EventHub/help/Set-AzEventHubNetworkRuleSet.md index 1f6e823124dc..ed41e744348f 100644 --- a/src/EventHub/EventHub/help/Set-AzEventHubNetworkRuleSet.md +++ b/src/EventHub/EventHub/help/Set-AzEventHubNetworkRuleSet.md @@ -15,8 +15,9 @@ Update the NetworkruleSet of the given Namespace in the current Azure subscripti ### NetworkRuleSetPropertiesSet (Default) ``` Set-AzEventHubNetworkRuleSet [-ResourceGroupName] [-Name] [-DefaultAction ] - [-IPRule] [-VirtualNetworkRule] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-TrustedServiceAccessEnabled] [-IPRule] + [-VirtualNetworkRule] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] ``` ### NetwrokruleSetInputObjectSet @@ -190,6 +191,21 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -TrustedServiceAccessEnabled +Indicates whether TrustedServiceAccessEnabled is enabled + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: NetworkRuleSetPropertiesSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -VirtualNetworkRule List of VirtualNetworkRules diff --git a/src/HDInsight/HDInsight/ChangeLog.md b/src/HDInsight/HDInsight/ChangeLog.md index f624e26fe440..a182ff9a95ad 100644 --- a/src/HDInsight/HDInsight/ChangeLog.md +++ b/src/HDInsight/HDInsight/ChangeLog.md @@ -18,6 +18,12 @@ - Additional information about change #1 --> ## Upcoming Release +* Added warning message for planning to deprecate the parameters `PublicNetworkAccessType` and `OutboundPublicNetworkAccessType` +* Added warning message for planning to replace the parameter `DefaultStorageAccountName` with `StorageAccountResourceId` +* Added warning message for planning to replace the parameter `DefaultStorageAccountKey` with `StorageAccountKey` +* Added warning message for planning to replace the parameter `DefaultStorageAccountType` with `StorageAccountType` +* Added warning message for planning to replace the parameter `DefaultStorageContainer` with `StorageContainer` +* Added warning message for planning to replace the parameter `DefaultStorageRootPath` with `StorageRootPath` ## Version 3.6.0 * Supported creating cluster with Autoscale configuration diff --git a/src/HDInsight/HDInsight/ManagementCommands/NewAzureHDInsightClusterCommand.cs b/src/HDInsight/HDInsight/ManagementCommands/NewAzureHDInsightClusterCommand.cs index 9ceb83c0a215..494455d0be2e 100644 --- a/src/HDInsight/HDInsight/ManagementCommands/NewAzureHDInsightClusterCommand.cs +++ b/src/HDInsight/HDInsight/ManagementCommands/NewAzureHDInsightClusterCommand.cs @@ -21,6 +21,7 @@ using Microsoft.Azure.Graph.RBAC.Version1_6; using Microsoft.Azure.Management.HDInsight.Models; using Microsoft.WindowsAzure.Commands.Common; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using System; using System.Collections; using System.Collections.Generic; @@ -88,6 +89,7 @@ public int ClusterSizeInNodes HelpMessage = "Gets or sets the login for the cluster's user.")] public PSCredential HttpCredential { get; set; } + [CmdletParameterBreakingChange("DefaultStorageAccountName", ReplaceMentCmdletParameterName = "StorageAccountResourceId")] [Parameter( Position = 5, HelpMessage = "Gets or sets the StorageName for the default Azure Storage Account or the default Data Lake Store Account.")] @@ -97,6 +99,7 @@ public string DefaultStorageAccountName set { _defaultStorageAccountName = value; } } + [CmdletParameterBreakingChange("DefaultStorageAccountKey", ReplaceMentCmdletParameterName = "StorageAccountKey")] [Parameter( Position = 6, HelpMessage = "Gets or sets the StorageKey for the default Azure Storage Account.")] @@ -106,6 +109,7 @@ public string DefaultStorageAccountKey set { _defaultStorageAccountKey = value; } } + [CmdletParameterBreakingChange("DefaultStorageAccountType", ReplaceMentCmdletParameterName = "StorageAccountType")] [Parameter( HelpMessage = "Gets or sets the type of the default storage account.")] public StorageType? DefaultStorageAccountType { get; set; } @@ -248,6 +252,7 @@ var storageAccount in [Parameter(HelpMessage = "Gets config actions for the cluster.")] public Dictionary> ScriptActions { get; private set; } + [CmdletParameterBreakingChange("DefaultStorageContainer", ReplaceMentCmdletParameterName = "StorageContainer")] [Parameter(HelpMessage = "Gets or sets the StorageContainer name for the default Azure Storage Account")] public string DefaultStorageContainer { @@ -255,6 +260,7 @@ public string DefaultStorageContainer set { _defaultStorageContainer = value; } } + [CmdletParameterBreakingChange("DefaultStorageRootPath", ReplaceMentCmdletParameterName = "StorageRootPath")] [Parameter(HelpMessage = "Gets or sets the path to the root of the cluster in the default Data Lake Store Account.")] public string DefaultStorageRootPath { get; set; } @@ -392,10 +398,12 @@ public DateTime RdpAccessExpiry [Parameter(HelpMessage = "Gets or sets the encryption vault uri.")] public string EncryptionVaultUri { get; set; } + [CmdletParameterBreakingChange("PublicNetworkAccessType", ChangeDescription = "This parameter is being deprecated.")] [Parameter(HelpMessage = "Gets or sets the public network access type.")] [ValidateSet(PublicNetworkAccess.InboundAndOutbound, PublicNetworkAccess.OutboundOnly, IgnoreCase = true)] public string PublicNetworkAccessType { get; set; } + [CmdletParameterBreakingChange("OutboundPublicNetworkAccessType", ChangeDescription = "This parameter is being deprecated.")] [Parameter(HelpMessage = "Gets or sets the outbound access type to the public network.")] [ValidateSet(OutboundOnlyPublicNetworkAccessType.PublicLoadBalancer, OutboundOnlyPublicNetworkAccessType.UDR, IgnoreCase = true)] public string OutboundPublicNetworkAccessType { get; set; } diff --git a/src/IotHub/IotHub.Test/IotHub.Test.csproj b/src/IotHub/IotHub.Test/IotHub.Test.csproj index 00852eda0c1e..9b3cb2514300 100644 --- a/src/IotHub/IotHub.Test/IotHub.Test.csproj +++ b/src/IotHub/IotHub.Test/IotHub.Test.csproj @@ -11,7 +11,7 @@ - + diff --git a/src/IotHub/IotHub.Test/ScenarioTests/IotHubDPDeviceTests.ps1 b/src/IotHub/IotHub.Test/ScenarioTests/IotHubDPDeviceTests.ps1 index 1c8ea7ea7a7c..183ba43ae3b3 100644 --- a/src/IotHub/IotHub.Test/ScenarioTests/IotHubDPDeviceTests.ps1 +++ b/src/IotHub/IotHub.Test/ScenarioTests/IotHubDPDeviceTests.ps1 @@ -91,6 +91,8 @@ function Test-AzureRmIotHubDeviceLifecycle $errorMessage = "The entered device ""fakeDevice"" doesn't exist." Assert-ThrowsContains { New-AzIotHubSasToken -ResourceGroupName $ResourceGroupName -IotHubName $IotHubName -DeviceId "fakeDevice" } $errorMessage + Wait-Seconds 15 + # Count devices $totalDevices = Invoke-AzIotHubQuery -ResourceGroupName $ResourceGroupName -IotHubName $IotHubName -Query "select * from devices" Assert-True { $totalDevices.Count -eq 4} @@ -176,6 +178,8 @@ function Test-AzureRmIotHubDeviceLifecycle Assert-False { $newDevice5.Capabilities.IotEdge } Assert-True { $newDevice5.Scope -eq $newDevice4.Scope } + Wait-Seconds 15 + # Get all device children $devices = Get-AzIotHubDCL -ResourceGroupName $ResourceGroupName -IotHubName $IotHubName Assert-True { $devices.Count -eq 3} @@ -203,6 +207,8 @@ function Test-AzureRmIotHubDeviceLifecycle $result = Remove-AzIotHubDevice -ResourceGroupName $ResourceGroupName -IotHubName $IotHubName -DeviceId $device1 -Passthru Assert-True { $result } + Wait-Seconds 15 + # Delete all devices $result = Remove-AzIotHubDevice -ResourceGroupName $ResourceGroupName -IotHubName $IotHubName -Passthru Assert-True { $result } diff --git a/src/IotHub/IotHub.Test/SessionRecords/Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubDPConfigurationTests/TestAzureIotHubConfigurationLifecycle.json b/src/IotHub/IotHub.Test/SessionRecords/Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubDPConfigurationTests/TestAzureIotHubConfigurationLifecycle.json index 5016650d81a9..e83f3cbb496c 100644 --- a/src/IotHub/IotHub.Test/SessionRecords/Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubDPConfigurationTests/TestAzureIotHubConfigurationLifecycle.json +++ b/src/IotHub/IotHub.Test/SessionRecords/Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubDPConfigurationTests/TestAzureIotHubConfigurationLifecycle.json @@ -7,16 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0c73ca06-cb7d-46c7-9a07-cbcd2a303f3f" + "88d04ece-5a54-4962-bed2-ffc4a4b4d458" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" ] }, "ResponseHeaders": { @@ -27,16 +27,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11793" + "11999" ], "x-ms-request-id": [ - "f0d1b8da-4f47-4760-8cc7-b85d1086b622" + "a02fb811-af33-45db-b09e-d7804be00d32" ], "x-ms-correlation-request-id": [ - "f0d1b8da-4f47-4760-8cc7-b85d1086b622" + "a02fb811-af33-45db-b09e-d7804be00d32" ], "x-ms-routing-request-id": [ - "WESTUS2:20200429T004540Z:f0d1b8da-4f47-4760-8cc7-b85d1086b622" + "WESTUS2:20200730T195939Z:a02fb811-af33-45db-b09e-d7804be00d32" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Wed, 29 Apr 2020 00:45:39 GMT" + "Thu, 30 Jul 2020 19:59:39 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54,29 +54,29 @@ "-1" ], "Content-Length": [ - "5727" + "5690" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices\",\r\n \"namespace\": \"Microsoft.Devices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0cd79364-7a90-4354-9984-6e36c841418d\",\r\n \"roleDefinitionId\": \"C121DF10-FE58-4BC4-97F9-8296879F7BBB\"\r\n },\r\n {\r\n \"applicationId\": \"29f411f1-b2cf-4043-8ac8-2185d7316811\"\r\n },\r\n {\r\n \"applicationId\": \"89d10474-74af-4874-99a7-c23c2f643083\",\r\n \"roleDefinitionId\": \"7df22794-26e3-4f94-9d50-a4f0f6e1cb41\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/eventGridFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-31\",\r\n \"2018-01-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/securitySettings\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants/securitySettings\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices\",\r\n \"namespace\": \"Microsoft.Devices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0cd79364-7a90-4354-9984-6e36c841418d\",\r\n \"roleDefinitionId\": \"C121DF10-FE58-4BC4-97F9-8296879F7BBB\"\r\n },\r\n {\r\n \"applicationId\": \"29f411f1-b2cf-4043-8ac8-2185d7316811\"\r\n },\r\n {\r\n \"applicationId\": \"89d10474-74af-4874-99a7-c23c2f643083\",\r\n \"roleDefinitionId\": \"7df22794-26e3-4f94-9d50-a4f0f6e1cb41\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/eventGridFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-31\",\r\n \"2018-01-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/securitySettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants/securitySettings\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourcegroups/ps3335?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlZ3JvdXBzL3BzMzMzNT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourcegroups/ps3902?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlZ3JvdXBzL3BzMzkwMj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "87293282-9aeb-4b85-b0ae-b2e66316eafb" + "6e4b09f6-cc28-4270-9fff-7093560e35ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "88bd17f8-ca65-47fa-ad3f-199ec68576dd" + "64459523-0294-4bbd-a2d2-913c1942474e" ], "x-ms-correlation-request-id": [ - "88bd17f8-ca65-47fa-ad3f-199ec68576dd" + "64459523-0294-4bbd-a2d2-913c1942474e" ], "x-ms-routing-request-id": [ - "WESTUS2:20200429T004541Z:88bd17f8-ca65-47fa-ad3f-199ec68576dd" + "WESTUS2:20200730T195940Z:64459523-0294-4bbd-a2d2-913c1942474e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Wed, 29 Apr 2020 00:45:41 GMT" + "Thu, 30 Jul 2020 19:59:40 GMT" ], "Content-Length": [ "165" @@ -123,23 +123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335\",\r\n \"name\": \"ps3335\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902\",\r\n \"name\": \"ps3902\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczEzNDY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzkwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ5MjY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "75ba0764-e915-4955-8383-998181101ce3" + "9732a7a7-8f8d-4649-b6f4-c657c970f052" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -159,7 +159,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMWVjY2M0NGYtMjg3OC00YWYwLWExZjgtOGNkNzc0NWZhMjNk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZTliMzYwMjQtZmM4Yy00NDQyLWFmOWMtZDAwOGEwZTY3MjVh?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -168,13 +168,13 @@ "4999" ], "x-ms-request-id": [ - "a48ff405-8920-4660-8171-f4c4325e8996" + "77b7bc1c-c7ec-438c-b2ae-686a6f2bffca" ], "x-ms-correlation-request-id": [ - "a48ff405-8920-4660-8171-f4c4325e8996" + "77b7bc1c-c7ec-438c-b2ae-686a6f2bffca" ], "x-ms-routing-request-id": [ - "WESTUS2:20200429T004602Z:a48ff405-8920-4660-8171-f4c4325e8996" + "WESTUS2:20200730T195957Z:77b7bc1c-c7ec-438c-b2ae-686a6f2bffca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -183,7 +183,7 @@ "nosniff" ], "Date": [ - "Wed, 29 Apr 2020 00:46:02 GMT" + "Thu, 30 Jul 2020 19:59:57 GMT" ], "Content-Length": [ "619" @@ -195,17 +195,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346\",\r\n \"name\": \"ps1346\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3335\",\r\n \"properties\": {\r\n \"state\": \"Activating\",\r\n \"provisioningState\": \"Accepted\",\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926\",\r\n \"name\": \"ps4926\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3902\",\r\n \"properties\": {\r\n \"state\": \"Activating\",\r\n \"provisioningState\": \"Accepted\",\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMWVjY2M0NGYtMjg3OC00YWYwLWExZjgtOGNkNzc0NWZhMjNk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTVdWalkyTTBOR1l0TWpnM09DMDBZV1l3TFdFeFpqZ3RPR05rTnpjME5XWmhNak5rP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZTliMzYwMjQtZmM4Yy00NDQyLWFmOWMtZDAwOGEwZTY3MjVh?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWlRsaU16WXdNalF0Wm1NNFl5MDBORFF5TFdGbU9XTXRaREF3T0dFd1pUWTNNalZoP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -225,13 +225,13 @@ "11999" ], "x-ms-request-id": [ - "444392fa-3ae0-4d28-83da-95554700792d" + "9267b789-5518-44eb-a23b-76ebdd89dd58" ], "x-ms-correlation-request-id": [ - "444392fa-3ae0-4d28-83da-95554700792d" + "9267b789-5518-44eb-a23b-76ebdd89dd58" ], "x-ms-routing-request-id": [ - "WESTUS2:20200429T004632Z:444392fa-3ae0-4d28-83da-95554700792d" + "WESTUS2:20200730T200028Z:9267b789-5518-44eb-a23b-76ebdd89dd58" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -240,7 +240,7 @@ "nosniff" ], "Date": [ - "Wed, 29 Apr 2020 00:46:32 GMT" + "Thu, 30 Jul 2020 20:00:28 GMT" ], "Content-Length": [ "20" @@ -256,13 +256,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMWVjY2M0NGYtMjg3OC00YWYwLWExZjgtOGNkNzc0NWZhMjNk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTVdWalkyTTBOR1l0TWpnM09DMDBZV1l3TFdFeFpqZ3RPR05rTnpjME5XWmhNak5rP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZTliMzYwMjQtZmM4Yy00NDQyLWFmOWMtZDAwOGEwZTY3MjVh?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWlRsaU16WXdNalF0Wm1NNFl5MDBORFF5TFdGbU9XTXRaREF3T0dFd1pUWTNNalZoP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -282,13 +282,13 @@ "11998" ], "x-ms-request-id": [ - "97d3b2d3-6541-433d-813d-a8d9d9aa6efa" + "23408dde-8d0f-4ad3-9380-a5808a50e058" ], "x-ms-correlation-request-id": [ - "97d3b2d3-6541-433d-813d-a8d9d9aa6efa" + "23408dde-8d0f-4ad3-9380-a5808a50e058" ], "x-ms-routing-request-id": [ - "WESTUS2:20200429T004703Z:97d3b2d3-6541-433d-813d-a8d9d9aa6efa" + "WESTUS2:20200730T200058Z:23408dde-8d0f-4ad3-9380-a5808a50e058" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -297,7 +297,7 @@ "nosniff" ], "Date": [ - "Wed, 29 Apr 2020 00:47:03 GMT" + "Thu, 30 Jul 2020 20:00:57 GMT" ], "Content-Length": [ "20" @@ -313,13 +313,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMWVjY2M0NGYtMjg3OC00YWYwLWExZjgtOGNkNzc0NWZhMjNk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTVdWalkyTTBOR1l0TWpnM09DMDBZV1l3TFdFeFpqZ3RPR05rTnpjME5XWmhNak5rP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZTliMzYwMjQtZmM4Yy00NDQyLWFmOWMtZDAwOGEwZTY3MjVh?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWlRsaU16WXdNalF0Wm1NNFl5MDBORFF5TFdGbU9XTXRaREF3T0dFd1pUWTNNalZoP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -339,13 +339,13 @@ "11997" ], "x-ms-request-id": [ - "7fc56c4a-df52-4334-a657-a934314ffb5b" + "8c7e148b-1f79-473c-9f85-6e9298ce4c20" ], "x-ms-correlation-request-id": [ - "7fc56c4a-df52-4334-a657-a934314ffb5b" + "8c7e148b-1f79-473c-9f85-6e9298ce4c20" ], "x-ms-routing-request-id": [ - "WESTUS2:20200429T004733Z:7fc56c4a-df52-4334-a657-a934314ffb5b" + "WESTUS2:20200730T200128Z:8c7e148b-1f79-473c-9f85-6e9298ce4c20" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -354,10 +354,10 @@ "nosniff" ], "Date": [ - "Wed, 29 Apr 2020 00:47:32 GMT" + "Thu, 30 Jul 2020 20:01:28 GMT" ], "Content-Length": [ - "22" + "20" ], "Content-Type": [ "application/json; charset=utf-8" @@ -366,17 +366,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczEzNDY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZTliMzYwMjQtZmM4Yy00NDQyLWFmOWMtZDAwOGEwZTY3MjVh?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWlRsaU16WXdNalF0Wm1NNFl5MDBORFF5TFdGbU9XTXRaREF3T0dFd1pUWTNNalZoP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -396,13 +396,13 @@ "11996" ], "x-ms-request-id": [ - "7273b4b1-3985-40e2-bd32-585fa3d77556" + "ccb38c5a-4863-4451-9a0f-35446942bb26" ], "x-ms-correlation-request-id": [ - "7273b4b1-3985-40e2-bd32-585fa3d77556" + "ccb38c5a-4863-4451-9a0f-35446942bb26" ], "x-ms-routing-request-id": [ - "WESTUS2:20200429T004733Z:7273b4b1-3985-40e2-bd32-585fa3d77556" + "WESTUS2:20200730T200159Z:ccb38c5a-4863-4451-9a0f-35446942bb26" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -411,10 +411,10 @@ "nosniff" ], "Date": [ - "Wed, 29 Apr 2020 00:47:33 GMT" + "Thu, 30 Jul 2020 20:01:58 GMT" ], "Content-Length": [ - "1460" + "22" ], "Content-Type": [ "application/json; charset=utf-8" @@ -423,23 +423,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346\",\r\n \"name\": \"ps1346\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3335\",\r\n \"etag\": \"AAAAAA0u0lI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1346.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1346\",\r\n \"endpoint\": \"sb://iothub-ns-ps1346-3336793-a0ffce4102.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczEzNDY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzkwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ5MjY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "87e9412d-f097-4146-b250-44fa781be1b0" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -459,13 +453,13 @@ "11995" ], "x-ms-request-id": [ - "91266869-6275-4a0b-98a2-435694d93b95" + "c112fdea-0ca3-4d1c-be78-e2f1d77c0716" ], "x-ms-correlation-request-id": [ - "91266869-6275-4a0b-98a2-435694d93b95" + "c112fdea-0ca3-4d1c-be78-e2f1d77c0716" ], "x-ms-routing-request-id": [ - "WESTUS2:20200429T004734Z:91266869-6275-4a0b-98a2-435694d93b95" + "WESTUS2:20200730T200159Z:c112fdea-0ca3-4d1c-be78-e2f1d77c0716" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -474,7 +468,7 @@ "nosniff" ], "Date": [ - "Wed, 29 Apr 2020 00:47:33 GMT" + "Thu, 30 Jul 2020 20:01:58 GMT" ], "Content-Length": [ "1460" @@ -486,23 +480,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346\",\r\n \"name\": \"ps1346\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3335\",\r\n \"etag\": \"AAAAAA0u0lI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1346.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1346\",\r\n \"endpoint\": \"sb://iothub-ns-ps1346-3336793-a0ffce4102.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926\",\r\n \"name\": \"ps4926\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3902\",\r\n \"etag\": \"AAAAAJ4roJs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4926.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4926\",\r\n \"endpoint\": \"sb://iothub-ns-ps4926-3949122-a28d3b87b4.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczEzNDY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzkwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ5MjY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5d0f196e-a053-4ae9-b9d9-44e3245a5282" + "2e01c19d-81b8-4316-89bd-093ad52d22b4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -522,13 +516,13 @@ "11994" ], "x-ms-request-id": [ - "b9746c63-28d5-4f71-abcf-21cdc8f183c9" + "d1e3ed5e-d458-4eb2-afa1-a2d4ea003608" ], "x-ms-correlation-request-id": [ - "b9746c63-28d5-4f71-abcf-21cdc8f183c9" + "d1e3ed5e-d458-4eb2-afa1-a2d4ea003608" ], "x-ms-routing-request-id": [ - "WESTUS2:20200429T004735Z:b9746c63-28d5-4f71-abcf-21cdc8f183c9" + "WESTUS2:20200730T200200Z:d1e3ed5e-d458-4eb2-afa1-a2d4ea003608" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -537,7 +531,7 @@ "nosniff" ], "Date": [ - "Wed, 29 Apr 2020 00:47:34 GMT" + "Thu, 30 Jul 2020 20:02:00 GMT" ], "Content-Length": [ "1460" @@ -549,23 +543,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346\",\r\n \"name\": \"ps1346\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3335\",\r\n \"etag\": \"AAAAAA0u0lI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1346.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1346\",\r\n \"endpoint\": \"sb://iothub-ns-ps1346-3336793-a0ffce4102.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926\",\r\n \"name\": \"ps4926\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3902\",\r\n \"etag\": \"AAAAAJ4roJs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4926.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4926\",\r\n \"endpoint\": \"sb://iothub-ns-ps4926-3949122-a28d3b87b4.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczEzNDY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzkwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ5MjY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "47ca9ebb-844e-4e08-b7ca-4ec0b75cef23" + "52900a0e-b4f9-4bab-a9ea-f504a73f6a92" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -585,13 +579,13 @@ "11993" ], "x-ms-request-id": [ - "0078f05c-1683-4729-9f6d-f1305767baff" + "38c57217-0fc9-4fb0-bf11-32be3ad1fab9" ], "x-ms-correlation-request-id": [ - "0078f05c-1683-4729-9f6d-f1305767baff" + "38c57217-0fc9-4fb0-bf11-32be3ad1fab9" ], "x-ms-routing-request-id": [ - "WESTUS2:20200429T004736Z:0078f05c-1683-4729-9f6d-f1305767baff" + "WESTUS2:20200730T200201Z:38c57217-0fc9-4fb0-bf11-32be3ad1fab9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -600,7 +594,7 @@ "nosniff" ], "Date": [ - "Wed, 29 Apr 2020 00:47:35 GMT" + "Thu, 30 Jul 2020 20:02:01 GMT" ], "Content-Length": [ "1460" @@ -612,23 +606,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346\",\r\n \"name\": \"ps1346\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3335\",\r\n \"etag\": \"AAAAAA0u0lI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1346.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1346\",\r\n \"endpoint\": \"sb://iothub-ns-ps1346-3336793-a0ffce4102.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926\",\r\n \"name\": \"ps4926\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3902\",\r\n \"etag\": \"AAAAAJ4roJs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4926.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4926\",\r\n \"endpoint\": \"sb://iothub-ns-ps4926-3949122-a28d3b87b4.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczEzNDY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzkwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ5MjY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "96c9245e-66ea-41e2-a6f1-ed14bd97af40" + "a812ebf7-68b6-47cf-8706-29b26c8cc176" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -648,13 +642,13 @@ "11992" ], "x-ms-request-id": [ - "2830a20d-3d79-442c-944b-c636e5f02e8d" + "d1926ea9-b258-49e7-98dd-eaf00d2e4caf" ], "x-ms-correlation-request-id": [ - "2830a20d-3d79-442c-944b-c636e5f02e8d" + "d1926ea9-b258-49e7-98dd-eaf00d2e4caf" ], "x-ms-routing-request-id": [ - "WESTUS2:20200429T004737Z:2830a20d-3d79-442c-944b-c636e5f02e8d" + "WESTUS2:20200730T200202Z:d1926ea9-b258-49e7-98dd-eaf00d2e4caf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -663,7 +657,7 @@ "nosniff" ], "Date": [ - "Wed, 29 Apr 2020 00:47:36 GMT" + "Thu, 30 Jul 2020 20:02:02 GMT" ], "Content-Length": [ "1460" @@ -675,23 +669,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346\",\r\n \"name\": \"ps1346\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3335\",\r\n \"etag\": \"AAAAAA0u0lI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1346.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1346\",\r\n \"endpoint\": \"sb://iothub-ns-ps1346-3336793-a0ffce4102.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926\",\r\n \"name\": \"ps4926\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3902\",\r\n \"etag\": \"AAAAAJ4roJs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4926.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4926\",\r\n \"endpoint\": \"sb://iothub-ns-ps4926-3949122-a28d3b87b4.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczEzNDY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzkwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ5MjY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ab082a71-b364-4884-9047-b4d0e585b01d" + "38f8d491-204f-4637-a86a-491c752895d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -711,13 +705,13 @@ "11991" ], "x-ms-request-id": [ - "e6c477c8-4867-4ec3-9b1d-d550ff6da1ed" + "9677361a-c87f-4dcf-be69-9cb1c1268cb8" ], "x-ms-correlation-request-id": [ - "e6c477c8-4867-4ec3-9b1d-d550ff6da1ed" + "9677361a-c87f-4dcf-be69-9cb1c1268cb8" ], "x-ms-routing-request-id": [ - "WESTUS2:20200429T004738Z:e6c477c8-4867-4ec3-9b1d-d550ff6da1ed" + "WESTUS2:20200730T200203Z:9677361a-c87f-4dcf-be69-9cb1c1268cb8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -726,7 +720,7 @@ "nosniff" ], "Date": [ - "Wed, 29 Apr 2020 00:47:37 GMT" + "Thu, 30 Jul 2020 20:02:03 GMT" ], "Content-Length": [ "1460" @@ -738,23 +732,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346\",\r\n \"name\": \"ps1346\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3335\",\r\n \"etag\": \"AAAAAA0u0lI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1346.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1346\",\r\n \"endpoint\": \"sb://iothub-ns-ps1346-3336793-a0ffce4102.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926\",\r\n \"name\": \"ps4926\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3902\",\r\n \"etag\": \"AAAAAJ4roJs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4926.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4926\",\r\n \"endpoint\": \"sb://iothub-ns-ps4926-3949122-a28d3b87b4.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczEzNDY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzkwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ5MjY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7f6d8366-f25e-4c23-84ac-f2d27ed7339b" + "e383e83e-54b9-4974-a777-552711fbc48d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -774,13 +768,13 @@ "11990" ], "x-ms-request-id": [ - "7fbe54bb-e69f-4fdf-8d11-423417bcac03" + "d8957ea8-d3d8-410e-91d6-7b432333d89d" ], "x-ms-correlation-request-id": [ - "7fbe54bb-e69f-4fdf-8d11-423417bcac03" + "d8957ea8-d3d8-410e-91d6-7b432333d89d" ], "x-ms-routing-request-id": [ - "WESTUS2:20200429T004739Z:7fbe54bb-e69f-4fdf-8d11-423417bcac03" + "WESTUS2:20200730T200204Z:d8957ea8-d3d8-410e-91d6-7b432333d89d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -789,7 +783,7 @@ "nosniff" ], "Date": [ - "Wed, 29 Apr 2020 00:47:38 GMT" + "Thu, 30 Jul 2020 20:02:04 GMT" ], "Content-Length": [ "1460" @@ -801,23 +795,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346\",\r\n \"name\": \"ps1346\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3335\",\r\n \"etag\": \"AAAAAA0u0lI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1346.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1346\",\r\n \"endpoint\": \"sb://iothub-ns-ps1346-3336793-a0ffce4102.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926\",\r\n \"name\": \"ps4926\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3902\",\r\n \"etag\": \"AAAAAJ4roJs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4926.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4926\",\r\n \"endpoint\": \"sb://iothub-ns-ps4926-3949122-a28d3b87b4.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczEzNDY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzkwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ5MjY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12c429a5-601e-48c2-94a6-fd384dcde484" + "9d023e11-82c7-4f45-a6e5-244f891f345f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -837,13 +831,13 @@ "11989" ], "x-ms-request-id": [ - "ff931130-b291-4dc8-95e6-89c6ebfe6c14" + "7ddb770c-4b4b-498e-9478-4329dcb0eac9" ], "x-ms-correlation-request-id": [ - "ff931130-b291-4dc8-95e6-89c6ebfe6c14" + "7ddb770c-4b4b-498e-9478-4329dcb0eac9" ], "x-ms-routing-request-id": [ - "WESTUS2:20200429T004740Z:ff931130-b291-4dc8-95e6-89c6ebfe6c14" + "WESTUS2:20200730T200205Z:7ddb770c-4b4b-498e-9478-4329dcb0eac9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -852,7 +846,7 @@ "nosniff" ], "Date": [ - "Wed, 29 Apr 2020 00:47:39 GMT" + "Thu, 30 Jul 2020 20:02:05 GMT" ], "Content-Length": [ "1460" @@ -864,23 +858,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346\",\r\n \"name\": \"ps1346\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3335\",\r\n \"etag\": \"AAAAAA0u0lI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1346.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1346\",\r\n \"endpoint\": \"sb://iothub-ns-ps1346-3336793-a0ffce4102.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926\",\r\n \"name\": \"ps4926\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3902\",\r\n \"etag\": \"AAAAAJ4roJs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4926.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4926\",\r\n \"endpoint\": \"sb://iothub-ns-ps4926-3949122-a28d3b87b4.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczEzNDY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzkwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ5MjY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d7be1621-6b1c-4ef3-8e20-eeaef871f0b8" + "f3f18d48-0085-45e3-a989-3593f43e1c99" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -900,13 +894,13 @@ "11988" ], "x-ms-request-id": [ - "fbb20c43-f3f4-408b-94da-1f4035c53fcb" + "8fa80e90-cac2-4254-b35a-c75ac776c8cc" ], "x-ms-correlation-request-id": [ - "fbb20c43-f3f4-408b-94da-1f4035c53fcb" + "8fa80e90-cac2-4254-b35a-c75ac776c8cc" ], "x-ms-routing-request-id": [ - "WESTUS2:20200429T004741Z:fbb20c43-f3f4-408b-94da-1f4035c53fcb" + "WESTUS2:20200730T200211Z:8fa80e90-cac2-4254-b35a-c75ac776c8cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -915,7 +909,7 @@ "nosniff" ], "Date": [ - "Wed, 29 Apr 2020 00:47:40 GMT" + "Thu, 30 Jul 2020 20:02:11 GMT" ], "Content-Length": [ "1460" @@ -927,23 +921,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346\",\r\n \"name\": \"ps1346\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3335\",\r\n \"etag\": \"AAAAAA0u0lI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1346.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1346\",\r\n \"endpoint\": \"sb://iothub-ns-ps1346-3336793-a0ffce4102.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926\",\r\n \"name\": \"ps4926\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3902\",\r\n \"etag\": \"AAAAAJ4roJs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4926.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4926\",\r\n \"endpoint\": \"sb://iothub-ns-ps4926-3949122-a28d3b87b4.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczEzNDY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzkwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ5MjY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ccfa6bec-de24-4601-a93f-5daac132c89b" + "f7b2e8e2-b67e-4b4c-acf7-e86cada4a38a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -963,13 +957,13 @@ "11987" ], "x-ms-request-id": [ - "33de88d2-b882-4b03-b888-1ee2d9bd7367" + "dce12554-f3de-4e90-972d-1ef787c4aabf" ], "x-ms-correlation-request-id": [ - "33de88d2-b882-4b03-b888-1ee2d9bd7367" + "dce12554-f3de-4e90-972d-1ef787c4aabf" ], "x-ms-routing-request-id": [ - "WESTUS2:20200429T004742Z:33de88d2-b882-4b03-b888-1ee2d9bd7367" + "WESTUS2:20200730T200218Z:dce12554-f3de-4e90-972d-1ef787c4aabf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -978,7 +972,7 @@ "nosniff" ], "Date": [ - "Wed, 29 Apr 2020 00:47:41 GMT" + "Thu, 30 Jul 2020 20:02:18 GMT" ], "Content-Length": [ "1460" @@ -990,23 +984,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346\",\r\n \"name\": \"ps1346\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3335\",\r\n \"etag\": \"AAAAAA0u0lI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1346.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1346\",\r\n \"endpoint\": \"sb://iothub-ns-ps1346-3336793-a0ffce4102.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926\",\r\n \"name\": \"ps4926\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3902\",\r\n \"etag\": \"AAAAAJ4roJs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4926.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4926\",\r\n \"endpoint\": \"sb://iothub-ns-ps4926-3949122-a28d3b87b4.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczEzNDY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzkwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ5MjY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "197a8d79-c550-43dd-86ec-04f24bfcdc05" + "cdbfdc1e-2aa0-4b66-81b7-24f11476fee5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1026,13 +1020,13 @@ "11986" ], "x-ms-request-id": [ - "84d10dc3-384e-4292-85c8-f38cf11b435a" + "9eacf6f0-4d09-4ea3-8097-3b16e80723fe" ], "x-ms-correlation-request-id": [ - "84d10dc3-384e-4292-85c8-f38cf11b435a" + "9eacf6f0-4d09-4ea3-8097-3b16e80723fe" ], "x-ms-routing-request-id": [ - "WESTUS2:20200429T004743Z:84d10dc3-384e-4292-85c8-f38cf11b435a" + "WESTUS2:20200730T200225Z:9eacf6f0-4d09-4ea3-8097-3b16e80723fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1041,7 +1035,7 @@ "nosniff" ], "Date": [ - "Wed, 29 Apr 2020 00:47:42 GMT" + "Thu, 30 Jul 2020 20:02:24 GMT" ], "Content-Length": [ "1460" @@ -1053,23 +1047,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346\",\r\n \"name\": \"ps1346\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3335\",\r\n \"etag\": \"AAAAAA0u0lI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1346.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1346\",\r\n \"endpoint\": \"sb://iothub-ns-ps1346-3336793-a0ffce4102.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926\",\r\n \"name\": \"ps4926\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3902\",\r\n \"etag\": \"AAAAAJ4roJs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4926.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4926\",\r\n \"endpoint\": \"sb://iothub-ns-ps4926-3949122-a28d3b87b4.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczEzNDY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzkwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ5MjY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "03b5abba-289a-46a0-b9bc-e26a484849cf" + "4b8f816c-c4cc-4dc1-8d9f-558b1f5a77c6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1089,13 +1083,13 @@ "11985" ], "x-ms-request-id": [ - "703e7243-a85c-46ad-a8a2-03747fd61d17" + "bcc4a500-609d-4f34-bc92-80a14787043f" ], "x-ms-correlation-request-id": [ - "703e7243-a85c-46ad-a8a2-03747fd61d17" + "bcc4a500-609d-4f34-bc92-80a14787043f" ], "x-ms-routing-request-id": [ - "WESTUS2:20200429T004744Z:703e7243-a85c-46ad-a8a2-03747fd61d17" + "WESTUS2:20200730T200226Z:bcc4a500-609d-4f34-bc92-80a14787043f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1104,7 +1098,7 @@ "nosniff" ], "Date": [ - "Wed, 29 Apr 2020 00:47:43 GMT" + "Thu, 30 Jul 2020 20:02:25 GMT" ], "Content-Length": [ "1460" @@ -1116,23 +1110,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346\",\r\n \"name\": \"ps1346\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3335\",\r\n \"etag\": \"AAAAAA0u0lI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1346.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1346\",\r\n \"endpoint\": \"sb://iothub-ns-ps1346-3336793-a0ffce4102.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926\",\r\n \"name\": \"ps4926\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3902\",\r\n \"etag\": \"AAAAAJ4roJs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4926.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4926\",\r\n \"endpoint\": \"sb://iothub-ns-ps4926-3949122-a28d3b87b4.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczEzNDY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzkwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ5MjY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c18ccc8e-cdc2-497c-9ec6-a81fa39dea20" + "843232b4-502a-49ef-9b52-55e50b8ba05a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1152,13 +1146,13 @@ "11984" ], "x-ms-request-id": [ - "b3092942-f5c8-4bff-9420-6e655828aa3e" + "6a71c636-fde8-4968-b3dd-f719240c1c22" ], "x-ms-correlation-request-id": [ - "b3092942-f5c8-4bff-9420-6e655828aa3e" + "6a71c636-fde8-4968-b3dd-f719240c1c22" ], "x-ms-routing-request-id": [ - "WESTUS2:20200429T004745Z:b3092942-f5c8-4bff-9420-6e655828aa3e" + "WESTUS2:20200730T200232Z:6a71c636-fde8-4968-b3dd-f719240c1c22" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1167,7 +1161,7 @@ "nosniff" ], "Date": [ - "Wed, 29 Apr 2020 00:47:44 GMT" + "Thu, 30 Jul 2020 20:02:31 GMT" ], "Content-Length": [ "1460" @@ -1179,23 +1173,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346\",\r\n \"name\": \"ps1346\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3335\",\r\n \"etag\": \"AAAAAA0u0lI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1346.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1346\",\r\n \"endpoint\": \"sb://iothub-ns-ps1346-3336793-a0ffce4102.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926\",\r\n \"name\": \"ps4926\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3902\",\r\n \"etag\": \"AAAAAJ4roJs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4926.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4926\",\r\n \"endpoint\": \"sb://iothub-ns-ps4926-3949122-a28d3b87b4.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczEzNDY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzkwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ5MjY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1d1e08ff-3393-4bc6-92d1-c660b117863a" + "1b5b39c4-fee1-4e5e-8082-d4a9ce3f9900" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1215,13 +1209,13 @@ "11983" ], "x-ms-request-id": [ - "43c5e413-fce9-41d5-8911-6d28e1f22bdb" + "1d7454f4-d9af-4144-a5cf-8029e3183158" ], "x-ms-correlation-request-id": [ - "43c5e413-fce9-41d5-8911-6d28e1f22bdb" + "1d7454f4-d9af-4144-a5cf-8029e3183158" ], "x-ms-routing-request-id": [ - "WESTUS2:20200429T004746Z:43c5e413-fce9-41d5-8911-6d28e1f22bdb" + "WESTUS2:20200730T200238Z:1d7454f4-d9af-4144-a5cf-8029e3183158" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1230,7 +1224,7 @@ "nosniff" ], "Date": [ - "Wed, 29 Apr 2020 00:47:46 GMT" + "Thu, 30 Jul 2020 20:02:38 GMT" ], "Content-Length": [ "1460" @@ -1242,23 +1236,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346\",\r\n \"name\": \"ps1346\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3335\",\r\n \"etag\": \"AAAAAA0u0lI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1346.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1346\",\r\n \"endpoint\": \"sb://iothub-ns-ps1346-3336793-a0ffce4102.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926\",\r\n \"name\": \"ps4926\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3902\",\r\n \"etag\": \"AAAAAJ4roJs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4926.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4926\",\r\n \"endpoint\": \"sb://iothub-ns-ps4926-3949122-a28d3b87b4.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczEzNDY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzkwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ5MjY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2236dda2-95c0-456d-855f-efe9ce64c9c1" + "ff502fc3-c308-4458-aa10-fc3f7dd98d1c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1278,13 +1272,13 @@ "11982" ], "x-ms-request-id": [ - "32a47da9-f043-4a74-aa28-98868e236edb" + "463c2113-169a-4b6c-ad47-d3736e85948f" ], "x-ms-correlation-request-id": [ - "32a47da9-f043-4a74-aa28-98868e236edb" + "463c2113-169a-4b6c-ad47-d3736e85948f" ], "x-ms-routing-request-id": [ - "WESTUS2:20200429T004747Z:32a47da9-f043-4a74-aa28-98868e236edb" + "WESTUS2:20200730T200245Z:463c2113-169a-4b6c-ad47-d3736e85948f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1293,7 +1287,7 @@ "nosniff" ], "Date": [ - "Wed, 29 Apr 2020 00:47:47 GMT" + "Thu, 30 Jul 2020 20:02:44 GMT" ], "Content-Length": [ "1460" @@ -1305,23 +1299,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346\",\r\n \"name\": \"ps1346\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3335\",\r\n \"etag\": \"AAAAAA0u0lI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1346.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1346\",\r\n \"endpoint\": \"sb://iothub-ns-ps1346-3336793-a0ffce4102.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926\",\r\n \"name\": \"ps4926\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3902\",\r\n \"etag\": \"AAAAAJ4roJs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4926.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4926\",\r\n \"endpoint\": \"sb://iothub-ns-ps4926-3949122-a28d3b87b4.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczEzNDY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzkwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ5MjY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c8a4492f-116f-4057-a2a4-f554b9c7be81" + "a88027d4-9cd7-4ed4-9ba8-5e9f2035b05b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1341,13 +1335,13 @@ "11981" ], "x-ms-request-id": [ - "107dab81-6283-4707-874b-b581a93ae4cf" + "b4984f9e-6a1f-44a1-9920-6a1b629ff0d7" ], "x-ms-correlation-request-id": [ - "107dab81-6283-4707-874b-b581a93ae4cf" + "b4984f9e-6a1f-44a1-9920-6a1b629ff0d7" ], "x-ms-routing-request-id": [ - "WESTUS2:20200429T004748Z:107dab81-6283-4707-874b-b581a93ae4cf" + "WESTUS2:20200730T200251Z:b4984f9e-6a1f-44a1-9920-6a1b629ff0d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1356,7 +1350,7 @@ "nosniff" ], "Date": [ - "Wed, 29 Apr 2020 00:47:48 GMT" + "Thu, 30 Jul 2020 20:02:50 GMT" ], "Content-Length": [ "1460" @@ -1368,23 +1362,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346\",\r\n \"name\": \"ps1346\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3335\",\r\n \"etag\": \"AAAAAA0u0lI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1346.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1346\",\r\n \"endpoint\": \"sb://iothub-ns-ps1346-3336793-a0ffce4102.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926\",\r\n \"name\": \"ps4926\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3902\",\r\n \"etag\": \"AAAAAJ4roJs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4926.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4926\",\r\n \"endpoint\": \"sb://iothub-ns-ps4926-3949122-a28d3b87b4.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczEzNDY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzkwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ5MjY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "08819a4c-871e-4d9b-8b5c-51a1e1d653d4" + "e2afc9e0-7c96-4e91-adc7-caaf27b30145" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1404,13 +1398,13 @@ "11980" ], "x-ms-request-id": [ - "60b6b877-e41d-4902-b940-df83f0708fe8" + "c4375e61-ec4d-4a8d-9050-7efecb9a156e" ], "x-ms-correlation-request-id": [ - "60b6b877-e41d-4902-b940-df83f0708fe8" + "c4375e61-ec4d-4a8d-9050-7efecb9a156e" ], "x-ms-routing-request-id": [ - "WESTUS2:20200429T004749Z:60b6b877-e41d-4902-b940-df83f0708fe8" + "WESTUS2:20200730T200258Z:c4375e61-ec4d-4a8d-9050-7efecb9a156e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1419,7 +1413,7 @@ "nosniff" ], "Date": [ - "Wed, 29 Apr 2020 00:47:49 GMT" + "Thu, 30 Jul 2020 20:02:58 GMT" ], "Content-Length": [ "1460" @@ -1431,23 +1425,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346\",\r\n \"name\": \"ps1346\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3335\",\r\n \"etag\": \"AAAAAA0u0lI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1346.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1346\",\r\n \"endpoint\": \"sb://iothub-ns-ps1346-3336793-a0ffce4102.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926\",\r\n \"name\": \"ps4926\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3902\",\r\n \"etag\": \"AAAAAJ4roJs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4926.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4926\",\r\n \"endpoint\": \"sb://iothub-ns-ps4926-3949122-a28d3b87b4.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczEzNDY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzkwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ5MjY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1e2734ef-bfa3-4cfc-b1fe-3f2efa990cd0" + "0b223c2a-5ab1-4333-a7cc-920f8efa40a0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1467,13 +1461,13 @@ "11979" ], "x-ms-request-id": [ - "9940964f-ecab-4ae2-a410-aca1bd79525a" + "e1d9b161-e155-4745-b794-f7a729c736ef" ], "x-ms-correlation-request-id": [ - "9940964f-ecab-4ae2-a410-aca1bd79525a" + "e1d9b161-e155-4745-b794-f7a729c736ef" ], "x-ms-routing-request-id": [ - "WESTUS2:20200429T004750Z:9940964f-ecab-4ae2-a410-aca1bd79525a" + "WESTUS2:20200730T200259Z:e1d9b161-e155-4745-b794-f7a729c736ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1482,7 +1476,7 @@ "nosniff" ], "Date": [ - "Wed, 29 Apr 2020 00:47:50 GMT" + "Thu, 30 Jul 2020 20:02:58 GMT" ], "Content-Length": [ "1460" @@ -1494,23 +1488,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346\",\r\n \"name\": \"ps1346\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3335\",\r\n \"etag\": \"AAAAAA0u0lI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1346.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1346\",\r\n \"endpoint\": \"sb://iothub-ns-ps1346-3336793-a0ffce4102.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926\",\r\n \"name\": \"ps4926\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3902\",\r\n \"etag\": \"AAAAAJ4roJs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4926.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4926\",\r\n \"endpoint\": \"sb://iothub-ns-ps4926-3949122-a28d3b87b4.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczEzNDY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzkwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ5MjY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6cef2727-17cb-4767-9dd4-96b540e0bfed" + "55b5f4d2-2422-4aac-a5c0-e8bde928a6f2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1530,13 +1524,13 @@ "11978" ], "x-ms-request-id": [ - "7feec324-1a41-4311-a904-c0d97ff0149e" + "67e764f1-2a50-402a-a328-3a3c6f2457ae" ], "x-ms-correlation-request-id": [ - "7feec324-1a41-4311-a904-c0d97ff0149e" + "67e764f1-2a50-402a-a328-3a3c6f2457ae" ], "x-ms-routing-request-id": [ - "WESTUS2:20200429T004751Z:7feec324-1a41-4311-a904-c0d97ff0149e" + "WESTUS2:20200730T200305Z:67e764f1-2a50-402a-a328-3a3c6f2457ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1545,7 +1539,7 @@ "nosniff" ], "Date": [ - "Wed, 29 Apr 2020 00:47:51 GMT" + "Thu, 30 Jul 2020 20:03:05 GMT" ], "Content-Length": [ "1460" @@ -1557,23 +1551,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346\",\r\n \"name\": \"ps1346\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3335\",\r\n \"etag\": \"AAAAAA0u0lI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1346.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1346\",\r\n \"endpoint\": \"sb://iothub-ns-ps1346-3336793-a0ffce4102.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926\",\r\n \"name\": \"ps4926\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3902\",\r\n \"etag\": \"AAAAAJ4roJs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4926.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4926\",\r\n \"endpoint\": \"sb://iothub-ns-ps4926-3949122-a28d3b87b4.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczEzNDY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzkwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ5MjY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8f3a132c-b896-435c-9140-00fbbe6d6cde" + "9fa36760-6459-497f-b6f6-0f5984ccb653" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1593,13 +1587,13 @@ "11977" ], "x-ms-request-id": [ - "ecf51bb2-ba3c-44fd-ae59-8c14a31d21ef" + "3790b133-0aaa-4b12-8a36-b2f861af2c38" ], "x-ms-correlation-request-id": [ - "ecf51bb2-ba3c-44fd-ae59-8c14a31d21ef" + "3790b133-0aaa-4b12-8a36-b2f861af2c38" ], "x-ms-routing-request-id": [ - "WESTUS2:20200429T004752Z:ecf51bb2-ba3c-44fd-ae59-8c14a31d21ef" + "WESTUS2:20200730T200306Z:3790b133-0aaa-4b12-8a36-b2f861af2c38" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1608,7 +1602,7 @@ "nosniff" ], "Date": [ - "Wed, 29 Apr 2020 00:47:52 GMT" + "Thu, 30 Jul 2020 20:03:06 GMT" ], "Content-Length": [ "1460" @@ -1620,23 +1614,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346\",\r\n \"name\": \"ps1346\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3335\",\r\n \"etag\": \"AAAAAA0u0lI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1346.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1346\",\r\n \"endpoint\": \"sb://iothub-ns-ps1346-3336793-a0ffce4102.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926\",\r\n \"name\": \"ps4926\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3902\",\r\n \"etag\": \"AAAAAJ4roJs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4926.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4926\",\r\n \"endpoint\": \"sb://iothub-ns-ps4926-3949122-a28d3b87b4.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczEzNDY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzkwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ5MjY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cf8422a0-977c-43bd-bc0a-5c17b9b56869" + "dfa5f721-5ccc-4902-98c6-bd31530c7473" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1656,13 +1650,13 @@ "11976" ], "x-ms-request-id": [ - "48c650ca-35bb-44ee-847c-f54d2b6ec42a" + "c139e056-366d-4775-b12d-4a146ba0a927" ], "x-ms-correlation-request-id": [ - "48c650ca-35bb-44ee-847c-f54d2b6ec42a" + "c139e056-366d-4775-b12d-4a146ba0a927" ], "x-ms-routing-request-id": [ - "WESTUS2:20200429T004753Z:48c650ca-35bb-44ee-847c-f54d2b6ec42a" + "WESTUS2:20200730T200312Z:c139e056-366d-4775-b12d-4a146ba0a927" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1671,7 +1665,7 @@ "nosniff" ], "Date": [ - "Wed, 29 Apr 2020 00:47:53 GMT" + "Thu, 30 Jul 2020 20:03:12 GMT" ], "Content-Length": [ "1460" @@ -1683,23 +1677,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346\",\r\n \"name\": \"ps1346\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3335\",\r\n \"etag\": \"AAAAAA0u0lI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1346.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1346\",\r\n \"endpoint\": \"sb://iothub-ns-ps1346-3336793-a0ffce4102.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926\",\r\n \"name\": \"ps4926\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3902\",\r\n \"etag\": \"AAAAAJ4roJs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4926.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4926\",\r\n \"endpoint\": \"sb://iothub-ns-ps4926-3949122-a28d3b87b4.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczEzNDY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzkwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ5MjY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "42b7724b-ad74-4128-a687-254a2ba3c76d" + "f6e7419a-f277-4823-b6c6-4f87517c1390" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1719,13 +1713,76 @@ "11975" ], "x-ms-request-id": [ - "909f6b3d-adef-4f70-9e04-92162de45f3a" + "6773d030-1b6f-409e-9e45-1ac0f32032b1" + ], + "x-ms-correlation-request-id": [ + "6773d030-1b6f-409e-9e45-1ac0f32032b1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200730T200313Z:6773d030-1b6f-409e-9e45-1ac0f32032b1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 30 Jul 2020 20:03:13 GMT" + ], + "Content-Length": [ + "1460" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926\",\r\n \"name\": \"ps4926\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3902\",\r\n \"etag\": \"AAAAAJ4roJs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4926.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4926\",\r\n \"endpoint\": \"sb://iothub-ns-ps4926-3949122-a28d3b87b4.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzkwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ5MjY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d3c5afb6-91a4-41a8-a95d-69dc2786cf5d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28619.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-request-id": [ + "5471c6e6-6b6e-49f5-8200-f326615fd254" ], "x-ms-correlation-request-id": [ - "909f6b3d-adef-4f70-9e04-92162de45f3a" + "5471c6e6-6b6e-49f5-8200-f326615fd254" ], "x-ms-routing-request-id": [ - "WESTUS2:20200429T004754Z:909f6b3d-adef-4f70-9e04-92162de45f3a" + "WESTUS2:20200730T200315Z:5471c6e6-6b6e-49f5-8200-f326615fd254" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1734,7 +1791,7 @@ "nosniff" ], "Date": [ - "Wed, 29 Apr 2020 00:47:54 GMT" + "Thu, 30 Jul 2020 20:03:14 GMT" ], "Content-Length": [ "1460" @@ -1746,23 +1803,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346\",\r\n \"name\": \"ps1346\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3335\",\r\n \"etag\": \"AAAAAA0u0lI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1346.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1346\",\r\n \"endpoint\": \"sb://iothub-ns-ps1346-3336793-a0ffce4102.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926\",\r\n \"name\": \"ps4926\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3902\",\r\n \"etag\": \"AAAAAJ4roJs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4926.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4926\",\r\n \"endpoint\": \"sb://iothub-ns-ps4926-3949122-a28d3b87b4.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczEzNDYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzkwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ5MjYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4e3756ad-862b-4f7f-8a81-75bac43965a1" + "b0fd2ed2-7c7d-47e4-b24e-3220add82223" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1782,13 +1839,13 @@ "1199" ], "x-ms-request-id": [ - "37c976fc-9f02-4ade-ba54-0afe5d7c078a" + "d132997f-9bd0-4ee9-a38a-598677dca16b" ], "x-ms-correlation-request-id": [ - "37c976fc-9f02-4ade-ba54-0afe5d7c078a" + "d132997f-9bd0-4ee9-a38a-598677dca16b" ], "x-ms-routing-request-id": [ - "WESTUS2:20200429T004735Z:37c976fc-9f02-4ade-ba54-0afe5d7c078a" + "WESTUS2:20200730T200201Z:d132997f-9bd0-4ee9-a38a-598677dca16b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1797,7 +1854,7 @@ "nosniff" ], "Date": [ - "Wed, 29 Apr 2020 00:47:34 GMT" + "Thu, 30 Jul 2020 20:02:01 GMT" ], "Content-Length": [ "905" @@ -1809,23 +1866,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"2Ac2MHHyVGo9vThtNBdiGedHiD4YJCeW48e8O/E0Wb8=\",\r\n \"secondaryKey\": \"BLZGUCzMx5uk+DIIpmAphektTVF6W2I7OccBbAnM99E=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"fK2B19RdJqaunSgMxIoCcyPtTYkKnQRenokHkg3k/Lw=\",\r\n \"secondaryKey\": \"VjDX2VgHiiKCjbxdmEfAZuGdTZDjlKNQJJyn6h2jlvo=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Xad5QwV2DaeO8cCnDFLcyKzHJG0S3Yz7s8ZkjBKcAXM=\",\r\n \"secondaryKey\": \"Bb0bBAPfjNJ6WAdWqQy8EwNKlVQL5eopEZxIKVaXLOg=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"N9ENrTvcVnsVDSHiwpeRORv5buMZk8klCjEQlXz8Yxs=\",\r\n \"secondaryKey\": \"bnHwvn3rse9wB8lzcXeQL7HLoNsEP8h8HYmaq2m2CHU=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"RrgQxkOa3WLP3jvUjv9B23GyH4I38iBCVPtyBKtjh68=\",\r\n \"secondaryKey\": \"dG7JJm3usMbc5L5wH/HlaYTQZ30u03tOBJwu2gdGk8g=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"N8llvOxLNn9HYC8LHcKQJfsLgbuYvGnQsc7y+F5Lljk=\",\r\n \"secondaryKey\": \"8Ts2XRYShtRAt1fpS+fzdR3B4T8fjM7gyFTgZX+jHZk=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"pvw9038kXQ5juFcJfBP1UXLfa8QGFLF3l/CspHNhtug=\",\r\n \"secondaryKey\": \"qxTd4J4HqPb4cpYOJ09JsnQfGtdysOnPDZHhL7R6N0c=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"6hlZSGItghrF4BFHicaPeyuMMq7ES3c+nL9lIVHP5pQ=\",\r\n \"secondaryKey\": \"9kQU9Kgn0wP6xfA1zg9VLSYxRzayfI3U9l8HunduMEw=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"fKFwuNu2Y9TzqHEnphoFOPLo/2ebE3FbnVw8a9OKMMw=\",\r\n \"secondaryKey\": \"MmSn9MIfVHWRIbLgaZ07D8sjgQQtsozf+3ZJzP/i7Xk=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"9siFFyFHu7AqbPjgczsOlm9F3NsyeQu51oB+XxeJ8TY=\",\r\n \"secondaryKey\": \"mYiyDXsqrQFmOW0ltsXt2AsaC2qUVsDNuCZIIJ3k43Q=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczEzNDYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzkwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ5MjYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6ae5ed72-bd67-437b-af12-666fa9cbd80d" + "0d4b4f89-809f-4e5d-a935-d3bc8159cf9f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1845,13 +1902,13 @@ "1198" ], "x-ms-request-id": [ - "afbcce35-b89c-42ff-b396-54c9adc48015" + "3ac75029-a3f1-42d1-a16d-3b200207f096" ], "x-ms-correlation-request-id": [ - "afbcce35-b89c-42ff-b396-54c9adc48015" + "3ac75029-a3f1-42d1-a16d-3b200207f096" ], "x-ms-routing-request-id": [ - "WESTUS2:20200429T004736Z:afbcce35-b89c-42ff-b396-54c9adc48015" + "WESTUS2:20200730T200202Z:3ac75029-a3f1-42d1-a16d-3b200207f096" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1860,7 +1917,7 @@ "nosniff" ], "Date": [ - "Wed, 29 Apr 2020 00:47:35 GMT" + "Thu, 30 Jul 2020 20:02:02 GMT" ], "Content-Length": [ "905" @@ -1872,23 +1929,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"2Ac2MHHyVGo9vThtNBdiGedHiD4YJCeW48e8O/E0Wb8=\",\r\n \"secondaryKey\": \"BLZGUCzMx5uk+DIIpmAphektTVF6W2I7OccBbAnM99E=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"fK2B19RdJqaunSgMxIoCcyPtTYkKnQRenokHkg3k/Lw=\",\r\n \"secondaryKey\": \"VjDX2VgHiiKCjbxdmEfAZuGdTZDjlKNQJJyn6h2jlvo=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Xad5QwV2DaeO8cCnDFLcyKzHJG0S3Yz7s8ZkjBKcAXM=\",\r\n \"secondaryKey\": \"Bb0bBAPfjNJ6WAdWqQy8EwNKlVQL5eopEZxIKVaXLOg=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"N9ENrTvcVnsVDSHiwpeRORv5buMZk8klCjEQlXz8Yxs=\",\r\n \"secondaryKey\": \"bnHwvn3rse9wB8lzcXeQL7HLoNsEP8h8HYmaq2m2CHU=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"RrgQxkOa3WLP3jvUjv9B23GyH4I38iBCVPtyBKtjh68=\",\r\n \"secondaryKey\": \"dG7JJm3usMbc5L5wH/HlaYTQZ30u03tOBJwu2gdGk8g=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"N8llvOxLNn9HYC8LHcKQJfsLgbuYvGnQsc7y+F5Lljk=\",\r\n \"secondaryKey\": \"8Ts2XRYShtRAt1fpS+fzdR3B4T8fjM7gyFTgZX+jHZk=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"pvw9038kXQ5juFcJfBP1UXLfa8QGFLF3l/CspHNhtug=\",\r\n \"secondaryKey\": \"qxTd4J4HqPb4cpYOJ09JsnQfGtdysOnPDZHhL7R6N0c=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"6hlZSGItghrF4BFHicaPeyuMMq7ES3c+nL9lIVHP5pQ=\",\r\n \"secondaryKey\": \"9kQU9Kgn0wP6xfA1zg9VLSYxRzayfI3U9l8HunduMEw=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"fKFwuNu2Y9TzqHEnphoFOPLo/2ebE3FbnVw8a9OKMMw=\",\r\n \"secondaryKey\": \"MmSn9MIfVHWRIbLgaZ07D8sjgQQtsozf+3ZJzP/i7Xk=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"9siFFyFHu7AqbPjgczsOlm9F3NsyeQu51oB+XxeJ8TY=\",\r\n \"secondaryKey\": \"mYiyDXsqrQFmOW0ltsXt2AsaC2qUVsDNuCZIIJ3k43Q=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczEzNDYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzkwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ5MjYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1e8c029c-74f5-44f0-a640-e3457de5a92a" + "e1fc733a-559a-4406-9ac7-9ac122674623" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1908,13 +1965,13 @@ "1197" ], "x-ms-request-id": [ - "524814a7-49f5-4c49-8faf-929f0f2d9033" + "0dcee967-e394-4d98-b945-bd51fc2788df" ], "x-ms-correlation-request-id": [ - "524814a7-49f5-4c49-8faf-929f0f2d9033" + "0dcee967-e394-4d98-b945-bd51fc2788df" ], "x-ms-routing-request-id": [ - "WESTUS2:20200429T004737Z:524814a7-49f5-4c49-8faf-929f0f2d9033" + "WESTUS2:20200730T200203Z:0dcee967-e394-4d98-b945-bd51fc2788df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1923,7 +1980,7 @@ "nosniff" ], "Date": [ - "Wed, 29 Apr 2020 00:47:36 GMT" + "Thu, 30 Jul 2020 20:02:03 GMT" ], "Content-Length": [ "905" @@ -1935,23 +1992,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"2Ac2MHHyVGo9vThtNBdiGedHiD4YJCeW48e8O/E0Wb8=\",\r\n \"secondaryKey\": \"BLZGUCzMx5uk+DIIpmAphektTVF6W2I7OccBbAnM99E=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"fK2B19RdJqaunSgMxIoCcyPtTYkKnQRenokHkg3k/Lw=\",\r\n \"secondaryKey\": \"VjDX2VgHiiKCjbxdmEfAZuGdTZDjlKNQJJyn6h2jlvo=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Xad5QwV2DaeO8cCnDFLcyKzHJG0S3Yz7s8ZkjBKcAXM=\",\r\n \"secondaryKey\": \"Bb0bBAPfjNJ6WAdWqQy8EwNKlVQL5eopEZxIKVaXLOg=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"N9ENrTvcVnsVDSHiwpeRORv5buMZk8klCjEQlXz8Yxs=\",\r\n \"secondaryKey\": \"bnHwvn3rse9wB8lzcXeQL7HLoNsEP8h8HYmaq2m2CHU=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"RrgQxkOa3WLP3jvUjv9B23GyH4I38iBCVPtyBKtjh68=\",\r\n \"secondaryKey\": \"dG7JJm3usMbc5L5wH/HlaYTQZ30u03tOBJwu2gdGk8g=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"N8llvOxLNn9HYC8LHcKQJfsLgbuYvGnQsc7y+F5Lljk=\",\r\n \"secondaryKey\": \"8Ts2XRYShtRAt1fpS+fzdR3B4T8fjM7gyFTgZX+jHZk=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"pvw9038kXQ5juFcJfBP1UXLfa8QGFLF3l/CspHNhtug=\",\r\n \"secondaryKey\": \"qxTd4J4HqPb4cpYOJ09JsnQfGtdysOnPDZHhL7R6N0c=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"6hlZSGItghrF4BFHicaPeyuMMq7ES3c+nL9lIVHP5pQ=\",\r\n \"secondaryKey\": \"9kQU9Kgn0wP6xfA1zg9VLSYxRzayfI3U9l8HunduMEw=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"fKFwuNu2Y9TzqHEnphoFOPLo/2ebE3FbnVw8a9OKMMw=\",\r\n \"secondaryKey\": \"MmSn9MIfVHWRIbLgaZ07D8sjgQQtsozf+3ZJzP/i7Xk=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"9siFFyFHu7AqbPjgczsOlm9F3NsyeQu51oB+XxeJ8TY=\",\r\n \"secondaryKey\": \"mYiyDXsqrQFmOW0ltsXt2AsaC2qUVsDNuCZIIJ3k43Q=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczEzNDYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzkwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ5MjYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5cf6908e-bf1b-4490-ba0c-cc10c7f768a0" + "4f7655cb-aa09-4817-983d-99eee9ece62d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1971,13 +2028,13 @@ "1196" ], "x-ms-request-id": [ - "7c080db2-6ca0-45b4-8a7a-5e396b2bd133" + "d1898f49-267f-4dee-8dd1-da30865657e5" ], "x-ms-correlation-request-id": [ - "7c080db2-6ca0-45b4-8a7a-5e396b2bd133" + "d1898f49-267f-4dee-8dd1-da30865657e5" ], "x-ms-routing-request-id": [ - "WESTUS2:20200429T004738Z:7c080db2-6ca0-45b4-8a7a-5e396b2bd133" + "WESTUS2:20200730T200204Z:d1898f49-267f-4dee-8dd1-da30865657e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1986,7 +2043,7 @@ "nosniff" ], "Date": [ - "Wed, 29 Apr 2020 00:47:37 GMT" + "Thu, 30 Jul 2020 20:02:04 GMT" ], "Content-Length": [ "905" @@ -1998,23 +2055,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"2Ac2MHHyVGo9vThtNBdiGedHiD4YJCeW48e8O/E0Wb8=\",\r\n \"secondaryKey\": \"BLZGUCzMx5uk+DIIpmAphektTVF6W2I7OccBbAnM99E=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"fK2B19RdJqaunSgMxIoCcyPtTYkKnQRenokHkg3k/Lw=\",\r\n \"secondaryKey\": \"VjDX2VgHiiKCjbxdmEfAZuGdTZDjlKNQJJyn6h2jlvo=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Xad5QwV2DaeO8cCnDFLcyKzHJG0S3Yz7s8ZkjBKcAXM=\",\r\n \"secondaryKey\": \"Bb0bBAPfjNJ6WAdWqQy8EwNKlVQL5eopEZxIKVaXLOg=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"N9ENrTvcVnsVDSHiwpeRORv5buMZk8klCjEQlXz8Yxs=\",\r\n \"secondaryKey\": \"bnHwvn3rse9wB8lzcXeQL7HLoNsEP8h8HYmaq2m2CHU=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"RrgQxkOa3WLP3jvUjv9B23GyH4I38iBCVPtyBKtjh68=\",\r\n \"secondaryKey\": \"dG7JJm3usMbc5L5wH/HlaYTQZ30u03tOBJwu2gdGk8g=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"N8llvOxLNn9HYC8LHcKQJfsLgbuYvGnQsc7y+F5Lljk=\",\r\n \"secondaryKey\": \"8Ts2XRYShtRAt1fpS+fzdR3B4T8fjM7gyFTgZX+jHZk=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"pvw9038kXQ5juFcJfBP1UXLfa8QGFLF3l/CspHNhtug=\",\r\n \"secondaryKey\": \"qxTd4J4HqPb4cpYOJ09JsnQfGtdysOnPDZHhL7R6N0c=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"6hlZSGItghrF4BFHicaPeyuMMq7ES3c+nL9lIVHP5pQ=\",\r\n \"secondaryKey\": \"9kQU9Kgn0wP6xfA1zg9VLSYxRzayfI3U9l8HunduMEw=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"fKFwuNu2Y9TzqHEnphoFOPLo/2ebE3FbnVw8a9OKMMw=\",\r\n \"secondaryKey\": \"MmSn9MIfVHWRIbLgaZ07D8sjgQQtsozf+3ZJzP/i7Xk=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"9siFFyFHu7AqbPjgczsOlm9F3NsyeQu51oB+XxeJ8TY=\",\r\n \"secondaryKey\": \"mYiyDXsqrQFmOW0ltsXt2AsaC2qUVsDNuCZIIJ3k43Q=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczEzNDYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzkwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ5MjYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8919e672-8ae1-414a-b72a-79abd3bb37fb" + "47950d0a-62f2-48ce-85dd-71eb57bacc83" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2034,13 +2091,13 @@ "1195" ], "x-ms-request-id": [ - "20c4c781-7b0b-40d8-be38-9deeb47a6e7a" + "f4f21872-61b9-4c00-add0-8513d58d5ea0" ], "x-ms-correlation-request-id": [ - "20c4c781-7b0b-40d8-be38-9deeb47a6e7a" + "f4f21872-61b9-4c00-add0-8513d58d5ea0" ], "x-ms-routing-request-id": [ - "WESTUS2:20200429T004739Z:20c4c781-7b0b-40d8-be38-9deeb47a6e7a" + "WESTUS2:20200730T200205Z:f4f21872-61b9-4c00-add0-8513d58d5ea0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2049,7 +2106,7 @@ "nosniff" ], "Date": [ - "Wed, 29 Apr 2020 00:47:38 GMT" + "Thu, 30 Jul 2020 20:02:05 GMT" ], "Content-Length": [ "905" @@ -2061,23 +2118,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"2Ac2MHHyVGo9vThtNBdiGedHiD4YJCeW48e8O/E0Wb8=\",\r\n \"secondaryKey\": \"BLZGUCzMx5uk+DIIpmAphektTVF6W2I7OccBbAnM99E=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"fK2B19RdJqaunSgMxIoCcyPtTYkKnQRenokHkg3k/Lw=\",\r\n \"secondaryKey\": \"VjDX2VgHiiKCjbxdmEfAZuGdTZDjlKNQJJyn6h2jlvo=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Xad5QwV2DaeO8cCnDFLcyKzHJG0S3Yz7s8ZkjBKcAXM=\",\r\n \"secondaryKey\": \"Bb0bBAPfjNJ6WAdWqQy8EwNKlVQL5eopEZxIKVaXLOg=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"N9ENrTvcVnsVDSHiwpeRORv5buMZk8klCjEQlXz8Yxs=\",\r\n \"secondaryKey\": \"bnHwvn3rse9wB8lzcXeQL7HLoNsEP8h8HYmaq2m2CHU=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"RrgQxkOa3WLP3jvUjv9B23GyH4I38iBCVPtyBKtjh68=\",\r\n \"secondaryKey\": \"dG7JJm3usMbc5L5wH/HlaYTQZ30u03tOBJwu2gdGk8g=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"N8llvOxLNn9HYC8LHcKQJfsLgbuYvGnQsc7y+F5Lljk=\",\r\n \"secondaryKey\": \"8Ts2XRYShtRAt1fpS+fzdR3B4T8fjM7gyFTgZX+jHZk=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"pvw9038kXQ5juFcJfBP1UXLfa8QGFLF3l/CspHNhtug=\",\r\n \"secondaryKey\": \"qxTd4J4HqPb4cpYOJ09JsnQfGtdysOnPDZHhL7R6N0c=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"6hlZSGItghrF4BFHicaPeyuMMq7ES3c+nL9lIVHP5pQ=\",\r\n \"secondaryKey\": \"9kQU9Kgn0wP6xfA1zg9VLSYxRzayfI3U9l8HunduMEw=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"fKFwuNu2Y9TzqHEnphoFOPLo/2ebE3FbnVw8a9OKMMw=\",\r\n \"secondaryKey\": \"MmSn9MIfVHWRIbLgaZ07D8sjgQQtsozf+3ZJzP/i7Xk=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"9siFFyFHu7AqbPjgczsOlm9F3NsyeQu51oB+XxeJ8TY=\",\r\n \"secondaryKey\": \"mYiyDXsqrQFmOW0ltsXt2AsaC2qUVsDNuCZIIJ3k43Q=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczEzNDYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzkwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ5MjYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d01f424c-51f9-4ca9-954f-9cff197907fc" + "08cb35bd-c496-4fa9-867a-193cac67fcf6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2097,13 +2154,13 @@ "1194" ], "x-ms-request-id": [ - "bd5319a8-c1aa-4b40-b89b-660667af3fa6" + "84590a67-f54a-4185-ac67-2f3d546d0d6a" ], "x-ms-correlation-request-id": [ - "bd5319a8-c1aa-4b40-b89b-660667af3fa6" + "84590a67-f54a-4185-ac67-2f3d546d0d6a" ], "x-ms-routing-request-id": [ - "WESTUS2:20200429T004740Z:bd5319a8-c1aa-4b40-b89b-660667af3fa6" + "WESTUS2:20200730T200212Z:84590a67-f54a-4185-ac67-2f3d546d0d6a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2112,7 +2169,7 @@ "nosniff" ], "Date": [ - "Wed, 29 Apr 2020 00:47:39 GMT" + "Thu, 30 Jul 2020 20:02:11 GMT" ], "Content-Length": [ "905" @@ -2124,23 +2181,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"2Ac2MHHyVGo9vThtNBdiGedHiD4YJCeW48e8O/E0Wb8=\",\r\n \"secondaryKey\": \"BLZGUCzMx5uk+DIIpmAphektTVF6W2I7OccBbAnM99E=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"fK2B19RdJqaunSgMxIoCcyPtTYkKnQRenokHkg3k/Lw=\",\r\n \"secondaryKey\": \"VjDX2VgHiiKCjbxdmEfAZuGdTZDjlKNQJJyn6h2jlvo=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Xad5QwV2DaeO8cCnDFLcyKzHJG0S3Yz7s8ZkjBKcAXM=\",\r\n \"secondaryKey\": \"Bb0bBAPfjNJ6WAdWqQy8EwNKlVQL5eopEZxIKVaXLOg=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"N9ENrTvcVnsVDSHiwpeRORv5buMZk8klCjEQlXz8Yxs=\",\r\n \"secondaryKey\": \"bnHwvn3rse9wB8lzcXeQL7HLoNsEP8h8HYmaq2m2CHU=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"RrgQxkOa3WLP3jvUjv9B23GyH4I38iBCVPtyBKtjh68=\",\r\n \"secondaryKey\": \"dG7JJm3usMbc5L5wH/HlaYTQZ30u03tOBJwu2gdGk8g=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"N8llvOxLNn9HYC8LHcKQJfsLgbuYvGnQsc7y+F5Lljk=\",\r\n \"secondaryKey\": \"8Ts2XRYShtRAt1fpS+fzdR3B4T8fjM7gyFTgZX+jHZk=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"pvw9038kXQ5juFcJfBP1UXLfa8QGFLF3l/CspHNhtug=\",\r\n \"secondaryKey\": \"qxTd4J4HqPb4cpYOJ09JsnQfGtdysOnPDZHhL7R6N0c=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"6hlZSGItghrF4BFHicaPeyuMMq7ES3c+nL9lIVHP5pQ=\",\r\n \"secondaryKey\": \"9kQU9Kgn0wP6xfA1zg9VLSYxRzayfI3U9l8HunduMEw=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"fKFwuNu2Y9TzqHEnphoFOPLo/2ebE3FbnVw8a9OKMMw=\",\r\n \"secondaryKey\": \"MmSn9MIfVHWRIbLgaZ07D8sjgQQtsozf+3ZJzP/i7Xk=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"9siFFyFHu7AqbPjgczsOlm9F3NsyeQu51oB+XxeJ8TY=\",\r\n \"secondaryKey\": \"mYiyDXsqrQFmOW0ltsXt2AsaC2qUVsDNuCZIIJ3k43Q=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczEzNDYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzkwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ5MjYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5dc2ac9b-de29-4f5b-9242-8ae98118d84f" + "d6a3f930-33df-4508-a8b9-1b28a500a41b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2160,13 +2217,13 @@ "1193" ], "x-ms-request-id": [ - "3e8c58bd-e40e-4464-9e27-ef8e3f034554" + "dea4e9c1-7833-4869-9d2d-f9cfb97c6b34" ], "x-ms-correlation-request-id": [ - "3e8c58bd-e40e-4464-9e27-ef8e3f034554" + "dea4e9c1-7833-4869-9d2d-f9cfb97c6b34" ], "x-ms-routing-request-id": [ - "WESTUS2:20200429T004741Z:3e8c58bd-e40e-4464-9e27-ef8e3f034554" + "WESTUS2:20200730T200218Z:dea4e9c1-7833-4869-9d2d-f9cfb97c6b34" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2175,7 +2232,7 @@ "nosniff" ], "Date": [ - "Wed, 29 Apr 2020 00:47:40 GMT" + "Thu, 30 Jul 2020 20:02:18 GMT" ], "Content-Length": [ "905" @@ -2187,23 +2244,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"2Ac2MHHyVGo9vThtNBdiGedHiD4YJCeW48e8O/E0Wb8=\",\r\n \"secondaryKey\": \"BLZGUCzMx5uk+DIIpmAphektTVF6W2I7OccBbAnM99E=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"fK2B19RdJqaunSgMxIoCcyPtTYkKnQRenokHkg3k/Lw=\",\r\n \"secondaryKey\": \"VjDX2VgHiiKCjbxdmEfAZuGdTZDjlKNQJJyn6h2jlvo=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Xad5QwV2DaeO8cCnDFLcyKzHJG0S3Yz7s8ZkjBKcAXM=\",\r\n \"secondaryKey\": \"Bb0bBAPfjNJ6WAdWqQy8EwNKlVQL5eopEZxIKVaXLOg=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"N9ENrTvcVnsVDSHiwpeRORv5buMZk8klCjEQlXz8Yxs=\",\r\n \"secondaryKey\": \"bnHwvn3rse9wB8lzcXeQL7HLoNsEP8h8HYmaq2m2CHU=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"RrgQxkOa3WLP3jvUjv9B23GyH4I38iBCVPtyBKtjh68=\",\r\n \"secondaryKey\": \"dG7JJm3usMbc5L5wH/HlaYTQZ30u03tOBJwu2gdGk8g=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"N8llvOxLNn9HYC8LHcKQJfsLgbuYvGnQsc7y+F5Lljk=\",\r\n \"secondaryKey\": \"8Ts2XRYShtRAt1fpS+fzdR3B4T8fjM7gyFTgZX+jHZk=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"pvw9038kXQ5juFcJfBP1UXLfa8QGFLF3l/CspHNhtug=\",\r\n \"secondaryKey\": \"qxTd4J4HqPb4cpYOJ09JsnQfGtdysOnPDZHhL7R6N0c=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"6hlZSGItghrF4BFHicaPeyuMMq7ES3c+nL9lIVHP5pQ=\",\r\n \"secondaryKey\": \"9kQU9Kgn0wP6xfA1zg9VLSYxRzayfI3U9l8HunduMEw=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"fKFwuNu2Y9TzqHEnphoFOPLo/2ebE3FbnVw8a9OKMMw=\",\r\n \"secondaryKey\": \"MmSn9MIfVHWRIbLgaZ07D8sjgQQtsozf+3ZJzP/i7Xk=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"9siFFyFHu7AqbPjgczsOlm9F3NsyeQu51oB+XxeJ8TY=\",\r\n \"secondaryKey\": \"mYiyDXsqrQFmOW0ltsXt2AsaC2qUVsDNuCZIIJ3k43Q=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczEzNDYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzkwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ5MjYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e89b0e6e-de6d-49bf-b520-7f8151d9bfac" + "46e4f505-a297-47b3-9cd8-afca40a7f98b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2223,13 +2280,13 @@ "1192" ], "x-ms-request-id": [ - "071ce0c9-928c-4211-be5d-a3e344b77ac2" + "4e5e6778-6e7f-40a8-91f9-c57d66a8865c" ], "x-ms-correlation-request-id": [ - "071ce0c9-928c-4211-be5d-a3e344b77ac2" + "4e5e6778-6e7f-40a8-91f9-c57d66a8865c" ], "x-ms-routing-request-id": [ - "WESTUS2:20200429T004742Z:071ce0c9-928c-4211-be5d-a3e344b77ac2" + "WESTUS2:20200730T200225Z:4e5e6778-6e7f-40a8-91f9-c57d66a8865c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2238,7 +2295,7 @@ "nosniff" ], "Date": [ - "Wed, 29 Apr 2020 00:47:41 GMT" + "Thu, 30 Jul 2020 20:02:24 GMT" ], "Content-Length": [ "905" @@ -2250,23 +2307,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"2Ac2MHHyVGo9vThtNBdiGedHiD4YJCeW48e8O/E0Wb8=\",\r\n \"secondaryKey\": \"BLZGUCzMx5uk+DIIpmAphektTVF6W2I7OccBbAnM99E=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"fK2B19RdJqaunSgMxIoCcyPtTYkKnQRenokHkg3k/Lw=\",\r\n \"secondaryKey\": \"VjDX2VgHiiKCjbxdmEfAZuGdTZDjlKNQJJyn6h2jlvo=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Xad5QwV2DaeO8cCnDFLcyKzHJG0S3Yz7s8ZkjBKcAXM=\",\r\n \"secondaryKey\": \"Bb0bBAPfjNJ6WAdWqQy8EwNKlVQL5eopEZxIKVaXLOg=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"N9ENrTvcVnsVDSHiwpeRORv5buMZk8klCjEQlXz8Yxs=\",\r\n \"secondaryKey\": \"bnHwvn3rse9wB8lzcXeQL7HLoNsEP8h8HYmaq2m2CHU=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"RrgQxkOa3WLP3jvUjv9B23GyH4I38iBCVPtyBKtjh68=\",\r\n \"secondaryKey\": \"dG7JJm3usMbc5L5wH/HlaYTQZ30u03tOBJwu2gdGk8g=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"N8llvOxLNn9HYC8LHcKQJfsLgbuYvGnQsc7y+F5Lljk=\",\r\n \"secondaryKey\": \"8Ts2XRYShtRAt1fpS+fzdR3B4T8fjM7gyFTgZX+jHZk=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"pvw9038kXQ5juFcJfBP1UXLfa8QGFLF3l/CspHNhtug=\",\r\n \"secondaryKey\": \"qxTd4J4HqPb4cpYOJ09JsnQfGtdysOnPDZHhL7R6N0c=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"6hlZSGItghrF4BFHicaPeyuMMq7ES3c+nL9lIVHP5pQ=\",\r\n \"secondaryKey\": \"9kQU9Kgn0wP6xfA1zg9VLSYxRzayfI3U9l8HunduMEw=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"fKFwuNu2Y9TzqHEnphoFOPLo/2ebE3FbnVw8a9OKMMw=\",\r\n \"secondaryKey\": \"MmSn9MIfVHWRIbLgaZ07D8sjgQQtsozf+3ZJzP/i7Xk=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"9siFFyFHu7AqbPjgczsOlm9F3NsyeQu51oB+XxeJ8TY=\",\r\n \"secondaryKey\": \"mYiyDXsqrQFmOW0ltsXt2AsaC2qUVsDNuCZIIJ3k43Q=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczEzNDYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzkwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ5MjYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cf7d32d4-7919-4516-a973-79982a3a3d81" + "0b1eb89d-0338-4db4-9226-4d25fde3ebc1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2286,13 +2343,13 @@ "1191" ], "x-ms-request-id": [ - "3bffbc85-293a-4683-93d1-c45ac49f5204" + "e6610a7f-9bfd-49eb-96d6-299ca389b7d0" ], "x-ms-correlation-request-id": [ - "3bffbc85-293a-4683-93d1-c45ac49f5204" + "e6610a7f-9bfd-49eb-96d6-299ca389b7d0" ], "x-ms-routing-request-id": [ - "WESTUS2:20200429T004743Z:3bffbc85-293a-4683-93d1-c45ac49f5204" + "WESTUS2:20200730T200226Z:e6610a7f-9bfd-49eb-96d6-299ca389b7d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2301,7 +2358,7 @@ "nosniff" ], "Date": [ - "Wed, 29 Apr 2020 00:47:42 GMT" + "Thu, 30 Jul 2020 20:02:25 GMT" ], "Content-Length": [ "905" @@ -2313,23 +2370,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"2Ac2MHHyVGo9vThtNBdiGedHiD4YJCeW48e8O/E0Wb8=\",\r\n \"secondaryKey\": \"BLZGUCzMx5uk+DIIpmAphektTVF6W2I7OccBbAnM99E=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"fK2B19RdJqaunSgMxIoCcyPtTYkKnQRenokHkg3k/Lw=\",\r\n \"secondaryKey\": \"VjDX2VgHiiKCjbxdmEfAZuGdTZDjlKNQJJyn6h2jlvo=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Xad5QwV2DaeO8cCnDFLcyKzHJG0S3Yz7s8ZkjBKcAXM=\",\r\n \"secondaryKey\": \"Bb0bBAPfjNJ6WAdWqQy8EwNKlVQL5eopEZxIKVaXLOg=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"N9ENrTvcVnsVDSHiwpeRORv5buMZk8klCjEQlXz8Yxs=\",\r\n \"secondaryKey\": \"bnHwvn3rse9wB8lzcXeQL7HLoNsEP8h8HYmaq2m2CHU=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"RrgQxkOa3WLP3jvUjv9B23GyH4I38iBCVPtyBKtjh68=\",\r\n \"secondaryKey\": \"dG7JJm3usMbc5L5wH/HlaYTQZ30u03tOBJwu2gdGk8g=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"N8llvOxLNn9HYC8LHcKQJfsLgbuYvGnQsc7y+F5Lljk=\",\r\n \"secondaryKey\": \"8Ts2XRYShtRAt1fpS+fzdR3B4T8fjM7gyFTgZX+jHZk=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"pvw9038kXQ5juFcJfBP1UXLfa8QGFLF3l/CspHNhtug=\",\r\n \"secondaryKey\": \"qxTd4J4HqPb4cpYOJ09JsnQfGtdysOnPDZHhL7R6N0c=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"6hlZSGItghrF4BFHicaPeyuMMq7ES3c+nL9lIVHP5pQ=\",\r\n \"secondaryKey\": \"9kQU9Kgn0wP6xfA1zg9VLSYxRzayfI3U9l8HunduMEw=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"fKFwuNu2Y9TzqHEnphoFOPLo/2ebE3FbnVw8a9OKMMw=\",\r\n \"secondaryKey\": \"MmSn9MIfVHWRIbLgaZ07D8sjgQQtsozf+3ZJzP/i7Xk=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"9siFFyFHu7AqbPjgczsOlm9F3NsyeQu51oB+XxeJ8TY=\",\r\n \"secondaryKey\": \"mYiyDXsqrQFmOW0ltsXt2AsaC2qUVsDNuCZIIJ3k43Q=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczEzNDYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzkwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ5MjYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a59ea81-c1b9-4521-b30d-28c1c83c800f" + "826b7ca4-9249-4746-8fc8-4961699e6298" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2349,13 +2406,13 @@ "1190" ], "x-ms-request-id": [ - "4ce925ba-0672-4411-a7c6-671b3d2fced0" + "fdb4df1f-ad87-4046-a71f-64538dd4972a" ], "x-ms-correlation-request-id": [ - "4ce925ba-0672-4411-a7c6-671b3d2fced0" + "fdb4df1f-ad87-4046-a71f-64538dd4972a" ], "x-ms-routing-request-id": [ - "WESTUS2:20200429T004744Z:4ce925ba-0672-4411-a7c6-671b3d2fced0" + "WESTUS2:20200730T200232Z:fdb4df1f-ad87-4046-a71f-64538dd4972a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2364,7 +2421,7 @@ "nosniff" ], "Date": [ - "Wed, 29 Apr 2020 00:47:43 GMT" + "Thu, 30 Jul 2020 20:02:31 GMT" ], "Content-Length": [ "905" @@ -2376,23 +2433,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"2Ac2MHHyVGo9vThtNBdiGedHiD4YJCeW48e8O/E0Wb8=\",\r\n \"secondaryKey\": \"BLZGUCzMx5uk+DIIpmAphektTVF6W2I7OccBbAnM99E=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"fK2B19RdJqaunSgMxIoCcyPtTYkKnQRenokHkg3k/Lw=\",\r\n \"secondaryKey\": \"VjDX2VgHiiKCjbxdmEfAZuGdTZDjlKNQJJyn6h2jlvo=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Xad5QwV2DaeO8cCnDFLcyKzHJG0S3Yz7s8ZkjBKcAXM=\",\r\n \"secondaryKey\": \"Bb0bBAPfjNJ6WAdWqQy8EwNKlVQL5eopEZxIKVaXLOg=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"N9ENrTvcVnsVDSHiwpeRORv5buMZk8klCjEQlXz8Yxs=\",\r\n \"secondaryKey\": \"bnHwvn3rse9wB8lzcXeQL7HLoNsEP8h8HYmaq2m2CHU=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"RrgQxkOa3WLP3jvUjv9B23GyH4I38iBCVPtyBKtjh68=\",\r\n \"secondaryKey\": \"dG7JJm3usMbc5L5wH/HlaYTQZ30u03tOBJwu2gdGk8g=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"N8llvOxLNn9HYC8LHcKQJfsLgbuYvGnQsc7y+F5Lljk=\",\r\n \"secondaryKey\": \"8Ts2XRYShtRAt1fpS+fzdR3B4T8fjM7gyFTgZX+jHZk=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"pvw9038kXQ5juFcJfBP1UXLfa8QGFLF3l/CspHNhtug=\",\r\n \"secondaryKey\": \"qxTd4J4HqPb4cpYOJ09JsnQfGtdysOnPDZHhL7R6N0c=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"6hlZSGItghrF4BFHicaPeyuMMq7ES3c+nL9lIVHP5pQ=\",\r\n \"secondaryKey\": \"9kQU9Kgn0wP6xfA1zg9VLSYxRzayfI3U9l8HunduMEw=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"fKFwuNu2Y9TzqHEnphoFOPLo/2ebE3FbnVw8a9OKMMw=\",\r\n \"secondaryKey\": \"MmSn9MIfVHWRIbLgaZ07D8sjgQQtsozf+3ZJzP/i7Xk=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"9siFFyFHu7AqbPjgczsOlm9F3NsyeQu51oB+XxeJ8TY=\",\r\n \"secondaryKey\": \"mYiyDXsqrQFmOW0ltsXt2AsaC2qUVsDNuCZIIJ3k43Q=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczEzNDYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzkwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ5MjYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ab66bf22-bfe4-4945-8114-7d6dd12f798c" + "96f14e86-0d28-48a5-becd-34e41191e991" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2412,13 +2469,13 @@ "1189" ], "x-ms-request-id": [ - "74682afb-6a03-4e0d-89e9-7c75c0b390b4" + "831bd553-0b9b-4345-937a-3338494046a1" ], "x-ms-correlation-request-id": [ - "74682afb-6a03-4e0d-89e9-7c75c0b390b4" + "831bd553-0b9b-4345-937a-3338494046a1" ], "x-ms-routing-request-id": [ - "WESTUS2:20200429T004745Z:74682afb-6a03-4e0d-89e9-7c75c0b390b4" + "WESTUS2:20200730T200239Z:831bd553-0b9b-4345-937a-3338494046a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2427,7 +2484,7 @@ "nosniff" ], "Date": [ - "Wed, 29 Apr 2020 00:47:44 GMT" + "Thu, 30 Jul 2020 20:02:38 GMT" ], "Content-Length": [ "905" @@ -2439,23 +2496,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"2Ac2MHHyVGo9vThtNBdiGedHiD4YJCeW48e8O/E0Wb8=\",\r\n \"secondaryKey\": \"BLZGUCzMx5uk+DIIpmAphektTVF6W2I7OccBbAnM99E=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"fK2B19RdJqaunSgMxIoCcyPtTYkKnQRenokHkg3k/Lw=\",\r\n \"secondaryKey\": \"VjDX2VgHiiKCjbxdmEfAZuGdTZDjlKNQJJyn6h2jlvo=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Xad5QwV2DaeO8cCnDFLcyKzHJG0S3Yz7s8ZkjBKcAXM=\",\r\n \"secondaryKey\": \"Bb0bBAPfjNJ6WAdWqQy8EwNKlVQL5eopEZxIKVaXLOg=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"N9ENrTvcVnsVDSHiwpeRORv5buMZk8klCjEQlXz8Yxs=\",\r\n \"secondaryKey\": \"bnHwvn3rse9wB8lzcXeQL7HLoNsEP8h8HYmaq2m2CHU=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"RrgQxkOa3WLP3jvUjv9B23GyH4I38iBCVPtyBKtjh68=\",\r\n \"secondaryKey\": \"dG7JJm3usMbc5L5wH/HlaYTQZ30u03tOBJwu2gdGk8g=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"N8llvOxLNn9HYC8LHcKQJfsLgbuYvGnQsc7y+F5Lljk=\",\r\n \"secondaryKey\": \"8Ts2XRYShtRAt1fpS+fzdR3B4T8fjM7gyFTgZX+jHZk=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"pvw9038kXQ5juFcJfBP1UXLfa8QGFLF3l/CspHNhtug=\",\r\n \"secondaryKey\": \"qxTd4J4HqPb4cpYOJ09JsnQfGtdysOnPDZHhL7R6N0c=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"6hlZSGItghrF4BFHicaPeyuMMq7ES3c+nL9lIVHP5pQ=\",\r\n \"secondaryKey\": \"9kQU9Kgn0wP6xfA1zg9VLSYxRzayfI3U9l8HunduMEw=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"fKFwuNu2Y9TzqHEnphoFOPLo/2ebE3FbnVw8a9OKMMw=\",\r\n \"secondaryKey\": \"MmSn9MIfVHWRIbLgaZ07D8sjgQQtsozf+3ZJzP/i7Xk=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"9siFFyFHu7AqbPjgczsOlm9F3NsyeQu51oB+XxeJ8TY=\",\r\n \"secondaryKey\": \"mYiyDXsqrQFmOW0ltsXt2AsaC2qUVsDNuCZIIJ3k43Q=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczEzNDYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzkwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ5MjYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1632eca6-d36f-41d6-bbdb-9dfac1b642f3" + "adb66818-e43e-4db8-b310-b475f74b6f31" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2475,13 +2532,13 @@ "1188" ], "x-ms-request-id": [ - "58af2184-6f5c-4b58-82b7-fb1cb565a17c" + "04729936-5c72-41e6-a7b4-67415453cbb7" ], "x-ms-correlation-request-id": [ - "58af2184-6f5c-4b58-82b7-fb1cb565a17c" + "04729936-5c72-41e6-a7b4-67415453cbb7" ], "x-ms-routing-request-id": [ - "WESTUS2:20200429T004746Z:58af2184-6f5c-4b58-82b7-fb1cb565a17c" + "WESTUS2:20200730T200245Z:04729936-5c72-41e6-a7b4-67415453cbb7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2490,7 +2547,7 @@ "nosniff" ], "Date": [ - "Wed, 29 Apr 2020 00:47:46 GMT" + "Thu, 30 Jul 2020 20:02:44 GMT" ], "Content-Length": [ "905" @@ -2502,23 +2559,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"2Ac2MHHyVGo9vThtNBdiGedHiD4YJCeW48e8O/E0Wb8=\",\r\n \"secondaryKey\": \"BLZGUCzMx5uk+DIIpmAphektTVF6W2I7OccBbAnM99E=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"fK2B19RdJqaunSgMxIoCcyPtTYkKnQRenokHkg3k/Lw=\",\r\n \"secondaryKey\": \"VjDX2VgHiiKCjbxdmEfAZuGdTZDjlKNQJJyn6h2jlvo=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Xad5QwV2DaeO8cCnDFLcyKzHJG0S3Yz7s8ZkjBKcAXM=\",\r\n \"secondaryKey\": \"Bb0bBAPfjNJ6WAdWqQy8EwNKlVQL5eopEZxIKVaXLOg=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"N9ENrTvcVnsVDSHiwpeRORv5buMZk8klCjEQlXz8Yxs=\",\r\n \"secondaryKey\": \"bnHwvn3rse9wB8lzcXeQL7HLoNsEP8h8HYmaq2m2CHU=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"RrgQxkOa3WLP3jvUjv9B23GyH4I38iBCVPtyBKtjh68=\",\r\n \"secondaryKey\": \"dG7JJm3usMbc5L5wH/HlaYTQZ30u03tOBJwu2gdGk8g=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"N8llvOxLNn9HYC8LHcKQJfsLgbuYvGnQsc7y+F5Lljk=\",\r\n \"secondaryKey\": \"8Ts2XRYShtRAt1fpS+fzdR3B4T8fjM7gyFTgZX+jHZk=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"pvw9038kXQ5juFcJfBP1UXLfa8QGFLF3l/CspHNhtug=\",\r\n \"secondaryKey\": \"qxTd4J4HqPb4cpYOJ09JsnQfGtdysOnPDZHhL7R6N0c=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"6hlZSGItghrF4BFHicaPeyuMMq7ES3c+nL9lIVHP5pQ=\",\r\n \"secondaryKey\": \"9kQU9Kgn0wP6xfA1zg9VLSYxRzayfI3U9l8HunduMEw=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"fKFwuNu2Y9TzqHEnphoFOPLo/2ebE3FbnVw8a9OKMMw=\",\r\n \"secondaryKey\": \"MmSn9MIfVHWRIbLgaZ07D8sjgQQtsozf+3ZJzP/i7Xk=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"9siFFyFHu7AqbPjgczsOlm9F3NsyeQu51oB+XxeJ8TY=\",\r\n \"secondaryKey\": \"mYiyDXsqrQFmOW0ltsXt2AsaC2qUVsDNuCZIIJ3k43Q=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczEzNDYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzkwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ5MjYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5e0f89a9-5f99-4f90-9095-db590eed76e7" + "66f789c0-0fef-46e8-a771-4acca551be1e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2538,13 +2595,13 @@ "1187" ], "x-ms-request-id": [ - "30ff8d4f-dc4f-4b9c-bb90-b3590b58386e" + "13a4c873-4175-4ff3-834a-78d15d137fd8" ], "x-ms-correlation-request-id": [ - "30ff8d4f-dc4f-4b9c-bb90-b3590b58386e" + "13a4c873-4175-4ff3-834a-78d15d137fd8" ], "x-ms-routing-request-id": [ - "WESTUS2:20200429T004747Z:30ff8d4f-dc4f-4b9c-bb90-b3590b58386e" + "WESTUS2:20200730T200252Z:13a4c873-4175-4ff3-834a-78d15d137fd8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2553,7 +2610,7 @@ "nosniff" ], "Date": [ - "Wed, 29 Apr 2020 00:47:47 GMT" + "Thu, 30 Jul 2020 20:02:52 GMT" ], "Content-Length": [ "905" @@ -2565,23 +2622,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"2Ac2MHHyVGo9vThtNBdiGedHiD4YJCeW48e8O/E0Wb8=\",\r\n \"secondaryKey\": \"BLZGUCzMx5uk+DIIpmAphektTVF6W2I7OccBbAnM99E=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"fK2B19RdJqaunSgMxIoCcyPtTYkKnQRenokHkg3k/Lw=\",\r\n \"secondaryKey\": \"VjDX2VgHiiKCjbxdmEfAZuGdTZDjlKNQJJyn6h2jlvo=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Xad5QwV2DaeO8cCnDFLcyKzHJG0S3Yz7s8ZkjBKcAXM=\",\r\n \"secondaryKey\": \"Bb0bBAPfjNJ6WAdWqQy8EwNKlVQL5eopEZxIKVaXLOg=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"N9ENrTvcVnsVDSHiwpeRORv5buMZk8klCjEQlXz8Yxs=\",\r\n \"secondaryKey\": \"bnHwvn3rse9wB8lzcXeQL7HLoNsEP8h8HYmaq2m2CHU=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"RrgQxkOa3WLP3jvUjv9B23GyH4I38iBCVPtyBKtjh68=\",\r\n \"secondaryKey\": \"dG7JJm3usMbc5L5wH/HlaYTQZ30u03tOBJwu2gdGk8g=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"N8llvOxLNn9HYC8LHcKQJfsLgbuYvGnQsc7y+F5Lljk=\",\r\n \"secondaryKey\": \"8Ts2XRYShtRAt1fpS+fzdR3B4T8fjM7gyFTgZX+jHZk=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"pvw9038kXQ5juFcJfBP1UXLfa8QGFLF3l/CspHNhtug=\",\r\n \"secondaryKey\": \"qxTd4J4HqPb4cpYOJ09JsnQfGtdysOnPDZHhL7R6N0c=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"6hlZSGItghrF4BFHicaPeyuMMq7ES3c+nL9lIVHP5pQ=\",\r\n \"secondaryKey\": \"9kQU9Kgn0wP6xfA1zg9VLSYxRzayfI3U9l8HunduMEw=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"fKFwuNu2Y9TzqHEnphoFOPLo/2ebE3FbnVw8a9OKMMw=\",\r\n \"secondaryKey\": \"MmSn9MIfVHWRIbLgaZ07D8sjgQQtsozf+3ZJzP/i7Xk=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"9siFFyFHu7AqbPjgczsOlm9F3NsyeQu51oB+XxeJ8TY=\",\r\n \"secondaryKey\": \"mYiyDXsqrQFmOW0ltsXt2AsaC2qUVsDNuCZIIJ3k43Q=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczEzNDYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzkwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ5MjYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e2722676-e827-490f-87de-2605c87fb044" + "6189f75c-64f2-4374-a490-33d8e465ae85" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2601,13 +2658,13 @@ "1186" ], "x-ms-request-id": [ - "1d5f3eb0-f889-47a7-a0f5-0033847f9a00" + "ff0fd6d8-ba3d-4bc6-b26c-f458c690f251" ], "x-ms-correlation-request-id": [ - "1d5f3eb0-f889-47a7-a0f5-0033847f9a00" + "ff0fd6d8-ba3d-4bc6-b26c-f458c690f251" ], "x-ms-routing-request-id": [ - "WESTUS2:20200429T004748Z:1d5f3eb0-f889-47a7-a0f5-0033847f9a00" + "WESTUS2:20200730T200258Z:ff0fd6d8-ba3d-4bc6-b26c-f458c690f251" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2616,7 +2673,7 @@ "nosniff" ], "Date": [ - "Wed, 29 Apr 2020 00:47:48 GMT" + "Thu, 30 Jul 2020 20:02:58 GMT" ], "Content-Length": [ "905" @@ -2628,23 +2685,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"2Ac2MHHyVGo9vThtNBdiGedHiD4YJCeW48e8O/E0Wb8=\",\r\n \"secondaryKey\": \"BLZGUCzMx5uk+DIIpmAphektTVF6W2I7OccBbAnM99E=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"fK2B19RdJqaunSgMxIoCcyPtTYkKnQRenokHkg3k/Lw=\",\r\n \"secondaryKey\": \"VjDX2VgHiiKCjbxdmEfAZuGdTZDjlKNQJJyn6h2jlvo=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Xad5QwV2DaeO8cCnDFLcyKzHJG0S3Yz7s8ZkjBKcAXM=\",\r\n \"secondaryKey\": \"Bb0bBAPfjNJ6WAdWqQy8EwNKlVQL5eopEZxIKVaXLOg=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"N9ENrTvcVnsVDSHiwpeRORv5buMZk8klCjEQlXz8Yxs=\",\r\n \"secondaryKey\": \"bnHwvn3rse9wB8lzcXeQL7HLoNsEP8h8HYmaq2m2CHU=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"RrgQxkOa3WLP3jvUjv9B23GyH4I38iBCVPtyBKtjh68=\",\r\n \"secondaryKey\": \"dG7JJm3usMbc5L5wH/HlaYTQZ30u03tOBJwu2gdGk8g=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"N8llvOxLNn9HYC8LHcKQJfsLgbuYvGnQsc7y+F5Lljk=\",\r\n \"secondaryKey\": \"8Ts2XRYShtRAt1fpS+fzdR3B4T8fjM7gyFTgZX+jHZk=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"pvw9038kXQ5juFcJfBP1UXLfa8QGFLF3l/CspHNhtug=\",\r\n \"secondaryKey\": \"qxTd4J4HqPb4cpYOJ09JsnQfGtdysOnPDZHhL7R6N0c=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"6hlZSGItghrF4BFHicaPeyuMMq7ES3c+nL9lIVHP5pQ=\",\r\n \"secondaryKey\": \"9kQU9Kgn0wP6xfA1zg9VLSYxRzayfI3U9l8HunduMEw=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"fKFwuNu2Y9TzqHEnphoFOPLo/2ebE3FbnVw8a9OKMMw=\",\r\n \"secondaryKey\": \"MmSn9MIfVHWRIbLgaZ07D8sjgQQtsozf+3ZJzP/i7Xk=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"9siFFyFHu7AqbPjgczsOlm9F3NsyeQu51oB+XxeJ8TY=\",\r\n \"secondaryKey\": \"mYiyDXsqrQFmOW0ltsXt2AsaC2qUVsDNuCZIIJ3k43Q=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczEzNDYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzkwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ5MjYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4eeeb791-fa76-455a-a367-6711f614450d" + "d621bd48-7036-4ac2-af93-8ecbb3e08d55" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2664,13 +2721,13 @@ "1185" ], "x-ms-request-id": [ - "3e88560d-8295-4d92-b767-ab332f445849" + "4922e3fe-9524-4098-9199-ddce3d5d5adc" ], "x-ms-correlation-request-id": [ - "3e88560d-8295-4d92-b767-ab332f445849" + "4922e3fe-9524-4098-9199-ddce3d5d5adc" ], "x-ms-routing-request-id": [ - "WESTUS2:20200429T004749Z:3e88560d-8295-4d92-b767-ab332f445849" + "WESTUS2:20200730T200259Z:4922e3fe-9524-4098-9199-ddce3d5d5adc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2679,7 +2736,7 @@ "nosniff" ], "Date": [ - "Wed, 29 Apr 2020 00:47:49 GMT" + "Thu, 30 Jul 2020 20:02:59 GMT" ], "Content-Length": [ "905" @@ -2691,23 +2748,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"2Ac2MHHyVGo9vThtNBdiGedHiD4YJCeW48e8O/E0Wb8=\",\r\n \"secondaryKey\": \"BLZGUCzMx5uk+DIIpmAphektTVF6W2I7OccBbAnM99E=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"fK2B19RdJqaunSgMxIoCcyPtTYkKnQRenokHkg3k/Lw=\",\r\n \"secondaryKey\": \"VjDX2VgHiiKCjbxdmEfAZuGdTZDjlKNQJJyn6h2jlvo=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Xad5QwV2DaeO8cCnDFLcyKzHJG0S3Yz7s8ZkjBKcAXM=\",\r\n \"secondaryKey\": \"Bb0bBAPfjNJ6WAdWqQy8EwNKlVQL5eopEZxIKVaXLOg=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"N9ENrTvcVnsVDSHiwpeRORv5buMZk8klCjEQlXz8Yxs=\",\r\n \"secondaryKey\": \"bnHwvn3rse9wB8lzcXeQL7HLoNsEP8h8HYmaq2m2CHU=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"RrgQxkOa3WLP3jvUjv9B23GyH4I38iBCVPtyBKtjh68=\",\r\n \"secondaryKey\": \"dG7JJm3usMbc5L5wH/HlaYTQZ30u03tOBJwu2gdGk8g=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"N8llvOxLNn9HYC8LHcKQJfsLgbuYvGnQsc7y+F5Lljk=\",\r\n \"secondaryKey\": \"8Ts2XRYShtRAt1fpS+fzdR3B4T8fjM7gyFTgZX+jHZk=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"pvw9038kXQ5juFcJfBP1UXLfa8QGFLF3l/CspHNhtug=\",\r\n \"secondaryKey\": \"qxTd4J4HqPb4cpYOJ09JsnQfGtdysOnPDZHhL7R6N0c=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"6hlZSGItghrF4BFHicaPeyuMMq7ES3c+nL9lIVHP5pQ=\",\r\n \"secondaryKey\": \"9kQU9Kgn0wP6xfA1zg9VLSYxRzayfI3U9l8HunduMEw=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"fKFwuNu2Y9TzqHEnphoFOPLo/2ebE3FbnVw8a9OKMMw=\",\r\n \"secondaryKey\": \"MmSn9MIfVHWRIbLgaZ07D8sjgQQtsozf+3ZJzP/i7Xk=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"9siFFyFHu7AqbPjgczsOlm9F3NsyeQu51oB+XxeJ8TY=\",\r\n \"secondaryKey\": \"mYiyDXsqrQFmOW0ltsXt2AsaC2qUVsDNuCZIIJ3k43Q=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczEzNDYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzkwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ5MjYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5c85affc-6cad-4232-912f-7ab0183e26b3" + "e38c0c92-d694-4643-89c7-8cdfdfd1de9a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2727,13 +2784,13 @@ "1184" ], "x-ms-request-id": [ - "74a353a0-533d-4f5b-af8c-9f5eb3a488cf" + "af5455ba-57e4-4b10-93ac-5ba97a336e2e" ], "x-ms-correlation-request-id": [ - "74a353a0-533d-4f5b-af8c-9f5eb3a488cf" + "af5455ba-57e4-4b10-93ac-5ba97a336e2e" ], "x-ms-routing-request-id": [ - "WESTUS2:20200429T004750Z:74a353a0-533d-4f5b-af8c-9f5eb3a488cf" + "WESTUS2:20200730T200305Z:af5455ba-57e4-4b10-93ac-5ba97a336e2e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2742,7 +2799,7 @@ "nosniff" ], "Date": [ - "Wed, 29 Apr 2020 00:47:50 GMT" + "Thu, 30 Jul 2020 20:03:05 GMT" ], "Content-Length": [ "905" @@ -2754,23 +2811,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"2Ac2MHHyVGo9vThtNBdiGedHiD4YJCeW48e8O/E0Wb8=\",\r\n \"secondaryKey\": \"BLZGUCzMx5uk+DIIpmAphektTVF6W2I7OccBbAnM99E=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"fK2B19RdJqaunSgMxIoCcyPtTYkKnQRenokHkg3k/Lw=\",\r\n \"secondaryKey\": \"VjDX2VgHiiKCjbxdmEfAZuGdTZDjlKNQJJyn6h2jlvo=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Xad5QwV2DaeO8cCnDFLcyKzHJG0S3Yz7s8ZkjBKcAXM=\",\r\n \"secondaryKey\": \"Bb0bBAPfjNJ6WAdWqQy8EwNKlVQL5eopEZxIKVaXLOg=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"N9ENrTvcVnsVDSHiwpeRORv5buMZk8klCjEQlXz8Yxs=\",\r\n \"secondaryKey\": \"bnHwvn3rse9wB8lzcXeQL7HLoNsEP8h8HYmaq2m2CHU=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"RrgQxkOa3WLP3jvUjv9B23GyH4I38iBCVPtyBKtjh68=\",\r\n \"secondaryKey\": \"dG7JJm3usMbc5L5wH/HlaYTQZ30u03tOBJwu2gdGk8g=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"N8llvOxLNn9HYC8LHcKQJfsLgbuYvGnQsc7y+F5Lljk=\",\r\n \"secondaryKey\": \"8Ts2XRYShtRAt1fpS+fzdR3B4T8fjM7gyFTgZX+jHZk=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"pvw9038kXQ5juFcJfBP1UXLfa8QGFLF3l/CspHNhtug=\",\r\n \"secondaryKey\": \"qxTd4J4HqPb4cpYOJ09JsnQfGtdysOnPDZHhL7R6N0c=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"6hlZSGItghrF4BFHicaPeyuMMq7ES3c+nL9lIVHP5pQ=\",\r\n \"secondaryKey\": \"9kQU9Kgn0wP6xfA1zg9VLSYxRzayfI3U9l8HunduMEw=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"fKFwuNu2Y9TzqHEnphoFOPLo/2ebE3FbnVw8a9OKMMw=\",\r\n \"secondaryKey\": \"MmSn9MIfVHWRIbLgaZ07D8sjgQQtsozf+3ZJzP/i7Xk=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"9siFFyFHu7AqbPjgczsOlm9F3NsyeQu51oB+XxeJ8TY=\",\r\n \"secondaryKey\": \"mYiyDXsqrQFmOW0ltsXt2AsaC2qUVsDNuCZIIJ3k43Q=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczEzNDYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzkwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ5MjYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b39adc64-426d-40f5-ad44-77fa0b48e28e" + "b117d27b-4bb1-44db-bba9-42027c4e9bc6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2790,13 +2847,13 @@ "1183" ], "x-ms-request-id": [ - "e58fd51e-2573-4fb9-a480-c6b102e3c802" + "7ff65da9-97c8-4ffc-9233-2766dc5393ee" ], "x-ms-correlation-request-id": [ - "e58fd51e-2573-4fb9-a480-c6b102e3c802" + "7ff65da9-97c8-4ffc-9233-2766dc5393ee" ], "x-ms-routing-request-id": [ - "WESTUS2:20200429T004751Z:e58fd51e-2573-4fb9-a480-c6b102e3c802" + "WESTUS2:20200730T200306Z:7ff65da9-97c8-4ffc-9233-2766dc5393ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2805,7 +2862,7 @@ "nosniff" ], "Date": [ - "Wed, 29 Apr 2020 00:47:51 GMT" + "Thu, 30 Jul 2020 20:03:06 GMT" ], "Content-Length": [ "905" @@ -2817,23 +2874,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"2Ac2MHHyVGo9vThtNBdiGedHiD4YJCeW48e8O/E0Wb8=\",\r\n \"secondaryKey\": \"BLZGUCzMx5uk+DIIpmAphektTVF6W2I7OccBbAnM99E=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"fK2B19RdJqaunSgMxIoCcyPtTYkKnQRenokHkg3k/Lw=\",\r\n \"secondaryKey\": \"VjDX2VgHiiKCjbxdmEfAZuGdTZDjlKNQJJyn6h2jlvo=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Xad5QwV2DaeO8cCnDFLcyKzHJG0S3Yz7s8ZkjBKcAXM=\",\r\n \"secondaryKey\": \"Bb0bBAPfjNJ6WAdWqQy8EwNKlVQL5eopEZxIKVaXLOg=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"N9ENrTvcVnsVDSHiwpeRORv5buMZk8klCjEQlXz8Yxs=\",\r\n \"secondaryKey\": \"bnHwvn3rse9wB8lzcXeQL7HLoNsEP8h8HYmaq2m2CHU=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"RrgQxkOa3WLP3jvUjv9B23GyH4I38iBCVPtyBKtjh68=\",\r\n \"secondaryKey\": \"dG7JJm3usMbc5L5wH/HlaYTQZ30u03tOBJwu2gdGk8g=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"N8llvOxLNn9HYC8LHcKQJfsLgbuYvGnQsc7y+F5Lljk=\",\r\n \"secondaryKey\": \"8Ts2XRYShtRAt1fpS+fzdR3B4T8fjM7gyFTgZX+jHZk=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"pvw9038kXQ5juFcJfBP1UXLfa8QGFLF3l/CspHNhtug=\",\r\n \"secondaryKey\": \"qxTd4J4HqPb4cpYOJ09JsnQfGtdysOnPDZHhL7R6N0c=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"6hlZSGItghrF4BFHicaPeyuMMq7ES3c+nL9lIVHP5pQ=\",\r\n \"secondaryKey\": \"9kQU9Kgn0wP6xfA1zg9VLSYxRzayfI3U9l8HunduMEw=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"fKFwuNu2Y9TzqHEnphoFOPLo/2ebE3FbnVw8a9OKMMw=\",\r\n \"secondaryKey\": \"MmSn9MIfVHWRIbLgaZ07D8sjgQQtsozf+3ZJzP/i7Xk=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"9siFFyFHu7AqbPjgczsOlm9F3NsyeQu51oB+XxeJ8TY=\",\r\n \"secondaryKey\": \"mYiyDXsqrQFmOW0ltsXt2AsaC2qUVsDNuCZIIJ3k43Q=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczEzNDYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzkwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ5MjYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7a0d9364-d83d-406b-9860-898e672d3534" + "ac35b836-efad-4a25-88d0-eef5ea32a7d4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2853,13 +2910,13 @@ "1182" ], "x-ms-request-id": [ - "c76bbf1b-f9e9-4b30-ba97-77eb6086399e" + "6de6472e-1959-4506-bbb2-4302dc5c5536" ], "x-ms-correlation-request-id": [ - "c76bbf1b-f9e9-4b30-ba97-77eb6086399e" + "6de6472e-1959-4506-bbb2-4302dc5c5536" ], "x-ms-routing-request-id": [ - "WESTUS2:20200429T004752Z:c76bbf1b-f9e9-4b30-ba97-77eb6086399e" + "WESTUS2:20200730T200313Z:6de6472e-1959-4506-bbb2-4302dc5c5536" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2868,7 +2925,7 @@ "nosniff" ], "Date": [ - "Wed, 29 Apr 2020 00:47:52 GMT" + "Thu, 30 Jul 2020 20:03:12 GMT" ], "Content-Length": [ "905" @@ -2880,23 +2937,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"2Ac2MHHyVGo9vThtNBdiGedHiD4YJCeW48e8O/E0Wb8=\",\r\n \"secondaryKey\": \"BLZGUCzMx5uk+DIIpmAphektTVF6W2I7OccBbAnM99E=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"fK2B19RdJqaunSgMxIoCcyPtTYkKnQRenokHkg3k/Lw=\",\r\n \"secondaryKey\": \"VjDX2VgHiiKCjbxdmEfAZuGdTZDjlKNQJJyn6h2jlvo=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Xad5QwV2DaeO8cCnDFLcyKzHJG0S3Yz7s8ZkjBKcAXM=\",\r\n \"secondaryKey\": \"Bb0bBAPfjNJ6WAdWqQy8EwNKlVQL5eopEZxIKVaXLOg=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"N9ENrTvcVnsVDSHiwpeRORv5buMZk8klCjEQlXz8Yxs=\",\r\n \"secondaryKey\": \"bnHwvn3rse9wB8lzcXeQL7HLoNsEP8h8HYmaq2m2CHU=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"RrgQxkOa3WLP3jvUjv9B23GyH4I38iBCVPtyBKtjh68=\",\r\n \"secondaryKey\": \"dG7JJm3usMbc5L5wH/HlaYTQZ30u03tOBJwu2gdGk8g=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"N8llvOxLNn9HYC8LHcKQJfsLgbuYvGnQsc7y+F5Lljk=\",\r\n \"secondaryKey\": \"8Ts2XRYShtRAt1fpS+fzdR3B4T8fjM7gyFTgZX+jHZk=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"pvw9038kXQ5juFcJfBP1UXLfa8QGFLF3l/CspHNhtug=\",\r\n \"secondaryKey\": \"qxTd4J4HqPb4cpYOJ09JsnQfGtdysOnPDZHhL7R6N0c=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"6hlZSGItghrF4BFHicaPeyuMMq7ES3c+nL9lIVHP5pQ=\",\r\n \"secondaryKey\": \"9kQU9Kgn0wP6xfA1zg9VLSYxRzayfI3U9l8HunduMEw=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"fKFwuNu2Y9TzqHEnphoFOPLo/2ebE3FbnVw8a9OKMMw=\",\r\n \"secondaryKey\": \"MmSn9MIfVHWRIbLgaZ07D8sjgQQtsozf+3ZJzP/i7Xk=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"9siFFyFHu7AqbPjgczsOlm9F3NsyeQu51oB+XxeJ8TY=\",\r\n \"secondaryKey\": \"mYiyDXsqrQFmOW0ltsXt2AsaC2qUVsDNuCZIIJ3k43Q=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczEzNDYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzkwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ5MjYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12a8795d-cf6f-4234-b383-fb9bbfe15618" + "028f3daa-f188-4e38-8b55-7c9af09cabe5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2916,13 +2973,13 @@ "1181" ], "x-ms-request-id": [ - "9db35e95-5a45-44c7-8324-9953165c8384" + "20078d58-92a0-421b-83bb-a4826c82641a" ], "x-ms-correlation-request-id": [ - "9db35e95-5a45-44c7-8324-9953165c8384" + "20078d58-92a0-421b-83bb-a4826c82641a" ], "x-ms-routing-request-id": [ - "WESTUS2:20200429T004753Z:9db35e95-5a45-44c7-8324-9953165c8384" + "WESTUS2:20200730T200314Z:20078d58-92a0-421b-83bb-a4826c82641a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2931,7 +2988,7 @@ "nosniff" ], "Date": [ - "Wed, 29 Apr 2020 00:47:53 GMT" + "Thu, 30 Jul 2020 20:03:13 GMT" ], "Content-Length": [ "905" @@ -2943,23 +3000,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"2Ac2MHHyVGo9vThtNBdiGedHiD4YJCeW48e8O/E0Wb8=\",\r\n \"secondaryKey\": \"BLZGUCzMx5uk+DIIpmAphektTVF6W2I7OccBbAnM99E=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"fK2B19RdJqaunSgMxIoCcyPtTYkKnQRenokHkg3k/Lw=\",\r\n \"secondaryKey\": \"VjDX2VgHiiKCjbxdmEfAZuGdTZDjlKNQJJyn6h2jlvo=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Xad5QwV2DaeO8cCnDFLcyKzHJG0S3Yz7s8ZkjBKcAXM=\",\r\n \"secondaryKey\": \"Bb0bBAPfjNJ6WAdWqQy8EwNKlVQL5eopEZxIKVaXLOg=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"N9ENrTvcVnsVDSHiwpeRORv5buMZk8klCjEQlXz8Yxs=\",\r\n \"secondaryKey\": \"bnHwvn3rse9wB8lzcXeQL7HLoNsEP8h8HYmaq2m2CHU=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"RrgQxkOa3WLP3jvUjv9B23GyH4I38iBCVPtyBKtjh68=\",\r\n \"secondaryKey\": \"dG7JJm3usMbc5L5wH/HlaYTQZ30u03tOBJwu2gdGk8g=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"N8llvOxLNn9HYC8LHcKQJfsLgbuYvGnQsc7y+F5Lljk=\",\r\n \"secondaryKey\": \"8Ts2XRYShtRAt1fpS+fzdR3B4T8fjM7gyFTgZX+jHZk=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"pvw9038kXQ5juFcJfBP1UXLfa8QGFLF3l/CspHNhtug=\",\r\n \"secondaryKey\": \"qxTd4J4HqPb4cpYOJ09JsnQfGtdysOnPDZHhL7R6N0c=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"6hlZSGItghrF4BFHicaPeyuMMq7ES3c+nL9lIVHP5pQ=\",\r\n \"secondaryKey\": \"9kQU9Kgn0wP6xfA1zg9VLSYxRzayfI3U9l8HunduMEw=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"fKFwuNu2Y9TzqHEnphoFOPLo/2ebE3FbnVw8a9OKMMw=\",\r\n \"secondaryKey\": \"MmSn9MIfVHWRIbLgaZ07D8sjgQQtsozf+3ZJzP/i7Xk=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"9siFFyFHu7AqbPjgczsOlm9F3NsyeQu51oB+XxeJ8TY=\",\r\n \"secondaryKey\": \"mYiyDXsqrQFmOW0ltsXt2AsaC2qUVsDNuCZIIJ3k43Q=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczEzNDYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzkwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ5MjYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "46a08893-6df7-4efe-8278-476e73d560c9" + "5d5cb7cc-ea0e-4395-aba0-623d51dbe511" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2979,13 +3036,13 @@ "1180" ], "x-ms-request-id": [ - "44396180-3c06-4fff-9e3d-9dbe481082a8" + "4554fdbe-51e1-4a41-80fb-451303a1a51f" ], "x-ms-correlation-request-id": [ - "44396180-3c06-4fff-9e3d-9dbe481082a8" + "4554fdbe-51e1-4a41-80fb-451303a1a51f" ], "x-ms-routing-request-id": [ - "WESTUS2:20200429T004754Z:44396180-3c06-4fff-9e3d-9dbe481082a8" + "WESTUS2:20200730T200315Z:4554fdbe-51e1-4a41-80fb-451303a1a51f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2994,7 +3051,7 @@ "nosniff" ], "Date": [ - "Wed, 29 Apr 2020 00:47:54 GMT" + "Thu, 30 Jul 2020 20:03:14 GMT" ], "Content-Length": [ "905" @@ -3006,23 +3063,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"2Ac2MHHyVGo9vThtNBdiGedHiD4YJCeW48e8O/E0Wb8=\",\r\n \"secondaryKey\": \"BLZGUCzMx5uk+DIIpmAphektTVF6W2I7OccBbAnM99E=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"fK2B19RdJqaunSgMxIoCcyPtTYkKnQRenokHkg3k/Lw=\",\r\n \"secondaryKey\": \"VjDX2VgHiiKCjbxdmEfAZuGdTZDjlKNQJJyn6h2jlvo=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Xad5QwV2DaeO8cCnDFLcyKzHJG0S3Yz7s8ZkjBKcAXM=\",\r\n \"secondaryKey\": \"Bb0bBAPfjNJ6WAdWqQy8EwNKlVQL5eopEZxIKVaXLOg=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"N9ENrTvcVnsVDSHiwpeRORv5buMZk8klCjEQlXz8Yxs=\",\r\n \"secondaryKey\": \"bnHwvn3rse9wB8lzcXeQL7HLoNsEP8h8HYmaq2m2CHU=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"RrgQxkOa3WLP3jvUjv9B23GyH4I38iBCVPtyBKtjh68=\",\r\n \"secondaryKey\": \"dG7JJm3usMbc5L5wH/HlaYTQZ30u03tOBJwu2gdGk8g=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"N8llvOxLNn9HYC8LHcKQJfsLgbuYvGnQsc7y+F5Lljk=\",\r\n \"secondaryKey\": \"8Ts2XRYShtRAt1fpS+fzdR3B4T8fjM7gyFTgZX+jHZk=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"pvw9038kXQ5juFcJfBP1UXLfa8QGFLF3l/CspHNhtug=\",\r\n \"secondaryKey\": \"qxTd4J4HqPb4cpYOJ09JsnQfGtdysOnPDZHhL7R6N0c=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"6hlZSGItghrF4BFHicaPeyuMMq7ES3c+nL9lIVHP5pQ=\",\r\n \"secondaryKey\": \"9kQU9Kgn0wP6xfA1zg9VLSYxRzayfI3U9l8HunduMEw=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"fKFwuNu2Y9TzqHEnphoFOPLo/2ebE3FbnVw8a9OKMMw=\",\r\n \"secondaryKey\": \"MmSn9MIfVHWRIbLgaZ07D8sjgQQtsozf+3ZJzP/i7Xk=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"9siFFyFHu7AqbPjgczsOlm9F3NsyeQu51oB+XxeJ8TY=\",\r\n \"secondaryKey\": \"mYiyDXsqrQFmOW0ltsXt2AsaC2qUVsDNuCZIIJ3k43Q=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3335/providers/Microsoft.Devices/IotHubs/ps1346?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzMzNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczEzNDY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3902/providers/Microsoft.Devices/IotHubs/ps4926?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzkwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ5MjY/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e3f6c6db-1ef1-45e3-a31e-17fdca47908f" + "d2d397f5-7866-4348-8b4e-b5b44e2ac74d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3036,13 +3093,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfODRlMGFkNmEtYzA3NC00ZjAwLWIwY2QtOTQ2NzkzZjA3ZGYx?api-version=2019-07-01-preview&operationSource=os_ih" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGUzMDJlNmItYmY4Ny00YzU4LWJkMzUtZDlhNWQ2ZmU2MzJi?api-version=2019-07-01-preview&operationSource=os_ih" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfODRlMGFkNmEtYzA3NC00ZjAwLWIwY2QtOTQ2NzkzZjA3ZGYx?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGUzMDJlNmItYmY4Ny00YzU4LWJkMzUtZDlhNWQ2ZmU2MzJi?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3051,13 +3108,13 @@ "14999" ], "x-ms-request-id": [ - "d5f45082-64d4-4b0f-9e7c-11c87baf027f" + "de9b86f6-0c96-4c6b-b000-3c0869bfca1e" ], "x-ms-correlation-request-id": [ - "d5f45082-64d4-4b0f-9e7c-11c87baf027f" + "de9b86f6-0c96-4c6b-b000-3c0869bfca1e" ], "x-ms-routing-request-id": [ - "WESTUS2:20200429T004755Z:d5f45082-64d4-4b0f-9e7c-11c87baf027f" + "WESTUS2:20200730T200316Z:de9b86f6-0c96-4c6b-b000-3c0869bfca1e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3066,7 +3123,7 @@ "nosniff" ], "Date": [ - "Wed, 29 Apr 2020 00:47:55 GMT" + "Thu, 30 Jul 2020 20:03:16 GMT" ], "Content-Length": [ "4" @@ -3082,13 +3139,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfODRlMGFkNmEtYzA3NC00ZjAwLWIwY2QtOTQ2NzkzZjA3ZGYx?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmT0RSbE1HRmtObUV0WXpBM05DMDBaakF3TFdJd1kyUXRPVFEyTnprelpqQTNaR1l4P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGUzMDJlNmItYmY4Ny00YzU4LWJkMzUtZDlhNWQ2ZmU2MzJi?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdVek1ESmxObUl0WW1ZNE55MDBZelU0TFdKa016VXRaRGxoTldRMlptVTJNekppP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3105,16 +3162,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11973" ], "x-ms-request-id": [ - "bbf76f72-330b-41af-af33-0688f0784924" + "79a46dc7-9049-4d2e-8560-a80f1ac0e2e9" ], "x-ms-correlation-request-id": [ - "bbf76f72-330b-41af-af33-0688f0784924" + "79a46dc7-9049-4d2e-8560-a80f1ac0e2e9" ], "x-ms-routing-request-id": [ - "WESTUS2:20200429T004811Z:bbf76f72-330b-41af-af33-0688f0784924" + "WESTUS2:20200730T200331Z:79a46dc7-9049-4d2e-8560-a80f1ac0e2e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3123,7 +3180,7 @@ "nosniff" ], "Date": [ - "Wed, 29 Apr 2020 00:48:10 GMT" + "Thu, 30 Jul 2020 20:03:31 GMT" ], "Content-Length": [ "22" @@ -3139,13 +3196,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfODRlMGFkNmEtYzA3NC00ZjAwLWIwY2QtOTQ2NzkzZjA3ZGYx?api-version=2019-07-01-preview&operationSource=os_ih", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmT0RSbE1HRmtObUV0WXpBM05DMDBaakF3TFdJd1kyUXRPVFEyTnprelpqQTNaR1l4P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWg=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGUzMDJlNmItYmY4Ny00YzU4LWJkMzUtZDlhNWQ2ZmU2MzJi?api-version=2019-07-01-preview&operationSource=os_ih", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdVek1ESmxObUl0WW1ZNE55MDBZelU0TFdKa016VXRaRGxoTldRMlptVTJNekppP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWg=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3159,7 +3216,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfODRlMGFkNmEtYzA3NC00ZjAwLWIwY2QtOTQ2NzkzZjA3ZGYx?api-version=2019-07-01-preview&operationSource=os_ih" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGUzMDJlNmItYmY4Ny00YzU4LWJkMzUtZDlhNWQ2ZmU2MzJi?api-version=2019-07-01-preview&operationSource=os_ih" ], "Retry-After": [ "15" @@ -3168,16 +3225,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11972" ], "x-ms-request-id": [ - "3dd68485-7ec9-4882-9607-90bc55bacdac" + "8fcc40a4-9fc4-47e8-acc1-cb14dae04909" ], "x-ms-correlation-request-id": [ - "3dd68485-7ec9-4882-9607-90bc55bacdac" + "8fcc40a4-9fc4-47e8-acc1-cb14dae04909" ], "x-ms-routing-request-id": [ - "WESTUS2:20200429T004811Z:3dd68485-7ec9-4882-9607-90bc55bacdac" + "WESTUS2:20200730T200331Z:8fcc40a4-9fc4-47e8-acc1-cb14dae04909" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3186,7 +3243,7 @@ "nosniff" ], "Date": [ - "Wed, 29 Apr 2020 00:48:10 GMT" + "Thu, 30 Jul 2020 20:03:31 GMT" ], "Expires": [ "-1" @@ -3201,12 +3258,12 @@ ], "Names": { "Test-AzureRmIotHubConfigurationLifecycle": [ - "ps1346", - "ps3335", - "ps4955", - "ps6457", - "ps3186", - "ps6840" + "ps4926", + "ps3902", + "ps571", + "ps7948", + "ps2100", + "ps7760" ] }, "Variables": { diff --git a/src/IotHub/IotHub.Test/SessionRecords/Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubDPDeviceTests/TestAzureIotHubDeviceLifecycle.json b/src/IotHub/IotHub.Test/SessionRecords/Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubDPDeviceTests/TestAzureIotHubDeviceLifecycle.json index bf2a5a737c9a..5c86b5e8155f 100644 --- a/src/IotHub/IotHub.Test/SessionRecords/Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubDPDeviceTests/TestAzureIotHubDeviceLifecycle.json +++ b/src/IotHub/IotHub.Test/SessionRecords/Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubDPDeviceTests/TestAzureIotHubDeviceLifecycle.json @@ -7,16 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "36e9db11-8af7-4cd8-b694-ddfa2438b533" + "b61b5900-1225-4987-9e21-0e6dc189d4d7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" ] }, "ResponseHeaders": { @@ -30,13 +30,13 @@ "11999" ], "x-ms-request-id": [ - "b648b2c2-1818-4458-a605-0529bb324bc0" + "9dea3a69-7d2a-4ae0-b4aa-d848357550d0" ], "x-ms-correlation-request-id": [ - "b648b2c2-1818-4458-a605-0529bb324bc0" + "9dea3a69-7d2a-4ae0-b4aa-d848357550d0" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T210644Z:b648b2c2-1818-4458-a605-0529bb324bc0" + "WESTUS2:20200730T221959Z:9dea3a69-7d2a-4ae0-b4aa-d848357550d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:06:43 GMT" + "Thu, 30 Jul 2020 22:19:58 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54,29 +54,29 @@ "-1" ], "Content-Length": [ - "5625" + "5690" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices\",\r\n \"namespace\": \"Microsoft.Devices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0cd79364-7a90-4354-9984-6e36c841418d\",\r\n \"roleDefinitionId\": \"C121DF10-FE58-4BC4-97F9-8296879F7BBB\"\r\n },\r\n {\r\n \"applicationId\": \"29f411f1-b2cf-4043-8ac8-2185d7316811\"\r\n },\r\n {\r\n \"applicationId\": \"89d10474-74af-4874-99a7-c23c2f643083\",\r\n \"roleDefinitionId\": \"7df22794-26e3-4f94-9d50-a4f0f6e1cb41\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/eventGridFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-31\",\r\n \"2018-01-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/securitySettings\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants/securitySettings\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices\",\r\n \"namespace\": \"Microsoft.Devices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0cd79364-7a90-4354-9984-6e36c841418d\",\r\n \"roleDefinitionId\": \"C121DF10-FE58-4BC4-97F9-8296879F7BBB\"\r\n },\r\n {\r\n \"applicationId\": \"29f411f1-b2cf-4043-8ac8-2185d7316811\"\r\n },\r\n {\r\n \"applicationId\": \"89d10474-74af-4874-99a7-c23c2f643083\",\r\n \"roleDefinitionId\": \"7df22794-26e3-4f94-9d50-a4f0f6e1cb41\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/eventGridFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-31\",\r\n \"2018-01-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/securitySettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants/securitySettings\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourcegroups/ps6077?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlZ3JvdXBzL3BzNjA3Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourcegroups/ps3264?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlZ3JvdXBzL3BzMzI2ND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "485eaaa6-88b2-4006-9dae-00f15cbb3211" + "818a908e-6b7d-4d94-83b8-51eda5c4366e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "4e633634-0770-4090-96bc-58eaa9ee1198" + "4fd21112-ce0d-4b9b-8955-f6e5a732cd43" ], "x-ms-correlation-request-id": [ - "4e633634-0770-4090-96bc-58eaa9ee1198" + "4fd21112-ce0d-4b9b-8955-f6e5a732cd43" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T210645Z:4e633634-0770-4090-96bc-58eaa9ee1198" + "WESTUS2:20200730T222000Z:4fd21112-ce0d-4b9b-8955-f6e5a732cd43" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:06:44 GMT" + "Thu, 30 Jul 2020 22:19:59 GMT" ], "Content-Length": [ "165" @@ -123,23 +123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077\",\r\n \"name\": \"ps6077\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264\",\r\n \"name\": \"ps3264\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0Mzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4348c542-aaec-4407-93a3-7a35ba85990c" + "46d77ade-bd84-4f6f-b416-443cdf5d3abd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -159,7 +159,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNjNmMjdlZDktZmU2MS00Y2YzLWExZjktMDY1YTgzODAxZjY0?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYmM4MmJiNjQtYzI2YS00MTMyLTk2NmMtNzgyZTU1Mzc1ZGJl?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -168,13 +168,13 @@ "4999" ], "x-ms-request-id": [ - "2ae112dc-7e27-42d8-8b8b-cd0520cfe4f8" + "d7b1bbec-2364-41c1-bd6f-01d4cb53c42f" ], "x-ms-correlation-request-id": [ - "2ae112dc-7e27-42d8-8b8b-cd0520cfe4f8" + "d7b1bbec-2364-41c1-bd6f-01d4cb53c42f" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T210700Z:2ae112dc-7e27-42d8-8b8b-cd0520cfe4f8" + "WESTUS2:20200730T222017Z:d7b1bbec-2364-41c1-bd6f-01d4cb53c42f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -183,10 +183,10 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:07:00 GMT" + "Thu, 30 Jul 2020 22:20:17 GMT" ], "Content-Length": [ - "619" + "617" ], "Content-Type": [ "application/json; charset=utf-8" @@ -195,17 +195,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438\",\r\n \"name\": \"ps8438\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6077\",\r\n \"properties\": {\r\n \"state\": \"Activating\",\r\n \"provisioningState\": \"Accepted\",\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915\",\r\n \"name\": \"ps915\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3264\",\r\n \"properties\": {\r\n \"state\": \"Activating\",\r\n \"provisioningState\": \"Accepted\",\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNjNmMjdlZDktZmU2MS00Y2YzLWExZjktMDY1YTgzODAxZjY0?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTmpObU1qZGxaRGt0Wm1VMk1TMDBZMll6TFdFeFpqa3RNRFkxWVRnek9EQXhaalkwP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYmM4MmJiNjQtYzI2YS00MTMyLTk2NmMtNzgyZTU1Mzc1ZGJl?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWW1NNE1tSmlOalF0WXpJMllTMDBNVE15TFRrMk5tTXROemd5WlRVMU16YzFaR0psP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -222,16 +222,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "35454c52-0d4f-459e-8ba9-d0c4b5e5cc73" + "a3bcc4b8-6f3b-42c5-80c7-f49ec0932557" ], "x-ms-correlation-request-id": [ - "35454c52-0d4f-459e-8ba9-d0c4b5e5cc73" + "a3bcc4b8-6f3b-42c5-80c7-f49ec0932557" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T210730Z:35454c52-0d4f-459e-8ba9-d0c4b5e5cc73" + "WESTUS2:20200730T222047Z:a3bcc4b8-6f3b-42c5-80c7-f49ec0932557" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -240,7 +240,7 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:07:30 GMT" + "Thu, 30 Jul 2020 22:20:46 GMT" ], "Content-Length": [ "20" @@ -256,13 +256,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNjNmMjdlZDktZmU2MS00Y2YzLWExZjktMDY1YTgzODAxZjY0?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTmpObU1qZGxaRGt0Wm1VMk1TMDBZMll6TFdFeFpqa3RNRFkxWVRnek9EQXhaalkwP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYmM4MmJiNjQtYzI2YS00MTMyLTk2NmMtNzgyZTU1Mzc1ZGJl?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWW1NNE1tSmlOalF0WXpJMllTMDBNVE15TFRrMk5tTXROemd5WlRVMU16YzFaR0psP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -279,16 +279,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-request-id": [ - "ff25e247-104d-4c6c-80a9-3bec07d504d3" + "7d5c17e1-91d0-41bf-92a7-1d1de328cc46" ], "x-ms-correlation-request-id": [ - "ff25e247-104d-4c6c-80a9-3bec07d504d3" + "7d5c17e1-91d0-41bf-92a7-1d1de328cc46" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T210801Z:ff25e247-104d-4c6c-80a9-3bec07d504d3" + "WESTUS2:20200730T222117Z:7d5c17e1-91d0-41bf-92a7-1d1de328cc46" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -297,7 +297,7 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:08:00 GMT" + "Thu, 30 Jul 2020 22:21:17 GMT" ], "Content-Length": [ "20" @@ -313,13 +313,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNjNmMjdlZDktZmU2MS00Y2YzLWExZjktMDY1YTgzODAxZjY0?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTmpObU1qZGxaRGt0Wm1VMk1TMDBZMll6TFdFeFpqa3RNRFkxWVRnek9EQXhaalkwP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYmM4MmJiNjQtYzI2YS00MTMyLTk2NmMtNzgyZTU1Mzc1ZGJl?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWW1NNE1tSmlOalF0WXpJMllTMDBNVE15TFRrMk5tTXROemd5WlRVMU16YzFaR0psP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -336,16 +336,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-request-id": [ - "5a44f42e-eedf-447d-9862-b7f428e3fd3f" + "35f16e76-ce90-4845-8cb9-88e9eaeb313a" ], "x-ms-correlation-request-id": [ - "5a44f42e-eedf-447d-9862-b7f428e3fd3f" + "35f16e76-ce90-4845-8cb9-88e9eaeb313a" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T210831Z:5a44f42e-eedf-447d-9862-b7f428e3fd3f" + "WESTUS2:20200730T222148Z:35f16e76-ce90-4845-8cb9-88e9eaeb313a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -354,7 +354,7 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:08:31 GMT" + "Thu, 30 Jul 2020 22:21:47 GMT" ], "Content-Length": [ "20" @@ -370,13 +370,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNjNmMjdlZDktZmU2MS00Y2YzLWExZjktMDY1YTgzODAxZjY0?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTmpObU1qZGxaRGt0Wm1VMk1TMDBZMll6TFdFeFpqa3RNRFkxWVRnek9EQXhaalkwP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYmM4MmJiNjQtYzI2YS00MTMyLTk2NmMtNzgyZTU1Mzc1ZGJl?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWW1NNE1tSmlOalF0WXpJMllTMDBNVE15TFRrMk5tTXROemd5WlRVMU16YzFaR0psP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -393,16 +393,73 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" + ], + "x-ms-request-id": [ + "926c29b9-8fdf-48b5-8be6-cfdd47f73e79" + ], + "x-ms-correlation-request-id": [ + "926c29b9-8fdf-48b5-8be6-cfdd47f73e79" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200730T222218Z:926c29b9-8fdf-48b5-8be6-cfdd47f73e79" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 30 Jul 2020 22:22:17 GMT" + ], + "Content-Length": [ + "20" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYmM4MmJiNjQtYzI2YS00MTMyLTk2NmMtNzgyZTU1Mzc1ZGJl?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWW1NNE1tSmlOalF0WXpJMllTMDBNVE15TFRrMk5tTXROemd5WlRVMU16YzFaR0psP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28619.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" ], "x-ms-request-id": [ - "fd12f938-d5c8-4626-b061-50fa17e322e6" + "ffae3d61-74da-40fe-aec8-ba42f728a92b" ], "x-ms-correlation-request-id": [ - "fd12f938-d5c8-4626-b061-50fa17e322e6" + "ffae3d61-74da-40fe-aec8-ba42f728a92b" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T210901Z:fd12f938-d5c8-4626-b061-50fa17e322e6" + "WESTUS2:20200730T222248Z:ffae3d61-74da-40fe-aec8-ba42f728a92b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -411,7 +468,7 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:09:00 GMT" + "Thu, 30 Jul 2020 22:22:48 GMT" ], "Content-Length": [ "22" @@ -427,13 +484,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0Mzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -450,16 +507,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11993" ], "x-ms-request-id": [ - "01d66550-4568-4128-9586-b8521c16282b" + "7adf12f1-5fe2-492e-ae5a-74b7d9e1db8b" ], "x-ms-correlation-request-id": [ - "01d66550-4568-4128-9586-b8521c16282b" + "7adf12f1-5fe2-492e-ae5a-74b7d9e1db8b" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T210902Z:01d66550-4568-4128-9586-b8521c16282b" + "WESTUS2:20200730T222249Z:7adf12f1-5fe2-492e-ae5a-74b7d9e1db8b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -468,10 +525,10 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:09:01 GMT" + "Thu, 30 Jul 2020 22:22:48 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -480,23 +537,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438\",\r\n \"name\": \"ps8438\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6077\",\r\n \"etag\": \"AAAAAA46L58=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps8438.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8438\",\r\n \"endpoint\": \"sb://iothub-ns-ps8438-3547119-ca76524011.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915\",\r\n \"name\": \"ps915\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3264\",\r\n \"etag\": \"AAAAAJ6zJ98=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps915.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps915\",\r\n \"endpoint\": \"sb://iothub-ns-ps915-3950153-a37a100cd6.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0Mzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a7d87071-8d37-4fc2-9b95-cfb9c21126a3" + "3068535e-5ad6-4b14-8f7b-f69cab78751c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -513,16 +570,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11992" ], "x-ms-request-id": [ - "7d30aaf4-1e5a-4820-bfd7-190539eb0d66" + "a1e50205-a5fb-4cbe-ba55-b402b6a6a13e" ], "x-ms-correlation-request-id": [ - "7d30aaf4-1e5a-4820-bfd7-190539eb0d66" + "a1e50205-a5fb-4cbe-ba55-b402b6a6a13e" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T210903Z:7d30aaf4-1e5a-4820-bfd7-190539eb0d66" + "WESTUS2:20200730T222249Z:a1e50205-a5fb-4cbe-ba55-b402b6a6a13e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -531,10 +588,10 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:09:02 GMT" + "Thu, 30 Jul 2020 22:22:49 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -543,23 +600,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438\",\r\n \"name\": \"ps8438\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6077\",\r\n \"etag\": \"AAAAAA46L58=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps8438.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8438\",\r\n \"endpoint\": \"sb://iothub-ns-ps8438-3547119-ca76524011.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915\",\r\n \"name\": \"ps915\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3264\",\r\n \"etag\": \"AAAAAJ6zJ98=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps915.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps915\",\r\n \"endpoint\": \"sb://iothub-ns-ps915-3950153-a37a100cd6.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0Mzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c6ac434a-7f2d-4a18-aca7-bfec449015a7" + "7b7de564-e6cf-4e6a-8d30-311253d1928c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -576,16 +633,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11991" ], "x-ms-request-id": [ - "69dd6bc9-ccb7-406c-af0e-c2a9d4430d65" + "a6d6d32f-90b8-4665-b52b-46be36a68a0a" ], "x-ms-correlation-request-id": [ - "69dd6bc9-ccb7-406c-af0e-c2a9d4430d65" + "a6d6d32f-90b8-4665-b52b-46be36a68a0a" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T210903Z:69dd6bc9-ccb7-406c-af0e-c2a9d4430d65" + "WESTUS2:20200730T222250Z:a6d6d32f-90b8-4665-b52b-46be36a68a0a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -594,10 +651,10 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:09:02 GMT" + "Thu, 30 Jul 2020 22:22:49 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -606,23 +663,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438\",\r\n \"name\": \"ps8438\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6077\",\r\n \"etag\": \"AAAAAA46L58=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps8438.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8438\",\r\n \"endpoint\": \"sb://iothub-ns-ps8438-3547119-ca76524011.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915\",\r\n \"name\": \"ps915\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3264\",\r\n \"etag\": \"AAAAAJ6zJ98=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps915.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps915\",\r\n \"endpoint\": \"sb://iothub-ns-ps915-3950153-a37a100cd6.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0Mzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "66eab2df-c48e-4358-9975-9ddb41704961" + "2ed4298b-6b5c-4e50-9398-d1534f41d332" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -639,16 +696,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11990" ], "x-ms-request-id": [ - "fba31261-ce30-4f46-95bb-0ac2de06f272" + "6ab31bce-cbdf-47b0-8846-ace808ad9568" ], "x-ms-correlation-request-id": [ - "fba31261-ce30-4f46-95bb-0ac2de06f272" + "6ab31bce-cbdf-47b0-8846-ace808ad9568" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T210904Z:fba31261-ce30-4f46-95bb-0ac2de06f272" + "WESTUS2:20200730T222251Z:6ab31bce-cbdf-47b0-8846-ace808ad9568" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -657,10 +714,10 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:09:03 GMT" + "Thu, 30 Jul 2020 22:22:50 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -669,23 +726,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438\",\r\n \"name\": \"ps8438\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6077\",\r\n \"etag\": \"AAAAAA46L58=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps8438.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8438\",\r\n \"endpoint\": \"sb://iothub-ns-ps8438-3547119-ca76524011.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915\",\r\n \"name\": \"ps915\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3264\",\r\n \"etag\": \"AAAAAJ6zJ98=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps915.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps915\",\r\n \"endpoint\": \"sb://iothub-ns-ps915-3950153-a37a100cd6.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0Mzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4781bcc2-92d7-418d-aefd-ec3967fd098d" + "b36bd22e-17dc-44e7-bb01-7e663b8fecc0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -702,16 +759,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11989" ], "x-ms-request-id": [ - "4585d32c-19b3-4ab5-a625-9154654c449c" + "6837dedf-61a4-449e-acab-928da8ee5db5" ], "x-ms-correlation-request-id": [ - "4585d32c-19b3-4ab5-a625-9154654c449c" + "6837dedf-61a4-449e-acab-928da8ee5db5" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T210906Z:4585d32c-19b3-4ab5-a625-9154654c449c" + "WESTUS2:20200730T222252Z:6837dedf-61a4-449e-acab-928da8ee5db5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -720,10 +777,10 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:09:06 GMT" + "Thu, 30 Jul 2020 22:22:52 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -732,23 +789,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438\",\r\n \"name\": \"ps8438\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6077\",\r\n \"etag\": \"AAAAAA46L58=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps8438.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8438\",\r\n \"endpoint\": \"sb://iothub-ns-ps8438-3547119-ca76524011.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915\",\r\n \"name\": \"ps915\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3264\",\r\n \"etag\": \"AAAAAJ6zJ98=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps915.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps915\",\r\n \"endpoint\": \"sb://iothub-ns-ps915-3950153-a37a100cd6.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0Mzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f53c6b37-2fb4-4df1-a82a-9c4e3a3433b9" + "ba80d41f-7539-4b36-be5d-97cacf9147b3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -765,16 +822,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11988" ], "x-ms-request-id": [ - "1371da3c-01dd-4d84-b0d1-63f9d48982ca" + "fb338cfd-ca9f-491c-9bff-446fa3864cbd" ], "x-ms-correlation-request-id": [ - "1371da3c-01dd-4d84-b0d1-63f9d48982ca" + "fb338cfd-ca9f-491c-9bff-446fa3864cbd" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T210907Z:1371da3c-01dd-4d84-b0d1-63f9d48982ca" + "WESTUS2:20200730T222253Z:fb338cfd-ca9f-491c-9bff-446fa3864cbd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -783,10 +840,10 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:09:07 GMT" + "Thu, 30 Jul 2020 22:22:53 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -795,23 +852,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438\",\r\n \"name\": \"ps8438\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6077\",\r\n \"etag\": \"AAAAAA46L58=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps8438.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8438\",\r\n \"endpoint\": \"sb://iothub-ns-ps8438-3547119-ca76524011.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915\",\r\n \"name\": \"ps915\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3264\",\r\n \"etag\": \"AAAAAJ6zJ98=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps915.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps915\",\r\n \"endpoint\": \"sb://iothub-ns-ps915-3950153-a37a100cd6.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0Mzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "64be69d7-bea5-4257-a83c-e6078a46d58e" + "1076194a-c448-4a88-92db-a71169725fa0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -828,16 +885,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11987" ], "x-ms-request-id": [ - "d88fae20-47c8-42ad-9235-be53c0769ba9" + "cc88e762-698b-4eb3-9311-d6f51f0d560a" ], "x-ms-correlation-request-id": [ - "d88fae20-47c8-42ad-9235-be53c0769ba9" + "cc88e762-698b-4eb3-9311-d6f51f0d560a" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T210944Z:d88fae20-47c8-42ad-9235-be53c0769ba9" + "WESTUS2:20200730T222255Z:cc88e762-698b-4eb3-9311-d6f51f0d560a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -846,10 +903,10 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:09:43 GMT" + "Thu, 30 Jul 2020 22:22:54 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -858,23 +915,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438\",\r\n \"name\": \"ps8438\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6077\",\r\n \"etag\": \"AAAAAA46L58=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps8438.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8438\",\r\n \"endpoint\": \"sb://iothub-ns-ps8438-3547119-ca76524011.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915\",\r\n \"name\": \"ps915\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3264\",\r\n \"etag\": \"AAAAAJ6zJ98=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps915.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps915\",\r\n \"endpoint\": \"sb://iothub-ns-ps915-3950153-a37a100cd6.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0Mzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9bd294b2-45fe-4e6b-9e92-f3e4e29b668a" + "319784b0-cf4e-4de7-9f74-c58c2c22a314" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -891,16 +948,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11986" ], "x-ms-request-id": [ - "59910077-fee5-4bfb-a1fb-76c30179b37d" + "c8eb85bf-9415-4ef1-8405-9034bd4fa185" ], "x-ms-correlation-request-id": [ - "59910077-fee5-4bfb-a1fb-76c30179b37d" + "c8eb85bf-9415-4ef1-8405-9034bd4fa185" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T210945Z:59910077-fee5-4bfb-a1fb-76c30179b37d" + "WESTUS2:20200730T222256Z:c8eb85bf-9415-4ef1-8405-9034bd4fa185" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -909,10 +966,10 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:09:44 GMT" + "Thu, 30 Jul 2020 22:22:56 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -921,23 +978,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438\",\r\n \"name\": \"ps8438\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6077\",\r\n \"etag\": \"AAAAAA46L58=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps8438.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8438\",\r\n \"endpoint\": \"sb://iothub-ns-ps8438-3547119-ca76524011.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915\",\r\n \"name\": \"ps915\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3264\",\r\n \"etag\": \"AAAAAJ6zJ98=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps915.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps915\",\r\n \"endpoint\": \"sb://iothub-ns-ps915-3950153-a37a100cd6.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0Mzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "46ae85e8-10ab-4e48-aabb-4e9c9aae6de8" + "7581bd42-9c36-4970-a260-9784b96a375a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -954,16 +1011,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11985" ], "x-ms-request-id": [ - "2e4abd50-3a0a-4332-b512-8eb521eadc87" + "485172a9-4f77-4038-832c-3bb7af527cf1" ], "x-ms-correlation-request-id": [ - "2e4abd50-3a0a-4332-b512-8eb521eadc87" + "485172a9-4f77-4038-832c-3bb7af527cf1" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T210946Z:2e4abd50-3a0a-4332-b512-8eb521eadc87" + "WESTUS2:20200730T222257Z:485172a9-4f77-4038-832c-3bb7af527cf1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -972,10 +1029,10 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:09:45 GMT" + "Thu, 30 Jul 2020 22:22:56 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -984,23 +1041,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438\",\r\n \"name\": \"ps8438\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6077\",\r\n \"etag\": \"AAAAAA46L58=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps8438.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8438\",\r\n \"endpoint\": \"sb://iothub-ns-ps8438-3547119-ca76524011.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915\",\r\n \"name\": \"ps915\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3264\",\r\n \"etag\": \"AAAAAJ6zJ98=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps915.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps915\",\r\n \"endpoint\": \"sb://iothub-ns-ps915-3950153-a37a100cd6.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0Mzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0ba53822-610a-49a0-a541-a36738c50bc0" + "4d31a061-09c0-4241-ad9a-2f61aeb10a7a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1017,16 +1074,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11984" ], "x-ms-request-id": [ - "fd4abfbd-04ed-4e75-baa9-c88b8d1236a0" + "e2d16cc3-2504-49bc-9243-4c5bef950a42" ], "x-ms-correlation-request-id": [ - "fd4abfbd-04ed-4e75-baa9-c88b8d1236a0" + "e2d16cc3-2504-49bc-9243-4c5bef950a42" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T210947Z:fd4abfbd-04ed-4e75-baa9-c88b8d1236a0" + "WESTUS2:20200730T222258Z:e2d16cc3-2504-49bc-9243-4c5bef950a42" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1035,10 +1092,10 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:09:46 GMT" + "Thu, 30 Jul 2020 22:22:57 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1047,23 +1104,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438\",\r\n \"name\": \"ps8438\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6077\",\r\n \"etag\": \"AAAAAA46L58=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps8438.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8438\",\r\n \"endpoint\": \"sb://iothub-ns-ps8438-3547119-ca76524011.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915\",\r\n \"name\": \"ps915\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3264\",\r\n \"etag\": \"AAAAAJ6zJ98=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps915.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps915\",\r\n \"endpoint\": \"sb://iothub-ns-ps915-3950153-a37a100cd6.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0Mzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "38451ab7-869f-48d0-a566-9c0d5b9071e3" + "f3a12849-1479-4fdb-8f3c-b00804858387" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1080,16 +1137,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11983" ], "x-ms-request-id": [ - "30d15bd0-f2a7-4d23-b3b9-a09afe6b6942" + "f07abc26-89d1-4264-a2ad-abaed59be7fa" ], "x-ms-correlation-request-id": [ - "30d15bd0-f2a7-4d23-b3b9-a09afe6b6942" + "f07abc26-89d1-4264-a2ad-abaed59be7fa" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T210948Z:30d15bd0-f2a7-4d23-b3b9-a09afe6b6942" + "WESTUS2:20200730T222259Z:f07abc26-89d1-4264-a2ad-abaed59be7fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1098,10 +1155,10 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:09:47 GMT" + "Thu, 30 Jul 2020 22:22:58 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1110,23 +1167,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438\",\r\n \"name\": \"ps8438\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6077\",\r\n \"etag\": \"AAAAAA46L58=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps8438.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8438\",\r\n \"endpoint\": \"sb://iothub-ns-ps8438-3547119-ca76524011.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915\",\r\n \"name\": \"ps915\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3264\",\r\n \"etag\": \"AAAAAJ6zJ98=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps915.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps915\",\r\n \"endpoint\": \"sb://iothub-ns-ps915-3950153-a37a100cd6.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0Mzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e3d70ca5-0c3b-4caf-83c7-a826769a6317" + "81233b84-e4b6-42bb-80c6-0ecc9c2065fa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1143,16 +1200,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11982" ], "x-ms-request-id": [ - "9856d100-58bc-48a8-8435-ba8c4f8c80ef" + "3222b012-d373-4c71-8032-087233f1ba45" ], "x-ms-correlation-request-id": [ - "9856d100-58bc-48a8-8435-ba8c4f8c80ef" + "3222b012-d373-4c71-8032-087233f1ba45" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T211006Z:9856d100-58bc-48a8-8435-ba8c4f8c80ef" + "WESTUS2:20200730T222300Z:3222b012-d373-4c71-8032-087233f1ba45" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1161,10 +1218,10 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:10:06 GMT" + "Thu, 30 Jul 2020 22:22:59 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1173,23 +1230,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438\",\r\n \"name\": \"ps8438\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6077\",\r\n \"etag\": \"AAAAAA46L58=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps8438.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8438\",\r\n \"endpoint\": \"sb://iothub-ns-ps8438-3547119-ca76524011.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915\",\r\n \"name\": \"ps915\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3264\",\r\n \"etag\": \"AAAAAJ6zJ98=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps915.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps915\",\r\n \"endpoint\": \"sb://iothub-ns-ps915-3950153-a37a100cd6.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0Mzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a3934000-fa5a-42fc-829b-f5b36247fcfc" + "cfebf540-1612-4fb3-a60c-c7a3bbadd1d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1206,16 +1263,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11981" ], "x-ms-request-id": [ - "17e139b4-845f-4f05-a232-6cab30263575" + "fe1a3023-a038-4366-bf54-21fe90ba203d" ], "x-ms-correlation-request-id": [ - "17e139b4-845f-4f05-a232-6cab30263575" + "fe1a3023-a038-4366-bf54-21fe90ba203d" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T211010Z:17e139b4-845f-4f05-a232-6cab30263575" + "WESTUS2:20200730T222316Z:fe1a3023-a038-4366-bf54-21fe90ba203d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1224,10 +1281,10 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:10:09 GMT" + "Thu, 30 Jul 2020 22:23:16 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1236,23 +1293,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438\",\r\n \"name\": \"ps8438\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6077\",\r\n \"etag\": \"AAAAAA46L58=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps8438.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8438\",\r\n \"endpoint\": \"sb://iothub-ns-ps8438-3547119-ca76524011.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915\",\r\n \"name\": \"ps915\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3264\",\r\n \"etag\": \"AAAAAJ6zJ98=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps915.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps915\",\r\n \"endpoint\": \"sb://iothub-ns-ps915-3950153-a37a100cd6.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0Mzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6b3960d8-2f08-40b1-93e3-133e731458d2" + "d76005e3-7011-454c-afe8-63742660fe27" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1269,16 +1326,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11980" ], "x-ms-request-id": [ - "d0206789-0a7c-4040-8837-b7385ee81835" + "4615753d-ec20-466e-8714-77543bcc48ab" ], "x-ms-correlation-request-id": [ - "d0206789-0a7c-4040-8837-b7385ee81835" + "4615753d-ec20-466e-8714-77543bcc48ab" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T211012Z:d0206789-0a7c-4040-8837-b7385ee81835" + "WESTUS2:20200730T222317Z:4615753d-ec20-466e-8714-77543bcc48ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1287,10 +1344,10 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:10:11 GMT" + "Thu, 30 Jul 2020 22:23:17 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1299,23 +1356,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438\",\r\n \"name\": \"ps8438\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6077\",\r\n \"etag\": \"AAAAAA46L58=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps8438.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8438\",\r\n \"endpoint\": \"sb://iothub-ns-ps8438-3547119-ca76524011.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915\",\r\n \"name\": \"ps915\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3264\",\r\n \"etag\": \"AAAAAJ6zJ98=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps915.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps915\",\r\n \"endpoint\": \"sb://iothub-ns-ps915-3950153-a37a100cd6.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0Mzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7ef158eb-2ff5-42cd-8607-1c8285ed6b59" + "1b053c59-29f9-4cfc-9733-d0d62c09880d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1332,16 +1389,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11979" ], "x-ms-request-id": [ - "b1783a98-3154-49d4-9b16-a8a6db985f93" + "3694328e-9008-4632-885e-8cbc4e8c8d92" ], "x-ms-correlation-request-id": [ - "b1783a98-3154-49d4-9b16-a8a6db985f93" + "3694328e-9008-4632-885e-8cbc4e8c8d92" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T211013Z:b1783a98-3154-49d4-9b16-a8a6db985f93" + "WESTUS2:20200730T222318Z:3694328e-9008-4632-885e-8cbc4e8c8d92" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1350,10 +1407,10 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:10:12 GMT" + "Thu, 30 Jul 2020 22:23:18 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1362,23 +1419,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438\",\r\n \"name\": \"ps8438\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6077\",\r\n \"etag\": \"AAAAAA46L58=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps8438.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8438\",\r\n \"endpoint\": \"sb://iothub-ns-ps8438-3547119-ca76524011.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915\",\r\n \"name\": \"ps915\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3264\",\r\n \"etag\": \"AAAAAJ6zJ98=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps915.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps915\",\r\n \"endpoint\": \"sb://iothub-ns-ps915-3950153-a37a100cd6.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0Mzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "73d532c6-1acc-48aa-94a6-2a70f2934603" + "ed659f77-db86-4e6d-8aeb-172982d9e53d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1391,20 +1448,20 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], "x-ms-request-id": [ - "b1a358e5-c48c-4f72-bbee-d2ea3d441248" + "e36aded0-41e9-4755-8e24-11f70e05071a" ], "x-ms-correlation-request-id": [ - "b1a358e5-c48c-4f72-bbee-d2ea3d441248" + "e36aded0-41e9-4755-8e24-11f70e05071a" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T211014Z:b1a358e5-c48c-4f72-bbee-d2ea3d441248" + "WESTUS2:20200730T222319Z:e36aded0-41e9-4755-8e24-11f70e05071a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1413,10 +1470,10 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:10:13 GMT" + "Thu, 30 Jul 2020 22:23:19 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1425,23 +1482,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438\",\r\n \"name\": \"ps8438\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6077\",\r\n \"etag\": \"AAAAAA46L58=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps8438.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8438\",\r\n \"endpoint\": \"sb://iothub-ns-ps8438-3547119-ca76524011.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915\",\r\n \"name\": \"ps915\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3264\",\r\n \"etag\": \"AAAAAJ6zJ98=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps915.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps915\",\r\n \"endpoint\": \"sb://iothub-ns-ps915-3950153-a37a100cd6.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0Mzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3f7955bc-2bb2-40d4-a250-26d8d534f4bb" + "23b7296f-04b8-4918-add0-9f55f6dced11" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1458,16 +1515,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11977" ], "x-ms-request-id": [ - "9ce14a35-00fa-401b-affc-235d913570d5" + "040ea23c-9cb1-4d7e-8abe-31ed11225d6f" ], "x-ms-correlation-request-id": [ - "9ce14a35-00fa-401b-affc-235d913570d5" + "040ea23c-9cb1-4d7e-8abe-31ed11225d6f" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T211015Z:9ce14a35-00fa-401b-affc-235d913570d5" + "WESTUS2:20200730T222320Z:040ea23c-9cb1-4d7e-8abe-31ed11225d6f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1476,10 +1533,10 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:10:15 GMT" + "Thu, 30 Jul 2020 22:23:20 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1488,23 +1545,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438\",\r\n \"name\": \"ps8438\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6077\",\r\n \"etag\": \"AAAAAA46L58=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps8438.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8438\",\r\n \"endpoint\": \"sb://iothub-ns-ps8438-3547119-ca76524011.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915\",\r\n \"name\": \"ps915\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3264\",\r\n \"etag\": \"AAAAAJ6zJ98=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps915.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps915\",\r\n \"endpoint\": \"sb://iothub-ns-ps915-3950153-a37a100cd6.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0Mzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b2a421d4-bf6f-4dea-a0c7-99582ada2696" + "1e664abc-7d17-44b6-abc4-bda8dd7af865" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1521,16 +1578,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11976" ], "x-ms-request-id": [ - "6674b90a-e5b9-4916-bd84-79a35718c6fd" + "ebcbeee1-cef1-4e0b-89dc-ce65eb730676" ], "x-ms-correlation-request-id": [ - "6674b90a-e5b9-4916-bd84-79a35718c6fd" + "ebcbeee1-cef1-4e0b-89dc-ce65eb730676" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T211017Z:6674b90a-e5b9-4916-bd84-79a35718c6fd" + "WESTUS2:20200730T222321Z:ebcbeee1-cef1-4e0b-89dc-ce65eb730676" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1539,10 +1596,10 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:10:16 GMT" + "Thu, 30 Jul 2020 22:23:21 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1551,23 +1608,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438\",\r\n \"name\": \"ps8438\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6077\",\r\n \"etag\": \"AAAAAA46L58=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps8438.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8438\",\r\n \"endpoint\": \"sb://iothub-ns-ps8438-3547119-ca76524011.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915\",\r\n \"name\": \"ps915\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3264\",\r\n \"etag\": \"AAAAAJ6zJ98=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps915.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps915\",\r\n \"endpoint\": \"sb://iothub-ns-ps915-3950153-a37a100cd6.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0Mzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b050bdad-b658-43ee-b265-9d896f4babc4" + "0df3d4a9-0f72-4406-bf68-ad36abf17ef3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1584,16 +1641,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11975" ], "x-ms-request-id": [ - "908ad2e7-59bf-49ec-af37-0f95e9cad7c1" + "cfda0995-e355-49ac-a552-6597595f3f1c" ], "x-ms-correlation-request-id": [ - "908ad2e7-59bf-49ec-af37-0f95e9cad7c1" + "cfda0995-e355-49ac-a552-6597595f3f1c" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T211249Z:908ad2e7-59bf-49ec-af37-0f95e9cad7c1" + "WESTUS2:20200730T222332Z:cfda0995-e355-49ac-a552-6597595f3f1c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1602,10 +1659,10 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:12:49 GMT" + "Thu, 30 Jul 2020 22:23:32 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1614,23 +1671,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438\",\r\n \"name\": \"ps8438\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6077\",\r\n \"etag\": \"AAAAAA46L58=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps8438.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8438\",\r\n \"endpoint\": \"sb://iothub-ns-ps8438-3547119-ca76524011.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915\",\r\n \"name\": \"ps915\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3264\",\r\n \"etag\": \"AAAAAJ6zJ98=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps915.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps915\",\r\n \"endpoint\": \"sb://iothub-ns-ps915-3950153-a37a100cd6.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0Mzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4f3b7ee7-dbb7-4ed2-afe5-bc19e1938a7d" + "60ff7744-f4b8-4aeb-852a-de45647959b1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1647,16 +1704,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11974" ], "x-ms-request-id": [ - "406f5f62-d1b6-492e-b294-931f2aec2180" + "1fd8640e-74e5-428b-8427-db432763b1ea" ], "x-ms-correlation-request-id": [ - "406f5f62-d1b6-492e-b294-931f2aec2180" + "1fd8640e-74e5-428b-8427-db432763b1ea" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T211251Z:406f5f62-d1b6-492e-b294-931f2aec2180" + "WESTUS2:20200730T222333Z:1fd8640e-74e5-428b-8427-db432763b1ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1665,10 +1722,10 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:12:51 GMT" + "Thu, 30 Jul 2020 22:23:33 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1677,23 +1734,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438\",\r\n \"name\": \"ps8438\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6077\",\r\n \"etag\": \"AAAAAA46L58=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps8438.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8438\",\r\n \"endpoint\": \"sb://iothub-ns-ps8438-3547119-ca76524011.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915\",\r\n \"name\": \"ps915\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3264\",\r\n \"etag\": \"AAAAAJ6zJ98=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps915.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps915\",\r\n \"endpoint\": \"sb://iothub-ns-ps915-3950153-a37a100cd6.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0Mzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "91c96690-21ef-4db9-8a46-44d2cbc4ac9e" + "9500cea6-ccfe-4bb7-a13f-0fb90e833b54" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1710,16 +1767,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11973" ], "x-ms-request-id": [ - "23e5db2b-3d88-40ad-b5e0-457977764c05" + "7b74f826-8f50-4e9b-864e-aca2534ad1f2" ], "x-ms-correlation-request-id": [ - "23e5db2b-3d88-40ad-b5e0-457977764c05" + "7b74f826-8f50-4e9b-864e-aca2534ad1f2" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T211252Z:23e5db2b-3d88-40ad-b5e0-457977764c05" + "WESTUS2:20200730T222334Z:7b74f826-8f50-4e9b-864e-aca2534ad1f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1728,10 +1785,10 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:12:52 GMT" + "Thu, 30 Jul 2020 22:23:34 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1740,23 +1797,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438\",\r\n \"name\": \"ps8438\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6077\",\r\n \"etag\": \"AAAAAA46L58=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps8438.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8438\",\r\n \"endpoint\": \"sb://iothub-ns-ps8438-3547119-ca76524011.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915\",\r\n \"name\": \"ps915\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3264\",\r\n \"etag\": \"AAAAAJ6zJ98=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps915.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps915\",\r\n \"endpoint\": \"sb://iothub-ns-ps915-3950153-a37a100cd6.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0Mzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ed9d0c17-1756-425a-bc7a-80bfd6d22518" + "a5c4e2c3-ad6c-4ba4-873e-22eb19596b6b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1773,16 +1830,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11972" ], "x-ms-request-id": [ - "ed7b9790-802a-4234-978b-7d69e6ee5fcc" + "7a2885dc-9ee4-4b1b-9be4-2743fbaff53a" ], "x-ms-correlation-request-id": [ - "ed7b9790-802a-4234-978b-7d69e6ee5fcc" + "7a2885dc-9ee4-4b1b-9be4-2743fbaff53a" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T211253Z:ed7b9790-802a-4234-978b-7d69e6ee5fcc" + "WESTUS2:20200730T222335Z:7a2885dc-9ee4-4b1b-9be4-2743fbaff53a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1791,10 +1848,10 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:12:53 GMT" + "Thu, 30 Jul 2020 22:23:35 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1803,23 +1860,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438\",\r\n \"name\": \"ps8438\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6077\",\r\n \"etag\": \"AAAAAA46L58=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps8438.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8438\",\r\n \"endpoint\": \"sb://iothub-ns-ps8438-3547119-ca76524011.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915\",\r\n \"name\": \"ps915\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3264\",\r\n \"etag\": \"AAAAAJ6zJ98=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps915.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps915\",\r\n \"endpoint\": \"sb://iothub-ns-ps915-3950153-a37a100cd6.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0Mzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2dff76f0-e9f8-4a51-8673-133d25b5175b" + "7def25b5-7d93-4458-b39a-882e4cd30642" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1836,16 +1893,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11971" ], "x-ms-request-id": [ - "0f26726d-9eaf-4474-81be-6edce2e4c235" + "a9c72299-82fe-4f26-a4f2-dc32cfb95b61" ], "x-ms-correlation-request-id": [ - "0f26726d-9eaf-4474-81be-6edce2e4c235" + "a9c72299-82fe-4f26-a4f2-dc32cfb95b61" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T211255Z:0f26726d-9eaf-4474-81be-6edce2e4c235" + "WESTUS2:20200730T222336Z:a9c72299-82fe-4f26-a4f2-dc32cfb95b61" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1854,10 +1911,10 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:12:54 GMT" + "Thu, 30 Jul 2020 22:23:36 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1866,23 +1923,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438\",\r\n \"name\": \"ps8438\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6077\",\r\n \"etag\": \"AAAAAA46L58=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps8438.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8438\",\r\n \"endpoint\": \"sb://iothub-ns-ps8438-3547119-ca76524011.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915\",\r\n \"name\": \"ps915\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3264\",\r\n \"etag\": \"AAAAAJ6zJ98=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps915.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps915\",\r\n \"endpoint\": \"sb://iothub-ns-ps915-3950153-a37a100cd6.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0Mzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0d8625c9-15d1-4f9b-83b0-8796166d79b9" + "3e90d2e6-d7b2-4d40-8911-f26427e9344b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1899,16 +1956,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11970" ], "x-ms-request-id": [ - "b6257965-ecd3-4094-8d5d-6a46caee646c" + "21d0baca-45b6-438b-ba71-5eff1260cd72" ], "x-ms-correlation-request-id": [ - "b6257965-ecd3-4094-8d5d-6a46caee646c" + "21d0baca-45b6-438b-ba71-5eff1260cd72" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T211256Z:b6257965-ecd3-4094-8d5d-6a46caee646c" + "WESTUS2:20200730T222337Z:21d0baca-45b6-438b-ba71-5eff1260cd72" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1917,10 +1974,10 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:12:55 GMT" + "Thu, 30 Jul 2020 22:23:37 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1929,23 +1986,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438\",\r\n \"name\": \"ps8438\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6077\",\r\n \"etag\": \"AAAAAA46L58=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps8438.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8438\",\r\n \"endpoint\": \"sb://iothub-ns-ps8438-3547119-ca76524011.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915\",\r\n \"name\": \"ps915\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3264\",\r\n \"etag\": \"AAAAAJ6zJ98=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps915.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps915\",\r\n \"endpoint\": \"sb://iothub-ns-ps915-3950153-a37a100cd6.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0Mzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "63db0ba6-8291-4d2d-b58f-ea3bc468ae4a" + "5fc2fd81-7b79-4a2e-b4f5-f53fdc89469a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1962,16 +2019,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11969" ], "x-ms-request-id": [ - "c4847400-f9ec-41fe-8c8f-3bae6f3f7e3e" + "10f3f6b7-36f9-441a-905c-c6b39361643a" ], "x-ms-correlation-request-id": [ - "c4847400-f9ec-41fe-8c8f-3bae6f3f7e3e" + "10f3f6b7-36f9-441a-905c-c6b39361643a" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T211257Z:c4847400-f9ec-41fe-8c8f-3bae6f3f7e3e" + "WESTUS2:20200730T222338Z:10f3f6b7-36f9-441a-905c-c6b39361643a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1980,10 +2037,10 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:12:57 GMT" + "Thu, 30 Jul 2020 22:23:38 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1992,23 +2049,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438\",\r\n \"name\": \"ps8438\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6077\",\r\n \"etag\": \"AAAAAA46L58=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps8438.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8438\",\r\n \"endpoint\": \"sb://iothub-ns-ps8438-3547119-ca76524011.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915\",\r\n \"name\": \"ps915\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3264\",\r\n \"etag\": \"AAAAAJ6zJ98=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps915.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps915\",\r\n \"endpoint\": \"sb://iothub-ns-ps915-3950153-a37a100cd6.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0Mzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "30c2f300-9d7d-4ee1-8248-faf253e1fbe9" + "f361c850-2dbd-4b87-9208-142574501fd6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2025,16 +2082,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11968" ], "x-ms-request-id": [ - "3c8caf44-2b41-4e07-960b-8ce77442df3c" + "71514c4a-d168-45e4-acc0-e408c2914b44" ], "x-ms-correlation-request-id": [ - "3c8caf44-2b41-4e07-960b-8ce77442df3c" + "71514c4a-d168-45e4-acc0-e408c2914b44" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T211258Z:3c8caf44-2b41-4e07-960b-8ce77442df3c" + "WESTUS2:20200730T222340Z:71514c4a-d168-45e4-acc0-e408c2914b44" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2043,10 +2100,10 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:12:58 GMT" + "Thu, 30 Jul 2020 22:23:39 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2055,23 +2112,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438\",\r\n \"name\": \"ps8438\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6077\",\r\n \"etag\": \"AAAAAA46L58=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps8438.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8438\",\r\n \"endpoint\": \"sb://iothub-ns-ps8438-3547119-ca76524011.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915\",\r\n \"name\": \"ps915\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3264\",\r\n \"etag\": \"AAAAAJ6zJ98=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps915.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps915\",\r\n \"endpoint\": \"sb://iothub-ns-ps915-3950153-a37a100cd6.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0Mzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "211c6c17-c7fb-4a99-bd40-29c5ccff0812" + "dae926e4-0625-490b-9d70-2afe1d152dd7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2088,16 +2145,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11967" ], "x-ms-request-id": [ - "ee2200ff-f89d-4add-9913-d0aa8a4aaf8e" + "31d9d57c-392c-479c-ac55-ac7adbe61404" ], "x-ms-correlation-request-id": [ - "ee2200ff-f89d-4add-9913-d0aa8a4aaf8e" + "31d9d57c-392c-479c-ac55-ac7adbe61404" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T211259Z:ee2200ff-f89d-4add-9913-d0aa8a4aaf8e" + "WESTUS2:20200730T222341Z:31d9d57c-392c-479c-ac55-ac7adbe61404" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2106,10 +2163,10 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:12:59 GMT" + "Thu, 30 Jul 2020 22:23:40 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2118,23 +2175,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438\",\r\n \"name\": \"ps8438\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6077\",\r\n \"etag\": \"AAAAAA46L58=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps8438.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8438\",\r\n \"endpoint\": \"sb://iothub-ns-ps8438-3547119-ca76524011.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915\",\r\n \"name\": \"ps915\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3264\",\r\n \"etag\": \"AAAAAJ6zJ98=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps915.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps915\",\r\n \"endpoint\": \"sb://iothub-ns-ps915-3950153-a37a100cd6.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0Mzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "26984b4a-3005-4d2d-892b-1f3c172f968f" + "974dde3d-c6ff-4514-87d8-cdf659d65dec" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2151,16 +2208,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11966" ], "x-ms-request-id": [ - "fa0f8274-8163-4fd4-b8b2-d0d867a6be97" + "1ad9f863-f3c9-480d-968a-8cedeace92fb" ], "x-ms-correlation-request-id": [ - "fa0f8274-8163-4fd4-b8b2-d0d867a6be97" + "1ad9f863-f3c9-480d-968a-8cedeace92fb" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T211301Z:fa0f8274-8163-4fd4-b8b2-d0d867a6be97" + "WESTUS2:20200730T222357Z:1ad9f863-f3c9-480d-968a-8cedeace92fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2169,10 +2226,10 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:13:00 GMT" + "Thu, 30 Jul 2020 22:23:56 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2181,23 +2238,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438\",\r\n \"name\": \"ps8438\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6077\",\r\n \"etag\": \"AAAAAA46L58=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps8438.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8438\",\r\n \"endpoint\": \"sb://iothub-ns-ps8438-3547119-ca76524011.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915\",\r\n \"name\": \"ps915\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3264\",\r\n \"etag\": \"AAAAAJ6zJ98=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps915.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps915\",\r\n \"endpoint\": \"sb://iothub-ns-ps915-3950153-a37a100cd6.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0Mzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51c91986-9726-4b86-b33a-68256340733e" + "06dc8073-a625-4d79-9cc2-b19fd96ae407" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2214,16 +2271,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11965" ], "x-ms-request-id": [ - "b85145b6-c2da-4a5b-9345-3e7fb144e5b2" + "6dafe73a-1162-4a28-a088-5f74ae7d966e" ], "x-ms-correlation-request-id": [ - "b85145b6-c2da-4a5b-9345-3e7fb144e5b2" + "6dafe73a-1162-4a28-a088-5f74ae7d966e" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T211303Z:b85145b6-c2da-4a5b-9345-3e7fb144e5b2" + "WESTUS2:20200730T222359Z:6dafe73a-1162-4a28-a088-5f74ae7d966e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2232,10 +2289,10 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:13:02 GMT" + "Thu, 30 Jul 2020 22:23:58 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2244,23 +2301,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438\",\r\n \"name\": \"ps8438\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6077\",\r\n \"etag\": \"AAAAAA46L58=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps8438.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8438\",\r\n \"endpoint\": \"sb://iothub-ns-ps8438-3547119-ca76524011.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915\",\r\n \"name\": \"ps915\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3264\",\r\n \"etag\": \"AAAAAJ6zJ98=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps915.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps915\",\r\n \"endpoint\": \"sb://iothub-ns-ps915-3950153-a37a100cd6.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0Mzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fe74e558-05d8-4da9-b68f-2fedd9b172bf" + "557f2eb7-67ce-4825-81f7-f81020164518" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2277,16 +2334,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11964" ], "x-ms-request-id": [ - "5235e02c-60ca-4970-9274-b2e5b6d652ce" + "c1c945f8-380d-4285-836c-028a64f4d26f" ], "x-ms-correlation-request-id": [ - "5235e02c-60ca-4970-9274-b2e5b6d652ce" + "c1c945f8-380d-4285-836c-028a64f4d26f" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T211304Z:5235e02c-60ca-4970-9274-b2e5b6d652ce" + "WESTUS2:20200730T222400Z:c1c945f8-380d-4285-836c-028a64f4d26f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2295,10 +2352,10 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:13:04 GMT" + "Thu, 30 Jul 2020 22:23:59 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2307,23 +2364,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438\",\r\n \"name\": \"ps8438\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6077\",\r\n \"etag\": \"AAAAAA46L58=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps8438.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8438\",\r\n \"endpoint\": \"sb://iothub-ns-ps8438-3547119-ca76524011.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915\",\r\n \"name\": \"ps915\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3264\",\r\n \"etag\": \"AAAAAJ6zJ98=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps915.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps915\",\r\n \"endpoint\": \"sb://iothub-ns-ps915-3950153-a37a100cd6.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0Mzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9878c6c-1646-4e35-b64c-d13506b31ed1" + "2ee3beaa-ac6b-4302-aa10-ea5b79d342cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2340,16 +2397,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11963" ], "x-ms-request-id": [ - "9e0523a5-8f48-4ceb-ac22-3bc0e921744f" + "f723cbdb-379f-43c2-94d2-62f1d6b2c646" ], "x-ms-correlation-request-id": [ - "9e0523a5-8f48-4ceb-ac22-3bc0e921744f" + "f723cbdb-379f-43c2-94d2-62f1d6b2c646" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T211306Z:9e0523a5-8f48-4ceb-ac22-3bc0e921744f" + "WESTUS2:20200730T222401Z:f723cbdb-379f-43c2-94d2-62f1d6b2c646" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2358,10 +2415,10 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:13:05 GMT" + "Thu, 30 Jul 2020 22:24:01 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2370,23 +2427,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438\",\r\n \"name\": \"ps8438\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6077\",\r\n \"etag\": \"AAAAAA46L58=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps8438.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8438\",\r\n \"endpoint\": \"sb://iothub-ns-ps8438-3547119-ca76524011.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915\",\r\n \"name\": \"ps915\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3264\",\r\n \"etag\": \"AAAAAJ6zJ98=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps915.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps915\",\r\n \"endpoint\": \"sb://iothub-ns-ps915-3950153-a37a100cd6.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0Mzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fbf6fd6a-f5ba-4d2f-970c-f9296fcced5e" + "97dfdd15-b901-4fa4-ab80-a825349188e9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2403,16 +2460,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11962" ], "x-ms-request-id": [ - "19bf86df-6dce-4f4c-b371-522fb4949a5d" + "0a428a72-4ed7-41b0-ab28-044203823d18" ], "x-ms-correlation-request-id": [ - "19bf86df-6dce-4f4c-b371-522fb4949a5d" + "0a428a72-4ed7-41b0-ab28-044203823d18" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T211307Z:19bf86df-6dce-4f4c-b371-522fb4949a5d" + "WESTUS2:20200730T222402Z:0a428a72-4ed7-41b0-ab28-044203823d18" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2421,10 +2478,10 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:13:06 GMT" + "Thu, 30 Jul 2020 22:24:02 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2433,23 +2490,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438\",\r\n \"name\": \"ps8438\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6077\",\r\n \"etag\": \"AAAAAA46L58=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps8438.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8438\",\r\n \"endpoint\": \"sb://iothub-ns-ps8438-3547119-ca76524011.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915\",\r\n \"name\": \"ps915\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3264\",\r\n \"etag\": \"AAAAAJ6zJ98=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps915.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps915\",\r\n \"endpoint\": \"sb://iothub-ns-ps915-3950153-a37a100cd6.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0Mzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eaae3b76-b163-4bf1-8b1d-bbe5c46ff639" + "7d584c9f-7460-4fbf-9a26-aa30f0c9577b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2466,16 +2523,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11961" ], "x-ms-request-id": [ - "f4313163-a8a1-4e49-b160-7429f2e56045" + "d86e2e4d-895b-482b-9d19-3408d0b71052" ], "x-ms-correlation-request-id": [ - "f4313163-a8a1-4e49-b160-7429f2e56045" + "d86e2e4d-895b-482b-9d19-3408d0b71052" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T211308Z:f4313163-a8a1-4e49-b160-7429f2e56045" + "WESTUS2:20200730T222404Z:d86e2e4d-895b-482b-9d19-3408d0b71052" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2484,10 +2541,10 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:13:08 GMT" + "Thu, 30 Jul 2020 22:24:03 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2496,23 +2553,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438\",\r\n \"name\": \"ps8438\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6077\",\r\n \"etag\": \"AAAAAA46L58=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps8438.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8438\",\r\n \"endpoint\": \"sb://iothub-ns-ps8438-3547119-ca76524011.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915\",\r\n \"name\": \"ps915\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3264\",\r\n \"etag\": \"AAAAAJ6zJ98=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps915.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps915\",\r\n \"endpoint\": \"sb://iothub-ns-ps915-3950153-a37a100cd6.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0Mzg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "25f926bb-ac70-420c-9803-5555f159b485" + "0ba45a66-9ea6-4005-ac8b-b531cd9826f2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2529,16 +2586,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11960" ], "x-ms-request-id": [ - "1584b67b-5751-4fe4-ab59-90f6a1c36ddf" + "6e928356-8882-4e6a-bcfe-588c5a42c744" ], "x-ms-correlation-request-id": [ - "1584b67b-5751-4fe4-ab59-90f6a1c36ddf" + "6e928356-8882-4e6a-bcfe-588c5a42c744" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T211309Z:1584b67b-5751-4fe4-ab59-90f6a1c36ddf" + "WESTUS2:20200730T222419Z:6e928356-8882-4e6a-bcfe-588c5a42c744" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2547,10 +2604,10 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:13:09 GMT" + "Thu, 30 Jul 2020 22:24:19 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2559,23 +2616,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438\",\r\n \"name\": \"ps8438\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6077\",\r\n \"etag\": \"AAAAAA46L58=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps8438.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps8438\",\r\n \"endpoint\": \"sb://iothub-ns-ps8438-3547119-ca76524011.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915\",\r\n \"name\": \"ps915\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3264\",\r\n \"etag\": \"AAAAAJ6zJ98=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps915.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps915\",\r\n \"endpoint\": \"sb://iothub-ns-ps915-3950153-a37a100cd6.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438/IotHubKeys/iothubowner/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0MzgvSW90SHViS2V5cy9pb3RodWJvd25lci9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915/IotHubKeys/iothubowner/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNS9Jb3RIdWJLZXlzL2lvdGh1Ym93bmVyL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldw==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cb3d28de-15b7-4244-af84-260bd0bc117e" + "330f77bf-3be9-43a0-89ae-7ddf3311713f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2595,13 +2652,13 @@ "1199" ], "x-ms-request-id": [ - "3ea8ed0e-9da2-4196-ae70-8240cbf95cdb" + "6cdabdcd-86fa-488d-9e54-13b119194853" ], "x-ms-correlation-request-id": [ - "3ea8ed0e-9da2-4196-ae70-8240cbf95cdb" + "6cdabdcd-86fa-488d-9e54-13b119194853" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T210904Z:3ea8ed0e-9da2-4196-ae70-8240cbf95cdb" + "WESTUS2:20200730T222250Z:6cdabdcd-86fa-488d-9e54-13b119194853" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2610,7 +2667,7 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:09:03 GMT" + "Thu, 30 Jul 2020 22:22:50 GMT" ], "Content-Length": [ "203" @@ -2622,23 +2679,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"W2aH4PqhIMEJsIl60GUfkbuhlMYGB92O67Oprd78hSA=\",\r\n \"secondaryKey\": \"kxONuyb0ofSao3X8o15J+DZYHsnOoMxpg2+g6M4Vl/U=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n}", + "ResponseBody": "{\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"3d6qL/CnUgx+IW3AL9SuDizrYVKS5meUpPfpLXNfizg=\",\r\n \"secondaryKey\": \"u8p0kqWdpjNcMX9ERGL92Gjf7vzbuoi0aUaIdcdI5oc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0MzgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNS9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6da71a50-da47-4e08-b3cf-71be9ccc963f" + "43bc2559-2977-4423-8e46-14e85ca26625" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2658,13 +2715,13 @@ "1198" ], "x-ms-request-id": [ - "22341485-2468-47fe-be7b-81014d8319ee" + "1ef5141b-ff9f-4fe6-9c34-d0da3b9ac01b" ], "x-ms-correlation-request-id": [ - "22341485-2468-47fe-be7b-81014d8319ee" + "1ef5141b-ff9f-4fe6-9c34-d0da3b9ac01b" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T210904Z:22341485-2468-47fe-be7b-81014d8319ee" + "WESTUS2:20200730T222251Z:1ef5141b-ff9f-4fe6-9c34-d0da3b9ac01b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2673,7 +2730,7 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:09:03 GMT" + "Thu, 30 Jul 2020 22:22:50 GMT" ], "Content-Length": [ "905" @@ -2685,23 +2742,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"W2aH4PqhIMEJsIl60GUfkbuhlMYGB92O67Oprd78hSA=\",\r\n \"secondaryKey\": \"kxONuyb0ofSao3X8o15J+DZYHsnOoMxpg2+g6M4Vl/U=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"mm0qHfDUlx2MLI1N08r/24748H2whYSp7WsQruHfnrw=\",\r\n \"secondaryKey\": \"j2pi9T41ySpC7A+fnCQaVbxfFJm7H6LvmQG05lSA8fs=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"fEdazAnJwP9JIFWgWGVzGi2d0PbqoCZ3TajoKFUNwN8=\",\r\n \"secondaryKey\": \"WcYBdqR+16p96XTPnP7FjQYdtSSozuMhGDJ4Wg3xQ9Q=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"PzQ2UiEfN1RHOt5/FGRWs6IsJGn+Sx5C+FqjrTU2IGg=\",\r\n \"secondaryKey\": \"7P/7Pyk4b1VkNCUoEtrI3IPCNrIieVMZmrRlifjKhl8=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"VnYLOcb7K2BZSdZ0GT/sL+bbtn4mgnncivLqNdYban4=\",\r\n \"secondaryKey\": \"ZSjlSgZHocXoC2Y6Z32x6rFngmcXN42iVJcq7PQZJws=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"3d6qL/CnUgx+IW3AL9SuDizrYVKS5meUpPfpLXNfizg=\",\r\n \"secondaryKey\": \"u8p0kqWdpjNcMX9ERGL92Gjf7vzbuoi0aUaIdcdI5oc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"q9GYOcP9TYQyv8eVaAW7Gwrwr9PmrSHZ+qcSi9fRQOs=\",\r\n \"secondaryKey\": \"0cGvR2sbqltu89JQIjq0F0nDlR7zxF4GED3mQy7FwHM=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"NRmsl4wNOI5NWvasPt88CLNyy1tVRQGFYs83d2qLVq4=\",\r\n \"secondaryKey\": \"/O+rje7zWRNhr8doFyrZUHP7FXEEoAz7zElh/EyRUGs=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"i5qz0IwBxf8P5ATQX5murSw8hn94mkEBd0MHh6KsZQ4=\",\r\n \"secondaryKey\": \"Bb7v9SqvIpvEJ/FhD7g1iSlpTpBwqvKtClH3Sa3RhZQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"33qfxgv9A3sf9G+7cxCQ5tF4tdY9r2aN8/pKcDrLtvY=\",\r\n \"secondaryKey\": \"jE5IudIK3kozrhlgEM13y8lLhW0Yr0M4op1Z2Zq81nw=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0MzgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNS9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "17130fc6-bfdd-4910-8129-feacab6e5b3c" + "37f0fdfd-e0e4-4204-bd47-e3127c45e802" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2721,13 +2778,13 @@ "1197" ], "x-ms-request-id": [ - "fe2af98f-a336-4ffe-a6a6-e9a32af1bb39" + "d7d078d9-66e1-4e63-b25f-568ff4ea9d52" ], "x-ms-correlation-request-id": [ - "fe2af98f-a336-4ffe-a6a6-e9a32af1bb39" + "d7d078d9-66e1-4e63-b25f-568ff4ea9d52" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T210906Z:fe2af98f-a336-4ffe-a6a6-e9a32af1bb39" + "WESTUS2:20200730T222252Z:d7d078d9-66e1-4e63-b25f-568ff4ea9d52" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2736,7 +2793,7 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:09:06 GMT" + "Thu, 30 Jul 2020 22:22:52 GMT" ], "Content-Length": [ "905" @@ -2748,23 +2805,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"W2aH4PqhIMEJsIl60GUfkbuhlMYGB92O67Oprd78hSA=\",\r\n \"secondaryKey\": \"kxONuyb0ofSao3X8o15J+DZYHsnOoMxpg2+g6M4Vl/U=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"mm0qHfDUlx2MLI1N08r/24748H2whYSp7WsQruHfnrw=\",\r\n \"secondaryKey\": \"j2pi9T41ySpC7A+fnCQaVbxfFJm7H6LvmQG05lSA8fs=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"fEdazAnJwP9JIFWgWGVzGi2d0PbqoCZ3TajoKFUNwN8=\",\r\n \"secondaryKey\": \"WcYBdqR+16p96XTPnP7FjQYdtSSozuMhGDJ4Wg3xQ9Q=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"PzQ2UiEfN1RHOt5/FGRWs6IsJGn+Sx5C+FqjrTU2IGg=\",\r\n \"secondaryKey\": \"7P/7Pyk4b1VkNCUoEtrI3IPCNrIieVMZmrRlifjKhl8=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"VnYLOcb7K2BZSdZ0GT/sL+bbtn4mgnncivLqNdYban4=\",\r\n \"secondaryKey\": \"ZSjlSgZHocXoC2Y6Z32x6rFngmcXN42iVJcq7PQZJws=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"3d6qL/CnUgx+IW3AL9SuDizrYVKS5meUpPfpLXNfizg=\",\r\n \"secondaryKey\": \"u8p0kqWdpjNcMX9ERGL92Gjf7vzbuoi0aUaIdcdI5oc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"q9GYOcP9TYQyv8eVaAW7Gwrwr9PmrSHZ+qcSi9fRQOs=\",\r\n \"secondaryKey\": \"0cGvR2sbqltu89JQIjq0F0nDlR7zxF4GED3mQy7FwHM=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"NRmsl4wNOI5NWvasPt88CLNyy1tVRQGFYs83d2qLVq4=\",\r\n \"secondaryKey\": \"/O+rje7zWRNhr8doFyrZUHP7FXEEoAz7zElh/EyRUGs=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"i5qz0IwBxf8P5ATQX5murSw8hn94mkEBd0MHh6KsZQ4=\",\r\n \"secondaryKey\": \"Bb7v9SqvIpvEJ/FhD7g1iSlpTpBwqvKtClH3Sa3RhZQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"33qfxgv9A3sf9G+7cxCQ5tF4tdY9r2aN8/pKcDrLtvY=\",\r\n \"secondaryKey\": \"jE5IudIK3kozrhlgEM13y8lLhW0Yr0M4op1Z2Zq81nw=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0MzgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNS9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cc702d2b-5936-4f1c-92a3-2d5003f29d75" + "8e28bd8e-dea1-4251-bf0f-f1ed9d35e276" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2784,13 +2841,13 @@ "1196" ], "x-ms-request-id": [ - "6fa63636-db5a-4038-abc0-531b3104ac22" + "3f190cbf-8cfb-4409-ac9b-8137b185f705" ], "x-ms-correlation-request-id": [ - "6fa63636-db5a-4038-abc0-531b3104ac22" + "3f190cbf-8cfb-4409-ac9b-8137b185f705" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T210907Z:6fa63636-db5a-4038-abc0-531b3104ac22" + "WESTUS2:20200730T222253Z:3f190cbf-8cfb-4409-ac9b-8137b185f705" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2799,7 +2856,7 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:09:07 GMT" + "Thu, 30 Jul 2020 22:22:53 GMT" ], "Content-Length": [ "905" @@ -2811,23 +2868,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"W2aH4PqhIMEJsIl60GUfkbuhlMYGB92O67Oprd78hSA=\",\r\n \"secondaryKey\": \"kxONuyb0ofSao3X8o15J+DZYHsnOoMxpg2+g6M4Vl/U=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"mm0qHfDUlx2MLI1N08r/24748H2whYSp7WsQruHfnrw=\",\r\n \"secondaryKey\": \"j2pi9T41ySpC7A+fnCQaVbxfFJm7H6LvmQG05lSA8fs=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"fEdazAnJwP9JIFWgWGVzGi2d0PbqoCZ3TajoKFUNwN8=\",\r\n \"secondaryKey\": \"WcYBdqR+16p96XTPnP7FjQYdtSSozuMhGDJ4Wg3xQ9Q=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"PzQ2UiEfN1RHOt5/FGRWs6IsJGn+Sx5C+FqjrTU2IGg=\",\r\n \"secondaryKey\": \"7P/7Pyk4b1VkNCUoEtrI3IPCNrIieVMZmrRlifjKhl8=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"VnYLOcb7K2BZSdZ0GT/sL+bbtn4mgnncivLqNdYban4=\",\r\n \"secondaryKey\": \"ZSjlSgZHocXoC2Y6Z32x6rFngmcXN42iVJcq7PQZJws=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"3d6qL/CnUgx+IW3AL9SuDizrYVKS5meUpPfpLXNfizg=\",\r\n \"secondaryKey\": \"u8p0kqWdpjNcMX9ERGL92Gjf7vzbuoi0aUaIdcdI5oc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"q9GYOcP9TYQyv8eVaAW7Gwrwr9PmrSHZ+qcSi9fRQOs=\",\r\n \"secondaryKey\": \"0cGvR2sbqltu89JQIjq0F0nDlR7zxF4GED3mQy7FwHM=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"NRmsl4wNOI5NWvasPt88CLNyy1tVRQGFYs83d2qLVq4=\",\r\n \"secondaryKey\": \"/O+rje7zWRNhr8doFyrZUHP7FXEEoAz7zElh/EyRUGs=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"i5qz0IwBxf8P5ATQX5murSw8hn94mkEBd0MHh6KsZQ4=\",\r\n \"secondaryKey\": \"Bb7v9SqvIpvEJ/FhD7g1iSlpTpBwqvKtClH3Sa3RhZQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"33qfxgv9A3sf9G+7cxCQ5tF4tdY9r2aN8/pKcDrLtvY=\",\r\n \"secondaryKey\": \"jE5IudIK3kozrhlgEM13y8lLhW0Yr0M4op1Z2Zq81nw=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0MzgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNS9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3a37e7c4-2598-4ca8-8a30-dfb7a1563bce" + "11339139-77a7-4ff2-8015-ef1f73ecfa48" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2847,13 +2904,13 @@ "1195" ], "x-ms-request-id": [ - "92e72cb6-c28e-4e3f-9ceb-adb21e99c5a3" + "ec3cde23-cf5f-419e-ae39-310617b1c3fb" ], "x-ms-correlation-request-id": [ - "92e72cb6-c28e-4e3f-9ceb-adb21e99c5a3" + "ec3cde23-cf5f-419e-ae39-310617b1c3fb" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T210944Z:92e72cb6-c28e-4e3f-9ceb-adb21e99c5a3" + "WESTUS2:20200730T222255Z:ec3cde23-cf5f-419e-ae39-310617b1c3fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2862,7 +2919,7 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:09:43 GMT" + "Thu, 30 Jul 2020 22:22:55 GMT" ], "Content-Length": [ "905" @@ -2874,23 +2931,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"W2aH4PqhIMEJsIl60GUfkbuhlMYGB92O67Oprd78hSA=\",\r\n \"secondaryKey\": \"kxONuyb0ofSao3X8o15J+DZYHsnOoMxpg2+g6M4Vl/U=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"mm0qHfDUlx2MLI1N08r/24748H2whYSp7WsQruHfnrw=\",\r\n \"secondaryKey\": \"j2pi9T41ySpC7A+fnCQaVbxfFJm7H6LvmQG05lSA8fs=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"fEdazAnJwP9JIFWgWGVzGi2d0PbqoCZ3TajoKFUNwN8=\",\r\n \"secondaryKey\": \"WcYBdqR+16p96XTPnP7FjQYdtSSozuMhGDJ4Wg3xQ9Q=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"PzQ2UiEfN1RHOt5/FGRWs6IsJGn+Sx5C+FqjrTU2IGg=\",\r\n \"secondaryKey\": \"7P/7Pyk4b1VkNCUoEtrI3IPCNrIieVMZmrRlifjKhl8=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"VnYLOcb7K2BZSdZ0GT/sL+bbtn4mgnncivLqNdYban4=\",\r\n \"secondaryKey\": \"ZSjlSgZHocXoC2Y6Z32x6rFngmcXN42iVJcq7PQZJws=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"3d6qL/CnUgx+IW3AL9SuDizrYVKS5meUpPfpLXNfizg=\",\r\n \"secondaryKey\": \"u8p0kqWdpjNcMX9ERGL92Gjf7vzbuoi0aUaIdcdI5oc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"q9GYOcP9TYQyv8eVaAW7Gwrwr9PmrSHZ+qcSi9fRQOs=\",\r\n \"secondaryKey\": \"0cGvR2sbqltu89JQIjq0F0nDlR7zxF4GED3mQy7FwHM=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"NRmsl4wNOI5NWvasPt88CLNyy1tVRQGFYs83d2qLVq4=\",\r\n \"secondaryKey\": \"/O+rje7zWRNhr8doFyrZUHP7FXEEoAz7zElh/EyRUGs=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"i5qz0IwBxf8P5ATQX5murSw8hn94mkEBd0MHh6KsZQ4=\",\r\n \"secondaryKey\": \"Bb7v9SqvIpvEJ/FhD7g1iSlpTpBwqvKtClH3Sa3RhZQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"33qfxgv9A3sf9G+7cxCQ5tF4tdY9r2aN8/pKcDrLtvY=\",\r\n \"secondaryKey\": \"jE5IudIK3kozrhlgEM13y8lLhW0Yr0M4op1Z2Zq81nw=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0MzgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNS9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "245a7b61-9629-4378-8d56-5f7c58332aae" + "f207c7e2-584d-4d29-a09f-c477e8298ae2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2910,13 +2967,13 @@ "1194" ], "x-ms-request-id": [ - "2ba55aba-5083-4309-a98f-8734ae627eda" + "8879f03e-8df8-46c4-a3da-965f9e661a62" ], "x-ms-correlation-request-id": [ - "2ba55aba-5083-4309-a98f-8734ae627eda" + "8879f03e-8df8-46c4-a3da-965f9e661a62" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T210945Z:2ba55aba-5083-4309-a98f-8734ae627eda" + "WESTUS2:20200730T222256Z:8879f03e-8df8-46c4-a3da-965f9e661a62" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2925,7 +2982,7 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:09:44 GMT" + "Thu, 30 Jul 2020 22:22:56 GMT" ], "Content-Length": [ "905" @@ -2937,23 +2994,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"W2aH4PqhIMEJsIl60GUfkbuhlMYGB92O67Oprd78hSA=\",\r\n \"secondaryKey\": \"kxONuyb0ofSao3X8o15J+DZYHsnOoMxpg2+g6M4Vl/U=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"mm0qHfDUlx2MLI1N08r/24748H2whYSp7WsQruHfnrw=\",\r\n \"secondaryKey\": \"j2pi9T41ySpC7A+fnCQaVbxfFJm7H6LvmQG05lSA8fs=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"fEdazAnJwP9JIFWgWGVzGi2d0PbqoCZ3TajoKFUNwN8=\",\r\n \"secondaryKey\": \"WcYBdqR+16p96XTPnP7FjQYdtSSozuMhGDJ4Wg3xQ9Q=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"PzQ2UiEfN1RHOt5/FGRWs6IsJGn+Sx5C+FqjrTU2IGg=\",\r\n \"secondaryKey\": \"7P/7Pyk4b1VkNCUoEtrI3IPCNrIieVMZmrRlifjKhl8=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"VnYLOcb7K2BZSdZ0GT/sL+bbtn4mgnncivLqNdYban4=\",\r\n \"secondaryKey\": \"ZSjlSgZHocXoC2Y6Z32x6rFngmcXN42iVJcq7PQZJws=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"3d6qL/CnUgx+IW3AL9SuDizrYVKS5meUpPfpLXNfizg=\",\r\n \"secondaryKey\": \"u8p0kqWdpjNcMX9ERGL92Gjf7vzbuoi0aUaIdcdI5oc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"q9GYOcP9TYQyv8eVaAW7Gwrwr9PmrSHZ+qcSi9fRQOs=\",\r\n \"secondaryKey\": \"0cGvR2sbqltu89JQIjq0F0nDlR7zxF4GED3mQy7FwHM=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"NRmsl4wNOI5NWvasPt88CLNyy1tVRQGFYs83d2qLVq4=\",\r\n \"secondaryKey\": \"/O+rje7zWRNhr8doFyrZUHP7FXEEoAz7zElh/EyRUGs=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"i5qz0IwBxf8P5ATQX5murSw8hn94mkEBd0MHh6KsZQ4=\",\r\n \"secondaryKey\": \"Bb7v9SqvIpvEJ/FhD7g1iSlpTpBwqvKtClH3Sa3RhZQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"33qfxgv9A3sf9G+7cxCQ5tF4tdY9r2aN8/pKcDrLtvY=\",\r\n \"secondaryKey\": \"jE5IudIK3kozrhlgEM13y8lLhW0Yr0M4op1Z2Zq81nw=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0MzgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNS9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b126a02e-2a17-4a4c-a658-d8dd6c393973" + "b695a992-8b4e-40a7-a532-e9b59bba1899" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2973,13 +3030,13 @@ "1193" ], "x-ms-request-id": [ - "13d76771-073a-4735-a60c-846bd3b6bb4d" + "0f7e27a2-01d4-4e0f-9e3a-208c4fa9317b" ], "x-ms-correlation-request-id": [ - "13d76771-073a-4735-a60c-846bd3b6bb4d" + "0f7e27a2-01d4-4e0f-9e3a-208c4fa9317b" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T210946Z:13d76771-073a-4735-a60c-846bd3b6bb4d" + "WESTUS2:20200730T222257Z:0f7e27a2-01d4-4e0f-9e3a-208c4fa9317b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2988,7 +3045,7 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:09:45 GMT" + "Thu, 30 Jul 2020 22:22:57 GMT" ], "Content-Length": [ "905" @@ -3000,23 +3057,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"W2aH4PqhIMEJsIl60GUfkbuhlMYGB92O67Oprd78hSA=\",\r\n \"secondaryKey\": \"kxONuyb0ofSao3X8o15J+DZYHsnOoMxpg2+g6M4Vl/U=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"mm0qHfDUlx2MLI1N08r/24748H2whYSp7WsQruHfnrw=\",\r\n \"secondaryKey\": \"j2pi9T41ySpC7A+fnCQaVbxfFJm7H6LvmQG05lSA8fs=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"fEdazAnJwP9JIFWgWGVzGi2d0PbqoCZ3TajoKFUNwN8=\",\r\n \"secondaryKey\": \"WcYBdqR+16p96XTPnP7FjQYdtSSozuMhGDJ4Wg3xQ9Q=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"PzQ2UiEfN1RHOt5/FGRWs6IsJGn+Sx5C+FqjrTU2IGg=\",\r\n \"secondaryKey\": \"7P/7Pyk4b1VkNCUoEtrI3IPCNrIieVMZmrRlifjKhl8=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"VnYLOcb7K2BZSdZ0GT/sL+bbtn4mgnncivLqNdYban4=\",\r\n \"secondaryKey\": \"ZSjlSgZHocXoC2Y6Z32x6rFngmcXN42iVJcq7PQZJws=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"3d6qL/CnUgx+IW3AL9SuDizrYVKS5meUpPfpLXNfizg=\",\r\n \"secondaryKey\": \"u8p0kqWdpjNcMX9ERGL92Gjf7vzbuoi0aUaIdcdI5oc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"q9GYOcP9TYQyv8eVaAW7Gwrwr9PmrSHZ+qcSi9fRQOs=\",\r\n \"secondaryKey\": \"0cGvR2sbqltu89JQIjq0F0nDlR7zxF4GED3mQy7FwHM=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"NRmsl4wNOI5NWvasPt88CLNyy1tVRQGFYs83d2qLVq4=\",\r\n \"secondaryKey\": \"/O+rje7zWRNhr8doFyrZUHP7FXEEoAz7zElh/EyRUGs=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"i5qz0IwBxf8P5ATQX5murSw8hn94mkEBd0MHh6KsZQ4=\",\r\n \"secondaryKey\": \"Bb7v9SqvIpvEJ/FhD7g1iSlpTpBwqvKtClH3Sa3RhZQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"33qfxgv9A3sf9G+7cxCQ5tF4tdY9r2aN8/pKcDrLtvY=\",\r\n \"secondaryKey\": \"jE5IudIK3kozrhlgEM13y8lLhW0Yr0M4op1Z2Zq81nw=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0MzgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNS9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a125b2a6-ebbe-495d-b7f7-f18ee6d1481a" + "38351ac8-b780-42e3-9c43-df7ca6fcc044" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3036,13 +3093,13 @@ "1192" ], "x-ms-request-id": [ - "5bdd9c98-75ae-499f-bd6e-fa808144c626" + "4c08aa63-17cb-410c-ad70-c8a34785474e" ], "x-ms-correlation-request-id": [ - "5bdd9c98-75ae-499f-bd6e-fa808144c626" + "4c08aa63-17cb-410c-ad70-c8a34785474e" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T210947Z:5bdd9c98-75ae-499f-bd6e-fa808144c626" + "WESTUS2:20200730T222258Z:4c08aa63-17cb-410c-ad70-c8a34785474e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3051,7 +3108,7 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:09:46 GMT" + "Thu, 30 Jul 2020 22:22:58 GMT" ], "Content-Length": [ "905" @@ -3063,23 +3120,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"W2aH4PqhIMEJsIl60GUfkbuhlMYGB92O67Oprd78hSA=\",\r\n \"secondaryKey\": \"kxONuyb0ofSao3X8o15J+DZYHsnOoMxpg2+g6M4Vl/U=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"mm0qHfDUlx2MLI1N08r/24748H2whYSp7WsQruHfnrw=\",\r\n \"secondaryKey\": \"j2pi9T41ySpC7A+fnCQaVbxfFJm7H6LvmQG05lSA8fs=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"fEdazAnJwP9JIFWgWGVzGi2d0PbqoCZ3TajoKFUNwN8=\",\r\n \"secondaryKey\": \"WcYBdqR+16p96XTPnP7FjQYdtSSozuMhGDJ4Wg3xQ9Q=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"PzQ2UiEfN1RHOt5/FGRWs6IsJGn+Sx5C+FqjrTU2IGg=\",\r\n \"secondaryKey\": \"7P/7Pyk4b1VkNCUoEtrI3IPCNrIieVMZmrRlifjKhl8=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"VnYLOcb7K2BZSdZ0GT/sL+bbtn4mgnncivLqNdYban4=\",\r\n \"secondaryKey\": \"ZSjlSgZHocXoC2Y6Z32x6rFngmcXN42iVJcq7PQZJws=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"3d6qL/CnUgx+IW3AL9SuDizrYVKS5meUpPfpLXNfizg=\",\r\n \"secondaryKey\": \"u8p0kqWdpjNcMX9ERGL92Gjf7vzbuoi0aUaIdcdI5oc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"q9GYOcP9TYQyv8eVaAW7Gwrwr9PmrSHZ+qcSi9fRQOs=\",\r\n \"secondaryKey\": \"0cGvR2sbqltu89JQIjq0F0nDlR7zxF4GED3mQy7FwHM=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"NRmsl4wNOI5NWvasPt88CLNyy1tVRQGFYs83d2qLVq4=\",\r\n \"secondaryKey\": \"/O+rje7zWRNhr8doFyrZUHP7FXEEoAz7zElh/EyRUGs=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"i5qz0IwBxf8P5ATQX5murSw8hn94mkEBd0MHh6KsZQ4=\",\r\n \"secondaryKey\": \"Bb7v9SqvIpvEJ/FhD7g1iSlpTpBwqvKtClH3Sa3RhZQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"33qfxgv9A3sf9G+7cxCQ5tF4tdY9r2aN8/pKcDrLtvY=\",\r\n \"secondaryKey\": \"jE5IudIK3kozrhlgEM13y8lLhW0Yr0M4op1Z2Zq81nw=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0MzgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNS9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ca5286b4-9a93-4ea3-85b6-5c6aae604bf3" + "b0fc8aa7-cf5c-4de7-88c0-3279d789ebf1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3099,13 +3156,13 @@ "1191" ], "x-ms-request-id": [ - "f01fa449-c3fd-4e3c-a683-0734d2ae9b89" + "a3dba64e-f286-4fb7-9e64-b77f2c0795fd" ], "x-ms-correlation-request-id": [ - "f01fa449-c3fd-4e3c-a683-0734d2ae9b89" + "a3dba64e-f286-4fb7-9e64-b77f2c0795fd" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T210948Z:f01fa449-c3fd-4e3c-a683-0734d2ae9b89" + "WESTUS2:20200730T222259Z:a3dba64e-f286-4fb7-9e64-b77f2c0795fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3114,7 +3171,7 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:09:47 GMT" + "Thu, 30 Jul 2020 22:22:59 GMT" ], "Content-Length": [ "905" @@ -3126,23 +3183,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"W2aH4PqhIMEJsIl60GUfkbuhlMYGB92O67Oprd78hSA=\",\r\n \"secondaryKey\": \"kxONuyb0ofSao3X8o15J+DZYHsnOoMxpg2+g6M4Vl/U=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"mm0qHfDUlx2MLI1N08r/24748H2whYSp7WsQruHfnrw=\",\r\n \"secondaryKey\": \"j2pi9T41ySpC7A+fnCQaVbxfFJm7H6LvmQG05lSA8fs=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"fEdazAnJwP9JIFWgWGVzGi2d0PbqoCZ3TajoKFUNwN8=\",\r\n \"secondaryKey\": \"WcYBdqR+16p96XTPnP7FjQYdtSSozuMhGDJ4Wg3xQ9Q=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"PzQ2UiEfN1RHOt5/FGRWs6IsJGn+Sx5C+FqjrTU2IGg=\",\r\n \"secondaryKey\": \"7P/7Pyk4b1VkNCUoEtrI3IPCNrIieVMZmrRlifjKhl8=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"VnYLOcb7K2BZSdZ0GT/sL+bbtn4mgnncivLqNdYban4=\",\r\n \"secondaryKey\": \"ZSjlSgZHocXoC2Y6Z32x6rFngmcXN42iVJcq7PQZJws=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"3d6qL/CnUgx+IW3AL9SuDizrYVKS5meUpPfpLXNfizg=\",\r\n \"secondaryKey\": \"u8p0kqWdpjNcMX9ERGL92Gjf7vzbuoi0aUaIdcdI5oc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"q9GYOcP9TYQyv8eVaAW7Gwrwr9PmrSHZ+qcSi9fRQOs=\",\r\n \"secondaryKey\": \"0cGvR2sbqltu89JQIjq0F0nDlR7zxF4GED3mQy7FwHM=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"NRmsl4wNOI5NWvasPt88CLNyy1tVRQGFYs83d2qLVq4=\",\r\n \"secondaryKey\": \"/O+rje7zWRNhr8doFyrZUHP7FXEEoAz7zElh/EyRUGs=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"i5qz0IwBxf8P5ATQX5murSw8hn94mkEBd0MHh6KsZQ4=\",\r\n \"secondaryKey\": \"Bb7v9SqvIpvEJ/FhD7g1iSlpTpBwqvKtClH3Sa3RhZQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"33qfxgv9A3sf9G+7cxCQ5tF4tdY9r2aN8/pKcDrLtvY=\",\r\n \"secondaryKey\": \"jE5IudIK3kozrhlgEM13y8lLhW0Yr0M4op1Z2Zq81nw=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0MzgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNS9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b3f102ea-965c-4d33-bd8d-01f9e9ef02f0" + "0da260b1-d50b-4a9c-98d8-c8ee31fd3eed" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3162,13 +3219,13 @@ "1190" ], "x-ms-request-id": [ - "4d1ac238-5e9a-4dda-8a33-edee585aa632" + "563567d8-a3d7-4dda-a970-d9b1a343026d" ], "x-ms-correlation-request-id": [ - "4d1ac238-5e9a-4dda-8a33-edee585aa632" + "563567d8-a3d7-4dda-a970-d9b1a343026d" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T211007Z:4d1ac238-5e9a-4dda-8a33-edee585aa632" + "WESTUS2:20200730T222300Z:563567d8-a3d7-4dda-a970-d9b1a343026d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3177,7 +3234,7 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:10:06 GMT" + "Thu, 30 Jul 2020 22:22:59 GMT" ], "Content-Length": [ "905" @@ -3189,23 +3246,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"W2aH4PqhIMEJsIl60GUfkbuhlMYGB92O67Oprd78hSA=\",\r\n \"secondaryKey\": \"kxONuyb0ofSao3X8o15J+DZYHsnOoMxpg2+g6M4Vl/U=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"mm0qHfDUlx2MLI1N08r/24748H2whYSp7WsQruHfnrw=\",\r\n \"secondaryKey\": \"j2pi9T41ySpC7A+fnCQaVbxfFJm7H6LvmQG05lSA8fs=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"fEdazAnJwP9JIFWgWGVzGi2d0PbqoCZ3TajoKFUNwN8=\",\r\n \"secondaryKey\": \"WcYBdqR+16p96XTPnP7FjQYdtSSozuMhGDJ4Wg3xQ9Q=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"PzQ2UiEfN1RHOt5/FGRWs6IsJGn+Sx5C+FqjrTU2IGg=\",\r\n \"secondaryKey\": \"7P/7Pyk4b1VkNCUoEtrI3IPCNrIieVMZmrRlifjKhl8=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"VnYLOcb7K2BZSdZ0GT/sL+bbtn4mgnncivLqNdYban4=\",\r\n \"secondaryKey\": \"ZSjlSgZHocXoC2Y6Z32x6rFngmcXN42iVJcq7PQZJws=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"3d6qL/CnUgx+IW3AL9SuDizrYVKS5meUpPfpLXNfizg=\",\r\n \"secondaryKey\": \"u8p0kqWdpjNcMX9ERGL92Gjf7vzbuoi0aUaIdcdI5oc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"q9GYOcP9TYQyv8eVaAW7Gwrwr9PmrSHZ+qcSi9fRQOs=\",\r\n \"secondaryKey\": \"0cGvR2sbqltu89JQIjq0F0nDlR7zxF4GED3mQy7FwHM=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"NRmsl4wNOI5NWvasPt88CLNyy1tVRQGFYs83d2qLVq4=\",\r\n \"secondaryKey\": \"/O+rje7zWRNhr8doFyrZUHP7FXEEoAz7zElh/EyRUGs=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"i5qz0IwBxf8P5ATQX5murSw8hn94mkEBd0MHh6KsZQ4=\",\r\n \"secondaryKey\": \"Bb7v9SqvIpvEJ/FhD7g1iSlpTpBwqvKtClH3Sa3RhZQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"33qfxgv9A3sf9G+7cxCQ5tF4tdY9r2aN8/pKcDrLtvY=\",\r\n \"secondaryKey\": \"jE5IudIK3kozrhlgEM13y8lLhW0Yr0M4op1Z2Zq81nw=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0MzgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNS9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "55bc6428-80c4-4a5a-b3e9-ca322a98b72a" + "72d11dd4-3485-4951-95a8-e774964e07fe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3225,13 +3282,13 @@ "1189" ], "x-ms-request-id": [ - "078c6c8e-58f0-4ab6-9880-9a2dc39d721c" + "dde3084e-d442-4a79-9617-f463be117abd" ], "x-ms-correlation-request-id": [ - "078c6c8e-58f0-4ab6-9880-9a2dc39d721c" + "dde3084e-d442-4a79-9617-f463be117abd" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T211010Z:078c6c8e-58f0-4ab6-9880-9a2dc39d721c" + "WESTUS2:20200730T222316Z:dde3084e-d442-4a79-9617-f463be117abd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3240,7 +3297,7 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:10:10 GMT" + "Thu, 30 Jul 2020 22:23:16 GMT" ], "Content-Length": [ "905" @@ -3252,23 +3309,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"W2aH4PqhIMEJsIl60GUfkbuhlMYGB92O67Oprd78hSA=\",\r\n \"secondaryKey\": \"kxONuyb0ofSao3X8o15J+DZYHsnOoMxpg2+g6M4Vl/U=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"mm0qHfDUlx2MLI1N08r/24748H2whYSp7WsQruHfnrw=\",\r\n \"secondaryKey\": \"j2pi9T41ySpC7A+fnCQaVbxfFJm7H6LvmQG05lSA8fs=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"fEdazAnJwP9JIFWgWGVzGi2d0PbqoCZ3TajoKFUNwN8=\",\r\n \"secondaryKey\": \"WcYBdqR+16p96XTPnP7FjQYdtSSozuMhGDJ4Wg3xQ9Q=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"PzQ2UiEfN1RHOt5/FGRWs6IsJGn+Sx5C+FqjrTU2IGg=\",\r\n \"secondaryKey\": \"7P/7Pyk4b1VkNCUoEtrI3IPCNrIieVMZmrRlifjKhl8=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"VnYLOcb7K2BZSdZ0GT/sL+bbtn4mgnncivLqNdYban4=\",\r\n \"secondaryKey\": \"ZSjlSgZHocXoC2Y6Z32x6rFngmcXN42iVJcq7PQZJws=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"3d6qL/CnUgx+IW3AL9SuDizrYVKS5meUpPfpLXNfizg=\",\r\n \"secondaryKey\": \"u8p0kqWdpjNcMX9ERGL92Gjf7vzbuoi0aUaIdcdI5oc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"q9GYOcP9TYQyv8eVaAW7Gwrwr9PmrSHZ+qcSi9fRQOs=\",\r\n \"secondaryKey\": \"0cGvR2sbqltu89JQIjq0F0nDlR7zxF4GED3mQy7FwHM=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"NRmsl4wNOI5NWvasPt88CLNyy1tVRQGFYs83d2qLVq4=\",\r\n \"secondaryKey\": \"/O+rje7zWRNhr8doFyrZUHP7FXEEoAz7zElh/EyRUGs=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"i5qz0IwBxf8P5ATQX5murSw8hn94mkEBd0MHh6KsZQ4=\",\r\n \"secondaryKey\": \"Bb7v9SqvIpvEJ/FhD7g1iSlpTpBwqvKtClH3Sa3RhZQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"33qfxgv9A3sf9G+7cxCQ5tF4tdY9r2aN8/pKcDrLtvY=\",\r\n \"secondaryKey\": \"jE5IudIK3kozrhlgEM13y8lLhW0Yr0M4op1Z2Zq81nw=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0MzgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNS9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7ebdddc7-7992-4d1c-939c-8fb85d04efdf" + "27a9ce88-1f31-4c3d-b745-ba5c967e1778" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3288,13 +3345,13 @@ "1188" ], "x-ms-request-id": [ - "d4847da2-98f8-4e40-b784-889e486f19cf" + "c1db5434-262b-4d51-8667-3f8874d05934" ], "x-ms-correlation-request-id": [ - "d4847da2-98f8-4e40-b784-889e486f19cf" + "c1db5434-262b-4d51-8667-3f8874d05934" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T211012Z:d4847da2-98f8-4e40-b784-889e486f19cf" + "WESTUS2:20200730T222317Z:c1db5434-262b-4d51-8667-3f8874d05934" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3303,7 +3360,7 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:10:11 GMT" + "Thu, 30 Jul 2020 22:23:17 GMT" ], "Content-Length": [ "905" @@ -3315,23 +3372,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"W2aH4PqhIMEJsIl60GUfkbuhlMYGB92O67Oprd78hSA=\",\r\n \"secondaryKey\": \"kxONuyb0ofSao3X8o15J+DZYHsnOoMxpg2+g6M4Vl/U=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"mm0qHfDUlx2MLI1N08r/24748H2whYSp7WsQruHfnrw=\",\r\n \"secondaryKey\": \"j2pi9T41ySpC7A+fnCQaVbxfFJm7H6LvmQG05lSA8fs=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"fEdazAnJwP9JIFWgWGVzGi2d0PbqoCZ3TajoKFUNwN8=\",\r\n \"secondaryKey\": \"WcYBdqR+16p96XTPnP7FjQYdtSSozuMhGDJ4Wg3xQ9Q=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"PzQ2UiEfN1RHOt5/FGRWs6IsJGn+Sx5C+FqjrTU2IGg=\",\r\n \"secondaryKey\": \"7P/7Pyk4b1VkNCUoEtrI3IPCNrIieVMZmrRlifjKhl8=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"VnYLOcb7K2BZSdZ0GT/sL+bbtn4mgnncivLqNdYban4=\",\r\n \"secondaryKey\": \"ZSjlSgZHocXoC2Y6Z32x6rFngmcXN42iVJcq7PQZJws=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"3d6qL/CnUgx+IW3AL9SuDizrYVKS5meUpPfpLXNfizg=\",\r\n \"secondaryKey\": \"u8p0kqWdpjNcMX9ERGL92Gjf7vzbuoi0aUaIdcdI5oc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"q9GYOcP9TYQyv8eVaAW7Gwrwr9PmrSHZ+qcSi9fRQOs=\",\r\n \"secondaryKey\": \"0cGvR2sbqltu89JQIjq0F0nDlR7zxF4GED3mQy7FwHM=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"NRmsl4wNOI5NWvasPt88CLNyy1tVRQGFYs83d2qLVq4=\",\r\n \"secondaryKey\": \"/O+rje7zWRNhr8doFyrZUHP7FXEEoAz7zElh/EyRUGs=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"i5qz0IwBxf8P5ATQX5murSw8hn94mkEBd0MHh6KsZQ4=\",\r\n \"secondaryKey\": \"Bb7v9SqvIpvEJ/FhD7g1iSlpTpBwqvKtClH3Sa3RhZQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"33qfxgv9A3sf9G+7cxCQ5tF4tdY9r2aN8/pKcDrLtvY=\",\r\n \"secondaryKey\": \"jE5IudIK3kozrhlgEM13y8lLhW0Yr0M4op1Z2Zq81nw=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0MzgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNS9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ba251e4e-dabe-4e57-87f8-858e0b79e0f2" + "8f974e9c-dc46-48af-b0a6-706175ec005a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3351,13 +3408,13 @@ "1187" ], "x-ms-request-id": [ - "1287ab9b-ff57-42c9-b5dc-53b638befcad" + "16c0f3e5-7aa8-49f1-ad60-22d6df456395" ], "x-ms-correlation-request-id": [ - "1287ab9b-ff57-42c9-b5dc-53b638befcad" + "16c0f3e5-7aa8-49f1-ad60-22d6df456395" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T211013Z:1287ab9b-ff57-42c9-b5dc-53b638befcad" + "WESTUS2:20200730T222318Z:16c0f3e5-7aa8-49f1-ad60-22d6df456395" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3366,7 +3423,7 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:10:12 GMT" + "Thu, 30 Jul 2020 22:23:18 GMT" ], "Content-Length": [ "905" @@ -3378,23 +3435,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"W2aH4PqhIMEJsIl60GUfkbuhlMYGB92O67Oprd78hSA=\",\r\n \"secondaryKey\": \"kxONuyb0ofSao3X8o15J+DZYHsnOoMxpg2+g6M4Vl/U=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"mm0qHfDUlx2MLI1N08r/24748H2whYSp7WsQruHfnrw=\",\r\n \"secondaryKey\": \"j2pi9T41ySpC7A+fnCQaVbxfFJm7H6LvmQG05lSA8fs=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"fEdazAnJwP9JIFWgWGVzGi2d0PbqoCZ3TajoKFUNwN8=\",\r\n \"secondaryKey\": \"WcYBdqR+16p96XTPnP7FjQYdtSSozuMhGDJ4Wg3xQ9Q=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"PzQ2UiEfN1RHOt5/FGRWs6IsJGn+Sx5C+FqjrTU2IGg=\",\r\n \"secondaryKey\": \"7P/7Pyk4b1VkNCUoEtrI3IPCNrIieVMZmrRlifjKhl8=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"VnYLOcb7K2BZSdZ0GT/sL+bbtn4mgnncivLqNdYban4=\",\r\n \"secondaryKey\": \"ZSjlSgZHocXoC2Y6Z32x6rFngmcXN42iVJcq7PQZJws=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"3d6qL/CnUgx+IW3AL9SuDizrYVKS5meUpPfpLXNfizg=\",\r\n \"secondaryKey\": \"u8p0kqWdpjNcMX9ERGL92Gjf7vzbuoi0aUaIdcdI5oc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"q9GYOcP9TYQyv8eVaAW7Gwrwr9PmrSHZ+qcSi9fRQOs=\",\r\n \"secondaryKey\": \"0cGvR2sbqltu89JQIjq0F0nDlR7zxF4GED3mQy7FwHM=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"NRmsl4wNOI5NWvasPt88CLNyy1tVRQGFYs83d2qLVq4=\",\r\n \"secondaryKey\": \"/O+rje7zWRNhr8doFyrZUHP7FXEEoAz7zElh/EyRUGs=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"i5qz0IwBxf8P5ATQX5murSw8hn94mkEBd0MHh6KsZQ4=\",\r\n \"secondaryKey\": \"Bb7v9SqvIpvEJ/FhD7g1iSlpTpBwqvKtClH3Sa3RhZQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"33qfxgv9A3sf9G+7cxCQ5tF4tdY9r2aN8/pKcDrLtvY=\",\r\n \"secondaryKey\": \"jE5IudIK3kozrhlgEM13y8lLhW0Yr0M4op1Z2Zq81nw=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0MzgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNS9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bdd7a6ea-fdc5-4f3e-b1ea-cbb848f2431d" + "4f7ece94-02c7-4f5f-a78b-8b9b10414e72" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3414,13 +3471,13 @@ "1186" ], "x-ms-request-id": [ - "2081c7ba-1817-4ab7-af71-d6a9291b4a15" + "84f5a219-85e5-414a-994e-7ca037e72715" ], "x-ms-correlation-request-id": [ - "2081c7ba-1817-4ab7-af71-d6a9291b4a15" + "84f5a219-85e5-414a-994e-7ca037e72715" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T211014Z:2081c7ba-1817-4ab7-af71-d6a9291b4a15" + "WESTUS2:20200730T222319Z:84f5a219-85e5-414a-994e-7ca037e72715" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3429,7 +3486,7 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:10:14 GMT" + "Thu, 30 Jul 2020 22:23:19 GMT" ], "Content-Length": [ "905" @@ -3441,23 +3498,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"W2aH4PqhIMEJsIl60GUfkbuhlMYGB92O67Oprd78hSA=\",\r\n \"secondaryKey\": \"kxONuyb0ofSao3X8o15J+DZYHsnOoMxpg2+g6M4Vl/U=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"mm0qHfDUlx2MLI1N08r/24748H2whYSp7WsQruHfnrw=\",\r\n \"secondaryKey\": \"j2pi9T41ySpC7A+fnCQaVbxfFJm7H6LvmQG05lSA8fs=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"fEdazAnJwP9JIFWgWGVzGi2d0PbqoCZ3TajoKFUNwN8=\",\r\n \"secondaryKey\": \"WcYBdqR+16p96XTPnP7FjQYdtSSozuMhGDJ4Wg3xQ9Q=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"PzQ2UiEfN1RHOt5/FGRWs6IsJGn+Sx5C+FqjrTU2IGg=\",\r\n \"secondaryKey\": \"7P/7Pyk4b1VkNCUoEtrI3IPCNrIieVMZmrRlifjKhl8=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"VnYLOcb7K2BZSdZ0GT/sL+bbtn4mgnncivLqNdYban4=\",\r\n \"secondaryKey\": \"ZSjlSgZHocXoC2Y6Z32x6rFngmcXN42iVJcq7PQZJws=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"3d6qL/CnUgx+IW3AL9SuDizrYVKS5meUpPfpLXNfizg=\",\r\n \"secondaryKey\": \"u8p0kqWdpjNcMX9ERGL92Gjf7vzbuoi0aUaIdcdI5oc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"q9GYOcP9TYQyv8eVaAW7Gwrwr9PmrSHZ+qcSi9fRQOs=\",\r\n \"secondaryKey\": \"0cGvR2sbqltu89JQIjq0F0nDlR7zxF4GED3mQy7FwHM=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"NRmsl4wNOI5NWvasPt88CLNyy1tVRQGFYs83d2qLVq4=\",\r\n \"secondaryKey\": \"/O+rje7zWRNhr8doFyrZUHP7FXEEoAz7zElh/EyRUGs=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"i5qz0IwBxf8P5ATQX5murSw8hn94mkEBd0MHh6KsZQ4=\",\r\n \"secondaryKey\": \"Bb7v9SqvIpvEJ/FhD7g1iSlpTpBwqvKtClH3Sa3RhZQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"33qfxgv9A3sf9G+7cxCQ5tF4tdY9r2aN8/pKcDrLtvY=\",\r\n \"secondaryKey\": \"jE5IudIK3kozrhlgEM13y8lLhW0Yr0M4op1Z2Zq81nw=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0MzgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNS9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6dee936f-4bb5-4016-8d79-3f743478088f" + "f98fbc3b-c76f-4f03-9355-dede571bfb43" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3477,13 +3534,13 @@ "1185" ], "x-ms-request-id": [ - "c2613727-ff6d-4366-ad27-d569998b5050" + "1c231edb-d268-4541-83b4-941f131e2e1d" ], "x-ms-correlation-request-id": [ - "c2613727-ff6d-4366-ad27-d569998b5050" + "1c231edb-d268-4541-83b4-941f131e2e1d" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T211016Z:c2613727-ff6d-4366-ad27-d569998b5050" + "WESTUS2:20200730T222320Z:1c231edb-d268-4541-83b4-941f131e2e1d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3492,7 +3549,7 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:10:15 GMT" + "Thu, 30 Jul 2020 22:23:20 GMT" ], "Content-Length": [ "905" @@ -3504,23 +3561,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"W2aH4PqhIMEJsIl60GUfkbuhlMYGB92O67Oprd78hSA=\",\r\n \"secondaryKey\": \"kxONuyb0ofSao3X8o15J+DZYHsnOoMxpg2+g6M4Vl/U=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"mm0qHfDUlx2MLI1N08r/24748H2whYSp7WsQruHfnrw=\",\r\n \"secondaryKey\": \"j2pi9T41ySpC7A+fnCQaVbxfFJm7H6LvmQG05lSA8fs=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"fEdazAnJwP9JIFWgWGVzGi2d0PbqoCZ3TajoKFUNwN8=\",\r\n \"secondaryKey\": \"WcYBdqR+16p96XTPnP7FjQYdtSSozuMhGDJ4Wg3xQ9Q=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"PzQ2UiEfN1RHOt5/FGRWs6IsJGn+Sx5C+FqjrTU2IGg=\",\r\n \"secondaryKey\": \"7P/7Pyk4b1VkNCUoEtrI3IPCNrIieVMZmrRlifjKhl8=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"VnYLOcb7K2BZSdZ0GT/sL+bbtn4mgnncivLqNdYban4=\",\r\n \"secondaryKey\": \"ZSjlSgZHocXoC2Y6Z32x6rFngmcXN42iVJcq7PQZJws=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"3d6qL/CnUgx+IW3AL9SuDizrYVKS5meUpPfpLXNfizg=\",\r\n \"secondaryKey\": \"u8p0kqWdpjNcMX9ERGL92Gjf7vzbuoi0aUaIdcdI5oc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"q9GYOcP9TYQyv8eVaAW7Gwrwr9PmrSHZ+qcSi9fRQOs=\",\r\n \"secondaryKey\": \"0cGvR2sbqltu89JQIjq0F0nDlR7zxF4GED3mQy7FwHM=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"NRmsl4wNOI5NWvasPt88CLNyy1tVRQGFYs83d2qLVq4=\",\r\n \"secondaryKey\": \"/O+rje7zWRNhr8doFyrZUHP7FXEEoAz7zElh/EyRUGs=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"i5qz0IwBxf8P5ATQX5murSw8hn94mkEBd0MHh6KsZQ4=\",\r\n \"secondaryKey\": \"Bb7v9SqvIpvEJ/FhD7g1iSlpTpBwqvKtClH3Sa3RhZQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"33qfxgv9A3sf9G+7cxCQ5tF4tdY9r2aN8/pKcDrLtvY=\",\r\n \"secondaryKey\": \"jE5IudIK3kozrhlgEM13y8lLhW0Yr0M4op1Z2Zq81nw=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0MzgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNS9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3ce7ce11-ed07-4944-8697-c0d0f8cb6e24" + "09daf9de-5259-48af-a292-5d4e7234643d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3540,13 +3597,13 @@ "1184" ], "x-ms-request-id": [ - "a156fd07-63f0-4d63-a83d-77240610d964" + "1abdd7fb-6fa8-430d-9e21-c40b7e5c4ad6" ], "x-ms-correlation-request-id": [ - "a156fd07-63f0-4d63-a83d-77240610d964" + "1abdd7fb-6fa8-430d-9e21-c40b7e5c4ad6" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T211017Z:a156fd07-63f0-4d63-a83d-77240610d964" + "WESTUS2:20200730T222321Z:1abdd7fb-6fa8-430d-9e21-c40b7e5c4ad6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3555,7 +3612,7 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:10:16 GMT" + "Thu, 30 Jul 2020 22:23:21 GMT" ], "Content-Length": [ "905" @@ -3567,23 +3624,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"W2aH4PqhIMEJsIl60GUfkbuhlMYGB92O67Oprd78hSA=\",\r\n \"secondaryKey\": \"kxONuyb0ofSao3X8o15J+DZYHsnOoMxpg2+g6M4Vl/U=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"mm0qHfDUlx2MLI1N08r/24748H2whYSp7WsQruHfnrw=\",\r\n \"secondaryKey\": \"j2pi9T41ySpC7A+fnCQaVbxfFJm7H6LvmQG05lSA8fs=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"fEdazAnJwP9JIFWgWGVzGi2d0PbqoCZ3TajoKFUNwN8=\",\r\n \"secondaryKey\": \"WcYBdqR+16p96XTPnP7FjQYdtSSozuMhGDJ4Wg3xQ9Q=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"PzQ2UiEfN1RHOt5/FGRWs6IsJGn+Sx5C+FqjrTU2IGg=\",\r\n \"secondaryKey\": \"7P/7Pyk4b1VkNCUoEtrI3IPCNrIieVMZmrRlifjKhl8=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"VnYLOcb7K2BZSdZ0GT/sL+bbtn4mgnncivLqNdYban4=\",\r\n \"secondaryKey\": \"ZSjlSgZHocXoC2Y6Z32x6rFngmcXN42iVJcq7PQZJws=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"3d6qL/CnUgx+IW3AL9SuDizrYVKS5meUpPfpLXNfizg=\",\r\n \"secondaryKey\": \"u8p0kqWdpjNcMX9ERGL92Gjf7vzbuoi0aUaIdcdI5oc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"q9GYOcP9TYQyv8eVaAW7Gwrwr9PmrSHZ+qcSi9fRQOs=\",\r\n \"secondaryKey\": \"0cGvR2sbqltu89JQIjq0F0nDlR7zxF4GED3mQy7FwHM=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"NRmsl4wNOI5NWvasPt88CLNyy1tVRQGFYs83d2qLVq4=\",\r\n \"secondaryKey\": \"/O+rje7zWRNhr8doFyrZUHP7FXEEoAz7zElh/EyRUGs=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"i5qz0IwBxf8P5ATQX5murSw8hn94mkEBd0MHh6KsZQ4=\",\r\n \"secondaryKey\": \"Bb7v9SqvIpvEJ/FhD7g1iSlpTpBwqvKtClH3Sa3RhZQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"33qfxgv9A3sf9G+7cxCQ5tF4tdY9r2aN8/pKcDrLtvY=\",\r\n \"secondaryKey\": \"jE5IudIK3kozrhlgEM13y8lLhW0Yr0M4op1Z2Zq81nw=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0MzgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNS9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2072ae08-344a-4b58-a430-920d7fea7254" + "6df67acb-53b6-4fd4-93f4-7230451135d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3600,16 +3657,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1183" ], "x-ms-request-id": [ - "a98e8cc7-4cad-4be4-a277-fc0d5d543106" + "73858725-00d2-43e9-90d6-d796a1891e81" ], "x-ms-correlation-request-id": [ - "a98e8cc7-4cad-4be4-a277-fc0d5d543106" + "73858725-00d2-43e9-90d6-d796a1891e81" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T211250Z:a98e8cc7-4cad-4be4-a277-fc0d5d543106" + "WESTUS2:20200730T222332Z:73858725-00d2-43e9-90d6-d796a1891e81" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3618,7 +3675,7 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:12:50 GMT" + "Thu, 30 Jul 2020 22:23:32 GMT" ], "Content-Length": [ "905" @@ -3630,23 +3687,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"W2aH4PqhIMEJsIl60GUfkbuhlMYGB92O67Oprd78hSA=\",\r\n \"secondaryKey\": \"kxONuyb0ofSao3X8o15J+DZYHsnOoMxpg2+g6M4Vl/U=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"mm0qHfDUlx2MLI1N08r/24748H2whYSp7WsQruHfnrw=\",\r\n \"secondaryKey\": \"j2pi9T41ySpC7A+fnCQaVbxfFJm7H6LvmQG05lSA8fs=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"fEdazAnJwP9JIFWgWGVzGi2d0PbqoCZ3TajoKFUNwN8=\",\r\n \"secondaryKey\": \"WcYBdqR+16p96XTPnP7FjQYdtSSozuMhGDJ4Wg3xQ9Q=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"PzQ2UiEfN1RHOt5/FGRWs6IsJGn+Sx5C+FqjrTU2IGg=\",\r\n \"secondaryKey\": \"7P/7Pyk4b1VkNCUoEtrI3IPCNrIieVMZmrRlifjKhl8=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"VnYLOcb7K2BZSdZ0GT/sL+bbtn4mgnncivLqNdYban4=\",\r\n \"secondaryKey\": \"ZSjlSgZHocXoC2Y6Z32x6rFngmcXN42iVJcq7PQZJws=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"3d6qL/CnUgx+IW3AL9SuDizrYVKS5meUpPfpLXNfizg=\",\r\n \"secondaryKey\": \"u8p0kqWdpjNcMX9ERGL92Gjf7vzbuoi0aUaIdcdI5oc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"q9GYOcP9TYQyv8eVaAW7Gwrwr9PmrSHZ+qcSi9fRQOs=\",\r\n \"secondaryKey\": \"0cGvR2sbqltu89JQIjq0F0nDlR7zxF4GED3mQy7FwHM=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"NRmsl4wNOI5NWvasPt88CLNyy1tVRQGFYs83d2qLVq4=\",\r\n \"secondaryKey\": \"/O+rje7zWRNhr8doFyrZUHP7FXEEoAz7zElh/EyRUGs=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"i5qz0IwBxf8P5ATQX5murSw8hn94mkEBd0MHh6KsZQ4=\",\r\n \"secondaryKey\": \"Bb7v9SqvIpvEJ/FhD7g1iSlpTpBwqvKtClH3Sa3RhZQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"33qfxgv9A3sf9G+7cxCQ5tF4tdY9r2aN8/pKcDrLtvY=\",\r\n \"secondaryKey\": \"jE5IudIK3kozrhlgEM13y8lLhW0Yr0M4op1Z2Zq81nw=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0MzgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNS9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6f4c2cef-1d5a-40b7-9884-86a35774c925" + "726a8b80-0cce-456e-862a-4c044fcfc83f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3663,16 +3720,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1182" ], "x-ms-request-id": [ - "699d6a0f-310a-478c-9bf2-bd3522b0b13c" + "281eb9db-6009-42d0-9676-188c1746ffa6" ], "x-ms-correlation-request-id": [ - "699d6a0f-310a-478c-9bf2-bd3522b0b13c" + "281eb9db-6009-42d0-9676-188c1746ffa6" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T211252Z:699d6a0f-310a-478c-9bf2-bd3522b0b13c" + "WESTUS2:20200730T222334Z:281eb9db-6009-42d0-9676-188c1746ffa6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3681,7 +3738,7 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:12:51 GMT" + "Thu, 30 Jul 2020 22:23:33 GMT" ], "Content-Length": [ "905" @@ -3693,23 +3750,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"W2aH4PqhIMEJsIl60GUfkbuhlMYGB92O67Oprd78hSA=\",\r\n \"secondaryKey\": \"kxONuyb0ofSao3X8o15J+DZYHsnOoMxpg2+g6M4Vl/U=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"mm0qHfDUlx2MLI1N08r/24748H2whYSp7WsQruHfnrw=\",\r\n \"secondaryKey\": \"j2pi9T41ySpC7A+fnCQaVbxfFJm7H6LvmQG05lSA8fs=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"fEdazAnJwP9JIFWgWGVzGi2d0PbqoCZ3TajoKFUNwN8=\",\r\n \"secondaryKey\": \"WcYBdqR+16p96XTPnP7FjQYdtSSozuMhGDJ4Wg3xQ9Q=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"PzQ2UiEfN1RHOt5/FGRWs6IsJGn+Sx5C+FqjrTU2IGg=\",\r\n \"secondaryKey\": \"7P/7Pyk4b1VkNCUoEtrI3IPCNrIieVMZmrRlifjKhl8=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"VnYLOcb7K2BZSdZ0GT/sL+bbtn4mgnncivLqNdYban4=\",\r\n \"secondaryKey\": \"ZSjlSgZHocXoC2Y6Z32x6rFngmcXN42iVJcq7PQZJws=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"3d6qL/CnUgx+IW3AL9SuDizrYVKS5meUpPfpLXNfizg=\",\r\n \"secondaryKey\": \"u8p0kqWdpjNcMX9ERGL92Gjf7vzbuoi0aUaIdcdI5oc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"q9GYOcP9TYQyv8eVaAW7Gwrwr9PmrSHZ+qcSi9fRQOs=\",\r\n \"secondaryKey\": \"0cGvR2sbqltu89JQIjq0F0nDlR7zxF4GED3mQy7FwHM=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"NRmsl4wNOI5NWvasPt88CLNyy1tVRQGFYs83d2qLVq4=\",\r\n \"secondaryKey\": \"/O+rje7zWRNhr8doFyrZUHP7FXEEoAz7zElh/EyRUGs=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"i5qz0IwBxf8P5ATQX5murSw8hn94mkEBd0MHh6KsZQ4=\",\r\n \"secondaryKey\": \"Bb7v9SqvIpvEJ/FhD7g1iSlpTpBwqvKtClH3Sa3RhZQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"33qfxgv9A3sf9G+7cxCQ5tF4tdY9r2aN8/pKcDrLtvY=\",\r\n \"secondaryKey\": \"jE5IudIK3kozrhlgEM13y8lLhW0Yr0M4op1Z2Zq81nw=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0MzgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNS9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ab0e0f67-60a8-484f-91d7-65b276f10064" + "c756f367-0374-412c-a74e-aaf579532160" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3726,16 +3783,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1181" ], "x-ms-request-id": [ - "966db3fb-ae2d-44de-8d39-7363f689d915" + "ee401b35-4272-4227-9dc9-59b9e821502d" ], "x-ms-correlation-request-id": [ - "966db3fb-ae2d-44de-8d39-7363f689d915" + "ee401b35-4272-4227-9dc9-59b9e821502d" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T211253Z:966db3fb-ae2d-44de-8d39-7363f689d915" + "WESTUS2:20200730T222335Z:ee401b35-4272-4227-9dc9-59b9e821502d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3744,7 +3801,7 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:12:52 GMT" + "Thu, 30 Jul 2020 22:23:34 GMT" ], "Content-Length": [ "905" @@ -3756,23 +3813,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"W2aH4PqhIMEJsIl60GUfkbuhlMYGB92O67Oprd78hSA=\",\r\n \"secondaryKey\": \"kxONuyb0ofSao3X8o15J+DZYHsnOoMxpg2+g6M4Vl/U=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"mm0qHfDUlx2MLI1N08r/24748H2whYSp7WsQruHfnrw=\",\r\n \"secondaryKey\": \"j2pi9T41ySpC7A+fnCQaVbxfFJm7H6LvmQG05lSA8fs=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"fEdazAnJwP9JIFWgWGVzGi2d0PbqoCZ3TajoKFUNwN8=\",\r\n \"secondaryKey\": \"WcYBdqR+16p96XTPnP7FjQYdtSSozuMhGDJ4Wg3xQ9Q=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"PzQ2UiEfN1RHOt5/FGRWs6IsJGn+Sx5C+FqjrTU2IGg=\",\r\n \"secondaryKey\": \"7P/7Pyk4b1VkNCUoEtrI3IPCNrIieVMZmrRlifjKhl8=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"VnYLOcb7K2BZSdZ0GT/sL+bbtn4mgnncivLqNdYban4=\",\r\n \"secondaryKey\": \"ZSjlSgZHocXoC2Y6Z32x6rFngmcXN42iVJcq7PQZJws=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"3d6qL/CnUgx+IW3AL9SuDizrYVKS5meUpPfpLXNfizg=\",\r\n \"secondaryKey\": \"u8p0kqWdpjNcMX9ERGL92Gjf7vzbuoi0aUaIdcdI5oc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"q9GYOcP9TYQyv8eVaAW7Gwrwr9PmrSHZ+qcSi9fRQOs=\",\r\n \"secondaryKey\": \"0cGvR2sbqltu89JQIjq0F0nDlR7zxF4GED3mQy7FwHM=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"NRmsl4wNOI5NWvasPt88CLNyy1tVRQGFYs83d2qLVq4=\",\r\n \"secondaryKey\": \"/O+rje7zWRNhr8doFyrZUHP7FXEEoAz7zElh/EyRUGs=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"i5qz0IwBxf8P5ATQX5murSw8hn94mkEBd0MHh6KsZQ4=\",\r\n \"secondaryKey\": \"Bb7v9SqvIpvEJ/FhD7g1iSlpTpBwqvKtClH3Sa3RhZQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"33qfxgv9A3sf9G+7cxCQ5tF4tdY9r2aN8/pKcDrLtvY=\",\r\n \"secondaryKey\": \"jE5IudIK3kozrhlgEM13y8lLhW0Yr0M4op1Z2Zq81nw=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0MzgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNS9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cc44bf96-be5e-4344-8d2f-cbb81a9af347" + "ebaf8a29-e5c8-4988-b9c6-d43ac3406160" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3789,16 +3846,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1180" ], "x-ms-request-id": [ - "a682c02b-c27b-4914-83a3-dc006c610a97" + "133b4046-ed74-4edd-a204-0f7b0a16eedd" ], "x-ms-correlation-request-id": [ - "a682c02b-c27b-4914-83a3-dc006c610a97" + "133b4046-ed74-4edd-a204-0f7b0a16eedd" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T211254Z:a682c02b-c27b-4914-83a3-dc006c610a97" + "WESTUS2:20200730T222335Z:133b4046-ed74-4edd-a204-0f7b0a16eedd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3807,7 +3864,7 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:12:53 GMT" + "Thu, 30 Jul 2020 22:23:35 GMT" ], "Content-Length": [ "905" @@ -3819,23 +3876,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"W2aH4PqhIMEJsIl60GUfkbuhlMYGB92O67Oprd78hSA=\",\r\n \"secondaryKey\": \"kxONuyb0ofSao3X8o15J+DZYHsnOoMxpg2+g6M4Vl/U=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"mm0qHfDUlx2MLI1N08r/24748H2whYSp7WsQruHfnrw=\",\r\n \"secondaryKey\": \"j2pi9T41ySpC7A+fnCQaVbxfFJm7H6LvmQG05lSA8fs=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"fEdazAnJwP9JIFWgWGVzGi2d0PbqoCZ3TajoKFUNwN8=\",\r\n \"secondaryKey\": \"WcYBdqR+16p96XTPnP7FjQYdtSSozuMhGDJ4Wg3xQ9Q=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"PzQ2UiEfN1RHOt5/FGRWs6IsJGn+Sx5C+FqjrTU2IGg=\",\r\n \"secondaryKey\": \"7P/7Pyk4b1VkNCUoEtrI3IPCNrIieVMZmrRlifjKhl8=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"VnYLOcb7K2BZSdZ0GT/sL+bbtn4mgnncivLqNdYban4=\",\r\n \"secondaryKey\": \"ZSjlSgZHocXoC2Y6Z32x6rFngmcXN42iVJcq7PQZJws=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"3d6qL/CnUgx+IW3AL9SuDizrYVKS5meUpPfpLXNfizg=\",\r\n \"secondaryKey\": \"u8p0kqWdpjNcMX9ERGL92Gjf7vzbuoi0aUaIdcdI5oc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"q9GYOcP9TYQyv8eVaAW7Gwrwr9PmrSHZ+qcSi9fRQOs=\",\r\n \"secondaryKey\": \"0cGvR2sbqltu89JQIjq0F0nDlR7zxF4GED3mQy7FwHM=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"NRmsl4wNOI5NWvasPt88CLNyy1tVRQGFYs83d2qLVq4=\",\r\n \"secondaryKey\": \"/O+rje7zWRNhr8doFyrZUHP7FXEEoAz7zElh/EyRUGs=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"i5qz0IwBxf8P5ATQX5murSw8hn94mkEBd0MHh6KsZQ4=\",\r\n \"secondaryKey\": \"Bb7v9SqvIpvEJ/FhD7g1iSlpTpBwqvKtClH3Sa3RhZQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"33qfxgv9A3sf9G+7cxCQ5tF4tdY9r2aN8/pKcDrLtvY=\",\r\n \"secondaryKey\": \"jE5IudIK3kozrhlgEM13y8lLhW0Yr0M4op1Z2Zq81nw=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0MzgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNS9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e087685b-a1ac-4116-b56d-fa75013bb11a" + "19d16400-db5d-41a4-aa26-ec8d3bdfad0d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3852,16 +3909,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1179" ], "x-ms-request-id": [ - "7e0811b1-e5e8-4c0e-b71b-9cf97acec063" + "0ef2ede6-5e13-4979-964b-e2d4b66883bf" ], "x-ms-correlation-request-id": [ - "7e0811b1-e5e8-4c0e-b71b-9cf97acec063" + "0ef2ede6-5e13-4979-964b-e2d4b66883bf" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T211255Z:7e0811b1-e5e8-4c0e-b71b-9cf97acec063" + "WESTUS2:20200730T222336Z:0ef2ede6-5e13-4979-964b-e2d4b66883bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3870,7 +3927,7 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:12:54 GMT" + "Thu, 30 Jul 2020 22:23:36 GMT" ], "Content-Length": [ "905" @@ -3882,23 +3939,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"W2aH4PqhIMEJsIl60GUfkbuhlMYGB92O67Oprd78hSA=\",\r\n \"secondaryKey\": \"kxONuyb0ofSao3X8o15J+DZYHsnOoMxpg2+g6M4Vl/U=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"mm0qHfDUlx2MLI1N08r/24748H2whYSp7WsQruHfnrw=\",\r\n \"secondaryKey\": \"j2pi9T41ySpC7A+fnCQaVbxfFJm7H6LvmQG05lSA8fs=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"fEdazAnJwP9JIFWgWGVzGi2d0PbqoCZ3TajoKFUNwN8=\",\r\n \"secondaryKey\": \"WcYBdqR+16p96XTPnP7FjQYdtSSozuMhGDJ4Wg3xQ9Q=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"PzQ2UiEfN1RHOt5/FGRWs6IsJGn+Sx5C+FqjrTU2IGg=\",\r\n \"secondaryKey\": \"7P/7Pyk4b1VkNCUoEtrI3IPCNrIieVMZmrRlifjKhl8=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"VnYLOcb7K2BZSdZ0GT/sL+bbtn4mgnncivLqNdYban4=\",\r\n \"secondaryKey\": \"ZSjlSgZHocXoC2Y6Z32x6rFngmcXN42iVJcq7PQZJws=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"3d6qL/CnUgx+IW3AL9SuDizrYVKS5meUpPfpLXNfizg=\",\r\n \"secondaryKey\": \"u8p0kqWdpjNcMX9ERGL92Gjf7vzbuoi0aUaIdcdI5oc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"q9GYOcP9TYQyv8eVaAW7Gwrwr9PmrSHZ+qcSi9fRQOs=\",\r\n \"secondaryKey\": \"0cGvR2sbqltu89JQIjq0F0nDlR7zxF4GED3mQy7FwHM=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"NRmsl4wNOI5NWvasPt88CLNyy1tVRQGFYs83d2qLVq4=\",\r\n \"secondaryKey\": \"/O+rje7zWRNhr8doFyrZUHP7FXEEoAz7zElh/EyRUGs=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"i5qz0IwBxf8P5ATQX5murSw8hn94mkEBd0MHh6KsZQ4=\",\r\n \"secondaryKey\": \"Bb7v9SqvIpvEJ/FhD7g1iSlpTpBwqvKtClH3Sa3RhZQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"33qfxgv9A3sf9G+7cxCQ5tF4tdY9r2aN8/pKcDrLtvY=\",\r\n \"secondaryKey\": \"jE5IudIK3kozrhlgEM13y8lLhW0Yr0M4op1Z2Zq81nw=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0MzgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNS9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6419eb32-3b52-4559-ad66-2c4f7d2485bf" + "4d6e2f6b-1553-4751-8146-e45c9a544f13" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3915,16 +3972,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1178" ], "x-ms-request-id": [ - "f4d527f1-7f9f-40c6-8a52-ffd1703c5c73" + "a9a0d882-bd5e-4afd-8c7b-dc5abeb807b1" ], "x-ms-correlation-request-id": [ - "f4d527f1-7f9f-40c6-8a52-ffd1703c5c73" + "a9a0d882-bd5e-4afd-8c7b-dc5abeb807b1" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T211256Z:f4d527f1-7f9f-40c6-8a52-ffd1703c5c73" + "WESTUS2:20200730T222338Z:a9a0d882-bd5e-4afd-8c7b-dc5abeb807b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3933,7 +3990,7 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:12:56 GMT" + "Thu, 30 Jul 2020 22:23:37 GMT" ], "Content-Length": [ "905" @@ -3945,23 +4002,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"W2aH4PqhIMEJsIl60GUfkbuhlMYGB92O67Oprd78hSA=\",\r\n \"secondaryKey\": \"kxONuyb0ofSao3X8o15J+DZYHsnOoMxpg2+g6M4Vl/U=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"mm0qHfDUlx2MLI1N08r/24748H2whYSp7WsQruHfnrw=\",\r\n \"secondaryKey\": \"j2pi9T41ySpC7A+fnCQaVbxfFJm7H6LvmQG05lSA8fs=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"fEdazAnJwP9JIFWgWGVzGi2d0PbqoCZ3TajoKFUNwN8=\",\r\n \"secondaryKey\": \"WcYBdqR+16p96XTPnP7FjQYdtSSozuMhGDJ4Wg3xQ9Q=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"PzQ2UiEfN1RHOt5/FGRWs6IsJGn+Sx5C+FqjrTU2IGg=\",\r\n \"secondaryKey\": \"7P/7Pyk4b1VkNCUoEtrI3IPCNrIieVMZmrRlifjKhl8=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"VnYLOcb7K2BZSdZ0GT/sL+bbtn4mgnncivLqNdYban4=\",\r\n \"secondaryKey\": \"ZSjlSgZHocXoC2Y6Z32x6rFngmcXN42iVJcq7PQZJws=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"3d6qL/CnUgx+IW3AL9SuDizrYVKS5meUpPfpLXNfizg=\",\r\n \"secondaryKey\": \"u8p0kqWdpjNcMX9ERGL92Gjf7vzbuoi0aUaIdcdI5oc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"q9GYOcP9TYQyv8eVaAW7Gwrwr9PmrSHZ+qcSi9fRQOs=\",\r\n \"secondaryKey\": \"0cGvR2sbqltu89JQIjq0F0nDlR7zxF4GED3mQy7FwHM=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"NRmsl4wNOI5NWvasPt88CLNyy1tVRQGFYs83d2qLVq4=\",\r\n \"secondaryKey\": \"/O+rje7zWRNhr8doFyrZUHP7FXEEoAz7zElh/EyRUGs=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"i5qz0IwBxf8P5ATQX5murSw8hn94mkEBd0MHh6KsZQ4=\",\r\n \"secondaryKey\": \"Bb7v9SqvIpvEJ/FhD7g1iSlpTpBwqvKtClH3Sa3RhZQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"33qfxgv9A3sf9G+7cxCQ5tF4tdY9r2aN8/pKcDrLtvY=\",\r\n \"secondaryKey\": \"jE5IudIK3kozrhlgEM13y8lLhW0Yr0M4op1Z2Zq81nw=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0MzgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNS9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6eb7e096-17e6-4cd4-a4d2-1eb7fb7a7197" + "bfbd4e16-acd7-4f98-97c1-b80de59dfb64" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3978,16 +4035,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1177" ], "x-ms-request-id": [ - "29ea3b76-0b27-4de1-80e4-601cc2e8d349" + "5e3095e2-b4fe-404e-9245-0105eded2030" ], "x-ms-correlation-request-id": [ - "29ea3b76-0b27-4de1-80e4-601cc2e8d349" + "5e3095e2-b4fe-404e-9245-0105eded2030" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T211257Z:29ea3b76-0b27-4de1-80e4-601cc2e8d349" + "WESTUS2:20200730T222339Z:5e3095e2-b4fe-404e-9245-0105eded2030" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3996,7 +4053,7 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:12:57 GMT" + "Thu, 30 Jul 2020 22:23:38 GMT" ], "Content-Length": [ "905" @@ -4008,23 +4065,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"W2aH4PqhIMEJsIl60GUfkbuhlMYGB92O67Oprd78hSA=\",\r\n \"secondaryKey\": \"kxONuyb0ofSao3X8o15J+DZYHsnOoMxpg2+g6M4Vl/U=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"mm0qHfDUlx2MLI1N08r/24748H2whYSp7WsQruHfnrw=\",\r\n \"secondaryKey\": \"j2pi9T41ySpC7A+fnCQaVbxfFJm7H6LvmQG05lSA8fs=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"fEdazAnJwP9JIFWgWGVzGi2d0PbqoCZ3TajoKFUNwN8=\",\r\n \"secondaryKey\": \"WcYBdqR+16p96XTPnP7FjQYdtSSozuMhGDJ4Wg3xQ9Q=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"PzQ2UiEfN1RHOt5/FGRWs6IsJGn+Sx5C+FqjrTU2IGg=\",\r\n \"secondaryKey\": \"7P/7Pyk4b1VkNCUoEtrI3IPCNrIieVMZmrRlifjKhl8=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"VnYLOcb7K2BZSdZ0GT/sL+bbtn4mgnncivLqNdYban4=\",\r\n \"secondaryKey\": \"ZSjlSgZHocXoC2Y6Z32x6rFngmcXN42iVJcq7PQZJws=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"3d6qL/CnUgx+IW3AL9SuDizrYVKS5meUpPfpLXNfizg=\",\r\n \"secondaryKey\": \"u8p0kqWdpjNcMX9ERGL92Gjf7vzbuoi0aUaIdcdI5oc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"q9GYOcP9TYQyv8eVaAW7Gwrwr9PmrSHZ+qcSi9fRQOs=\",\r\n \"secondaryKey\": \"0cGvR2sbqltu89JQIjq0F0nDlR7zxF4GED3mQy7FwHM=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"NRmsl4wNOI5NWvasPt88CLNyy1tVRQGFYs83d2qLVq4=\",\r\n \"secondaryKey\": \"/O+rje7zWRNhr8doFyrZUHP7FXEEoAz7zElh/EyRUGs=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"i5qz0IwBxf8P5ATQX5murSw8hn94mkEBd0MHh6KsZQ4=\",\r\n \"secondaryKey\": \"Bb7v9SqvIpvEJ/FhD7g1iSlpTpBwqvKtClH3Sa3RhZQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"33qfxgv9A3sf9G+7cxCQ5tF4tdY9r2aN8/pKcDrLtvY=\",\r\n \"secondaryKey\": \"jE5IudIK3kozrhlgEM13y8lLhW0Yr0M4op1Z2Zq81nw=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0MzgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNS9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d8d8034-fb60-4a2c-bb55-6dc2d0dc73a8" + "84b6d950-3d8b-4e38-9a91-03a36aa18476" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -4041,16 +4098,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1176" ], "x-ms-request-id": [ - "89da4400-56db-4f68-98a2-faea6d385672" + "bbdf4619-1ce3-47e2-88e4-b7222db3ed03" ], "x-ms-correlation-request-id": [ - "89da4400-56db-4f68-98a2-faea6d385672" + "bbdf4619-1ce3-47e2-88e4-b7222db3ed03" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T211258Z:89da4400-56db-4f68-98a2-faea6d385672" + "WESTUS2:20200730T222340Z:bbdf4619-1ce3-47e2-88e4-b7222db3ed03" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4059,7 +4116,7 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:12:58 GMT" + "Thu, 30 Jul 2020 22:23:39 GMT" ], "Content-Length": [ "905" @@ -4071,23 +4128,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"W2aH4PqhIMEJsIl60GUfkbuhlMYGB92O67Oprd78hSA=\",\r\n \"secondaryKey\": \"kxONuyb0ofSao3X8o15J+DZYHsnOoMxpg2+g6M4Vl/U=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"mm0qHfDUlx2MLI1N08r/24748H2whYSp7WsQruHfnrw=\",\r\n \"secondaryKey\": \"j2pi9T41ySpC7A+fnCQaVbxfFJm7H6LvmQG05lSA8fs=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"fEdazAnJwP9JIFWgWGVzGi2d0PbqoCZ3TajoKFUNwN8=\",\r\n \"secondaryKey\": \"WcYBdqR+16p96XTPnP7FjQYdtSSozuMhGDJ4Wg3xQ9Q=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"PzQ2UiEfN1RHOt5/FGRWs6IsJGn+Sx5C+FqjrTU2IGg=\",\r\n \"secondaryKey\": \"7P/7Pyk4b1VkNCUoEtrI3IPCNrIieVMZmrRlifjKhl8=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"VnYLOcb7K2BZSdZ0GT/sL+bbtn4mgnncivLqNdYban4=\",\r\n \"secondaryKey\": \"ZSjlSgZHocXoC2Y6Z32x6rFngmcXN42iVJcq7PQZJws=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"3d6qL/CnUgx+IW3AL9SuDizrYVKS5meUpPfpLXNfizg=\",\r\n \"secondaryKey\": \"u8p0kqWdpjNcMX9ERGL92Gjf7vzbuoi0aUaIdcdI5oc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"q9GYOcP9TYQyv8eVaAW7Gwrwr9PmrSHZ+qcSi9fRQOs=\",\r\n \"secondaryKey\": \"0cGvR2sbqltu89JQIjq0F0nDlR7zxF4GED3mQy7FwHM=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"NRmsl4wNOI5NWvasPt88CLNyy1tVRQGFYs83d2qLVq4=\",\r\n \"secondaryKey\": \"/O+rje7zWRNhr8doFyrZUHP7FXEEoAz7zElh/EyRUGs=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"i5qz0IwBxf8P5ATQX5murSw8hn94mkEBd0MHh6KsZQ4=\",\r\n \"secondaryKey\": \"Bb7v9SqvIpvEJ/FhD7g1iSlpTpBwqvKtClH3Sa3RhZQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"33qfxgv9A3sf9G+7cxCQ5tF4tdY9r2aN8/pKcDrLtvY=\",\r\n \"secondaryKey\": \"jE5IudIK3kozrhlgEM13y8lLhW0Yr0M4op1Z2Zq81nw=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0MzgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNS9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ea6ee841-e7ea-49f7-b539-1a8fc13d1e9c" + "51b2caf8-49fc-4f1c-a4f0-6af6644563ad" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -4104,16 +4161,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1175" ], "x-ms-request-id": [ - "c89bd951-965d-47a3-86f3-7ed1f6c79f74" + "75f9907b-75e6-4b22-bef7-59a168da81c7" ], "x-ms-correlation-request-id": [ - "c89bd951-965d-47a3-86f3-7ed1f6c79f74" + "75f9907b-75e6-4b22-bef7-59a168da81c7" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T211259Z:c89bd951-965d-47a3-86f3-7ed1f6c79f74" + "WESTUS2:20200730T222341Z:75f9907b-75e6-4b22-bef7-59a168da81c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4122,7 +4179,7 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:12:59 GMT" + "Thu, 30 Jul 2020 22:23:40 GMT" ], "Content-Length": [ "905" @@ -4134,23 +4191,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"W2aH4PqhIMEJsIl60GUfkbuhlMYGB92O67Oprd78hSA=\",\r\n \"secondaryKey\": \"kxONuyb0ofSao3X8o15J+DZYHsnOoMxpg2+g6M4Vl/U=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"mm0qHfDUlx2MLI1N08r/24748H2whYSp7WsQruHfnrw=\",\r\n \"secondaryKey\": \"j2pi9T41ySpC7A+fnCQaVbxfFJm7H6LvmQG05lSA8fs=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"fEdazAnJwP9JIFWgWGVzGi2d0PbqoCZ3TajoKFUNwN8=\",\r\n \"secondaryKey\": \"WcYBdqR+16p96XTPnP7FjQYdtSSozuMhGDJ4Wg3xQ9Q=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"PzQ2UiEfN1RHOt5/FGRWs6IsJGn+Sx5C+FqjrTU2IGg=\",\r\n \"secondaryKey\": \"7P/7Pyk4b1VkNCUoEtrI3IPCNrIieVMZmrRlifjKhl8=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"VnYLOcb7K2BZSdZ0GT/sL+bbtn4mgnncivLqNdYban4=\",\r\n \"secondaryKey\": \"ZSjlSgZHocXoC2Y6Z32x6rFngmcXN42iVJcq7PQZJws=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"3d6qL/CnUgx+IW3AL9SuDizrYVKS5meUpPfpLXNfizg=\",\r\n \"secondaryKey\": \"u8p0kqWdpjNcMX9ERGL92Gjf7vzbuoi0aUaIdcdI5oc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"q9GYOcP9TYQyv8eVaAW7Gwrwr9PmrSHZ+qcSi9fRQOs=\",\r\n \"secondaryKey\": \"0cGvR2sbqltu89JQIjq0F0nDlR7zxF4GED3mQy7FwHM=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"NRmsl4wNOI5NWvasPt88CLNyy1tVRQGFYs83d2qLVq4=\",\r\n \"secondaryKey\": \"/O+rje7zWRNhr8doFyrZUHP7FXEEoAz7zElh/EyRUGs=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"i5qz0IwBxf8P5ATQX5murSw8hn94mkEBd0MHh6KsZQ4=\",\r\n \"secondaryKey\": \"Bb7v9SqvIpvEJ/FhD7g1iSlpTpBwqvKtClH3Sa3RhZQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"33qfxgv9A3sf9G+7cxCQ5tF4tdY9r2aN8/pKcDrLtvY=\",\r\n \"secondaryKey\": \"jE5IudIK3kozrhlgEM13y8lLhW0Yr0M4op1Z2Zq81nw=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0MzgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNS9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "36b23a4f-384b-416c-bb88-4e17888e83fd" + "d6beef6b-2101-49af-b0f5-f91e4622e8a5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -4167,16 +4224,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1174" ], "x-ms-request-id": [ - "6fe923a2-2d21-4189-8552-5f7604fe6b77" + "d857b15b-a813-4481-b734-d60dc9e1d30d" ], "x-ms-correlation-request-id": [ - "6fe923a2-2d21-4189-8552-5f7604fe6b77" + "d857b15b-a813-4481-b734-d60dc9e1d30d" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T211301Z:6fe923a2-2d21-4189-8552-5f7604fe6b77" + "WESTUS2:20200730T222357Z:d857b15b-a813-4481-b734-d60dc9e1d30d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4185,7 +4242,7 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:13:00 GMT" + "Thu, 30 Jul 2020 22:23:56 GMT" ], "Content-Length": [ "905" @@ -4197,23 +4254,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"W2aH4PqhIMEJsIl60GUfkbuhlMYGB92O67Oprd78hSA=\",\r\n \"secondaryKey\": \"kxONuyb0ofSao3X8o15J+DZYHsnOoMxpg2+g6M4Vl/U=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"mm0qHfDUlx2MLI1N08r/24748H2whYSp7WsQruHfnrw=\",\r\n \"secondaryKey\": \"j2pi9T41ySpC7A+fnCQaVbxfFJm7H6LvmQG05lSA8fs=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"fEdazAnJwP9JIFWgWGVzGi2d0PbqoCZ3TajoKFUNwN8=\",\r\n \"secondaryKey\": \"WcYBdqR+16p96XTPnP7FjQYdtSSozuMhGDJ4Wg3xQ9Q=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"PzQ2UiEfN1RHOt5/FGRWs6IsJGn+Sx5C+FqjrTU2IGg=\",\r\n \"secondaryKey\": \"7P/7Pyk4b1VkNCUoEtrI3IPCNrIieVMZmrRlifjKhl8=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"VnYLOcb7K2BZSdZ0GT/sL+bbtn4mgnncivLqNdYban4=\",\r\n \"secondaryKey\": \"ZSjlSgZHocXoC2Y6Z32x6rFngmcXN42iVJcq7PQZJws=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"3d6qL/CnUgx+IW3AL9SuDizrYVKS5meUpPfpLXNfizg=\",\r\n \"secondaryKey\": \"u8p0kqWdpjNcMX9ERGL92Gjf7vzbuoi0aUaIdcdI5oc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"q9GYOcP9TYQyv8eVaAW7Gwrwr9PmrSHZ+qcSi9fRQOs=\",\r\n \"secondaryKey\": \"0cGvR2sbqltu89JQIjq0F0nDlR7zxF4GED3mQy7FwHM=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"NRmsl4wNOI5NWvasPt88CLNyy1tVRQGFYs83d2qLVq4=\",\r\n \"secondaryKey\": \"/O+rje7zWRNhr8doFyrZUHP7FXEEoAz7zElh/EyRUGs=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"i5qz0IwBxf8P5ATQX5murSw8hn94mkEBd0MHh6KsZQ4=\",\r\n \"secondaryKey\": \"Bb7v9SqvIpvEJ/FhD7g1iSlpTpBwqvKtClH3Sa3RhZQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"33qfxgv9A3sf9G+7cxCQ5tF4tdY9r2aN8/pKcDrLtvY=\",\r\n \"secondaryKey\": \"jE5IudIK3kozrhlgEM13y8lLhW0Yr0M4op1Z2Zq81nw=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0MzgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNS9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "56de9097-4da9-4bb0-b161-908a3106b69c" + "07883ea6-c7e7-4ebb-8336-4a9d0fed28d8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -4230,16 +4287,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1173" ], "x-ms-request-id": [ - "6c130fe7-827e-4507-bbbb-2fe1529ac9bb" + "952a8e3d-0b52-46d4-89de-5cf504bf09fc" ], "x-ms-correlation-request-id": [ - "6c130fe7-827e-4507-bbbb-2fe1529ac9bb" + "952a8e3d-0b52-46d4-89de-5cf504bf09fc" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T211303Z:6c130fe7-827e-4507-bbbb-2fe1529ac9bb" + "WESTUS2:20200730T222359Z:952a8e3d-0b52-46d4-89de-5cf504bf09fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4248,7 +4305,7 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:13:02 GMT" + "Thu, 30 Jul 2020 22:23:58 GMT" ], "Content-Length": [ "905" @@ -4260,23 +4317,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"W2aH4PqhIMEJsIl60GUfkbuhlMYGB92O67Oprd78hSA=\",\r\n \"secondaryKey\": \"kxONuyb0ofSao3X8o15J+DZYHsnOoMxpg2+g6M4Vl/U=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"mm0qHfDUlx2MLI1N08r/24748H2whYSp7WsQruHfnrw=\",\r\n \"secondaryKey\": \"j2pi9T41ySpC7A+fnCQaVbxfFJm7H6LvmQG05lSA8fs=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"fEdazAnJwP9JIFWgWGVzGi2d0PbqoCZ3TajoKFUNwN8=\",\r\n \"secondaryKey\": \"WcYBdqR+16p96XTPnP7FjQYdtSSozuMhGDJ4Wg3xQ9Q=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"PzQ2UiEfN1RHOt5/FGRWs6IsJGn+Sx5C+FqjrTU2IGg=\",\r\n \"secondaryKey\": \"7P/7Pyk4b1VkNCUoEtrI3IPCNrIieVMZmrRlifjKhl8=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"VnYLOcb7K2BZSdZ0GT/sL+bbtn4mgnncivLqNdYban4=\",\r\n \"secondaryKey\": \"ZSjlSgZHocXoC2Y6Z32x6rFngmcXN42iVJcq7PQZJws=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"3d6qL/CnUgx+IW3AL9SuDizrYVKS5meUpPfpLXNfizg=\",\r\n \"secondaryKey\": \"u8p0kqWdpjNcMX9ERGL92Gjf7vzbuoi0aUaIdcdI5oc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"q9GYOcP9TYQyv8eVaAW7Gwrwr9PmrSHZ+qcSi9fRQOs=\",\r\n \"secondaryKey\": \"0cGvR2sbqltu89JQIjq0F0nDlR7zxF4GED3mQy7FwHM=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"NRmsl4wNOI5NWvasPt88CLNyy1tVRQGFYs83d2qLVq4=\",\r\n \"secondaryKey\": \"/O+rje7zWRNhr8doFyrZUHP7FXEEoAz7zElh/EyRUGs=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"i5qz0IwBxf8P5ATQX5murSw8hn94mkEBd0MHh6KsZQ4=\",\r\n \"secondaryKey\": \"Bb7v9SqvIpvEJ/FhD7g1iSlpTpBwqvKtClH3Sa3RhZQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"33qfxgv9A3sf9G+7cxCQ5tF4tdY9r2aN8/pKcDrLtvY=\",\r\n \"secondaryKey\": \"jE5IudIK3kozrhlgEM13y8lLhW0Yr0M4op1Z2Zq81nw=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0MzgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNS9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e48ab61a-7f25-4d99-b9fa-6d1bc0b92df3" + "b98d47eb-ad84-424e-9b22-2b06a51a357d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -4293,16 +4350,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1172" ], "x-ms-request-id": [ - "78a2cfa8-ef7d-4911-b2f7-e0c75ebdfad8" + "464c417f-048d-4158-b43b-e790411c1f02" ], "x-ms-correlation-request-id": [ - "78a2cfa8-ef7d-4911-b2f7-e0c75ebdfad8" + "464c417f-048d-4158-b43b-e790411c1f02" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T211304Z:78a2cfa8-ef7d-4911-b2f7-e0c75ebdfad8" + "WESTUS2:20200730T222400Z:464c417f-048d-4158-b43b-e790411c1f02" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4311,7 +4368,7 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:13:04 GMT" + "Thu, 30 Jul 2020 22:23:59 GMT" ], "Content-Length": [ "905" @@ -4323,23 +4380,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"W2aH4PqhIMEJsIl60GUfkbuhlMYGB92O67Oprd78hSA=\",\r\n \"secondaryKey\": \"kxONuyb0ofSao3X8o15J+DZYHsnOoMxpg2+g6M4Vl/U=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"mm0qHfDUlx2MLI1N08r/24748H2whYSp7WsQruHfnrw=\",\r\n \"secondaryKey\": \"j2pi9T41ySpC7A+fnCQaVbxfFJm7H6LvmQG05lSA8fs=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"fEdazAnJwP9JIFWgWGVzGi2d0PbqoCZ3TajoKFUNwN8=\",\r\n \"secondaryKey\": \"WcYBdqR+16p96XTPnP7FjQYdtSSozuMhGDJ4Wg3xQ9Q=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"PzQ2UiEfN1RHOt5/FGRWs6IsJGn+Sx5C+FqjrTU2IGg=\",\r\n \"secondaryKey\": \"7P/7Pyk4b1VkNCUoEtrI3IPCNrIieVMZmrRlifjKhl8=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"VnYLOcb7K2BZSdZ0GT/sL+bbtn4mgnncivLqNdYban4=\",\r\n \"secondaryKey\": \"ZSjlSgZHocXoC2Y6Z32x6rFngmcXN42iVJcq7PQZJws=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"3d6qL/CnUgx+IW3AL9SuDizrYVKS5meUpPfpLXNfizg=\",\r\n \"secondaryKey\": \"u8p0kqWdpjNcMX9ERGL92Gjf7vzbuoi0aUaIdcdI5oc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"q9GYOcP9TYQyv8eVaAW7Gwrwr9PmrSHZ+qcSi9fRQOs=\",\r\n \"secondaryKey\": \"0cGvR2sbqltu89JQIjq0F0nDlR7zxF4GED3mQy7FwHM=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"NRmsl4wNOI5NWvasPt88CLNyy1tVRQGFYs83d2qLVq4=\",\r\n \"secondaryKey\": \"/O+rje7zWRNhr8doFyrZUHP7FXEEoAz7zElh/EyRUGs=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"i5qz0IwBxf8P5ATQX5murSw8hn94mkEBd0MHh6KsZQ4=\",\r\n \"secondaryKey\": \"Bb7v9SqvIpvEJ/FhD7g1iSlpTpBwqvKtClH3Sa3RhZQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"33qfxgv9A3sf9G+7cxCQ5tF4tdY9r2aN8/pKcDrLtvY=\",\r\n \"secondaryKey\": \"jE5IudIK3kozrhlgEM13y8lLhW0Yr0M4op1Z2Zq81nw=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0MzgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNS9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d9d771f9-8b26-4f14-b7b1-acd702e79156" + "4579e2b0-9cf4-45ef-8faf-1f0fe903ea6a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -4356,16 +4413,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1171" ], "x-ms-request-id": [ - "1dde34f8-6b17-49a4-b4c5-74f782268457" + "a4ebced2-4106-482e-80bf-6630a78222ce" ], "x-ms-correlation-request-id": [ - "1dde34f8-6b17-49a4-b4c5-74f782268457" + "a4ebced2-4106-482e-80bf-6630a78222ce" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T211306Z:1dde34f8-6b17-49a4-b4c5-74f782268457" + "WESTUS2:20200730T222401Z:a4ebced2-4106-482e-80bf-6630a78222ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4374,7 +4431,7 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:13:05 GMT" + "Thu, 30 Jul 2020 22:24:01 GMT" ], "Content-Length": [ "905" @@ -4386,23 +4443,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"W2aH4PqhIMEJsIl60GUfkbuhlMYGB92O67Oprd78hSA=\",\r\n \"secondaryKey\": \"kxONuyb0ofSao3X8o15J+DZYHsnOoMxpg2+g6M4Vl/U=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"mm0qHfDUlx2MLI1N08r/24748H2whYSp7WsQruHfnrw=\",\r\n \"secondaryKey\": \"j2pi9T41ySpC7A+fnCQaVbxfFJm7H6LvmQG05lSA8fs=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"fEdazAnJwP9JIFWgWGVzGi2d0PbqoCZ3TajoKFUNwN8=\",\r\n \"secondaryKey\": \"WcYBdqR+16p96XTPnP7FjQYdtSSozuMhGDJ4Wg3xQ9Q=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"PzQ2UiEfN1RHOt5/FGRWs6IsJGn+Sx5C+FqjrTU2IGg=\",\r\n \"secondaryKey\": \"7P/7Pyk4b1VkNCUoEtrI3IPCNrIieVMZmrRlifjKhl8=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"VnYLOcb7K2BZSdZ0GT/sL+bbtn4mgnncivLqNdYban4=\",\r\n \"secondaryKey\": \"ZSjlSgZHocXoC2Y6Z32x6rFngmcXN42iVJcq7PQZJws=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"3d6qL/CnUgx+IW3AL9SuDizrYVKS5meUpPfpLXNfizg=\",\r\n \"secondaryKey\": \"u8p0kqWdpjNcMX9ERGL92Gjf7vzbuoi0aUaIdcdI5oc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"q9GYOcP9TYQyv8eVaAW7Gwrwr9PmrSHZ+qcSi9fRQOs=\",\r\n \"secondaryKey\": \"0cGvR2sbqltu89JQIjq0F0nDlR7zxF4GED3mQy7FwHM=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"NRmsl4wNOI5NWvasPt88CLNyy1tVRQGFYs83d2qLVq4=\",\r\n \"secondaryKey\": \"/O+rje7zWRNhr8doFyrZUHP7FXEEoAz7zElh/EyRUGs=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"i5qz0IwBxf8P5ATQX5murSw8hn94mkEBd0MHh6KsZQ4=\",\r\n \"secondaryKey\": \"Bb7v9SqvIpvEJ/FhD7g1iSlpTpBwqvKtClH3Sa3RhZQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"33qfxgv9A3sf9G+7cxCQ5tF4tdY9r2aN8/pKcDrLtvY=\",\r\n \"secondaryKey\": \"jE5IudIK3kozrhlgEM13y8lLhW0Yr0M4op1Z2Zq81nw=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0MzgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNS9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d51ca6b2-7f00-4fb4-b5ca-89d4ecb077d9" + "4db8a515-87b2-42c5-bb56-0b64e33e6386" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -4419,16 +4476,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1170" ], "x-ms-request-id": [ - "8240ad8c-b998-47d7-96f1-fcc648ebf7cf" + "a8fb42f2-e0a4-4a3d-a2b9-f5f8f99af3d6" ], "x-ms-correlation-request-id": [ - "8240ad8c-b998-47d7-96f1-fcc648ebf7cf" + "a8fb42f2-e0a4-4a3d-a2b9-f5f8f99af3d6" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T211307Z:8240ad8c-b998-47d7-96f1-fcc648ebf7cf" + "WESTUS2:20200730T222402Z:a8fb42f2-e0a4-4a3d-a2b9-f5f8f99af3d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4437,7 +4494,7 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:13:06 GMT" + "Thu, 30 Jul 2020 22:24:02 GMT" ], "Content-Length": [ "905" @@ -4449,23 +4506,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"W2aH4PqhIMEJsIl60GUfkbuhlMYGB92O67Oprd78hSA=\",\r\n \"secondaryKey\": \"kxONuyb0ofSao3X8o15J+DZYHsnOoMxpg2+g6M4Vl/U=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"mm0qHfDUlx2MLI1N08r/24748H2whYSp7WsQruHfnrw=\",\r\n \"secondaryKey\": \"j2pi9T41ySpC7A+fnCQaVbxfFJm7H6LvmQG05lSA8fs=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"fEdazAnJwP9JIFWgWGVzGi2d0PbqoCZ3TajoKFUNwN8=\",\r\n \"secondaryKey\": \"WcYBdqR+16p96XTPnP7FjQYdtSSozuMhGDJ4Wg3xQ9Q=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"PzQ2UiEfN1RHOt5/FGRWs6IsJGn+Sx5C+FqjrTU2IGg=\",\r\n \"secondaryKey\": \"7P/7Pyk4b1VkNCUoEtrI3IPCNrIieVMZmrRlifjKhl8=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"VnYLOcb7K2BZSdZ0GT/sL+bbtn4mgnncivLqNdYban4=\",\r\n \"secondaryKey\": \"ZSjlSgZHocXoC2Y6Z32x6rFngmcXN42iVJcq7PQZJws=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"3d6qL/CnUgx+IW3AL9SuDizrYVKS5meUpPfpLXNfizg=\",\r\n \"secondaryKey\": \"u8p0kqWdpjNcMX9ERGL92Gjf7vzbuoi0aUaIdcdI5oc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"q9GYOcP9TYQyv8eVaAW7Gwrwr9PmrSHZ+qcSi9fRQOs=\",\r\n \"secondaryKey\": \"0cGvR2sbqltu89JQIjq0F0nDlR7zxF4GED3mQy7FwHM=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"NRmsl4wNOI5NWvasPt88CLNyy1tVRQGFYs83d2qLVq4=\",\r\n \"secondaryKey\": \"/O+rje7zWRNhr8doFyrZUHP7FXEEoAz7zElh/EyRUGs=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"i5qz0IwBxf8P5ATQX5murSw8hn94mkEBd0MHh6KsZQ4=\",\r\n \"secondaryKey\": \"Bb7v9SqvIpvEJ/FhD7g1iSlpTpBwqvKtClH3Sa3RhZQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"33qfxgv9A3sf9G+7cxCQ5tF4tdY9r2aN8/pKcDrLtvY=\",\r\n \"secondaryKey\": \"jE5IudIK3kozrhlgEM13y8lLhW0Yr0M4op1Z2Zq81nw=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0MzgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNS9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1c1aaa06-6036-4a7d-88ec-7572331642fd" + "5613205d-b8bb-4410-9712-1850eaa929d2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -4482,16 +4539,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" + "1169" ], "x-ms-request-id": [ - "dfd01b1e-6d7c-4d75-b0ca-7461433d8f27" + "1bc8f7e8-24f9-4080-a316-11459cc08ca2" ], "x-ms-correlation-request-id": [ - "dfd01b1e-6d7c-4d75-b0ca-7461433d8f27" + "1bc8f7e8-24f9-4080-a316-11459cc08ca2" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T211308Z:dfd01b1e-6d7c-4d75-b0ca-7461433d8f27" + "WESTUS2:20200730T222404Z:1bc8f7e8-24f9-4080-a316-11459cc08ca2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4500,7 +4557,7 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:13:08 GMT" + "Thu, 30 Jul 2020 22:24:04 GMT" ], "Content-Length": [ "905" @@ -4512,23 +4569,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"W2aH4PqhIMEJsIl60GUfkbuhlMYGB92O67Oprd78hSA=\",\r\n \"secondaryKey\": \"kxONuyb0ofSao3X8o15J+DZYHsnOoMxpg2+g6M4Vl/U=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"mm0qHfDUlx2MLI1N08r/24748H2whYSp7WsQruHfnrw=\",\r\n \"secondaryKey\": \"j2pi9T41ySpC7A+fnCQaVbxfFJm7H6LvmQG05lSA8fs=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"fEdazAnJwP9JIFWgWGVzGi2d0PbqoCZ3TajoKFUNwN8=\",\r\n \"secondaryKey\": \"WcYBdqR+16p96XTPnP7FjQYdtSSozuMhGDJ4Wg3xQ9Q=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"PzQ2UiEfN1RHOt5/FGRWs6IsJGn+Sx5C+FqjrTU2IGg=\",\r\n \"secondaryKey\": \"7P/7Pyk4b1VkNCUoEtrI3IPCNrIieVMZmrRlifjKhl8=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"VnYLOcb7K2BZSdZ0GT/sL+bbtn4mgnncivLqNdYban4=\",\r\n \"secondaryKey\": \"ZSjlSgZHocXoC2Y6Z32x6rFngmcXN42iVJcq7PQZJws=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"3d6qL/CnUgx+IW3AL9SuDizrYVKS5meUpPfpLXNfizg=\",\r\n \"secondaryKey\": \"u8p0kqWdpjNcMX9ERGL92Gjf7vzbuoi0aUaIdcdI5oc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"q9GYOcP9TYQyv8eVaAW7Gwrwr9PmrSHZ+qcSi9fRQOs=\",\r\n \"secondaryKey\": \"0cGvR2sbqltu89JQIjq0F0nDlR7zxF4GED3mQy7FwHM=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"NRmsl4wNOI5NWvasPt88CLNyy1tVRQGFYs83d2qLVq4=\",\r\n \"secondaryKey\": \"/O+rje7zWRNhr8doFyrZUHP7FXEEoAz7zElh/EyRUGs=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"i5qz0IwBxf8P5ATQX5murSw8hn94mkEBd0MHh6KsZQ4=\",\r\n \"secondaryKey\": \"Bb7v9SqvIpvEJ/FhD7g1iSlpTpBwqvKtClH3Sa3RhZQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"33qfxgv9A3sf9G+7cxCQ5tF4tdY9r2aN8/pKcDrLtvY=\",\r\n \"secondaryKey\": \"jE5IudIK3kozrhlgEM13y8lLhW0Yr0M4op1Z2Zq81nw=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6077/providers/Microsoft.Devices/IotHubs/ps8438/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczg0MzgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3264/providers/Microsoft.Devices/IotHubs/ps915/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzI2NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczkxNS9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a5ad5ebf-c1a1-417b-b58f-8b5648160c83" + "59e0e87b-b60e-4cc6-bd00-4ee2683ffb5b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -4545,16 +4602,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" + "1168" ], "x-ms-request-id": [ - "93feda6e-5fbf-4408-beb4-70c0afac42ef" + "00ac7a2f-1fd9-4100-bf8c-6dfc85f513e3" ], "x-ms-correlation-request-id": [ - "93feda6e-5fbf-4408-beb4-70c0afac42ef" + "00ac7a2f-1fd9-4100-bf8c-6dfc85f513e3" ], "x-ms-routing-request-id": [ - "WESTUS2:20200601T211309Z:93feda6e-5fbf-4408-beb4-70c0afac42ef" + "WESTUS2:20200730T222420Z:00ac7a2f-1fd9-4100-bf8c-6dfc85f513e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4563,7 +4620,7 @@ "nosniff" ], "Date": [ - "Mon, 01 Jun 2020 21:13:09 GMT" + "Thu, 30 Jul 2020 22:24:19 GMT" ], "Content-Length": [ "905" @@ -4575,20 +4632,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"W2aH4PqhIMEJsIl60GUfkbuhlMYGB92O67Oprd78hSA=\",\r\n \"secondaryKey\": \"kxONuyb0ofSao3X8o15J+DZYHsnOoMxpg2+g6M4Vl/U=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"mm0qHfDUlx2MLI1N08r/24748H2whYSp7WsQruHfnrw=\",\r\n \"secondaryKey\": \"j2pi9T41ySpC7A+fnCQaVbxfFJm7H6LvmQG05lSA8fs=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"fEdazAnJwP9JIFWgWGVzGi2d0PbqoCZ3TajoKFUNwN8=\",\r\n \"secondaryKey\": \"WcYBdqR+16p96XTPnP7FjQYdtSSozuMhGDJ4Wg3xQ9Q=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"PzQ2UiEfN1RHOt5/FGRWs6IsJGn+Sx5C+FqjrTU2IGg=\",\r\n \"secondaryKey\": \"7P/7Pyk4b1VkNCUoEtrI3IPCNrIieVMZmrRlifjKhl8=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"VnYLOcb7K2BZSdZ0GT/sL+bbtn4mgnncivLqNdYban4=\",\r\n \"secondaryKey\": \"ZSjlSgZHocXoC2Y6Z32x6rFngmcXN42iVJcq7PQZJws=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"3d6qL/CnUgx+IW3AL9SuDizrYVKS5meUpPfpLXNfizg=\",\r\n \"secondaryKey\": \"u8p0kqWdpjNcMX9ERGL92Gjf7vzbuoi0aUaIdcdI5oc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"q9GYOcP9TYQyv8eVaAW7Gwrwr9PmrSHZ+qcSi9fRQOs=\",\r\n \"secondaryKey\": \"0cGvR2sbqltu89JQIjq0F0nDlR7zxF4GED3mQy7FwHM=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"NRmsl4wNOI5NWvasPt88CLNyy1tVRQGFYs83d2qLVq4=\",\r\n \"secondaryKey\": \"/O+rje7zWRNhr8doFyrZUHP7FXEEoAz7zElh/EyRUGs=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"i5qz0IwBxf8P5ATQX5murSw8hn94mkEBd0MHh6KsZQ4=\",\r\n \"secondaryKey\": \"Bb7v9SqvIpvEJ/FhD7g1iSlpTpBwqvKtClH3Sa3RhZQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"33qfxgv9A3sf9G+7cxCQ5tF4tdY9r2aN8/pKcDrLtvY=\",\r\n \"secondaryKey\": \"jE5IudIK3kozrhlgEM13y8lLhW0Yr0M4op1Z2Zq81nw=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], "Names": { "Test-AzureRmIotHubDeviceLifecycle": [ - "ps8438", - "ps6077", - "ps8091", - "ps954", - "ps5220", - "ps9076", - "ps1647", - "ps7481" + "ps915", + "ps3264", + "ps3590", + "ps6111", + "ps2858", + "ps4458", + "ps9990", + "ps8791" ] }, "Variables": { diff --git a/src/IotHub/IotHub.Test/SessionRecords/Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubDPModuleTests/TestAzureIotHubModuleLifecycle.json b/src/IotHub/IotHub.Test/SessionRecords/Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubDPModuleTests/TestAzureIotHubModuleLifecycle.json index c4f1b0d05df8..e8ff70eee77d 100644 --- a/src/IotHub/IotHub.Test/SessionRecords/Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubDPModuleTests/TestAzureIotHubModuleLifecycle.json +++ b/src/IotHub/IotHub.Test/SessionRecords/Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubDPModuleTests/TestAzureIotHubModuleLifecycle.json @@ -7,16 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eb4c4e7f-5727-429b-aa49-359b07c8e1e1" + "22e70b57-8219-42fb-a67d-6a1c930762dd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" ] }, "ResponseHeaders": { @@ -27,16 +27,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "9e43bd4f-e4fc-4a19-8c66-3e56ea0e7b8e" + "cb76cf58-9683-4b4c-a323-ffa0fb95f3f8" ], "x-ms-correlation-request-id": [ - "9e43bd4f-e4fc-4a19-8c66-3e56ea0e7b8e" + "cb76cf58-9683-4b4c-a323-ffa0fb95f3f8" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195201Z:9e43bd4f-e4fc-4a19-8c66-3e56ea0e7b8e" + "WESTUS2:20200730T203159Z:cb76cf58-9683-4b4c-a323-ffa0fb95f3f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:52:00 GMT" + "Thu, 30 Jul 2020 20:31:58 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54,29 +54,29 @@ "-1" ], "Content-Length": [ - "5727" + "5690" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices\",\r\n \"namespace\": \"Microsoft.Devices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0cd79364-7a90-4354-9984-6e36c841418d\",\r\n \"roleDefinitionId\": \"C121DF10-FE58-4BC4-97F9-8296879F7BBB\"\r\n },\r\n {\r\n \"applicationId\": \"29f411f1-b2cf-4043-8ac8-2185d7316811\"\r\n },\r\n {\r\n \"applicationId\": \"89d10474-74af-4874-99a7-c23c2f643083\",\r\n \"roleDefinitionId\": \"7df22794-26e3-4f94-9d50-a4f0f6e1cb41\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/eventGridFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-31\",\r\n \"2018-01-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/securitySettings\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants/securitySettings\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices\",\r\n \"namespace\": \"Microsoft.Devices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0cd79364-7a90-4354-9984-6e36c841418d\",\r\n \"roleDefinitionId\": \"C121DF10-FE58-4BC4-97F9-8296879F7BBB\"\r\n },\r\n {\r\n \"applicationId\": \"29f411f1-b2cf-4043-8ac8-2185d7316811\"\r\n },\r\n {\r\n \"applicationId\": \"89d10474-74af-4874-99a7-c23c2f643083\",\r\n \"roleDefinitionId\": \"7df22794-26e3-4f94-9d50-a4f0f6e1cb41\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/eventGridFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-31\",\r\n \"2018-01-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/securitySettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants/securitySettings\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourcegroups/ps8063?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlZ3JvdXBzL3BzODA2Mz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourcegroups/ps8722?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlZ3JvdXBzL3BzODcyMj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "cbe27b1a-741e-42da-a691-5ce552532dc0" + "49773344-0f8c-4265-970c-f9566a282dca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "956e0ca7-ab73-45a8-806d-90d0519e9c8a" + "00b776ce-1bdc-42eb-a43d-3bde5c84fda4" ], "x-ms-correlation-request-id": [ - "956e0ca7-ab73-45a8-806d-90d0519e9c8a" + "00b776ce-1bdc-42eb-a43d-3bde5c84fda4" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195202Z:956e0ca7-ab73-45a8-806d-90d0519e9c8a" + "WESTUS2:20200730T203200Z:00b776ce-1bdc-42eb-a43d-3bde5c84fda4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:52:02 GMT" + "Thu, 30 Jul 2020 20:31:59 GMT" ], "Content-Length": [ "165" @@ -123,23 +123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063\",\r\n \"name\": \"ps8063\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722\",\r\n \"name\": \"ps8722\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODA2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU3ODU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczcyMj9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "04084d78-d51b-4f5f-bad6-4b14d8594421" + "877cfb71-f213-4bcc-a136-aea22c257459" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -159,22 +159,22 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYWEyODBkZDUtMWNmMy00NjdjLWFiNmYtYmUzZTY0YWE1ZTJi?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTY2ZDI3YWUtYWEzOS00YmZhLWE4YmItNzM5MTBhNzliNWM4?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "4998" + "4999" ], "x-ms-request-id": [ - "e6633465-6ba7-4f74-857f-2c771a006372" + "98c8c753-ba17-459c-afaf-3428641c1a95" ], "x-ms-correlation-request-id": [ - "e6633465-6ba7-4f74-857f-2c771a006372" + "98c8c753-ba17-459c-afaf-3428641c1a95" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195216Z:e6633465-6ba7-4f74-857f-2c771a006372" + "WESTUS2:20200730T203217Z:98c8c753-ba17-459c-afaf-3428641c1a95" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -183,10 +183,10 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:52:16 GMT" + "Thu, 30 Jul 2020 20:32:16 GMT" ], "Content-Length": [ - "619" + "617" ], "Content-Type": [ "application/json; charset=utf-8" @@ -195,17 +195,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785\",\r\n \"name\": \"ps5785\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8063\",\r\n \"properties\": {\r\n \"state\": \"Activating\",\r\n \"provisioningState\": \"Accepted\",\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722\",\r\n \"name\": \"ps722\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8722\",\r\n \"properties\": {\r\n \"state\": \"Activating\",\r\n \"provisioningState\": \"Accepted\",\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYWEyODBkZDUtMWNmMy00NjdjLWFiNmYtYmUzZTY0YWE1ZTJi?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWVdFeU9EQmtaRFV0TVdObU15MDBOamRqTFdGaU5tWXRZbVV6WlRZMFlXRTFaVEppP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTY2ZDI3YWUtYWEzOS00YmZhLWE4YmItNzM5MTBhNzliNWM4?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRZMlpESTNZV1V0WVdFek9TMDBZbVpoTFdFNFltSXROek01TVRCaE56bGlOV000P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -222,16 +222,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" + "11998" ], "x-ms-request-id": [ - "724c543a-af77-49cb-bcfa-82ad0a9db8e1" + "fbb5d00f-a8b1-4448-89ee-bb7766c32822" ], "x-ms-correlation-request-id": [ - "724c543a-af77-49cb-bcfa-82ad0a9db8e1" + "fbb5d00f-a8b1-4448-89ee-bb7766c32822" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195246Z:724c543a-af77-49cb-bcfa-82ad0a9db8e1" + "WESTUS2:20200730T203247Z:fbb5d00f-a8b1-4448-89ee-bb7766c32822" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -240,7 +240,7 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:52:46 GMT" + "Thu, 30 Jul 2020 20:32:47 GMT" ], "Content-Length": [ "20" @@ -256,13 +256,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYWEyODBkZDUtMWNmMy00NjdjLWFiNmYtYmUzZTY0YWE1ZTJi?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWVdFeU9EQmtaRFV0TVdObU15MDBOamRqTFdGaU5tWXRZbVV6WlRZMFlXRTFaVEppP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTY2ZDI3YWUtYWEzOS00YmZhLWE4YmItNzM5MTBhNzliNWM4?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRZMlpESTNZV1V0WVdFek9TMDBZbVpoTFdFNFltSXROek01TVRCaE56bGlOV000P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -275,20 +275,77 @@ "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "11997" + ], + "x-ms-request-id": [ + "3366954a-0d11-41ca-8844-3b86dd192078" + ], + "x-ms-correlation-request-id": [ + "3366954a-0d11-41ca-8844-3b86dd192078" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200730T203317Z:3366954a-0d11-41ca-8844-3b86dd192078" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 30 Jul 2020 20:33:17 GMT" + ], + "Content-Length": [ + "20" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTY2ZDI3YWUtYWEzOS00YmZhLWE4YmItNzM5MTBhNzliNWM4?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRZMlpESTNZV1V0WVdFek9TMDBZbVpoTFdFNFltSXROek01TVRCaE56bGlOV000P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28619.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], "x-ms-request-id": [ - "38712a0e-9c84-4f64-820c-875787623305" + "bdd82471-e368-43d2-945e-fa086990c9cc" ], "x-ms-correlation-request-id": [ - "38712a0e-9c84-4f64-820c-875787623305" + "bdd82471-e368-43d2-945e-fa086990c9cc" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195317Z:38712a0e-9c84-4f64-820c-875787623305" + "WESTUS2:20200730T203348Z:bdd82471-e368-43d2-945e-fa086990c9cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -297,7 +354,7 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:53:16 GMT" + "Thu, 30 Jul 2020 20:33:47 GMT" ], "Content-Length": [ "20" @@ -313,13 +370,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYWEyODBkZDUtMWNmMy00NjdjLWFiNmYtYmUzZTY0YWE1ZTJi?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWVdFeU9EQmtaRFV0TVdObU15MDBOamRqTFdGaU5tWXRZbVV6WlRZMFlXRTFaVEppP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTY2ZDI3YWUtYWEzOS00YmZhLWE4YmItNzM5MTBhNzliNWM4?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRZMlpESTNZV1V0WVdFek9TMDBZbVpoTFdFNFltSXROek01TVRCaE56bGlOV000P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -336,16 +393,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11995" ], "x-ms-request-id": [ - "561b3f53-102c-471d-a600-d4fb7b9e2f82" + "5d484f79-4f68-41b8-bfc9-814a130314fc" ], "x-ms-correlation-request-id": [ - "561b3f53-102c-471d-a600-d4fb7b9e2f82" + "5d484f79-4f68-41b8-bfc9-814a130314fc" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195347Z:561b3f53-102c-471d-a600-d4fb7b9e2f82" + "WESTUS2:20200730T203418Z:5d484f79-4f68-41b8-bfc9-814a130314fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -354,7 +411,7 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:53:47 GMT" + "Thu, 30 Jul 2020 20:34:17 GMT" ], "Content-Length": [ "20" @@ -370,13 +427,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYWEyODBkZDUtMWNmMy00NjdjLWFiNmYtYmUzZTY0YWE1ZTJi?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWVdFeU9EQmtaRFV0TVdObU15MDBOamRqTFdGaU5tWXRZbVV6WlRZMFlXRTFaVEppP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTY2ZDI3YWUtYWEzOS00YmZhLWE4YmItNzM5MTBhNzliNWM4?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRZMlpESTNZV1V0WVdFek9TMDBZbVpoTFdFNFltSXROek01TVRCaE56bGlOV000P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -393,16 +450,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" + "11994" ], "x-ms-request-id": [ - "e48cf75d-cc15-4fa7-8104-0a7a76bda303" + "62992cad-ad44-4d49-a0ef-23a568a12e8e" ], "x-ms-correlation-request-id": [ - "e48cf75d-cc15-4fa7-8104-0a7a76bda303" + "62992cad-ad44-4d49-a0ef-23a568a12e8e" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195417Z:e48cf75d-cc15-4fa7-8104-0a7a76bda303" + "WESTUS2:20200730T203448Z:62992cad-ad44-4d49-a0ef-23a568a12e8e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -411,7 +468,7 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:54:16 GMT" + "Thu, 30 Jul 2020 20:34:48 GMT" ], "Content-Length": [ "22" @@ -427,13 +484,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODA2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU3ODU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczcyMj9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -450,16 +507,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" + "11993" ], "x-ms-request-id": [ - "0b45fec5-0783-416f-b4f9-3f7493eabaa7" + "5ba97c13-a4d8-4662-b631-e6655a544882" ], "x-ms-correlation-request-id": [ - "0b45fec5-0783-416f-b4f9-3f7493eabaa7" + "5ba97c13-a4d8-4662-b631-e6655a544882" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195418Z:0b45fec5-0783-416f-b4f9-3f7493eabaa7" + "WESTUS2:20200730T203449Z:5ba97c13-a4d8-4662-b631-e6655a544882" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -468,10 +525,10 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:54:17 GMT" + "Thu, 30 Jul 2020 20:34:48 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -480,23 +537,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785\",\r\n \"name\": \"ps5785\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8063\",\r\n \"etag\": \"AAAAAA08ItU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5785.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5785\",\r\n \"endpoint\": \"sb://iothub-ns-ps5785-3349456-7f765e0558.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722\",\r\n \"name\": \"ps722\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8722\",\r\n \"etag\": \"AAAAAJ5K8+w=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps722.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps722\",\r\n \"endpoint\": \"sb://iothub-ns-ps722-3949326-34770d6955.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODA2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU3ODU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczcyMj9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4293efd6-0385-4163-87bb-988f21b637b0" + "398efe25-7e8d-4976-a21b-961208efabe3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -513,16 +570,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" + "11992" ], "x-ms-request-id": [ - "3adfa5e4-47eb-4dce-b84e-3dd153f18ac4" + "00e8e50d-29d9-4208-bfd5-517998b66387" ], "x-ms-correlation-request-id": [ - "3adfa5e4-47eb-4dce-b84e-3dd153f18ac4" + "00e8e50d-29d9-4208-bfd5-517998b66387" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195418Z:3adfa5e4-47eb-4dce-b84e-3dd153f18ac4" + "WESTUS2:20200730T203449Z:00e8e50d-29d9-4208-bfd5-517998b66387" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -531,10 +588,10 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:54:18 GMT" + "Thu, 30 Jul 2020 20:34:49 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -543,23 +600,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785\",\r\n \"name\": \"ps5785\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8063\",\r\n \"etag\": \"AAAAAA08ItU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5785.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5785\",\r\n \"endpoint\": \"sb://iothub-ns-ps5785-3349456-7f765e0558.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722\",\r\n \"name\": \"ps722\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8722\",\r\n \"etag\": \"AAAAAJ5K8+w=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps722.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps722\",\r\n \"endpoint\": \"sb://iothub-ns-ps722-3949326-34770d6955.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODA2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU3ODU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczcyMj9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4a23315d-4d1a-4895-b3e5-066298815275" + "72e78637-896f-4e6b-9a7e-68f9c7688460" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -576,16 +633,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" + "11991" ], "x-ms-request-id": [ - "0c568547-e0c4-4d7a-8f28-e4593279ef35" + "83bb73bf-dd74-4274-b00e-6355cdcdbf52" ], "x-ms-correlation-request-id": [ - "0c568547-e0c4-4d7a-8f28-e4593279ef35" + "83bb73bf-dd74-4274-b00e-6355cdcdbf52" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195419Z:0c568547-e0c4-4d7a-8f28-e4593279ef35" + "WESTUS2:20200730T203450Z:83bb73bf-dd74-4274-b00e-6355cdcdbf52" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -594,10 +651,10 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:54:18 GMT" + "Thu, 30 Jul 2020 20:34:50 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -606,23 +663,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785\",\r\n \"name\": \"ps5785\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8063\",\r\n \"etag\": \"AAAAAA08ItU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5785.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5785\",\r\n \"endpoint\": \"sb://iothub-ns-ps5785-3349456-7f765e0558.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722\",\r\n \"name\": \"ps722\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8722\",\r\n \"etag\": \"AAAAAJ5K8+w=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps722.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps722\",\r\n \"endpoint\": \"sb://iothub-ns-ps722-3949326-34770d6955.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODA2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU3ODU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczcyMj9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "956644db-4d7a-43dd-a7c1-5d880a675df0" + "da0e3a89-9e4e-45e4-a758-dfbbc30605d0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -639,16 +696,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" + "11990" ], "x-ms-request-id": [ - "6be83b52-1dc7-49d9-a372-f1c89257b025" + "7d11da65-37ad-4cbb-8a3d-91b2e2575cbb" ], "x-ms-correlation-request-id": [ - "6be83b52-1dc7-49d9-a372-f1c89257b025" + "7d11da65-37ad-4cbb-8a3d-91b2e2575cbb" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195420Z:6be83b52-1dc7-49d9-a372-f1c89257b025" + "WESTUS2:20200730T203451Z:7d11da65-37ad-4cbb-8a3d-91b2e2575cbb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -657,10 +714,10 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:54:19 GMT" + "Thu, 30 Jul 2020 20:34:50 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -669,23 +726,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785\",\r\n \"name\": \"ps5785\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8063\",\r\n \"etag\": \"AAAAAA08ItU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5785.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5785\",\r\n \"endpoint\": \"sb://iothub-ns-ps5785-3349456-7f765e0558.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722\",\r\n \"name\": \"ps722\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8722\",\r\n \"etag\": \"AAAAAJ5K8+w=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps722.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps722\",\r\n \"endpoint\": \"sb://iothub-ns-ps722-3949326-34770d6955.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODA2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU3ODU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczcyMj9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c3978381-6f8f-4afe-a21f-d1ab3eb7d9b6" + "48e8a854-bd8d-4fde-ab34-24b6fab5c9f3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -702,16 +759,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" + "11989" ], "x-ms-request-id": [ - "d775d725-ebe5-410f-838a-59ee5e2d4c10" + "9a27dd86-9c24-4012-b593-5e90c7aa1346" ], "x-ms-correlation-request-id": [ - "d775d725-ebe5-410f-838a-59ee5e2d4c10" + "9a27dd86-9c24-4012-b593-5e90c7aa1346" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195421Z:d775d725-ebe5-410f-838a-59ee5e2d4c10" + "WESTUS2:20200730T203452Z:9a27dd86-9c24-4012-b593-5e90c7aa1346" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -720,10 +777,10 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:54:20 GMT" + "Thu, 30 Jul 2020 20:34:52 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -732,23 +789,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785\",\r\n \"name\": \"ps5785\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8063\",\r\n \"etag\": \"AAAAAA08ItU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5785.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5785\",\r\n \"endpoint\": \"sb://iothub-ns-ps5785-3349456-7f765e0558.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722\",\r\n \"name\": \"ps722\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8722\",\r\n \"etag\": \"AAAAAJ5K8+w=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps722.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps722\",\r\n \"endpoint\": \"sb://iothub-ns-ps722-3949326-34770d6955.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODA2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU3ODU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczcyMj9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ddd80130-2e27-4e53-b22b-afd455579ff3" + "ff62a9bd-6337-4660-a281-55176c89412d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -765,16 +822,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11952" + "11988" ], "x-ms-request-id": [ - "0d776e1a-da7d-44a5-ac71-9409d5fd222d" + "e9cf55b1-3287-4d1a-a073-085e5d844171" ], "x-ms-correlation-request-id": [ - "0d776e1a-da7d-44a5-ac71-9409d5fd222d" + "e9cf55b1-3287-4d1a-a073-085e5d844171" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195422Z:0d776e1a-da7d-44a5-ac71-9409d5fd222d" + "WESTUS2:20200730T203453Z:e9cf55b1-3287-4d1a-a073-085e5d844171" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -783,10 +840,10 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:54:21 GMT" + "Thu, 30 Jul 2020 20:34:52 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -795,23 +852,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785\",\r\n \"name\": \"ps5785\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8063\",\r\n \"etag\": \"AAAAAA08ItU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5785.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5785\",\r\n \"endpoint\": \"sb://iothub-ns-ps5785-3349456-7f765e0558.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722\",\r\n \"name\": \"ps722\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8722\",\r\n \"etag\": \"AAAAAJ5K8+w=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps722.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps722\",\r\n \"endpoint\": \"sb://iothub-ns-ps722-3949326-34770d6955.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODA2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU3ODU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczcyMj9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a8e959a9-1a3e-4121-b13d-f2efd59ded5d" + "bf49719f-edc6-4a50-bfab-d3da65a7ebbe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -828,16 +885,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11951" + "11987" ], "x-ms-request-id": [ - "83f9b1e0-98b6-4a7e-82b6-b0782b7ce44c" + "9bdb612a-1268-4b94-8ebc-9c3eead2e29d" ], "x-ms-correlation-request-id": [ - "83f9b1e0-98b6-4a7e-82b6-b0782b7ce44c" + "9bdb612a-1268-4b94-8ebc-9c3eead2e29d" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195423Z:83f9b1e0-98b6-4a7e-82b6-b0782b7ce44c" + "WESTUS2:20200730T203454Z:9bdb612a-1268-4b94-8ebc-9c3eead2e29d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -846,10 +903,10 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:54:22 GMT" + "Thu, 30 Jul 2020 20:34:53 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -858,23 +915,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785\",\r\n \"name\": \"ps5785\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8063\",\r\n \"etag\": \"AAAAAA08ItU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5785.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5785\",\r\n \"endpoint\": \"sb://iothub-ns-ps5785-3349456-7f765e0558.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722\",\r\n \"name\": \"ps722\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8722\",\r\n \"etag\": \"AAAAAJ5K8+w=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps722.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps722\",\r\n \"endpoint\": \"sb://iothub-ns-ps722-3949326-34770d6955.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODA2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU3ODU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczcyMj9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a34376df-8b37-49be-bd51-7982b35c98dd" + "ad3abe96-88e4-4b5d-b62a-a2aa307eeb85" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -891,16 +948,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11950" + "11986" ], "x-ms-request-id": [ - "a7ba3636-5d6c-4e66-baa8-cc4a74c8f423" + "2b3806a6-84da-442d-84a9-8006c43e6590" ], "x-ms-correlation-request-id": [ - "a7ba3636-5d6c-4e66-baa8-cc4a74c8f423" + "2b3806a6-84da-442d-84a9-8006c43e6590" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195424Z:a7ba3636-5d6c-4e66-baa8-cc4a74c8f423" + "WESTUS2:20200730T203455Z:2b3806a6-84da-442d-84a9-8006c43e6590" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -909,10 +966,10 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:54:24 GMT" + "Thu, 30 Jul 2020 20:34:54 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -921,23 +978,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785\",\r\n \"name\": \"ps5785\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8063\",\r\n \"etag\": \"AAAAAA08ItU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5785.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5785\",\r\n \"endpoint\": \"sb://iothub-ns-ps5785-3349456-7f765e0558.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722\",\r\n \"name\": \"ps722\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8722\",\r\n \"etag\": \"AAAAAJ5K8+w=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps722.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps722\",\r\n \"endpoint\": \"sb://iothub-ns-ps722-3949326-34770d6955.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODA2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU3ODU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczcyMj9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e2772e51-875e-4a9b-ac85-c6847922eff0" + "b66f1db5-3e2e-49b9-be03-0039d7ad4c75" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -954,16 +1011,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11949" + "11985" ], "x-ms-request-id": [ - "cc76af5c-815e-4962-82a7-a71b6df488b0" + "c51a4a52-a68e-4a0e-9829-2bf9139c60b6" ], "x-ms-correlation-request-id": [ - "cc76af5c-815e-4962-82a7-a71b6df488b0" + "c51a4a52-a68e-4a0e-9829-2bf9139c60b6" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195425Z:cc76af5c-815e-4962-82a7-a71b6df488b0" + "WESTUS2:20200730T203455Z:c51a4a52-a68e-4a0e-9829-2bf9139c60b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -972,10 +1029,10 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:54:25 GMT" + "Thu, 30 Jul 2020 20:34:55 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -984,23 +1041,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785\",\r\n \"name\": \"ps5785\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8063\",\r\n \"etag\": \"AAAAAA08ItU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5785.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5785\",\r\n \"endpoint\": \"sb://iothub-ns-ps5785-3349456-7f765e0558.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722\",\r\n \"name\": \"ps722\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8722\",\r\n \"etag\": \"AAAAAJ5K8+w=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps722.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps722\",\r\n \"endpoint\": \"sb://iothub-ns-ps722-3949326-34770d6955.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODA2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU3ODU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczcyMj9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "654421a8-418d-4b4c-9849-0e09aca7fe15" + "84f25512-764e-4b2a-afd8-c1e3b116c86f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1017,16 +1074,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11948" + "11984" ], "x-ms-request-id": [ - "46dc085a-2853-426b-9209-000b0109b210" + "2e9b0d36-4ab3-4c07-857e-3ac2d0fb31f0" ], "x-ms-correlation-request-id": [ - "46dc085a-2853-426b-9209-000b0109b210" + "2e9b0d36-4ab3-4c07-857e-3ac2d0fb31f0" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195425Z:46dc085a-2853-426b-9209-000b0109b210" + "WESTUS2:20200730T203456Z:2e9b0d36-4ab3-4c07-857e-3ac2d0fb31f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1035,10 +1092,10 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:54:25 GMT" + "Thu, 30 Jul 2020 20:34:56 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1047,23 +1104,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785\",\r\n \"name\": \"ps5785\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8063\",\r\n \"etag\": \"AAAAAA08ItU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5785.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5785\",\r\n \"endpoint\": \"sb://iothub-ns-ps5785-3349456-7f765e0558.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722\",\r\n \"name\": \"ps722\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8722\",\r\n \"etag\": \"AAAAAJ5K8+w=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps722.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps722\",\r\n \"endpoint\": \"sb://iothub-ns-ps722-3949326-34770d6955.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODA2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU3ODU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczcyMj9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ee37cbce-056f-4be5-80ea-715de1e842fe" + "0d26a210-c8cc-463f-8f6f-c8c06b9893df" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1080,16 +1137,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11947" + "11983" ], "x-ms-request-id": [ - "8552b70a-b64f-476c-a733-0a1a51f87213" + "9d0b95ce-e4ae-4221-8fd5-49f195c8e68b" ], "x-ms-correlation-request-id": [ - "8552b70a-b64f-476c-a733-0a1a51f87213" + "9d0b95ce-e4ae-4221-8fd5-49f195c8e68b" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195427Z:8552b70a-b64f-476c-a733-0a1a51f87213" + "WESTUS2:20200730T203457Z:9d0b95ce-e4ae-4221-8fd5-49f195c8e68b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1098,10 +1155,10 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:54:26 GMT" + "Thu, 30 Jul 2020 20:34:57 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1110,23 +1167,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785\",\r\n \"name\": \"ps5785\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8063\",\r\n \"etag\": \"AAAAAA08ItU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5785.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5785\",\r\n \"endpoint\": \"sb://iothub-ns-ps5785-3349456-7f765e0558.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722\",\r\n \"name\": \"ps722\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8722\",\r\n \"etag\": \"AAAAAJ5K8+w=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps722.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps722\",\r\n \"endpoint\": \"sb://iothub-ns-ps722-3949326-34770d6955.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODA2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU3ODU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczcyMj9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0973e119-e37d-4c92-b5bd-15a2fdafb7d7" + "2e3f9f46-6e2e-487a-bd75-b091eb1d8989" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1143,16 +1200,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11946" + "11982" ], "x-ms-request-id": [ - "d0196b24-181e-4183-a1fd-3e4b1643cbe6" + "cb13771d-13c0-4b05-9632-7c08d1c370fb" ], "x-ms-correlation-request-id": [ - "d0196b24-181e-4183-a1fd-3e4b1643cbe6" + "cb13771d-13c0-4b05-9632-7c08d1c370fb" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195427Z:d0196b24-181e-4183-a1fd-3e4b1643cbe6" + "WESTUS2:20200730T203458Z:cb13771d-13c0-4b05-9632-7c08d1c370fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1161,10 +1218,10 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:54:27 GMT" + "Thu, 30 Jul 2020 20:34:58 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1173,23 +1230,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785\",\r\n \"name\": \"ps5785\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8063\",\r\n \"etag\": \"AAAAAA08ItU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5785.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5785\",\r\n \"endpoint\": \"sb://iothub-ns-ps5785-3349456-7f765e0558.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722\",\r\n \"name\": \"ps722\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8722\",\r\n \"etag\": \"AAAAAJ5K8+w=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps722.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps722\",\r\n \"endpoint\": \"sb://iothub-ns-ps722-3949326-34770d6955.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODA2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU3ODU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczcyMj9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d0d4af20-6971-4c63-97c3-6d72681b77c8" + "4508aad4-c2f8-48dd-824b-3be6ed33542f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1206,16 +1263,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11945" + "11981" ], "x-ms-request-id": [ - "d0307382-7407-4f52-8ccb-765c732b6156" + "5c4a9fb2-dc0a-4496-a118-9f06b732a79d" ], "x-ms-correlation-request-id": [ - "d0307382-7407-4f52-8ccb-765c732b6156" + "5c4a9fb2-dc0a-4496-a118-9f06b732a79d" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195429Z:d0307382-7407-4f52-8ccb-765c732b6156" + "WESTUS2:20200730T203459Z:5c4a9fb2-dc0a-4496-a118-9f06b732a79d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1224,10 +1281,10 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:54:29 GMT" + "Thu, 30 Jul 2020 20:34:59 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1236,23 +1293,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785\",\r\n \"name\": \"ps5785\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8063\",\r\n \"etag\": \"AAAAAA08ItU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5785.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5785\",\r\n \"endpoint\": \"sb://iothub-ns-ps5785-3349456-7f765e0558.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722\",\r\n \"name\": \"ps722\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8722\",\r\n \"etag\": \"AAAAAJ5K8+w=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps722.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps722\",\r\n \"endpoint\": \"sb://iothub-ns-ps722-3949326-34770d6955.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODA2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU3ODU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczcyMj9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4b2961d3-d035-4cac-8250-315b86a160f6" + "db859f0a-e720-4e47-a8ed-600a224ba22c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1269,16 +1326,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11944" + "11980" ], "x-ms-request-id": [ - "0d7a5e33-3227-4643-98fa-0e3a8b648924" + "fb137c8f-64e6-4b67-b619-e98e3870730d" ], "x-ms-correlation-request-id": [ - "0d7a5e33-3227-4643-98fa-0e3a8b648924" + "fb137c8f-64e6-4b67-b619-e98e3870730d" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195430Z:0d7a5e33-3227-4643-98fa-0e3a8b648924" + "WESTUS2:20200730T203500Z:fb137c8f-64e6-4b67-b619-e98e3870730d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1287,10 +1344,10 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:54:29 GMT" + "Thu, 30 Jul 2020 20:35:00 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1299,23 +1356,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785\",\r\n \"name\": \"ps5785\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8063\",\r\n \"etag\": \"AAAAAA08ItU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5785.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5785\",\r\n \"endpoint\": \"sb://iothub-ns-ps5785-3349456-7f765e0558.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722\",\r\n \"name\": \"ps722\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8722\",\r\n \"etag\": \"AAAAAJ5K8+w=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps722.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps722\",\r\n \"endpoint\": \"sb://iothub-ns-ps722-3949326-34770d6955.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODA2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU3ODU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczcyMj9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "00864878-a2bd-4201-8cd2-2abf5f24df6b" + "6a0ba910-0951-42c9-adf2-f49543559c78" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1332,16 +1389,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11943" + "11979" ], "x-ms-request-id": [ - "4f6bfacb-9a9f-41c8-a14b-80bb6abe322c" + "5c6bc9b3-f9b0-4ae0-bd16-12aab37564b6" ], "x-ms-correlation-request-id": [ - "4f6bfacb-9a9f-41c8-a14b-80bb6abe322c" + "5c6bc9b3-f9b0-4ae0-bd16-12aab37564b6" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195431Z:4f6bfacb-9a9f-41c8-a14b-80bb6abe322c" + "WESTUS2:20200730T203501Z:5c6bc9b3-f9b0-4ae0-bd16-12aab37564b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1350,10 +1407,10 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:54:30 GMT" + "Thu, 30 Jul 2020 20:35:00 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1362,23 +1419,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785\",\r\n \"name\": \"ps5785\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8063\",\r\n \"etag\": \"AAAAAA08ItU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5785.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5785\",\r\n \"endpoint\": \"sb://iothub-ns-ps5785-3349456-7f765e0558.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722\",\r\n \"name\": \"ps722\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8722\",\r\n \"etag\": \"AAAAAJ5K8+w=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps722.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps722\",\r\n \"endpoint\": \"sb://iothub-ns-ps722-3949326-34770d6955.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODA2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU3ODU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczcyMj9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3b30a436-f90d-4775-8136-6057d61b391d" + "eebebe73-54d7-4e27-81ec-09f9905f063a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1395,16 +1452,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11942" + "11978" ], "x-ms-request-id": [ - "010b8265-2e33-4e93-8d1c-a89deeb909e0" + "dc633b5c-ce4f-4e7a-93eb-af2a080ce077" ], "x-ms-correlation-request-id": [ - "010b8265-2e33-4e93-8d1c-a89deeb909e0" + "dc633b5c-ce4f-4e7a-93eb-af2a080ce077" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195432Z:010b8265-2e33-4e93-8d1c-a89deeb909e0" + "WESTUS2:20200730T203502Z:dc633b5c-ce4f-4e7a-93eb-af2a080ce077" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1413,10 +1470,10 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:54:31 GMT" + "Thu, 30 Jul 2020 20:35:01 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1425,23 +1482,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785\",\r\n \"name\": \"ps5785\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8063\",\r\n \"etag\": \"AAAAAA08ItU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5785.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5785\",\r\n \"endpoint\": \"sb://iothub-ns-ps5785-3349456-7f765e0558.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722\",\r\n \"name\": \"ps722\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8722\",\r\n \"etag\": \"AAAAAJ5K8+w=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps722.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps722\",\r\n \"endpoint\": \"sb://iothub-ns-ps722-3949326-34770d6955.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODA2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU3ODU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczcyMj9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "17e5206f-7415-4078-b2be-2ca745ccf26a" + "99ea9e05-cd8a-49f4-b42d-982437972b6d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1458,16 +1515,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11941" + "11977" ], "x-ms-request-id": [ - "a79522be-7d2e-4162-bcb4-68903444bdcf" + "e8a7a24b-9c04-4f5d-a785-d8f65300790f" ], "x-ms-correlation-request-id": [ - "a79522be-7d2e-4162-bcb4-68903444bdcf" + "e8a7a24b-9c04-4f5d-a785-d8f65300790f" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195433Z:a79522be-7d2e-4162-bcb4-68903444bdcf" + "WESTUS2:20200730T203503Z:e8a7a24b-9c04-4f5d-a785-d8f65300790f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1476,10 +1533,10 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:54:32 GMT" + "Thu, 30 Jul 2020 20:35:03 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1488,23 +1545,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785\",\r\n \"name\": \"ps5785\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8063\",\r\n \"etag\": \"AAAAAA08ItU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5785.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5785\",\r\n \"endpoint\": \"sb://iothub-ns-ps5785-3349456-7f765e0558.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722\",\r\n \"name\": \"ps722\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8722\",\r\n \"etag\": \"AAAAAJ5K8+w=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps722.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps722\",\r\n \"endpoint\": \"sb://iothub-ns-ps722-3949326-34770d6955.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODA2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU3ODU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczcyMj9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e2c2603e-059d-4ed0-bde4-48db92e399be" + "1e0671d5-c985-4e1b-a80b-41265e719c81" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1521,16 +1578,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11940" + "11976" ], "x-ms-request-id": [ - "e5845774-6b08-4ecd-89a4-0ab5efcc9ab5" + "b4e2c9cc-9275-406e-82ed-2400bcae8ba9" ], "x-ms-correlation-request-id": [ - "e5845774-6b08-4ecd-89a4-0ab5efcc9ab5" + "b4e2c9cc-9275-406e-82ed-2400bcae8ba9" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195433Z:e5845774-6b08-4ecd-89a4-0ab5efcc9ab5" + "WESTUS2:20200730T203504Z:b4e2c9cc-9275-406e-82ed-2400bcae8ba9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1539,10 +1596,10 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:54:33 GMT" + "Thu, 30 Jul 2020 20:35:03 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1551,23 +1608,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785\",\r\n \"name\": \"ps5785\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8063\",\r\n \"etag\": \"AAAAAA08ItU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5785.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5785\",\r\n \"endpoint\": \"sb://iothub-ns-ps5785-3349456-7f765e0558.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722\",\r\n \"name\": \"ps722\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8722\",\r\n \"etag\": \"AAAAAJ5K8+w=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps722.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps722\",\r\n \"endpoint\": \"sb://iothub-ns-ps722-3949326-34770d6955.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODA2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU3ODU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczcyMj9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cb5d12e9-1dd2-43c0-b9b8-39f0547a339a" + "ac251987-1425-41e3-a6b7-9f0b7bdb600a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1584,16 +1641,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11939" + "11975" ], "x-ms-request-id": [ - "7d759dde-62bb-4b77-9c63-234aca34f17e" + "83bcf17f-0777-48bc-8d10-e92619b5d658" ], "x-ms-correlation-request-id": [ - "7d759dde-62bb-4b77-9c63-234aca34f17e" + "83bcf17f-0777-48bc-8d10-e92619b5d658" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195434Z:7d759dde-62bb-4b77-9c63-234aca34f17e" + "WESTUS2:20200730T203505Z:83bcf17f-0777-48bc-8d10-e92619b5d658" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1602,10 +1659,10 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:54:34 GMT" + "Thu, 30 Jul 2020 20:35:04 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1614,23 +1671,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785\",\r\n \"name\": \"ps5785\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8063\",\r\n \"etag\": \"AAAAAA08ItU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5785.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5785\",\r\n \"endpoint\": \"sb://iothub-ns-ps5785-3349456-7f765e0558.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722\",\r\n \"name\": \"ps722\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8722\",\r\n \"etag\": \"AAAAAJ5K8+w=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps722.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps722\",\r\n \"endpoint\": \"sb://iothub-ns-ps722-3949326-34770d6955.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODA2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU3ODU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczcyMj9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7605b9c0-58e1-41fd-9813-c6f6393ae155" + "19218d96-055a-4312-baae-7fdba38a3900" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1647,16 +1704,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11938" + "11974" ], "x-ms-request-id": [ - "e20725c8-9fbf-4cf9-a3a4-e00985ce0ea9" + "f97579b1-867f-4438-b45e-29b609677696" ], "x-ms-correlation-request-id": [ - "e20725c8-9fbf-4cf9-a3a4-e00985ce0ea9" + "f97579b1-867f-4438-b45e-29b609677696" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195436Z:e20725c8-9fbf-4cf9-a3a4-e00985ce0ea9" + "WESTUS2:20200730T203506Z:f97579b1-867f-4438-b45e-29b609677696" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1665,10 +1722,10 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:54:36 GMT" + "Thu, 30 Jul 2020 20:35:05 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1677,23 +1734,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785\",\r\n \"name\": \"ps5785\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8063\",\r\n \"etag\": \"AAAAAA08ItU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5785.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5785\",\r\n \"endpoint\": \"sb://iothub-ns-ps5785-3349456-7f765e0558.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722\",\r\n \"name\": \"ps722\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8722\",\r\n \"etag\": \"AAAAAJ5K8+w=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps722.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps722\",\r\n \"endpoint\": \"sb://iothub-ns-ps722-3949326-34770d6955.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODA2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU3ODU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczcyMj9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f5a58a09-e045-4dc7-95ce-0da43051ce45" + "590f7628-edf0-46d9-b7fb-89e86242ba91" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1710,16 +1767,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11937" + "11973" ], "x-ms-request-id": [ - "893fc320-451e-4e23-a47d-2df5031f15b3" + "9a22742c-cfa6-4104-9d49-9fa6535e1ec1" ], "x-ms-correlation-request-id": [ - "893fc320-451e-4e23-a47d-2df5031f15b3" + "9a22742c-cfa6-4104-9d49-9fa6535e1ec1" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195447Z:893fc320-451e-4e23-a47d-2df5031f15b3" + "WESTUS2:20200730T203517Z:9a22742c-cfa6-4104-9d49-9fa6535e1ec1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1728,10 +1785,10 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:54:47 GMT" + "Thu, 30 Jul 2020 20:35:16 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1740,23 +1797,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785\",\r\n \"name\": \"ps5785\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8063\",\r\n \"etag\": \"AAAAAA08ItU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5785.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5785\",\r\n \"endpoint\": \"sb://iothub-ns-ps5785-3349456-7f765e0558.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722\",\r\n \"name\": \"ps722\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8722\",\r\n \"etag\": \"AAAAAJ5K8+w=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps722.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps722\",\r\n \"endpoint\": \"sb://iothub-ns-ps722-3949326-34770d6955.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODA2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU3ODU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczcyMj9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cab70a2b-1b44-4dbd-9bd1-f08deb9c90b9" + "a94c05df-0587-4f05-b3e3-63d2a20094ca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1773,16 +1830,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11936" + "11972" ], "x-ms-request-id": [ - "92e7945f-ecb9-412e-b7e9-0e1e51ae6ab1" + "7a87d8d8-0587-40fb-9c15-4c5a02226076" ], "x-ms-correlation-request-id": [ - "92e7945f-ecb9-412e-b7e9-0e1e51ae6ab1" + "7a87d8d8-0587-40fb-9c15-4c5a02226076" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195448Z:92e7945f-ecb9-412e-b7e9-0e1e51ae6ab1" + "WESTUS2:20200730T203518Z:7a87d8d8-0587-40fb-9c15-4c5a02226076" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1791,10 +1848,10 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:54:48 GMT" + "Thu, 30 Jul 2020 20:35:17 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1803,23 +1860,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785\",\r\n \"name\": \"ps5785\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8063\",\r\n \"etag\": \"AAAAAA08ItU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5785.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5785\",\r\n \"endpoint\": \"sb://iothub-ns-ps5785-3349456-7f765e0558.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722\",\r\n \"name\": \"ps722\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8722\",\r\n \"etag\": \"AAAAAJ5K8+w=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps722.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps722\",\r\n \"endpoint\": \"sb://iothub-ns-ps722-3949326-34770d6955.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODA2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU3ODU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczcyMj9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4162b83f-28e8-4fbc-9c8d-b144033c5621" + "c61994d8-4bfd-4670-a380-2f25fb8d00a8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1836,16 +1893,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11935" + "11971" ], "x-ms-request-id": [ - "9a218144-3646-4313-ae17-8f5ee9be108b" + "aa9be9d1-574b-427d-8456-8a78cff297ad" ], "x-ms-correlation-request-id": [ - "9a218144-3646-4313-ae17-8f5ee9be108b" + "aa9be9d1-574b-427d-8456-8a78cff297ad" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195449Z:9a218144-3646-4313-ae17-8f5ee9be108b" + "WESTUS2:20200730T203519Z:aa9be9d1-574b-427d-8456-8a78cff297ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1854,10 +1911,10 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:54:49 GMT" + "Thu, 30 Jul 2020 20:35:18 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1866,23 +1923,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785\",\r\n \"name\": \"ps5785\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8063\",\r\n \"etag\": \"AAAAAA08ItU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5785.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5785\",\r\n \"endpoint\": \"sb://iothub-ns-ps5785-3349456-7f765e0558.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722\",\r\n \"name\": \"ps722\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8722\",\r\n \"etag\": \"AAAAAJ5K8+w=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps722.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps722\",\r\n \"endpoint\": \"sb://iothub-ns-ps722-3949326-34770d6955.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODA2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU3ODU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczcyMj9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "87ed659a-2a8c-425d-b06d-07eff1e0d9dd" + "cfe3606c-5ff7-42a2-9a31-4351b3182c3e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1899,16 +1956,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11934" + "11970" ], "x-ms-request-id": [ - "66f079bb-899d-4c97-b5a5-3cc6b2cc2173" + "0aec5410-22f6-48c1-a2e5-6a14def652f4" ], "x-ms-correlation-request-id": [ - "66f079bb-899d-4c97-b5a5-3cc6b2cc2173" + "0aec5410-22f6-48c1-a2e5-6a14def652f4" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195450Z:66f079bb-899d-4c97-b5a5-3cc6b2cc2173" + "WESTUS2:20200730T203520Z:0aec5410-22f6-48c1-a2e5-6a14def652f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1917,10 +1974,10 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:54:49 GMT" + "Thu, 30 Jul 2020 20:35:19 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1929,23 +1986,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785\",\r\n \"name\": \"ps5785\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8063\",\r\n \"etag\": \"AAAAAA08ItU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5785.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5785\",\r\n \"endpoint\": \"sb://iothub-ns-ps5785-3349456-7f765e0558.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722\",\r\n \"name\": \"ps722\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8722\",\r\n \"etag\": \"AAAAAJ5K8+w=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps722.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps722\",\r\n \"endpoint\": \"sb://iothub-ns-ps722-3949326-34770d6955.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODA2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU3ODU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczcyMj9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f4fd8943-1d15-49a8-93d7-99bda15e8f3f" + "2c3ce6e4-3994-448f-a93f-381b3cac6e90" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1962,16 +2019,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11933" + "11969" ], "x-ms-request-id": [ - "4d63b993-f8d8-4edb-8bc4-4af1f2058029" + "88263ee5-a060-4348-be6a-9518c574bbcb" ], "x-ms-correlation-request-id": [ - "4d63b993-f8d8-4edb-8bc4-4af1f2058029" + "88263ee5-a060-4348-be6a-9518c574bbcb" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195451Z:4d63b993-f8d8-4edb-8bc4-4af1f2058029" + "WESTUS2:20200730T203521Z:88263ee5-a060-4348-be6a-9518c574bbcb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1980,10 +2037,10 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:54:50 GMT" + "Thu, 30 Jul 2020 20:35:20 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1992,23 +2049,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785\",\r\n \"name\": \"ps5785\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8063\",\r\n \"etag\": \"AAAAAA08ItU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5785.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5785\",\r\n \"endpoint\": \"sb://iothub-ns-ps5785-3349456-7f765e0558.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722\",\r\n \"name\": \"ps722\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8722\",\r\n \"etag\": \"AAAAAJ5K8+w=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps722.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps722\",\r\n \"endpoint\": \"sb://iothub-ns-ps722-3949326-34770d6955.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODA2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU3ODU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczcyMj9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b8f4d272-e184-44c6-a667-ae474266d651" + "2c96c20b-0b45-433e-a727-762559016a2c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2021,20 +2078,20 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11932" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], "x-ms-request-id": [ - "699730e5-9623-41ea-8f49-140aa910dae3" + "a3e34d0f-fa99-4f26-91a7-bf9c237f44cf" ], "x-ms-correlation-request-id": [ - "699730e5-9623-41ea-8f49-140aa910dae3" + "a3e34d0f-fa99-4f26-91a7-bf9c237f44cf" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195452Z:699730e5-9623-41ea-8f49-140aa910dae3" + "WESTUS2:20200730T203522Z:a3e34d0f-fa99-4f26-91a7-bf9c237f44cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2043,10 +2100,10 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:54:51 GMT" + "Thu, 30 Jul 2020 20:35:21 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2055,23 +2112,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785\",\r\n \"name\": \"ps5785\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8063\",\r\n \"etag\": \"AAAAAA08ItU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5785.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5785\",\r\n \"endpoint\": \"sb://iothub-ns-ps5785-3349456-7f765e0558.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722\",\r\n \"name\": \"ps722\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8722\",\r\n \"etag\": \"AAAAAJ5K8+w=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps722.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps722\",\r\n \"endpoint\": \"sb://iothub-ns-ps722-3949326-34770d6955.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODA2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU3ODU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczcyMj9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6972e95e-93f0-4a09-bfb2-42b5f264c9c3" + "8b9a5717-dd60-4c0c-9c16-cefd2e18989b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2088,16 +2145,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11931" + "11967" ], "x-ms-request-id": [ - "11bae63a-ab49-4c3e-a474-a82b83b18792" + "3b7b7c7e-86c0-49db-b694-f7a441893c75" ], "x-ms-correlation-request-id": [ - "11bae63a-ab49-4c3e-a474-a82b83b18792" + "3b7b7c7e-86c0-49db-b694-f7a441893c75" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195453Z:11bae63a-ab49-4c3e-a474-a82b83b18792" + "WESTUS2:20200730T203523Z:3b7b7c7e-86c0-49db-b694-f7a441893c75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2106,10 +2163,10 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:54:53 GMT" + "Thu, 30 Jul 2020 20:35:22 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2118,23 +2175,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785\",\r\n \"name\": \"ps5785\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8063\",\r\n \"etag\": \"AAAAAA08ItU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5785.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5785\",\r\n \"endpoint\": \"sb://iothub-ns-ps5785-3349456-7f765e0558.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722\",\r\n \"name\": \"ps722\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8722\",\r\n \"etag\": \"AAAAAJ5K8+w=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps722.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps722\",\r\n \"endpoint\": \"sb://iothub-ns-ps722-3949326-34770d6955.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODA2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU3ODU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczcyMj9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2f92d692-7836-4799-b3d3-07a390117301" + "54bc67f3-611d-4184-a49e-bcf172b53e5c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2151,16 +2208,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11930" + "11966" ], "x-ms-request-id": [ - "48a03b5d-8fbc-4880-9786-de36d1391889" + "4687412f-f992-492b-ac54-75ecb3de5a10" ], "x-ms-correlation-request-id": [ - "48a03b5d-8fbc-4880-9786-de36d1391889" + "4687412f-f992-492b-ac54-75ecb3de5a10" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195454Z:48a03b5d-8fbc-4880-9786-de36d1391889" + "WESTUS2:20200730T203524Z:4687412f-f992-492b-ac54-75ecb3de5a10" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2169,10 +2226,10 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:54:54 GMT" + "Thu, 30 Jul 2020 20:35:23 GMT" ], "Content-Length": [ - "1460" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2181,23 +2238,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785\",\r\n \"name\": \"ps5785\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8063\",\r\n \"etag\": \"AAAAAA08ItU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5785.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5785\",\r\n \"endpoint\": \"sb://iothub-ns-ps5785-3349456-7f765e0558.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722\",\r\n \"name\": \"ps722\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8722\",\r\n \"etag\": \"AAAAAJ5K8+w=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps722.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps722\",\r\n \"endpoint\": \"sb://iothub-ns-ps722-3949326-34770d6955.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785/IotHubKeys/iothubowner/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODA2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU3ODUvSW90SHViS2V5cy9pb3RodWJvd25lci9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722/IotHubKeys/iothubowner/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczcyMi9Jb3RIdWJLZXlzL2lvdGh1Ym93bmVyL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldw==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "74149e50-2036-4d17-82e5-2b80be097e81" + "9713b7d2-f5f9-4a0d-9c12-0e6867525233" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2214,16 +2271,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1177" + "1199" ], "x-ms-request-id": [ - "79adcfbe-1417-4378-b8c4-9b6beb2a5360" + "bd1c0d46-5493-4a12-af1f-6965e0baef21" ], "x-ms-correlation-request-id": [ - "79adcfbe-1417-4378-b8c4-9b6beb2a5360" + "bd1c0d46-5493-4a12-af1f-6965e0baef21" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195419Z:79adcfbe-1417-4378-b8c4-9b6beb2a5360" + "WESTUS2:20200730T203450Z:bd1c0d46-5493-4a12-af1f-6965e0baef21" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2232,7 +2289,7 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:54:18 GMT" + "Thu, 30 Jul 2020 20:34:50 GMT" ], "Content-Length": [ "203" @@ -2244,23 +2301,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"6dkgZ7ZrvZlarOF9noEc3/TwYGBT94oiSpDOmYFmLFw=\",\r\n \"secondaryKey\": \"iYej6IcfzTX92C32Hr3JTRg8kKbbgjuThQiyiN5WC1M=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n}", + "ResponseBody": "{\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"0VEbS7PaKLW7NdpajcOPPJYElC9Cn1I7k2Ghlp5q4Og=\",\r\n \"secondaryKey\": \"6aWkL9fRj+qakbT1W1w0MZ2xW5LYLxxDX8cgrIAuJnE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODA2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU3ODUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczcyMi9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "11bfa3c2-0a2e-4332-bdfa-1ca393373449" + "b51b7a36-d065-4cab-acea-48948f583623" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2277,16 +2334,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1176" + "1198" ], "x-ms-request-id": [ - "f95b901d-3735-4647-9554-53b28ce24769" + "0691469b-a97c-419f-afde-d680b2f27903" ], "x-ms-correlation-request-id": [ - "f95b901d-3735-4647-9554-53b28ce24769" + "0691469b-a97c-419f-afde-d680b2f27903" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195420Z:f95b901d-3735-4647-9554-53b28ce24769" + "WESTUS2:20200730T203451Z:0691469b-a97c-419f-afde-d680b2f27903" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2295,7 +2352,7 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:54:19 GMT" + "Thu, 30 Jul 2020 20:34:51 GMT" ], "Content-Length": [ "905" @@ -2307,23 +2364,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"6dkgZ7ZrvZlarOF9noEc3/TwYGBT94oiSpDOmYFmLFw=\",\r\n \"secondaryKey\": \"iYej6IcfzTX92C32Hr3JTRg8kKbbgjuThQiyiN5WC1M=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"x3VGvZSk1z3mN6xh2uuzlxMJPvJ+R/yWNyGn7UPLSwc=\",\r\n \"secondaryKey\": \"+i5LIfPsbdVd6IGf7oteDOLzdk5Qi6shCUXEr0uqotc=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"1/Mz6m15kR+mLjgtFhpLa4dAVJW31VWjRnG8BPdS8yw=\",\r\n \"secondaryKey\": \"tIG+dX8vQ29FjtFXFNDt22EE3ps2U8egPdQCiu0mKPI=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"OOmuD5+FmWINye38MqLtvS5AumV7K+2vraH4sSfLv8s=\",\r\n \"secondaryKey\": \"Su89kOdrAxBjkVhFlJO71IoMBv3yh6RSyS7sC2vE/RQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"98gTe4vqWbVZO5fLHi6c+UqZRknTL7XvU5iIUs+y8GA=\",\r\n \"secondaryKey\": \"cknP3NzjuB6oEyyBszEgPmaj7wvY7KEeBvVMiJGyRhM=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"0VEbS7PaKLW7NdpajcOPPJYElC9Cn1I7k2Ghlp5q4Og=\",\r\n \"secondaryKey\": \"6aWkL9fRj+qakbT1W1w0MZ2xW5LYLxxDX8cgrIAuJnE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"jg4Q3OZLZYTTQ/eeUVUp3p5+1zf4tc7xjFVlKhfwYMo=\",\r\n \"secondaryKey\": \"rRSIQxksGUEpBON8n81VLMTOFNhbDIOQoRQUk0Qwgvo=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"JqNU6qUJO1hzZDQzoFJvBHBurwj8MB2AnAyvQrIyeuI=\",\r\n \"secondaryKey\": \"1/2qDicMEWHzZ0h1dDB37j6m1NZrnOYqmnQYSRglx/k=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"NNFHW53uwjnez9bwkkienHvDGL2Raky3E91z0cKsTsc=\",\r\n \"secondaryKey\": \"yMmMtCGONLYTno0EGnXirX5IIaM/vp32GQWo5IYlKCw=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"W8OE3H2xsAFA+PxFNy8nHuWkv4nqC5twcrycUIKKGr0=\",\r\n \"secondaryKey\": \"7x0DHi5nmRW+CQJD+/uQ5sPatNQ50LmcnjdVnkmTvwo=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODA2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU3ODUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczcyMi9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "81c7f761-3d93-4f3f-9958-a180d93ea2fc" + "a9e1e0c1-46f7-4c72-bdaf-d09f61d83543" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2340,16 +2397,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1175" + "1197" ], "x-ms-request-id": [ - "8518a41d-e7d4-478d-a747-1257c5876ecf" + "42b7afa1-2c41-41ff-a544-3c60f67e2a0a" ], "x-ms-correlation-request-id": [ - "8518a41d-e7d4-478d-a747-1257c5876ecf" + "42b7afa1-2c41-41ff-a544-3c60f67e2a0a" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195421Z:8518a41d-e7d4-478d-a747-1257c5876ecf" + "WESTUS2:20200730T203452Z:42b7afa1-2c41-41ff-a544-3c60f67e2a0a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2358,7 +2415,7 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:54:20 GMT" + "Thu, 30 Jul 2020 20:34:52 GMT" ], "Content-Length": [ "905" @@ -2370,23 +2427,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"6dkgZ7ZrvZlarOF9noEc3/TwYGBT94oiSpDOmYFmLFw=\",\r\n \"secondaryKey\": \"iYej6IcfzTX92C32Hr3JTRg8kKbbgjuThQiyiN5WC1M=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"x3VGvZSk1z3mN6xh2uuzlxMJPvJ+R/yWNyGn7UPLSwc=\",\r\n \"secondaryKey\": \"+i5LIfPsbdVd6IGf7oteDOLzdk5Qi6shCUXEr0uqotc=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"1/Mz6m15kR+mLjgtFhpLa4dAVJW31VWjRnG8BPdS8yw=\",\r\n \"secondaryKey\": \"tIG+dX8vQ29FjtFXFNDt22EE3ps2U8egPdQCiu0mKPI=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"OOmuD5+FmWINye38MqLtvS5AumV7K+2vraH4sSfLv8s=\",\r\n \"secondaryKey\": \"Su89kOdrAxBjkVhFlJO71IoMBv3yh6RSyS7sC2vE/RQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"98gTe4vqWbVZO5fLHi6c+UqZRknTL7XvU5iIUs+y8GA=\",\r\n \"secondaryKey\": \"cknP3NzjuB6oEyyBszEgPmaj7wvY7KEeBvVMiJGyRhM=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"0VEbS7PaKLW7NdpajcOPPJYElC9Cn1I7k2Ghlp5q4Og=\",\r\n \"secondaryKey\": \"6aWkL9fRj+qakbT1W1w0MZ2xW5LYLxxDX8cgrIAuJnE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"jg4Q3OZLZYTTQ/eeUVUp3p5+1zf4tc7xjFVlKhfwYMo=\",\r\n \"secondaryKey\": \"rRSIQxksGUEpBON8n81VLMTOFNhbDIOQoRQUk0Qwgvo=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"JqNU6qUJO1hzZDQzoFJvBHBurwj8MB2AnAyvQrIyeuI=\",\r\n \"secondaryKey\": \"1/2qDicMEWHzZ0h1dDB37j6m1NZrnOYqmnQYSRglx/k=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"NNFHW53uwjnez9bwkkienHvDGL2Raky3E91z0cKsTsc=\",\r\n \"secondaryKey\": \"yMmMtCGONLYTno0EGnXirX5IIaM/vp32GQWo5IYlKCw=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"W8OE3H2xsAFA+PxFNy8nHuWkv4nqC5twcrycUIKKGr0=\",\r\n \"secondaryKey\": \"7x0DHi5nmRW+CQJD+/uQ5sPatNQ50LmcnjdVnkmTvwo=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODA2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU3ODUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczcyMi9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "db644245-7865-47bf-af00-8924a9bfe8b9" + "8555a953-434c-4f84-8fdf-63d3be93d74d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2403,16 +2460,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1174" + "1196" ], "x-ms-request-id": [ - "7f9ba22b-f7a1-45bb-96f0-e1aa9f269882" + "3fdc8e56-e094-46a5-aac3-4b29c5a0d8b1" ], "x-ms-correlation-request-id": [ - "7f9ba22b-f7a1-45bb-96f0-e1aa9f269882" + "3fdc8e56-e094-46a5-aac3-4b29c5a0d8b1" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195422Z:7f9ba22b-f7a1-45bb-96f0-e1aa9f269882" + "WESTUS2:20200730T203453Z:3fdc8e56-e094-46a5-aac3-4b29c5a0d8b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2421,7 +2478,7 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:54:21 GMT" + "Thu, 30 Jul 2020 20:34:53 GMT" ], "Content-Length": [ "905" @@ -2433,23 +2490,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"6dkgZ7ZrvZlarOF9noEc3/TwYGBT94oiSpDOmYFmLFw=\",\r\n \"secondaryKey\": \"iYej6IcfzTX92C32Hr3JTRg8kKbbgjuThQiyiN5WC1M=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"x3VGvZSk1z3mN6xh2uuzlxMJPvJ+R/yWNyGn7UPLSwc=\",\r\n \"secondaryKey\": \"+i5LIfPsbdVd6IGf7oteDOLzdk5Qi6shCUXEr0uqotc=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"1/Mz6m15kR+mLjgtFhpLa4dAVJW31VWjRnG8BPdS8yw=\",\r\n \"secondaryKey\": \"tIG+dX8vQ29FjtFXFNDt22EE3ps2U8egPdQCiu0mKPI=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"OOmuD5+FmWINye38MqLtvS5AumV7K+2vraH4sSfLv8s=\",\r\n \"secondaryKey\": \"Su89kOdrAxBjkVhFlJO71IoMBv3yh6RSyS7sC2vE/RQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"98gTe4vqWbVZO5fLHi6c+UqZRknTL7XvU5iIUs+y8GA=\",\r\n \"secondaryKey\": \"cknP3NzjuB6oEyyBszEgPmaj7wvY7KEeBvVMiJGyRhM=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"0VEbS7PaKLW7NdpajcOPPJYElC9Cn1I7k2Ghlp5q4Og=\",\r\n \"secondaryKey\": \"6aWkL9fRj+qakbT1W1w0MZ2xW5LYLxxDX8cgrIAuJnE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"jg4Q3OZLZYTTQ/eeUVUp3p5+1zf4tc7xjFVlKhfwYMo=\",\r\n \"secondaryKey\": \"rRSIQxksGUEpBON8n81VLMTOFNhbDIOQoRQUk0Qwgvo=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"JqNU6qUJO1hzZDQzoFJvBHBurwj8MB2AnAyvQrIyeuI=\",\r\n \"secondaryKey\": \"1/2qDicMEWHzZ0h1dDB37j6m1NZrnOYqmnQYSRglx/k=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"NNFHW53uwjnez9bwkkienHvDGL2Raky3E91z0cKsTsc=\",\r\n \"secondaryKey\": \"yMmMtCGONLYTno0EGnXirX5IIaM/vp32GQWo5IYlKCw=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"W8OE3H2xsAFA+PxFNy8nHuWkv4nqC5twcrycUIKKGr0=\",\r\n \"secondaryKey\": \"7x0DHi5nmRW+CQJD+/uQ5sPatNQ50LmcnjdVnkmTvwo=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODA2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU3ODUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczcyMi9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "43b429f2-3cb8-40b0-9e80-50bcf03ccee7" + "596b7a07-ca7f-47ec-a32c-406c1b01c80e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2466,16 +2523,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1173" + "1195" ], "x-ms-request-id": [ - "ff9c7580-ad65-444d-a17a-6f51c0c1475d" + "72a84b51-67ce-4645-99a6-bdfec0c80229" ], "x-ms-correlation-request-id": [ - "ff9c7580-ad65-444d-a17a-6f51c0c1475d" + "72a84b51-67ce-4645-99a6-bdfec0c80229" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195423Z:ff9c7580-ad65-444d-a17a-6f51c0c1475d" + "WESTUS2:20200730T203454Z:72a84b51-67ce-4645-99a6-bdfec0c80229" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2484,7 +2541,7 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:54:22 GMT" + "Thu, 30 Jul 2020 20:34:54 GMT" ], "Content-Length": [ "905" @@ -2496,23 +2553,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"6dkgZ7ZrvZlarOF9noEc3/TwYGBT94oiSpDOmYFmLFw=\",\r\n \"secondaryKey\": \"iYej6IcfzTX92C32Hr3JTRg8kKbbgjuThQiyiN5WC1M=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"x3VGvZSk1z3mN6xh2uuzlxMJPvJ+R/yWNyGn7UPLSwc=\",\r\n \"secondaryKey\": \"+i5LIfPsbdVd6IGf7oteDOLzdk5Qi6shCUXEr0uqotc=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"1/Mz6m15kR+mLjgtFhpLa4dAVJW31VWjRnG8BPdS8yw=\",\r\n \"secondaryKey\": \"tIG+dX8vQ29FjtFXFNDt22EE3ps2U8egPdQCiu0mKPI=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"OOmuD5+FmWINye38MqLtvS5AumV7K+2vraH4sSfLv8s=\",\r\n \"secondaryKey\": \"Su89kOdrAxBjkVhFlJO71IoMBv3yh6RSyS7sC2vE/RQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"98gTe4vqWbVZO5fLHi6c+UqZRknTL7XvU5iIUs+y8GA=\",\r\n \"secondaryKey\": \"cknP3NzjuB6oEyyBszEgPmaj7wvY7KEeBvVMiJGyRhM=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"0VEbS7PaKLW7NdpajcOPPJYElC9Cn1I7k2Ghlp5q4Og=\",\r\n \"secondaryKey\": \"6aWkL9fRj+qakbT1W1w0MZ2xW5LYLxxDX8cgrIAuJnE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"jg4Q3OZLZYTTQ/eeUVUp3p5+1zf4tc7xjFVlKhfwYMo=\",\r\n \"secondaryKey\": \"rRSIQxksGUEpBON8n81VLMTOFNhbDIOQoRQUk0Qwgvo=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"JqNU6qUJO1hzZDQzoFJvBHBurwj8MB2AnAyvQrIyeuI=\",\r\n \"secondaryKey\": \"1/2qDicMEWHzZ0h1dDB37j6m1NZrnOYqmnQYSRglx/k=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"NNFHW53uwjnez9bwkkienHvDGL2Raky3E91z0cKsTsc=\",\r\n \"secondaryKey\": \"yMmMtCGONLYTno0EGnXirX5IIaM/vp32GQWo5IYlKCw=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"W8OE3H2xsAFA+PxFNy8nHuWkv4nqC5twcrycUIKKGr0=\",\r\n \"secondaryKey\": \"7x0DHi5nmRW+CQJD+/uQ5sPatNQ50LmcnjdVnkmTvwo=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODA2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU3ODUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczcyMi9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "23758329-caaf-4677-b9ef-f044e63dd302" + "75940cc5-fe96-4a98-a841-72f26adb2c58" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2529,16 +2586,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1172" + "1194" ], "x-ms-request-id": [ - "f3585fa9-56cc-4e60-b2e6-3e3e0e5d2e4d" + "8197bb16-4d02-4990-8ddc-7b221a820572" ], "x-ms-correlation-request-id": [ - "f3585fa9-56cc-4e60-b2e6-3e3e0e5d2e4d" + "8197bb16-4d02-4990-8ddc-7b221a820572" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195424Z:f3585fa9-56cc-4e60-b2e6-3e3e0e5d2e4d" + "WESTUS2:20200730T203455Z:8197bb16-4d02-4990-8ddc-7b221a820572" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2547,7 +2604,7 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:54:24 GMT" + "Thu, 30 Jul 2020 20:34:54 GMT" ], "Content-Length": [ "905" @@ -2559,23 +2616,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"6dkgZ7ZrvZlarOF9noEc3/TwYGBT94oiSpDOmYFmLFw=\",\r\n \"secondaryKey\": \"iYej6IcfzTX92C32Hr3JTRg8kKbbgjuThQiyiN5WC1M=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"x3VGvZSk1z3mN6xh2uuzlxMJPvJ+R/yWNyGn7UPLSwc=\",\r\n \"secondaryKey\": \"+i5LIfPsbdVd6IGf7oteDOLzdk5Qi6shCUXEr0uqotc=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"1/Mz6m15kR+mLjgtFhpLa4dAVJW31VWjRnG8BPdS8yw=\",\r\n \"secondaryKey\": \"tIG+dX8vQ29FjtFXFNDt22EE3ps2U8egPdQCiu0mKPI=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"OOmuD5+FmWINye38MqLtvS5AumV7K+2vraH4sSfLv8s=\",\r\n \"secondaryKey\": \"Su89kOdrAxBjkVhFlJO71IoMBv3yh6RSyS7sC2vE/RQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"98gTe4vqWbVZO5fLHi6c+UqZRknTL7XvU5iIUs+y8GA=\",\r\n \"secondaryKey\": \"cknP3NzjuB6oEyyBszEgPmaj7wvY7KEeBvVMiJGyRhM=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"0VEbS7PaKLW7NdpajcOPPJYElC9Cn1I7k2Ghlp5q4Og=\",\r\n \"secondaryKey\": \"6aWkL9fRj+qakbT1W1w0MZ2xW5LYLxxDX8cgrIAuJnE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"jg4Q3OZLZYTTQ/eeUVUp3p5+1zf4tc7xjFVlKhfwYMo=\",\r\n \"secondaryKey\": \"rRSIQxksGUEpBON8n81VLMTOFNhbDIOQoRQUk0Qwgvo=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"JqNU6qUJO1hzZDQzoFJvBHBurwj8MB2AnAyvQrIyeuI=\",\r\n \"secondaryKey\": \"1/2qDicMEWHzZ0h1dDB37j6m1NZrnOYqmnQYSRglx/k=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"NNFHW53uwjnez9bwkkienHvDGL2Raky3E91z0cKsTsc=\",\r\n \"secondaryKey\": \"yMmMtCGONLYTno0EGnXirX5IIaM/vp32GQWo5IYlKCw=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"W8OE3H2xsAFA+PxFNy8nHuWkv4nqC5twcrycUIKKGr0=\",\r\n \"secondaryKey\": \"7x0DHi5nmRW+CQJD+/uQ5sPatNQ50LmcnjdVnkmTvwo=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODA2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU3ODUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczcyMi9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c684276d-379b-4c95-8b39-29dad4ea6017" + "7a310b99-cd1d-4d7f-b91f-9af1a8fe3731" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2592,16 +2649,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1171" + "1193" ], "x-ms-request-id": [ - "8149ad48-c3ad-47a9-9a30-7f4a93f6e230" + "0d71b6ff-7692-466f-a9ae-f2c54214c9fd" ], "x-ms-correlation-request-id": [ - "8149ad48-c3ad-47a9-9a30-7f4a93f6e230" + "0d71b6ff-7692-466f-a9ae-f2c54214c9fd" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195426Z:8149ad48-c3ad-47a9-9a30-7f4a93f6e230" + "WESTUS2:20200730T203456Z:0d71b6ff-7692-466f-a9ae-f2c54214c9fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2610,7 +2667,7 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:54:26 GMT" + "Thu, 30 Jul 2020 20:34:56 GMT" ], "Content-Length": [ "905" @@ -2622,23 +2679,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"6dkgZ7ZrvZlarOF9noEc3/TwYGBT94oiSpDOmYFmLFw=\",\r\n \"secondaryKey\": \"iYej6IcfzTX92C32Hr3JTRg8kKbbgjuThQiyiN5WC1M=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"x3VGvZSk1z3mN6xh2uuzlxMJPvJ+R/yWNyGn7UPLSwc=\",\r\n \"secondaryKey\": \"+i5LIfPsbdVd6IGf7oteDOLzdk5Qi6shCUXEr0uqotc=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"1/Mz6m15kR+mLjgtFhpLa4dAVJW31VWjRnG8BPdS8yw=\",\r\n \"secondaryKey\": \"tIG+dX8vQ29FjtFXFNDt22EE3ps2U8egPdQCiu0mKPI=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"OOmuD5+FmWINye38MqLtvS5AumV7K+2vraH4sSfLv8s=\",\r\n \"secondaryKey\": \"Su89kOdrAxBjkVhFlJO71IoMBv3yh6RSyS7sC2vE/RQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"98gTe4vqWbVZO5fLHi6c+UqZRknTL7XvU5iIUs+y8GA=\",\r\n \"secondaryKey\": \"cknP3NzjuB6oEyyBszEgPmaj7wvY7KEeBvVMiJGyRhM=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"0VEbS7PaKLW7NdpajcOPPJYElC9Cn1I7k2Ghlp5q4Og=\",\r\n \"secondaryKey\": \"6aWkL9fRj+qakbT1W1w0MZ2xW5LYLxxDX8cgrIAuJnE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"jg4Q3OZLZYTTQ/eeUVUp3p5+1zf4tc7xjFVlKhfwYMo=\",\r\n \"secondaryKey\": \"rRSIQxksGUEpBON8n81VLMTOFNhbDIOQoRQUk0Qwgvo=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"JqNU6qUJO1hzZDQzoFJvBHBurwj8MB2AnAyvQrIyeuI=\",\r\n \"secondaryKey\": \"1/2qDicMEWHzZ0h1dDB37j6m1NZrnOYqmnQYSRglx/k=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"NNFHW53uwjnez9bwkkienHvDGL2Raky3E91z0cKsTsc=\",\r\n \"secondaryKey\": \"yMmMtCGONLYTno0EGnXirX5IIaM/vp32GQWo5IYlKCw=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"W8OE3H2xsAFA+PxFNy8nHuWkv4nqC5twcrycUIKKGr0=\",\r\n \"secondaryKey\": \"7x0DHi5nmRW+CQJD+/uQ5sPatNQ50LmcnjdVnkmTvwo=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODA2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU3ODUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczcyMi9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d147ff9c-3c76-43e3-ba44-d78659edd49a" + "ab3139ab-a0ca-405e-afa0-f3252744bdbb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2655,16 +2712,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1170" + "1192" ], "x-ms-request-id": [ - "ae1a5b26-4e42-4e22-841e-ec3fdbca0976" + "0eaab82f-fc97-492e-ab98-d1cdc088d14a" ], "x-ms-correlation-request-id": [ - "ae1a5b26-4e42-4e22-841e-ec3fdbca0976" + "0eaab82f-fc97-492e-ab98-d1cdc088d14a" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195427Z:ae1a5b26-4e42-4e22-841e-ec3fdbca0976" + "WESTUS2:20200730T203457Z:0eaab82f-fc97-492e-ab98-d1cdc088d14a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2673,7 +2730,7 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:54:27 GMT" + "Thu, 30 Jul 2020 20:34:57 GMT" ], "Content-Length": [ "905" @@ -2685,23 +2742,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"6dkgZ7ZrvZlarOF9noEc3/TwYGBT94oiSpDOmYFmLFw=\",\r\n \"secondaryKey\": \"iYej6IcfzTX92C32Hr3JTRg8kKbbgjuThQiyiN5WC1M=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"x3VGvZSk1z3mN6xh2uuzlxMJPvJ+R/yWNyGn7UPLSwc=\",\r\n \"secondaryKey\": \"+i5LIfPsbdVd6IGf7oteDOLzdk5Qi6shCUXEr0uqotc=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"1/Mz6m15kR+mLjgtFhpLa4dAVJW31VWjRnG8BPdS8yw=\",\r\n \"secondaryKey\": \"tIG+dX8vQ29FjtFXFNDt22EE3ps2U8egPdQCiu0mKPI=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"OOmuD5+FmWINye38MqLtvS5AumV7K+2vraH4sSfLv8s=\",\r\n \"secondaryKey\": \"Su89kOdrAxBjkVhFlJO71IoMBv3yh6RSyS7sC2vE/RQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"98gTe4vqWbVZO5fLHi6c+UqZRknTL7XvU5iIUs+y8GA=\",\r\n \"secondaryKey\": \"cknP3NzjuB6oEyyBszEgPmaj7wvY7KEeBvVMiJGyRhM=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"0VEbS7PaKLW7NdpajcOPPJYElC9Cn1I7k2Ghlp5q4Og=\",\r\n \"secondaryKey\": \"6aWkL9fRj+qakbT1W1w0MZ2xW5LYLxxDX8cgrIAuJnE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"jg4Q3OZLZYTTQ/eeUVUp3p5+1zf4tc7xjFVlKhfwYMo=\",\r\n \"secondaryKey\": \"rRSIQxksGUEpBON8n81VLMTOFNhbDIOQoRQUk0Qwgvo=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"JqNU6qUJO1hzZDQzoFJvBHBurwj8MB2AnAyvQrIyeuI=\",\r\n \"secondaryKey\": \"1/2qDicMEWHzZ0h1dDB37j6m1NZrnOYqmnQYSRglx/k=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"NNFHW53uwjnez9bwkkienHvDGL2Raky3E91z0cKsTsc=\",\r\n \"secondaryKey\": \"yMmMtCGONLYTno0EGnXirX5IIaM/vp32GQWo5IYlKCw=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"W8OE3H2xsAFA+PxFNy8nHuWkv4nqC5twcrycUIKKGr0=\",\r\n \"secondaryKey\": \"7x0DHi5nmRW+CQJD+/uQ5sPatNQ50LmcnjdVnkmTvwo=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODA2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU3ODUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczcyMi9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "142abbfa-1429-4b55-bd0c-1f4e62d84518" + "ab4adb80-7dba-4ef1-bf82-b26d9762ed21" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2718,16 +2775,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1169" + "1191" ], "x-ms-request-id": [ - "8c78ca08-e366-4ace-bbd3-de0fc35c40a7" + "e4bdfd82-e93c-4ac9-bb09-11f4682109f6" ], "x-ms-correlation-request-id": [ - "8c78ca08-e366-4ace-bbd3-de0fc35c40a7" + "e4bdfd82-e93c-4ac9-bb09-11f4682109f6" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195428Z:8c78ca08-e366-4ace-bbd3-de0fc35c40a7" + "WESTUS2:20200730T203458Z:e4bdfd82-e93c-4ac9-bb09-11f4682109f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2736,7 +2793,7 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:54:28 GMT" + "Thu, 30 Jul 2020 20:34:58 GMT" ], "Content-Length": [ "905" @@ -2748,23 +2805,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"6dkgZ7ZrvZlarOF9noEc3/TwYGBT94oiSpDOmYFmLFw=\",\r\n \"secondaryKey\": \"iYej6IcfzTX92C32Hr3JTRg8kKbbgjuThQiyiN5WC1M=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"x3VGvZSk1z3mN6xh2uuzlxMJPvJ+R/yWNyGn7UPLSwc=\",\r\n \"secondaryKey\": \"+i5LIfPsbdVd6IGf7oteDOLzdk5Qi6shCUXEr0uqotc=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"1/Mz6m15kR+mLjgtFhpLa4dAVJW31VWjRnG8BPdS8yw=\",\r\n \"secondaryKey\": \"tIG+dX8vQ29FjtFXFNDt22EE3ps2U8egPdQCiu0mKPI=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"OOmuD5+FmWINye38MqLtvS5AumV7K+2vraH4sSfLv8s=\",\r\n \"secondaryKey\": \"Su89kOdrAxBjkVhFlJO71IoMBv3yh6RSyS7sC2vE/RQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"98gTe4vqWbVZO5fLHi6c+UqZRknTL7XvU5iIUs+y8GA=\",\r\n \"secondaryKey\": \"cknP3NzjuB6oEyyBszEgPmaj7wvY7KEeBvVMiJGyRhM=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"0VEbS7PaKLW7NdpajcOPPJYElC9Cn1I7k2Ghlp5q4Og=\",\r\n \"secondaryKey\": \"6aWkL9fRj+qakbT1W1w0MZ2xW5LYLxxDX8cgrIAuJnE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"jg4Q3OZLZYTTQ/eeUVUp3p5+1zf4tc7xjFVlKhfwYMo=\",\r\n \"secondaryKey\": \"rRSIQxksGUEpBON8n81VLMTOFNhbDIOQoRQUk0Qwgvo=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"JqNU6qUJO1hzZDQzoFJvBHBurwj8MB2AnAyvQrIyeuI=\",\r\n \"secondaryKey\": \"1/2qDicMEWHzZ0h1dDB37j6m1NZrnOYqmnQYSRglx/k=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"NNFHW53uwjnez9bwkkienHvDGL2Raky3E91z0cKsTsc=\",\r\n \"secondaryKey\": \"yMmMtCGONLYTno0EGnXirX5IIaM/vp32GQWo5IYlKCw=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"W8OE3H2xsAFA+PxFNy8nHuWkv4nqC5twcrycUIKKGr0=\",\r\n \"secondaryKey\": \"7x0DHi5nmRW+CQJD+/uQ5sPatNQ50LmcnjdVnkmTvwo=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODA2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU3ODUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczcyMi9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f2f4f1b6-c2d6-4344-96ec-9fd35b9ba6c1" + "011e5342-bb9d-4d2e-adeb-3ca19ef7f99e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2781,16 +2838,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1168" + "1190" ], "x-ms-request-id": [ - "a939fbed-7153-4c49-a532-5a99077bf288" + "920b27f2-dfef-42b5-b37a-91eacf61d051" ], "x-ms-correlation-request-id": [ - "a939fbed-7153-4c49-a532-5a99077bf288" + "920b27f2-dfef-42b5-b37a-91eacf61d051" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195429Z:a939fbed-7153-4c49-a532-5a99077bf288" + "WESTUS2:20200730T203459Z:920b27f2-dfef-42b5-b37a-91eacf61d051" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2799,7 +2856,7 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:54:29 GMT" + "Thu, 30 Jul 2020 20:34:59 GMT" ], "Content-Length": [ "905" @@ -2811,23 +2868,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"6dkgZ7ZrvZlarOF9noEc3/TwYGBT94oiSpDOmYFmLFw=\",\r\n \"secondaryKey\": \"iYej6IcfzTX92C32Hr3JTRg8kKbbgjuThQiyiN5WC1M=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"x3VGvZSk1z3mN6xh2uuzlxMJPvJ+R/yWNyGn7UPLSwc=\",\r\n \"secondaryKey\": \"+i5LIfPsbdVd6IGf7oteDOLzdk5Qi6shCUXEr0uqotc=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"1/Mz6m15kR+mLjgtFhpLa4dAVJW31VWjRnG8BPdS8yw=\",\r\n \"secondaryKey\": \"tIG+dX8vQ29FjtFXFNDt22EE3ps2U8egPdQCiu0mKPI=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"OOmuD5+FmWINye38MqLtvS5AumV7K+2vraH4sSfLv8s=\",\r\n \"secondaryKey\": \"Su89kOdrAxBjkVhFlJO71IoMBv3yh6RSyS7sC2vE/RQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"98gTe4vqWbVZO5fLHi6c+UqZRknTL7XvU5iIUs+y8GA=\",\r\n \"secondaryKey\": \"cknP3NzjuB6oEyyBszEgPmaj7wvY7KEeBvVMiJGyRhM=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"0VEbS7PaKLW7NdpajcOPPJYElC9Cn1I7k2Ghlp5q4Og=\",\r\n \"secondaryKey\": \"6aWkL9fRj+qakbT1W1w0MZ2xW5LYLxxDX8cgrIAuJnE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"jg4Q3OZLZYTTQ/eeUVUp3p5+1zf4tc7xjFVlKhfwYMo=\",\r\n \"secondaryKey\": \"rRSIQxksGUEpBON8n81VLMTOFNhbDIOQoRQUk0Qwgvo=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"JqNU6qUJO1hzZDQzoFJvBHBurwj8MB2AnAyvQrIyeuI=\",\r\n \"secondaryKey\": \"1/2qDicMEWHzZ0h1dDB37j6m1NZrnOYqmnQYSRglx/k=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"NNFHW53uwjnez9bwkkienHvDGL2Raky3E91z0cKsTsc=\",\r\n \"secondaryKey\": \"yMmMtCGONLYTno0EGnXirX5IIaM/vp32GQWo5IYlKCw=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"W8OE3H2xsAFA+PxFNy8nHuWkv4nqC5twcrycUIKKGr0=\",\r\n \"secondaryKey\": \"7x0DHi5nmRW+CQJD+/uQ5sPatNQ50LmcnjdVnkmTvwo=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODA2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU3ODUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczcyMi9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a4c9c6e8-1189-49bc-9ab5-c7ee0d3fc350" + "1f9b96bf-e421-4e07-935b-f9223a2596e0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2844,16 +2901,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1167" + "1189" ], "x-ms-request-id": [ - "42cb72d9-4d52-4e00-b9ce-6adddf77baec" + "d99195cb-8fc8-47b6-9d2b-794986270f59" ], "x-ms-correlation-request-id": [ - "42cb72d9-4d52-4e00-b9ce-6adddf77baec" + "d99195cb-8fc8-47b6-9d2b-794986270f59" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195430Z:42cb72d9-4d52-4e00-b9ce-6adddf77baec" + "WESTUS2:20200730T203500Z:d99195cb-8fc8-47b6-9d2b-794986270f59" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2862,7 +2919,7 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:54:30 GMT" + "Thu, 30 Jul 2020 20:35:00 GMT" ], "Content-Length": [ "905" @@ -2874,23 +2931,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"6dkgZ7ZrvZlarOF9noEc3/TwYGBT94oiSpDOmYFmLFw=\",\r\n \"secondaryKey\": \"iYej6IcfzTX92C32Hr3JTRg8kKbbgjuThQiyiN5WC1M=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"x3VGvZSk1z3mN6xh2uuzlxMJPvJ+R/yWNyGn7UPLSwc=\",\r\n \"secondaryKey\": \"+i5LIfPsbdVd6IGf7oteDOLzdk5Qi6shCUXEr0uqotc=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"1/Mz6m15kR+mLjgtFhpLa4dAVJW31VWjRnG8BPdS8yw=\",\r\n \"secondaryKey\": \"tIG+dX8vQ29FjtFXFNDt22EE3ps2U8egPdQCiu0mKPI=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"OOmuD5+FmWINye38MqLtvS5AumV7K+2vraH4sSfLv8s=\",\r\n \"secondaryKey\": \"Su89kOdrAxBjkVhFlJO71IoMBv3yh6RSyS7sC2vE/RQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"98gTe4vqWbVZO5fLHi6c+UqZRknTL7XvU5iIUs+y8GA=\",\r\n \"secondaryKey\": \"cknP3NzjuB6oEyyBszEgPmaj7wvY7KEeBvVMiJGyRhM=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"0VEbS7PaKLW7NdpajcOPPJYElC9Cn1I7k2Ghlp5q4Og=\",\r\n \"secondaryKey\": \"6aWkL9fRj+qakbT1W1w0MZ2xW5LYLxxDX8cgrIAuJnE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"jg4Q3OZLZYTTQ/eeUVUp3p5+1zf4tc7xjFVlKhfwYMo=\",\r\n \"secondaryKey\": \"rRSIQxksGUEpBON8n81VLMTOFNhbDIOQoRQUk0Qwgvo=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"JqNU6qUJO1hzZDQzoFJvBHBurwj8MB2AnAyvQrIyeuI=\",\r\n \"secondaryKey\": \"1/2qDicMEWHzZ0h1dDB37j6m1NZrnOYqmnQYSRglx/k=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"NNFHW53uwjnez9bwkkienHvDGL2Raky3E91z0cKsTsc=\",\r\n \"secondaryKey\": \"yMmMtCGONLYTno0EGnXirX5IIaM/vp32GQWo5IYlKCw=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"W8OE3H2xsAFA+PxFNy8nHuWkv4nqC5twcrycUIKKGr0=\",\r\n \"secondaryKey\": \"7x0DHi5nmRW+CQJD+/uQ5sPatNQ50LmcnjdVnkmTvwo=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODA2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU3ODUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczcyMi9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3c937c20-daeb-4acd-a24d-7f0ac088ada2" + "aa6caabd-ee42-4ce2-9015-5b6a9b472318" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2907,16 +2964,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1166" + "1188" ], "x-ms-request-id": [ - "fc4b49ad-f9b8-4a86-bfa0-83c83b481c09" + "00e217e3-3b16-4266-a129-170af457068c" ], "x-ms-correlation-request-id": [ - "fc4b49ad-f9b8-4a86-bfa0-83c83b481c09" + "00e217e3-3b16-4266-a129-170af457068c" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195431Z:fc4b49ad-f9b8-4a86-bfa0-83c83b481c09" + "WESTUS2:20200730T203501Z:00e217e3-3b16-4266-a129-170af457068c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2925,7 +2982,7 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:54:31 GMT" + "Thu, 30 Jul 2020 20:35:01 GMT" ], "Content-Length": [ "905" @@ -2937,23 +2994,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"6dkgZ7ZrvZlarOF9noEc3/TwYGBT94oiSpDOmYFmLFw=\",\r\n \"secondaryKey\": \"iYej6IcfzTX92C32Hr3JTRg8kKbbgjuThQiyiN5WC1M=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"x3VGvZSk1z3mN6xh2uuzlxMJPvJ+R/yWNyGn7UPLSwc=\",\r\n \"secondaryKey\": \"+i5LIfPsbdVd6IGf7oteDOLzdk5Qi6shCUXEr0uqotc=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"1/Mz6m15kR+mLjgtFhpLa4dAVJW31VWjRnG8BPdS8yw=\",\r\n \"secondaryKey\": \"tIG+dX8vQ29FjtFXFNDt22EE3ps2U8egPdQCiu0mKPI=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"OOmuD5+FmWINye38MqLtvS5AumV7K+2vraH4sSfLv8s=\",\r\n \"secondaryKey\": \"Su89kOdrAxBjkVhFlJO71IoMBv3yh6RSyS7sC2vE/RQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"98gTe4vqWbVZO5fLHi6c+UqZRknTL7XvU5iIUs+y8GA=\",\r\n \"secondaryKey\": \"cknP3NzjuB6oEyyBszEgPmaj7wvY7KEeBvVMiJGyRhM=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"0VEbS7PaKLW7NdpajcOPPJYElC9Cn1I7k2Ghlp5q4Og=\",\r\n \"secondaryKey\": \"6aWkL9fRj+qakbT1W1w0MZ2xW5LYLxxDX8cgrIAuJnE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"jg4Q3OZLZYTTQ/eeUVUp3p5+1zf4tc7xjFVlKhfwYMo=\",\r\n \"secondaryKey\": \"rRSIQxksGUEpBON8n81VLMTOFNhbDIOQoRQUk0Qwgvo=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"JqNU6qUJO1hzZDQzoFJvBHBurwj8MB2AnAyvQrIyeuI=\",\r\n \"secondaryKey\": \"1/2qDicMEWHzZ0h1dDB37j6m1NZrnOYqmnQYSRglx/k=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"NNFHW53uwjnez9bwkkienHvDGL2Raky3E91z0cKsTsc=\",\r\n \"secondaryKey\": \"yMmMtCGONLYTno0EGnXirX5IIaM/vp32GQWo5IYlKCw=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"W8OE3H2xsAFA+PxFNy8nHuWkv4nqC5twcrycUIKKGr0=\",\r\n \"secondaryKey\": \"7x0DHi5nmRW+CQJD+/uQ5sPatNQ50LmcnjdVnkmTvwo=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODA2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU3ODUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczcyMi9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7d846052-f942-4d0a-940e-19881c9cedc7" + "7e3ea068-9266-4d79-9673-72069d7dfdfb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2970,16 +3027,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1165" + "1187" ], "x-ms-request-id": [ - "46ac2116-e7bd-48c2-857b-2b1f652affe0" + "8bd3bb3b-2099-48ce-8877-e3213f5e4410" ], "x-ms-correlation-request-id": [ - "46ac2116-e7bd-48c2-857b-2b1f652affe0" + "8bd3bb3b-2099-48ce-8877-e3213f5e4410" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195432Z:46ac2116-e7bd-48c2-857b-2b1f652affe0" + "WESTUS2:20200730T203502Z:8bd3bb3b-2099-48ce-8877-e3213f5e4410" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2988,7 +3045,7 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:54:32 GMT" + "Thu, 30 Jul 2020 20:35:02 GMT" ], "Content-Length": [ "905" @@ -3000,23 +3057,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"6dkgZ7ZrvZlarOF9noEc3/TwYGBT94oiSpDOmYFmLFw=\",\r\n \"secondaryKey\": \"iYej6IcfzTX92C32Hr3JTRg8kKbbgjuThQiyiN5WC1M=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"x3VGvZSk1z3mN6xh2uuzlxMJPvJ+R/yWNyGn7UPLSwc=\",\r\n \"secondaryKey\": \"+i5LIfPsbdVd6IGf7oteDOLzdk5Qi6shCUXEr0uqotc=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"1/Mz6m15kR+mLjgtFhpLa4dAVJW31VWjRnG8BPdS8yw=\",\r\n \"secondaryKey\": \"tIG+dX8vQ29FjtFXFNDt22EE3ps2U8egPdQCiu0mKPI=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"OOmuD5+FmWINye38MqLtvS5AumV7K+2vraH4sSfLv8s=\",\r\n \"secondaryKey\": \"Su89kOdrAxBjkVhFlJO71IoMBv3yh6RSyS7sC2vE/RQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"98gTe4vqWbVZO5fLHi6c+UqZRknTL7XvU5iIUs+y8GA=\",\r\n \"secondaryKey\": \"cknP3NzjuB6oEyyBszEgPmaj7wvY7KEeBvVMiJGyRhM=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"0VEbS7PaKLW7NdpajcOPPJYElC9Cn1I7k2Ghlp5q4Og=\",\r\n \"secondaryKey\": \"6aWkL9fRj+qakbT1W1w0MZ2xW5LYLxxDX8cgrIAuJnE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"jg4Q3OZLZYTTQ/eeUVUp3p5+1zf4tc7xjFVlKhfwYMo=\",\r\n \"secondaryKey\": \"rRSIQxksGUEpBON8n81VLMTOFNhbDIOQoRQUk0Qwgvo=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"JqNU6qUJO1hzZDQzoFJvBHBurwj8MB2AnAyvQrIyeuI=\",\r\n \"secondaryKey\": \"1/2qDicMEWHzZ0h1dDB37j6m1NZrnOYqmnQYSRglx/k=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"NNFHW53uwjnez9bwkkienHvDGL2Raky3E91z0cKsTsc=\",\r\n \"secondaryKey\": \"yMmMtCGONLYTno0EGnXirX5IIaM/vp32GQWo5IYlKCw=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"W8OE3H2xsAFA+PxFNy8nHuWkv4nqC5twcrycUIKKGr0=\",\r\n \"secondaryKey\": \"7x0DHi5nmRW+CQJD+/uQ5sPatNQ50LmcnjdVnkmTvwo=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODA2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU3ODUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczcyMi9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f8c6822c-bf1b-4d1c-a2a6-01bb82b8422a" + "5394c150-1aeb-4538-b626-1c318cd58377" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3033,16 +3090,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1164" + "1186" ], "x-ms-request-id": [ - "978f77f1-ccaa-49c0-bbe8-a18f742f12eb" + "1881e271-cb0c-44f1-9938-ff5271b2d160" ], "x-ms-correlation-request-id": [ - "978f77f1-ccaa-49c0-bbe8-a18f742f12eb" + "1881e271-cb0c-44f1-9938-ff5271b2d160" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195433Z:978f77f1-ccaa-49c0-bbe8-a18f742f12eb" + "WESTUS2:20200730T203503Z:1881e271-cb0c-44f1-9938-ff5271b2d160" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3051,7 +3108,7 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:54:33 GMT" + "Thu, 30 Jul 2020 20:35:03 GMT" ], "Content-Length": [ "905" @@ -3063,23 +3120,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"6dkgZ7ZrvZlarOF9noEc3/TwYGBT94oiSpDOmYFmLFw=\",\r\n \"secondaryKey\": \"iYej6IcfzTX92C32Hr3JTRg8kKbbgjuThQiyiN5WC1M=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"x3VGvZSk1z3mN6xh2uuzlxMJPvJ+R/yWNyGn7UPLSwc=\",\r\n \"secondaryKey\": \"+i5LIfPsbdVd6IGf7oteDOLzdk5Qi6shCUXEr0uqotc=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"1/Mz6m15kR+mLjgtFhpLa4dAVJW31VWjRnG8BPdS8yw=\",\r\n \"secondaryKey\": \"tIG+dX8vQ29FjtFXFNDt22EE3ps2U8egPdQCiu0mKPI=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"OOmuD5+FmWINye38MqLtvS5AumV7K+2vraH4sSfLv8s=\",\r\n \"secondaryKey\": \"Su89kOdrAxBjkVhFlJO71IoMBv3yh6RSyS7sC2vE/RQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"98gTe4vqWbVZO5fLHi6c+UqZRknTL7XvU5iIUs+y8GA=\",\r\n \"secondaryKey\": \"cknP3NzjuB6oEyyBszEgPmaj7wvY7KEeBvVMiJGyRhM=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"0VEbS7PaKLW7NdpajcOPPJYElC9Cn1I7k2Ghlp5q4Og=\",\r\n \"secondaryKey\": \"6aWkL9fRj+qakbT1W1w0MZ2xW5LYLxxDX8cgrIAuJnE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"jg4Q3OZLZYTTQ/eeUVUp3p5+1zf4tc7xjFVlKhfwYMo=\",\r\n \"secondaryKey\": \"rRSIQxksGUEpBON8n81VLMTOFNhbDIOQoRQUk0Qwgvo=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"JqNU6qUJO1hzZDQzoFJvBHBurwj8MB2AnAyvQrIyeuI=\",\r\n \"secondaryKey\": \"1/2qDicMEWHzZ0h1dDB37j6m1NZrnOYqmnQYSRglx/k=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"NNFHW53uwjnez9bwkkienHvDGL2Raky3E91z0cKsTsc=\",\r\n \"secondaryKey\": \"yMmMtCGONLYTno0EGnXirX5IIaM/vp32GQWo5IYlKCw=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"W8OE3H2xsAFA+PxFNy8nHuWkv4nqC5twcrycUIKKGr0=\",\r\n \"secondaryKey\": \"7x0DHi5nmRW+CQJD+/uQ5sPatNQ50LmcnjdVnkmTvwo=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODA2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU3ODUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczcyMi9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5d3451d2-9f6b-4ae6-bb92-949f6be7302b" + "8a4a3047-a8fb-4b7f-b8a3-459c75c7024f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3096,16 +3153,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1163" + "1185" ], "x-ms-request-id": [ - "b5b3725a-10d6-453d-ba77-3f1ca0c80b49" + "64dd652e-1f32-40a5-8a23-e59344458582" ], "x-ms-correlation-request-id": [ - "b5b3725a-10d6-453d-ba77-3f1ca0c80b49" + "64dd652e-1f32-40a5-8a23-e59344458582" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195434Z:b5b3725a-10d6-453d-ba77-3f1ca0c80b49" + "WESTUS2:20200730T203504Z:64dd652e-1f32-40a5-8a23-e59344458582" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3114,7 +3171,7 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:54:33 GMT" + "Thu, 30 Jul 2020 20:35:04 GMT" ], "Content-Length": [ "905" @@ -3126,23 +3183,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"6dkgZ7ZrvZlarOF9noEc3/TwYGBT94oiSpDOmYFmLFw=\",\r\n \"secondaryKey\": \"iYej6IcfzTX92C32Hr3JTRg8kKbbgjuThQiyiN5WC1M=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"x3VGvZSk1z3mN6xh2uuzlxMJPvJ+R/yWNyGn7UPLSwc=\",\r\n \"secondaryKey\": \"+i5LIfPsbdVd6IGf7oteDOLzdk5Qi6shCUXEr0uqotc=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"1/Mz6m15kR+mLjgtFhpLa4dAVJW31VWjRnG8BPdS8yw=\",\r\n \"secondaryKey\": \"tIG+dX8vQ29FjtFXFNDt22EE3ps2U8egPdQCiu0mKPI=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"OOmuD5+FmWINye38MqLtvS5AumV7K+2vraH4sSfLv8s=\",\r\n \"secondaryKey\": \"Su89kOdrAxBjkVhFlJO71IoMBv3yh6RSyS7sC2vE/RQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"98gTe4vqWbVZO5fLHi6c+UqZRknTL7XvU5iIUs+y8GA=\",\r\n \"secondaryKey\": \"cknP3NzjuB6oEyyBszEgPmaj7wvY7KEeBvVMiJGyRhM=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"0VEbS7PaKLW7NdpajcOPPJYElC9Cn1I7k2Ghlp5q4Og=\",\r\n \"secondaryKey\": \"6aWkL9fRj+qakbT1W1w0MZ2xW5LYLxxDX8cgrIAuJnE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"jg4Q3OZLZYTTQ/eeUVUp3p5+1zf4tc7xjFVlKhfwYMo=\",\r\n \"secondaryKey\": \"rRSIQxksGUEpBON8n81VLMTOFNhbDIOQoRQUk0Qwgvo=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"JqNU6qUJO1hzZDQzoFJvBHBurwj8MB2AnAyvQrIyeuI=\",\r\n \"secondaryKey\": \"1/2qDicMEWHzZ0h1dDB37j6m1NZrnOYqmnQYSRglx/k=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"NNFHW53uwjnez9bwkkienHvDGL2Raky3E91z0cKsTsc=\",\r\n \"secondaryKey\": \"yMmMtCGONLYTno0EGnXirX5IIaM/vp32GQWo5IYlKCw=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"W8OE3H2xsAFA+PxFNy8nHuWkv4nqC5twcrycUIKKGr0=\",\r\n \"secondaryKey\": \"7x0DHi5nmRW+CQJD+/uQ5sPatNQ50LmcnjdVnkmTvwo=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODA2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU3ODUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczcyMi9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf3eca7a-267c-4c12-b8ba-bc44cbd887ce" + "0e6610a9-0759-4872-8884-751bd47ff2c1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3159,16 +3216,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1162" + "1184" ], "x-ms-request-id": [ - "07c1a7cb-fb1a-4b19-96bb-d89f96616897" + "50126ec6-b5c0-47a4-a30c-fab47dc6d46e" ], "x-ms-correlation-request-id": [ - "07c1a7cb-fb1a-4b19-96bb-d89f96616897" + "50126ec6-b5c0-47a4-a30c-fab47dc6d46e" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195435Z:07c1a7cb-fb1a-4b19-96bb-d89f96616897" + "WESTUS2:20200730T203505Z:50126ec6-b5c0-47a4-a30c-fab47dc6d46e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3177,7 +3234,7 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:54:34 GMT" + "Thu, 30 Jul 2020 20:35:05 GMT" ], "Content-Length": [ "905" @@ -3189,23 +3246,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"6dkgZ7ZrvZlarOF9noEc3/TwYGBT94oiSpDOmYFmLFw=\",\r\n \"secondaryKey\": \"iYej6IcfzTX92C32Hr3JTRg8kKbbgjuThQiyiN5WC1M=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"x3VGvZSk1z3mN6xh2uuzlxMJPvJ+R/yWNyGn7UPLSwc=\",\r\n \"secondaryKey\": \"+i5LIfPsbdVd6IGf7oteDOLzdk5Qi6shCUXEr0uqotc=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"1/Mz6m15kR+mLjgtFhpLa4dAVJW31VWjRnG8BPdS8yw=\",\r\n \"secondaryKey\": \"tIG+dX8vQ29FjtFXFNDt22EE3ps2U8egPdQCiu0mKPI=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"OOmuD5+FmWINye38MqLtvS5AumV7K+2vraH4sSfLv8s=\",\r\n \"secondaryKey\": \"Su89kOdrAxBjkVhFlJO71IoMBv3yh6RSyS7sC2vE/RQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"98gTe4vqWbVZO5fLHi6c+UqZRknTL7XvU5iIUs+y8GA=\",\r\n \"secondaryKey\": \"cknP3NzjuB6oEyyBszEgPmaj7wvY7KEeBvVMiJGyRhM=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"0VEbS7PaKLW7NdpajcOPPJYElC9Cn1I7k2Ghlp5q4Og=\",\r\n \"secondaryKey\": \"6aWkL9fRj+qakbT1W1w0MZ2xW5LYLxxDX8cgrIAuJnE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"jg4Q3OZLZYTTQ/eeUVUp3p5+1zf4tc7xjFVlKhfwYMo=\",\r\n \"secondaryKey\": \"rRSIQxksGUEpBON8n81VLMTOFNhbDIOQoRQUk0Qwgvo=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"JqNU6qUJO1hzZDQzoFJvBHBurwj8MB2AnAyvQrIyeuI=\",\r\n \"secondaryKey\": \"1/2qDicMEWHzZ0h1dDB37j6m1NZrnOYqmnQYSRglx/k=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"NNFHW53uwjnez9bwkkienHvDGL2Raky3E91z0cKsTsc=\",\r\n \"secondaryKey\": \"yMmMtCGONLYTno0EGnXirX5IIaM/vp32GQWo5IYlKCw=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"W8OE3H2xsAFA+PxFNy8nHuWkv4nqC5twcrycUIKKGr0=\",\r\n \"secondaryKey\": \"7x0DHi5nmRW+CQJD+/uQ5sPatNQ50LmcnjdVnkmTvwo=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODA2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU3ODUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczcyMi9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c1e99a77-041e-452c-b70d-d15453c48f82" + "0367920f-ad40-4eeb-a9a0-488d91196ff4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3222,16 +3279,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1161" + "1183" ], "x-ms-request-id": [ - "74fdbc27-e068-4fbd-b5ec-9363b70d3055" + "9bf0dca5-5eec-4725-9f62-f42b9f637103" ], "x-ms-correlation-request-id": [ - "74fdbc27-e068-4fbd-b5ec-9363b70d3055" + "9bf0dca5-5eec-4725-9f62-f42b9f637103" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195436Z:74fdbc27-e068-4fbd-b5ec-9363b70d3055" + "WESTUS2:20200730T203506Z:9bf0dca5-5eec-4725-9f62-f42b9f637103" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3240,7 +3297,7 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:54:36 GMT" + "Thu, 30 Jul 2020 20:35:05 GMT" ], "Content-Length": [ "905" @@ -3252,23 +3309,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"6dkgZ7ZrvZlarOF9noEc3/TwYGBT94oiSpDOmYFmLFw=\",\r\n \"secondaryKey\": \"iYej6IcfzTX92C32Hr3JTRg8kKbbgjuThQiyiN5WC1M=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"x3VGvZSk1z3mN6xh2uuzlxMJPvJ+R/yWNyGn7UPLSwc=\",\r\n \"secondaryKey\": \"+i5LIfPsbdVd6IGf7oteDOLzdk5Qi6shCUXEr0uqotc=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"1/Mz6m15kR+mLjgtFhpLa4dAVJW31VWjRnG8BPdS8yw=\",\r\n \"secondaryKey\": \"tIG+dX8vQ29FjtFXFNDt22EE3ps2U8egPdQCiu0mKPI=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"OOmuD5+FmWINye38MqLtvS5AumV7K+2vraH4sSfLv8s=\",\r\n \"secondaryKey\": \"Su89kOdrAxBjkVhFlJO71IoMBv3yh6RSyS7sC2vE/RQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"98gTe4vqWbVZO5fLHi6c+UqZRknTL7XvU5iIUs+y8GA=\",\r\n \"secondaryKey\": \"cknP3NzjuB6oEyyBszEgPmaj7wvY7KEeBvVMiJGyRhM=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"0VEbS7PaKLW7NdpajcOPPJYElC9Cn1I7k2Ghlp5q4Og=\",\r\n \"secondaryKey\": \"6aWkL9fRj+qakbT1W1w0MZ2xW5LYLxxDX8cgrIAuJnE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"jg4Q3OZLZYTTQ/eeUVUp3p5+1zf4tc7xjFVlKhfwYMo=\",\r\n \"secondaryKey\": \"rRSIQxksGUEpBON8n81VLMTOFNhbDIOQoRQUk0Qwgvo=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"JqNU6qUJO1hzZDQzoFJvBHBurwj8MB2AnAyvQrIyeuI=\",\r\n \"secondaryKey\": \"1/2qDicMEWHzZ0h1dDB37j6m1NZrnOYqmnQYSRglx/k=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"NNFHW53uwjnez9bwkkienHvDGL2Raky3E91z0cKsTsc=\",\r\n \"secondaryKey\": \"yMmMtCGONLYTno0EGnXirX5IIaM/vp32GQWo5IYlKCw=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"W8OE3H2xsAFA+PxFNy8nHuWkv4nqC5twcrycUIKKGr0=\",\r\n \"secondaryKey\": \"7x0DHi5nmRW+CQJD+/uQ5sPatNQ50LmcnjdVnkmTvwo=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODA2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU3ODUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczcyMi9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b3a2f106-2801-42ab-af50-2dada4c315b2" + "2921cb8f-d2df-4ac9-a88d-38dc58111180" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3285,16 +3342,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1160" + "1182" ], "x-ms-request-id": [ - "026fffd2-04fd-48da-9c02-c1e527f0a36d" + "db82d23e-3bae-4836-99cc-9ff17a3700ea" ], "x-ms-correlation-request-id": [ - "026fffd2-04fd-48da-9c02-c1e527f0a36d" + "db82d23e-3bae-4836-99cc-9ff17a3700ea" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195447Z:026fffd2-04fd-48da-9c02-c1e527f0a36d" + "WESTUS2:20200730T203517Z:db82d23e-3bae-4836-99cc-9ff17a3700ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3303,7 +3360,7 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:54:47 GMT" + "Thu, 30 Jul 2020 20:35:16 GMT" ], "Content-Length": [ "905" @@ -3315,23 +3372,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"6dkgZ7ZrvZlarOF9noEc3/TwYGBT94oiSpDOmYFmLFw=\",\r\n \"secondaryKey\": \"iYej6IcfzTX92C32Hr3JTRg8kKbbgjuThQiyiN5WC1M=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"x3VGvZSk1z3mN6xh2uuzlxMJPvJ+R/yWNyGn7UPLSwc=\",\r\n \"secondaryKey\": \"+i5LIfPsbdVd6IGf7oteDOLzdk5Qi6shCUXEr0uqotc=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"1/Mz6m15kR+mLjgtFhpLa4dAVJW31VWjRnG8BPdS8yw=\",\r\n \"secondaryKey\": \"tIG+dX8vQ29FjtFXFNDt22EE3ps2U8egPdQCiu0mKPI=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"OOmuD5+FmWINye38MqLtvS5AumV7K+2vraH4sSfLv8s=\",\r\n \"secondaryKey\": \"Su89kOdrAxBjkVhFlJO71IoMBv3yh6RSyS7sC2vE/RQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"98gTe4vqWbVZO5fLHi6c+UqZRknTL7XvU5iIUs+y8GA=\",\r\n \"secondaryKey\": \"cknP3NzjuB6oEyyBszEgPmaj7wvY7KEeBvVMiJGyRhM=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"0VEbS7PaKLW7NdpajcOPPJYElC9Cn1I7k2Ghlp5q4Og=\",\r\n \"secondaryKey\": \"6aWkL9fRj+qakbT1W1w0MZ2xW5LYLxxDX8cgrIAuJnE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"jg4Q3OZLZYTTQ/eeUVUp3p5+1zf4tc7xjFVlKhfwYMo=\",\r\n \"secondaryKey\": \"rRSIQxksGUEpBON8n81VLMTOFNhbDIOQoRQUk0Qwgvo=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"JqNU6qUJO1hzZDQzoFJvBHBurwj8MB2AnAyvQrIyeuI=\",\r\n \"secondaryKey\": \"1/2qDicMEWHzZ0h1dDB37j6m1NZrnOYqmnQYSRglx/k=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"NNFHW53uwjnez9bwkkienHvDGL2Raky3E91z0cKsTsc=\",\r\n \"secondaryKey\": \"yMmMtCGONLYTno0EGnXirX5IIaM/vp32GQWo5IYlKCw=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"W8OE3H2xsAFA+PxFNy8nHuWkv4nqC5twcrycUIKKGr0=\",\r\n \"secondaryKey\": \"7x0DHi5nmRW+CQJD+/uQ5sPatNQ50LmcnjdVnkmTvwo=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODA2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU3ODUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczcyMi9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1d6de738-3d47-44d4-84b1-0674b80dc173" + "1302b2d9-620c-45be-a119-dfa31255a50a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3348,16 +3405,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1159" + "1181" ], "x-ms-request-id": [ - "aafd7f30-bcef-4206-98ce-6eb1e9c82e56" + "38ec15e3-11a0-4736-808a-d7b3de6e3d4e" ], "x-ms-correlation-request-id": [ - "aafd7f30-bcef-4206-98ce-6eb1e9c82e56" + "38ec15e3-11a0-4736-808a-d7b3de6e3d4e" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195448Z:aafd7f30-bcef-4206-98ce-6eb1e9c82e56" + "WESTUS2:20200730T203518Z:38ec15e3-11a0-4736-808a-d7b3de6e3d4e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3366,7 +3423,7 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:54:48 GMT" + "Thu, 30 Jul 2020 20:35:17 GMT" ], "Content-Length": [ "905" @@ -3378,23 +3435,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"6dkgZ7ZrvZlarOF9noEc3/TwYGBT94oiSpDOmYFmLFw=\",\r\n \"secondaryKey\": \"iYej6IcfzTX92C32Hr3JTRg8kKbbgjuThQiyiN5WC1M=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"x3VGvZSk1z3mN6xh2uuzlxMJPvJ+R/yWNyGn7UPLSwc=\",\r\n \"secondaryKey\": \"+i5LIfPsbdVd6IGf7oteDOLzdk5Qi6shCUXEr0uqotc=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"1/Mz6m15kR+mLjgtFhpLa4dAVJW31VWjRnG8BPdS8yw=\",\r\n \"secondaryKey\": \"tIG+dX8vQ29FjtFXFNDt22EE3ps2U8egPdQCiu0mKPI=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"OOmuD5+FmWINye38MqLtvS5AumV7K+2vraH4sSfLv8s=\",\r\n \"secondaryKey\": \"Su89kOdrAxBjkVhFlJO71IoMBv3yh6RSyS7sC2vE/RQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"98gTe4vqWbVZO5fLHi6c+UqZRknTL7XvU5iIUs+y8GA=\",\r\n \"secondaryKey\": \"cknP3NzjuB6oEyyBszEgPmaj7wvY7KEeBvVMiJGyRhM=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"0VEbS7PaKLW7NdpajcOPPJYElC9Cn1I7k2Ghlp5q4Og=\",\r\n \"secondaryKey\": \"6aWkL9fRj+qakbT1W1w0MZ2xW5LYLxxDX8cgrIAuJnE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"jg4Q3OZLZYTTQ/eeUVUp3p5+1zf4tc7xjFVlKhfwYMo=\",\r\n \"secondaryKey\": \"rRSIQxksGUEpBON8n81VLMTOFNhbDIOQoRQUk0Qwgvo=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"JqNU6qUJO1hzZDQzoFJvBHBurwj8MB2AnAyvQrIyeuI=\",\r\n \"secondaryKey\": \"1/2qDicMEWHzZ0h1dDB37j6m1NZrnOYqmnQYSRglx/k=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"NNFHW53uwjnez9bwkkienHvDGL2Raky3E91z0cKsTsc=\",\r\n \"secondaryKey\": \"yMmMtCGONLYTno0EGnXirX5IIaM/vp32GQWo5IYlKCw=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"W8OE3H2xsAFA+PxFNy8nHuWkv4nqC5twcrycUIKKGr0=\",\r\n \"secondaryKey\": \"7x0DHi5nmRW+CQJD+/uQ5sPatNQ50LmcnjdVnkmTvwo=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODA2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU3ODUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczcyMi9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "38bd3927-cd24-4284-919a-9c7a8dcd32b9" + "11f732ff-f340-46f1-b2fb-6f131bf47e86" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3411,16 +3468,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1158" + "1180" ], "x-ms-request-id": [ - "e0979d24-72db-4cb5-abd8-39e2bb865480" + "c2a7564a-ee4d-4fcf-99eb-6a728b45f597" ], "x-ms-correlation-request-id": [ - "e0979d24-72db-4cb5-abd8-39e2bb865480" + "c2a7564a-ee4d-4fcf-99eb-6a728b45f597" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195449Z:e0979d24-72db-4cb5-abd8-39e2bb865480" + "WESTUS2:20200730T203519Z:c2a7564a-ee4d-4fcf-99eb-6a728b45f597" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3429,7 +3486,7 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:54:49 GMT" + "Thu, 30 Jul 2020 20:35:18 GMT" ], "Content-Length": [ "905" @@ -3441,23 +3498,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"6dkgZ7ZrvZlarOF9noEc3/TwYGBT94oiSpDOmYFmLFw=\",\r\n \"secondaryKey\": \"iYej6IcfzTX92C32Hr3JTRg8kKbbgjuThQiyiN5WC1M=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"x3VGvZSk1z3mN6xh2uuzlxMJPvJ+R/yWNyGn7UPLSwc=\",\r\n \"secondaryKey\": \"+i5LIfPsbdVd6IGf7oteDOLzdk5Qi6shCUXEr0uqotc=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"1/Mz6m15kR+mLjgtFhpLa4dAVJW31VWjRnG8BPdS8yw=\",\r\n \"secondaryKey\": \"tIG+dX8vQ29FjtFXFNDt22EE3ps2U8egPdQCiu0mKPI=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"OOmuD5+FmWINye38MqLtvS5AumV7K+2vraH4sSfLv8s=\",\r\n \"secondaryKey\": \"Su89kOdrAxBjkVhFlJO71IoMBv3yh6RSyS7sC2vE/RQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"98gTe4vqWbVZO5fLHi6c+UqZRknTL7XvU5iIUs+y8GA=\",\r\n \"secondaryKey\": \"cknP3NzjuB6oEyyBszEgPmaj7wvY7KEeBvVMiJGyRhM=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"0VEbS7PaKLW7NdpajcOPPJYElC9Cn1I7k2Ghlp5q4Og=\",\r\n \"secondaryKey\": \"6aWkL9fRj+qakbT1W1w0MZ2xW5LYLxxDX8cgrIAuJnE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"jg4Q3OZLZYTTQ/eeUVUp3p5+1zf4tc7xjFVlKhfwYMo=\",\r\n \"secondaryKey\": \"rRSIQxksGUEpBON8n81VLMTOFNhbDIOQoRQUk0Qwgvo=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"JqNU6qUJO1hzZDQzoFJvBHBurwj8MB2AnAyvQrIyeuI=\",\r\n \"secondaryKey\": \"1/2qDicMEWHzZ0h1dDB37j6m1NZrnOYqmnQYSRglx/k=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"NNFHW53uwjnez9bwkkienHvDGL2Raky3E91z0cKsTsc=\",\r\n \"secondaryKey\": \"yMmMtCGONLYTno0EGnXirX5IIaM/vp32GQWo5IYlKCw=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"W8OE3H2xsAFA+PxFNy8nHuWkv4nqC5twcrycUIKKGr0=\",\r\n \"secondaryKey\": \"7x0DHi5nmRW+CQJD+/uQ5sPatNQ50LmcnjdVnkmTvwo=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODA2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU3ODUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczcyMi9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "357be469-15b3-4cbc-b192-e8347c91f3f6" + "432a1062-fb7f-4903-8058-ddc704933489" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3474,16 +3531,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1157" + "1179" ], "x-ms-request-id": [ - "703c6126-3318-4d62-a39d-287f48a081b6" + "60ced2a4-5553-4173-b999-06929122cfd3" ], "x-ms-correlation-request-id": [ - "703c6126-3318-4d62-a39d-287f48a081b6" + "60ced2a4-5553-4173-b999-06929122cfd3" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195450Z:703c6126-3318-4d62-a39d-287f48a081b6" + "WESTUS2:20200730T203520Z:60ced2a4-5553-4173-b999-06929122cfd3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3492,7 +3549,7 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:54:50 GMT" + "Thu, 30 Jul 2020 20:35:19 GMT" ], "Content-Length": [ "905" @@ -3504,23 +3561,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"6dkgZ7ZrvZlarOF9noEc3/TwYGBT94oiSpDOmYFmLFw=\",\r\n \"secondaryKey\": \"iYej6IcfzTX92C32Hr3JTRg8kKbbgjuThQiyiN5WC1M=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"x3VGvZSk1z3mN6xh2uuzlxMJPvJ+R/yWNyGn7UPLSwc=\",\r\n \"secondaryKey\": \"+i5LIfPsbdVd6IGf7oteDOLzdk5Qi6shCUXEr0uqotc=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"1/Mz6m15kR+mLjgtFhpLa4dAVJW31VWjRnG8BPdS8yw=\",\r\n \"secondaryKey\": \"tIG+dX8vQ29FjtFXFNDt22EE3ps2U8egPdQCiu0mKPI=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"OOmuD5+FmWINye38MqLtvS5AumV7K+2vraH4sSfLv8s=\",\r\n \"secondaryKey\": \"Su89kOdrAxBjkVhFlJO71IoMBv3yh6RSyS7sC2vE/RQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"98gTe4vqWbVZO5fLHi6c+UqZRknTL7XvU5iIUs+y8GA=\",\r\n \"secondaryKey\": \"cknP3NzjuB6oEyyBszEgPmaj7wvY7KEeBvVMiJGyRhM=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"0VEbS7PaKLW7NdpajcOPPJYElC9Cn1I7k2Ghlp5q4Og=\",\r\n \"secondaryKey\": \"6aWkL9fRj+qakbT1W1w0MZ2xW5LYLxxDX8cgrIAuJnE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"jg4Q3OZLZYTTQ/eeUVUp3p5+1zf4tc7xjFVlKhfwYMo=\",\r\n \"secondaryKey\": \"rRSIQxksGUEpBON8n81VLMTOFNhbDIOQoRQUk0Qwgvo=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"JqNU6qUJO1hzZDQzoFJvBHBurwj8MB2AnAyvQrIyeuI=\",\r\n \"secondaryKey\": \"1/2qDicMEWHzZ0h1dDB37j6m1NZrnOYqmnQYSRglx/k=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"NNFHW53uwjnez9bwkkienHvDGL2Raky3E91z0cKsTsc=\",\r\n \"secondaryKey\": \"yMmMtCGONLYTno0EGnXirX5IIaM/vp32GQWo5IYlKCw=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"W8OE3H2xsAFA+PxFNy8nHuWkv4nqC5twcrycUIKKGr0=\",\r\n \"secondaryKey\": \"7x0DHi5nmRW+CQJD+/uQ5sPatNQ50LmcnjdVnkmTvwo=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODA2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU3ODUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczcyMi9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2e5e6a1a-966a-47aa-846c-5c0ad7d76e1c" + "16e5ec33-d555-46c5-ad1e-0d331cc82f65" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3537,16 +3594,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1156" + "1178" ], "x-ms-request-id": [ - "c12c870a-2745-478f-9c8a-f3e8ee47165d" + "80903a38-924a-4f31-b46e-0150f3b85584" ], "x-ms-correlation-request-id": [ - "c12c870a-2745-478f-9c8a-f3e8ee47165d" + "80903a38-924a-4f31-b46e-0150f3b85584" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195451Z:c12c870a-2745-478f-9c8a-f3e8ee47165d" + "WESTUS2:20200730T203521Z:80903a38-924a-4f31-b46e-0150f3b85584" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3555,7 +3612,7 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:54:50 GMT" + "Thu, 30 Jul 2020 20:35:20 GMT" ], "Content-Length": [ "905" @@ -3567,23 +3624,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"6dkgZ7ZrvZlarOF9noEc3/TwYGBT94oiSpDOmYFmLFw=\",\r\n \"secondaryKey\": \"iYej6IcfzTX92C32Hr3JTRg8kKbbgjuThQiyiN5WC1M=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"x3VGvZSk1z3mN6xh2uuzlxMJPvJ+R/yWNyGn7UPLSwc=\",\r\n \"secondaryKey\": \"+i5LIfPsbdVd6IGf7oteDOLzdk5Qi6shCUXEr0uqotc=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"1/Mz6m15kR+mLjgtFhpLa4dAVJW31VWjRnG8BPdS8yw=\",\r\n \"secondaryKey\": \"tIG+dX8vQ29FjtFXFNDt22EE3ps2U8egPdQCiu0mKPI=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"OOmuD5+FmWINye38MqLtvS5AumV7K+2vraH4sSfLv8s=\",\r\n \"secondaryKey\": \"Su89kOdrAxBjkVhFlJO71IoMBv3yh6RSyS7sC2vE/RQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"98gTe4vqWbVZO5fLHi6c+UqZRknTL7XvU5iIUs+y8GA=\",\r\n \"secondaryKey\": \"cknP3NzjuB6oEyyBszEgPmaj7wvY7KEeBvVMiJGyRhM=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"0VEbS7PaKLW7NdpajcOPPJYElC9Cn1I7k2Ghlp5q4Og=\",\r\n \"secondaryKey\": \"6aWkL9fRj+qakbT1W1w0MZ2xW5LYLxxDX8cgrIAuJnE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"jg4Q3OZLZYTTQ/eeUVUp3p5+1zf4tc7xjFVlKhfwYMo=\",\r\n \"secondaryKey\": \"rRSIQxksGUEpBON8n81VLMTOFNhbDIOQoRQUk0Qwgvo=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"JqNU6qUJO1hzZDQzoFJvBHBurwj8MB2AnAyvQrIyeuI=\",\r\n \"secondaryKey\": \"1/2qDicMEWHzZ0h1dDB37j6m1NZrnOYqmnQYSRglx/k=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"NNFHW53uwjnez9bwkkienHvDGL2Raky3E91z0cKsTsc=\",\r\n \"secondaryKey\": \"yMmMtCGONLYTno0EGnXirX5IIaM/vp32GQWo5IYlKCw=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"W8OE3H2xsAFA+PxFNy8nHuWkv4nqC5twcrycUIKKGr0=\",\r\n \"secondaryKey\": \"7x0DHi5nmRW+CQJD+/uQ5sPatNQ50LmcnjdVnkmTvwo=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODA2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU3ODUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczcyMi9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b6d689b-f90b-4005-bf78-52bb3435ef17" + "c9cba901-7c15-4743-8b9c-0d39b54989a1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3600,16 +3657,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1155" + "1177" ], "x-ms-request-id": [ - "e1aaedb7-9ae1-4408-80ce-ffffd16efc06" + "82058065-2503-4d05-8b76-5cab959399d8" ], "x-ms-correlation-request-id": [ - "e1aaedb7-9ae1-4408-80ce-ffffd16efc06" + "82058065-2503-4d05-8b76-5cab959399d8" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195452Z:e1aaedb7-9ae1-4408-80ce-ffffd16efc06" + "WESTUS2:20200730T203522Z:82058065-2503-4d05-8b76-5cab959399d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3618,7 +3675,7 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:54:52 GMT" + "Thu, 30 Jul 2020 20:35:21 GMT" ], "Content-Length": [ "905" @@ -3630,23 +3687,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"6dkgZ7ZrvZlarOF9noEc3/TwYGBT94oiSpDOmYFmLFw=\",\r\n \"secondaryKey\": \"iYej6IcfzTX92C32Hr3JTRg8kKbbgjuThQiyiN5WC1M=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"x3VGvZSk1z3mN6xh2uuzlxMJPvJ+R/yWNyGn7UPLSwc=\",\r\n \"secondaryKey\": \"+i5LIfPsbdVd6IGf7oteDOLzdk5Qi6shCUXEr0uqotc=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"1/Mz6m15kR+mLjgtFhpLa4dAVJW31VWjRnG8BPdS8yw=\",\r\n \"secondaryKey\": \"tIG+dX8vQ29FjtFXFNDt22EE3ps2U8egPdQCiu0mKPI=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"OOmuD5+FmWINye38MqLtvS5AumV7K+2vraH4sSfLv8s=\",\r\n \"secondaryKey\": \"Su89kOdrAxBjkVhFlJO71IoMBv3yh6RSyS7sC2vE/RQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"98gTe4vqWbVZO5fLHi6c+UqZRknTL7XvU5iIUs+y8GA=\",\r\n \"secondaryKey\": \"cknP3NzjuB6oEyyBszEgPmaj7wvY7KEeBvVMiJGyRhM=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"0VEbS7PaKLW7NdpajcOPPJYElC9Cn1I7k2Ghlp5q4Og=\",\r\n \"secondaryKey\": \"6aWkL9fRj+qakbT1W1w0MZ2xW5LYLxxDX8cgrIAuJnE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"jg4Q3OZLZYTTQ/eeUVUp3p5+1zf4tc7xjFVlKhfwYMo=\",\r\n \"secondaryKey\": \"rRSIQxksGUEpBON8n81VLMTOFNhbDIOQoRQUk0Qwgvo=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"JqNU6qUJO1hzZDQzoFJvBHBurwj8MB2AnAyvQrIyeuI=\",\r\n \"secondaryKey\": \"1/2qDicMEWHzZ0h1dDB37j6m1NZrnOYqmnQYSRglx/k=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"NNFHW53uwjnez9bwkkienHvDGL2Raky3E91z0cKsTsc=\",\r\n \"secondaryKey\": \"yMmMtCGONLYTno0EGnXirX5IIaM/vp32GQWo5IYlKCw=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"W8OE3H2xsAFA+PxFNy8nHuWkv4nqC5twcrycUIKKGr0=\",\r\n \"secondaryKey\": \"7x0DHi5nmRW+CQJD+/uQ5sPatNQ50LmcnjdVnkmTvwo=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODA2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU3ODUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczcyMi9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "40ed5e61-674f-4af7-b206-4b1b25a04a2c" + "4a90a62a-ccd0-485c-b322-92049705a58a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3663,16 +3720,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1154" + "1176" ], "x-ms-request-id": [ - "fadc9f0b-eea7-4c22-a9ff-f8a97d082f28" + "a5ada38e-7166-4e22-8c0b-eca3ecfbc3ed" ], "x-ms-correlation-request-id": [ - "fadc9f0b-eea7-4c22-a9ff-f8a97d082f28" + "a5ada38e-7166-4e22-8c0b-eca3ecfbc3ed" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195453Z:fadc9f0b-eea7-4c22-a9ff-f8a97d082f28" + "WESTUS2:20200730T203523Z:a5ada38e-7166-4e22-8c0b-eca3ecfbc3ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3681,7 +3738,7 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:54:53 GMT" + "Thu, 30 Jul 2020 20:35:22 GMT" ], "Content-Length": [ "905" @@ -3693,23 +3750,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"6dkgZ7ZrvZlarOF9noEc3/TwYGBT94oiSpDOmYFmLFw=\",\r\n \"secondaryKey\": \"iYej6IcfzTX92C32Hr3JTRg8kKbbgjuThQiyiN5WC1M=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"x3VGvZSk1z3mN6xh2uuzlxMJPvJ+R/yWNyGn7UPLSwc=\",\r\n \"secondaryKey\": \"+i5LIfPsbdVd6IGf7oteDOLzdk5Qi6shCUXEr0uqotc=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"1/Mz6m15kR+mLjgtFhpLa4dAVJW31VWjRnG8BPdS8yw=\",\r\n \"secondaryKey\": \"tIG+dX8vQ29FjtFXFNDt22EE3ps2U8egPdQCiu0mKPI=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"OOmuD5+FmWINye38MqLtvS5AumV7K+2vraH4sSfLv8s=\",\r\n \"secondaryKey\": \"Su89kOdrAxBjkVhFlJO71IoMBv3yh6RSyS7sC2vE/RQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"98gTe4vqWbVZO5fLHi6c+UqZRknTL7XvU5iIUs+y8GA=\",\r\n \"secondaryKey\": \"cknP3NzjuB6oEyyBszEgPmaj7wvY7KEeBvVMiJGyRhM=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"0VEbS7PaKLW7NdpajcOPPJYElC9Cn1I7k2Ghlp5q4Og=\",\r\n \"secondaryKey\": \"6aWkL9fRj+qakbT1W1w0MZ2xW5LYLxxDX8cgrIAuJnE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"jg4Q3OZLZYTTQ/eeUVUp3p5+1zf4tc7xjFVlKhfwYMo=\",\r\n \"secondaryKey\": \"rRSIQxksGUEpBON8n81VLMTOFNhbDIOQoRQUk0Qwgvo=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"JqNU6qUJO1hzZDQzoFJvBHBurwj8MB2AnAyvQrIyeuI=\",\r\n \"secondaryKey\": \"1/2qDicMEWHzZ0h1dDB37j6m1NZrnOYqmnQYSRglx/k=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"NNFHW53uwjnez9bwkkienHvDGL2Raky3E91z0cKsTsc=\",\r\n \"secondaryKey\": \"yMmMtCGONLYTno0EGnXirX5IIaM/vp32GQWo5IYlKCw=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"W8OE3H2xsAFA+PxFNy8nHuWkv4nqC5twcrycUIKKGr0=\",\r\n \"secondaryKey\": \"7x0DHi5nmRW+CQJD+/uQ5sPatNQ50LmcnjdVnkmTvwo=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8063/providers/Microsoft.Devices/IotHubs/ps5785/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODA2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU3ODUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8722/providers/Microsoft.Devices/IotHubs/ps722/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczcyMi9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "305cec8a-477d-427b-826b-925aff4f34fa" + "a35a5598-ef00-4ee6-a7a0-e56d657f52ad" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3726,16 +3783,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1153" + "1175" ], "x-ms-request-id": [ - "256a716e-4239-43c5-8a84-08e6722d6986" + "31e6d726-d2ce-4b27-b232-b70af8d1fa58" ], "x-ms-correlation-request-id": [ - "256a716e-4239-43c5-8a84-08e6722d6986" + "31e6d726-d2ce-4b27-b232-b70af8d1fa58" ], "x-ms-routing-request-id": [ - "WESTUS2:20200430T195454Z:256a716e-4239-43c5-8a84-08e6722d6986" + "WESTUS2:20200730T203524Z:31e6d726-d2ce-4b27-b232-b70af8d1fa58" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3744,7 +3801,7 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:54:54 GMT" + "Thu, 30 Jul 2020 20:35:23 GMT" ], "Content-Length": [ "905" @@ -3756,18 +3813,18 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"6dkgZ7ZrvZlarOF9noEc3/TwYGBT94oiSpDOmYFmLFw=\",\r\n \"secondaryKey\": \"iYej6IcfzTX92C32Hr3JTRg8kKbbgjuThQiyiN5WC1M=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"x3VGvZSk1z3mN6xh2uuzlxMJPvJ+R/yWNyGn7UPLSwc=\",\r\n \"secondaryKey\": \"+i5LIfPsbdVd6IGf7oteDOLzdk5Qi6shCUXEr0uqotc=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"1/Mz6m15kR+mLjgtFhpLa4dAVJW31VWjRnG8BPdS8yw=\",\r\n \"secondaryKey\": \"tIG+dX8vQ29FjtFXFNDt22EE3ps2U8egPdQCiu0mKPI=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"OOmuD5+FmWINye38MqLtvS5AumV7K+2vraH4sSfLv8s=\",\r\n \"secondaryKey\": \"Su89kOdrAxBjkVhFlJO71IoMBv3yh6RSyS7sC2vE/RQ=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"98gTe4vqWbVZO5fLHi6c+UqZRknTL7XvU5iIUs+y8GA=\",\r\n \"secondaryKey\": \"cknP3NzjuB6oEyyBszEgPmaj7wvY7KEeBvVMiJGyRhM=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"0VEbS7PaKLW7NdpajcOPPJYElC9Cn1I7k2Ghlp5q4Og=\",\r\n \"secondaryKey\": \"6aWkL9fRj+qakbT1W1w0MZ2xW5LYLxxDX8cgrIAuJnE=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"jg4Q3OZLZYTTQ/eeUVUp3p5+1zf4tc7xjFVlKhfwYMo=\",\r\n \"secondaryKey\": \"rRSIQxksGUEpBON8n81VLMTOFNhbDIOQoRQUk0Qwgvo=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"JqNU6qUJO1hzZDQzoFJvBHBurwj8MB2AnAyvQrIyeuI=\",\r\n \"secondaryKey\": \"1/2qDicMEWHzZ0h1dDB37j6m1NZrnOYqmnQYSRglx/k=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"NNFHW53uwjnez9bwkkienHvDGL2Raky3E91z0cKsTsc=\",\r\n \"secondaryKey\": \"yMmMtCGONLYTno0EGnXirX5IIaM/vp32GQWo5IYlKCw=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"W8OE3H2xsAFA+PxFNy8nHuWkv4nqC5twcrycUIKKGr0=\",\r\n \"secondaryKey\": \"7x0DHi5nmRW+CQJD+/uQ5sPatNQ50LmcnjdVnkmTvwo=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], "Names": { "Test-AzureRmIotHubModuleLifecycle": [ - "ps5785", - "ps8063", - "ps2907", - "ps5209", - "ps9082", - "ps7160" + "ps722", + "ps8722", + "ps5012", + "ps4837", + "ps2770", + "ps4464" ] }, "Variables": { diff --git a/src/IotHub/IotHub.Test/SessionRecords/Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubDPTracingTests/TestAzureIotHubTracing.json b/src/IotHub/IotHub.Test/SessionRecords/Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubDPTracingTests/TestAzureIotHubTracing.json index 0523738aacf5..136d730e4c13 100644 --- a/src/IotHub/IotHub.Test/SessionRecords/Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubDPTracingTests/TestAzureIotHubTracing.json +++ b/src/IotHub/IotHub.Test/SessionRecords/Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubDPTracingTests/TestAzureIotHubTracing.json @@ -7,16 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4bd8b0ed-a325-4098-9b25-1883a023caf2" + "36439f2b-5b5b-4e35-a743-f8ac9ee90c2e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" ] }, "ResponseHeaders": { @@ -30,13 +30,13 @@ "11999" ], "x-ms-request-id": [ - "3e0bf4a8-3bd9-4ba8-a1a9-a84c8f9cfe04" + "915f7695-8393-4d07-8db5-55192c0640f2" ], "x-ms-correlation-request-id": [ - "3e0bf4a8-3bd9-4ba8-a1a9-a84c8f9cfe04" + "915f7695-8393-4d07-8db5-55192c0640f2" ], "x-ms-routing-request-id": [ - "WESTUS:20200302T230701Z:3e0bf4a8-3bd9-4ba8-a1a9-a84c8f9cfe04" + "WESTUS2:20200730T203738Z:915f7695-8393-4d07-8db5-55192c0640f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Mon, 02 Mar 2020 23:07:01 GMT" + "Thu, 30 Jul 2020 20:37:38 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54,29 +54,29 @@ "-1" ], "Content-Length": [ - "5705" + "5690" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices\",\r\n \"namespace\": \"Microsoft.Devices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0cd79364-7a90-4354-9984-6e36c841418d\",\r\n \"roleDefinitionId\": \"C121DF10-FE58-4BC4-97F9-8296879F7BBB\"\r\n },\r\n {\r\n \"applicationId\": \"29f411f1-b2cf-4043-8ac8-2185d7316811\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-04\",\r\n \"2019-09-01\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22-preview\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-09-25-preview\",\r\n \"2017-08-21-preview\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/eventGridFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-31\",\r\n \"2018-01-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/securitySettings\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants/securitySettings\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices\",\r\n \"namespace\": \"Microsoft.Devices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0cd79364-7a90-4354-9984-6e36c841418d\",\r\n \"roleDefinitionId\": \"C121DF10-FE58-4BC4-97F9-8296879F7BBB\"\r\n },\r\n {\r\n \"applicationId\": \"29f411f1-b2cf-4043-8ac8-2185d7316811\"\r\n },\r\n {\r\n \"applicationId\": \"89d10474-74af-4874-99a7-c23c2f643083\",\r\n \"roleDefinitionId\": \"7df22794-26e3-4f94-9d50-a4f0f6e1cb41\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/eventGridFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-31\",\r\n \"2018-01-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/securitySettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants/securitySettings\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourcegroups/ps2438?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlZ3JvdXBzL3BzMjQzOD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourcegroups/ps3634?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlZ3JvdXBzL3BzMzYzND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US 2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b0ff9af9-776a-4e62-99af-fb57cec36d11" + "6832859c-fd19-48e2-9256-7164cae0e82d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "1884395e-0984-49ac-a53d-edbfd9c0f5be" + "1b5fc282-d312-4fc8-b8cf-591b3af97b45" ], "x-ms-correlation-request-id": [ - "1884395e-0984-49ac-a53d-edbfd9c0f5be" + "1b5fc282-d312-4fc8-b8cf-591b3af97b45" ], "x-ms-routing-request-id": [ - "WESTUS:20200302T230702Z:1884395e-0984-49ac-a53d-edbfd9c0f5be" + "WESTUS2:20200730T203739Z:1b5fc282-d312-4fc8-b8cf-591b3af97b45" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Mon, 02 Mar 2020 23:07:02 GMT" + "Thu, 30 Jul 2020 20:37:38 GMT" ], "Content-Length": [ "166" @@ -123,23 +123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2438\",\r\n \"name\": \"ps2438\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3634\",\r\n \"name\": \"ps3634\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2438/providers/Microsoft.Devices/IotHubs/ps4798?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ3OTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3634/providers/Microsoft.Devices/IotHubs/ps3044?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzYzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNDQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8cb01586-031b-423a-95f9-8556a3f95315" + "aa914efd-00d0-4ddb-a136-0fa97000f092" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -159,7 +159,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTdmZGViZTctYzk3NC00ZTY4LTgxOWQtODNlMmU2MmYxNmJj?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYWQ1NmQwYjAtZGIxMi00ZTM2LWI0NmEtNmZjMzFhNDc0Y2Zh?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -168,13 +168,13 @@ "4999" ], "x-ms-request-id": [ - "ede98e8f-53d8-40a6-a99a-27d1ec0dc152" + "36abfe44-5c27-4b69-9a7e-ffd86730496b" ], "x-ms-correlation-request-id": [ - "ede98e8f-53d8-40a6-a99a-27d1ec0dc152" + "36abfe44-5c27-4b69-9a7e-ffd86730496b" ], "x-ms-routing-request-id": [ - "WESTUS:20200302T230724Z:ede98e8f-53d8-40a6-a99a-27d1ec0dc152" + "WESTUS2:20200730T203755Z:36abfe44-5c27-4b69-9a7e-ffd86730496b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -183,7 +183,7 @@ "nosniff" ], "Date": [ - "Mon, 02 Mar 2020 23:07:23 GMT" + "Thu, 30 Jul 2020 20:37:54 GMT" ], "Content-Length": [ "621" @@ -195,17 +195,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2438/providers/Microsoft.Devices/IotHubs/ps4798\",\r\n \"name\": \"ps4798\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2438\",\r\n \"properties\": {\r\n \"state\": \"Activating\",\r\n \"provisioningState\": \"Accepted\",\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3634/providers/Microsoft.Devices/IotHubs/ps3044\",\r\n \"name\": \"ps3044\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3634\",\r\n \"properties\": {\r\n \"state\": \"Activating\",\r\n \"provisioningState\": \"Accepted\",\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTdmZGViZTctYzk3NC00ZTY4LTgxOWQtODNlMmU2MmYxNmJj?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRkbVpHVmlaVGN0WXprM05DMDBaVFk0TFRneE9XUXRPRE5sTW1VMk1tWXhObUpqP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYWQ1NmQwYjAtZGIxMi00ZTM2LWI0NmEtNmZjMzFhNDc0Y2Zh?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWVdRMU5tUXdZakF0WkdJeE1pMDBaVE0yTFdJME5tRXRObVpqTXpGaE5EYzBZMlpoP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -222,16 +222,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11999" ], "x-ms-request-id": [ - "888f81b5-d1c2-4720-b190-47a68b1c5c41" + "d057344b-368d-430c-8b12-9fa07382e520" ], "x-ms-correlation-request-id": [ - "888f81b5-d1c2-4720-b190-47a68b1c5c41" + "d057344b-368d-430c-8b12-9fa07382e520" ], "x-ms-routing-request-id": [ - "WESTUS:20200302T230754Z:888f81b5-d1c2-4720-b190-47a68b1c5c41" + "WESTUS2:20200730T203826Z:d057344b-368d-430c-8b12-9fa07382e520" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -240,7 +240,7 @@ "nosniff" ], "Date": [ - "Mon, 02 Mar 2020 23:07:53 GMT" + "Thu, 30 Jul 2020 20:38:25 GMT" ], "Content-Length": [ "20" @@ -256,13 +256,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTdmZGViZTctYzk3NC00ZTY4LTgxOWQtODNlMmU2MmYxNmJj?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRkbVpHVmlaVGN0WXprM05DMDBaVFk0TFRneE9XUXRPRE5sTW1VMk1tWXhObUpqP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYWQ1NmQwYjAtZGIxMi00ZTM2LWI0NmEtNmZjMzFhNDc0Y2Zh?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWVdRMU5tUXdZakF0WkdJeE1pMDBaVE0yTFdJME5tRXRObVpqTXpGaE5EYzBZMlpoP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -279,16 +279,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11998" ], "x-ms-request-id": [ - "eb21caef-9833-47d1-8cd1-16e48fb57e89" + "7022ce79-ad41-4e91-861d-286e446a2f53" ], "x-ms-correlation-request-id": [ - "eb21caef-9833-47d1-8cd1-16e48fb57e89" + "7022ce79-ad41-4e91-861d-286e446a2f53" ], "x-ms-routing-request-id": [ - "WESTUS:20200302T230824Z:eb21caef-9833-47d1-8cd1-16e48fb57e89" + "WESTUS2:20200730T203856Z:7022ce79-ad41-4e91-861d-286e446a2f53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -297,7 +297,7 @@ "nosniff" ], "Date": [ - "Mon, 02 Mar 2020 23:08:23 GMT" + "Thu, 30 Jul 2020 20:38:56 GMT" ], "Content-Length": [ "20" @@ -313,13 +313,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTdmZGViZTctYzk3NC00ZTY4LTgxOWQtODNlMmU2MmYxNmJj?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRkbVpHVmlaVGN0WXprM05DMDBaVFk0TFRneE9XUXRPRE5sTW1VMk1tWXhObUpqP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYWQ1NmQwYjAtZGIxMi00ZTM2LWI0NmEtNmZjMzFhNDc0Y2Zh?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWVdRMU5tUXdZakF0WkdJeE1pMDBaVE0yTFdJME5tRXRObVpqTXpGaE5EYzBZMlpoP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -336,16 +336,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11997" ], "x-ms-request-id": [ - "eff2e561-1266-401d-a438-acaf20f1fffe" + "43493fa7-de12-4519-992b-fc92fc396bb4" ], "x-ms-correlation-request-id": [ - "eff2e561-1266-401d-a438-acaf20f1fffe" + "43493fa7-de12-4519-992b-fc92fc396bb4" ], "x-ms-routing-request-id": [ - "WESTUS:20200302T230854Z:eff2e561-1266-401d-a438-acaf20f1fffe" + "WESTUS2:20200730T203936Z:43493fa7-de12-4519-992b-fc92fc396bb4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -354,7 +354,64 @@ "nosniff" ], "Date": [ - "Mon, 02 Mar 2020 23:08:54 GMT" + "Thu, 30 Jul 2020 20:39:36 GMT" + ], + "Content-Length": [ + "20" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYWQ1NmQwYjAtZGIxMi00ZTM2LWI0NmEtNmZjMzFhNDc0Y2Zh?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWVdRMU5tUXdZakF0WkdJeE1pMDBaVE0yTFdJME5tRXRObVpqTXpGaE5EYzBZMlpoP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28619.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "9ff5cfdd-d7e0-4fd8-aa7f-acb02dfc813b" + ], + "x-ms-correlation-request-id": [ + "9ff5cfdd-d7e0-4fd8-aa7f-acb02dfc813b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200730T204021Z:9ff5cfdd-d7e0-4fd8-aa7f-acb02dfc813b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 30 Jul 2020 20:40:20 GMT" ], "Content-Length": [ "22" @@ -370,13 +427,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2438/providers/Microsoft.Devices/IotHubs/ps4798?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ3OTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3634/providers/Microsoft.Devices/IotHubs/ps3044?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzYzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNDQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -393,16 +450,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11995" ], "x-ms-request-id": [ - "17494ebe-ee50-44fb-966a-cfb16ebd3091" + "c8e72c01-25e0-4295-9244-24e15ca6251d" ], "x-ms-correlation-request-id": [ - "17494ebe-ee50-44fb-966a-cfb16ebd3091" + "c8e72c01-25e0-4295-9244-24e15ca6251d" ], "x-ms-routing-request-id": [ - "WESTUS:20200302T230855Z:17494ebe-ee50-44fb-966a-cfb16ebd3091" + "WESTUS2:20200730T204021Z:c8e72c01-25e0-4295-9244-24e15ca6251d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -411,7 +468,7 @@ "nosniff" ], "Date": [ - "Mon, 02 Mar 2020 23:08:55 GMT" + "Thu, 30 Jul 2020 20:40:21 GMT" ], "Content-Length": [ "1472" @@ -423,23 +480,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2438/providers/Microsoft.Devices/IotHubs/ps4798\",\r\n \"name\": \"ps4798\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2438\",\r\n \"etag\": \"AAAAAAvL20c=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4798.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4798\",\r\n \"endpoint\": \"sb://iothub-ns-ps4798-3020477-d95db4544d.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3634/providers/Microsoft.Devices/IotHubs/ps3044\",\r\n \"name\": \"ps3044\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3634\",\r\n \"etag\": \"AAAAAJ5PG8Y=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps3044.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3044\",\r\n \"endpoint\": \"sb://iothub-ns-ps3044-3949357-0ffb1eef55.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2438/providers/Microsoft.Devices/IotHubs/ps4798?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ3OTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3634/providers/Microsoft.Devices/IotHubs/ps3044?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzYzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNDQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fa13bd46-397e-4078-894a-18fa250cb82c" + "053f11d7-3c7f-459f-a345-d36f59460fa7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -456,16 +513,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11994" ], "x-ms-request-id": [ - "2464fdcb-34aa-45fd-b0d6-abe621d48533" + "6ff12f8c-01e7-40ae-8f1b-6c60eabf9ca8" ], "x-ms-correlation-request-id": [ - "2464fdcb-34aa-45fd-b0d6-abe621d48533" + "6ff12f8c-01e7-40ae-8f1b-6c60eabf9ca8" ], "x-ms-routing-request-id": [ - "WESTUS:20200302T230856Z:2464fdcb-34aa-45fd-b0d6-abe621d48533" + "WESTUS2:20200730T204022Z:6ff12f8c-01e7-40ae-8f1b-6c60eabf9ca8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -474,7 +531,7 @@ "nosniff" ], "Date": [ - "Mon, 02 Mar 2020 23:08:55 GMT" + "Thu, 30 Jul 2020 20:40:22 GMT" ], "Content-Length": [ "1472" @@ -486,23 +543,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2438/providers/Microsoft.Devices/IotHubs/ps4798\",\r\n \"name\": \"ps4798\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2438\",\r\n \"etag\": \"AAAAAAvL20c=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4798.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4798\",\r\n \"endpoint\": \"sb://iothub-ns-ps4798-3020477-d95db4544d.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3634/providers/Microsoft.Devices/IotHubs/ps3044\",\r\n \"name\": \"ps3044\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3634\",\r\n \"etag\": \"AAAAAJ5PG8Y=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps3044.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3044\",\r\n \"endpoint\": \"sb://iothub-ns-ps3044-3949357-0ffb1eef55.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2438/providers/Microsoft.Devices/IotHubs/ps4798?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ3OTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3634/providers/Microsoft.Devices/IotHubs/ps3044?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzYzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNDQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7481dd4b-75f5-4c1c-b761-008443615afa" + "2def407c-130d-47fb-bc4c-26feea7e1418" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -519,16 +576,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11993" ], "x-ms-request-id": [ - "ea5557e1-a27f-4753-a882-9e05a63b1fe6" + "e6f45406-8659-41c1-88c9-fcaa826c6145" ], "x-ms-correlation-request-id": [ - "ea5557e1-a27f-4753-a882-9e05a63b1fe6" + "e6f45406-8659-41c1-88c9-fcaa826c6145" ], "x-ms-routing-request-id": [ - "WESTUS:20200302T230856Z:ea5557e1-a27f-4753-a882-9e05a63b1fe6" + "WESTUS2:20200730T204022Z:e6f45406-8659-41c1-88c9-fcaa826c6145" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -537,7 +594,7 @@ "nosniff" ], "Date": [ - "Mon, 02 Mar 2020 23:08:56 GMT" + "Thu, 30 Jul 2020 20:40:22 GMT" ], "Content-Length": [ "1472" @@ -549,23 +606,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2438/providers/Microsoft.Devices/IotHubs/ps4798\",\r\n \"name\": \"ps4798\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2438\",\r\n \"etag\": \"AAAAAAvL20c=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4798.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4798\",\r\n \"endpoint\": \"sb://iothub-ns-ps4798-3020477-d95db4544d.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3634/providers/Microsoft.Devices/IotHubs/ps3044\",\r\n \"name\": \"ps3044\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3634\",\r\n \"etag\": \"AAAAAJ5PG8Y=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps3044.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3044\",\r\n \"endpoint\": \"sb://iothub-ns-ps3044-3949357-0ffb1eef55.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2438/providers/Microsoft.Devices/IotHubs/ps4798?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ3OTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3634/providers/Microsoft.Devices/IotHubs/ps3044?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzYzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNDQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7045908c-d040-4860-8f4f-9fd355b70b47" + "937d117c-0215-4dab-bf51-2ff854316726" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -582,16 +639,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11992" ], "x-ms-request-id": [ - "417cd353-eb42-435e-a835-37de393e19e8" + "3baa23b3-ab81-417f-bba1-50932c537376" ], "x-ms-correlation-request-id": [ - "417cd353-eb42-435e-a835-37de393e19e8" + "3baa23b3-ab81-417f-bba1-50932c537376" ], "x-ms-routing-request-id": [ - "WESTUS:20200302T230857Z:417cd353-eb42-435e-a835-37de393e19e8" + "WESTUS2:20200730T204024Z:3baa23b3-ab81-417f-bba1-50932c537376" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -600,7 +657,7 @@ "nosniff" ], "Date": [ - "Mon, 02 Mar 2020 23:08:57 GMT" + "Thu, 30 Jul 2020 20:40:23 GMT" ], "Content-Length": [ "1472" @@ -612,23 +669,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2438/providers/Microsoft.Devices/IotHubs/ps4798\",\r\n \"name\": \"ps4798\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2438\",\r\n \"etag\": \"AAAAAAvL20c=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4798.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4798\",\r\n \"endpoint\": \"sb://iothub-ns-ps4798-3020477-d95db4544d.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3634/providers/Microsoft.Devices/IotHubs/ps3044\",\r\n \"name\": \"ps3044\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3634\",\r\n \"etag\": \"AAAAAJ5PG8Y=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps3044.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3044\",\r\n \"endpoint\": \"sb://iothub-ns-ps3044-3949357-0ffb1eef55.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2438/providers/Microsoft.Devices/IotHubs/ps4798?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ3OTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3634/providers/Microsoft.Devices/IotHubs/ps3044?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzYzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNDQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c7a02808-832e-4e1c-9d70-3c37f2d210c5" + "3f2ad008-01ae-4596-99fc-51b296376978" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -645,16 +702,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11991" ], "x-ms-request-id": [ - "55844386-bd26-4554-b9f4-fd1dd6439d53" + "ddee8cb2-4579-46b9-bb0d-86e59dae9a71" ], "x-ms-correlation-request-id": [ - "55844386-bd26-4554-b9f4-fd1dd6439d53" + "ddee8cb2-4579-46b9-bb0d-86e59dae9a71" ], "x-ms-routing-request-id": [ - "WESTUS:20200302T230858Z:55844386-bd26-4554-b9f4-fd1dd6439d53" + "WESTUS2:20200730T204025Z:ddee8cb2-4579-46b9-bb0d-86e59dae9a71" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -663,7 +720,7 @@ "nosniff" ], "Date": [ - "Mon, 02 Mar 2020 23:08:58 GMT" + "Thu, 30 Jul 2020 20:40:24 GMT" ], "Content-Length": [ "1472" @@ -675,23 +732,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2438/providers/Microsoft.Devices/IotHubs/ps4798\",\r\n \"name\": \"ps4798\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2438\",\r\n \"etag\": \"AAAAAAvL20c=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4798.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4798\",\r\n \"endpoint\": \"sb://iothub-ns-ps4798-3020477-d95db4544d.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3634/providers/Microsoft.Devices/IotHubs/ps3044\",\r\n \"name\": \"ps3044\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3634\",\r\n \"etag\": \"AAAAAJ5PG8Y=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps3044.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3044\",\r\n \"endpoint\": \"sb://iothub-ns-ps3044-3949357-0ffb1eef55.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2438/providers/Microsoft.Devices/IotHubs/ps4798?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ3OTg/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3634/providers/Microsoft.Devices/IotHubs/ps3044?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzYzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNDQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6818758d-3ac9-4ed6-9a54-d3991680d216" + "84ff066c-0147-42bf-8ca3-f322517b2f71" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -708,16 +765,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11990" ], "x-ms-request-id": [ - "3fe38bf7-6874-4329-88da-795234783452" + "ec2c9d2a-ff30-4f11-a25f-042d3753cad0" ], "x-ms-correlation-request-id": [ - "3fe38bf7-6874-4329-88da-795234783452" + "ec2c9d2a-ff30-4f11-a25f-042d3753cad0" ], "x-ms-routing-request-id": [ - "WESTUS:20200302T230859Z:3fe38bf7-6874-4329-88da-795234783452" + "WESTUS2:20200730T204026Z:ec2c9d2a-ff30-4f11-a25f-042d3753cad0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -726,7 +783,7 @@ "nosniff" ], "Date": [ - "Mon, 02 Mar 2020 23:08:59 GMT" + "Thu, 30 Jul 2020 20:40:25 GMT" ], "Content-Length": [ "1472" @@ -738,23 +795,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2438/providers/Microsoft.Devices/IotHubs/ps4798\",\r\n \"name\": \"ps4798\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2438\",\r\n \"etag\": \"AAAAAAvL20c=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4798.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4798\",\r\n \"endpoint\": \"sb://iothub-ns-ps4798-3020477-d95db4544d.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3634/providers/Microsoft.Devices/IotHubs/ps3044\",\r\n \"name\": \"ps3044\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3634\",\r\n \"etag\": \"AAAAAJ5PG8Y=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps3044.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3044\",\r\n \"endpoint\": \"sb://iothub-ns-ps3044-3949357-0ffb1eef55.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2438/providers/Microsoft.Devices/IotHubs/ps4798/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ3OTgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3634/providers/Microsoft.Devices/IotHubs/ps3044/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzYzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNDQvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dd238c5b-b255-4230-af4f-2c531596fbd4" + "a0dcd852-d54b-499e-b016-1471a40cf970" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -771,16 +828,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1199" ], "x-ms-request-id": [ - "8e5ce866-6478-4ba9-ae97-b775a8a3693f" + "dae37d8b-4248-41c6-8364-e15320812493" ], "x-ms-correlation-request-id": [ - "8e5ce866-6478-4ba9-ae97-b775a8a3693f" + "dae37d8b-4248-41c6-8364-e15320812493" ], "x-ms-routing-request-id": [ - "WESTUS:20200302T230856Z:8e5ce866-6478-4ba9-ae97-b775a8a3693f" + "WESTUS2:20200730T204023Z:dae37d8b-4248-41c6-8364-e15320812493" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -789,7 +846,7 @@ "nosniff" ], "Date": [ - "Mon, 02 Mar 2020 23:08:56 GMT" + "Thu, 30 Jul 2020 20:40:22 GMT" ], "Content-Length": [ "905" @@ -801,23 +858,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"fg0ZPmZDUzz6B70i0EP7jVWNVBSMHgykBLz0p4dIoWs=\",\r\n \"secondaryKey\": \"PxAs1/3t3eOgHfyz8WKsq20swVv2i3k9Ml/FYTm4aW0=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"qZnC25Kc+OgQiFOGEzVjp4kdOsshUw98yHjF81JVmfw=\",\r\n \"secondaryKey\": \"+yeNJ39Fm8kMQ+1yLmE1qqVoz4P1mbqkNCBwdOdLZ28=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"sXaHRu5lvZyw0/cnfiqMORqIh5N3xcLIq9B7dUuJIts=\",\r\n \"secondaryKey\": \"Sf3PNqcTDuzVq3Mn7SfytMuTEoq2Oulr+qXV2VCVV6I=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Hk8QAWgnOdEeuIhDMS+p465KrCJLj7DhrYSO8grzWC4=\",\r\n \"secondaryKey\": \"RhDAOsoCH1pSDtvZTNHkFXhk9e5P31/jKcumPJsJSe0=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"uMuImYTW9RvfuPs3hvh2A9JAm4coulHdaYWHygPfJ6U=\",\r\n \"secondaryKey\": \"lq49VRlqxB67ptjHGlj4e4rUqFPE+r9Fvlb9wpDhXac=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"up0U8g2jmhtnLW0Z1Wvw7wfHsM8oClhej6XNGhprVAM=\",\r\n \"secondaryKey\": \"MkFRn2oIriCQ5/XWinWxBC1/GAjnfm3fJIMOnBhR4Wo=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"DNHddf2LA+GCvv5+2gPyCwgJ/rJlNm8MNyD0GBDfCek=\",\r\n \"secondaryKey\": \"X4nDcXX33Zv50JmQn5ANZ48oHuBQa81kQXknV/htCvc=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"v0vqI3zOQPHXCCvY84xgtMYyPmQLrsSV39+yOGGTGSA=\",\r\n \"secondaryKey\": \"dNMyGZzg0USDvyKJpLzexzF/8hMgEtH7OEMecwjjxhI=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"eZZp2Utd9oIDzPa3M++kNTyaK9opcBfWTxYlSoe4TAY=\",\r\n \"secondaryKey\": \"bmUDVX5eU6hOPVoGY5QHv8TWzu+eRd1+u/wd4CpS2pw=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"fYLBByO1MaU83S4ZzwzdHcnF55ONbW5Cp1qMGkDz3wQ=\",\r\n \"secondaryKey\": \"mjFI4H7L4UhapxhO0td30ljoZ2mg8PP83dZUQlNF2AE=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2438/providers/Microsoft.Devices/IotHubs/ps4798/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ3OTgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3634/providers/Microsoft.Devices/IotHubs/ps3044/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzYzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNDQvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "68237ea1-ef11-4666-ae79-171aa271a411" + "249a2612-7ca8-4011-a379-00076288eddc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -834,16 +891,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" + "1198" ], "x-ms-request-id": [ - "6767ae54-4634-4aac-96a4-07c6c70d4d12" + "3bda6319-77a7-44b7-915b-b2ed8b00caa3" ], "x-ms-correlation-request-id": [ - "6767ae54-4634-4aac-96a4-07c6c70d4d12" + "3bda6319-77a7-44b7-915b-b2ed8b00caa3" ], "x-ms-routing-request-id": [ - "WESTUS:20200302T230857Z:6767ae54-4634-4aac-96a4-07c6c70d4d12" + "WESTUS2:20200730T204024Z:3bda6319-77a7-44b7-915b-b2ed8b00caa3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -852,7 +909,7 @@ "nosniff" ], "Date": [ - "Mon, 02 Mar 2020 23:08:57 GMT" + "Thu, 30 Jul 2020 20:40:23 GMT" ], "Content-Length": [ "905" @@ -864,23 +921,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"fg0ZPmZDUzz6B70i0EP7jVWNVBSMHgykBLz0p4dIoWs=\",\r\n \"secondaryKey\": \"PxAs1/3t3eOgHfyz8WKsq20swVv2i3k9Ml/FYTm4aW0=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"qZnC25Kc+OgQiFOGEzVjp4kdOsshUw98yHjF81JVmfw=\",\r\n \"secondaryKey\": \"+yeNJ39Fm8kMQ+1yLmE1qqVoz4P1mbqkNCBwdOdLZ28=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"sXaHRu5lvZyw0/cnfiqMORqIh5N3xcLIq9B7dUuJIts=\",\r\n \"secondaryKey\": \"Sf3PNqcTDuzVq3Mn7SfytMuTEoq2Oulr+qXV2VCVV6I=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Hk8QAWgnOdEeuIhDMS+p465KrCJLj7DhrYSO8grzWC4=\",\r\n \"secondaryKey\": \"RhDAOsoCH1pSDtvZTNHkFXhk9e5P31/jKcumPJsJSe0=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"uMuImYTW9RvfuPs3hvh2A9JAm4coulHdaYWHygPfJ6U=\",\r\n \"secondaryKey\": \"lq49VRlqxB67ptjHGlj4e4rUqFPE+r9Fvlb9wpDhXac=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"up0U8g2jmhtnLW0Z1Wvw7wfHsM8oClhej6XNGhprVAM=\",\r\n \"secondaryKey\": \"MkFRn2oIriCQ5/XWinWxBC1/GAjnfm3fJIMOnBhR4Wo=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"DNHddf2LA+GCvv5+2gPyCwgJ/rJlNm8MNyD0GBDfCek=\",\r\n \"secondaryKey\": \"X4nDcXX33Zv50JmQn5ANZ48oHuBQa81kQXknV/htCvc=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"v0vqI3zOQPHXCCvY84xgtMYyPmQLrsSV39+yOGGTGSA=\",\r\n \"secondaryKey\": \"dNMyGZzg0USDvyKJpLzexzF/8hMgEtH7OEMecwjjxhI=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"eZZp2Utd9oIDzPa3M++kNTyaK9opcBfWTxYlSoe4TAY=\",\r\n \"secondaryKey\": \"bmUDVX5eU6hOPVoGY5QHv8TWzu+eRd1+u/wd4CpS2pw=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"fYLBByO1MaU83S4ZzwzdHcnF55ONbW5Cp1qMGkDz3wQ=\",\r\n \"secondaryKey\": \"mjFI4H7L4UhapxhO0td30ljoZ2mg8PP83dZUQlNF2AE=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2438/providers/Microsoft.Devices/IotHubs/ps4798/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ3OTgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3634/providers/Microsoft.Devices/IotHubs/ps3044/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzYzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNDQvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f96c21a1-09f6-4787-a809-580c4b030d42" + "87970f17-529b-4f7a-9e24-69b105badba5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -897,16 +954,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" + "1197" ], "x-ms-request-id": [ - "4d2607c7-9c5a-49a9-9043-18bd1391ea56" + "7e1e0e0e-7443-493f-9c3d-2b33f2a1e21f" ], "x-ms-correlation-request-id": [ - "4d2607c7-9c5a-49a9-9043-18bd1391ea56" + "7e1e0e0e-7443-493f-9c3d-2b33f2a1e21f" ], "x-ms-routing-request-id": [ - "WESTUS:20200302T230858Z:4d2607c7-9c5a-49a9-9043-18bd1391ea56" + "WESTUS2:20200730T204025Z:7e1e0e0e-7443-493f-9c3d-2b33f2a1e21f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -915,7 +972,7 @@ "nosniff" ], "Date": [ - "Mon, 02 Mar 2020 23:08:58 GMT" + "Thu, 30 Jul 2020 20:40:24 GMT" ], "Content-Length": [ "905" @@ -927,23 +984,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"fg0ZPmZDUzz6B70i0EP7jVWNVBSMHgykBLz0p4dIoWs=\",\r\n \"secondaryKey\": \"PxAs1/3t3eOgHfyz8WKsq20swVv2i3k9Ml/FYTm4aW0=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"qZnC25Kc+OgQiFOGEzVjp4kdOsshUw98yHjF81JVmfw=\",\r\n \"secondaryKey\": \"+yeNJ39Fm8kMQ+1yLmE1qqVoz4P1mbqkNCBwdOdLZ28=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"sXaHRu5lvZyw0/cnfiqMORqIh5N3xcLIq9B7dUuJIts=\",\r\n \"secondaryKey\": \"Sf3PNqcTDuzVq3Mn7SfytMuTEoq2Oulr+qXV2VCVV6I=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Hk8QAWgnOdEeuIhDMS+p465KrCJLj7DhrYSO8grzWC4=\",\r\n \"secondaryKey\": \"RhDAOsoCH1pSDtvZTNHkFXhk9e5P31/jKcumPJsJSe0=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"uMuImYTW9RvfuPs3hvh2A9JAm4coulHdaYWHygPfJ6U=\",\r\n \"secondaryKey\": \"lq49VRlqxB67ptjHGlj4e4rUqFPE+r9Fvlb9wpDhXac=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"up0U8g2jmhtnLW0Z1Wvw7wfHsM8oClhej6XNGhprVAM=\",\r\n \"secondaryKey\": \"MkFRn2oIriCQ5/XWinWxBC1/GAjnfm3fJIMOnBhR4Wo=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"DNHddf2LA+GCvv5+2gPyCwgJ/rJlNm8MNyD0GBDfCek=\",\r\n \"secondaryKey\": \"X4nDcXX33Zv50JmQn5ANZ48oHuBQa81kQXknV/htCvc=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"v0vqI3zOQPHXCCvY84xgtMYyPmQLrsSV39+yOGGTGSA=\",\r\n \"secondaryKey\": \"dNMyGZzg0USDvyKJpLzexzF/8hMgEtH7OEMecwjjxhI=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"eZZp2Utd9oIDzPa3M++kNTyaK9opcBfWTxYlSoe4TAY=\",\r\n \"secondaryKey\": \"bmUDVX5eU6hOPVoGY5QHv8TWzu+eRd1+u/wd4CpS2pw=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"fYLBByO1MaU83S4ZzwzdHcnF55ONbW5Cp1qMGkDz3wQ=\",\r\n \"secondaryKey\": \"mjFI4H7L4UhapxhO0td30ljoZ2mg8PP83dZUQlNF2AE=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2438/providers/Microsoft.Devices/IotHubs/ps4798/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ3OTgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3634/providers/Microsoft.Devices/IotHubs/ps3044/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzYzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNDQvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6ed496a3-49b9-4cb7-b8ef-1ab78e526d5c" + "421b32dc-a37f-46ff-bc4c-1ec6d5cf2cec" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -960,16 +1017,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1183" + "1196" ], "x-ms-request-id": [ - "8f269c8f-ac48-4bac-b9dd-0206b045fe83" + "55b5dd94-aa35-41eb-ad53-b4e607b44212" ], "x-ms-correlation-request-id": [ - "8f269c8f-ac48-4bac-b9dd-0206b045fe83" + "55b5dd94-aa35-41eb-ad53-b4e607b44212" ], "x-ms-routing-request-id": [ - "WESTUS:20200302T230859Z:8f269c8f-ac48-4bac-b9dd-0206b045fe83" + "WESTUS2:20200730T204026Z:55b5dd94-aa35-41eb-ad53-b4e607b44212" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -978,7 +1035,7 @@ "nosniff" ], "Date": [ - "Mon, 02 Mar 2020 23:08:59 GMT" + "Thu, 30 Jul 2020 20:40:26 GMT" ], "Content-Length": [ "905" @@ -990,16 +1047,15 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"fg0ZPmZDUzz6B70i0EP7jVWNVBSMHgykBLz0p4dIoWs=\",\r\n \"secondaryKey\": \"PxAs1/3t3eOgHfyz8WKsq20swVv2i3k9Ml/FYTm4aW0=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"qZnC25Kc+OgQiFOGEzVjp4kdOsshUw98yHjF81JVmfw=\",\r\n \"secondaryKey\": \"+yeNJ39Fm8kMQ+1yLmE1qqVoz4P1mbqkNCBwdOdLZ28=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"sXaHRu5lvZyw0/cnfiqMORqIh5N3xcLIq9B7dUuJIts=\",\r\n \"secondaryKey\": \"Sf3PNqcTDuzVq3Mn7SfytMuTEoq2Oulr+qXV2VCVV6I=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Hk8QAWgnOdEeuIhDMS+p465KrCJLj7DhrYSO8grzWC4=\",\r\n \"secondaryKey\": \"RhDAOsoCH1pSDtvZTNHkFXhk9e5P31/jKcumPJsJSe0=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"uMuImYTW9RvfuPs3hvh2A9JAm4coulHdaYWHygPfJ6U=\",\r\n \"secondaryKey\": \"lq49VRlqxB67ptjHGlj4e4rUqFPE+r9Fvlb9wpDhXac=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"up0U8g2jmhtnLW0Z1Wvw7wfHsM8oClhej6XNGhprVAM=\",\r\n \"secondaryKey\": \"MkFRn2oIriCQ5/XWinWxBC1/GAjnfm3fJIMOnBhR4Wo=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"DNHddf2LA+GCvv5+2gPyCwgJ/rJlNm8MNyD0GBDfCek=\",\r\n \"secondaryKey\": \"X4nDcXX33Zv50JmQn5ANZ48oHuBQa81kQXknV/htCvc=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"v0vqI3zOQPHXCCvY84xgtMYyPmQLrsSV39+yOGGTGSA=\",\r\n \"secondaryKey\": \"dNMyGZzg0USDvyKJpLzexzF/8hMgEtH7OEMecwjjxhI=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"eZZp2Utd9oIDzPa3M++kNTyaK9opcBfWTxYlSoe4TAY=\",\r\n \"secondaryKey\": \"bmUDVX5eU6hOPVoGY5QHv8TWzu+eRd1+u/wd4CpS2pw=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"fYLBByO1MaU83S4ZzwzdHcnF55ONbW5Cp1qMGkDz3wQ=\",\r\n \"secondaryKey\": \"mjFI4H7L4UhapxhO0td30ljoZ2mg8PP83dZUQlNF2AE=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], "Names": { "Test-AzureRmIotHubTracing": [ - "ps4798", - "ps2438", - "ps5622", - "ps305" + "ps3044", + "ps3634", + "ps1472" ] }, "Variables": { diff --git a/src/IotHub/IotHub.Test/SessionRecords/Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubRoutingTests/TestAzureIotHubRoutingLifeCycle.json b/src/IotHub/IotHub.Test/SessionRecords/Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubRoutingTests/TestAzureIotHubRoutingLifeCycle.json index 9a5bb4f7e431..87e6aa72d3a5 100644 --- a/src/IotHub/IotHub.Test/SessionRecords/Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubRoutingTests/TestAzureIotHubRoutingLifeCycle.json +++ b/src/IotHub/IotHub.Test/SessionRecords/Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubRoutingTests/TestAzureIotHubRoutingLifeCycle.json @@ -7,16 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a2eceff8-de54-458d-a89b-555f0dbe9d1e" + "4516d054-be08-4d4b-afcd-f76eb7fa3970" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.15" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" ] }, "ResponseHeaders": { @@ -30,13 +30,13 @@ "11999" ], "x-ms-request-id": [ - "b40fa1a8-42ac-44bb-91a0-00c9267d6919" + "9354c212-bf3f-42f1-bee2-b19327a01d1c" ], "x-ms-correlation-request-id": [ - "b40fa1a8-42ac-44bb-91a0-00c9267d6919" + "9354c212-bf3f-42f1-bee2-b19327a01d1c" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184026Z:b40fa1a8-42ac-44bb-91a0-00c9267d6919" + "WESTUS2:20200730T204128Z:9354c212-bf3f-42f1-bee2-b19327a01d1c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:40:26 GMT" + "Thu, 30 Jul 2020 20:41:27 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -61,22 +61,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourcegroups/ps7625?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlZ3JvdXBzL3BzNzYyNT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourcegroups/ps3206?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlZ3JvdXBzL3BzMzIwNj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US 2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4d08459c-ebb2-4eaf-8eab-efd72662e44b" + "de6e078e-7769-4abd-af97-fc8db8f7d191" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.15" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "c9c46807-126a-47e1-aab2-0029f0b8931a" + "0419c3cf-ec9e-4622-8ae0-c1ac8aec1a19" ], "x-ms-correlation-request-id": [ - "c9c46807-126a-47e1-aab2-0029f0b8931a" + "0419c3cf-ec9e-4622-8ae0-c1ac8aec1a19" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184026Z:c9c46807-126a-47e1-aab2-0029f0b8931a" + "WESTUS2:20200730T204129Z:0419c3cf-ec9e-4622-8ae0-c1ac8aec1a19" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:40:26 GMT" + "Thu, 30 Jul 2020 20:41:28 GMT" ], "Content-Length": [ "166" @@ -123,23 +123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625\",\r\n \"name\": \"ps7625\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206\",\r\n \"name\": \"ps3206\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2d63284f-1730-4008-8973-34d6693711b6" + "fdaf2297-cccf-433c-ae70-959f7b743ba9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -159,7 +159,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMDYzMzVhM2UtN2EwYS00MjhlLWFlMTMtNWNlNDE2ZDUxNDMz?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjYxOWI2OTItYjE1Zi00MzE1LWFiODQtMmMwZmFjZWRhMmJm?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -168,13 +168,13 @@ "4999" ], "x-ms-request-id": [ - "a06a24e8-2b63-4d7a-8874-e61062f03365" + "b996c31c-a92a-4665-b33f-1ab2bd010280" ], "x-ms-correlation-request-id": [ - "a06a24e8-2b63-4d7a-8874-e61062f03365" + "b996c31c-a92a-4665-b33f-1ab2bd010280" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184040Z:a06a24e8-2b63-4d7a-8874-e61062f03365" + "WESTUS2:20200730T204145Z:b996c31c-a92a-4665-b33f-1ab2bd010280" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -183,7 +183,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:40:40 GMT" + "Thu, 30 Jul 2020 20:41:45 GMT" ], "Content-Length": [ "621" @@ -195,23 +195,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"properties\": {\r\n \"state\": \"Activating\",\r\n \"provisioningState\": \"Accepted\",\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"properties\": {\r\n \"state\": \"Activating\",\r\n \"provisioningState\": \"Accepted\",\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAABLBGRg=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net/;SharedAccessKeyName=ps7586;SharedAccessKey=U1eYLWYPec/8NSbk3muwxiPjq+nv2Dp3GCt5lkOS8jE=;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"etag\": \"AAAAAJ5UXO0=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net/;SharedAccessKeyName=ps424;SharedAccessKey=AW2s4P8O4mD+LYNDTXrpx0VIhDyivejYLWHBj9izRas=;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "25a52985-5332-476f-bf62-61cfdd4fc331" + "1f3a217a-f9cb-4d08-9a2b-c2e41145d14b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -220,7 +220,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "1754" + "1752" ] }, "ResponseHeaders": { @@ -231,7 +231,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMTBhMThkYmItNWRjYS00N2RiLWJmYjMtYWUzYjI4YzFjOWMy?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYjY1NDI5YzItMDM3Mi00YmQ0LWI3NjMtN2Q2NWRmNTcyOGIx?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -240,13 +240,13 @@ "4998" ], "x-ms-request-id": [ - "b48633ed-6e5b-482b-b20e-eb959e2d0782" + "c8ed9b4c-7843-4b22-ad13-8ba5b116ee06" ], "x-ms-correlation-request-id": [ - "b48633ed-6e5b-482b-b20e-eb959e2d0782" + "c8ed9b4c-7843-4b22-ad13-8ba5b116ee06" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184412Z:b48633ed-6e5b-482b-b20e-eb959e2d0782" + "WESTUS2:20200730T204618Z:c8ed9b4c-7843-4b22-ad13-8ba5b116ee06" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -255,10 +255,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:44:11 GMT" + "Thu, 30 Jul 2020 20:46:17 GMT" ], "Content-Length": [ - "4249" + "4247" ], "Content-Type": [ "application/json; charset=utf-8" @@ -267,23 +267,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLBGRg=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"50W/cRtmjyxQpssUtuOQXJQdQsoD1pp/VtMOI8HlYbQ=\",\r\n \"secondaryKey\": \"HaqJGvo0TPYgz2QaTO2NM6TKFYy83PPfnQUUq6pB+Ec=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"qbkr+m8q7Nic3ZUascZUl1jkK8a85qJK+iuHMzIVAy8=\",\r\n \"secondaryKey\": \"sT+4PBILYb2Yd9o2Ck2G3MWPfbUWaaNCauqlw1+LJlg=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"66rF5og/xuFuQYu3vR4OJtJV7G1xgFjG59L6n5KkJtg=\",\r\n \"secondaryKey\": \"ZPfPz8j1SsCywCh/piN3nm0JG56qUkancOGBpaCuvd0=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"WkvHh/TUtXHep8igL6xWdBMTkfNVnLJwe8pUj+xTKJc=\",\r\n \"secondaryKey\": \"M87nK/5eFQhvEU+rvfaybj5JbQQhpvVQ40g2dp1R7sw=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"JLpWSs6DRnOfTjO2hHO1jMFY/OuxGxdeZDPMRIMcENU=\",\r\n \"secondaryKey\": \"lUInAfihIHMX54pdxQRe16mudmWNvGH6cX7i+ecMFSQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-76f98e40-a5ef-4cab-b8c6-04f21c163e95-iothub\",\r\n \"PrimaryKey\": \"hX5QG2qqpl8oZu3MrkZnPsmK2PwbW1pOyMnXpWF/iTc=\",\r\n \"SecondaryKey\": \"dqo/859FShHGaBCPS4ppPAZvT/ouVNCQq7/KG9e79z0=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:42:32 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:42:32 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-3cce7c59-fe2d-4d24-933e-64162bc52669-iothub\",\r\n \"PrimaryKey\": \"wASRVPoZsA9w45V7l1VYBbmyLVykecEmjuitNvB3I4o=\",\r\n \"SecondaryKey\": \"yx76nZLgpDUBsLXb0SfrrSGgUUFJhwmAYxcoz32psZM=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:42:32 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:42:32 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"50W/cRtmjyxQpssUtuOQXJQdQsoD1pp/VtMOI8HlYbQ=\",\r\n \"SecondaryKey\": \"HaqJGvo0TPYgz2QaTO2NM6TKFYy83PPfnQUUq6pB+Ec=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:42:32 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:42:32 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"qbkr+m8q7Nic3ZUascZUl1jkK8a85qJK+iuHMzIVAy8=\",\r\n \"SecondaryKey\": \"sT+4PBILYb2Yd9o2Ck2G3MWPfbUWaaNCauqlw1+LJlg=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:42:32 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:42:32 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net/;SharedAccessKeyName=ps7586;SharedAccessKey=U1eYLWYPec/8NSbk3muwxiPjq+nv2Dp3GCt5lkOS8jE=;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"id\": \"4e82e344-ee11-4642-9987-99a2fd5a3deb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5UXO0=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"ias8xYD/BVzNSFtoMQt8g7oyya2gKVjF5BW5g28eorY=\",\r\n \"secondaryKey\": \"BMANY2lVeWkwxQnypbR1ik/txxqTwGUsOzZDpfCZ34w=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"X3sW9tC3MR3DGzotX68yEwP8qMIWZa8BQrY0e8+9OIg=\",\r\n \"secondaryKey\": \"dbKKZ0NB+Y2IujvU2rBOpnygwyIBAe9pVA5Y6MRkKTY=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"MJslAeTjuREVAz7T9AbLj1h1rqv3BklS1oH5eDWFgwI=\",\r\n \"secondaryKey\": \"3zNjW6oOVSnTnpHIBz+yVHkLA1jyT3LlR0YFDDJsBpQ=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"kQXWydwELg5i4QjK3qtpOo8Nw4wG+tp8fNEkYUYkWrY=\",\r\n \"secondaryKey\": \"2dS+gOi1qqVlzHN2MK2igQRxzdz7lidoMUUQJmAuP4c=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"k8kmNyooqFttHJsDVJtMTqu0sSSF/FqCFSTTXyL7JhE=\",\r\n \"secondaryKey\": \"yBx/kzMawnmvoQRyluGOnWhvC8Qql5193oo7YDz3+DQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-f459458b-61a0-4d34-b164-1b6407447631-iothub\",\r\n \"PrimaryKey\": \"NLYP51WPskWM/jmFDkJUYzAjUj2/aDaj9Qe+bsyRuB8=\",\r\n \"SecondaryKey\": \"6upXNOPtokfEKzg7f/MxwpUJ/CqtA+CgRB75KvR64Wk=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 20:43:56 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 20:43:56 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-34cdace9-57e7-4d3a-85ed-780161e4e17b-iothub\",\r\n \"PrimaryKey\": \"0m40LrG0hYXSMoQnCjG7nKrXS+tt+Sz0r1X3MxesZCc=\",\r\n \"SecondaryKey\": \"BSHt6yuQwmNgDgwKL2vTJno4zHzNLZKev3oR85ft1Ro=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 20:43:56 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 20:43:56 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"ias8xYD/BVzNSFtoMQt8g7oyya2gKVjF5BW5g28eorY=\",\r\n \"SecondaryKey\": \"BMANY2lVeWkwxQnypbR1ik/txxqTwGUsOzZDpfCZ34w=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 20:43:56 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 20:43:56 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"X3sW9tC3MR3DGzotX68yEwP8qMIWZa8BQrY0e8+9OIg=\",\r\n \"SecondaryKey\": \"dbKKZ0NB+Y2IujvU2rBOpnygwyIBAe9pVA5Y6MRkKTY=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 20:43:56 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 20:43:56 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net/;SharedAccessKeyName=ps424;SharedAccessKey=AW2s4P8O4mD+LYNDTXrpx0VIhDyivejYLWHBj9izRas=;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"id\": \"8f32adaf-74ff-48c5-b7ac-858b7e266d40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAABLBV5A=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net:5671/;SharedAccessKeyName=ps7586;SharedAccessKey=****;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==;EndpointSuffix=core.windows.net\",\r\n \"name\": \"ps9994\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\",\r\n \"containerName\": \"container1\",\r\n \"encoding\": \"json\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"etag\": \"AAAAAJ5WoFU=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net:5671/;SharedAccessKeyName=ps424;SharedAccessKey=****;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==;EndpointSuffix=core.windows.net\",\r\n \"name\": \"ps3913\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\",\r\n \"containerName\": \"container1\",\r\n \"encoding\": \"json\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6dda6620-d1cc-4db9-9c83-06a85754ac0e" + "be838b2f-7e0b-4a74-98e4-883f6d0546c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -292,7 +292,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "2218" + "2216" ] }, "ResponseHeaders": { @@ -303,7 +303,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMWUxMzJhMWEtMjA0MC00MGM1LWFiYjAtYzMwZWQxYjIwNGU0?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfOWE4YWVlN2ItMTExOC00MWJkLWEzYzQtZDdhMGUzYjg5OWI3?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -312,13 +312,13 @@ "4997" ], "x-ms-request-id": [ - "40e64c07-f16d-4ba8-956f-0f01716b9d92" + "efe9cb1d-570a-49d5-997d-1bf84aff1cb2" ], "x-ms-correlation-request-id": [ - "40e64c07-f16d-4ba8-956f-0f01716b9d92" + "efe9cb1d-570a-49d5-997d-1bf84aff1cb2" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184446Z:40e64c07-f16d-4ba8-956f-0f01716b9d92" + "WESTUS2:20200730T204653Z:efe9cb1d-570a-49d5-997d-1bf84aff1cb2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -327,10 +327,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:44:46 GMT" + "Thu, 30 Jul 2020 20:46:53 GMT" ], "Content-Length": [ - "4797" + "4795" ], "Content-Type": [ "application/json; charset=utf-8" @@ -339,23 +339,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLBV5A=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"50W/cRtmjyxQpssUtuOQXJQdQsoD1pp/VtMOI8HlYbQ=\",\r\n \"secondaryKey\": \"HaqJGvo0TPYgz2QaTO2NM6TKFYy83PPfnQUUq6pB+Ec=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"qbkr+m8q7Nic3ZUascZUl1jkK8a85qJK+iuHMzIVAy8=\",\r\n \"secondaryKey\": \"sT+4PBILYb2Yd9o2Ck2G3MWPfbUWaaNCauqlw1+LJlg=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"66rF5og/xuFuQYu3vR4OJtJV7G1xgFjG59L6n5KkJtg=\",\r\n \"secondaryKey\": \"ZPfPz8j1SsCywCh/piN3nm0JG56qUkancOGBpaCuvd0=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"WkvHh/TUtXHep8igL6xWdBMTkfNVnLJwe8pUj+xTKJc=\",\r\n \"secondaryKey\": \"M87nK/5eFQhvEU+rvfaybj5JbQQhpvVQ40g2dp1R7sw=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"JLpWSs6DRnOfTjO2hHO1jMFY/OuxGxdeZDPMRIMcENU=\",\r\n \"secondaryKey\": \"lUInAfihIHMX54pdxQRe16mudmWNvGH6cX7i+ecMFSQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-76f98e40-a5ef-4cab-b8c6-04f21c163e95-iothub\",\r\n \"PrimaryKey\": \"hX5QG2qqpl8oZu3MrkZnPsmK2PwbW1pOyMnXpWF/iTc=\",\r\n \"SecondaryKey\": \"dqo/859FShHGaBCPS4ppPAZvT/ouVNCQq7/KG9e79z0=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:44:23 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:44:23 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-3cce7c59-fe2d-4d24-933e-64162bc52669-iothub\",\r\n \"PrimaryKey\": \"wASRVPoZsA9w45V7l1VYBbmyLVykecEmjuitNvB3I4o=\",\r\n \"SecondaryKey\": \"yx76nZLgpDUBsLXb0SfrrSGgUUFJhwmAYxcoz32psZM=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:44:23 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:44:23 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"50W/cRtmjyxQpssUtuOQXJQdQsoD1pp/VtMOI8HlYbQ=\",\r\n \"SecondaryKey\": \"HaqJGvo0TPYgz2QaTO2NM6TKFYy83PPfnQUUq6pB+Ec=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:44:23 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:44:23 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"qbkr+m8q7Nic3ZUascZUl1jkK8a85qJK+iuHMzIVAy8=\",\r\n \"SecondaryKey\": \"sT+4PBILYb2Yd9o2Ck2G3MWPfbUWaaNCauqlw1+LJlg=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:44:23 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:44:23 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net/;SharedAccessKeyName=ps7586;SharedAccessKey=U1eYLWYPec/8NSbk3muwxiPjq+nv2Dp3GCt5lkOS8jE=;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"id\": \"4e82e344-ee11-4642-9987-99a2fd5a3deb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==;EndpointSuffix=core.windows.net\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps9994\",\r\n \"id\": \"e674b29f-4530-4bd4-aa99-ad978723a8d6\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5WoFU=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"ias8xYD/BVzNSFtoMQt8g7oyya2gKVjF5BW5g28eorY=\",\r\n \"secondaryKey\": \"BMANY2lVeWkwxQnypbR1ik/txxqTwGUsOzZDpfCZ34w=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"X3sW9tC3MR3DGzotX68yEwP8qMIWZa8BQrY0e8+9OIg=\",\r\n \"secondaryKey\": \"dbKKZ0NB+Y2IujvU2rBOpnygwyIBAe9pVA5Y6MRkKTY=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"MJslAeTjuREVAz7T9AbLj1h1rqv3BklS1oH5eDWFgwI=\",\r\n \"secondaryKey\": \"3zNjW6oOVSnTnpHIBz+yVHkLA1jyT3LlR0YFDDJsBpQ=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"kQXWydwELg5i4QjK3qtpOo8Nw4wG+tp8fNEkYUYkWrY=\",\r\n \"secondaryKey\": \"2dS+gOi1qqVlzHN2MK2igQRxzdz7lidoMUUQJmAuP4c=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"k8kmNyooqFttHJsDVJtMTqu0sSSF/FqCFSTTXyL7JhE=\",\r\n \"secondaryKey\": \"yBx/kzMawnmvoQRyluGOnWhvC8Qql5193oo7YDz3+DQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-f459458b-61a0-4d34-b164-1b6407447631-iothub\",\r\n \"PrimaryKey\": \"NLYP51WPskWM/jmFDkJUYzAjUj2/aDaj9Qe+bsyRuB8=\",\r\n \"SecondaryKey\": \"6upXNOPtokfEKzg7f/MxwpUJ/CqtA+CgRB75KvR64Wk=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 20:46:30 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 20:46:30 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-34cdace9-57e7-4d3a-85ed-780161e4e17b-iothub\",\r\n \"PrimaryKey\": \"0m40LrG0hYXSMoQnCjG7nKrXS+tt+Sz0r1X3MxesZCc=\",\r\n \"SecondaryKey\": \"BSHt6yuQwmNgDgwKL2vTJno4zHzNLZKev3oR85ft1Ro=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 20:46:30 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 20:46:30 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"ias8xYD/BVzNSFtoMQt8g7oyya2gKVjF5BW5g28eorY=\",\r\n \"SecondaryKey\": \"BMANY2lVeWkwxQnypbR1ik/txxqTwGUsOzZDpfCZ34w=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 20:46:30 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 20:46:30 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"X3sW9tC3MR3DGzotX68yEwP8qMIWZa8BQrY0e8+9OIg=\",\r\n \"SecondaryKey\": \"dbKKZ0NB+Y2IujvU2rBOpnygwyIBAe9pVA5Y6MRkKTY=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 20:46:30 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 20:46:30 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net/;SharedAccessKeyName=ps424;SharedAccessKey=AW2s4P8O4mD+LYNDTXrpx0VIhDyivejYLWHBj9izRas=;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"id\": \"8f32adaf-74ff-48c5-b7ac-858b7e266d40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==;EndpointSuffix=core.windows.net\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps3913\",\r\n \"id\": \"a811fa1f-4f32-47f9-b3c3-ebfcfed18d08\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAABLBg8I=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net:5671/;SharedAccessKeyName=ps7586;SharedAccessKey=****;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"name\": \"ps9994\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==;EndpointSuffix=core.windows.net\",\r\n \"name\": \"ps6224\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\",\r\n \"containerName\": \"container2\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"etag\": \"AAAAAJ5XVLk=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net:5671/;SharedAccessKeyName=ps424;SharedAccessKey=****;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"name\": \"ps3913\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==;EndpointSuffix=core.windows.net\",\r\n \"name\": \"ps7754\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\",\r\n \"containerName\": \"container2\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4d2d5641-3e24-4517-9b2c-0f6f74950c4d" + "d3311500-1e9d-4187-9a30-0a04ce41d9ee" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -364,7 +364,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "2765" + "2763" ] }, "ResponseHeaders": { @@ -375,7 +375,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNzFhZDQwZmItM2QyMy00YzVkLWE5NWEtZGE2MWFiMTY5NjUw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMWVmNjQzYTAtYjdiYS00NGQ4LWE5ZDYtZGFjMTYyMWY1NzU5?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -384,13 +384,13 @@ "4996" ], "x-ms-request-id": [ - "ba7a30f6-6224-4ac9-95dd-be12c3c16545" + "b78c4420-0abd-4275-967e-1579f225103f" ], "x-ms-correlation-request-id": [ - "ba7a30f6-6224-4ac9-95dd-be12c3c16545" + "b78c4420-0abd-4275-967e-1579f225103f" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184521Z:ba7a30f6-6224-4ac9-95dd-be12c3c16545" + "WESTUS2:20200730T204729Z:b78c4420-0abd-4275-967e-1579f225103f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -399,10 +399,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:45:20 GMT" + "Thu, 30 Jul 2020 20:47:28 GMT" ], "Content-Length": [ - "5346" + "5344" ], "Content-Type": [ "application/json; charset=utf-8" @@ -411,23 +411,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLBg8I=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"50W/cRtmjyxQpssUtuOQXJQdQsoD1pp/VtMOI8HlYbQ=\",\r\n \"secondaryKey\": \"HaqJGvo0TPYgz2QaTO2NM6TKFYy83PPfnQUUq6pB+Ec=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"qbkr+m8q7Nic3ZUascZUl1jkK8a85qJK+iuHMzIVAy8=\",\r\n \"secondaryKey\": \"sT+4PBILYb2Yd9o2Ck2G3MWPfbUWaaNCauqlw1+LJlg=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"66rF5og/xuFuQYu3vR4OJtJV7G1xgFjG59L6n5KkJtg=\",\r\n \"secondaryKey\": \"ZPfPz8j1SsCywCh/piN3nm0JG56qUkancOGBpaCuvd0=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"WkvHh/TUtXHep8igL6xWdBMTkfNVnLJwe8pUj+xTKJc=\",\r\n \"secondaryKey\": \"M87nK/5eFQhvEU+rvfaybj5JbQQhpvVQ40g2dp1R7sw=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"JLpWSs6DRnOfTjO2hHO1jMFY/OuxGxdeZDPMRIMcENU=\",\r\n \"secondaryKey\": \"lUInAfihIHMX54pdxQRe16mudmWNvGH6cX7i+ecMFSQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-76f98e40-a5ef-4cab-b8c6-04f21c163e95-iothub\",\r\n \"PrimaryKey\": \"hX5QG2qqpl8oZu3MrkZnPsmK2PwbW1pOyMnXpWF/iTc=\",\r\n \"SecondaryKey\": \"dqo/859FShHGaBCPS4ppPAZvT/ouVNCQq7/KG9e79z0=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:44:56 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:44:56 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-3cce7c59-fe2d-4d24-933e-64162bc52669-iothub\",\r\n \"PrimaryKey\": \"wASRVPoZsA9w45V7l1VYBbmyLVykecEmjuitNvB3I4o=\",\r\n \"SecondaryKey\": \"yx76nZLgpDUBsLXb0SfrrSGgUUFJhwmAYxcoz32psZM=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:44:56 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:44:56 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"50W/cRtmjyxQpssUtuOQXJQdQsoD1pp/VtMOI8HlYbQ=\",\r\n \"SecondaryKey\": \"HaqJGvo0TPYgz2QaTO2NM6TKFYy83PPfnQUUq6pB+Ec=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:44:56 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:44:56 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"qbkr+m8q7Nic3ZUascZUl1jkK8a85qJK+iuHMzIVAy8=\",\r\n \"SecondaryKey\": \"sT+4PBILYb2Yd9o2Ck2G3MWPfbUWaaNCauqlw1+LJlg=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:44:56 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:44:56 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net/;SharedAccessKeyName=ps7586;SharedAccessKey=U1eYLWYPec/8NSbk3muwxiPjq+nv2Dp3GCt5lkOS8jE=;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"id\": \"4e82e344-ee11-4642-9987-99a2fd5a3deb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps9994\",\r\n \"id\": \"e674b29f-4530-4bd4-aa99-ad978723a8d6\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==;EndpointSuffix=core.windows.net\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps6224\",\r\n \"id\": \"48fa3d2f-191f-42b7-a601-fba21739ef19\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5XVLk=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"ias8xYD/BVzNSFtoMQt8g7oyya2gKVjF5BW5g28eorY=\",\r\n \"secondaryKey\": \"BMANY2lVeWkwxQnypbR1ik/txxqTwGUsOzZDpfCZ34w=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"X3sW9tC3MR3DGzotX68yEwP8qMIWZa8BQrY0e8+9OIg=\",\r\n \"secondaryKey\": \"dbKKZ0NB+Y2IujvU2rBOpnygwyIBAe9pVA5Y6MRkKTY=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"MJslAeTjuREVAz7T9AbLj1h1rqv3BklS1oH5eDWFgwI=\",\r\n \"secondaryKey\": \"3zNjW6oOVSnTnpHIBz+yVHkLA1jyT3LlR0YFDDJsBpQ=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"kQXWydwELg5i4QjK3qtpOo8Nw4wG+tp8fNEkYUYkWrY=\",\r\n \"secondaryKey\": \"2dS+gOi1qqVlzHN2MK2igQRxzdz7lidoMUUQJmAuP4c=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"k8kmNyooqFttHJsDVJtMTqu0sSSF/FqCFSTTXyL7JhE=\",\r\n \"secondaryKey\": \"yBx/kzMawnmvoQRyluGOnWhvC8Qql5193oo7YDz3+DQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-f459458b-61a0-4d34-b164-1b6407447631-iothub\",\r\n \"PrimaryKey\": \"NLYP51WPskWM/jmFDkJUYzAjUj2/aDaj9Qe+bsyRuB8=\",\r\n \"SecondaryKey\": \"6upXNOPtokfEKzg7f/MxwpUJ/CqtA+CgRB75KvR64Wk=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 20:47:08 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 20:47:08 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-34cdace9-57e7-4d3a-85ed-780161e4e17b-iothub\",\r\n \"PrimaryKey\": \"0m40LrG0hYXSMoQnCjG7nKrXS+tt+Sz0r1X3MxesZCc=\",\r\n \"SecondaryKey\": \"BSHt6yuQwmNgDgwKL2vTJno4zHzNLZKev3oR85ft1Ro=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 20:47:08 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 20:47:08 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"ias8xYD/BVzNSFtoMQt8g7oyya2gKVjF5BW5g28eorY=\",\r\n \"SecondaryKey\": \"BMANY2lVeWkwxQnypbR1ik/txxqTwGUsOzZDpfCZ34w=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 20:47:08 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 20:47:08 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"X3sW9tC3MR3DGzotX68yEwP8qMIWZa8BQrY0e8+9OIg=\",\r\n \"SecondaryKey\": \"dbKKZ0NB+Y2IujvU2rBOpnygwyIBAe9pVA5Y6MRkKTY=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 20:47:08 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 20:47:08 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net/;SharedAccessKeyName=ps424;SharedAccessKey=AW2s4P8O4mD+LYNDTXrpx0VIhDyivejYLWHBj9izRas=;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"id\": \"8f32adaf-74ff-48c5-b7ac-858b7e266d40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps3913\",\r\n \"id\": \"a811fa1f-4f32-47f9-b3c3-ebfcfed18d08\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==;EndpointSuffix=core.windows.net\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps7754\",\r\n \"id\": \"0abebe7e-1a12-4a60-8882-50f720bbfbdd\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAABLBsfc=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net:5671/;SharedAccessKeyName=ps7586;SharedAccessKey=****;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"name\": \"ps9994\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"name\": \"ps6224\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps1506\",\r\n \"value\": \"ps1190\",\r\n \"endpointNames\": [\r\n \"ps9994\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"etag\": \"AAAAAJ5XqA8=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net:5671/;SharedAccessKeyName=ps424;SharedAccessKey=****;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"name\": \"ps3913\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"name\": \"ps7754\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps2458\",\r\n \"value\": \"ps7571\",\r\n \"endpointNames\": [\r\n \"ps3913\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "66fe067c-c191-40c8-9226-f8cebe478a57" + "72a9bd82-62a2-45a2-815f-6df41f26d7a2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -436,7 +436,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "3067" + "3065" ] }, "ResponseHeaders": { @@ -447,7 +447,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMzg3YmE2MzctNjhhYy00MDk1LWFlNDItNTg3NGQwYjM3ZWJi?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYWRkY2Y2YWMtYmI5Yi00NTQ4LTk1ZTQtOWQwZWUwZmE1MWIw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -456,13 +456,13 @@ "4995" ], "x-ms-request-id": [ - "529a3304-1270-4adc-a830-fbe51452bf73" + "06155d2d-c96a-4b04-b095-9a76dd4e13c2" ], "x-ms-correlation-request-id": [ - "529a3304-1270-4adc-a830-fbe51452bf73" + "06155d2d-c96a-4b04-b095-9a76dd4e13c2" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184558Z:529a3304-1270-4adc-a830-fbe51452bf73" + "WESTUS2:20200730T204835Z:06155d2d-c96a-4b04-b095-9a76dd4e13c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -471,10 +471,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:45:57 GMT" + "Thu, 30 Jul 2020 20:48:35 GMT" ], "Content-Length": [ - "5423" + "5421" ], "Content-Type": [ "application/json; charset=utf-8" @@ -483,23 +483,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLBsfc=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"50W/cRtmjyxQpssUtuOQXJQdQsoD1pp/VtMOI8HlYbQ=\",\r\n \"secondaryKey\": \"HaqJGvo0TPYgz2QaTO2NM6TKFYy83PPfnQUUq6pB+Ec=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"qbkr+m8q7Nic3ZUascZUl1jkK8a85qJK+iuHMzIVAy8=\",\r\n \"secondaryKey\": \"sT+4PBILYb2Yd9o2Ck2G3MWPfbUWaaNCauqlw1+LJlg=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"66rF5og/xuFuQYu3vR4OJtJV7G1xgFjG59L6n5KkJtg=\",\r\n \"secondaryKey\": \"ZPfPz8j1SsCywCh/piN3nm0JG56qUkancOGBpaCuvd0=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"WkvHh/TUtXHep8igL6xWdBMTkfNVnLJwe8pUj+xTKJc=\",\r\n \"secondaryKey\": \"M87nK/5eFQhvEU+rvfaybj5JbQQhpvVQ40g2dp1R7sw=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"JLpWSs6DRnOfTjO2hHO1jMFY/OuxGxdeZDPMRIMcENU=\",\r\n \"secondaryKey\": \"lUInAfihIHMX54pdxQRe16mudmWNvGH6cX7i+ecMFSQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-76f98e40-a5ef-4cab-b8c6-04f21c163e95-iothub\",\r\n \"PrimaryKey\": \"hX5QG2qqpl8oZu3MrkZnPsmK2PwbW1pOyMnXpWF/iTc=\",\r\n \"SecondaryKey\": \"dqo/859FShHGaBCPS4ppPAZvT/ouVNCQq7/KG9e79z0=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:45:34 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:45:34 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-3cce7c59-fe2d-4d24-933e-64162bc52669-iothub\",\r\n \"PrimaryKey\": \"wASRVPoZsA9w45V7l1VYBbmyLVykecEmjuitNvB3I4o=\",\r\n \"SecondaryKey\": \"yx76nZLgpDUBsLXb0SfrrSGgUUFJhwmAYxcoz32psZM=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:45:34 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:45:34 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"50W/cRtmjyxQpssUtuOQXJQdQsoD1pp/VtMOI8HlYbQ=\",\r\n \"SecondaryKey\": \"HaqJGvo0TPYgz2QaTO2NM6TKFYy83PPfnQUUq6pB+Ec=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:45:34 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:45:34 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"qbkr+m8q7Nic3ZUascZUl1jkK8a85qJK+iuHMzIVAy8=\",\r\n \"SecondaryKey\": \"sT+4PBILYb2Yd9o2Ck2G3MWPfbUWaaNCauqlw1+LJlg=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:45:34 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:45:34 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net/;SharedAccessKeyName=ps7586;SharedAccessKey=U1eYLWYPec/8NSbk3muwxiPjq+nv2Dp3GCt5lkOS8jE=;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"id\": \"4e82e344-ee11-4642-9987-99a2fd5a3deb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps9994\",\r\n \"id\": \"e674b29f-4530-4bd4-aa99-ad978723a8d6\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps6224\",\r\n \"id\": \"48fa3d2f-191f-42b7-a601-fba21739ef19\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps1506\",\r\n \"value\": \"ps1190\",\r\n \"endpointNames\": [\r\n \"ps9994\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5XqA8=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"ias8xYD/BVzNSFtoMQt8g7oyya2gKVjF5BW5g28eorY=\",\r\n \"secondaryKey\": \"BMANY2lVeWkwxQnypbR1ik/txxqTwGUsOzZDpfCZ34w=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"X3sW9tC3MR3DGzotX68yEwP8qMIWZa8BQrY0e8+9OIg=\",\r\n \"secondaryKey\": \"dbKKZ0NB+Y2IujvU2rBOpnygwyIBAe9pVA5Y6MRkKTY=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"MJslAeTjuREVAz7T9AbLj1h1rqv3BklS1oH5eDWFgwI=\",\r\n \"secondaryKey\": \"3zNjW6oOVSnTnpHIBz+yVHkLA1jyT3LlR0YFDDJsBpQ=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"kQXWydwELg5i4QjK3qtpOo8Nw4wG+tp8fNEkYUYkWrY=\",\r\n \"secondaryKey\": \"2dS+gOi1qqVlzHN2MK2igQRxzdz7lidoMUUQJmAuP4c=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"k8kmNyooqFttHJsDVJtMTqu0sSSF/FqCFSTTXyL7JhE=\",\r\n \"secondaryKey\": \"yBx/kzMawnmvoQRyluGOnWhvC8Qql5193oo7YDz3+DQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-f459458b-61a0-4d34-b164-1b6407447631-iothub\",\r\n \"PrimaryKey\": \"NLYP51WPskWM/jmFDkJUYzAjUj2/aDaj9Qe+bsyRuB8=\",\r\n \"SecondaryKey\": \"6upXNOPtokfEKzg7f/MxwpUJ/CqtA+CgRB75KvR64Wk=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 20:47:42 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 20:47:42 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-34cdace9-57e7-4d3a-85ed-780161e4e17b-iothub\",\r\n \"PrimaryKey\": \"0m40LrG0hYXSMoQnCjG7nKrXS+tt+Sz0r1X3MxesZCc=\",\r\n \"SecondaryKey\": \"BSHt6yuQwmNgDgwKL2vTJno4zHzNLZKev3oR85ft1Ro=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 20:47:42 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 20:47:42 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"ias8xYD/BVzNSFtoMQt8g7oyya2gKVjF5BW5g28eorY=\",\r\n \"SecondaryKey\": \"BMANY2lVeWkwxQnypbR1ik/txxqTwGUsOzZDpfCZ34w=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 20:47:42 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 20:47:42 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"X3sW9tC3MR3DGzotX68yEwP8qMIWZa8BQrY0e8+9OIg=\",\r\n \"SecondaryKey\": \"dbKKZ0NB+Y2IujvU2rBOpnygwyIBAe9pVA5Y6MRkKTY=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 20:47:42 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 20:47:42 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net/;SharedAccessKeyName=ps424;SharedAccessKey=AW2s4P8O4mD+LYNDTXrpx0VIhDyivejYLWHBj9izRas=;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"id\": \"8f32adaf-74ff-48c5-b7ac-858b7e266d40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps3913\",\r\n \"id\": \"a811fa1f-4f32-47f9-b3c3-ebfcfed18d08\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps7754\",\r\n \"id\": \"0abebe7e-1a12-4a60-8882-50f720bbfbdd\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps2458\",\r\n \"value\": \"ps7571\",\r\n \"endpointNames\": [\r\n \"ps3913\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAABLBxHM=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net:5671/;SharedAccessKeyName=ps7586;SharedAccessKey=****;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"name\": \"ps9994\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"name\": \"ps6224\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps1506\",\r\n \"value\": \"ps9735\",\r\n \"endpointNames\": [\r\n \"ps9994\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"etag\": \"AAAAAJ5Y0Lc=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net:5671/;SharedAccessKeyName=ps424;SharedAccessKey=****;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"name\": \"ps3913\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"name\": \"ps7754\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps2458\",\r\n \"value\": \"ps4142\",\r\n \"endpointNames\": [\r\n \"ps3913\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fa224cbc-fc81-40b1-8763-9a22227c8f91" + "19e12376-98d8-417f-b44f-b5427359b729" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -508,7 +508,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "3067" + "3065" ] }, "ResponseHeaders": { @@ -519,7 +519,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNzAyMDBkMzItY2U3OC00OGMzLTg3NGQtMGQ3MDA5MGZhMzU3?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNzlhZmQwZmQtNzA3Ny00OTA1LTk0NDYtNjUyZTlkN2U1ZGY5?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -528,13 +528,13 @@ "4994" ], "x-ms-request-id": [ - "9bc4ed01-568e-4698-ad80-57b62d623114" + "211016a8-2848-42cc-92f7-f68c7e519a28" ], "x-ms-correlation-request-id": [ - "9bc4ed01-568e-4698-ad80-57b62d623114" + "211016a8-2848-42cc-92f7-f68c7e519a28" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184634Z:9bc4ed01-568e-4698-ad80-57b62d623114" + "WESTUS2:20200730T204944Z:211016a8-2848-42cc-92f7-f68c7e519a28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -543,10 +543,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:46:34 GMT" + "Thu, 30 Jul 2020 20:49:44 GMT" ], "Content-Length": [ - "5423" + "5421" ], "Content-Type": [ "application/json; charset=utf-8" @@ -555,23 +555,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLBxHM=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"50W/cRtmjyxQpssUtuOQXJQdQsoD1pp/VtMOI8HlYbQ=\",\r\n \"secondaryKey\": \"HaqJGvo0TPYgz2QaTO2NM6TKFYy83PPfnQUUq6pB+Ec=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"qbkr+m8q7Nic3ZUascZUl1jkK8a85qJK+iuHMzIVAy8=\",\r\n \"secondaryKey\": \"sT+4PBILYb2Yd9o2Ck2G3MWPfbUWaaNCauqlw1+LJlg=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"66rF5og/xuFuQYu3vR4OJtJV7G1xgFjG59L6n5KkJtg=\",\r\n \"secondaryKey\": \"ZPfPz8j1SsCywCh/piN3nm0JG56qUkancOGBpaCuvd0=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"WkvHh/TUtXHep8igL6xWdBMTkfNVnLJwe8pUj+xTKJc=\",\r\n \"secondaryKey\": \"M87nK/5eFQhvEU+rvfaybj5JbQQhpvVQ40g2dp1R7sw=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"JLpWSs6DRnOfTjO2hHO1jMFY/OuxGxdeZDPMRIMcENU=\",\r\n \"secondaryKey\": \"lUInAfihIHMX54pdxQRe16mudmWNvGH6cX7i+ecMFSQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-76f98e40-a5ef-4cab-b8c6-04f21c163e95-iothub\",\r\n \"PrimaryKey\": \"hX5QG2qqpl8oZu3MrkZnPsmK2PwbW1pOyMnXpWF/iTc=\",\r\n \"SecondaryKey\": \"dqo/859FShHGaBCPS4ppPAZvT/ouVNCQq7/KG9e79z0=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:46:22 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:46:22 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-3cce7c59-fe2d-4d24-933e-64162bc52669-iothub\",\r\n \"PrimaryKey\": \"wASRVPoZsA9w45V7l1VYBbmyLVykecEmjuitNvB3I4o=\",\r\n \"SecondaryKey\": \"yx76nZLgpDUBsLXb0SfrrSGgUUFJhwmAYxcoz32psZM=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:46:22 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:46:22 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"50W/cRtmjyxQpssUtuOQXJQdQsoD1pp/VtMOI8HlYbQ=\",\r\n \"SecondaryKey\": \"HaqJGvo0TPYgz2QaTO2NM6TKFYy83PPfnQUUq6pB+Ec=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:46:22 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:46:22 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"qbkr+m8q7Nic3ZUascZUl1jkK8a85qJK+iuHMzIVAy8=\",\r\n \"SecondaryKey\": \"sT+4PBILYb2Yd9o2Ck2G3MWPfbUWaaNCauqlw1+LJlg=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:46:22 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:46:22 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net/;SharedAccessKeyName=ps7586;SharedAccessKey=U1eYLWYPec/8NSbk3muwxiPjq+nv2Dp3GCt5lkOS8jE=;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"id\": \"4e82e344-ee11-4642-9987-99a2fd5a3deb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps9994\",\r\n \"id\": \"e674b29f-4530-4bd4-aa99-ad978723a8d6\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps6224\",\r\n \"id\": \"48fa3d2f-191f-42b7-a601-fba21739ef19\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps1506\",\r\n \"value\": \"ps9735\",\r\n \"endpointNames\": [\r\n \"ps9994\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5Y0Lc=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"ias8xYD/BVzNSFtoMQt8g7oyya2gKVjF5BW5g28eorY=\",\r\n \"secondaryKey\": \"BMANY2lVeWkwxQnypbR1ik/txxqTwGUsOzZDpfCZ34w=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"X3sW9tC3MR3DGzotX68yEwP8qMIWZa8BQrY0e8+9OIg=\",\r\n \"secondaryKey\": \"dbKKZ0NB+Y2IujvU2rBOpnygwyIBAe9pVA5Y6MRkKTY=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"MJslAeTjuREVAz7T9AbLj1h1rqv3BklS1oH5eDWFgwI=\",\r\n \"secondaryKey\": \"3zNjW6oOVSnTnpHIBz+yVHkLA1jyT3LlR0YFDDJsBpQ=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"kQXWydwELg5i4QjK3qtpOo8Nw4wG+tp8fNEkYUYkWrY=\",\r\n \"secondaryKey\": \"2dS+gOi1qqVlzHN2MK2igQRxzdz7lidoMUUQJmAuP4c=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"k8kmNyooqFttHJsDVJtMTqu0sSSF/FqCFSTTXyL7JhE=\",\r\n \"secondaryKey\": \"yBx/kzMawnmvoQRyluGOnWhvC8Qql5193oo7YDz3+DQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-f459458b-61a0-4d34-b164-1b6407447631-iothub\",\r\n \"PrimaryKey\": \"NLYP51WPskWM/jmFDkJUYzAjUj2/aDaj9Qe+bsyRuB8=\",\r\n \"SecondaryKey\": \"6upXNOPtokfEKzg7f/MxwpUJ/CqtA+CgRB75KvR64Wk=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 20:49:24 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 20:49:24 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-34cdace9-57e7-4d3a-85ed-780161e4e17b-iothub\",\r\n \"PrimaryKey\": \"0m40LrG0hYXSMoQnCjG7nKrXS+tt+Sz0r1X3MxesZCc=\",\r\n \"SecondaryKey\": \"BSHt6yuQwmNgDgwKL2vTJno4zHzNLZKev3oR85ft1Ro=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 20:49:24 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 20:49:24 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"ias8xYD/BVzNSFtoMQt8g7oyya2gKVjF5BW5g28eorY=\",\r\n \"SecondaryKey\": \"BMANY2lVeWkwxQnypbR1ik/txxqTwGUsOzZDpfCZ34w=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 20:49:24 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 20:49:24 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"X3sW9tC3MR3DGzotX68yEwP8qMIWZa8BQrY0e8+9OIg=\",\r\n \"SecondaryKey\": \"dbKKZ0NB+Y2IujvU2rBOpnygwyIBAe9pVA5Y6MRkKTY=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 20:49:24 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 20:49:24 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net/;SharedAccessKeyName=ps424;SharedAccessKey=AW2s4P8O4mD+LYNDTXrpx0VIhDyivejYLWHBj9izRas=;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"id\": \"8f32adaf-74ff-48c5-b7ac-858b7e266d40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps3913\",\r\n \"id\": \"a811fa1f-4f32-47f9-b3c3-ebfcfed18d08\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps7754\",\r\n \"id\": \"0abebe7e-1a12-4a60-8882-50f720bbfbdd\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps2458\",\r\n \"value\": \"ps4142\",\r\n \"endpointNames\": [\r\n \"ps3913\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAABLBxio=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net:5671/;SharedAccessKeyName=ps7586;SharedAccessKey=****;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"name\": \"ps9994\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"name\": \"ps6224\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps1506\",\r\n \"value\": \"ps9735\",\r\n \"endpointNames\": [\r\n \"ps9994\",\r\n \"ps6224\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"etag\": \"AAAAAJ5ZFkc=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net:5671/;SharedAccessKeyName=ps424;SharedAccessKey=****;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"name\": \"ps3913\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"name\": \"ps7754\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps2458\",\r\n \"value\": \"ps4142\",\r\n \"endpointNames\": [\r\n \"ps3913\",\r\n \"ps7754\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fc9b8b4d-f8d7-4c67-b289-182e0ead68a9" + "3ca52a9f-5e8a-4397-8ec8-3a9fbe77a4cc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -580,7 +580,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "3090" + "3088" ] }, "ResponseHeaders": { @@ -591,7 +591,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZDI5OTdjZGMtMDgwNi00MmY4LTkyMmEtZDI3NDFiNzFkOGE3?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNzY1MThiYjUtYzk0MS00YTliLWJhNmQtMWM3NjIxNDQ4NmE1?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -600,13 +600,13 @@ "4993" ], "x-ms-request-id": [ - "f09c5aef-026e-4f30-9be5-11bc64300d14" + "b43550b7-5e65-429b-8dc8-b365ca9d2ffc" ], "x-ms-correlation-request-id": [ - "f09c5aef-026e-4f30-9be5-11bc64300d14" + "b43550b7-5e65-429b-8dc8-b365ca9d2ffc" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184709Z:f09c5aef-026e-4f30-9be5-11bc64300d14" + "WESTUS2:20200730T205019Z:b43550b7-5e65-429b-8dc8-b365ca9d2ffc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -615,10 +615,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:47:08 GMT" + "Thu, 30 Jul 2020 20:50:18 GMT" ], "Content-Length": [ - "5432" + "5430" ], "Content-Type": [ "application/json; charset=utf-8" @@ -627,23 +627,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLBxio=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"50W/cRtmjyxQpssUtuOQXJQdQsoD1pp/VtMOI8HlYbQ=\",\r\n \"secondaryKey\": \"HaqJGvo0TPYgz2QaTO2NM6TKFYy83PPfnQUUq6pB+Ec=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"qbkr+m8q7Nic3ZUascZUl1jkK8a85qJK+iuHMzIVAy8=\",\r\n \"secondaryKey\": \"sT+4PBILYb2Yd9o2Ck2G3MWPfbUWaaNCauqlw1+LJlg=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"66rF5og/xuFuQYu3vR4OJtJV7G1xgFjG59L6n5KkJtg=\",\r\n \"secondaryKey\": \"ZPfPz8j1SsCywCh/piN3nm0JG56qUkancOGBpaCuvd0=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"WkvHh/TUtXHep8igL6xWdBMTkfNVnLJwe8pUj+xTKJc=\",\r\n \"secondaryKey\": \"M87nK/5eFQhvEU+rvfaybj5JbQQhpvVQ40g2dp1R7sw=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"JLpWSs6DRnOfTjO2hHO1jMFY/OuxGxdeZDPMRIMcENU=\",\r\n \"secondaryKey\": \"lUInAfihIHMX54pdxQRe16mudmWNvGH6cX7i+ecMFSQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-76f98e40-a5ef-4cab-b8c6-04f21c163e95-iothub\",\r\n \"PrimaryKey\": \"hX5QG2qqpl8oZu3MrkZnPsmK2PwbW1pOyMnXpWF/iTc=\",\r\n \"SecondaryKey\": \"dqo/859FShHGaBCPS4ppPAZvT/ouVNCQq7/KG9e79z0=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:46:47 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:46:47 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-3cce7c59-fe2d-4d24-933e-64162bc52669-iothub\",\r\n \"PrimaryKey\": \"wASRVPoZsA9w45V7l1VYBbmyLVykecEmjuitNvB3I4o=\",\r\n \"SecondaryKey\": \"yx76nZLgpDUBsLXb0SfrrSGgUUFJhwmAYxcoz32psZM=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:46:47 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:46:47 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"50W/cRtmjyxQpssUtuOQXJQdQsoD1pp/VtMOI8HlYbQ=\",\r\n \"SecondaryKey\": \"HaqJGvo0TPYgz2QaTO2NM6TKFYy83PPfnQUUq6pB+Ec=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:46:47 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:46:47 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"qbkr+m8q7Nic3ZUascZUl1jkK8a85qJK+iuHMzIVAy8=\",\r\n \"SecondaryKey\": \"sT+4PBILYb2Yd9o2Ck2G3MWPfbUWaaNCauqlw1+LJlg=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:46:47 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:46:47 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net/;SharedAccessKeyName=ps7586;SharedAccessKey=U1eYLWYPec/8NSbk3muwxiPjq+nv2Dp3GCt5lkOS8jE=;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"id\": \"4e82e344-ee11-4642-9987-99a2fd5a3deb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps9994\",\r\n \"id\": \"e674b29f-4530-4bd4-aa99-ad978723a8d6\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps6224\",\r\n \"id\": \"48fa3d2f-191f-42b7-a601-fba21739ef19\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps1506\",\r\n \"value\": \"ps9735\",\r\n \"endpointNames\": [\r\n \"ps9994\",\r\n \"ps6224\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5ZFkc=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"ias8xYD/BVzNSFtoMQt8g7oyya2gKVjF5BW5g28eorY=\",\r\n \"secondaryKey\": \"BMANY2lVeWkwxQnypbR1ik/txxqTwGUsOzZDpfCZ34w=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"X3sW9tC3MR3DGzotX68yEwP8qMIWZa8BQrY0e8+9OIg=\",\r\n \"secondaryKey\": \"dbKKZ0NB+Y2IujvU2rBOpnygwyIBAe9pVA5Y6MRkKTY=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"MJslAeTjuREVAz7T9AbLj1h1rqv3BklS1oH5eDWFgwI=\",\r\n \"secondaryKey\": \"3zNjW6oOVSnTnpHIBz+yVHkLA1jyT3LlR0YFDDJsBpQ=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"kQXWydwELg5i4QjK3qtpOo8Nw4wG+tp8fNEkYUYkWrY=\",\r\n \"secondaryKey\": \"2dS+gOi1qqVlzHN2MK2igQRxzdz7lidoMUUQJmAuP4c=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"k8kmNyooqFttHJsDVJtMTqu0sSSF/FqCFSTTXyL7JhE=\",\r\n \"secondaryKey\": \"yBx/kzMawnmvoQRyluGOnWhvC8Qql5193oo7YDz3+DQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-f459458b-61a0-4d34-b164-1b6407447631-iothub\",\r\n \"PrimaryKey\": \"NLYP51WPskWM/jmFDkJUYzAjUj2/aDaj9Qe+bsyRuB8=\",\r\n \"SecondaryKey\": \"6upXNOPtokfEKzg7f/MxwpUJ/CqtA+CgRB75KvR64Wk=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 20:50:00 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 20:50:00 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-34cdace9-57e7-4d3a-85ed-780161e4e17b-iothub\",\r\n \"PrimaryKey\": \"0m40LrG0hYXSMoQnCjG7nKrXS+tt+Sz0r1X3MxesZCc=\",\r\n \"SecondaryKey\": \"BSHt6yuQwmNgDgwKL2vTJno4zHzNLZKev3oR85ft1Ro=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 20:50:00 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 20:50:00 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"ias8xYD/BVzNSFtoMQt8g7oyya2gKVjF5BW5g28eorY=\",\r\n \"SecondaryKey\": \"BMANY2lVeWkwxQnypbR1ik/txxqTwGUsOzZDpfCZ34w=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 20:50:00 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 20:50:00 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"X3sW9tC3MR3DGzotX68yEwP8qMIWZa8BQrY0e8+9OIg=\",\r\n \"SecondaryKey\": \"dbKKZ0NB+Y2IujvU2rBOpnygwyIBAe9pVA5Y6MRkKTY=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 20:50:00 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 20:50:00 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net/;SharedAccessKeyName=ps424;SharedAccessKey=AW2s4P8O4mD+LYNDTXrpx0VIhDyivejYLWHBj9izRas=;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"id\": \"8f32adaf-74ff-48c5-b7ac-858b7e266d40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps3913\",\r\n \"id\": \"a811fa1f-4f32-47f9-b3c3-ebfcfed18d08\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps7754\",\r\n \"id\": \"0abebe7e-1a12-4a60-8882-50f720bbfbdd\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps2458\",\r\n \"value\": \"ps4142\",\r\n \"endpointNames\": [\r\n \"ps3913\",\r\n \"ps7754\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAABLB1mE=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net:5671/;SharedAccessKeyName=ps7586;SharedAccessKey=****;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"name\": \"ps9994\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"name\": \"ps6224\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n },\r\n \"enrichments\": []\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"etag\": \"AAAAAJ5Zzh0=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net:5671/;SharedAccessKeyName=ps424;SharedAccessKey=****;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"name\": \"ps3913\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"name\": \"ps7754\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n },\r\n \"enrichments\": []\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9d092848-e22b-4c63-9b1e-742c7ff9862c" + "84bdf878-75d2-4372-a19d-c03009ae094b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -652,7 +652,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "2914" + "2912" ] }, "ResponseHeaders": { @@ -663,7 +663,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYTA5NWYwYTYtNDU3NC00MjcxLWE2ZjktOTUyMDViYTJmNDA4?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfN2Y3ZGYwZmQtOWM4ZC00Y2YwLWFkNDYtYmVkY2Y0MzVhZjcy?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -672,13 +672,13 @@ "4992" ], "x-ms-request-id": [ - "91cae477-926b-4f48-ba8c-2adfbfa43b0b" + "ecd5414a-329d-440c-b13d-a6c1b23ba1a4" ], "x-ms-correlation-request-id": [ - "91cae477-926b-4f48-ba8c-2adfbfa43b0b" + "ecd5414a-329d-440c-b13d-a6c1b23ba1a4" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184743Z:91cae477-926b-4f48-ba8c-2adfbfa43b0b" + "WESTUS2:20200730T205059Z:ecd5414a-329d-440c-b13d-a6c1b23ba1a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -687,10 +687,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:47:42 GMT" + "Thu, 30 Jul 2020 20:50:59 GMT" ], "Content-Length": [ - "5363" + "5361" ], "Content-Type": [ "application/json; charset=utf-8" @@ -699,23 +699,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLB1mE=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"50W/cRtmjyxQpssUtuOQXJQdQsoD1pp/VtMOI8HlYbQ=\",\r\n \"secondaryKey\": \"HaqJGvo0TPYgz2QaTO2NM6TKFYy83PPfnQUUq6pB+Ec=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"qbkr+m8q7Nic3ZUascZUl1jkK8a85qJK+iuHMzIVAy8=\",\r\n \"secondaryKey\": \"sT+4PBILYb2Yd9o2Ck2G3MWPfbUWaaNCauqlw1+LJlg=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"66rF5og/xuFuQYu3vR4OJtJV7G1xgFjG59L6n5KkJtg=\",\r\n \"secondaryKey\": \"ZPfPz8j1SsCywCh/piN3nm0JG56qUkancOGBpaCuvd0=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"WkvHh/TUtXHep8igL6xWdBMTkfNVnLJwe8pUj+xTKJc=\",\r\n \"secondaryKey\": \"M87nK/5eFQhvEU+rvfaybj5JbQQhpvVQ40g2dp1R7sw=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"JLpWSs6DRnOfTjO2hHO1jMFY/OuxGxdeZDPMRIMcENU=\",\r\n \"secondaryKey\": \"lUInAfihIHMX54pdxQRe16mudmWNvGH6cX7i+ecMFSQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-76f98e40-a5ef-4cab-b8c6-04f21c163e95-iothub\",\r\n \"PrimaryKey\": \"hX5QG2qqpl8oZu3MrkZnPsmK2PwbW1pOyMnXpWF/iTc=\",\r\n \"SecondaryKey\": \"dqo/859FShHGaBCPS4ppPAZvT/ouVNCQq7/KG9e79z0=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:47:18 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:47:18 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-3cce7c59-fe2d-4d24-933e-64162bc52669-iothub\",\r\n \"PrimaryKey\": \"wASRVPoZsA9w45V7l1VYBbmyLVykecEmjuitNvB3I4o=\",\r\n \"SecondaryKey\": \"yx76nZLgpDUBsLXb0SfrrSGgUUFJhwmAYxcoz32psZM=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:47:18 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:47:18 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"50W/cRtmjyxQpssUtuOQXJQdQsoD1pp/VtMOI8HlYbQ=\",\r\n \"SecondaryKey\": \"HaqJGvo0TPYgz2QaTO2NM6TKFYy83PPfnQUUq6pB+Ec=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:47:18 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:47:18 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"qbkr+m8q7Nic3ZUascZUl1jkK8a85qJK+iuHMzIVAy8=\",\r\n \"SecondaryKey\": \"sT+4PBILYb2Yd9o2Ck2G3MWPfbUWaaNCauqlw1+LJlg=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:47:18 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:47:18 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net/;SharedAccessKeyName=ps7586;SharedAccessKey=U1eYLWYPec/8NSbk3muwxiPjq+nv2Dp3GCt5lkOS8jE=;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"id\": \"4e82e344-ee11-4642-9987-99a2fd5a3deb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps9994\",\r\n \"id\": \"e674b29f-4530-4bd4-aa99-ad978723a8d6\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps6224\",\r\n \"id\": \"48fa3d2f-191f-42b7-a601-fba21739ef19\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5Zzh0=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"ias8xYD/BVzNSFtoMQt8g7oyya2gKVjF5BW5g28eorY=\",\r\n \"secondaryKey\": \"BMANY2lVeWkwxQnypbR1ik/txxqTwGUsOzZDpfCZ34w=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"X3sW9tC3MR3DGzotX68yEwP8qMIWZa8BQrY0e8+9OIg=\",\r\n \"secondaryKey\": \"dbKKZ0NB+Y2IujvU2rBOpnygwyIBAe9pVA5Y6MRkKTY=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"MJslAeTjuREVAz7T9AbLj1h1rqv3BklS1oH5eDWFgwI=\",\r\n \"secondaryKey\": \"3zNjW6oOVSnTnpHIBz+yVHkLA1jyT3LlR0YFDDJsBpQ=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"kQXWydwELg5i4QjK3qtpOo8Nw4wG+tp8fNEkYUYkWrY=\",\r\n \"secondaryKey\": \"2dS+gOi1qqVlzHN2MK2igQRxzdz7lidoMUUQJmAuP4c=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"k8kmNyooqFttHJsDVJtMTqu0sSSF/FqCFSTTXyL7JhE=\",\r\n \"secondaryKey\": \"yBx/kzMawnmvoQRyluGOnWhvC8Qql5193oo7YDz3+DQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-f459458b-61a0-4d34-b164-1b6407447631-iothub\",\r\n \"PrimaryKey\": \"NLYP51WPskWM/jmFDkJUYzAjUj2/aDaj9Qe+bsyRuB8=\",\r\n \"SecondaryKey\": \"6upXNOPtokfEKzg7f/MxwpUJ/CqtA+CgRB75KvR64Wk=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 20:50:35 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 20:50:35 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-34cdace9-57e7-4d3a-85ed-780161e4e17b-iothub\",\r\n \"PrimaryKey\": \"0m40LrG0hYXSMoQnCjG7nKrXS+tt+Sz0r1X3MxesZCc=\",\r\n \"SecondaryKey\": \"BSHt6yuQwmNgDgwKL2vTJno4zHzNLZKev3oR85ft1Ro=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 20:50:35 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 20:50:35 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"ias8xYD/BVzNSFtoMQt8g7oyya2gKVjF5BW5g28eorY=\",\r\n \"SecondaryKey\": \"BMANY2lVeWkwxQnypbR1ik/txxqTwGUsOzZDpfCZ34w=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 20:50:35 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 20:50:35 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"X3sW9tC3MR3DGzotX68yEwP8qMIWZa8BQrY0e8+9OIg=\",\r\n \"SecondaryKey\": \"dbKKZ0NB+Y2IujvU2rBOpnygwyIBAe9pVA5Y6MRkKTY=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 20:50:35 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 20:50:35 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net/;SharedAccessKeyName=ps424;SharedAccessKey=AW2s4P8O4mD+LYNDTXrpx0VIhDyivejYLWHBj9izRas=;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"id\": \"8f32adaf-74ff-48c5-b7ac-858b7e266d40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps3913\",\r\n \"id\": \"a811fa1f-4f32-47f9-b3c3-ebfcfed18d08\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps7754\",\r\n \"id\": \"0abebe7e-1a12-4a60-8882-50f720bbfbdd\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAABLB5lE=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net:5671/;SharedAccessKeyName=ps7586;SharedAccessKey=****;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"name\": \"ps6224\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n },\r\n \"enrichments\": []\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"etag\": \"AAAAAJ5bKSc=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net:5671/;SharedAccessKeyName=ps424;SharedAccessKey=****;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"name\": \"ps7754\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n },\r\n \"enrichments\": []\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "87302cfb-e564-4c75-b5da-ebcb67fe55de" + "f83f046b-5b7a-4ef6-b115-7f73b7a9f0c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -724,7 +724,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "2334" + "2332" ] }, "ResponseHeaders": { @@ -735,7 +735,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMWY1NjgxOTQtZjQ1NS00MzYyLWEyMDktZTQ0M2E1MzY5MTY0?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYjA1YTUzMmItZjVlMy00OTdiLTg0ZWEtNThhYjEyM2Q2NGFi?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -744,13 +744,13 @@ "4991" ], "x-ms-request-id": [ - "154518b4-3823-4b60-84a2-3c6379c1a3dd" + "e6011e15-3a0a-4b07-9d46-945286da55c3" ], "x-ms-correlation-request-id": [ - "154518b4-3823-4b60-84a2-3c6379c1a3dd" + "e6011e15-3a0a-4b07-9d46-945286da55c3" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184817Z:154518b4-3823-4b60-84a2-3c6379c1a3dd" + "WESTUS2:20200730T205134Z:e6011e15-3a0a-4b07-9d46-945286da55c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -759,10 +759,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:48:17 GMT" + "Thu, 30 Jul 2020 20:51:33 GMT" ], "Content-Length": [ - "4814" + "4812" ], "Content-Type": [ "application/json; charset=utf-8" @@ -771,23 +771,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLB5lE=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"50W/cRtmjyxQpssUtuOQXJQdQsoD1pp/VtMOI8HlYbQ=\",\r\n \"secondaryKey\": \"HaqJGvo0TPYgz2QaTO2NM6TKFYy83PPfnQUUq6pB+Ec=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"qbkr+m8q7Nic3ZUascZUl1jkK8a85qJK+iuHMzIVAy8=\",\r\n \"secondaryKey\": \"sT+4PBILYb2Yd9o2Ck2G3MWPfbUWaaNCauqlw1+LJlg=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"66rF5og/xuFuQYu3vR4OJtJV7G1xgFjG59L6n5KkJtg=\",\r\n \"secondaryKey\": \"ZPfPz8j1SsCywCh/piN3nm0JG56qUkancOGBpaCuvd0=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"WkvHh/TUtXHep8igL6xWdBMTkfNVnLJwe8pUj+xTKJc=\",\r\n \"secondaryKey\": \"M87nK/5eFQhvEU+rvfaybj5JbQQhpvVQ40g2dp1R7sw=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"JLpWSs6DRnOfTjO2hHO1jMFY/OuxGxdeZDPMRIMcENU=\",\r\n \"secondaryKey\": \"lUInAfihIHMX54pdxQRe16mudmWNvGH6cX7i+ecMFSQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-76f98e40-a5ef-4cab-b8c6-04f21c163e95-iothub\",\r\n \"PrimaryKey\": \"hX5QG2qqpl8oZu3MrkZnPsmK2PwbW1pOyMnXpWF/iTc=\",\r\n \"SecondaryKey\": \"dqo/859FShHGaBCPS4ppPAZvT/ouVNCQq7/KG9e79z0=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:47:54 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:47:54 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-3cce7c59-fe2d-4d24-933e-64162bc52669-iothub\",\r\n \"PrimaryKey\": \"wASRVPoZsA9w45V7l1VYBbmyLVykecEmjuitNvB3I4o=\",\r\n \"SecondaryKey\": \"yx76nZLgpDUBsLXb0SfrrSGgUUFJhwmAYxcoz32psZM=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:47:54 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:47:54 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"50W/cRtmjyxQpssUtuOQXJQdQsoD1pp/VtMOI8HlYbQ=\",\r\n \"SecondaryKey\": \"HaqJGvo0TPYgz2QaTO2NM6TKFYy83PPfnQUUq6pB+Ec=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:47:54 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:47:54 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"qbkr+m8q7Nic3ZUascZUl1jkK8a85qJK+iuHMzIVAy8=\",\r\n \"SecondaryKey\": \"sT+4PBILYb2Yd9o2Ck2G3MWPfbUWaaNCauqlw1+LJlg=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:47:54 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:47:54 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net/;SharedAccessKeyName=ps7586;SharedAccessKey=U1eYLWYPec/8NSbk3muwxiPjq+nv2Dp3GCt5lkOS8jE=;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"id\": \"4e82e344-ee11-4642-9987-99a2fd5a3deb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps6224\",\r\n \"id\": \"48fa3d2f-191f-42b7-a601-fba21739ef19\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5bKSc=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"ias8xYD/BVzNSFtoMQt8g7oyya2gKVjF5BW5g28eorY=\",\r\n \"secondaryKey\": \"BMANY2lVeWkwxQnypbR1ik/txxqTwGUsOzZDpfCZ34w=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"X3sW9tC3MR3DGzotX68yEwP8qMIWZa8BQrY0e8+9OIg=\",\r\n \"secondaryKey\": \"dbKKZ0NB+Y2IujvU2rBOpnygwyIBAe9pVA5Y6MRkKTY=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"MJslAeTjuREVAz7T9AbLj1h1rqv3BklS1oH5eDWFgwI=\",\r\n \"secondaryKey\": \"3zNjW6oOVSnTnpHIBz+yVHkLA1jyT3LlR0YFDDJsBpQ=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"kQXWydwELg5i4QjK3qtpOo8Nw4wG+tp8fNEkYUYkWrY=\",\r\n \"secondaryKey\": \"2dS+gOi1qqVlzHN2MK2igQRxzdz7lidoMUUQJmAuP4c=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"k8kmNyooqFttHJsDVJtMTqu0sSSF/FqCFSTTXyL7JhE=\",\r\n \"secondaryKey\": \"yBx/kzMawnmvoQRyluGOnWhvC8Qql5193oo7YDz3+DQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-f459458b-61a0-4d34-b164-1b6407447631-iothub\",\r\n \"PrimaryKey\": \"NLYP51WPskWM/jmFDkJUYzAjUj2/aDaj9Qe+bsyRuB8=\",\r\n \"SecondaryKey\": \"6upXNOPtokfEKzg7f/MxwpUJ/CqtA+CgRB75KvR64Wk=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 20:51:14 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 20:51:14 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-34cdace9-57e7-4d3a-85ed-780161e4e17b-iothub\",\r\n \"PrimaryKey\": \"0m40LrG0hYXSMoQnCjG7nKrXS+tt+Sz0r1X3MxesZCc=\",\r\n \"SecondaryKey\": \"BSHt6yuQwmNgDgwKL2vTJno4zHzNLZKev3oR85ft1Ro=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 20:51:14 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 20:51:14 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"ias8xYD/BVzNSFtoMQt8g7oyya2gKVjF5BW5g28eorY=\",\r\n \"SecondaryKey\": \"BMANY2lVeWkwxQnypbR1ik/txxqTwGUsOzZDpfCZ34w=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 20:51:14 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 20:51:14 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"X3sW9tC3MR3DGzotX68yEwP8qMIWZa8BQrY0e8+9OIg=\",\r\n \"SecondaryKey\": \"dbKKZ0NB+Y2IujvU2rBOpnygwyIBAe9pVA5Y6MRkKTY=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 20:51:14 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 20:51:14 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net/;SharedAccessKeyName=ps424;SharedAccessKey=AW2s4P8O4mD+LYNDTXrpx0VIhDyivejYLWHBj9izRas=;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"id\": \"8f32adaf-74ff-48c5-b7ac-858b7e266d40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=W1ujKNLtPmMtaNqZfOCUU5cnYMI8bQeF9ODce4riISyT2RSXiIxcwuwQhzCmIuwPWi82ParLfbq1bOF5ypUnPw==\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps7754\",\r\n \"id\": \"0abebe7e-1a12-4a60-8882-50f720bbfbdd\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAABLCBe4=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net:5671/;SharedAccessKeyName=ps7586;SharedAccessKey=****;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n },\r\n \"enrichments\": []\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"etag\": \"AAAAAJ5bfKo=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net:5671/;SharedAccessKeyName=ps424;SharedAccessKey=****;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n },\r\n \"enrichments\": []\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "38efbbff-57c0-4926-9580-e70a9195d0b0" + "0f3832ca-c084-45fb-8b81-8ed8457a115a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -796,7 +796,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "1745" + "1743" ] }, "ResponseHeaders": { @@ -807,7 +807,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYmE0ODNjY2ItMzc3MS00NGE2LWI4MjYtNzNhZDIwNjliZjFi?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZDQ3ZGUxMDUtMWI0MS00Y2VlLWI5ZmMtN2JmNzYyZTQzMTBk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -816,13 +816,13 @@ "4990" ], "x-ms-request-id": [ - "56250e11-727a-48f6-9ba6-857db1f51fa2" + "e8d40e6d-622e-4e05-9dca-374b3cc4feae" ], "x-ms-correlation-request-id": [ - "56250e11-727a-48f6-9ba6-857db1f51fa2" + "e8d40e6d-622e-4e05-9dca-374b3cc4feae" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184851Z:56250e11-727a-48f6-9ba6-857db1f51fa2" + "WESTUS2:20200730T205308Z:e8d40e6d-622e-4e05-9dca-374b3cc4feae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -831,10 +831,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:48:51 GMT" + "Thu, 30 Jul 2020 20:53:07 GMT" ], "Content-Length": [ - "4266" + "4264" ], "Content-Type": [ "application/json; charset=utf-8" @@ -843,23 +843,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLCBe4=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"50W/cRtmjyxQpssUtuOQXJQdQsoD1pp/VtMOI8HlYbQ=\",\r\n \"secondaryKey\": \"HaqJGvo0TPYgz2QaTO2NM6TKFYy83PPfnQUUq6pB+Ec=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"qbkr+m8q7Nic3ZUascZUl1jkK8a85qJK+iuHMzIVAy8=\",\r\n \"secondaryKey\": \"sT+4PBILYb2Yd9o2Ck2G3MWPfbUWaaNCauqlw1+LJlg=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"66rF5og/xuFuQYu3vR4OJtJV7G1xgFjG59L6n5KkJtg=\",\r\n \"secondaryKey\": \"ZPfPz8j1SsCywCh/piN3nm0JG56qUkancOGBpaCuvd0=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"WkvHh/TUtXHep8igL6xWdBMTkfNVnLJwe8pUj+xTKJc=\",\r\n \"secondaryKey\": \"M87nK/5eFQhvEU+rvfaybj5JbQQhpvVQ40g2dp1R7sw=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"JLpWSs6DRnOfTjO2hHO1jMFY/OuxGxdeZDPMRIMcENU=\",\r\n \"secondaryKey\": \"lUInAfihIHMX54pdxQRe16mudmWNvGH6cX7i+ecMFSQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-76f98e40-a5ef-4cab-b8c6-04f21c163e95-iothub\",\r\n \"PrimaryKey\": \"hX5QG2qqpl8oZu3MrkZnPsmK2PwbW1pOyMnXpWF/iTc=\",\r\n \"SecondaryKey\": \"dqo/859FShHGaBCPS4ppPAZvT/ouVNCQq7/KG9e79z0=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:48:27 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:48:27 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-3cce7c59-fe2d-4d24-933e-64162bc52669-iothub\",\r\n \"PrimaryKey\": \"wASRVPoZsA9w45V7l1VYBbmyLVykecEmjuitNvB3I4o=\",\r\n \"SecondaryKey\": \"yx76nZLgpDUBsLXb0SfrrSGgUUFJhwmAYxcoz32psZM=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:48:27 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:48:27 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"50W/cRtmjyxQpssUtuOQXJQdQsoD1pp/VtMOI8HlYbQ=\",\r\n \"SecondaryKey\": \"HaqJGvo0TPYgz2QaTO2NM6TKFYy83PPfnQUUq6pB+Ec=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:48:27 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:48:27 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"qbkr+m8q7Nic3ZUascZUl1jkK8a85qJK+iuHMzIVAy8=\",\r\n \"SecondaryKey\": \"sT+4PBILYb2Yd9o2Ck2G3MWPfbUWaaNCauqlw1+LJlg=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:48:27 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:48:27 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net/;SharedAccessKeyName=ps7586;SharedAccessKey=U1eYLWYPec/8NSbk3muwxiPjq+nv2Dp3GCt5lkOS8jE=;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"id\": \"4e82e344-ee11-4642-9987-99a2fd5a3deb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5bfKo=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"ias8xYD/BVzNSFtoMQt8g7oyya2gKVjF5BW5g28eorY=\",\r\n \"secondaryKey\": \"BMANY2lVeWkwxQnypbR1ik/txxqTwGUsOzZDpfCZ34w=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"X3sW9tC3MR3DGzotX68yEwP8qMIWZa8BQrY0e8+9OIg=\",\r\n \"secondaryKey\": \"dbKKZ0NB+Y2IujvU2rBOpnygwyIBAe9pVA5Y6MRkKTY=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"MJslAeTjuREVAz7T9AbLj1h1rqv3BklS1oH5eDWFgwI=\",\r\n \"secondaryKey\": \"3zNjW6oOVSnTnpHIBz+yVHkLA1jyT3LlR0YFDDJsBpQ=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"kQXWydwELg5i4QjK3qtpOo8Nw4wG+tp8fNEkYUYkWrY=\",\r\n \"secondaryKey\": \"2dS+gOi1qqVlzHN2MK2igQRxzdz7lidoMUUQJmAuP4c=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"k8kmNyooqFttHJsDVJtMTqu0sSSF/FqCFSTTXyL7JhE=\",\r\n \"secondaryKey\": \"yBx/kzMawnmvoQRyluGOnWhvC8Qql5193oo7YDz3+DQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-f459458b-61a0-4d34-b164-1b6407447631-iothub\",\r\n \"PrimaryKey\": \"NLYP51WPskWM/jmFDkJUYzAjUj2/aDaj9Qe+bsyRuB8=\",\r\n \"SecondaryKey\": \"6upXNOPtokfEKzg7f/MxwpUJ/CqtA+CgRB75KvR64Wk=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 20:52:02 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 20:52:02 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-34cdace9-57e7-4d3a-85ed-780161e4e17b-iothub\",\r\n \"PrimaryKey\": \"0m40LrG0hYXSMoQnCjG7nKrXS+tt+Sz0r1X3MxesZCc=\",\r\n \"SecondaryKey\": \"BSHt6yuQwmNgDgwKL2vTJno4zHzNLZKev3oR85ft1Ro=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 20:52:02 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 20:52:02 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"ias8xYD/BVzNSFtoMQt8g7oyya2gKVjF5BW5g28eorY=\",\r\n \"SecondaryKey\": \"BMANY2lVeWkwxQnypbR1ik/txxqTwGUsOzZDpfCZ34w=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 20:52:02 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 20:52:02 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"X3sW9tC3MR3DGzotX68yEwP8qMIWZa8BQrY0e8+9OIg=\",\r\n \"SecondaryKey\": \"dbKKZ0NB+Y2IujvU2rBOpnygwyIBAe9pVA5Y6MRkKTY=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 20:52:02 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 20:52:02 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net/;SharedAccessKeyName=ps424;SharedAccessKey=AW2s4P8O4mD+LYNDTXrpx0VIhDyivejYLWHBj9izRas=;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"id\": \"8f32adaf-74ff-48c5-b7ac-858b7e266d40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAABLCTws=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net:5671/;SharedAccessKeyName=ps7586;SharedAccessKey=****;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"ps2278\",\r\n \"source\": \"DeviceMessages\",\r\n \"endpointNames\": [\r\n \"ps9541\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n },\r\n \"enrichments\": []\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"etag\": \"AAAAAJ5eRBM=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net:5671/;SharedAccessKeyName=ps424;SharedAccessKey=****;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"ps2715\",\r\n \"source\": \"DeviceMessages\",\r\n \"endpointNames\": [\r\n \"ps5242\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n },\r\n \"enrichments\": []\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5134e05f-ce05-4ca1-bbf9-d093a5aaabc2" + "0dcc875b-7b9a-4aa6-9ba5-04707569a423" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -868,7 +868,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "1939" + "1937" ] }, "ResponseHeaders": { @@ -879,7 +879,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMWFjYzU0ZmItNzdhMC00YjMyLWFmZTQtN2ExODU3OTcxODY4?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZmEzZTk2YjUtMDYxNS00MjE3LWFhNTktZDc0MDlmYjdiNDQ0?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -888,13 +888,13 @@ "4989" ], "x-ms-request-id": [ - "8d88d27e-6c7d-4af1-bb30-9727b05f0d39" + "09498f36-40f7-46b9-88cb-1651cdf6f0a4" ], "x-ms-correlation-request-id": [ - "8d88d27e-6c7d-4af1-bb30-9727b05f0d39" + "09498f36-40f7-46b9-88cb-1651cdf6f0a4" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184926Z:8d88d27e-6c7d-4af1-bb30-9727b05f0d39" + "WESTUS2:20200730T205414Z:09498f36-40f7-46b9-88cb-1651cdf6f0a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -903,10 +903,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:49:25 GMT" + "Thu, 30 Jul 2020 20:54:13 GMT" ], "Content-Length": [ - "4354" + "4352" ], "Content-Type": [ "application/json; charset=utf-8" @@ -915,23 +915,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLCTws=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"50W/cRtmjyxQpssUtuOQXJQdQsoD1pp/VtMOI8HlYbQ=\",\r\n \"secondaryKey\": \"HaqJGvo0TPYgz2QaTO2NM6TKFYy83PPfnQUUq6pB+Ec=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"qbkr+m8q7Nic3ZUascZUl1jkK8a85qJK+iuHMzIVAy8=\",\r\n \"secondaryKey\": \"sT+4PBILYb2Yd9o2Ck2G3MWPfbUWaaNCauqlw1+LJlg=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"66rF5og/xuFuQYu3vR4OJtJV7G1xgFjG59L6n5KkJtg=\",\r\n \"secondaryKey\": \"ZPfPz8j1SsCywCh/piN3nm0JG56qUkancOGBpaCuvd0=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"WkvHh/TUtXHep8igL6xWdBMTkfNVnLJwe8pUj+xTKJc=\",\r\n \"secondaryKey\": \"M87nK/5eFQhvEU+rvfaybj5JbQQhpvVQ40g2dp1R7sw=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"JLpWSs6DRnOfTjO2hHO1jMFY/OuxGxdeZDPMRIMcENU=\",\r\n \"secondaryKey\": \"lUInAfihIHMX54pdxQRe16mudmWNvGH6cX7i+ecMFSQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-76f98e40-a5ef-4cab-b8c6-04f21c163e95-iothub\",\r\n \"PrimaryKey\": \"hX5QG2qqpl8oZu3MrkZnPsmK2PwbW1pOyMnXpWF/iTc=\",\r\n \"SecondaryKey\": \"dqo/859FShHGaBCPS4ppPAZvT/ouVNCQq7/KG9e79z0=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:49:02 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:49:02 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-3cce7c59-fe2d-4d24-933e-64162bc52669-iothub\",\r\n \"PrimaryKey\": \"wASRVPoZsA9w45V7l1VYBbmyLVykecEmjuitNvB3I4o=\",\r\n \"SecondaryKey\": \"yx76nZLgpDUBsLXb0SfrrSGgUUFJhwmAYxcoz32psZM=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:49:02 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:49:02 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"50W/cRtmjyxQpssUtuOQXJQdQsoD1pp/VtMOI8HlYbQ=\",\r\n \"SecondaryKey\": \"HaqJGvo0TPYgz2QaTO2NM6TKFYy83PPfnQUUq6pB+Ec=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:49:02 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:49:02 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"qbkr+m8q7Nic3ZUascZUl1jkK8a85qJK+iuHMzIVAy8=\",\r\n \"SecondaryKey\": \"sT+4PBILYb2Yd9o2Ck2G3MWPfbUWaaNCauqlw1+LJlg=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:49:02 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:49:02 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net/;SharedAccessKeyName=ps7586;SharedAccessKey=U1eYLWYPec/8NSbk3muwxiPjq+nv2Dp3GCt5lkOS8jE=;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"id\": \"4e82e344-ee11-4642-9987-99a2fd5a3deb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [\r\n {\r\n \"name\": \"ps2278\",\r\n \"source\": \"DeviceMessages\",\r\n \"endpointNames\": [\r\n \"ps9541\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5eRBM=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"ias8xYD/BVzNSFtoMQt8g7oyya2gKVjF5BW5g28eorY=\",\r\n \"secondaryKey\": \"BMANY2lVeWkwxQnypbR1ik/txxqTwGUsOzZDpfCZ34w=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"X3sW9tC3MR3DGzotX68yEwP8qMIWZa8BQrY0e8+9OIg=\",\r\n \"secondaryKey\": \"dbKKZ0NB+Y2IujvU2rBOpnygwyIBAe9pVA5Y6MRkKTY=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"MJslAeTjuREVAz7T9AbLj1h1rqv3BklS1oH5eDWFgwI=\",\r\n \"secondaryKey\": \"3zNjW6oOVSnTnpHIBz+yVHkLA1jyT3LlR0YFDDJsBpQ=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"kQXWydwELg5i4QjK3qtpOo8Nw4wG+tp8fNEkYUYkWrY=\",\r\n \"secondaryKey\": \"2dS+gOi1qqVlzHN2MK2igQRxzdz7lidoMUUQJmAuP4c=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"k8kmNyooqFttHJsDVJtMTqu0sSSF/FqCFSTTXyL7JhE=\",\r\n \"secondaryKey\": \"yBx/kzMawnmvoQRyluGOnWhvC8Qql5193oo7YDz3+DQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-f459458b-61a0-4d34-b164-1b6407447631-iothub\",\r\n \"PrimaryKey\": \"NLYP51WPskWM/jmFDkJUYzAjUj2/aDaj9Qe+bsyRuB8=\",\r\n \"SecondaryKey\": \"6upXNOPtokfEKzg7f/MxwpUJ/CqtA+CgRB75KvR64Wk=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 20:53:21 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 20:53:21 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-34cdace9-57e7-4d3a-85ed-780161e4e17b-iothub\",\r\n \"PrimaryKey\": \"0m40LrG0hYXSMoQnCjG7nKrXS+tt+Sz0r1X3MxesZCc=\",\r\n \"SecondaryKey\": \"BSHt6yuQwmNgDgwKL2vTJno4zHzNLZKev3oR85ft1Ro=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 20:53:21 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 20:53:21 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"ias8xYD/BVzNSFtoMQt8g7oyya2gKVjF5BW5g28eorY=\",\r\n \"SecondaryKey\": \"BMANY2lVeWkwxQnypbR1ik/txxqTwGUsOzZDpfCZ34w=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 20:53:21 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 20:53:21 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"X3sW9tC3MR3DGzotX68yEwP8qMIWZa8BQrY0e8+9OIg=\",\r\n \"SecondaryKey\": \"dbKKZ0NB+Y2IujvU2rBOpnygwyIBAe9pVA5Y6MRkKTY=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 20:53:21 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 20:53:21 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net/;SharedAccessKeyName=ps424;SharedAccessKey=AW2s4P8O4mD+LYNDTXrpx0VIhDyivejYLWHBj9izRas=;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"id\": \"8f32adaf-74ff-48c5-b7ac-858b7e266d40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [\r\n {\r\n \"name\": \"ps2715\",\r\n \"source\": \"DeviceMessages\",\r\n \"endpointNames\": [\r\n \"ps5242\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAABLCXpk=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net:5671/;SharedAccessKeyName=ps7586;SharedAccessKey=****;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"ps2278\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"endpointNames\": [\r\n \"ps9541\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n },\r\n \"enrichments\": []\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"etag\": \"AAAAAJ5e9Bo=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net:5671/;SharedAccessKeyName=ps424;SharedAccessKey=****;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"ps2715\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"endpointNames\": [\r\n \"ps5242\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n },\r\n \"enrichments\": []\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "236be88c-1c70-4b58-adf6-b4bdfe3ded13" + "246bfba6-efbc-45a1-b4a7-1d6780e08fd1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -940,7 +940,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "1940" + "1938" ] }, "ResponseHeaders": { @@ -951,7 +951,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMWRiMTMxYzAtNWFjNy00NTkxLWJkZGMtNDE5MmZlNjA1MWI0?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNWM2ZTYzZmYtYTdjYi00M2VkLWE5YzUtMjdkZWM4N2M2YTg2?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -960,13 +960,13 @@ "4988" ], "x-ms-request-id": [ - "66fbe75d-d5b3-494e-aa8a-869dc99df45e" + "b7f2f1a7-7c13-4dea-8ddf-1a328cece187" ], "x-ms-correlation-request-id": [ - "66fbe75d-d5b3-494e-aa8a-869dc99df45e" + "b7f2f1a7-7c13-4dea-8ddf-1a328cece187" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T185000Z:66fbe75d-d5b3-494e-aa8a-869dc99df45e" + "WESTUS2:20200730T205449Z:b7f2f1a7-7c13-4dea-8ddf-1a328cece187" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -975,10 +975,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:50:00 GMT" + "Thu, 30 Jul 2020 20:54:49 GMT" ], "Content-Length": [ - "4374" + "4372" ], "Content-Type": [ "application/json; charset=utf-8" @@ -987,23 +987,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLCXpk=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"50W/cRtmjyxQpssUtuOQXJQdQsoD1pp/VtMOI8HlYbQ=\",\r\n \"secondaryKey\": \"HaqJGvo0TPYgz2QaTO2NM6TKFYy83PPfnQUUq6pB+Ec=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"qbkr+m8q7Nic3ZUascZUl1jkK8a85qJK+iuHMzIVAy8=\",\r\n \"secondaryKey\": \"sT+4PBILYb2Yd9o2Ck2G3MWPfbUWaaNCauqlw1+LJlg=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"66rF5og/xuFuQYu3vR4OJtJV7G1xgFjG59L6n5KkJtg=\",\r\n \"secondaryKey\": \"ZPfPz8j1SsCywCh/piN3nm0JG56qUkancOGBpaCuvd0=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"WkvHh/TUtXHep8igL6xWdBMTkfNVnLJwe8pUj+xTKJc=\",\r\n \"secondaryKey\": \"M87nK/5eFQhvEU+rvfaybj5JbQQhpvVQ40g2dp1R7sw=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"JLpWSs6DRnOfTjO2hHO1jMFY/OuxGxdeZDPMRIMcENU=\",\r\n \"secondaryKey\": \"lUInAfihIHMX54pdxQRe16mudmWNvGH6cX7i+ecMFSQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-76f98e40-a5ef-4cab-b8c6-04f21c163e95-iothub\",\r\n \"PrimaryKey\": \"hX5QG2qqpl8oZu3MrkZnPsmK2PwbW1pOyMnXpWF/iTc=\",\r\n \"SecondaryKey\": \"dqo/859FShHGaBCPS4ppPAZvT/ouVNCQq7/KG9e79z0=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:49:37 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:49:37 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-3cce7c59-fe2d-4d24-933e-64162bc52669-iothub\",\r\n \"PrimaryKey\": \"wASRVPoZsA9w45V7l1VYBbmyLVykecEmjuitNvB3I4o=\",\r\n \"SecondaryKey\": \"yx76nZLgpDUBsLXb0SfrrSGgUUFJhwmAYxcoz32psZM=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:49:37 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:49:37 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"50W/cRtmjyxQpssUtuOQXJQdQsoD1pp/VtMOI8HlYbQ=\",\r\n \"SecondaryKey\": \"HaqJGvo0TPYgz2QaTO2NM6TKFYy83PPfnQUUq6pB+Ec=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:49:37 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:49:37 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"qbkr+m8q7Nic3ZUascZUl1jkK8a85qJK+iuHMzIVAy8=\",\r\n \"SecondaryKey\": \"sT+4PBILYb2Yd9o2Ck2G3MWPfbUWaaNCauqlw1+LJlg=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:49:37 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:49:37 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net/;SharedAccessKeyName=ps7586;SharedAccessKey=U1eYLWYPec/8NSbk3muwxiPjq+nv2Dp3GCt5lkOS8jE=;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"id\": \"4e82e344-ee11-4642-9987-99a2fd5a3deb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [\r\n {\r\n \"name\": \"ps2278\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"ps9541\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5e9Bo=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"ias8xYD/BVzNSFtoMQt8g7oyya2gKVjF5BW5g28eorY=\",\r\n \"secondaryKey\": \"BMANY2lVeWkwxQnypbR1ik/txxqTwGUsOzZDpfCZ34w=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"X3sW9tC3MR3DGzotX68yEwP8qMIWZa8BQrY0e8+9OIg=\",\r\n \"secondaryKey\": \"dbKKZ0NB+Y2IujvU2rBOpnygwyIBAe9pVA5Y6MRkKTY=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"MJslAeTjuREVAz7T9AbLj1h1rqv3BklS1oH5eDWFgwI=\",\r\n \"secondaryKey\": \"3zNjW6oOVSnTnpHIBz+yVHkLA1jyT3LlR0YFDDJsBpQ=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"kQXWydwELg5i4QjK3qtpOo8Nw4wG+tp8fNEkYUYkWrY=\",\r\n \"secondaryKey\": \"2dS+gOi1qqVlzHN2MK2igQRxzdz7lidoMUUQJmAuP4c=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"k8kmNyooqFttHJsDVJtMTqu0sSSF/FqCFSTTXyL7JhE=\",\r\n \"secondaryKey\": \"yBx/kzMawnmvoQRyluGOnWhvC8Qql5193oo7YDz3+DQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-f459458b-61a0-4d34-b164-1b6407447631-iothub\",\r\n \"PrimaryKey\": \"NLYP51WPskWM/jmFDkJUYzAjUj2/aDaj9Qe+bsyRuB8=\",\r\n \"SecondaryKey\": \"6upXNOPtokfEKzg7f/MxwpUJ/CqtA+CgRB75KvR64Wk=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 20:54:28 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 20:54:28 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-34cdace9-57e7-4d3a-85ed-780161e4e17b-iothub\",\r\n \"PrimaryKey\": \"0m40LrG0hYXSMoQnCjG7nKrXS+tt+Sz0r1X3MxesZCc=\",\r\n \"SecondaryKey\": \"BSHt6yuQwmNgDgwKL2vTJno4zHzNLZKev3oR85ft1Ro=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 20:54:28 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 20:54:28 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"ias8xYD/BVzNSFtoMQt8g7oyya2gKVjF5BW5g28eorY=\",\r\n \"SecondaryKey\": \"BMANY2lVeWkwxQnypbR1ik/txxqTwGUsOzZDpfCZ34w=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 20:54:28 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 20:54:28 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"X3sW9tC3MR3DGzotX68yEwP8qMIWZa8BQrY0e8+9OIg=\",\r\n \"SecondaryKey\": \"dbKKZ0NB+Y2IujvU2rBOpnygwyIBAe9pVA5Y6MRkKTY=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 20:54:28 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 20:54:28 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net/;SharedAccessKeyName=ps424;SharedAccessKey=AW2s4P8O4mD+LYNDTXrpx0VIhDyivejYLWHBj9izRas=;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"id\": \"8f32adaf-74ff-48c5-b7ac-858b7e266d40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [\r\n {\r\n \"name\": \"ps2715\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"ps5242\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAABLCisE=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net:5671/;SharedAccessKeyName=ps7586;SharedAccessKey=****;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n },\r\n \"enrichments\": []\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"etag\": \"AAAAAJ5frEg=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net:5671/;SharedAccessKeyName=ps424;SharedAccessKey=****;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n },\r\n \"enrichments\": []\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "16cac4a7-689e-49b0-84e0-92dd6c2335a1" + "56455f75-e719-43cd-903a-c8842cd3780d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1012,7 +1012,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "1745" + "1743" ] }, "ResponseHeaders": { @@ -1023,7 +1023,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfN2I5ZGUxMTktZmY3NS00ZDU1LWE2MjItODQyNGE3NjhjOTVi?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGJiN2NkZWItYzEwYy00OGNmLTllMzUtYmI4OTY5ZDExZDgz?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1032,13 +1032,13 @@ "4987" ], "x-ms-request-id": [ - "8425e038-b5bf-4b00-bccb-8c6e3f8ace29" + "220009b6-19e9-414b-9c3b-a262b7745220" ], "x-ms-correlation-request-id": [ - "8425e038-b5bf-4b00-bccb-8c6e3f8ace29" + "220009b6-19e9-414b-9c3b-a262b7745220" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T185036Z:8425e038-b5bf-4b00-bccb-8c6e3f8ace29" + "WESTUS2:20200730T205525Z:220009b6-19e9-414b-9c3b-a262b7745220" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1047,10 +1047,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:50:35 GMT" + "Thu, 30 Jul 2020 20:55:24 GMT" ], "Content-Length": [ - "4266" + "4264" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1059,23 +1059,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLCisE=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"50W/cRtmjyxQpssUtuOQXJQdQsoD1pp/VtMOI8HlYbQ=\",\r\n \"secondaryKey\": \"HaqJGvo0TPYgz2QaTO2NM6TKFYy83PPfnQUUq6pB+Ec=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"qbkr+m8q7Nic3ZUascZUl1jkK8a85qJK+iuHMzIVAy8=\",\r\n \"secondaryKey\": \"sT+4PBILYb2Yd9o2Ck2G3MWPfbUWaaNCauqlw1+LJlg=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"66rF5og/xuFuQYu3vR4OJtJV7G1xgFjG59L6n5KkJtg=\",\r\n \"secondaryKey\": \"ZPfPz8j1SsCywCh/piN3nm0JG56qUkancOGBpaCuvd0=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"WkvHh/TUtXHep8igL6xWdBMTkfNVnLJwe8pUj+xTKJc=\",\r\n \"secondaryKey\": \"M87nK/5eFQhvEU+rvfaybj5JbQQhpvVQ40g2dp1R7sw=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"JLpWSs6DRnOfTjO2hHO1jMFY/OuxGxdeZDPMRIMcENU=\",\r\n \"secondaryKey\": \"lUInAfihIHMX54pdxQRe16mudmWNvGH6cX7i+ecMFSQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-76f98e40-a5ef-4cab-b8c6-04f21c163e95-iothub\",\r\n \"PrimaryKey\": \"hX5QG2qqpl8oZu3MrkZnPsmK2PwbW1pOyMnXpWF/iTc=\",\r\n \"SecondaryKey\": \"dqo/859FShHGaBCPS4ppPAZvT/ouVNCQq7/KG9e79z0=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:50:11 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:50:11 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-3cce7c59-fe2d-4d24-933e-64162bc52669-iothub\",\r\n \"PrimaryKey\": \"wASRVPoZsA9w45V7l1VYBbmyLVykecEmjuitNvB3I4o=\",\r\n \"SecondaryKey\": \"yx76nZLgpDUBsLXb0SfrrSGgUUFJhwmAYxcoz32psZM=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:50:11 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:50:11 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"50W/cRtmjyxQpssUtuOQXJQdQsoD1pp/VtMOI8HlYbQ=\",\r\n \"SecondaryKey\": \"HaqJGvo0TPYgz2QaTO2NM6TKFYy83PPfnQUUq6pB+Ec=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:50:11 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:50:11 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"qbkr+m8q7Nic3ZUascZUl1jkK8a85qJK+iuHMzIVAy8=\",\r\n \"SecondaryKey\": \"sT+4PBILYb2Yd9o2Ck2G3MWPfbUWaaNCauqlw1+LJlg=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:50:11 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:50:11 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net/;SharedAccessKeyName=ps7586;SharedAccessKey=U1eYLWYPec/8NSbk3muwxiPjq+nv2Dp3GCt5lkOS8jE=;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"id\": \"4e82e344-ee11-4642-9987-99a2fd5a3deb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5frEg=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"ias8xYD/BVzNSFtoMQt8g7oyya2gKVjF5BW5g28eorY=\",\r\n \"secondaryKey\": \"BMANY2lVeWkwxQnypbR1ik/txxqTwGUsOzZDpfCZ34w=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"X3sW9tC3MR3DGzotX68yEwP8qMIWZa8BQrY0e8+9OIg=\",\r\n \"secondaryKey\": \"dbKKZ0NB+Y2IujvU2rBOpnygwyIBAe9pVA5Y6MRkKTY=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"MJslAeTjuREVAz7T9AbLj1h1rqv3BklS1oH5eDWFgwI=\",\r\n \"secondaryKey\": \"3zNjW6oOVSnTnpHIBz+yVHkLA1jyT3LlR0YFDDJsBpQ=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"kQXWydwELg5i4QjK3qtpOo8Nw4wG+tp8fNEkYUYkWrY=\",\r\n \"secondaryKey\": \"2dS+gOi1qqVlzHN2MK2igQRxzdz7lidoMUUQJmAuP4c=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"k8kmNyooqFttHJsDVJtMTqu0sSSF/FqCFSTTXyL7JhE=\",\r\n \"secondaryKey\": \"yBx/kzMawnmvoQRyluGOnWhvC8Qql5193oo7YDz3+DQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-f459458b-61a0-4d34-b164-1b6407447631-iothub\",\r\n \"PrimaryKey\": \"NLYP51WPskWM/jmFDkJUYzAjUj2/aDaj9Qe+bsyRuB8=\",\r\n \"SecondaryKey\": \"6upXNOPtokfEKzg7f/MxwpUJ/CqtA+CgRB75KvR64Wk=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 20:55:03 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 20:55:03 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-34cdace9-57e7-4d3a-85ed-780161e4e17b-iothub\",\r\n \"PrimaryKey\": \"0m40LrG0hYXSMoQnCjG7nKrXS+tt+Sz0r1X3MxesZCc=\",\r\n \"SecondaryKey\": \"BSHt6yuQwmNgDgwKL2vTJno4zHzNLZKev3oR85ft1Ro=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 20:55:03 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 20:55:03 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"ias8xYD/BVzNSFtoMQt8g7oyya2gKVjF5BW5g28eorY=\",\r\n \"SecondaryKey\": \"BMANY2lVeWkwxQnypbR1ik/txxqTwGUsOzZDpfCZ34w=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 20:55:03 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 20:55:03 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"X3sW9tC3MR3DGzotX68yEwP8qMIWZa8BQrY0e8+9OIg=\",\r\n \"SecondaryKey\": \"dbKKZ0NB+Y2IujvU2rBOpnygwyIBAe9pVA5Y6MRkKTY=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 20:55:03 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 20:55:03 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net/;SharedAccessKeyName=ps424;SharedAccessKey=AW2s4P8O4mD+LYNDTXrpx0VIhDyivejYLWHBj9izRas=;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"id\": \"8f32adaf-74ff-48c5-b7ac-858b7e266d40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAABLCt3c=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n },\r\n \"enrichments\": []\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"etag\": \"AAAAAJ5f/1I=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n },\r\n \"enrichments\": []\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8770951a-0398-456d-9123-bca402217ef1" + "972ae639-cd8a-419c-8b41-90bd4a4eebb6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1095,7 +1095,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMzhjMjYwOTctOTRhMy00NWU1LTk4MzktNDM3MjMwZTUwMDRi?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMzhjMzllMWItMTdkYy00Y2UxLWJkZmMtZWE4MjIxYmI5MjA4?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1104,13 +1104,13 @@ "4986" ], "x-ms-request-id": [ - "4a2d0d2d-2398-4f0f-9a42-3f2fb499b148" + "d0556a7d-6b72-4d50-90de-6444e9f9e649" ], "x-ms-correlation-request-id": [ - "4a2d0d2d-2398-4f0f-9a42-3f2fb499b148" + "d0556a7d-6b72-4d50-90de-6444e9f9e649" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T185109Z:4a2d0d2d-2398-4f0f-9a42-3f2fb499b148" + "WESTUS2:20200730T205559Z:d0556a7d-6b72-4d50-90de-6444e9f9e649" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1119,7 +1119,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:51:09 GMT" + "Thu, 30 Jul 2020 20:55:59 GMT" ], "Content-Length": [ "3946" @@ -1131,17 +1131,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLCt3c=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"50W/cRtmjyxQpssUtuOQXJQdQsoD1pp/VtMOI8HlYbQ=\",\r\n \"secondaryKey\": \"HaqJGvo0TPYgz2QaTO2NM6TKFYy83PPfnQUUq6pB+Ec=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"qbkr+m8q7Nic3ZUascZUl1jkK8a85qJK+iuHMzIVAy8=\",\r\n \"secondaryKey\": \"sT+4PBILYb2Yd9o2Ck2G3MWPfbUWaaNCauqlw1+LJlg=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"66rF5og/xuFuQYu3vR4OJtJV7G1xgFjG59L6n5KkJtg=\",\r\n \"secondaryKey\": \"ZPfPz8j1SsCywCh/piN3nm0JG56qUkancOGBpaCuvd0=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"WkvHh/TUtXHep8igL6xWdBMTkfNVnLJwe8pUj+xTKJc=\",\r\n \"secondaryKey\": \"M87nK/5eFQhvEU+rvfaybj5JbQQhpvVQ40g2dp1R7sw=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"JLpWSs6DRnOfTjO2hHO1jMFY/OuxGxdeZDPMRIMcENU=\",\r\n \"secondaryKey\": \"lUInAfihIHMX54pdxQRe16mudmWNvGH6cX7i+ecMFSQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-76f98e40-a5ef-4cab-b8c6-04f21c163e95-iothub\",\r\n \"PrimaryKey\": \"hX5QG2qqpl8oZu3MrkZnPsmK2PwbW1pOyMnXpWF/iTc=\",\r\n \"SecondaryKey\": \"dqo/859FShHGaBCPS4ppPAZvT/ouVNCQq7/KG9e79z0=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:50:46 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:50:46 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-3cce7c59-fe2d-4d24-933e-64162bc52669-iothub\",\r\n \"PrimaryKey\": \"wASRVPoZsA9w45V7l1VYBbmyLVykecEmjuitNvB3I4o=\",\r\n \"SecondaryKey\": \"yx76nZLgpDUBsLXb0SfrrSGgUUFJhwmAYxcoz32psZM=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:50:46 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:50:46 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"50W/cRtmjyxQpssUtuOQXJQdQsoD1pp/VtMOI8HlYbQ=\",\r\n \"SecondaryKey\": \"HaqJGvo0TPYgz2QaTO2NM6TKFYy83PPfnQUUq6pB+Ec=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:50:46 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:50:46 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"qbkr+m8q7Nic3ZUascZUl1jkK8a85qJK+iuHMzIVAy8=\",\r\n \"SecondaryKey\": \"sT+4PBILYb2Yd9o2Ck2G3MWPfbUWaaNCauqlw1+LJlg=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:50:46 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:50:46 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5f/1I=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"ias8xYD/BVzNSFtoMQt8g7oyya2gKVjF5BW5g28eorY=\",\r\n \"secondaryKey\": \"BMANY2lVeWkwxQnypbR1ik/txxqTwGUsOzZDpfCZ34w=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"X3sW9tC3MR3DGzotX68yEwP8qMIWZa8BQrY0e8+9OIg=\",\r\n \"secondaryKey\": \"dbKKZ0NB+Y2IujvU2rBOpnygwyIBAe9pVA5Y6MRkKTY=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"MJslAeTjuREVAz7T9AbLj1h1rqv3BklS1oH5eDWFgwI=\",\r\n \"secondaryKey\": \"3zNjW6oOVSnTnpHIBz+yVHkLA1jyT3LlR0YFDDJsBpQ=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"kQXWydwELg5i4QjK3qtpOo8Nw4wG+tp8fNEkYUYkWrY=\",\r\n \"secondaryKey\": \"2dS+gOi1qqVlzHN2MK2igQRxzdz7lidoMUUQJmAuP4c=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"k8kmNyooqFttHJsDVJtMTqu0sSSF/FqCFSTTXyL7JhE=\",\r\n \"secondaryKey\": \"yBx/kzMawnmvoQRyluGOnWhvC8Qql5193oo7YDz3+DQ=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-f459458b-61a0-4d34-b164-1b6407447631-iothub\",\r\n \"PrimaryKey\": \"NLYP51WPskWM/jmFDkJUYzAjUj2/aDaj9Qe+bsyRuB8=\",\r\n \"SecondaryKey\": \"6upXNOPtokfEKzg7f/MxwpUJ/CqtA+CgRB75KvR64Wk=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 20:55:38 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 20:55:38 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-34cdace9-57e7-4d3a-85ed-780161e4e17b-iothub\",\r\n \"PrimaryKey\": \"0m40LrG0hYXSMoQnCjG7nKrXS+tt+Sz0r1X3MxesZCc=\",\r\n \"SecondaryKey\": \"BSHt6yuQwmNgDgwKL2vTJno4zHzNLZKev3oR85ft1Ro=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 20:55:38 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 20:55:38 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"ias8xYD/BVzNSFtoMQt8g7oyya2gKVjF5BW5g28eorY=\",\r\n \"SecondaryKey\": \"BMANY2lVeWkwxQnypbR1ik/txxqTwGUsOzZDpfCZ34w=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 20:55:38 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 20:55:38 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"X3sW9tC3MR3DGzotX68yEwP8qMIWZa8BQrY0e8+9OIg=\",\r\n \"SecondaryKey\": \"dbKKZ0NB+Y2IujvU2rBOpnygwyIBAe9pVA5Y6MRkKTY=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 20:55:38 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 20:55:38 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMDYzMzVhM2UtN2EwYS00MjhlLWFlMTMtNWNlNDE2ZDUxNDMz?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTURZek16VmhNMlV0TjJFd1lTMDBNamhsTFdGbE1UTXROV05sTkRFMlpEVXhORE16P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjYxOWI2OTItYjE1Zi00MzE1LWFiODQtMmMwZmFjZWRhMmJm?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTWpZeE9XSTJPVEl0WWpFMVppMDBNekUxTFdGaU9EUXRNbU13Wm1GalpXUmhNbUptP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1161,13 +1161,13 @@ "11999" ], "x-ms-request-id": [ - "8bae0c78-2dcd-4695-8053-68936e42e0d5" + "4d56504a-8e4b-48d5-afc0-250bddd3b2a9" ], "x-ms-correlation-request-id": [ - "8bae0c78-2dcd-4695-8053-68936e42e0d5" + "4d56504a-8e4b-48d5-afc0-250bddd3b2a9" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184111Z:8bae0c78-2dcd-4695-8053-68936e42e0d5" + "WESTUS2:20200730T204215Z:4d56504a-8e4b-48d5-afc0-250bddd3b2a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1176,7 +1176,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:41:10 GMT" + "Thu, 30 Jul 2020 20:42:14 GMT" ], "Content-Length": [ "20" @@ -1192,13 +1192,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMDYzMzVhM2UtN2EwYS00MjhlLWFlMTMtNWNlNDE2ZDUxNDMz?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTURZek16VmhNMlV0TjJFd1lTMDBNamhsTFdGbE1UTXROV05sTkRFMlpEVXhORE16P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjYxOWI2OTItYjE1Zi00MzE1LWFiODQtMmMwZmFjZWRhMmJm?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTWpZeE9XSTJPVEl0WWpFMVppMDBNekUxTFdGaU9EUXRNbU13Wm1GalpXUmhNbUptP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1218,13 +1218,13 @@ "11998" ], "x-ms-request-id": [ - "29553601-db95-4c9b-8a74-121f9416ed9a" + "2a9b627a-8d54-4ddf-b862-b47512a0b6b3" ], "x-ms-correlation-request-id": [ - "29553601-db95-4c9b-8a74-121f9416ed9a" + "2a9b627a-8d54-4ddf-b862-b47512a0b6b3" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184141Z:29553601-db95-4c9b-8a74-121f9416ed9a" + "WESTUS2:20200730T204245Z:2a9b627a-8d54-4ddf-b862-b47512a0b6b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1233,7 +1233,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:41:41 GMT" + "Thu, 30 Jul 2020 20:42:45 GMT" ], "Content-Length": [ "20" @@ -1249,13 +1249,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMDYzMzVhM2UtN2EwYS00MjhlLWFlMTMtNWNlNDE2ZDUxNDMz?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTURZek16VmhNMlV0TjJFd1lTMDBNamhsTFdGbE1UTXROV05sTkRFMlpEVXhORE16P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjYxOWI2OTItYjE1Zi00MzE1LWFiODQtMmMwZmFjZWRhMmJm?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTWpZeE9XSTJPVEl0WWpFMVppMDBNekUxTFdGaU9EUXRNbU13Wm1GalpXUmhNbUptP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1275,13 +1275,13 @@ "11997" ], "x-ms-request-id": [ - "5195bc59-c40f-48c9-9d02-98b85707221c" + "ba258678-6a56-4bb3-936a-cbbe3f7e7c49" ], "x-ms-correlation-request-id": [ - "5195bc59-c40f-48c9-9d02-98b85707221c" + "ba258678-6a56-4bb3-936a-cbbe3f7e7c49" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184211Z:5195bc59-c40f-48c9-9d02-98b85707221c" + "WESTUS2:20200730T204316Z:ba258678-6a56-4bb3-936a-cbbe3f7e7c49" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1290,7 +1290,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:42:11 GMT" + "Thu, 30 Jul 2020 20:43:15 GMT" ], "Content-Length": [ "20" @@ -1306,13 +1306,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMDYzMzVhM2UtN2EwYS00MjhlLWFlMTMtNWNlNDE2ZDUxNDMz?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTURZek16VmhNMlV0TjJFd1lTMDBNamhsTFdGbE1UTXROV05sTkRFMlpEVXhORE16P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjYxOWI2OTItYjE1Zi00MzE1LWFiODQtMmMwZmFjZWRhMmJm?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTWpZeE9XSTJPVEl0WWpFMVppMDBNekUxTFdGaU9EUXRNbU13Wm1GalpXUmhNbUptP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1332,13 +1332,127 @@ "11996" ], "x-ms-request-id": [ - "ad106249-0ccb-466f-942d-bc9680e5d459" + "9a68f19e-ac5a-40db-b937-ba5340366c5d" + ], + "x-ms-correlation-request-id": [ + "9a68f19e-ac5a-40db-b937-ba5340366c5d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200730T204346Z:9a68f19e-ac5a-40db-b937-ba5340366c5d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 30 Jul 2020 20:43:45 GMT" + ], + "Content-Length": [ + "20" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjYxOWI2OTItYjE1Zi00MzE1LWFiODQtMmMwZmFjZWRhMmJm?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTWpZeE9XSTJPVEl0WWpFMVppMDBNekUxTFdGaU9EUXRNbU13Wm1GalpXUmhNbUptP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28619.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "56f23b53-353a-45df-a1de-28a2218e967e" + ], + "x-ms-correlation-request-id": [ + "56f23b53-353a-45df-a1de-28a2218e967e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200730T204416Z:56f23b53-353a-45df-a1de-28a2218e967e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 30 Jul 2020 20:44:16 GMT" + ], + "Content-Length": [ + "20" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjYxOWI2OTItYjE1Zi00MzE1LWFiODQtMmMwZmFjZWRhMmJm?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTWpZeE9XSTJPVEl0WWpFMVppMDBNekUxTFdGaU9EUXRNbU13Wm1GalpXUmhNbUptP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28619.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "5890f934-3447-42d4-a0c3-490c3d17157a" ], "x-ms-correlation-request-id": [ - "ad106249-0ccb-466f-942d-bc9680e5d459" + "5890f934-3447-42d4-a0c3-490c3d17157a" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184241Z:ad106249-0ccb-466f-942d-bc9680e5d459" + "WESTUS2:20200730T204446Z:5890f934-3447-42d4-a0c3-490c3d17157a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1347,7 +1461,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:42:41 GMT" + "Thu, 30 Jul 2020 20:44:46 GMT" ], "Content-Length": [ "22" @@ -1363,13 +1477,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1386,16 +1500,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11993" ], "x-ms-request-id": [ - "9a1740c1-7152-4d58-bf70-478daeec7dbd" + "7053c00d-a5ac-4533-858b-3b0021457aa6" ], "x-ms-correlation-request-id": [ - "9a1740c1-7152-4d58-bf70-478daeec7dbd" + "7053c00d-a5ac-4533-858b-3b0021457aa6" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184242Z:9a1740c1-7152-4d58-bf70-478daeec7dbd" + "WESTUS2:20200730T204447Z:7053c00d-a5ac-4533-858b-3b0021457aa6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1404,7 +1518,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:42:41 GMT" + "Thu, 30 Jul 2020 20:44:46 GMT" ], "Content-Length": [ "1472" @@ -1416,23 +1530,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLBGRg=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6275.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5UXO0=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4560.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1a3ea05d-bf7a-406a-aa2d-42962c120892" + "0e68ae67-ead3-4a49-bfc9-3fe907d1e44c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1449,16 +1563,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11992" ], "x-ms-request-id": [ - "2ba53c9d-3bca-443b-a954-4ffd6b2bb362" + "99a3eb56-2a82-4236-9932-2576afcae0ec" ], "x-ms-correlation-request-id": [ - "2ba53c9d-3bca-443b-a954-4ffd6b2bb362" + "99a3eb56-2a82-4236-9932-2576afcae0ec" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184243Z:2ba53c9d-3bca-443b-a954-4ffd6b2bb362" + "WESTUS2:20200730T204448Z:99a3eb56-2a82-4236-9932-2576afcae0ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1467,7 +1581,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:42:42 GMT" + "Thu, 30 Jul 2020 20:44:47 GMT" ], "Content-Length": [ "1472" @@ -1479,23 +1593,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLBGRg=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6275.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5UXO0=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4560.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2c4d8e17-8a91-4bbd-9b0a-4b13d0f6ecf9" + "88eeb31e-1cf2-465a-805a-ecbc387c7785" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1512,16 +1626,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11991" ], "x-ms-request-id": [ - "b307b492-4deb-4f73-9ef3-89ae6580a32d" + "e74e1f47-2726-45d0-8a6d-9547a588bbd8" ], "x-ms-correlation-request-id": [ - "b307b492-4deb-4f73-9ef3-89ae6580a32d" + "e74e1f47-2726-45d0-8a6d-9547a588bbd8" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184409Z:b307b492-4deb-4f73-9ef3-89ae6580a32d" + "WESTUS2:20200730T204614Z:e74e1f47-2726-45d0-8a6d-9547a588bbd8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1530,7 +1644,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:44:08 GMT" + "Thu, 30 Jul 2020 20:46:13 GMT" ], "Content-Length": [ "1472" @@ -1542,23 +1656,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLBGRg=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6275.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5UXO0=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4560.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ba5a0ef-9c25-4845-bd28-4cb3c40fadfc" + "99fdcd65-dcca-4f19-9c33-02acded980ca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1575,16 +1689,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11990" ], "x-ms-request-id": [ - "adc73c04-8d53-41d4-84ff-0b901e3a46fb" + "28888ada-8f23-4bac-bd89-5b44ce04bf96" ], "x-ms-correlation-request-id": [ - "adc73c04-8d53-41d4-84ff-0b901e3a46fb" + "28888ada-8f23-4bac-bd89-5b44ce04bf96" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184409Z:adc73c04-8d53-41d4-84ff-0b901e3a46fb" + "WESTUS2:20200730T204615Z:28888ada-8f23-4bac-bd89-5b44ce04bf96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1593,7 +1707,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:44:09 GMT" + "Thu, 30 Jul 2020 20:46:14 GMT" ], "Content-Length": [ "1472" @@ -1605,17 +1719,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLBGRg=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6275.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5UXO0=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4560.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1632,16 +1746,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11988" ], "x-ms-request-id": [ - "8ea8a6fa-aa61-4e51-91be-cb2fcbc3718d" + "27560ad9-7580-41dd-aa83-a8f7af2c514c" ], "x-ms-correlation-request-id": [ - "8ea8a6fa-aa61-4e51-91be-cb2fcbc3718d" + "27560ad9-7580-41dd-aa83-a8f7af2c514c" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184442Z:8ea8a6fa-aa61-4e51-91be-cb2fcbc3718d" + "WESTUS2:20200730T204649Z:27560ad9-7580-41dd-aa83-a8f7af2c514c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1650,10 +1764,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:44:42 GMT" + "Thu, 30 Jul 2020 20:46:48 GMT" ], "Content-Length": [ - "1757" + "1755" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1662,23 +1776,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLBV5A=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6275.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net:5671/;SharedAccessKeyName=ps7586;SharedAccessKey=****;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"id\": \"4e82e344-ee11-4642-9987-99a2fd5a3deb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5WoFU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4560.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net:5671/;SharedAccessKeyName=ps424;SharedAccessKey=****;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"id\": \"8f32adaf-74ff-48c5-b7ac-858b7e266d40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7f3729ef-d296-4e56-b056-b4c01863ebd9" + "0c41631a-8801-403e-9059-05584d75953c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1695,16 +1809,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11987" ], "x-ms-request-id": [ - "02bbb0ba-e1ca-4c08-a652-c62f8cb44545" + "9e10d4fc-4fff-4aae-a7ab-327a22ddabde" ], "x-ms-correlation-request-id": [ - "02bbb0ba-e1ca-4c08-a652-c62f8cb44545" + "9e10d4fc-4fff-4aae-a7ab-327a22ddabde" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184443Z:02bbb0ba-e1ca-4c08-a652-c62f8cb44545" + "WESTUS2:20200730T204649Z:9e10d4fc-4fff-4aae-a7ab-327a22ddabde" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1713,10 +1827,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:44:43 GMT" + "Thu, 30 Jul 2020 20:46:49 GMT" ], "Content-Length": [ - "1757" + "1755" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1725,23 +1839,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLBV5A=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6275.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net:5671/;SharedAccessKeyName=ps7586;SharedAccessKey=****;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"id\": \"4e82e344-ee11-4642-9987-99a2fd5a3deb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5WoFU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4560.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net:5671/;SharedAccessKeyName=ps424;SharedAccessKey=****;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"id\": \"8f32adaf-74ff-48c5-b7ac-858b7e266d40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7af52856-ea1b-4f98-9cd9-b6c884c84f72" + "54c3c9fb-bd7f-4cf5-9fbe-f010f01f0556" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1758,16 +1872,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11986" ], "x-ms-request-id": [ - "4913fdf9-8d59-4664-9496-33a87c0175db" + "e04349b9-a4b8-4ba5-bd8a-a596d3d4a725" ], "x-ms-correlation-request-id": [ - "4913fdf9-8d59-4664-9496-33a87c0175db" + "e04349b9-a4b8-4ba5-bd8a-a596d3d4a725" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184444Z:4913fdf9-8d59-4664-9496-33a87c0175db" + "WESTUS2:20200730T204650Z:e04349b9-a4b8-4ba5-bd8a-a596d3d4a725" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1776,10 +1890,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:44:44 GMT" + "Thu, 30 Jul 2020 20:46:50 GMT" ], "Content-Length": [ - "1757" + "1755" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1788,17 +1902,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLBV5A=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6275.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net:5671/;SharedAccessKeyName=ps7586;SharedAccessKey=****;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"id\": \"4e82e344-ee11-4642-9987-99a2fd5a3deb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5WoFU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4560.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net:5671/;SharedAccessKeyName=ps424;SharedAccessKey=****;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"id\": \"8f32adaf-74ff-48c5-b7ac-858b7e266d40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1815,16 +1929,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11984" ], "x-ms-request-id": [ - "bf63420d-b018-405c-ade4-fd43de99d270" + "e2a11cef-37f0-469d-bba0-7cee190151da" ], "x-ms-correlation-request-id": [ - "bf63420d-b018-405c-ade4-fd43de99d270" + "e2a11cef-37f0-469d-bba0-7cee190151da" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184517Z:bf63420d-b018-405c-ade4-fd43de99d270" + "WESTUS2:20200730T204724Z:e2a11cef-37f0-469d-bba0-7cee190151da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1833,10 +1947,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:45:16 GMT" + "Thu, 30 Jul 2020 20:47:23 GMT" ], "Content-Length": [ - "2221" + "2219" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1845,23 +1959,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLBg8I=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6275.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net:5671/;SharedAccessKeyName=ps7586;SharedAccessKey=****;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"id\": \"4e82e344-ee11-4642-9987-99a2fd5a3deb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps9994\",\r\n \"id\": \"e674b29f-4530-4bd4-aa99-ad978723a8d6\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5XVLk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4560.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net:5671/;SharedAccessKeyName=ps424;SharedAccessKey=****;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"id\": \"8f32adaf-74ff-48c5-b7ac-858b7e266d40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps3913\",\r\n \"id\": \"a811fa1f-4f32-47f9-b3c3-ebfcfed18d08\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cda7f91c-c359-4776-8858-700e3c934831" + "01055e35-8fc0-4d62-8c12-5b670b46d70d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1878,16 +1992,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11983" ], "x-ms-request-id": [ - "03a51b7d-c867-4115-85b5-417c1de3a357" + "c9362f21-cb41-4ce7-83e5-635f6b4cccc2" ], "x-ms-correlation-request-id": [ - "03a51b7d-c867-4115-85b5-417c1de3a357" + "c9362f21-cb41-4ce7-83e5-635f6b4cccc2" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184517Z:03a51b7d-c867-4115-85b5-417c1de3a357" + "WESTUS2:20200730T204724Z:c9362f21-cb41-4ce7-83e5-635f6b4cccc2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1896,10 +2010,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:45:17 GMT" + "Thu, 30 Jul 2020 20:47:24 GMT" ], "Content-Length": [ - "2221" + "2219" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1908,23 +2022,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLBg8I=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6275.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net:5671/;SharedAccessKeyName=ps7586;SharedAccessKey=****;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"id\": \"4e82e344-ee11-4642-9987-99a2fd5a3deb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps9994\",\r\n \"id\": \"e674b29f-4530-4bd4-aa99-ad978723a8d6\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5XVLk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4560.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net:5671/;SharedAccessKeyName=ps424;SharedAccessKey=****;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"id\": \"8f32adaf-74ff-48c5-b7ac-858b7e266d40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps3913\",\r\n \"id\": \"a811fa1f-4f32-47f9-b3c3-ebfcfed18d08\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e82d1891-9684-4da6-aa74-3d3ddc01116b" + "6e67c7ed-6ddd-4227-b4f5-226639076ed3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1941,16 +2055,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11982" ], "x-ms-request-id": [ - "c3f63b06-1dab-410b-88a7-e69d14258800" + "c12e2045-e589-4e86-bcac-52e7b285d1ca" ], "x-ms-correlation-request-id": [ - "c3f63b06-1dab-410b-88a7-e69d14258800" + "c12e2045-e589-4e86-bcac-52e7b285d1ca" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184518Z:c3f63b06-1dab-410b-88a7-e69d14258800" + "WESTUS2:20200730T204725Z:c12e2045-e589-4e86-bcac-52e7b285d1ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1959,10 +2073,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:45:17 GMT" + "Thu, 30 Jul 2020 20:47:24 GMT" ], "Content-Length": [ - "2221" + "2219" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1971,17 +2085,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLBg8I=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6275.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net:5671/;SharedAccessKeyName=ps7586;SharedAccessKey=****;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"id\": \"4e82e344-ee11-4642-9987-99a2fd5a3deb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps9994\",\r\n \"id\": \"e674b29f-4530-4bd4-aa99-ad978723a8d6\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5XVLk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4560.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net:5671/;SharedAccessKeyName=ps424;SharedAccessKey=****;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"id\": \"8f32adaf-74ff-48c5-b7ac-858b7e266d40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps3913\",\r\n \"id\": \"a811fa1f-4f32-47f9-b3c3-ebfcfed18d08\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1998,16 +2112,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11979" ], "x-ms-request-id": [ - "675a291f-8637-4786-8800-0b414956fea8" + "90d78729-6c8d-4d42-a765-c69f38fbfe3c" ], "x-ms-correlation-request-id": [ - "675a291f-8637-4786-8800-0b414956fea8" + "90d78729-6c8d-4d42-a765-c69f38fbfe3c" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184551Z:675a291f-8637-4786-8800-0b414956fea8" + "WESTUS2:20200730T204830Z:90d78729-6c8d-4d42-a765-c69f38fbfe3c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2016,10 +2130,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:45:51 GMT" + "Thu, 30 Jul 2020 20:48:29 GMT" ], "Content-Length": [ - "2686" + "2684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2028,23 +2142,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLBsfc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6275.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net:5671/;SharedAccessKeyName=ps7586;SharedAccessKey=****;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"id\": \"4e82e344-ee11-4642-9987-99a2fd5a3deb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps9994\",\r\n \"id\": \"e674b29f-4530-4bd4-aa99-ad978723a8d6\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps6224\",\r\n \"id\": \"48fa3d2f-191f-42b7-a601-fba21739ef19\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5XqA8=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4560.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net:5671/;SharedAccessKeyName=ps424;SharedAccessKey=****;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"id\": \"8f32adaf-74ff-48c5-b7ac-858b7e266d40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps3913\",\r\n \"id\": \"a811fa1f-4f32-47f9-b3c3-ebfcfed18d08\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps7754\",\r\n \"id\": \"0abebe7e-1a12-4a60-8882-50f720bbfbdd\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0c7b16d3-6836-43e2-97d2-0770efa08737" + "fce7b688-9beb-48fc-b5f8-25fec437c071" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2061,16 +2175,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11978" ], "x-ms-request-id": [ - "4db40663-ac7f-45e0-ace9-2de7249930a5" + "a4429937-c378-4c13-afa9-8cf07cc6600a" ], "x-ms-correlation-request-id": [ - "4db40663-ac7f-45e0-ace9-2de7249930a5" + "a4429937-c378-4c13-afa9-8cf07cc6600a" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184552Z:4db40663-ac7f-45e0-ace9-2de7249930a5" + "WESTUS2:20200730T204830Z:a4429937-c378-4c13-afa9-8cf07cc6600a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2079,10 +2193,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:45:52 GMT" + "Thu, 30 Jul 2020 20:48:30 GMT" ], "Content-Length": [ - "2686" + "2684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2091,23 +2205,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLBsfc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6275.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net:5671/;SharedAccessKeyName=ps7586;SharedAccessKey=****;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"id\": \"4e82e344-ee11-4642-9987-99a2fd5a3deb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps9994\",\r\n \"id\": \"e674b29f-4530-4bd4-aa99-ad978723a8d6\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps6224\",\r\n \"id\": \"48fa3d2f-191f-42b7-a601-fba21739ef19\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5XqA8=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4560.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net:5671/;SharedAccessKeyName=ps424;SharedAccessKey=****;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"id\": \"8f32adaf-74ff-48c5-b7ac-858b7e266d40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps3913\",\r\n \"id\": \"a811fa1f-4f32-47f9-b3c3-ebfcfed18d08\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps7754\",\r\n \"id\": \"0abebe7e-1a12-4a60-8882-50f720bbfbdd\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51a08167-eade-42ad-9b50-d3aa8c78c531" + "bb48094f-0ca0-46e4-af87-5eb56f6909e6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2124,16 +2238,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11977" ], "x-ms-request-id": [ - "125bb5f5-4029-4592-9c71-f81c7106e063" + "d2a9f173-95ae-4420-aece-bb55201618c7" ], "x-ms-correlation-request-id": [ - "125bb5f5-4029-4592-9c71-f81c7106e063" + "d2a9f173-95ae-4420-aece-bb55201618c7" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184553Z:125bb5f5-4029-4592-9c71-f81c7106e063" + "WESTUS2:20200730T204831Z:d2a9f173-95ae-4420-aece-bb55201618c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2142,10 +2256,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:45:52 GMT" + "Thu, 30 Jul 2020 20:48:30 GMT" ], "Content-Length": [ - "2686" + "2684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2154,23 +2268,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLBsfc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6275.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net:5671/;SharedAccessKeyName=ps7586;SharedAccessKey=****;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"id\": \"4e82e344-ee11-4642-9987-99a2fd5a3deb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps9994\",\r\n \"id\": \"e674b29f-4530-4bd4-aa99-ad978723a8d6\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps6224\",\r\n \"id\": \"48fa3d2f-191f-42b7-a601-fba21739ef19\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5XqA8=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4560.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net:5671/;SharedAccessKeyName=ps424;SharedAccessKey=****;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"id\": \"8f32adaf-74ff-48c5-b7ac-858b7e266d40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps3913\",\r\n \"id\": \"a811fa1f-4f32-47f9-b3c3-ebfcfed18d08\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps7754\",\r\n \"id\": \"0abebe7e-1a12-4a60-8882-50f720bbfbdd\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "50501e6e-d05d-4b2c-af28-6bc0ac2a6b4e" + "24bb3ce6-0f5f-4f6a-acb6-b046492e57d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2187,16 +2301,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11976" ], "x-ms-request-id": [ - "d959386b-f1f2-47a5-9900-2d77e89b17f3" + "fa8616be-bd38-4453-a8c5-bc971913f3a7" ], "x-ms-correlation-request-id": [ - "d959386b-f1f2-47a5-9900-2d77e89b17f3" + "fa8616be-bd38-4453-a8c5-bc971913f3a7" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184553Z:d959386b-f1f2-47a5-9900-2d77e89b17f3" + "WESTUS2:20200730T204831Z:fa8616be-bd38-4453-a8c5-bc971913f3a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2205,10 +2319,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:45:53 GMT" + "Thu, 30 Jul 2020 20:48:31 GMT" ], "Content-Length": [ - "2686" + "2684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2217,23 +2331,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLBsfc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6275.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net:5671/;SharedAccessKeyName=ps7586;SharedAccessKey=****;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"id\": \"4e82e344-ee11-4642-9987-99a2fd5a3deb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps9994\",\r\n \"id\": \"e674b29f-4530-4bd4-aa99-ad978723a8d6\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps6224\",\r\n \"id\": \"48fa3d2f-191f-42b7-a601-fba21739ef19\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5XqA8=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4560.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net:5671/;SharedAccessKeyName=ps424;SharedAccessKey=****;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"id\": \"8f32adaf-74ff-48c5-b7ac-858b7e266d40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps3913\",\r\n \"id\": \"a811fa1f-4f32-47f9-b3c3-ebfcfed18d08\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps7754\",\r\n \"id\": \"0abebe7e-1a12-4a60-8882-50f720bbfbdd\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "be1a19d6-cd11-4b33-9a53-96568bda6ac5" + "3000b1aa-92ab-4c78-a232-0445e84be81a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2250,16 +2364,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11975" ], "x-ms-request-id": [ - "d1d10364-e437-4ee7-bd9b-36c7f30ddf53" + "dd85a3c4-c5b9-4d52-a08d-e9d00fa55579" ], "x-ms-correlation-request-id": [ - "d1d10364-e437-4ee7-bd9b-36c7f30ddf53" + "dd85a3c4-c5b9-4d52-a08d-e9d00fa55579" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184554Z:d1d10364-e437-4ee7-bd9b-36c7f30ddf53" + "WESTUS2:20200730T204832Z:dd85a3c4-c5b9-4d52-a08d-e9d00fa55579" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2268,10 +2382,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:45:53 GMT" + "Thu, 30 Jul 2020 20:48:31 GMT" ], "Content-Length": [ - "2686" + "2684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2280,17 +2394,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLBsfc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6275.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net:5671/;SharedAccessKeyName=ps7586;SharedAccessKey=****;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"id\": \"4e82e344-ee11-4642-9987-99a2fd5a3deb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps9994\",\r\n \"id\": \"e674b29f-4530-4bd4-aa99-ad978723a8d6\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps6224\",\r\n \"id\": \"48fa3d2f-191f-42b7-a601-fba21739ef19\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5XqA8=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4560.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net:5671/;SharedAccessKeyName=ps424;SharedAccessKey=****;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"id\": \"8f32adaf-74ff-48c5-b7ac-858b7e266d40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps3913\",\r\n \"id\": \"a811fa1f-4f32-47f9-b3c3-ebfcfed18d08\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps7754\",\r\n \"id\": \"0abebe7e-1a12-4a60-8882-50f720bbfbdd\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2307,16 +2421,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11972" ], "x-ms-request-id": [ - "663d9401-aea4-47d1-90f9-3cd40b8d1327" + "6e6f9c2f-ee3a-46d8-ba7b-180ee943a249" ], "x-ms-correlation-request-id": [ - "663d9401-aea4-47d1-90f9-3cd40b8d1327" + "6e6f9c2f-ee3a-46d8-ba7b-180ee943a249" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184629Z:663d9401-aea4-47d1-90f9-3cd40b8d1327" + "WESTUS2:20200730T204937Z:6e6f9c2f-ee3a-46d8-ba7b-180ee943a249" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2325,10 +2439,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:46:28 GMT" + "Thu, 30 Jul 2020 20:49:36 GMT" ], "Content-Length": [ - "2763" + "2761" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2337,23 +2451,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLBxHM=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6275.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net:5671/;SharedAccessKeyName=ps7586;SharedAccessKey=****;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"id\": \"4e82e344-ee11-4642-9987-99a2fd5a3deb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps9994\",\r\n \"id\": \"e674b29f-4530-4bd4-aa99-ad978723a8d6\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps6224\",\r\n \"id\": \"48fa3d2f-191f-42b7-a601-fba21739ef19\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps1506\",\r\n \"value\": \"ps1190\",\r\n \"endpointNames\": [\r\n \"ps9994\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5Y0Lc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4560.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net:5671/;SharedAccessKeyName=ps424;SharedAccessKey=****;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"id\": \"8f32adaf-74ff-48c5-b7ac-858b7e266d40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps3913\",\r\n \"id\": \"a811fa1f-4f32-47f9-b3c3-ebfcfed18d08\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps7754\",\r\n \"id\": \"0abebe7e-1a12-4a60-8882-50f720bbfbdd\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps2458\",\r\n \"value\": \"ps7571\",\r\n \"endpointNames\": [\r\n \"ps3913\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bcfd8c3b-0960-436f-9930-c35606e1cdb0" + "d1b8c857-5336-4c7f-abee-7bfb0c3d803d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2370,16 +2484,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11971" ], "x-ms-request-id": [ - "8d0bea44-3ae2-4e45-aa94-fd4d00cc789d" + "6ce4aa4d-b0c7-4866-bc1b-beba17891944" ], "x-ms-correlation-request-id": [ - "8d0bea44-3ae2-4e45-aa94-fd4d00cc789d" + "6ce4aa4d-b0c7-4866-bc1b-beba17891944" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184629Z:8d0bea44-3ae2-4e45-aa94-fd4d00cc789d" + "WESTUS2:20200730T204937Z:6ce4aa4d-b0c7-4866-bc1b-beba17891944" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2388,10 +2502,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:46:28 GMT" + "Thu, 30 Jul 2020 20:49:36 GMT" ], "Content-Length": [ - "2763" + "2761" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2400,23 +2514,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLBxHM=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6275.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net:5671/;SharedAccessKeyName=ps7586;SharedAccessKey=****;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"id\": \"4e82e344-ee11-4642-9987-99a2fd5a3deb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps9994\",\r\n \"id\": \"e674b29f-4530-4bd4-aa99-ad978723a8d6\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps6224\",\r\n \"id\": \"48fa3d2f-191f-42b7-a601-fba21739ef19\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps1506\",\r\n \"value\": \"ps1190\",\r\n \"endpointNames\": [\r\n \"ps9994\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5Y0Lc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4560.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net:5671/;SharedAccessKeyName=ps424;SharedAccessKey=****;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"id\": \"8f32adaf-74ff-48c5-b7ac-858b7e266d40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps3913\",\r\n \"id\": \"a811fa1f-4f32-47f9-b3c3-ebfcfed18d08\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps7754\",\r\n \"id\": \"0abebe7e-1a12-4a60-8882-50f720bbfbdd\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps2458\",\r\n \"value\": \"ps7571\",\r\n \"endpointNames\": [\r\n \"ps3913\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "90bb93cd-c745-486d-84c6-d22e99c87ca8" + "b648064f-ed30-43ed-8ff7-d9965772b141" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2433,16 +2547,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11970" ], "x-ms-request-id": [ - "1a0f4150-c4db-41bb-86e5-da150d6cf7bf" + "386a3d45-ab51-4aff-9517-7d6020218ee5" ], "x-ms-correlation-request-id": [ - "1a0f4150-c4db-41bb-86e5-da150d6cf7bf" + "386a3d45-ab51-4aff-9517-7d6020218ee5" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184630Z:1a0f4150-c4db-41bb-86e5-da150d6cf7bf" + "WESTUS2:20200730T204938Z:386a3d45-ab51-4aff-9517-7d6020218ee5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2451,10 +2565,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:46:29 GMT" + "Thu, 30 Jul 2020 20:49:37 GMT" ], "Content-Length": [ - "2763" + "2761" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2463,23 +2577,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLBxHM=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6275.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net:5671/;SharedAccessKeyName=ps7586;SharedAccessKey=****;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"id\": \"4e82e344-ee11-4642-9987-99a2fd5a3deb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps9994\",\r\n \"id\": \"e674b29f-4530-4bd4-aa99-ad978723a8d6\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps6224\",\r\n \"id\": \"48fa3d2f-191f-42b7-a601-fba21739ef19\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps1506\",\r\n \"value\": \"ps1190\",\r\n \"endpointNames\": [\r\n \"ps9994\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5Y0Lc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4560.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net:5671/;SharedAccessKeyName=ps424;SharedAccessKey=****;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"id\": \"8f32adaf-74ff-48c5-b7ac-858b7e266d40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps3913\",\r\n \"id\": \"a811fa1f-4f32-47f9-b3c3-ebfcfed18d08\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps7754\",\r\n \"id\": \"0abebe7e-1a12-4a60-8882-50f720bbfbdd\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps2458\",\r\n \"value\": \"ps7571\",\r\n \"endpointNames\": [\r\n \"ps3913\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c3aec509-b84c-4fec-9401-d3f254ec9f09" + "845f1cb8-b969-40c9-a81b-eb762a5ee116" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2496,16 +2610,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11969" ], "x-ms-request-id": [ - "672c2eb5-74b2-42d0-99b5-903e0d04b7ef" + "00586e3a-7f0d-4f0e-883f-146d068d85ed" ], "x-ms-correlation-request-id": [ - "672c2eb5-74b2-42d0-99b5-903e0d04b7ef" + "00586e3a-7f0d-4f0e-883f-146d068d85ed" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184631Z:672c2eb5-74b2-42d0-99b5-903e0d04b7ef" + "WESTUS2:20200730T204939Z:00586e3a-7f0d-4f0e-883f-146d068d85ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2514,10 +2628,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:46:31 GMT" + "Thu, 30 Jul 2020 20:49:38 GMT" ], "Content-Length": [ - "2763" + "2761" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2526,23 +2640,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLBxHM=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6275.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net:5671/;SharedAccessKeyName=ps7586;SharedAccessKey=****;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"id\": \"4e82e344-ee11-4642-9987-99a2fd5a3deb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps9994\",\r\n \"id\": \"e674b29f-4530-4bd4-aa99-ad978723a8d6\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps6224\",\r\n \"id\": \"48fa3d2f-191f-42b7-a601-fba21739ef19\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps1506\",\r\n \"value\": \"ps1190\",\r\n \"endpointNames\": [\r\n \"ps9994\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5Y0Lc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4560.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net:5671/;SharedAccessKeyName=ps424;SharedAccessKey=****;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"id\": \"8f32adaf-74ff-48c5-b7ac-858b7e266d40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps3913\",\r\n \"id\": \"a811fa1f-4f32-47f9-b3c3-ebfcfed18d08\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps7754\",\r\n \"id\": \"0abebe7e-1a12-4a60-8882-50f720bbfbdd\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps2458\",\r\n \"value\": \"ps7571\",\r\n \"endpointNames\": [\r\n \"ps3913\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "52c9ea76-8a7c-47c0-b867-bdcea57d4a04" + "ff55d22e-e88e-4ed6-81b4-14fd8da94b81" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2559,16 +2673,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11968" ], "x-ms-request-id": [ - "d636dc80-13b4-4fe9-aced-565f32a71087" + "29113989-90b7-4b2a-9459-f3c07edfbc33" ], "x-ms-correlation-request-id": [ - "d636dc80-13b4-4fe9-aced-565f32a71087" + "29113989-90b7-4b2a-9459-f3c07edfbc33" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184631Z:d636dc80-13b4-4fe9-aced-565f32a71087" + "WESTUS2:20200730T204940Z:29113989-90b7-4b2a-9459-f3c07edfbc33" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2577,10 +2691,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:46:31 GMT" + "Thu, 30 Jul 2020 20:49:39 GMT" ], "Content-Length": [ - "2763" + "2761" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2589,17 +2703,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLBxHM=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6275.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net:5671/;SharedAccessKeyName=ps7586;SharedAccessKey=****;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"id\": \"4e82e344-ee11-4642-9987-99a2fd5a3deb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps9994\",\r\n \"id\": \"e674b29f-4530-4bd4-aa99-ad978723a8d6\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps6224\",\r\n \"id\": \"48fa3d2f-191f-42b7-a601-fba21739ef19\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps1506\",\r\n \"value\": \"ps1190\",\r\n \"endpointNames\": [\r\n \"ps9994\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5Y0Lc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4560.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net:5671/;SharedAccessKeyName=ps424;SharedAccessKey=****;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"id\": \"8f32adaf-74ff-48c5-b7ac-858b7e266d40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps3913\",\r\n \"id\": \"a811fa1f-4f32-47f9-b3c3-ebfcfed18d08\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps7754\",\r\n \"id\": \"0abebe7e-1a12-4a60-8882-50f720bbfbdd\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps2458\",\r\n \"value\": \"ps7571\",\r\n \"endpointNames\": [\r\n \"ps3913\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2616,16 +2730,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11966" ], "x-ms-request-id": [ - "8a72cabf-7e73-4f1e-a69e-9de1788b30d0" + "09df78ab-8bce-4a84-82dc-c84792cc75ca" ], "x-ms-correlation-request-id": [ - "8a72cabf-7e73-4f1e-a69e-9de1788b30d0" + "09df78ab-8bce-4a84-82dc-c84792cc75ca" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184705Z:8a72cabf-7e73-4f1e-a69e-9de1788b30d0" + "WESTUS2:20200730T205015Z:09df78ab-8bce-4a84-82dc-c84792cc75ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2634,10 +2748,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:47:04 GMT" + "Thu, 30 Jul 2020 20:50:14 GMT" ], "Content-Length": [ - "2763" + "2761" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2646,23 +2760,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLBxio=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6275.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net:5671/;SharedAccessKeyName=ps7586;SharedAccessKey=****;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"id\": \"4e82e344-ee11-4642-9987-99a2fd5a3deb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps9994\",\r\n \"id\": \"e674b29f-4530-4bd4-aa99-ad978723a8d6\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps6224\",\r\n \"id\": \"48fa3d2f-191f-42b7-a601-fba21739ef19\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps1506\",\r\n \"value\": \"ps9735\",\r\n \"endpointNames\": [\r\n \"ps9994\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5ZFkc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4560.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net:5671/;SharedAccessKeyName=ps424;SharedAccessKey=****;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"id\": \"8f32adaf-74ff-48c5-b7ac-858b7e266d40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps3913\",\r\n \"id\": \"a811fa1f-4f32-47f9-b3c3-ebfcfed18d08\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps7754\",\r\n \"id\": \"0abebe7e-1a12-4a60-8882-50f720bbfbdd\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps2458\",\r\n \"value\": \"ps4142\",\r\n \"endpointNames\": [\r\n \"ps3913\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "07b5b412-1121-483b-b091-f89eeaa13dda" + "f19ae669-0541-4e6a-817a-7bde0e0c645d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2679,16 +2793,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11965" ], "x-ms-request-id": [ - "e7dc0d1c-8a3e-4197-86ab-d3fee11a3d45" + "f22bb16b-a989-4da3-8024-097c7cdd191f" ], "x-ms-correlation-request-id": [ - "e7dc0d1c-8a3e-4197-86ab-d3fee11a3d45" + "f22bb16b-a989-4da3-8024-097c7cdd191f" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184705Z:e7dc0d1c-8a3e-4197-86ab-d3fee11a3d45" + "WESTUS2:20200730T205015Z:f22bb16b-a989-4da3-8024-097c7cdd191f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2697,10 +2811,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:47:05 GMT" + "Thu, 30 Jul 2020 20:50:14 GMT" ], "Content-Length": [ - "2763" + "2761" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2709,23 +2823,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLBxio=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6275.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net:5671/;SharedAccessKeyName=ps7586;SharedAccessKey=****;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"id\": \"4e82e344-ee11-4642-9987-99a2fd5a3deb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps9994\",\r\n \"id\": \"e674b29f-4530-4bd4-aa99-ad978723a8d6\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps6224\",\r\n \"id\": \"48fa3d2f-191f-42b7-a601-fba21739ef19\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps1506\",\r\n \"value\": \"ps9735\",\r\n \"endpointNames\": [\r\n \"ps9994\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5ZFkc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4560.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net:5671/;SharedAccessKeyName=ps424;SharedAccessKey=****;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"id\": \"8f32adaf-74ff-48c5-b7ac-858b7e266d40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps3913\",\r\n \"id\": \"a811fa1f-4f32-47f9-b3c3-ebfcfed18d08\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps7754\",\r\n \"id\": \"0abebe7e-1a12-4a60-8882-50f720bbfbdd\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps2458\",\r\n \"value\": \"ps4142\",\r\n \"endpointNames\": [\r\n \"ps3913\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4eb8edc0-3abe-4893-aed1-04165b60f08f" + "b7ace12d-28d9-44ae-8e6b-36bf49b9da0a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2742,16 +2856,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11964" ], "x-ms-request-id": [ - "4a56d9a0-d927-40dd-976f-349178a77f65" + "6ef6c7e8-0f6b-4370-9b84-226c5a8175ad" ], "x-ms-correlation-request-id": [ - "4a56d9a0-d927-40dd-976f-349178a77f65" + "6ef6c7e8-0f6b-4370-9b84-226c5a8175ad" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184706Z:4a56d9a0-d927-40dd-976f-349178a77f65" + "WESTUS2:20200730T205016Z:6ef6c7e8-0f6b-4370-9b84-226c5a8175ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2760,10 +2874,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:47:05 GMT" + "Thu, 30 Jul 2020 20:50:15 GMT" ], "Content-Length": [ - "2763" + "2761" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2772,17 +2886,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLBxio=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6275.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net:5671/;SharedAccessKeyName=ps7586;SharedAccessKey=****;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"id\": \"4e82e344-ee11-4642-9987-99a2fd5a3deb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps9994\",\r\n \"id\": \"e674b29f-4530-4bd4-aa99-ad978723a8d6\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps6224\",\r\n \"id\": \"48fa3d2f-191f-42b7-a601-fba21739ef19\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps1506\",\r\n \"value\": \"ps9735\",\r\n \"endpointNames\": [\r\n \"ps9994\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5ZFkc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4560.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net:5671/;SharedAccessKeyName=ps424;SharedAccessKey=****;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"id\": \"8f32adaf-74ff-48c5-b7ac-858b7e266d40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps3913\",\r\n \"id\": \"a811fa1f-4f32-47f9-b3c3-ebfcfed18d08\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps7754\",\r\n \"id\": \"0abebe7e-1a12-4a60-8882-50f720bbfbdd\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps2458\",\r\n \"value\": \"ps4142\",\r\n \"endpointNames\": [\r\n \"ps3913\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2799,16 +2913,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11962" ], "x-ms-request-id": [ - "5a2bec3f-43eb-4752-8265-071a3f0b0059" + "62b4747c-45b6-4f4a-8954-840630395dce" ], "x-ms-correlation-request-id": [ - "5a2bec3f-43eb-4752-8265-071a3f0b0059" + "62b4747c-45b6-4f4a-8954-840630395dce" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184739Z:5a2bec3f-43eb-4752-8265-071a3f0b0059" + "WESTUS2:20200730T205055Z:62b4747c-45b6-4f4a-8954-840630395dce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2817,10 +2931,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:47:39 GMT" + "Thu, 30 Jul 2020 20:50:54 GMT" ], "Content-Length": [ - "2772" + "2770" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2829,23 +2943,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLB1mE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6275.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net:5671/;SharedAccessKeyName=ps7586;SharedAccessKey=****;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"id\": \"4e82e344-ee11-4642-9987-99a2fd5a3deb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps9994\",\r\n \"id\": \"e674b29f-4530-4bd4-aa99-ad978723a8d6\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps6224\",\r\n \"id\": \"48fa3d2f-191f-42b7-a601-fba21739ef19\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps1506\",\r\n \"value\": \"ps9735\",\r\n \"endpointNames\": [\r\n \"ps9994\",\r\n \"ps6224\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5Zzh0=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4560.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net:5671/;SharedAccessKeyName=ps424;SharedAccessKey=****;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"id\": \"8f32adaf-74ff-48c5-b7ac-858b7e266d40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps3913\",\r\n \"id\": \"a811fa1f-4f32-47f9-b3c3-ebfcfed18d08\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps7754\",\r\n \"id\": \"0abebe7e-1a12-4a60-8882-50f720bbfbdd\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps2458\",\r\n \"value\": \"ps4142\",\r\n \"endpointNames\": [\r\n \"ps3913\",\r\n \"ps7754\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dc60ba3f-977c-4f33-8792-8fcd8f8d438c" + "fb5223df-dc12-409f-b3c3-abafa9e98faf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2862,16 +2976,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11961" ], "x-ms-request-id": [ - "d47aa39b-03d9-42ef-93a5-f2e10238164c" + "d8cfa57d-bbd8-4e4e-8c5c-48a29a293387" ], "x-ms-correlation-request-id": [ - "d47aa39b-03d9-42ef-93a5-f2e10238164c" + "d8cfa57d-bbd8-4e4e-8c5c-48a29a293387" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184740Z:d47aa39b-03d9-42ef-93a5-f2e10238164c" + "WESTUS2:20200730T205055Z:d8cfa57d-bbd8-4e4e-8c5c-48a29a293387" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2880,10 +2994,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:47:39 GMT" + "Thu, 30 Jul 2020 20:50:55 GMT" ], "Content-Length": [ - "2772" + "2770" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2892,23 +3006,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLB1mE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6275.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net:5671/;SharedAccessKeyName=ps7586;SharedAccessKey=****;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"id\": \"4e82e344-ee11-4642-9987-99a2fd5a3deb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps9994\",\r\n \"id\": \"e674b29f-4530-4bd4-aa99-ad978723a8d6\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps6224\",\r\n \"id\": \"48fa3d2f-191f-42b7-a601-fba21739ef19\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps1506\",\r\n \"value\": \"ps9735\",\r\n \"endpointNames\": [\r\n \"ps9994\",\r\n \"ps6224\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5Zzh0=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4560.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net:5671/;SharedAccessKeyName=ps424;SharedAccessKey=****;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"id\": \"8f32adaf-74ff-48c5-b7ac-858b7e266d40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps3913\",\r\n \"id\": \"a811fa1f-4f32-47f9-b3c3-ebfcfed18d08\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps7754\",\r\n \"id\": \"0abebe7e-1a12-4a60-8882-50f720bbfbdd\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps2458\",\r\n \"value\": \"ps4142\",\r\n \"endpointNames\": [\r\n \"ps3913\",\r\n \"ps7754\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1cb6b682-4aa5-46a4-8356-548a2c99cf85" + "5c3f9588-ba48-4267-8dfd-317fcc258630" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2925,16 +3039,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11960" ], "x-ms-request-id": [ - "20ca8eb6-c240-4432-a308-1dc2ea543922" + "b0888956-e525-4cb8-89b6-bd5dddc77ebb" ], "x-ms-correlation-request-id": [ - "20ca8eb6-c240-4432-a308-1dc2ea543922" + "b0888956-e525-4cb8-89b6-bd5dddc77ebb" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184741Z:20ca8eb6-c240-4432-a308-1dc2ea543922" + "WESTUS2:20200730T205056Z:b0888956-e525-4cb8-89b6-bd5dddc77ebb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2943,10 +3057,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:47:40 GMT" + "Thu, 30 Jul 2020 20:50:55 GMT" ], "Content-Length": [ - "2772" + "2770" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2955,17 +3069,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLB1mE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6275.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net:5671/;SharedAccessKeyName=ps7586;SharedAccessKey=****;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"id\": \"4e82e344-ee11-4642-9987-99a2fd5a3deb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps9994\",\r\n \"id\": \"e674b29f-4530-4bd4-aa99-ad978723a8d6\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps6224\",\r\n \"id\": \"48fa3d2f-191f-42b7-a601-fba21739ef19\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps1506\",\r\n \"value\": \"ps9735\",\r\n \"endpointNames\": [\r\n \"ps9994\",\r\n \"ps6224\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5Zzh0=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4560.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net:5671/;SharedAccessKeyName=ps424;SharedAccessKey=****;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"id\": \"8f32adaf-74ff-48c5-b7ac-858b7e266d40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps3913\",\r\n \"id\": \"a811fa1f-4f32-47f9-b3c3-ebfcfed18d08\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps7754\",\r\n \"id\": \"0abebe7e-1a12-4a60-8882-50f720bbfbdd\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"ps2458\",\r\n \"value\": \"ps4142\",\r\n \"endpointNames\": [\r\n \"ps3913\",\r\n \"ps7754\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2982,16 +3096,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" + "11958" ], "x-ms-request-id": [ - "63a9ce40-463c-447c-a823-858124937859" + "9828170c-4518-4b91-80df-99eddcd37f11" ], "x-ms-correlation-request-id": [ - "63a9ce40-463c-447c-a823-858124937859" + "9828170c-4518-4b91-80df-99eddcd37f11" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184814Z:63a9ce40-463c-447c-a823-858124937859" + "WESTUS2:20200730T205130Z:9828170c-4518-4b91-80df-99eddcd37f11" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3000,10 +3114,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:48:14 GMT" + "Thu, 30 Jul 2020 20:51:30 GMT" ], "Content-Length": [ - "2703" + "2701" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3012,23 +3126,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLB5lE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6275.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net:5671/;SharedAccessKeyName=ps7586;SharedAccessKey=****;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"id\": \"4e82e344-ee11-4642-9987-99a2fd5a3deb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps9994\",\r\n \"id\": \"e674b29f-4530-4bd4-aa99-ad978723a8d6\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps6224\",\r\n \"id\": \"48fa3d2f-191f-42b7-a601-fba21739ef19\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5bKSc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4560.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net:5671/;SharedAccessKeyName=ps424;SharedAccessKey=****;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"id\": \"8f32adaf-74ff-48c5-b7ac-858b7e266d40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps3913\",\r\n \"id\": \"a811fa1f-4f32-47f9-b3c3-ebfcfed18d08\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps7754\",\r\n \"id\": \"0abebe7e-1a12-4a60-8882-50f720bbfbdd\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4be6befe-03ce-43d3-98bc-9253343713b9" + "f780ae56-d847-4376-8715-d0ce86257588" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3045,16 +3159,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" + "11957" ], "x-ms-request-id": [ - "f2ab289e-1223-4334-a0ea-a52af5b34a1f" + "4a0ab011-7268-4d5a-a252-23b067109313" ], "x-ms-correlation-request-id": [ - "f2ab289e-1223-4334-a0ea-a52af5b34a1f" + "4a0ab011-7268-4d5a-a252-23b067109313" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184815Z:f2ab289e-1223-4334-a0ea-a52af5b34a1f" + "WESTUS2:20200730T205131Z:4a0ab011-7268-4d5a-a252-23b067109313" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3063,10 +3177,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:48:14 GMT" + "Thu, 30 Jul 2020 20:51:30 GMT" ], "Content-Length": [ - "2703" + "2701" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3075,17 +3189,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLB5lE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6275.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net:5671/;SharedAccessKeyName=ps7586;SharedAccessKey=****;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"id\": \"4e82e344-ee11-4642-9987-99a2fd5a3deb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps9994\",\r\n \"id\": \"e674b29f-4530-4bd4-aa99-ad978723a8d6\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps6224\",\r\n \"id\": \"48fa3d2f-191f-42b7-a601-fba21739ef19\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5bKSc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4560.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net:5671/;SharedAccessKeyName=ps424;SharedAccessKey=****;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"id\": \"8f32adaf-74ff-48c5-b7ac-858b7e266d40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps3913\",\r\n \"id\": \"a811fa1f-4f32-47f9-b3c3-ebfcfed18d08\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps7754\",\r\n \"id\": \"0abebe7e-1a12-4a60-8882-50f720bbfbdd\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3102,16 +3216,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11953" ], "x-ms-request-id": [ - "2e10ae75-4eb2-4eb6-9df0-cf68021b6e32" + "f821b056-d15c-4665-99b4-f139694548a0" ], "x-ms-correlation-request-id": [ - "2e10ae75-4eb2-4eb6-9df0-cf68021b6e32" + "f821b056-d15c-4665-99b4-f139694548a0" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184848Z:2e10ae75-4eb2-4eb6-9df0-cf68021b6e32" + "WESTUS2:20200730T205305Z:f821b056-d15c-4665-99b4-f139694548a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3120,10 +3234,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:48:47 GMT" + "Thu, 30 Jul 2020 20:53:04 GMT" ], "Content-Length": [ - "2238" + "2236" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3132,23 +3246,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLCBe4=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6275.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net:5671/;SharedAccessKeyName=ps7586;SharedAccessKey=****;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"id\": \"4e82e344-ee11-4642-9987-99a2fd5a3deb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps6224\",\r\n \"id\": \"48fa3d2f-191f-42b7-a601-fba21739ef19\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5bfKo=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4560.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net:5671/;SharedAccessKeyName=ps424;SharedAccessKey=****;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"id\": \"8f32adaf-74ff-48c5-b7ac-858b7e266d40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps7754\",\r\n \"id\": \"0abebe7e-1a12-4a60-8882-50f720bbfbdd\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9429613-10f4-4b66-87c5-b7d0a587b9e8" + "dda445b4-590d-4a44-a638-91bdcf7cefb4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3165,16 +3279,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" + "11952" ], "x-ms-request-id": [ - "26bdde0c-f05a-492c-b861-bdec2ff7067e" + "7d6a192e-56c7-4d81-b0a7-2c5c300fdd3d" ], "x-ms-correlation-request-id": [ - "26bdde0c-f05a-492c-b861-bdec2ff7067e" + "7d6a192e-56c7-4d81-b0a7-2c5c300fdd3d" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184848Z:26bdde0c-f05a-492c-b861-bdec2ff7067e" + "WESTUS2:20200730T205305Z:7d6a192e-56c7-4d81-b0a7-2c5c300fdd3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3183,10 +3297,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:48:47 GMT" + "Thu, 30 Jul 2020 20:53:05 GMT" ], "Content-Length": [ - "2238" + "2236" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3195,17 +3309,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLCBe4=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6275.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net:5671/;SharedAccessKeyName=ps7586;SharedAccessKey=****;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"id\": \"4e82e344-ee11-4642-9987-99a2fd5a3deb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps6224\",\r\n \"id\": \"48fa3d2f-191f-42b7-a601-fba21739ef19\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5bfKo=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4560.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net:5671/;SharedAccessKeyName=ps424;SharedAccessKey=****;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"id\": \"8f32adaf-74ff-48c5-b7ac-858b7e266d40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps7754\",\r\n \"id\": \"0abebe7e-1a12-4a60-8882-50f720bbfbdd\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3222,16 +3336,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" + "11949" ], "x-ms-request-id": [ - "bdc0dac2-7ed6-4381-b31a-d913eaa43417" + "03ad728e-ec58-4c1b-a4e2-24ed95ed6b66" ], "x-ms-correlation-request-id": [ - "bdc0dac2-7ed6-4381-b31a-d913eaa43417" + "03ad728e-ec58-4c1b-a4e2-24ed95ed6b66" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184921Z:bdc0dac2-7ed6-4381-b31a-d913eaa43417" + "WESTUS2:20200730T205409Z:03ad728e-ec58-4c1b-a4e2-24ed95ed6b66" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3240,10 +3354,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:49:21 GMT" + "Thu, 30 Jul 2020 20:54:09 GMT" ], "Content-Length": [ - "1774" + "1772" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3252,23 +3366,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLCTws=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6275.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net:5671/;SharedAccessKeyName=ps7586;SharedAccessKey=****;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"id\": \"4e82e344-ee11-4642-9987-99a2fd5a3deb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5eRBM=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4560.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net:5671/;SharedAccessKeyName=ps424;SharedAccessKey=****;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"id\": \"8f32adaf-74ff-48c5-b7ac-858b7e266d40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e8d61d10-379e-43c3-8664-4a3a1f2d9391" + "95089eea-6caf-42d0-9328-e8d4173e9277" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3285,16 +3399,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" + "11948" ], "x-ms-request-id": [ - "f806a59f-5e5b-4a0c-93a5-5e8e13348c78" + "f545252d-9be9-44ba-a3e8-fd1edf4c8325" ], "x-ms-correlation-request-id": [ - "f806a59f-5e5b-4a0c-93a5-5e8e13348c78" + "f545252d-9be9-44ba-a3e8-fd1edf4c8325" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184922Z:f806a59f-5e5b-4a0c-93a5-5e8e13348c78" + "WESTUS2:20200730T205410Z:f545252d-9be9-44ba-a3e8-fd1edf4c8325" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3303,10 +3417,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:49:22 GMT" + "Thu, 30 Jul 2020 20:54:09 GMT" ], "Content-Length": [ - "1774" + "1772" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3315,23 +3429,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLCTws=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6275.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net:5671/;SharedAccessKeyName=ps7586;SharedAccessKey=****;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"id\": \"4e82e344-ee11-4642-9987-99a2fd5a3deb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5eRBM=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4560.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net:5671/;SharedAccessKeyName=ps424;SharedAccessKey=****;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"id\": \"8f32adaf-74ff-48c5-b7ac-858b7e266d40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1e42cd99-f216-4cf4-802e-60758f0d0aed" + "be070831-dc61-4405-bb2f-27b1cb3dcbb8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3348,16 +3462,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" + "11947" ], "x-ms-request-id": [ - "962fa122-9e52-4469-8623-7d815df2cd10" + "e7ee4f65-6c08-4fbf-b635-47709f511be7" ], "x-ms-correlation-request-id": [ - "962fa122-9e52-4469-8623-7d815df2cd10" + "e7ee4f65-6c08-4fbf-b635-47709f511be7" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184923Z:962fa122-9e52-4469-8623-7d815df2cd10" + "WESTUS2:20200730T205410Z:e7ee4f65-6c08-4fbf-b635-47709f511be7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3366,10 +3480,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:49:22 GMT" + "Thu, 30 Jul 2020 20:54:10 GMT" ], "Content-Length": [ - "1774" + "1772" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3378,23 +3492,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLCTws=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6275.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net:5671/;SharedAccessKeyName=ps7586;SharedAccessKey=****;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"id\": \"4e82e344-ee11-4642-9987-99a2fd5a3deb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5eRBM=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4560.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net:5671/;SharedAccessKeyName=ps424;SharedAccessKey=****;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"id\": \"8f32adaf-74ff-48c5-b7ac-858b7e266d40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c62fc5d1-ceff-44cb-925b-99b246855e08" + "d4aedb86-ecbd-4c69-84f4-63a8a7943cee" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3411,16 +3525,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" + "11946" ], "x-ms-request-id": [ - "764577d9-4340-40d5-8461-822e5dfbdbf4" + "7272fd78-1508-45b5-9a81-20dbfc504ef7" ], "x-ms-correlation-request-id": [ - "764577d9-4340-40d5-8461-822e5dfbdbf4" + "7272fd78-1508-45b5-9a81-20dbfc504ef7" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184923Z:764577d9-4340-40d5-8461-822e5dfbdbf4" + "WESTUS2:20200730T205411Z:7272fd78-1508-45b5-9a81-20dbfc504ef7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3429,10 +3543,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:49:23 GMT" + "Thu, 30 Jul 2020 20:54:10 GMT" ], "Content-Length": [ - "1774" + "1772" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3441,17 +3555,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLCTws=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6275.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net:5671/;SharedAccessKeyName=ps7586;SharedAccessKey=****;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"id\": \"4e82e344-ee11-4642-9987-99a2fd5a3deb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5eRBM=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4560.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net:5671/;SharedAccessKeyName=ps424;SharedAccessKey=****;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"id\": \"8f32adaf-74ff-48c5-b7ac-858b7e266d40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3468,16 +3582,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11951" + "11944" ], "x-ms-request-id": [ - "3548fb53-aff6-4eda-94d1-a2a292963ae0" + "719bddf7-ab76-42d0-9dc2-7fb6bd2d812d" ], "x-ms-correlation-request-id": [ - "3548fb53-aff6-4eda-94d1-a2a292963ae0" + "719bddf7-ab76-42d0-9dc2-7fb6bd2d812d" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184956Z:3548fb53-aff6-4eda-94d1-a2a292963ae0" + "WESTUS2:20200730T205445Z:719bddf7-ab76-42d0-9dc2-7fb6bd2d812d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3486,10 +3600,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:49:56 GMT" + "Thu, 30 Jul 2020 20:54:45 GMT" ], "Content-Length": [ - "1862" + "1860" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3498,23 +3612,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLCXpk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6275.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net:5671/;SharedAccessKeyName=ps7586;SharedAccessKey=****;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"id\": \"4e82e344-ee11-4642-9987-99a2fd5a3deb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [\r\n {\r\n \"name\": \"ps2278\",\r\n \"source\": \"DeviceMessages\",\r\n \"endpointNames\": [\r\n \"ps9541\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5e9Bo=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4560.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net:5671/;SharedAccessKeyName=ps424;SharedAccessKey=****;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"id\": \"8f32adaf-74ff-48c5-b7ac-858b7e266d40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [\r\n {\r\n \"name\": \"ps2715\",\r\n \"source\": \"DeviceMessages\",\r\n \"endpointNames\": [\r\n \"ps5242\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "968ac587-04bc-4c37-9bdf-c2784fbfd69a" + "fa7a9253-9ebc-405e-99cb-bd2fc9ed017a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3531,16 +3645,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11950" + "11943" ], "x-ms-request-id": [ - "8a5e974e-5c45-44a2-af81-2fab355b825b" + "31c680f4-1b88-45d8-a910-46cf530f3485" ], "x-ms-correlation-request-id": [ - "8a5e974e-5c45-44a2-af81-2fab355b825b" + "31c680f4-1b88-45d8-a910-46cf530f3485" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184957Z:8a5e974e-5c45-44a2-af81-2fab355b825b" + "WESTUS2:20200730T205445Z:31c680f4-1b88-45d8-a910-46cf530f3485" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3549,10 +3663,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:49:57 GMT" + "Thu, 30 Jul 2020 20:54:45 GMT" ], "Content-Length": [ - "1862" + "1860" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3561,23 +3675,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLCXpk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6275.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net:5671/;SharedAccessKeyName=ps7586;SharedAccessKey=****;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"id\": \"4e82e344-ee11-4642-9987-99a2fd5a3deb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [\r\n {\r\n \"name\": \"ps2278\",\r\n \"source\": \"DeviceMessages\",\r\n \"endpointNames\": [\r\n \"ps9541\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5e9Bo=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4560.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net:5671/;SharedAccessKeyName=ps424;SharedAccessKey=****;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"id\": \"8f32adaf-74ff-48c5-b7ac-858b7e266d40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [\r\n {\r\n \"name\": \"ps2715\",\r\n \"source\": \"DeviceMessages\",\r\n \"endpointNames\": [\r\n \"ps5242\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c97f1c9f-57ed-44f7-a523-bf3298d54b32" + "a20fc249-dc60-446c-825d-51c4b63db441" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3594,16 +3708,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11949" + "11942" ], "x-ms-request-id": [ - "af4dd493-be98-40ce-ae93-af31bb722b00" + "663a0fc4-01c2-4a24-ae31-107100f84218" ], "x-ms-correlation-request-id": [ - "af4dd493-be98-40ce-ae93-af31bb722b00" + "663a0fc4-01c2-4a24-ae31-107100f84218" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184957Z:af4dd493-be98-40ce-ae93-af31bb722b00" + "WESTUS2:20200730T205446Z:663a0fc4-01c2-4a24-ae31-107100f84218" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3612,10 +3726,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:49:57 GMT" + "Thu, 30 Jul 2020 20:54:46 GMT" ], "Content-Length": [ - "1862" + "1860" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3624,23 +3738,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLCXpk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6275.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net:5671/;SharedAccessKeyName=ps7586;SharedAccessKey=****;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"id\": \"4e82e344-ee11-4642-9987-99a2fd5a3deb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [\r\n {\r\n \"name\": \"ps2278\",\r\n \"source\": \"DeviceMessages\",\r\n \"endpointNames\": [\r\n \"ps9541\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5e9Bo=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4560.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net:5671/;SharedAccessKeyName=ps424;SharedAccessKey=****;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"id\": \"8f32adaf-74ff-48c5-b7ac-858b7e266d40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [\r\n {\r\n \"name\": \"ps2715\",\r\n \"source\": \"DeviceMessages\",\r\n \"endpointNames\": [\r\n \"ps5242\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "85d9fa1f-0017-45d6-9df2-dd501da2b862" + "1199ee53-d8c2-41fe-acc8-21fa30703e5f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3657,16 +3771,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11948" + "11941" ], "x-ms-request-id": [ - "025f9100-7171-438c-8bab-ee161575f631" + "b2fecee8-b233-420f-b552-3711f7eefa44" ], "x-ms-correlation-request-id": [ - "025f9100-7171-438c-8bab-ee161575f631" + "b2fecee8-b233-420f-b552-3711f7eefa44" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184958Z:025f9100-7171-438c-8bab-ee161575f631" + "WESTUS2:20200730T205447Z:b2fecee8-b233-420f-b552-3711f7eefa44" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3675,10 +3789,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:49:58 GMT" + "Thu, 30 Jul 2020 20:54:46 GMT" ], "Content-Length": [ - "1862" + "1860" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3687,17 +3801,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLCXpk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6275.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net:5671/;SharedAccessKeyName=ps7586;SharedAccessKey=****;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"id\": \"4e82e344-ee11-4642-9987-99a2fd5a3deb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [\r\n {\r\n \"name\": \"ps2278\",\r\n \"source\": \"DeviceMessages\",\r\n \"endpointNames\": [\r\n \"ps9541\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5e9Bo=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4560.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net:5671/;SharedAccessKeyName=ps424;SharedAccessKey=****;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"id\": \"8f32adaf-74ff-48c5-b7ac-858b7e266d40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [\r\n {\r\n \"name\": \"ps2715\",\r\n \"source\": \"DeviceMessages\",\r\n \"endpointNames\": [\r\n \"ps5242\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3714,16 +3828,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11946" + "11939" ], "x-ms-request-id": [ - "0f089ca3-ef77-41fb-8965-1b9da5b15ded" + "aae23975-6058-48be-b435-ca7f711e4dd1" ], "x-ms-correlation-request-id": [ - "0f089ca3-ef77-41fb-8965-1b9da5b15ded" + "aae23975-6058-48be-b435-ca7f711e4dd1" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T185031Z:0f089ca3-ef77-41fb-8965-1b9da5b15ded" + "WESTUS2:20200730T205520Z:aae23975-6058-48be-b435-ca7f711e4dd1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3732,10 +3846,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:50:31 GMT" + "Thu, 30 Jul 2020 20:55:19 GMT" ], "Content-Length": [ - "1882" + "1880" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3744,23 +3858,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLCisE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6275.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net:5671/;SharedAccessKeyName=ps7586;SharedAccessKey=****;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"id\": \"4e82e344-ee11-4642-9987-99a2fd5a3deb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [\r\n {\r\n \"name\": \"ps2278\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"ps9541\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5frEg=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4560.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net:5671/;SharedAccessKeyName=ps424;SharedAccessKey=****;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"id\": \"8f32adaf-74ff-48c5-b7ac-858b7e266d40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [\r\n {\r\n \"name\": \"ps2715\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"ps5242\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "079f0a79-37f6-4db7-8664-2e9b2e205ad7" + "b3d939d9-d2af-4c3b-92f0-29c5b035c7bf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3777,16 +3891,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11945" + "11938" ], "x-ms-request-id": [ - "2c477449-cae4-4db7-8a77-47d9ec054b1c" + "cee53972-f0a7-4d9d-b948-6e2189131e4b" ], "x-ms-correlation-request-id": [ - "2c477449-cae4-4db7-8a77-47d9ec054b1c" + "cee53972-f0a7-4d9d-b948-6e2189131e4b" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T185032Z:2c477449-cae4-4db7-8a77-47d9ec054b1c" + "WESTUS2:20200730T205521Z:cee53972-f0a7-4d9d-b948-6e2189131e4b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3795,10 +3909,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:50:31 GMT" + "Thu, 30 Jul 2020 20:55:20 GMT" ], "Content-Length": [ - "1882" + "1880" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3807,23 +3921,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLCisE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6275.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net:5671/;SharedAccessKeyName=ps7586;SharedAccessKey=****;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"id\": \"4e82e344-ee11-4642-9987-99a2fd5a3deb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [\r\n {\r\n \"name\": \"ps2278\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"ps9541\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5frEg=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4560.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net:5671/;SharedAccessKeyName=ps424;SharedAccessKey=****;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"id\": \"8f32adaf-74ff-48c5-b7ac-858b7e266d40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [\r\n {\r\n \"name\": \"ps2715\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"ps5242\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ec746bcd-9fa0-4436-9487-220ef7ffc90a" + "079ecd36-1a47-4a26-915a-f9bbaa4cf652" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3840,16 +3954,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11944" + "11937" ], "x-ms-request-id": [ - "40e83cab-35b1-4ded-a13d-fab1e774a5bb" + "a13f0019-864f-496f-805c-9a146cb70656" ], "x-ms-correlation-request-id": [ - "40e83cab-35b1-4ded-a13d-fab1e774a5bb" + "a13f0019-864f-496f-805c-9a146cb70656" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T185032Z:40e83cab-35b1-4ded-a13d-fab1e774a5bb" + "WESTUS2:20200730T205521Z:a13f0019-864f-496f-805c-9a146cb70656" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3858,10 +3972,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:50:32 GMT" + "Thu, 30 Jul 2020 20:55:20 GMT" ], "Content-Length": [ - "1882" + "1880" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3870,23 +3984,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLCisE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6275.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net:5671/;SharedAccessKeyName=ps7586;SharedAccessKey=****;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"id\": \"4e82e344-ee11-4642-9987-99a2fd5a3deb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [\r\n {\r\n \"name\": \"ps2278\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"ps9541\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5frEg=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4560.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net:5671/;SharedAccessKeyName=ps424;SharedAccessKey=****;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"id\": \"8f32adaf-74ff-48c5-b7ac-858b7e266d40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [\r\n {\r\n \"name\": \"ps2715\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"ps5242\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f4ce06e6-c28a-45da-ad1d-263313cda0e4" + "c4b37965-7746-4390-a430-7dbd0480619a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3903,16 +4017,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11943" + "11936" ], "x-ms-request-id": [ - "0e2b5d24-9480-488e-95c0-76c5db563c66" + "5318bae3-bd50-4dc9-b6aa-e4f57aa103cd" ], "x-ms-correlation-request-id": [ - "0e2b5d24-9480-488e-95c0-76c5db563c66" + "5318bae3-bd50-4dc9-b6aa-e4f57aa103cd" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T185034Z:0e2b5d24-9480-488e-95c0-76c5db563c66" + "WESTUS2:20200730T205522Z:5318bae3-bd50-4dc9-b6aa-e4f57aa103cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3921,10 +4035,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:50:33 GMT" + "Thu, 30 Jul 2020 20:55:21 GMT" ], "Content-Length": [ - "1882" + "1880" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3933,17 +4047,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLCisE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6275.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net:5671/;SharedAccessKeyName=ps7586;SharedAccessKey=****;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"id\": \"4e82e344-ee11-4642-9987-99a2fd5a3deb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [\r\n {\r\n \"name\": \"ps2278\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"ps9541\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5frEg=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4560.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net:5671/;SharedAccessKeyName=ps424;SharedAccessKey=****;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"id\": \"8f32adaf-74ff-48c5-b7ac-858b7e266d40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [\r\n {\r\n \"name\": \"ps2715\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"ps5242\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3960,16 +4074,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11941" + "11934" ], "x-ms-request-id": [ - "392dae0a-d241-4a39-bdad-20e32d467e72" + "866ad881-04a5-482d-bd1a-1adca300e1b1" ], "x-ms-correlation-request-id": [ - "392dae0a-d241-4a39-bdad-20e32d467e72" + "866ad881-04a5-482d-bd1a-1adca300e1b1" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T185107Z:392dae0a-d241-4a39-bdad-20e32d467e72" + "WESTUS2:20200730T205556Z:866ad881-04a5-482d-bd1a-1adca300e1b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3978,10 +4092,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:51:06 GMT" + "Thu, 30 Jul 2020 20:55:56 GMT" ], "Content-Length": [ - "1774" + "1772" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3990,23 +4104,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLCt3c=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6275.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net:5671/;SharedAccessKeyName=ps7586;SharedAccessKey=****;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"id\": \"4e82e344-ee11-4642-9987-99a2fd5a3deb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5f/1I=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4560.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net:5671/;SharedAccessKeyName=ps424;SharedAccessKey=****;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"id\": \"8f32adaf-74ff-48c5-b7ac-858b7e266d40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d413fae8-17e1-4c25-a7d7-e6d1848c9b5d" + "e962f75e-4eff-43d0-bf99-803a47a44a07" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -4023,16 +4137,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11940" + "11933" ], "x-ms-request-id": [ - "e209b1fc-8436-49ff-a872-75fbfef9e61c" + "38c9c619-fa7b-442c-9b51-0db98d6eb62c" ], "x-ms-correlation-request-id": [ - "e209b1fc-8436-49ff-a872-75fbfef9e61c" + "38c9c619-fa7b-442c-9b51-0db98d6eb62c" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T185107Z:e209b1fc-8436-49ff-a872-75fbfef9e61c" + "WESTUS2:20200730T205557Z:38c9c619-fa7b-442c-9b51-0db98d6eb62c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4041,10 +4155,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:51:07 GMT" + "Thu, 30 Jul 2020 20:55:56 GMT" ], "Content-Length": [ - "1774" + "1772" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4053,17 +4167,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLCt3c=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6275.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net:5671/;SharedAccessKeyName=ps7586;SharedAccessKey=****;EntityPath=ps3103\",\r\n \"name\": \"ps9541\",\r\n \"id\": \"4e82e344-ee11-4642-9987-99a2fd5a3deb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps7625\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5f/1I=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4560.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net:5671/;SharedAccessKeyName=ps424;SharedAccessKey=****;EntityPath=ps6509\",\r\n \"name\": \"ps5242\",\r\n \"id\": \"8f32adaf-74ff-48c5-b7ac-858b7e266d40\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps3206\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -4080,16 +4194,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11938" + "11930" ], "x-ms-request-id": [ - "37fc6ee2-7517-4491-8394-8324ad335161" + "49de712a-7d75-4648-bdb4-7e4accf24a17" ], "x-ms-correlation-request-id": [ - "37fc6ee2-7517-4491-8394-8324ad335161" + "49de712a-7d75-4648-bdb4-7e4accf24a17" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T185140Z:37fc6ee2-7517-4491-8394-8324ad335161" + "WESTUS2:20200730T205701Z:49de712a-7d75-4648-bdb4-7e4accf24a17" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4098,7 +4212,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:51:40 GMT" + "Thu, 30 Jul 2020 20:57:00 GMT" ], "Content-Length": [ "1489" @@ -4110,23 +4224,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275\",\r\n \"name\": \"ps6275\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps7625\",\r\n \"etag\": \"AAAAABLC1aQ=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6275.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6275\",\r\n \"endpoint\": \"sb://iothub-ns-ps6275-3639527-c567e1aa7c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560\",\r\n \"name\": \"ps4560\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps3206\",\r\n \"etag\": \"AAAAAJ5gUas=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4560.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4560\",\r\n \"endpoint\": \"sb://iothub-ns-ps4560-3949383-fd6fa25476.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.EventHub/namespaces/eventHub6849?api-version=2018-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWI2ODQ5P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.EventHub/namespaces/eventHub637?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWI2Mzc/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US 2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "18fef5e6-9ea7-4fe8-b5da-456dc289e4c1" + "b5d959d5-a375-47ca-a14e-6f7be4442ce3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.0.0" @@ -4146,7 +4260,7 @@ "no-cache" ], "x-ms-request-id": [ - "6710727e-cc47-4bb1-80b1-72f101df4561_M7CH3_M7CH3" + "a41fb44a-000a-4a70-b5f4-a3bb8b26e11c_M3CH3_M3CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" @@ -4159,10 +4273,10 @@ "49" ], "x-ms-correlation-request-id": [ - "da29196f-3935-4b6f-8fa0-cd202f156168" + "1557ea46-0099-4857-8ae3-6cdbc9c6301a" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184249Z:da29196f-3935-4b6f-8fa0-cd202f156168" + "WESTUS2:20200730T204454Z:1557ea46-0099-4857-8ae3-6cdbc9c6301a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4171,10 +4285,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:42:49 GMT" + "Thu, 30 Jul 2020 20:44:53 GMT" ], "Content-Length": [ - "664" + "660" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4183,17 +4297,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.EventHub/namespaces/eventHub6849\",\r\n \"name\": \"eventHub6849\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"91d12660-3dec-467a-be2a-213b5544ddc0:eventhub6849\",\r\n \"createdAt\": \"2020-06-16T18:42:44.133Z\",\r\n \"updatedAt\": \"2020-06-16T18:42:44.133Z\",\r\n \"serviceBusEndpoint\": \"https://eventHub6849.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.EventHub/namespaces/eventHub637\",\r\n \"name\": \"eventHub637\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"91d12660-3dec-467a-be2a-213b5544ddc0:eventhub637\",\r\n \"createdAt\": \"2020-07-30T20:44:50.163Z\",\r\n \"updatedAt\": \"2020-07-30T20:44:50.163Z\",\r\n \"serviceBusEndpoint\": \"https://eventHub637.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.EventHub/namespaces/eventHub6849?api-version=2018-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWI2ODQ5P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.EventHub/namespaces/eventHub637?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWI2Mzc/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.0.0" @@ -4207,7 +4321,7 @@ "no-cache" ], "x-ms-request-id": [ - "c95621ec-4a3d-4dbd-8930-42361d533492_M7CH3_M7CH3" + "3b3fc36f-5a85-4c1d-a3a5-cc4493c45a52_M3CH3_M3CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" @@ -4220,10 +4334,10 @@ "11999" ], "x-ms-correlation-request-id": [ - "727e24c0-32fd-42ff-baa2-6c097cf57342" + "476d0462-c215-49c0-9a60-9094aa7344cd" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184319Z:727e24c0-32fd-42ff-baa2-6c097cf57342" + "WESTUS2:20200730T204524Z:476d0462-c215-49c0-9a60-9094aa7344cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4232,10 +4346,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:43:18 GMT" + "Thu, 30 Jul 2020 20:45:23 GMT" ], "Content-Length": [ - "664" + "660" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4244,17 +4358,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.EventHub/namespaces/eventHub6849\",\r\n \"name\": \"eventHub6849\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"91d12660-3dec-467a-be2a-213b5544ddc0:eventhub6849\",\r\n \"createdAt\": \"2020-06-16T18:42:44.133Z\",\r\n \"updatedAt\": \"2020-06-16T18:42:44.133Z\",\r\n \"serviceBusEndpoint\": \"https://eventHub6849.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.EventHub/namespaces/eventHub637\",\r\n \"name\": \"eventHub637\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"91d12660-3dec-467a-be2a-213b5544ddc0:eventhub637\",\r\n \"createdAt\": \"2020-07-30T20:44:50.163Z\",\r\n \"updatedAt\": \"2020-07-30T20:44:50.163Z\",\r\n \"serviceBusEndpoint\": \"https://eventHub637.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.EventHub/namespaces/eventHub6849?api-version=2018-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWI2ODQ5P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.EventHub/namespaces/eventHub637?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWI2Mzc/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.0.0" @@ -4268,7 +4382,7 @@ "no-cache" ], "x-ms-request-id": [ - "b9f2a90b-4b30-4611-bc1c-9c31bea93c26_M7CH3_M7CH3" + "8f7da328-195e-4d6d-b857-80432697c585_M3CH3_M3CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" @@ -4281,10 +4395,10 @@ "11998" ], "x-ms-correlation-request-id": [ - "3eb17fa9-d203-4602-9e42-455fefd8e9d3" + "85c10fee-63fc-4b08-b405-53793bf65b67" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184349Z:3eb17fa9-d203-4602-9e42-455fefd8e9d3" + "WESTUS2:20200730T204554Z:85c10fee-63fc-4b08-b405-53793bf65b67" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4293,10 +4407,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:43:49 GMT" + "Thu, 30 Jul 2020 20:45:54 GMT" ], "Content-Length": [ - "662" + "658" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4305,23 +4419,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.EventHub/namespaces/eventHub6849\",\r\n \"name\": \"eventHub6849\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"91d12660-3dec-467a-be2a-213b5544ddc0:eventhub6849\",\r\n \"createdAt\": \"2020-06-16T18:42:44.133Z\",\r\n \"updatedAt\": \"2020-06-16T18:43:37.483Z\",\r\n \"serviceBusEndpoint\": \"https://eventHub6849.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.EventHub/namespaces/eventHub637\",\r\n \"name\": \"eventHub637\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"91d12660-3dec-467a-be2a-213b5544ddc0:eventhub637\",\r\n \"createdAt\": \"2020-07-30T20:44:50.163Z\",\r\n \"updatedAt\": \"2020-07-30T20:45:39.697Z\",\r\n \"serviceBusEndpoint\": \"https://eventHub637.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.EventHub/namespaces/eventHub6849/eventhubs/ps3103?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWI2ODQ5L2V2ZW50aHVicy9wczMxMDM/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.EventHub/namespaces/eventHub637/eventhubs/ps6509?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWI2MzcvZXZlbnRodWJzL3BzNjUwOT9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"messageRetentionInDays\": 3,\r\n \"partitionCount\": 2\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "84a87423-1269-4e4b-8666-8653888bb050" + "151c8637-e1b9-48ac-bb06-73d2bdba364c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.0.0" @@ -4341,7 +4455,7 @@ "no-cache" ], "x-ms-request-id": [ - "64701100-19b2-451f-a182-6f9798e0a3bf_M7CH3_M7CH3" + "122ca505-e48e-4582-8140-47445fe174b2_M3CH3_M3CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" @@ -4354,10 +4468,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "59e83fa8-426e-4704-a47c-4b29fb6fc909" + "664a06e5-003e-4bc0-bf13-0c1cac159d77" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184407Z:59e83fa8-426e-4704-a47c-4b29fb6fc909" + "WESTUS2:20200730T204612Z:664a06e5-003e-4bc0-bf13-0c1cac159d77" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4366,7 +4480,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:44:06 GMT" + "Thu, 30 Jul 2020 20:46:11 GMT" ], "Content-Length": [ "421" @@ -4378,23 +4492,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.EventHub/namespaces/eventHub6849/eventhubs/ps3103\",\r\n \"name\": \"ps3103\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"West US 2\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 3,\r\n \"partitionCount\": 2,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2020-06-16T18:44:06.413Z\",\r\n \"updatedAt\": \"2020-06-16T18:44:06.82Z\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\"\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.EventHub/namespaces/eventHub637/eventhubs/ps6509\",\r\n \"name\": \"ps6509\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"West US 2\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 3,\r\n \"partitionCount\": 2,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2020-07-30T20:46:11.633Z\",\r\n \"updatedAt\": \"2020-07-30T20:46:11.883Z\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\"\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.EventHub/namespaces/eventHub6849/eventhubs/ps3103/authorizationRules/ps7586?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWI2ODQ5L2V2ZW50aHVicy9wczMxMDMvYXV0aG9yaXphdGlvblJ1bGVzL3BzNzU4Nj9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.EventHub/namespaces/eventHub637/eventhubs/ps6509/authorizationRules/ps424?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWI2MzcvZXZlbnRodWJzL3BzNjUwOS9hdXRob3JpemF0aW9uUnVsZXMvcHM0MjQ/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2408ab33-98bb-4aaf-bed1-b007993bcd51" + "bd45d1b7-fe59-4b47-b688-be05d384f37b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.0.0" @@ -4414,7 +4528,7 @@ "no-cache" ], "x-ms-request-id": [ - "45ce23e5-4f84-4eb2-a641-a61db1587462_M7CH3_M7CH3" + "718bc1d1-ab97-47ea-9c57-4d314f485f6e_M3CH3_M3CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" @@ -4427,10 +4541,10 @@ "1198" ], "x-ms-correlation-request-id": [ - "c51acc2f-6a3c-4c48-abff-0201a3380095" + "c71de6f1-bff2-4717-b37f-d3d9ca1153b4" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184407Z:c51acc2f-6a3c-4c48-abff-0201a3380095" + "WESTUS2:20200730T204613Z:c71de6f1-bff2-4717-b37f-d3d9ca1153b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4439,10 +4553,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:44:07 GMT" + "Thu, 30 Jul 2020 20:46:12 GMT" ], "Content-Length": [ - "327" + "324" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4451,23 +4565,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.EventHub/namespaces/eventHub6849/eventhubs/ps3103/authorizationRules/ps7586\",\r\n \"name\": \"ps7586\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/AuthorizationRules\",\r\n \"location\": \"West US 2\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.EventHub/namespaces/eventHub637/eventhubs/ps6509/authorizationRules/ps424\",\r\n \"name\": \"ps424\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/AuthorizationRules\",\r\n \"location\": \"West US 2\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.EventHub/namespaces/eventHub6849/eventhubs/ps3103/authorizationRules/ps7586/listKeys?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWI2ODQ5L2V2ZW50aHVicy9wczMxMDMvYXV0aG9yaXphdGlvblJ1bGVzL3BzNzU4Ni9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.EventHub/namespaces/eventHub637/eventhubs/ps6509/authorizationRules/ps424/listKeys?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWI2MzcvZXZlbnRodWJzL3BzNjUwOS9hdXRob3JpemF0aW9uUnVsZXMvcHM0MjQvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c654f014-3dba-4a3c-9452-9b2fae9ba180" + "b5cf4986-1879-49b7-87a5-b0d27e943d95" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.0.0" @@ -4481,7 +4595,7 @@ "no-cache" ], "x-ms-request-id": [ - "fe71ad5f-c34c-4ad9-9e1d-c728fde1d6c8_M7CH3_M7CH3" + "ea57f919-04e0-4db7-91aa-99a1ea28f9dd_M3CH3_M3CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" @@ -4494,10 +4608,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "3b60903e-bc38-4e34-a047-07083b00363c" + "75f8068d-f236-4392-9303-d8c6b87d2315" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184408Z:3b60903e-bc38-4e34-a047-07083b00363c" + "WESTUS2:20200730T204613Z:75f8068d-f236-4392-9303-d8c6b87d2315" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4506,10 +4620,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:44:07 GMT" + "Thu, 30 Jul 2020 20:46:12 GMT" ], "Content-Length": [ - "514" + "509" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4518,17 +4632,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net/;SharedAccessKeyName=ps7586;SharedAccessKey=U1eYLWYPec/8NSbk3muwxiPjq+nv2Dp3GCt5lkOS8jE=;EntityPath=ps3103\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://eventhub6849.servicebus.windows.net/;SharedAccessKeyName=ps7586;SharedAccessKey=3e9HCMQ4Z8PtDwFN/ExCZuZH70ZmRyF4AKag7xeenAo=;EntityPath=ps3103\",\r\n \"primaryKey\": \"U1eYLWYPec/8NSbk3muwxiPjq+nv2Dp3GCt5lkOS8jE=\",\r\n \"secondaryKey\": \"3e9HCMQ4Z8PtDwFN/ExCZuZH70ZmRyF4AKag7xeenAo=\",\r\n \"keyName\": \"ps7586\"\r\n}", + "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net/;SharedAccessKeyName=ps424;SharedAccessKey=AW2s4P8O4mD+LYNDTXrpx0VIhDyivejYLWHBj9izRas=;EntityPath=ps6509\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://eventhub637.servicebus.windows.net/;SharedAccessKeyName=ps424;SharedAccessKey=9ETlAaUIiVNkHdzM3YKNyrcoK8cI87Xe1JOhR0sQn3c=;EntityPath=ps6509\",\r\n \"primaryKey\": \"AW2s4P8O4mD+LYNDTXrpx0VIhDyivejYLWHBj9izRas=\",\r\n \"secondaryKey\": \"9ETlAaUIiVNkHdzM3YKNyrcoK8cI87Xe1JOhR0sQn3c=\",\r\n \"keyName\": \"ps424\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMTBhMThkYmItNWRjYS00N2RiLWJmYjMtYWUzYjI4YzFjOWMy?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTVRCaE1UaGtZbUl0TldSallTMDBOMlJpTFdKbVlqTXRZV1V6WWpJNFl6RmpPV015P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYjY1NDI5YzItMDM3Mi00YmQ0LWI3NjMtN2Q2NWRmNTcyOGIx?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpZMU5ESTVZekl0TURNM01pMDBZbVEwTFdJM05qTXROMlEyTldSbU5UY3lPR0l4P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -4545,16 +4659,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11989" ], "x-ms-request-id": [ - "77e09fcf-1260-4547-b30e-e3483b7f8d06" + "d035d27b-0336-4fc7-8e74-e4c580ad06f7" ], "x-ms-correlation-request-id": [ - "77e09fcf-1260-4547-b30e-e3483b7f8d06" + "d035d27b-0336-4fc7-8e74-e4c580ad06f7" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184442Z:77e09fcf-1260-4547-b30e-e3483b7f8d06" + "WESTUS2:20200730T204648Z:d035d27b-0336-4fc7-8e74-e4c580ad06f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4563,7 +4677,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:44:42 GMT" + "Thu, 30 Jul 2020 20:46:48 GMT" ], "Content-Length": [ "22" @@ -4579,13 +4693,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMWUxMzJhMWEtMjA0MC00MGM1LWFiYjAtYzMwZWQxYjIwNGU0?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTVdVeE16SmhNV0V0TWpBME1DMDBNR00xTFdGaVlqQXRZek13WldReFlqSXdOR1UwP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfOWE4YWVlN2ItMTExOC00MWJkLWEzYzQtZDdhMGUzYjg5OWI3?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmT1dFNFlXVmxOMkl0TVRFeE9DMDBNV0prTFdFell6UXRaRGRoTUdVellqZzVPV0kzP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -4602,16 +4716,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11985" ], "x-ms-request-id": [ - "42cfd1eb-f5ae-47c5-9014-2833758de418" + "fa26f423-3b2c-4cbb-a51e-470868cfec0e" ], "x-ms-correlation-request-id": [ - "42cfd1eb-f5ae-47c5-9014-2833758de418" + "fa26f423-3b2c-4cbb-a51e-470868cfec0e" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184516Z:42cfd1eb-f5ae-47c5-9014-2833758de418" + "WESTUS2:20200730T204723Z:fa26f423-3b2c-4cbb-a51e-470868cfec0e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4620,7 +4734,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:45:16 GMT" + "Thu, 30 Jul 2020 20:47:23 GMT" ], "Content-Length": [ "22" @@ -4636,13 +4750,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNzFhZDQwZmItM2QyMy00YzVkLWE5NWEtZGE2MWFiMTY5NjUw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTnpGaFpEUXdabUl0TTJReU15MDBZelZrTFdFNU5XRXRaR0UyTVdGaU1UWTVOalV3P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMWVmNjQzYTAtYjdiYS00NGQ4LWE5ZDYtZGFjMTYyMWY1NzU5?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTVdWbU5qUXpZVEF0WWpkaVlTMDBOR1E0TFdFNVpEWXRaR0ZqTVRZeU1XWTFOelU1P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -4659,16 +4773,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11981" ], "x-ms-request-id": [ - "92d79ac2-6aaa-4002-a44c-cd333bf9ce24" + "c3f84369-8ab8-47d7-8243-24dc6fa9664f" ], "x-ms-correlation-request-id": [ - "92d79ac2-6aaa-4002-a44c-cd333bf9ce24" + "c3f84369-8ab8-47d7-8243-24dc6fa9664f" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184551Z:92d79ac2-6aaa-4002-a44c-cd333bf9ce24" + "WESTUS2:20200730T204759Z:c3f84369-8ab8-47d7-8243-24dc6fa9664f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4677,10 +4791,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:45:51 GMT" + "Thu, 30 Jul 2020 20:47:59 GMT" ], "Content-Length": [ - "22" + "20" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4689,17 +4803,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMzg3YmE2MzctNjhhYy00MDk1LWFlNDItNTg3NGQwYjM3ZWJi?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTXpnM1ltRTJNemN0TmpoaFl5MDBNRGsxTFdGbE5ESXROVGczTkdRd1lqTTNaV0ppP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMWVmNjQzYTAtYjdiYS00NGQ4LWE5ZDYtZGFjMTYyMWY1NzU5?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTVdWbU5qUXpZVEF0WWpkaVlTMDBOR1E0TFdFNVpEWXRaR0ZqTVRZeU1XWTFOelU1P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -4716,16 +4830,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11980" ], "x-ms-request-id": [ - "b64da1a7-162f-4ea1-8fd5-623413282c79" + "68e506df-53c2-4c13-a5be-26c07681c50b" ], "x-ms-correlation-request-id": [ - "b64da1a7-162f-4ea1-8fd5-623413282c79" + "68e506df-53c2-4c13-a5be-26c07681c50b" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184628Z:b64da1a7-162f-4ea1-8fd5-623413282c79" + "WESTUS2:20200730T204829Z:68e506df-53c2-4c13-a5be-26c07681c50b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4734,7 +4848,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:46:27 GMT" + "Thu, 30 Jul 2020 20:48:29 GMT" ], "Content-Length": [ "22" @@ -4750,13 +4864,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNzAyMDBkMzItY2U3OC00OGMzLTg3NGQtMGQ3MDA5MGZhMzU3?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTnpBeU1EQmtNekl0WTJVM09DMDBPR016TFRnM05HUXRNR1EzTURBNU1HWmhNelUzP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYWRkY2Y2YWMtYmI5Yi00NTQ4LTk1ZTQtOWQwZWUwZmE1MWIw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWVdSa1kyWTJZV010WW1JNVlpMDBOVFE0TFRrMVpUUXRPV1F3WldVd1ptRTFNV0l3P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -4773,16 +4887,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11974" ], "x-ms-request-id": [ - "27524fdf-05e9-4e26-90ba-954c48d23903" + "c6884e8c-1868-4f9e-89ea-e1289265df0d" ], "x-ms-correlation-request-id": [ - "27524fdf-05e9-4e26-90ba-954c48d23903" + "c6884e8c-1868-4f9e-89ea-e1289265df0d" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184704Z:27524fdf-05e9-4e26-90ba-954c48d23903" + "WESTUS2:20200730T204906Z:c6884e8c-1868-4f9e-89ea-e1289265df0d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4791,10 +4905,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:47:04 GMT" + "Thu, 30 Jul 2020 20:49:06 GMT" ], "Content-Length": [ - "22" + "20" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4803,17 +4917,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZDI5OTdjZGMtMDgwNi00MmY4LTkyMmEtZDI3NDFiNzFkOGE3?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWkRJNU9UZGpaR010TURnd05pMDBNbVk0TFRreU1tRXRaREkzTkRGaU56RmtPR0UzP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYWRkY2Y2YWMtYmI5Yi00NTQ4LTk1ZTQtOWQwZWUwZmE1MWIw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWVdSa1kyWTJZV010WW1JNVlpMDBOVFE0TFRrMVpUUXRPV1F3WldVd1ptRTFNV0l3P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -4830,16 +4944,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11973" ], "x-ms-request-id": [ - "9e673d38-9bf2-4e38-99c9-6bd4c26827e2" + "cef3051f-5a27-440e-afea-244e501a673f" ], "x-ms-correlation-request-id": [ - "9e673d38-9bf2-4e38-99c9-6bd4c26827e2" + "cef3051f-5a27-440e-afea-244e501a673f" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184739Z:9e673d38-9bf2-4e38-99c9-6bd4c26827e2" + "WESTUS2:20200730T204936Z:cef3051f-5a27-440e-afea-244e501a673f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4848,7 +4962,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:47:38 GMT" + "Thu, 30 Jul 2020 20:49:35 GMT" ], "Content-Length": [ "22" @@ -4864,13 +4978,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYTA5NWYwYTYtNDU3NC00MjcxLWE2ZjktOTUyMDViYTJmNDA4?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWVRBNU5XWXdZVFl0TkRVM05DMDBNamN4TFdFMlpqa3RPVFV5TURWaVlUSm1OREE0P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNzlhZmQwZmQtNzA3Ny00OTA1LTk0NDYtNjUyZTlkN2U1ZGY5?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTnpsaFptUXdabVF0TnpBM055MDBPVEExTFRrME5EWXROalV5WlRsa04yVTFaR1k1P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -4883,20 +4997,20 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" - ], "x-ms-request-id": [ - "21d2d8aa-f195-4354-9b12-4bff79accb04" + "1f290b7e-c5e8-4c23-8f0f-62312b72ce03" ], "x-ms-correlation-request-id": [ - "21d2d8aa-f195-4354-9b12-4bff79accb04" + "1f290b7e-c5e8-4c23-8f0f-62312b72ce03" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184814Z:21d2d8aa-f195-4354-9b12-4bff79accb04" + "WESTUS2:20200730T205014Z:1f290b7e-c5e8-4c23-8f0f-62312b72ce03" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4905,7 +5019,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:48:13 GMT" + "Thu, 30 Jul 2020 20:50:13 GMT" ], "Content-Length": [ "22" @@ -4921,13 +5035,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMWY1NjgxOTQtZjQ1NS00MzYyLWEyMDktZTQ0M2E1MzY5MTY0?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTVdZMU5qZ3hPVFF0WmpRMU5TMDBNell5TFdFeU1Ea3RaVFEwTTJFMU16WTVNVFkwP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNzY1MThiYjUtYzk0MS00YTliLWJhNmQtMWM3NjIxNDQ4NmE1?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTnpZMU1UaGlZalV0WXprME1TMDBZVGxpTFdKaE5tUXRNV00zTmpJeE5EUTRObUUxP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -4944,16 +5058,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "11963" ], "x-ms-request-id": [ - "d8fcb8bd-f055-489a-af6d-9f4914b65f2b" + "7cb0a52a-7c64-423c-9166-a58b617be51c" ], "x-ms-correlation-request-id": [ - "d8fcb8bd-f055-489a-af6d-9f4914b65f2b" + "7cb0a52a-7c64-423c-9166-a58b617be51c" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184847Z:d8fcb8bd-f055-489a-af6d-9f4914b65f2b" + "WESTUS2:20200730T205054Z:7cb0a52a-7c64-423c-9166-a58b617be51c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4962,7 +5076,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:48:46 GMT" + "Thu, 30 Jul 2020 20:50:54 GMT" ], "Content-Length": [ "22" @@ -4978,13 +5092,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYmE0ODNjY2ItMzc3MS00NGE2LWI4MjYtNzNhZDIwNjliZjFi?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWW1FME9ETmpZMkl0TXpjM01TMDBOR0UyTFdJNE1qWXROek5oWkRJd05qbGlaakZpP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfN2Y3ZGYwZmQtOWM4ZC00Y2YwLWFkNDYtYmVkY2Y0MzVhZjcy?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTjJZM1pHWXdabVF0T1dNNFpDMDBZMll3TFdGa05EWXRZbVZrWTJZME16VmhaamN5P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -5001,16 +5115,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" + "11959" ], "x-ms-request-id": [ - "498bcf04-acd4-4517-b63e-a74a82af96ce" + "98327e31-fd7b-40f1-9e90-83297db4bdd6" ], "x-ms-correlation-request-id": [ - "498bcf04-acd4-4517-b63e-a74a82af96ce" + "98327e31-fd7b-40f1-9e90-83297db4bdd6" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184921Z:498bcf04-acd4-4517-b63e-a74a82af96ce" + "WESTUS2:20200730T205129Z:98327e31-fd7b-40f1-9e90-83297db4bdd6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5019,7 +5133,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:49:20 GMT" + "Thu, 30 Jul 2020 20:51:29 GMT" ], "Content-Length": [ "22" @@ -5035,13 +5149,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMWFjYzU0ZmItNzdhMC00YjMyLWFmZTQtN2ExODU3OTcxODY4?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTVdGall6VTBabUl0TnpkaE1DMDBZak15TFdGbVpUUXROMkV4T0RVM09UY3hPRFk0P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYjA1YTUzMmItZjVlMy00OTdiLTg0ZWEtNThhYjEyM2Q2NGFi?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpBMVlUVXpNbUl0WmpWbE15MDBPVGRpTFRnMFpXRXROVGhoWWpFeU0yUTJOR0ZpP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -5058,16 +5172,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11952" + "11956" ], "x-ms-request-id": [ - "d22bf9c7-6f1b-4299-af29-1c2aa327aa21" + "78732d12-ea98-4b7c-9a56-1eff33dbcd92" ], "x-ms-correlation-request-id": [ - "d22bf9c7-6f1b-4299-af29-1c2aa327aa21" + "78732d12-ea98-4b7c-9a56-1eff33dbcd92" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184956Z:d22bf9c7-6f1b-4299-af29-1c2aa327aa21" + "WESTUS2:20200730T205204Z:78732d12-ea98-4b7c-9a56-1eff33dbcd92" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5076,10 +5190,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:49:56 GMT" + "Thu, 30 Jul 2020 20:52:03 GMT" ], "Content-Length": [ - "22" + "20" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5088,17 +5202,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMWRiMTMxYzAtNWFjNy00NTkxLWJkZGMtNDE5MmZlNjA1MWI0?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTVdSaU1UTXhZekF0TldGak55MDBOVGt4TFdKa1pHTXROREU1TW1abE5qQTFNV0kwP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYjA1YTUzMmItZjVlMy00OTdiLTg0ZWEtNThhYjEyM2Q2NGFi?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpBMVlUVXpNbUl0WmpWbE15MDBPVGRpTFRnMFpXRXROVGhoWWpFeU0yUTJOR0ZpP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -5111,20 +5225,20 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11947" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11955" + ], "x-ms-request-id": [ - "1b1a2f8f-0984-42ab-bcf0-d6d3cbba4000" + "a3410a47-6207-4872-9dfb-473cb14f7297" ], "x-ms-correlation-request-id": [ - "1b1a2f8f-0984-42ab-bcf0-d6d3cbba4000" + "a3410a47-6207-4872-9dfb-473cb14f7297" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T185031Z:1b1a2f8f-0984-42ab-bcf0-d6d3cbba4000" + "WESTUS2:20200730T205234Z:a3410a47-6207-4872-9dfb-473cb14f7297" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5133,10 +5247,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:50:30 GMT" + "Thu, 30 Jul 2020 20:52:34 GMT" ], "Content-Length": [ - "22" + "20" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5145,23 +5259,308 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275/routing/routes/$testall?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzUvcm91dGluZy9yb3V0ZXMvJHRlc3RhbGw/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"routingSource\": \"TwinChangeEvents\",\r\n \"message\": {}\r\n}", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYjA1YTUzMmItZjVlMy00OTdiLTg0ZWEtNThhYjEyM2Q2NGFi?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpBMVlUVXpNbUl0WmpWbE15MDBPVGRpTFRnMFpXRXROVGhoWWpFeU0yUTJOR0ZpP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "021692f0-98ef-4b77-934d-b897fdc105b2" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11954" + ], + "x-ms-request-id": [ + "a49ffc9b-7ab8-41ad-90ac-60977671a516" + ], + "x-ms-correlation-request-id": [ + "a49ffc9b-7ab8-41ad-90ac-60977671a516" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200730T205304Z:a49ffc9b-7ab8-41ad-90ac-60977671a516" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 30 Jul 2020 20:53:04 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZDQ3ZGUxMDUtMWI0MS00Y2VlLWI5ZmMtN2JmNzYyZTQzMTBk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWkRRM1pHVXhNRFV0TVdJME1TMDBZMlZsTFdJNVptTXROMkptTnpZeVpUUXpNVEJrP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28619.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11951" + ], + "x-ms-request-id": [ + "af7aa0b3-e4fb-4b64-9ce8-84e735f21359" + ], + "x-ms-correlation-request-id": [ + "af7aa0b3-e4fb-4b64-9ce8-84e735f21359" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200730T205338Z:af7aa0b3-e4fb-4b64-9ce8-84e735f21359" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 30 Jul 2020 20:53:38 GMT" + ], + "Content-Length": [ + "20" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZDQ3ZGUxMDUtMWI0MS00Y2VlLWI5ZmMtN2JmNzYyZTQzMTBk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWkRRM1pHVXhNRFV0TVdJME1TMDBZMlZsTFdJNVptTXROMkptTnpZeVpUUXpNVEJrP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28619.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11950" + ], + "x-ms-request-id": [ + "e3f8c132-fc4c-450e-87ba-08977a2a080e" + ], + "x-ms-correlation-request-id": [ + "e3f8c132-fc4c-450e-87ba-08977a2a080e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200730T205409Z:e3f8c132-fc4c-450e-87ba-08977a2a080e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 30 Jul 2020 20:54:08 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZmEzZTk2YjUtMDYxNS00MjE3LWFhNTktZDc0MDlmYjdiNDQ0?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWm1FelpUazJZalV0TURZeE5TMDBNakUzTFdGaE5Ua3RaRGMwTURsbVlqZGlORFEwP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28619.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11945" + ], + "x-ms-request-id": [ + "77fa6301-33f6-4a9d-afba-7adc9edacd31" + ], + "x-ms-correlation-request-id": [ + "77fa6301-33f6-4a9d-afba-7adc9edacd31" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200730T205444Z:77fa6301-33f6-4a9d-afba-7adc9edacd31" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 30 Jul 2020 20:54:44 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNWM2ZTYzZmYtYTdjYi00M2VkLWE5YzUtMjdkZWM4N2M2YTg2?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTldNMlpUWXpabVl0WVRkallpMDBNMlZrTFdFNVl6VXRNamRrWldNNE4yTTJZVGcyP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28619.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11940" + ], + "x-ms-request-id": [ + "17ded554-04c9-413c-bb8d-82f6d5fd9ed5" + ], + "x-ms-correlation-request-id": [ + "17ded554-04c9-413c-bb8d-82f6d5fd9ed5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200730T205520Z:17ded554-04c9-413c-bb8d-82f6d5fd9ed5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 30 Jul 2020 20:55:19 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560/routing/routes/$testall?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjAvcm91dGluZy9yb3V0ZXMvJHRlc3RhbGw/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"routingSource\": \"TwinChangeEvents\",\r\n \"message\": {}\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ddec4cb3-135e-410e-a49a-91c46bc64c6c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -5187,13 +5586,13 @@ "1199" ], "x-ms-request-id": [ - "5c12338f-7115-4097-b495-cf5af2d7f41d" + "049988f7-c9ad-4942-8c86-e3191ae6d87d" ], "x-ms-correlation-request-id": [ - "5c12338f-7115-4097-b495-cf5af2d7f41d" + "049988f7-c9ad-4942-8c86-e3191ae6d87d" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T185033Z:5c12338f-7115-4097-b495-cf5af2d7f41d" + "WESTUS2:20200730T205522Z:049988f7-c9ad-4942-8c86-e3191ae6d87d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5202,7 +5601,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:50:32 GMT" + "Thu, 30 Jul 2020 20:55:21 GMT" ], "Content-Length": [ "136" @@ -5214,17 +5613,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"name\": \"ps2278\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"ps9541\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"name\": \"ps2715\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"ps5242\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfN2I5ZGUxMTktZmY3NS00ZDU1LWE2MjItODQyNGE3NjhjOTVi?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTjJJNVpHVXhNVGt0Wm1ZM05TMDBaRFUxTFdFMk1qSXRPRFF5TkdFM05qaGpPVFZpP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGJiN2NkZWItYzEwYy00OGNmLTllMzUtYmI4OTY5ZDExZDgz?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdKaU4yTmtaV0l0WXpFd1l5MDBPR05tTFRsbE16VXRZbUk0T1RZNVpERXhaRGd6P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -5241,16 +5640,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11942" + "11935" ], "x-ms-request-id": [ - "be95b9bc-f193-4033-9bf0-091094661a43" + "756fadfa-1b18-4d95-ac87-10a05456dba7" ], "x-ms-correlation-request-id": [ - "be95b9bc-f193-4033-9bf0-091094661a43" + "756fadfa-1b18-4d95-ac87-10a05456dba7" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T185106Z:be95b9bc-f193-4033-9bf0-091094661a43" + "WESTUS2:20200730T205556Z:756fadfa-1b18-4d95-ac87-10a05456dba7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5259,7 +5658,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:51:06 GMT" + "Thu, 30 Jul 2020 20:55:55 GMT" ], "Content-Length": [ "22" @@ -5275,13 +5674,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMzhjMjYwOTctOTRhMy00NWU1LTk4MzktNDM3MjMwZTUwMDRi?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTXpoak1qWXdPVGN0T1RSaE15MDBOV1UxTFRrNE16a3RORE0zTWpNd1pUVXdNRFJpP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMzhjMzllMWItMTdkYy00Y2UxLWJkZmMtZWE4MjIxYmI5MjA4?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTXpoak16bGxNV0l0TVRka1l5MDBZMlV4TFdKa1ptTXRaV0U0TWpJeFltSTVNakE0P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -5298,16 +5697,73 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11939" + "11932" + ], + "x-ms-request-id": [ + "31edaab7-89cb-43ae-a42a-ad046d9ceac3" + ], + "x-ms-correlation-request-id": [ + "31edaab7-89cb-43ae-a42a-ad046d9ceac3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200730T205630Z:31edaab7-89cb-43ae-a42a-ad046d9ceac3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 30 Jul 2020 20:56:30 GMT" + ], + "Content-Length": [ + "20" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMzhjMzllMWItMTdkYy00Y2UxLWJkZmMtZWE4MjIxYmI5MjA4?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTXpoak16bGxNV0l0TVRka1l5MDBZMlV4TFdKa1ptTXRaV0U0TWpJeFltSTVNakE0P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28619.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11931" ], "x-ms-request-id": [ - "b15bb673-8224-4956-a944-58aca6081564" + "d62fd70e-ddb8-485a-bdf6-f48fc57a4616" ], "x-ms-correlation-request-id": [ - "b15bb673-8224-4956-a944-58aca6081564" + "d62fd70e-ddb8-485a-bdf6-f48fc57a4616" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T185140Z:b15bb673-8224-4956-a944-58aca6081564" + "WESTUS2:20200730T205700Z:d62fd70e-ddb8-485a-bdf6-f48fc57a4616" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5316,7 +5772,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:51:40 GMT" + "Thu, 30 Jul 2020 20:57:00 GMT" ], "Content-Length": [ "22" @@ -5332,19 +5788,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps7625/providers/Microsoft.Devices/IotHubs/ps6275?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNzYyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYyNzU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps3206/providers/Microsoft.Devices/IotHubs/ps4560?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMzIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQ1NjA/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e98a492e-ce6a-4c47-a0e3-6a2fbf3fb7ee" + "b33ccf9f-86ce-4444-9400-093d05213b9c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -5358,13 +5814,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMTZjN2NhNTAtOGNlYy00ZjYxLTg1ZDEtZTU3NmFkMzZiZTJl?api-version=2019-07-01-preview&operationSource=os_ih" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjMxMTY5NTEtOTM3OC00MmUzLThkOTctNmIyNTBhYjcwYzZi?api-version=2019-07-01-preview&operationSource=os_ih" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMTZjN2NhNTAtOGNlYy00ZjYxLTg1ZDEtZTU3NmFkMzZiZTJl?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjMxMTY5NTEtOTM3OC00MmUzLThkOTctNmIyNTBhYjcwYzZi?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -5373,13 +5829,13 @@ "14999" ], "x-ms-request-id": [ - "7511fe57-7264-49ca-9dd4-01dc83cc05cd" + "7a0af77c-0ab7-4624-add9-ce98db33814a" ], "x-ms-correlation-request-id": [ - "7511fe57-7264-49ca-9dd4-01dc83cc05cd" + "7a0af77c-0ab7-4624-add9-ce98db33814a" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T185141Z:7511fe57-7264-49ca-9dd4-01dc83cc05cd" + "WESTUS2:20200730T205702Z:7a0af77c-0ab7-4624-add9-ce98db33814a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5388,7 +5844,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:51:41 GMT" + "Thu, 30 Jul 2020 20:57:02 GMT" ], "Content-Length": [ "4" @@ -5404,13 +5860,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMTZjN2NhNTAtOGNlYy00ZjYxLTg1ZDEtZTU3NmFkMzZiZTJl?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTVRaak4yTmhOVEF0T0dObFl5MDBaall4TFRnMVpERXRaVFUzTm1Ga016WmlaVEpsP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjMxMTY5NTEtOTM3OC00MmUzLThkOTctNmIyNTBhYjcwYzZi?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTWpNeE1UWTVOVEV0T1RNM09DMDBNbVV6TFRoa09UY3RObUl5TlRCaFlqY3dZelppP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -5427,16 +5883,73 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11937" + "11929" + ], + "x-ms-request-id": [ + "ec085116-82fe-498c-8248-6e78ef9a91f9" + ], + "x-ms-correlation-request-id": [ + "ec085116-82fe-498c-8248-6e78ef9a91f9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200730T205717Z:ec085116-82fe-498c-8248-6e78ef9a91f9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 30 Jul 2020 20:57:17 GMT" + ], + "Content-Length": [ + "20" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjMxMTY5NTEtOTM3OC00MmUzLThkOTctNmIyNTBhYjcwYzZi?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTWpNeE1UWTVOVEV0T1RNM09DMDBNbVV6TFRoa09UY3RObUl5TlRCaFlqY3dZelppP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28619.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11928" ], "x-ms-request-id": [ - "dad35f10-9bda-4879-a5da-d775063846eb" + "3f1590c6-8482-4382-ad4c-a13f351e862d" ], "x-ms-correlation-request-id": [ - "dad35f10-9bda-4879-a5da-d775063846eb" + "3f1590c6-8482-4382-ad4c-a13f351e862d" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T185156Z:dad35f10-9bda-4879-a5da-d775063846eb" + "WESTUS2:20200730T205733Z:3f1590c6-8482-4382-ad4c-a13f351e862d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5445,7 +5958,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:51:56 GMT" + "Thu, 30 Jul 2020 20:57:32 GMT" ], "Content-Length": [ "22" @@ -5461,13 +5974,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMTZjN2NhNTAtOGNlYy00ZjYxLTg1ZDEtZTU3NmFkMzZiZTJl?api-version=2019-07-01-preview&operationSource=os_ih", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTVRaak4yTmhOVEF0T0dObFl5MDBaall4TFRnMVpERXRaVFUzTm1Ga016WmlaVEpsP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWg=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjMxMTY5NTEtOTM3OC00MmUzLThkOTctNmIyNTBhYjcwYzZi?api-version=2019-07-01-preview&operationSource=os_ih", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTWpNeE1UWTVOVEV0T1RNM09DMDBNbVV6TFRoa09UY3RObUl5TlRCaFlqY3dZelppP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWg=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -5481,7 +5994,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMTZjN2NhNTAtOGNlYy00ZjYxLTg1ZDEtZTU3NmFkMzZiZTJl?api-version=2019-07-01-preview&operationSource=os_ih" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjMxMTY5NTEtOTM3OC00MmUzLThkOTctNmIyNTBhYjcwYzZi?api-version=2019-07-01-preview&operationSource=os_ih" ], "Retry-After": [ "15" @@ -5490,16 +6003,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11936" + "11927" ], "x-ms-request-id": [ - "99167248-b96e-46f0-8c38-d9f3c2a64313" + "dcaed409-dc3b-4b3e-a220-f963e6b04d68" ], "x-ms-correlation-request-id": [ - "99167248-b96e-46f0-8c38-d9f3c2a64313" + "dcaed409-dc3b-4b3e-a220-f963e6b04d68" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T185157Z:99167248-b96e-46f0-8c38-d9f3c2a64313" + "WESTUS2:20200730T205733Z:dcaed409-dc3b-4b3e-a220-f963e6b04d68" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5508,7 +6021,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:51:56 GMT" + "Thu, 30 Jul 2020 20:57:33 GMT" ], "Expires": [ "-1" @@ -5523,18 +6036,18 @@ ], "Names": { "Test-AzureRmIotHubRoutingLifecycle": [ - "ps6275", - "ps7625", - "eventHub6849", - "ps3103", - "ps7586", - "ps9541", - "ps9994", - "ps6224", - "ps2278", - "ps1506", - "ps1190", - "ps9735" + "ps4560", + "ps3206", + "eventHub637", + "ps6509", + "ps424", + "ps5242", + "ps3913", + "ps7754", + "ps2715", + "ps2458", + "ps7571", + "ps4142" ] }, "Variables": { diff --git a/src/IotHub/IotHub.Test/SessionRecords/Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubTests/TestAzureIotHubLifeCycle.json b/src/IotHub/IotHub.Test/SessionRecords/Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubTests/TestAzureIotHubLifeCycle.json index 8ed7fb14a766..8377616fa28d 100644 --- a/src/IotHub/IotHub.Test/SessionRecords/Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubTests/TestAzureIotHubLifeCycle.json +++ b/src/IotHub/IotHub.Test/SessionRecords/Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubTests/TestAzureIotHubLifeCycle.json @@ -7,16 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c6966524-9645-4030-aa70-4a210ce38b49" + "cb9280da-b9d6-4729-9d75-38c3a5966295" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.15" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" ] }, "ResponseHeaders": { @@ -27,16 +27,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11997" ], "x-ms-request-id": [ - "d9131f5e-46c8-45b1-be39-5c703d54fc41" + "726c4b8a-78b3-4a74-9dcc-27aca693ebf3" ], "x-ms-correlation-request-id": [ - "d9131f5e-46c8-45b1-be39-5c703d54fc41" + "726c4b8a-78b3-4a74-9dcc-27aca693ebf3" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182017Z:d9131f5e-46c8-45b1-be39-5c703d54fc41" + "WESTUS2:20200730T212819Z:726c4b8a-78b3-4a74-9dcc-27aca693ebf3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:20:16 GMT" + "Thu, 30 Jul 2020 21:28:18 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -67,13 +67,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "42f469e2-dce6-46a8-ace5-83a61433ff38" + "b384134e-ab2f-4033-a91e-738cdbf99a7f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -93,13 +93,13 @@ "11999" ], "x-ms-request-id": [ - "54a12d07-a5d6-4e48-8bff-27ec57a679c1" + "3b5dcc86-d04a-4417-a74a-8cc96e459c37" ], "x-ms-correlation-request-id": [ - "54a12d07-a5d6-4e48-8bff-27ec57a679c1" + "3b5dcc86-d04a-4417-a74a-8cc96e459c37" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182028Z:54a12d07-a5d6-4e48-8bff-27ec57a679c1" + "WESTUS2:20200730T212831Z:3b5dcc86-d04a-4417-a74a-8cc96e459c37" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -108,10 +108,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:20:28 GMT" + "Thu, 30 Jul 2020 21:28:30 GMT" ], "Content-Length": [ - "139187" + "146539" ], "Content-Type": [ "application/json; charset=utf-8" @@ -120,26 +120,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap\",\r\n \"name\": \"vishalg-euap\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"vishalg\",\r\n \"etag\": \"AAAAABG1D7I=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"vishalg-euap.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 2,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\"\r\n ],\r\n \"path\": \"vishalg-euap\",\r\n \"endpoint\": \"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2\",\r\n \"name\": \"slowqueue2\",\r\n \"id\": \"ac634d18-4fb5-42e2-9885-25fd4bfae4a0\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-ServiceBus-SouthCentralUS\"\r\n },\r\n {\r\n \"connectionString\": \"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest\",\r\n \"name\": \"deadqueue\",\r\n \"id\": \"88d2a443-b1a0-4f6b-9815-a88d7414cc77\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ankur-centraluseuap-rg\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****\",\r\n \"containerName\": \"jsontest\",\r\n \"fileNameFormat\": \"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json\",\r\n \"batchFrequencyInSeconds\": 60,\r\n \"maxChunkSizeInBytes\": 10485760,\r\n \"encoding\": \"json\",\r\n \"name\": \"jsontestep\",\r\n \"id\": \"247a72ba-e596-4dc5-be1f-7989711dc273\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"vishalg\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"jsonstorageroute\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"jsontestep\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"lifecycle\",\r\n \"source\": \"DeviceLifecycleEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"deadroute\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"deadqueue\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1\",\r\n \"name\": \"sapan-iot-1\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"gfd\": \"gfh\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"sapan-rg\",\r\n \"etag\": \"AAAAAAytb+Q=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"sapan-iot-1.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"sapan-iot-1\",\r\n \"endpoint\": \"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****\",\r\n \"containerName\": \"testc\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"storage1\",\r\n \"id\": \"e1a7703b-1962-48b2-9c43-3d817392aa7c\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"sapan-rg\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"storage1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT17H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT3H\",\r\n \"maxDeliveryCount\": 40\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT11H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT17H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub\",\r\n \"name\": \"RoutingRunnerScenarioTests-hub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"SouthCentralUS\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"RoutingRunnerScenarioTests-rg\",\r\n \"etag\": \"AAAAAA4AegE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"South Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"RoutingRunnerScenarioTests-hub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"routingrunnerscenariotest\",\r\n \"endpoint\": \"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq\",\r\n \"name\": \"RoutingRunnerScenarioTestsSbqTest-sbq\",\r\n \"id\": \"9ec58066-d8d2-4987-85d7-b46e93446989\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"RoutingRunnerScenarioTests-rg\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt\",\r\n \"name\": \"RoutingRunnerScenarioTestsSbTopicTest-sbt\",\r\n \"id\": \"482e40f0-1eac-4674-b50c-48eff2948b68\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"RoutingRunnerScenarioTests-rg\"\r\n }\r\n ],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh\",\r\n \"name\": \"RoutingRunnerScenarioTestsEhTest-eh\",\r\n \"id\": \"50a95a4a-bde8-4e85-9760-77b2ebeed2d6\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"RoutingRunnerScenarioTests-rg\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****\",\r\n \"containerName\": \"routingrunsttestct\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 60,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"routingrunsttestac\",\r\n \"id\": \"51239e82-6c64-496d-8b20-8408de5ad58f\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"RoutingRunnerScenarioTests-rg\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [\r\n {\r\n \"name\": \"RouteToEventHubMessagesWithBody\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$body.ScenarioName = 'RouteToEventHubMessagesWithBody'\",\r\n \"endpointNames\": [\r\n \"RoutingRunnerScenarioTestsEhTest-eh\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToEventHubMessagesWithAppProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"ScenarioName = 'RouteToEventHubMessagesWithAppProperties'\",\r\n \"endpointNames\": [\r\n \"RoutingRunnerScenarioTestsEhTest-eh\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToEventHubMessagesWithSystemProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$contentEncoding = 'UTF-32'\",\r\n \"endpointNames\": [\r\n \"RoutingRunnerScenarioTestsEhTest-eh\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToSBQueueMessagesWithBody\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$body.ScenarioName = 'RouteToSBQueueMessagesWithBody'\",\r\n \"endpointNames\": [\r\n \"RoutingRunnerScenarioTestsSbqTest-sbq\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToSBQueueMessagesWithAppProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"ScenarioName = 'RouteToSBQueueMessagesWithAppProperties'\",\r\n \"endpointNames\": [\r\n \"RoutingRunnerScenarioTestsSbqTest-sbq\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToSBQueueMessagesWithSystemProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$contentEncoding = 'UTF-32'\",\r\n \"endpointNames\": [\r\n \"RoutingRunnerScenarioTestsSbqTest-sbq\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToSBTopicMessagesWithBody\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$body.ScenarioName = 'RouteToSBTopicMessagesWithBody'\",\r\n \"endpointNames\": [\r\n \"RoutingRunnerScenarioTestsSbTopicTest-sbt\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToSBTopicMessagesAppProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"ScenarioName = 'RouteToSBTopicMessagesAppProperties'\",\r\n \"endpointNames\": [\r\n \"RoutingRunnerScenarioTestsSbTopicTest-sbt\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToSBTopicMessagesWithSystemProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$contentEncoding = 'UTF-32'\",\r\n \"endpointNames\": [\r\n \"RoutingRunnerScenarioTestsSbTopicTest-sbt\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToStorageMessagesWithBody\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$body.ScenarioName = 'RouteToStorageMessagesWithBody'\",\r\n \"endpointNames\": [\r\n \"routingrunsttestac\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToStorageMessagesWithAppProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"ScenarioName = 'RouteToStorageMessagesWithAppProperties'\",\r\n \"endpointNames\": [\r\n \"routingrunsttestac\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToStorageMessagesWithSystemProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$contentEncoding = 'UTF-32'\",\r\n \"endpointNames\": [\r\n \"routingrunsttestac\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub\",\r\n \"name\": \"EgMgmtTest-hub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"EgMgmtTest-rg\",\r\n \"etag\": \"AAAAAA+8cJQ=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"EgMgmtTest-hub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"egmgmttest-hub\",\r\n \"endpoint\": \"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm\",\r\n \"name\": \"sachinctest0515arm\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"sachinctest\",\r\n \"etag\": \"AAAAAAysmpk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"sachinctest0515arm.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"sachinctest0515arm\",\r\n \"endpoint\": \"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub\",\r\n \"name\": \"ea-genhub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ea-gen\",\r\n \"etag\": \"AAAAAAyt5FA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ea-genhub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ea-genhub\",\r\n \"endpoint\": \"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub\",\r\n \"name\": \"askhura-iot-hub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"tagkey\": \"tagvalue\",\r\n \"foo\": \"bar\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"askhura-test-rg\",\r\n \"etag\": \"AAAAABIHoUo=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [\r\n {\r\n \"filterName\": \"testrule14\",\r\n \"action\": \"Reject\",\r\n \"ipMask\": \"192.168.1.234\"\r\n }\r\n ],\r\n \"hostName\": \"askhura-iot-hub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 3,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"askhura-iot-hub\",\r\n \"endpoint\": \"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2\",\r\n \"name\": \"queue-endpoint\",\r\n \"id\": \"a716d889-d131-48bb-8bdd-9e667958c89f\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-ServiceBus-SouthCentralUS\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1\",\r\n \"name\": \"testeh\",\r\n \"id\": \"edc2275d-5f74-4f08-9555-50905b567f7a\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"dexterm-rg\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****\",\r\n \"containerName\": \"hirachyshishu1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"aaaaaa\",\r\n \"id\": \"d8ab0b4d-faeb-4557-a976-92a64413ae10\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****\",\r\n \"containerName\": \"pnptest\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"teststorage\",\r\n \"id\": \"4aa10acb-a1a5-41d0-a7b3-fea883eff17e\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affandarrg\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****\",\r\n \"containerName\": \"pnptest3\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"iliesendpoint\",\r\n \"id\": \"9fe146f2-9a47-419d-a424-ab83e11a7e49\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affandarrg\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****\",\r\n \"containerName\": \"asdfasdf\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"testextension\",\r\n \"id\": \"b9108ec6-380f-4e86-aa7f-90f172923170\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affanbcRG982788\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****\",\r\n \"containerName\": \"asdfasdf\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"testendpoint1\",\r\n \"id\": \"14a526a0-70d1-4110-939e-d21eb5a95fc4\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affanbcRG982788\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****\",\r\n \"containerName\": \"asdfasdf\",\r\n \"fileNameFormat\": \"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"sgdfgdfgd\",\r\n \"id\": \"84727b46-89d4-481a-8c90-909075629138\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affanbcRG982788\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****\",\r\n \"containerName\": \"asdfasdf\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"adadfasdasd\",\r\n \"id\": \"3051e742-b322-4f50-b04b-059b4e716271\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affanbcRG982788\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"storage-endpoint\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"aaaaaa\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"icmtest\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"teststorage\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"dfgdgd\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"aaaaaa\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"service-queue-endpoint\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"queue-endpoint\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT6H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest\",\r\n \"name\": \"maxgpgtest\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"maxgtest\",\r\n \"etag\": \"AAAAAAysnN8=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"maxgpgtest.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 2,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\"\r\n ],\r\n \"path\": \"maxgpgtest\",\r\n \"endpoint\": \"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub\",\r\n \"name\": \"asrudra-iot-hub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"adsfdsa\": \"ssdfgh\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"asrudra\",\r\n \"etag\": \"AAAAAAy29hY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"asrudra-iot-hub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"asrudra-iot-hub\",\r\n \"endpoint\": \"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub\",\r\n \"name\": \"eliohub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"eliorg\",\r\n \"etag\": \"AAAAAAystMg=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"eliohub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"eliohub\",\r\n \"endpoint\": \"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2\",\r\n \"name\": \"eliohub2\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"eliorg\",\r\n \"etag\": \"AAAAAAy1SfE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"eliohub2.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"eliohub2\",\r\n \"endpoint\": \"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm\",\r\n \"name\": \"dmpypin-cdm\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"dmpypin-cdm\",\r\n \"etag\": \"AAAAABG2jrg=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"dmpypin-cdm.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 2,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\"\r\n ],\r\n \"path\": \"dmpypin-cdm\",\r\n \"endpoint\": \"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest\",\r\n \"name\": \"cymgtest\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"cymgtest\",\r\n \"etag\": \"AAAAABHqbwY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"cymgtest.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"cymgtest\",\r\n \"endpoint\": \"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon\",\r\n \"name\": \"testopsmon\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"jichangrg\",\r\n \"etag\": \"AAAAAAynKDs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"testopsmon.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"testopsmon\",\r\n \"endpoint\": \"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt\",\r\n \"name\": \"dmpypin-cdm-pvt\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"dmpypin-cdm\",\r\n \"etag\": \"AAAAABG2kBs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"dmpypin-cdm-pvt.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"dmpypin-cdm-pvt\",\r\n \"endpoint\": \"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub\",\r\n \"name\": \"infra-edge-validation-hub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"infradeploymentverification\",\r\n \"etag\": \"AAAAAAyswd4=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"infra-edge-validation-hub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"infra-edge-validation-hub\",\r\n \"endpoint\": \"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test\",\r\n \"name\": \"ailn-test\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ailn-test\",\r\n \"etag\": \"AAAAABG3EIk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ailn-test.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ailn-test\",\r\n \"endpoint\": \"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test\",\r\n \"name\": \"maga-canary-test\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"maga-rg\",\r\n \"etag\": \"AAAAABG0o7o=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"maga-canary-test.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"maga-canary-test\",\r\n \"endpoint\": \"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1\",\r\n \"name\": \"service-bus\",\r\n \"id\": \"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-ServiceBus-SouthCentralUS\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route-1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"false\",\r\n \"endpointNames\": [\r\n \"service-bus\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route-2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus\",\r\n \"name\": \"postame20190730-westus\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"jl20190730\",\r\n \"etag\": \"AAAAAAynVVE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"postame20190730-westus.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"postame20190730-westus\",\r\n \"endpoint\": \"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test\",\r\n \"name\": \"shsin-test\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"shsin-test\",\r\n \"etag\": \"AAAAAAy4uNo=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"shsin-test.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"shsin-test\",\r\n \"endpoint\": \"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1\",\r\n \"name\": \"shsin-test1\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"shsin-test\",\r\n \"etag\": \"AAAAAAy5I0k=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"shsin-test1.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"shsin-test1\",\r\n \"endpoint\": \"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari\",\r\n \"name\": \"lanhikari\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"hubhikari\",\r\n \"etag\": \"AAAAAAyuTRc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"lanhikari.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"lanhikari\",\r\n \"endpoint\": \"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test\",\r\n \"name\": \"maga-walmart-test\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"maga-rg\",\r\n \"etag\": \"AAAAAAys834=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"maga-walmart-test.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"maga-walmart-test\",\r\n \"endpoint\": \"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1\",\r\n \"name\": \"maga-sb\",\r\n \"id\": \"25db0af1-47e1-4c05-b496-3fe45b8a30fd\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-ServiceBus-SouthCentralUS\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route-1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"false\",\r\n \"endpointNames\": [\r\n \"maga-sb\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route-2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"false\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves\",\r\n \"name\": \"ea-enclaves\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ea-enclaves\",\r\n \"etag\": \"AAAAAAys9d4=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ea-enclaves.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ea-enclaves\",\r\n \"endpoint\": \"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary\",\r\n \"name\": \"vishalg-canary\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"vishalg\",\r\n \"etag\": \"AAAAABG4zHE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"vishalg-canary.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"vishalg-canary\",\r\n \"endpoint\": \"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever\",\r\n \"name\": \"queue-endpoint\",\r\n \"id\": \"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ankur-centraluseuap-rg\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****\",\r\n \"containerName\": \"alklindesktopgvd664qrouting\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"storage\",\r\n \"id\": \"0baf4317-6d55-4da4-b43f-22cdd7b18282\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-Storage-WestUS\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [\r\n {\r\n \"name\": \"default\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"Storage-Route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"storage\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"queuq-route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"queue-endpoint\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 3\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest\",\r\n \"name\": \"test-hub-rest\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"sanand-rg\",\r\n \"etag\": \"AAAAAA4TxTo=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"North Europe\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"test-hub-rest.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"test-hub-rest\",\r\n \"endpoint\": \"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c\",\r\n \"name\": \"testMsgEnrichmentfkx2le3c\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"testMsg\",\r\n \"etag\": \"AAAAAA3lOHY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"testMsgEnrichmentfkx2le3c.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 2,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\"\r\n ],\r\n \"path\": \"testmsgenrichmentfkx2le3c\",\r\n \"endpoint\": \"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c\",\r\n \"name\": \"ContosoSBQueueEndpoint\",\r\n \"id\": \"c09328cb-8421-4dc6-aade-8dddcc75e0ed\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"testMsg\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****\",\r\n \"containerName\": \"contosoresults\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ContosoStorageEndpoint\",\r\n \"id\": \"be2db98d-a24e-4ec0-bbee-43d9a10a2529\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"testMsg\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"ContosoStorageRoute\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"level=\\\"storage\\\"\",\r\n \"endpointNames\": [\r\n \"ContosoStorageEndpoint\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"ContosoSBQueueRoute\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"level=\\\"critical\\\"\",\r\n \"endpointNames\": [\r\n \"ContosoSBQueueEndpoint\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test\",\r\n \"name\": \"ns-hub-test\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"sanand-rg\",\r\n \"etag\": \"AAAAABG00NE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ns-hub-test.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ns-hub-test\",\r\n \"endpoint\": \"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2\",\r\n \"name\": \"ns-test-east-2\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"sanand-rg\",\r\n \"etag\": \"AAAAABG00aw=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ns-test-east-2.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ns-test-east-2\",\r\n \"endpoint\": \"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing\",\r\n \"name\": \"xinyiz-distributedtracing\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"xinyiz-distributedtracing\",\r\n \"etag\": \"AAAAABG5oQY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [\r\n {\r\n \"filterName\": \"test-rule\",\r\n \"action\": \"Accept\",\r\n \"ipMask\": \"127.0.0.0/31\"\r\n }\r\n ],\r\n \"hostName\": \"xinyiz-distributedtracing.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"xinyiz-distributedtracing\",\r\n \"endpoint\": \"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2\",\r\n \"name\": \"eriwand2\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"eriwan-d2\",\r\n \"etag\": \"AAAAABG5oJQ=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"eriwand2.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"eriwand2\",\r\n \"endpoint\": \"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub\",\r\n \"name\": \"dexterm-hub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"dexterm-rg\",\r\n \"etag\": \"AAAAAAy3cjw=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"dexterm-hub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 2,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\"\r\n ],\r\n \"path\": \"dexterm-hub\",\r\n \"endpoint\": \"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1\",\r\n \"name\": \"dextermeventhub\",\r\n \"id\": \"adc82a8a-b065-47cd-b1a2-efe496ea368e\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"dexterm-rg\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"dexternroutes\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\\\"yes\\\"\",\r\n \"endpointNames\": [\r\n \"dextermeventhub\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"dextern-iot-hub-edgedevice\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$twin.tags.dexteredgedevice.troubleshoot=\\\"true\\\"\",\r\n \"endpointNames\": [\r\n \"dextermeventhub\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate\",\r\n \"name\": \"dexterm-testiothubcreate\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"dexterm-rg\",\r\n \"etag\": \"AAAAAAyn5SQ=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"dexterm-testiothubcreate.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"dexterm-testiothubcreate\",\r\n \"endpoint\": \"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2\",\r\n \"name\": \"dexterm-testiothubcreate2\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"dexterm-rg\",\r\n \"etag\": \"AAAAAAyn5R8=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"dexterm-testiothubcreate2.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"dexterm-testiothubcreate2\",\r\n \"endpoint\": \"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope\",\r\n \"name\": \"dexterm-hub-northeurope\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"dextermrgneurope\",\r\n \"etag\": \"AAAAAAy6Rp4=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West Europe\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"dexterm-hub-northeurope.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"dexterm-hub-northeurope\",\r\n \"endpoint\": \"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1\",\r\n \"name\": \"dextermeventhub\",\r\n \"id\": \"de045626-d820-4873-b411-629ec8bda685\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"dexterm-rg\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"dextermepforneuropehub\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\\\"yes\\\"\",\r\n \"endpointNames\": [\r\n \"dextermeventhub\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01\",\r\n \"name\": \"csharp-iotuap-eastus-01\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"csharp-iotuap-eastus-01\",\r\n \"etag\": \"AAAAAAy5Qis=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"csharp-iotuap-eastus-01.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 2,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\"\r\n ],\r\n \"path\": \"csharp-iotuap-eastus-01\",\r\n \"endpoint\": \"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****\",\r\n \"containerName\": \"aziotbld\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest\",\r\n \"name\": \"mchai-repartitiontest\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"repartitiontest\",\r\n \"etag\": \"AAAAABG+qNc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"mchai-repartitiontest.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"mchai-repartitiontest\",\r\n \"endpoint\": \"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2\",\r\n \"name\": \"20200124-Eastus2euap-2\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"johnlang-resources\",\r\n \"etag\": \"AAAAABG1AQk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"20200124-Eastus2euap-2.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"20200124-eastus2euap-2\",\r\n \"endpoint\": \"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon\",\r\n \"name\": \"zadixon\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"zadixon\",\r\n \"etag\": \"AAAAAAz+6Ew=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"zadixon.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"zadixon\",\r\n \"endpoint\": \"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****\",\r\n \"containerName\": \"messages\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 60,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"zadixonstorage\",\r\n \"id\": \"1cae10c1-52ee-41b7-a010-e151c3488aaf\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"zadixon\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****\",\r\n \"containerName\": \"device0\",\r\n \"fileNameFormat\": \"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt\",\r\n \"batchFrequencyInSeconds\": 60,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"device0\",\r\n \"id\": \"c56e2b75-e9e3-4087-bae8-a02eb814976c\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"zadixon\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****\",\r\n \"containerName\": \"device1\",\r\n \"fileNameFormat\": \"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt\",\r\n \"batchFrequencyInSeconds\": 60,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"device1\",\r\n \"id\": \"60141df3-072f-4b53-b703-b0d690a67047\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"zadixon\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****\",\r\n \"containerName\": \"device2\",\r\n \"fileNameFormat\": \"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt\",\r\n \"batchFrequencyInSeconds\": 60,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"device2\",\r\n \"id\": \"e800e4a2-2d4b-44fa-a967-a97816237839\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"zadixon\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****\",\r\n \"containerName\": \"device2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"testendpoint\",\r\n \"id\": \"e1db0276-e2e9-4fd6-b679-c6a62c56b204\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"zadixon\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"twinchanges\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"zadixonstorage\"\r\n ],\r\n \"isEnabled\": false\r\n },\r\n {\r\n \"name\": \"device0\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"$twin.deviceId = 'device0' \",\r\n \"endpointNames\": [\r\n \"device0\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"device1\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"$twin.deviceId = 'device1' \",\r\n \"endpointNames\": [\r\n \"device1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"device2\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"$twin.deviceId = 'device2' \",\r\n \"endpointNames\": [\r\n \"device2\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"devicemssages\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"testendpoint\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"lifecycle\",\r\n \"source\": \"DeviceLifecycleEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"testendpoint\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest\",\r\n \"name\": \"maxeasttest\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"mgtlab\",\r\n \"etag\": \"AAAAAA5e5/A=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"maxeasttest.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"maxeasttest\",\r\n \"endpoint\": \"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih\",\r\n \"name\": \"zhangyih\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"zhangyih-test\",\r\n \"etag\": \"AAAAAAyt9QY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"zhangyih.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"zhangyih\",\r\n \"endpoint\": \"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue\",\r\n \"name\": \"zhangyih-sb-queue\",\r\n \"id\": \"471d8b6b-f1a6-4d62-a761-752474e7e689\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"zhangyih-test\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****\",\r\n \"containerName\": \"insights-logs-auditevent\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"zhangyih-storage-endpoint\",\r\n \"id\": \"164d47f1-f764-4a69-a467-eb20e02bd8ce\",\r\n \"subscriptionId\": \"2db1b828-b94e-4c59-87ae-cc9d0f19baaf\",\r\n \"resourceGroup\": \"ih-test-001-kv-rg\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"test-sb-queue\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"level=\\\"critical\\\"\",\r\n \"endpointNames\": [\r\n \"zhangyih-sb-queue\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"test_telemetry\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"level=\\\"storage\\\"\",\r\n \"endpointNames\": [\r\n \"zhangyih-storage-endpoint\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs\",\r\n \"name\": \"TeshHubInCentralUs\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"rechaniothubcit-Migrated\",\r\n \"etag\": \"AAAAAA3nKR4=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"TeshHubInCentralUs.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"teshhubincentralus\",\r\n \"endpoint\": \"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1\",\r\n \"name\": \"raj-plain-hub1\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"raj-msi-rg\",\r\n \"etag\": \"AAAAABG1AmE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"raj-plain-hub1.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"raj-plain-hub1\",\r\n \"endpoint\": \"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****\",\r\n \"containerName\": \"files1\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": true,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2\",\r\n \"name\": \"raj-plain-hub2\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"raj-msi-rg\",\r\n \"etag\": \"AAAAABG1AnA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"raj-plain-hub2.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"raj-plain-hub2\",\r\n \"endpoint\": \"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****\",\r\n \"containerName\": \"files3\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": true,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest\",\r\n \"name\": \"skintali-petest\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"skintali-test\",\r\n \"etag\": \"AAAAABG1KNU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [\r\n {\r\n \"filterName\": \"test\",\r\n \"action\": \"Reject\",\r\n \"ipMask\": \"1.2.3.4\"\r\n }\r\n ],\r\n \"hostName\": \"skintali-petest.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"skintali-petest\",\r\n \"endpoint\": \"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus\",\r\n \"name\": \"msitestwestcentralus\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"routing-msi-jedi\",\r\n \"etag\": \"AAAAAAwC07g=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"ActivationFailed\",\r\n \"provisioningState\": \"Failed\",\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2\",\r\n \"name\": \"prashmopnpt2\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"prashmo-rg\",\r\n \"etag\": \"AAAAABHEcos=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"prashmopnpt2.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"prashmopnpt2\",\r\n \"endpoint\": \"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1\",\r\n \"name\": \"ankurepr1\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ankurepr-rg\",\r\n \"etag\": \"AAAAABHEcqk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ankurepr1.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ankurepr1\",\r\n \"endpoint\": \"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever\",\r\n \"name\": \"fullqueueendpoint2\",\r\n \"id\": \"e285e528-24f7-424d-8667-5c244bb0ade0\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ankur-centraluseuap-rg\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub\",\r\n \"name\": \"otherEH\",\r\n \"id\": \"071f8f89-9cf6-4695-91e2-4009f415e415\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ankurcentralusns-rp\"\r\n },\r\n {\r\n \"connectionString\": \"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub\",\r\n \"name\": \"aanadsfsdf\",\r\n \"id\": \"69b50fc1-5325-4421-83f2-60c6c795884a\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ankurcentralusns-rp\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"eventsroute\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"otherehroute\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"otherEH\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"fullqueueroute\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"fullqueueendpoint2\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S3\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions\",\r\n \"name\": \"shishu-hub12partitions\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"shishu-resourcegroup\",\r\n \"etag\": \"AAAAAA+VcBk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"shishu-hub12partitions.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 12,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\",\r\n \"4\",\r\n \"5\",\r\n \"6\",\r\n \"7\",\r\n \"8\",\r\n \"9\",\r\n \"10\",\r\n \"11\"\r\n ],\r\n \"path\": \"shishu-hub12partitions\",\r\n \"endpoint\": \"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue\",\r\n \"name\": \"queueendpoint\",\r\n \"id\": \"4c681f28-44d8-43ac-a623-d2f0578c23ee\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n },\r\n {\r\n \"connectionString\": \"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates\",\r\n \"name\": \"specialqueueendpoint\",\r\n \"id\": \"98dd49e3-6af7-4573-8198-66ca53e18bbc\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub\",\r\n \"name\": \"eventhub1\",\r\n \"id\": \"38dca58d-7963-4c74-99be-d917172fb1a1\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n },\r\n {\r\n \"connectionString\": \"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2\",\r\n \"name\": \"queue1\",\r\n \"id\": \"c8c8d6d4-43d0-4768-bdc0-d32481435dbb\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n },\r\n {\r\n \"connectionString\": \"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms\",\r\n \"name\": \"endpoint11\",\r\n \"id\": \"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-EventHub-SouthCentralUS\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"queue1route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"queue1\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"specialqueueroute\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"specialqueueendpoint\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub\",\r\n \"name\": \"ServiceBusQueueRoutingRunnerScenarioTests-hub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"SouthCentralUS\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ServiceBusQueueRoutingRunnerScenarioTests-rg\",\r\n \"etag\": \"AAAAAA8m4Io=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"South Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"servicebusqueueroutingrun\",\r\n \"endpoint\": \"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq\",\r\n \"name\": \"ServiceBusQueueRoutingRunnerScenarioTests-sbq\",\r\n \"id\": \"6e1de923-2ae1-4f6a-9759-a95a7ee01662\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ServiceBusQueueRoutingRunnerScenarioTests-rg\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"RouteToSBQueueMessagesWithBody\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$body.ScenarioName = 'RouteToSBQueueMessagesWithBody'\",\r\n \"endpointNames\": [\r\n \"ServiceBusQueueRoutingRunnerScenarioTests-sbq\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToSBQueueMessagesWithAppProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"ScenarioName = 'RouteToSBQueueMessagesWithAppProperties'\",\r\n \"endpointNames\": [\r\n \"ServiceBusQueueRoutingRunnerScenarioTests-sbq\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToSBQueueMessagesWithSystemProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$contentEncoding = 'UTF-32'\",\r\n \"endpointNames\": [\r\n \"ServiceBusQueueRoutingRunnerScenarioTests-sbq\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub\",\r\n \"name\": \"ServiceBusTopicRoutingRunnerScenarioTests-hub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"SouthCentralUS\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ServiceBusTopicRoutingRunnerScenarioTests-rg\",\r\n \"etag\": \"AAAAAA8nY0I=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"South Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"servicebustopicroutingrun\",\r\n \"endpoint\": \"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt\",\r\n \"name\": \"ServiceBusTopicRoutingRunnerScenarioTests-sbt\",\r\n \"id\": \"c2c11d23-ed7c-4908-bd5b-48e5739976bc\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ServiceBusTopicRoutingRunnerScenarioTests-rg\"\r\n }\r\n ],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"RouteToSBTopicMessagesWithBody\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$body.ScenarioName = 'RouteToSBTopicMessagesWithBody'\",\r\n \"endpointNames\": [\r\n \"ServiceBusTopicRoutingRunnerScenarioTests-sbt\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToSBTopicMessagesAppProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"ScenarioName = 'RouteToSBTopicMessagesAppProperties'\",\r\n \"endpointNames\": [\r\n \"ServiceBusTopicRoutingRunnerScenarioTests-sbt\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToSBTopicMessagesWithSystemProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$contentEncoding = 'UTF-32'\",\r\n \"endpointNames\": [\r\n \"ServiceBusTopicRoutingRunnerScenarioTests-sbt\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub\",\r\n \"name\": \"StorageContainerRoutingRunnerScenarioTests-hub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"SouthCentralUS\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"StorageContainerRoutingRunnerScenarioTests-rg\",\r\n \"etag\": \"AAAAAA8n8Wo=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"South Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"storagecontainerroutingru\",\r\n \"endpoint\": \"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****\",\r\n \"containerName\": \"storageconsttestct\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 60,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"storageconsttestac\",\r\n \"id\": \"835b0694-aa10-443c-9ab3-4e2120aaa329\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"StorageContainerRoutingRunnerScenarioTests-rg\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"RouteToStorageMessagesWithBody\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$body.ScenarioName = 'RouteToStorageMessagesWithBody'\",\r\n \"endpointNames\": [\r\n \"storageconsttestac\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToStorageMessagesWithAppProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"ScenarioName = 'RouteToStorageMessagesWithAppProperties'\",\r\n \"endpointNames\": [\r\n \"storageconsttestac\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToStorageMessagesWithSystemProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$contentEncoding = 'UTF-32'\",\r\n \"endpointNames\": [\r\n \"storageconsttestac\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub\",\r\n \"name\": \"maga-cdm-hub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"maga-rg\",\r\n \"etag\": \"AAAAABHJ8uU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"maga-cdm-hub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"maga-cdm-hub\",\r\n \"endpoint\": \"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test\",\r\n \"name\": \"rajeev-s2s-hub-test\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"rajeev-rg\",\r\n \"etag\": \"AAAAABHKQ5c=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [\r\n {\r\n \"filterName\": \"All\",\r\n \"action\": \"Reject\",\r\n \"ipMask\": \"0.0.0.0/0\"\r\n }\r\n ],\r\n \"hostName\": \"rajeev-s2s-hub-test.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"rajeev-s2s-hub-test\",\r\n \"endpoint\": \"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12\",\r\n \"name\": \"kapiltls12\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"kapil-test2\",\r\n \"etag\": \"AAAAAA1rQ2w=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"kapiltls12.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"kapiltls12\",\r\n \"endpoint\": \"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub\",\r\n \"name\": \"chschill-hub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"chschill-rg\",\r\n \"etag\": \"AAAAAA2SnoU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"chschill-hub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"chschill-hub\",\r\n \"endpoint\": \"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02\",\r\n \"name\": \"juan-hub-02\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"jucarpio-test\",\r\n \"etag\": \"AAAAAA50GdU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"juan-hub-02.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"juan-hub-02\",\r\n \"endpoint\": \"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1\",\r\n \"name\": \"sbq11111\",\r\n \"id\": \"c89a2c9c-6a03-4604-a3bc-adba698e465a\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"jucarpio-test\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt\",\r\n \"name\": \"topicendpoint1\",\r\n \"id\": \"7dff698f-aa7b-4b96-ade7-00ac417a126c\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-ServiceBus-SouthCentralUS\"\r\n }\r\n ],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn\",\r\n \"name\": \"eventhub-endpoint1\",\r\n \"id\": \"914cc7e7-0cd6-4d60-8b00-977e7ffd4897\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-EventHub-SouthCentralUS\"\r\n },\r\n {\r\n \"connectionString\": \"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85\",\r\n \"name\": \"eventhub-endpoint\",\r\n \"id\": \"0759f7f5-fab3-4534-84a0-c4429b1234b1\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-EventHub-SouthCentralUS\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****\",\r\n \"containerName\": \"asdfasdf\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"erwtewgegf\",\r\n \"id\": \"93ce7830-eff6-43e7-86b7-083ea162adc5\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affanbcRG982788\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****\",\r\n \"containerName\": \"asdfasdf\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"vbbdcbcvbvxc\",\r\n \"id\": \"79f233ee-4f2e-4b02-967d-1decca932e4f\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affanbcRG982788\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****\",\r\n \"containerName\": \"asdfasdf\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"test111\",\r\n \"id\": \"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affanbcRG982788\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****\",\r\n \"containerName\": \"asdfasdf\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"routingimprovementtest1\",\r\n \"id\": \"5d40c3ee-9612-4518-a9e7-9e9734b100af\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affanbcRG982788\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****\",\r\n \"containerName\": \"asdfasdf\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"cvgdfgdfghdf\",\r\n \"id\": \"7f3bb21d-57b9-40b9-9392-98f5198ee510\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affanbcRG982788\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"sbq11111\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2\",\r\n \"name\": \"andbuc-test-pe-create2\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"andbuc-test\",\r\n \"etag\": \"AAAAAA3iQD4=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"andbuc-test-pe-create2.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"andbuc-test-pe-create2\",\r\n \"endpoint\": \"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03\",\r\n \"name\": \"juan-hub-03\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"west central us\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"jucarpio-test\",\r\n \"etag\": \"AAAAABHu+0Y=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"juan-hub-03.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"juan-hub-03\",\r\n \"endpoint\": \"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary\",\r\n \"name\": \"zadixoncanary\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"zadixon\",\r\n \"etag\": \"AAAAABG1hUw=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"zadixoncanary.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"zadixoncanary\",\r\n \"endpoint\": \"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"dt\",\r\n \"source\": \"DigitalTwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub\",\r\n \"name\": \"EventHubRoutingRunnerScenarioTests-hub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"SouthCentralUS\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"EventHubRoutingRunnerScenarioTests-rg\",\r\n \"etag\": \"AAAAAA8mGIc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"South Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"eventhubroutingrunnerscen\",\r\n \"endpoint\": \"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh\",\r\n \"name\": \"EventHubRoutingRunnerScenarioTests-eh\",\r\n \"id\": \"8cbe3db4-246e-4c34-b25f-700d9a357d4f\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"EventHubRoutingRunnerScenarioTests-rg\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"RouteToEventHubMessagesWithBody\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$body.ScenarioName = 'RouteToEventHubMessagesWithBody'\",\r\n \"endpointNames\": [\r\n \"EventHubRoutingRunnerScenarioTests-eh\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToEventHubMessagesWithAppProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"ScenarioName = 'RouteToEventHubMessagesWithAppProperties'\",\r\n \"endpointNames\": [\r\n \"EventHubRoutingRunnerScenarioTests-eh\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToEventHubMessagesWithSystemProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$contentEncoding = 'UTF-32'\",\r\n \"endpointNames\": [\r\n \"EventHubRoutingRunnerScenarioTests-eh\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub\",\r\n \"name\": \"PGTestHub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"RYFELDMA-DevTest\",\r\n \"etag\": \"AAAAAA4iqXs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"PGTestHub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"pgtesthub\",\r\n \"endpoint\": \"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub\",\r\n \"name\": \"nimengan-testhub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"nimengan-rg\",\r\n \"etag\": \"AAAAAA7HkVI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"nimengan-testhub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"nimengan-testhub\",\r\n \"endpoint\": \"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526\",\r\n \"name\": \"NenadGroupWhub061320-090526\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"NenadGroupW-rg\",\r\n \"etag\": \"AAAAABCdaH0=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"NenadGroupWhub061320-090526.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"nenadgroupwhub061320-0905\",\r\n \"endpoint\": \"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 100\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549\",\r\n \"name\": \"NenadGroupWhub061320-112549\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"NenadGroupW-rg\",\r\n \"etag\": \"AAAAABCdaHs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"NenadGroupWhub061320-112549.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"nenadgroupwhub061320-1125\",\r\n \"endpoint\": \"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 100\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108\",\r\n \"name\": \"NenadGroupWhub061320-114108\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"NenadGroupW-rg\",\r\n \"etag\": \"AAAAABCdaHw=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"NenadGroupWhub061320-114108.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"nenadgroupwhub061320-1141\",\r\n \"endpoint\": \"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 100\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152\",\r\n \"name\": \"NenadGroupWhub061320-124152\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"NenadGroupW-rg\",\r\n \"etag\": \"AAAAABCdaIA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"NenadGroupWhub061320-124152.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"nenadgroupwhub061320-1241\",\r\n \"endpoint\": \"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 100\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820\",\r\n \"name\": \"NenadGroupEEhub061320-011820\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"NenadGroupEE-rg\",\r\n \"etag\": \"AAAAABARwho=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"IdentityCreated\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 100\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061520-082155\",\r\n \"name\": \"NenadGroupEEhub061520-082155\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"NenadGroupEE-rg\",\r\n \"etag\": \"AAAAABHaT50=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"NenadGroupEEhub061520-082155.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"nenadgroupeehub061520-082\",\r\n \"endpoint\": \"sb://iothub-ns-nenadgroup-3633686-6c774ecd7d.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 100\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6458/providers/Microsoft.Devices/IotHubs/ps6230\",\r\n \"name\": \"ps6230\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6458\",\r\n \"etag\": \"AAAAABK8BQU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6230.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6230\",\r\n \"endpoint\": \"sb://iothub-ns-ps6230-3639386-9e2facacc0.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub5969.servicebus.windows.net:5671/;SharedAccessKeyName=ps6604;SharedAccessKey=****;EntityPath=ps1395\",\r\n \"name\": \"ps3850\",\r\n \"id\": \"6c38dabd-946a-46db-b8de-fcc440485d16\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps6458\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps7106\",\r\n \"id\": \"87692dcc-dd91-41b0-9d1a-4d9cfe535e69\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps673\",\r\n \"id\": \"2bc99b01-b4cb-4942-a5e9-10ec4c3798cf\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap\",\r\n \"name\": \"vishalg-euap\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"vishalg\",\r\n \"etag\": \"AAAAABG1D7I=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"vishalg-euap.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 2,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\"\r\n ],\r\n \"path\": \"vishalg-euap\",\r\n \"endpoint\": \"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2\",\r\n \"name\": \"slowqueue2\",\r\n \"id\": \"ac634d18-4fb5-42e2-9885-25fd4bfae4a0\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-ServiceBus-SouthCentralUS\"\r\n },\r\n {\r\n \"connectionString\": \"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest\",\r\n \"name\": \"deadqueue\",\r\n \"id\": \"88d2a443-b1a0-4f6b-9815-a88d7414cc77\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ankur-centraluseuap-rg\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****\",\r\n \"containerName\": \"jsontest\",\r\n \"fileNameFormat\": \"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json\",\r\n \"batchFrequencyInSeconds\": 60,\r\n \"maxChunkSizeInBytes\": 10485760,\r\n \"encoding\": \"json\",\r\n \"name\": \"jsontestep\",\r\n \"id\": \"247a72ba-e596-4dc5-be1f-7989711dc273\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"vishalg\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"jsonstorageroute\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"jsontestep\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"lifecycle\",\r\n \"source\": \"DeviceLifecycleEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"deadroute\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"deadqueue\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1\",\r\n \"name\": \"sapan-iot-1\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"gfd\": \"gfh\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"sapan-rg\",\r\n \"etag\": \"AAAAAC/GEik=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"sapan-iot-1.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"sapan-iot-1\",\r\n \"endpoint\": \"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****\",\r\n \"containerName\": \"testc\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"storage1\",\r\n \"id\": \"e1a7703b-1962-48b2-9c43-3d817392aa7c\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"sapan-rg\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"storage1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT17H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT3H\",\r\n \"maxDeliveryCount\": 40\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT11H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT17H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub\",\r\n \"name\": \"RoutingRunnerScenarioTests-hub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"SouthCentralUS\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"RoutingRunnerScenarioTests-rg\",\r\n \"etag\": \"AAAAAC8be8I=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"South Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"RoutingRunnerScenarioTests-hub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"routingrunnerscenariotest\",\r\n \"endpoint\": \"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq\",\r\n \"name\": \"RoutingRunnerScenarioTestsSbqTest-sbq\",\r\n \"id\": \"9ec58066-d8d2-4987-85d7-b46e93446989\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"RoutingRunnerScenarioTests-rg\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt\",\r\n \"name\": \"RoutingRunnerScenarioTestsSbTopicTest-sbt\",\r\n \"id\": \"482e40f0-1eac-4674-b50c-48eff2948b68\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"RoutingRunnerScenarioTests-rg\"\r\n }\r\n ],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh\",\r\n \"name\": \"RoutingRunnerScenarioTestsEhTest-eh\",\r\n \"id\": \"50a95a4a-bde8-4e85-9760-77b2ebeed2d6\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"RoutingRunnerScenarioTests-rg\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****\",\r\n \"containerName\": \"routingrunsttestct\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 60,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"routingrunsttestac\",\r\n \"id\": \"51239e82-6c64-496d-8b20-8408de5ad58f\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"RoutingRunnerScenarioTests-rg\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [\r\n {\r\n \"name\": \"RouteToEventHubMessagesWithBody\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$body.ScenarioName = 'RouteToEventHubMessagesWithBody'\",\r\n \"endpointNames\": [\r\n \"RoutingRunnerScenarioTestsEhTest-eh\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToEventHubMessagesWithAppProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"ScenarioName = 'RouteToEventHubMessagesWithAppProperties'\",\r\n \"endpointNames\": [\r\n \"RoutingRunnerScenarioTestsEhTest-eh\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToEventHubMessagesWithSystemProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$contentEncoding = 'UTF-32'\",\r\n \"endpointNames\": [\r\n \"RoutingRunnerScenarioTestsEhTest-eh\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToSBQueueMessagesWithBody\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$body.ScenarioName = 'RouteToSBQueueMessagesWithBody'\",\r\n \"endpointNames\": [\r\n \"RoutingRunnerScenarioTestsSbqTest-sbq\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToSBQueueMessagesWithAppProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"ScenarioName = 'RouteToSBQueueMessagesWithAppProperties'\",\r\n \"endpointNames\": [\r\n \"RoutingRunnerScenarioTestsSbqTest-sbq\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToSBQueueMessagesWithSystemProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$contentEncoding = 'UTF-32'\",\r\n \"endpointNames\": [\r\n \"RoutingRunnerScenarioTestsSbqTest-sbq\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToSBTopicMessagesWithBody\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$body.ScenarioName = 'RouteToSBTopicMessagesWithBody'\",\r\n \"endpointNames\": [\r\n \"RoutingRunnerScenarioTestsSbTopicTest-sbt\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToSBTopicMessagesAppProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"ScenarioName = 'RouteToSBTopicMessagesAppProperties'\",\r\n \"endpointNames\": [\r\n \"RoutingRunnerScenarioTestsSbTopicTest-sbt\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToSBTopicMessagesWithSystemProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$contentEncoding = 'UTF-32'\",\r\n \"endpointNames\": [\r\n \"RoutingRunnerScenarioTestsSbTopicTest-sbt\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToStorageMessagesWithBody\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$body.ScenarioName = 'RouteToStorageMessagesWithBody'\",\r\n \"endpointNames\": [\r\n \"routingrunsttestac\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToStorageMessagesWithAppProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"ScenarioName = 'RouteToStorageMessagesWithAppProperties'\",\r\n \"endpointNames\": [\r\n \"routingrunsttestac\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToStorageMessagesWithSystemProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$contentEncoding = 'UTF-32'\",\r\n \"endpointNames\": [\r\n \"routingrunsttestac\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub\",\r\n \"name\": \"EgMgmtTest-hub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"EgMgmtTest-rg\",\r\n \"etag\": \"AAAAAJ0Np1E=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"EgMgmtTest-hub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"egmgmttest-hub\",\r\n \"endpoint\": \"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm\",\r\n \"name\": \"sachinctest0515arm\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"sachinctest\",\r\n \"etag\": \"AAAAAC8tF8Q=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"sachinctest0515arm.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"sachinctest0515arm\",\r\n \"endpoint\": \"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub\",\r\n \"name\": \"ea-genhub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ea-gen\",\r\n \"etag\": \"AAAAAC+H52s=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ea-genhub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ea-genhub\",\r\n \"endpoint\": \"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub\",\r\n \"name\": \"askhura-iot-hub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"tagkey\": \"tagvalue\",\r\n \"foo\": \"bar\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"askhura-test-rg\",\r\n \"etag\": \"AAAAAJOqXdA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [\r\n {\r\n \"filterName\": \"testrule14\",\r\n \"action\": \"Reject\",\r\n \"ipMask\": \"192.168.1.234\"\r\n }\r\n ],\r\n \"hostName\": \"askhura-iot-hub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 3,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"askhura-iot-hub\",\r\n \"endpoint\": \"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2\",\r\n \"name\": \"queue-endpoint\",\r\n \"id\": \"a716d889-d131-48bb-8bdd-9e667958c89f\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-ServiceBus-SouthCentralUS\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1\",\r\n \"name\": \"testeh\",\r\n \"id\": \"edc2275d-5f74-4f08-9555-50905b567f7a\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"dexterm-rg\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****\",\r\n \"containerName\": \"hirachyshishu1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"aaaaaa\",\r\n \"id\": \"d8ab0b4d-faeb-4557-a976-92a64413ae10\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****\",\r\n \"containerName\": \"pnptest\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"teststorage\",\r\n \"id\": \"4aa10acb-a1a5-41d0-a7b3-fea883eff17e\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affandarrg\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****\",\r\n \"containerName\": \"pnptest3\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"iliesendpoint\",\r\n \"id\": \"9fe146f2-9a47-419d-a424-ab83e11a7e49\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affandarrg\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****\",\r\n \"containerName\": \"asdfasdf\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"testextension\",\r\n \"id\": \"b9108ec6-380f-4e86-aa7f-90f172923170\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affanbcRG982788\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****\",\r\n \"containerName\": \"asdfasdf\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"testendpoint1\",\r\n \"id\": \"14a526a0-70d1-4110-939e-d21eb5a95fc4\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affanbcRG982788\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****\",\r\n \"containerName\": \"asdfasdf\",\r\n \"fileNameFormat\": \"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"sgdfgdfgd\",\r\n \"id\": \"84727b46-89d4-481a-8c90-909075629138\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affanbcRG982788\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****\",\r\n \"containerName\": \"asdfasdf\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"adadfasdasd\",\r\n \"id\": \"3051e742-b322-4f50-b04b-059b4e716271\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affanbcRG982788\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"storage-endpoint\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"aaaaaa\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"icmtest\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"teststorage\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"dfgdgd\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"aaaaaa\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"service-queue-endpoint\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"queue-endpoint\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT6H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest\",\r\n \"name\": \"maxgpgtest\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"maxgtest\",\r\n \"etag\": \"AAAAAC8tbKo=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"maxgpgtest.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 2,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\"\r\n ],\r\n \"path\": \"maxgpgtest\",\r\n \"endpoint\": \"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub\",\r\n \"name\": \"asrudra-iot-hub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"adsfdsa\": \"ssdfgh\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"asrudra\",\r\n \"etag\": \"AAAAADIQ/LA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"asrudra-iot-hub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"asrudra-iot-hub\",\r\n \"endpoint\": \"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"hjqjksdjksd\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub\",\r\n \"name\": \"eliohub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"eliorg\",\r\n \"etag\": \"AAAAAC80T6c=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"eliohub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"eliohub\",\r\n \"endpoint\": \"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2\",\r\n \"name\": \"eliohub2\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"eliorg\",\r\n \"etag\": \"AAAAAB0NTY8=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"eliohub2.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"eliohub2\",\r\n \"endpoint\": \"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm\",\r\n \"name\": \"dmpypin-cdm\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"dmpypin-cdm\",\r\n \"etag\": \"AAAAABG2jrg=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"dmpypin-cdm.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 2,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\"\r\n ],\r\n \"path\": \"dmpypin-cdm\",\r\n \"endpoint\": \"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest\",\r\n \"name\": \"cymgtest\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"cymgtest\",\r\n \"etag\": \"AAAAABHqbwY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"cymgtest.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"cymgtest\",\r\n \"endpoint\": \"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon\",\r\n \"name\": \"testopsmon\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"jichangrg\",\r\n \"etag\": \"AAAAAC/PcHM=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"testopsmon.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"testopsmon\",\r\n \"endpoint\": \"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt\",\r\n \"name\": \"dmpypin-cdm-pvt\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"dmpypin-cdm\",\r\n \"etag\": \"AAAAABG2kBs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"dmpypin-cdm-pvt.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"dmpypin-cdm-pvt\",\r\n \"endpoint\": \"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub\",\r\n \"name\": \"infra-edge-validation-hub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"infradeploymentverification\",\r\n \"etag\": \"AAAAAC84NYo=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"infra-edge-validation-hub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"infra-edge-validation-hub\",\r\n \"endpoint\": \"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test\",\r\n \"name\": \"ailn-test\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ailn-test\",\r\n \"etag\": \"AAAAAFltxU4=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [\r\n {\r\n \"filterName\": \"blockall\",\r\n \"action\": \"Accept\",\r\n \"ipMask\": \"1.2.3.4/32\"\r\n }\r\n ],\r\n \"hostName\": \"ailn-test.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ailn-test\",\r\n \"endpoint\": \"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test\",\r\n \"name\": \"maga-canary-test\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"maga-rg\",\r\n \"etag\": \"AAAAAFIUI1A=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"maga-canary-test.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"maga-canary-test\",\r\n \"endpoint\": \"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1\",\r\n \"name\": \"service-bus\",\r\n \"id\": \"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-ServiceBus-SouthCentralUS\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route-1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"false\",\r\n \"endpointNames\": [\r\n \"service-bus\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route-2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus\",\r\n \"name\": \"postame20190730-westus\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"jl20190730\",\r\n \"etag\": \"AAAAAC/av0I=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"postame20190730-westus.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"postame20190730-westus\",\r\n \"endpoint\": \"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test\",\r\n \"name\": \"shsin-test\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"shsin-test\",\r\n \"etag\": \"AAAAAB1Po/8=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"shsin-test.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"shsin-test\",\r\n \"endpoint\": \"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1\",\r\n \"name\": \"shsin-test1\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"shsin-test\",\r\n \"etag\": \"AAAAACDsoxY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"shsin-test1.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"shsin-test1\",\r\n \"endpoint\": \"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari\",\r\n \"name\": \"lanhikari\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"hubhikari\",\r\n \"etag\": \"AAAAAC+iJFU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"lanhikari.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"lanhikari\",\r\n \"endpoint\": \"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test\",\r\n \"name\": \"maga-walmart-test\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"maga-rg\",\r\n \"etag\": \"AAAAAC9E/gw=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"maga-walmart-test.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"maga-walmart-test\",\r\n \"endpoint\": \"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1\",\r\n \"name\": \"maga-sb\",\r\n \"id\": \"25db0af1-47e1-4c05-b496-3fe45b8a30fd\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-ServiceBus-SouthCentralUS\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route-1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"false\",\r\n \"endpointNames\": [\r\n \"maga-sb\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route-2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"false\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary\",\r\n \"name\": \"vishalg-canary\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"vishalg\",\r\n \"etag\": \"AAAAABG4zHE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"vishalg-canary.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"vishalg-canary\",\r\n \"endpoint\": \"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever\",\r\n \"name\": \"queue-endpoint\",\r\n \"id\": \"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ankur-centraluseuap-rg\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****\",\r\n \"containerName\": \"alklindesktopgvd664qrouting\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"storage\",\r\n \"id\": \"0baf4317-6d55-4da4-b43f-22cdd7b18282\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-Storage-WestUS\"\r\n }\r\n ]\r\n },\r\n \"enrichments\": [],\r\n \"routes\": [\r\n {\r\n \"name\": \"default\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"Storage-Route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"storage\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"queuq-route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"queue-endpoint\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 3\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest\",\r\n \"name\": \"test-hub-rest\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"sanand-rg\",\r\n \"etag\": \"AAAAABLTxns=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"North Europe\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"test-hub-rest.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"test-hub-rest\",\r\n \"endpoint\": \"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c\",\r\n \"name\": \"testMsgEnrichmentfkx2le3c\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"testMsg\",\r\n \"etag\": \"AAAAAC962ZE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"testMsgEnrichmentfkx2le3c.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 2,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\"\r\n ],\r\n \"path\": \"testmsgenrichmentfkx2le3c\",\r\n \"endpoint\": \"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c\",\r\n \"name\": \"ContosoSBQueueEndpoint\",\r\n \"id\": \"c09328cb-8421-4dc6-aade-8dddcc75e0ed\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"testMsg\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****\",\r\n \"containerName\": \"contosoresults\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ContosoStorageEndpoint\",\r\n \"id\": \"be2db98d-a24e-4ec0-bbee-43d9a10a2529\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"testMsg\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"ContosoStorageRoute\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"level=\\\"storage\\\"\",\r\n \"endpointNames\": [\r\n \"ContosoStorageEndpoint\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"ContosoSBQueueRoute\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"level=\\\"critical\\\"\",\r\n \"endpointNames\": [\r\n \"ContosoSBQueueEndpoint\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test\",\r\n \"name\": \"ns-hub-test\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"sanand-rg\",\r\n \"etag\": \"AAAAABG00NE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ns-hub-test.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ns-hub-test\",\r\n \"endpoint\": \"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing\",\r\n \"name\": \"xinyiz-distributedtracing\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"xinyiz-distributedtracing\",\r\n \"etag\": \"AAAAAJOq7xc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [\r\n {\r\n \"filterName\": \"test-rule\",\r\n \"action\": \"Accept\",\r\n \"ipMask\": \"127.0.0.0/31\"\r\n }\r\n ],\r\n \"hostName\": \"xinyiz-distributedtracing.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"xinyiz-distributedtracing\",\r\n \"endpoint\": \"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2\",\r\n \"name\": \"eriwand2\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"eriwan-d2\",\r\n \"etag\": \"AAAAABG5oJQ=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"eriwand2.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"eriwand2\",\r\n \"endpoint\": \"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub\",\r\n \"name\": \"dexterm-hub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"dexterm-rg\",\r\n \"etag\": \"AAAAACDQZqk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"dexterm-hub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 2,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\"\r\n ],\r\n \"path\": \"dexterm-hub\",\r\n \"endpoint\": \"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1\",\r\n \"name\": \"dextermeventhub\",\r\n \"id\": \"adc82a8a-b065-47cd-b1a2-efe496ea368e\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"dexterm-rg\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"dexternroutes\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\\\"yes\\\"\",\r\n \"endpointNames\": [\r\n \"dextermeventhub\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"dextern-iot-hub-edgedevice\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$twin.tags.dexteredgedevice.troubleshoot=\\\"true\\\"\",\r\n \"endpointNames\": [\r\n \"dextermeventhub\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate\",\r\n \"name\": \"dexterm-testiothubcreate\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"dexterm-rg\",\r\n \"etag\": \"AAAAAC/yWZw=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"dexterm-testiothubcreate.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"dexterm-testiothubcreate\",\r\n \"endpoint\": \"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2\",\r\n \"name\": \"dexterm-testiothubcreate2\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"dexterm-rg\",\r\n \"etag\": \"AAAAAC/yWaQ=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"dexterm-testiothubcreate2.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"dexterm-testiothubcreate2\",\r\n \"endpoint\": \"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope\",\r\n \"name\": \"dexterm-hub-northeurope\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"dextermrgneurope\",\r\n \"etag\": \"AAAAACEshxA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West Europe\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"dexterm-hub-northeurope.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"dexterm-hub-northeurope\",\r\n \"endpoint\": \"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1\",\r\n \"name\": \"dextermeventhub\",\r\n \"id\": \"de045626-d820-4873-b411-629ec8bda685\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"dexterm-rg\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"dextermepforneuropehub\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\\\"yes\\\"\",\r\n \"endpointNames\": [\r\n \"dextermeventhub\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01\",\r\n \"name\": \"csharp-iotuap-eastus-01\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"csharp-iotuap-eastus-01\",\r\n \"etag\": \"AAAAAB1c+wo=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"csharp-iotuap-eastus-01.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 2,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\"\r\n ],\r\n \"path\": \"csharp-iotuap-eastus-01\",\r\n \"endpoint\": \"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****\",\r\n \"containerName\": \"aziotbld\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest\",\r\n \"name\": \"mchai-repartitiontest\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"repartitiontest\",\r\n \"etag\": \"AAAAABG+qNc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"mchai-repartitiontest.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"mchai-repartitiontest\",\r\n \"endpoint\": \"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2\",\r\n \"name\": \"20200124-Eastus2euap-2\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"johnlang-resources\",\r\n \"etag\": \"AAAAABG1AQk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"20200124-Eastus2euap-2.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"20200124-eastus2euap-2\",\r\n \"endpoint\": \"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest\",\r\n \"name\": \"maxeasttest\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"mgtlab\",\r\n \"etag\": \"AAAAAJOrvLQ=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"maxeasttest.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"maxeasttest\",\r\n \"endpoint\": \"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih\",\r\n \"name\": \"zhangyih\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"zhangyih-test\",\r\n \"etag\": \"AAAAAC97gL8=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"zhangyih.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"zhangyih\",\r\n \"endpoint\": \"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue\",\r\n \"name\": \"zhangyih-sb-queue\",\r\n \"id\": \"471d8b6b-f1a6-4d62-a761-752474e7e689\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"zhangyih-test\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****\",\r\n \"containerName\": \"insights-logs-auditevent\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"zhangyih-storage-endpoint\",\r\n \"id\": \"164d47f1-f764-4a69-a467-eb20e02bd8ce\",\r\n \"subscriptionId\": \"2db1b828-b94e-4c59-87ae-cc9d0f19baaf\",\r\n \"resourceGroup\": \"ih-test-001-kv-rg\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"test-sb-queue\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"level=\\\"critical\\\"\",\r\n \"endpointNames\": [\r\n \"zhangyih-sb-queue\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"test_telemetry\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"level=\\\"storage\\\"\",\r\n \"endpointNames\": [\r\n \"zhangyih-storage-endpoint\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs\",\r\n \"name\": \"TeshHubInCentralUs\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"rechaniothubcit-Migrated\",\r\n \"etag\": \"AAAAADAB9mY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"TeshHubInCentralUs.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"teshhubincentralus\",\r\n \"endpoint\": \"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1\",\r\n \"name\": \"raj-plain-hub1\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"raj-msi-rg\",\r\n \"etag\": \"AAAAABG1AmE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"raj-plain-hub1.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"raj-plain-hub1\",\r\n \"endpoint\": \"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****\",\r\n \"containerName\": \"files1\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": true,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2\",\r\n \"name\": \"raj-plain-hub2\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"raj-msi-rg\",\r\n \"etag\": \"AAAAAJOrvMw=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"raj-plain-hub2.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"raj-plain-hub2\",\r\n \"endpoint\": \"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****\",\r\n \"containerName\": \"files3\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": true,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest\",\r\n \"name\": \"skintali-petest\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"skintali-test\",\r\n \"etag\": \"AAAAAJRm/ws=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [\r\n {\r\n \"filterName\": \"test\",\r\n \"action\": \"Reject\",\r\n \"ipMask\": \"1.2.3.4\"\r\n },\r\n {\r\n \"filterName\": \"test2\",\r\n \"action\": \"Reject\",\r\n \"ipMask\": \"2.3.4.5\"\r\n }\r\n ],\r\n \"hostName\": \"skintali-petest.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"skintali-petest\",\r\n \"endpoint\": \"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://skintalipetest.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_skintali-petest;SharedAccessKey=****;EntityPath=test\",\r\n \"name\": \"skintalipetest\",\r\n \"id\": \"d7b3de2c-ed44-4801-81fd-193b9ed663c7\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"skintalipetest\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"test\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"skintalipetest\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus\",\r\n \"name\": \"msitestwestcentralus\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"routing-msi-jedi\",\r\n \"etag\": \"AAAAAAwC07g=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"ActivationFailed\",\r\n \"provisioningState\": \"Failed\",\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2\",\r\n \"name\": \"prashmopnpt2\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"prashmo-rg\",\r\n \"etag\": \"AAAAABHEcos=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"prashmopnpt2.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"prashmopnpt2\",\r\n \"endpoint\": \"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1\",\r\n \"name\": \"ankurepr1\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ankurepr-rg\",\r\n \"etag\": \"AAAAABHEcqk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ankurepr1.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ankurepr1\",\r\n \"endpoint\": \"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever\",\r\n \"name\": \"fullqueueendpoint2\",\r\n \"id\": \"e285e528-24f7-424d-8667-5c244bb0ade0\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ankur-centraluseuap-rg\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub\",\r\n \"name\": \"otherEH\",\r\n \"id\": \"071f8f89-9cf6-4695-91e2-4009f415e415\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ankurcentralusns-rp\"\r\n },\r\n {\r\n \"connectionString\": \"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub\",\r\n \"name\": \"aanadsfsdf\",\r\n \"id\": \"69b50fc1-5325-4421-83f2-60c6c795884a\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ankurcentralusns-rp\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"eventsroute\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"otherehroute\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"otherEH\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"fullqueueroute\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"fullqueueendpoint2\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S3\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions\",\r\n \"name\": \"shishu-hub12partitions\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"shishu-resourcegroup\",\r\n \"etag\": \"AAAAAHa6vfw=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"shishu-hub12partitions.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 12,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\",\r\n \"4\",\r\n \"5\",\r\n \"6\",\r\n \"7\",\r\n \"8\",\r\n \"9\",\r\n \"10\",\r\n \"11\"\r\n ],\r\n \"path\": \"shishu-hub12partitions\",\r\n \"endpoint\": \"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub\",\r\n \"name\": \"eventhub1\",\r\n \"id\": \"38dca58d-7963-4c74-99be-d917172fb1a1\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n },\r\n {\r\n \"connectionString\": \"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eh0722\",\r\n \"name\": \"eh0722\",\r\n \"id\": \"f3e2a20a-eb63-4e2b-9501-c2e86e8613e3\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n },\r\n {\r\n \"connectionString\": \"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=twinchange\",\r\n \"name\": \"twinchange\",\r\n \"id\": \"24c307e4-788d-4e49-8db7-dde8c20281b1\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"shishu-resourcegroup\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"lifecycleroute\",\r\n \"source\": \"DeviceLifecycleEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh0722\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"twinchangeroute\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"twinchange\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub\",\r\n \"name\": \"ServiceBusQueueRoutingRunnerScenarioTests-hub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"SouthCentralUS\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ServiceBusQueueRoutingRunnerScenarioTests-rg\",\r\n \"etag\": \"AAAAAJ0YD3w=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"South Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"servicebusqueueroutingrun\",\r\n \"endpoint\": \"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq\",\r\n \"name\": \"ServiceBusQueueRoutingRunnerScenarioTests-sbq\",\r\n \"id\": \"6e1de923-2ae1-4f6a-9759-a95a7ee01662\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ServiceBusQueueRoutingRunnerScenarioTests-rg\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"RouteToSBQueueMessagesWithBody\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$body.ScenarioName = 'RouteToSBQueueMessagesWithBody'\",\r\n \"endpointNames\": [\r\n \"ServiceBusQueueRoutingRunnerScenarioTests-sbq\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToSBQueueMessagesWithAppProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"ScenarioName = 'RouteToSBQueueMessagesWithAppProperties'\",\r\n \"endpointNames\": [\r\n \"ServiceBusQueueRoutingRunnerScenarioTests-sbq\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToSBQueueMessagesWithSystemProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$contentEncoding = 'UTF-32'\",\r\n \"endpointNames\": [\r\n \"ServiceBusQueueRoutingRunnerScenarioTests-sbq\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub\",\r\n \"name\": \"ServiceBusTopicRoutingRunnerScenarioTests-hub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"SouthCentralUS\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ServiceBusTopicRoutingRunnerScenarioTests-rg\",\r\n \"etag\": \"AAAAAJ0gP7U=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"South Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"servicebustopicroutingrun\",\r\n \"endpoint\": \"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt\",\r\n \"name\": \"ServiceBusTopicRoutingRunnerScenarioTests-sbt\",\r\n \"id\": \"c2c11d23-ed7c-4908-bd5b-48e5739976bc\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ServiceBusTopicRoutingRunnerScenarioTests-rg\"\r\n }\r\n ],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"RouteToSBTopicMessagesWithBody\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$body.ScenarioName = 'RouteToSBTopicMessagesWithBody'\",\r\n \"endpointNames\": [\r\n \"ServiceBusTopicRoutingRunnerScenarioTests-sbt\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToSBTopicMessagesAppProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"ScenarioName = 'RouteToSBTopicMessagesAppProperties'\",\r\n \"endpointNames\": [\r\n \"ServiceBusTopicRoutingRunnerScenarioTests-sbt\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToSBTopicMessagesWithSystemProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$contentEncoding = 'UTF-32'\",\r\n \"endpointNames\": [\r\n \"ServiceBusTopicRoutingRunnerScenarioTests-sbt\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub\",\r\n \"name\": \"StorageContainerRoutingRunnerScenarioTests-hub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"SouthCentralUS\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"StorageContainerRoutingRunnerScenarioTests-rg\",\r\n \"etag\": \"AAAAAJ0mWcU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"South Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"storagecontainerroutingru\",\r\n \"endpoint\": \"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****\",\r\n \"containerName\": \"storageconsttestct\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 60,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"storageconsttestac\",\r\n \"id\": \"835b0694-aa10-443c-9ab3-4e2120aaa329\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"StorageContainerRoutingRunnerScenarioTests-rg\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"RouteToStorageMessagesWithBody\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$body.ScenarioName = 'RouteToStorageMessagesWithBody'\",\r\n \"endpointNames\": [\r\n \"storageconsttestac\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToStorageMessagesWithAppProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"ScenarioName = 'RouteToStorageMessagesWithAppProperties'\",\r\n \"endpointNames\": [\r\n \"storageconsttestac\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToStorageMessagesWithSystemProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$contentEncoding = 'UTF-32'\",\r\n \"endpointNames\": [\r\n \"storageconsttestac\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub\",\r\n \"name\": \"maga-cdm-hub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"maga-rg\",\r\n \"etag\": \"AAAAABHJ8uU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"maga-cdm-hub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"maga-cdm-hub\",\r\n \"endpoint\": \"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test\",\r\n \"name\": \"rajeev-s2s-hub-test\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"rajeev-rg\",\r\n \"etag\": \"AAAAABHKQ5c=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [\r\n {\r\n \"filterName\": \"All\",\r\n \"action\": \"Reject\",\r\n \"ipMask\": \"0.0.0.0/0\"\r\n }\r\n ],\r\n \"hostName\": \"rajeev-s2s-hub-test.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"rajeev-s2s-hub-test\",\r\n \"endpoint\": \"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12\",\r\n \"name\": \"kapiltls12\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"kapil-test2\",\r\n \"etag\": \"AAAAACCmbJE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"kapiltls12.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"kapiltls12\",\r\n \"endpoint\": \"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub\",\r\n \"name\": \"chschill-hub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"chschill-rg\",\r\n \"etag\": \"AAAAAB17wQY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"chschill-hub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"chschill-hub\",\r\n \"endpoint\": \"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02\",\r\n \"name\": \"juan-hub-02\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"jucarpio-test\",\r\n \"etag\": \"AAAAAJOsZRs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"juan-hub-02.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"juan-hub-02\",\r\n \"endpoint\": \"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1\",\r\n \"name\": \"sbq11111\",\r\n \"id\": \"c89a2c9c-6a03-4604-a3bc-adba698e465a\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"jucarpio-test\"\r\n }\r\n ],\r\n \"serviceBusTopics\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt\",\r\n \"name\": \"topicendpoint1\",\r\n \"id\": \"7dff698f-aa7b-4b96-ade7-00ac417a126c\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-ServiceBus-SouthCentralUS\"\r\n }\r\n ],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn\",\r\n \"name\": \"eventhub-endpoint1\",\r\n \"id\": \"914cc7e7-0cd6-4d60-8b00-977e7ffd4897\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-EventHub-SouthCentralUS\"\r\n },\r\n {\r\n \"connectionString\": \"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85\",\r\n \"name\": \"eventhub-endpoint\",\r\n \"id\": \"0759f7f5-fab3-4534-84a0-c4429b1234b1\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-EventHub-SouthCentralUS\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****\",\r\n \"containerName\": \"asdfasdf\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"erwtewgegf\",\r\n \"id\": \"93ce7830-eff6-43e7-86b7-083ea162adc5\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affanbcRG982788\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****\",\r\n \"containerName\": \"asdfasdf\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"vbbdcbcvbvxc\",\r\n \"id\": \"79f233ee-4f2e-4b02-967d-1decca932e4f\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affanbcRG982788\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****\",\r\n \"containerName\": \"asdfasdf\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"test111\",\r\n \"id\": \"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affanbcRG982788\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****\",\r\n \"containerName\": \"asdfasdf\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"routingimprovementtest1\",\r\n \"id\": \"5d40c3ee-9612-4518-a9e7-9e9734b100af\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affanbcRG982788\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****\",\r\n \"containerName\": \"asdfasdf\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"cvgdfgdfghdf\",\r\n \"id\": \"7f3bb21d-57b9-40b9-9392-98f5198ee510\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"affanbcRG982788\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"sbq11111\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2\",\r\n \"name\": \"andbuc-test-pe-create2\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"andbuc-test\",\r\n \"etag\": \"AAAAAC+a5ME=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"andbuc-test-pe-create2.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"andbuc-test-pe-create2\",\r\n \"endpoint\": \"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03\",\r\n \"name\": \"juan-hub-03\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"west central us\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"jucarpio-test\",\r\n \"etag\": \"AAAAABHu+0Y=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"juan-hub-03.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"juan-hub-03\",\r\n \"endpoint\": \"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub\",\r\n \"name\": \"EventHubRoutingRunnerScenarioTests-hub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"SouthCentralUS\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"EventHubRoutingRunnerScenarioTests-rg\",\r\n \"etag\": \"AAAAAJ0NqyE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"South Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"eventhubroutingrunnerscen\",\r\n \"endpoint\": \"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh\",\r\n \"name\": \"EventHubRoutingRunnerScenarioTests-eh\",\r\n \"id\": \"8cbe3db4-246e-4c34-b25f-700d9a357d4f\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"EventHubRoutingRunnerScenarioTests-rg\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"RouteToEventHubMessagesWithBody\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$body.ScenarioName = 'RouteToEventHubMessagesWithBody'\",\r\n \"endpointNames\": [\r\n \"EventHubRoutingRunnerScenarioTests-eh\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToEventHubMessagesWithAppProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"ScenarioName = 'RouteToEventHubMessagesWithAppProperties'\",\r\n \"endpointNames\": [\r\n \"EventHubRoutingRunnerScenarioTests-eh\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"RouteToEventHubMessagesWithSystemProperties\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"$contentEncoding = 'UTF-32'\",\r\n \"endpointNames\": [\r\n \"EventHubRoutingRunnerScenarioTests-eh\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub\",\r\n \"name\": \"nimengan-testhub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"nimengan-rg\",\r\n \"etag\": \"AAAAAFMoViU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"nimengan-testhub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"nimengan-testhub\",\r\n \"endpoint\": \"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6458/providers/Microsoft.Devices/IotHubs/ps6230\",\r\n \"name\": \"ps6230\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6458\",\r\n \"etag\": \"AAAAAB1NnWk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6230.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6230\",\r\n \"endpoint\": \"sb://iothub-ns-ps6230-3639386-9e2facacc0.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub5969.servicebus.windows.net:5671/;SharedAccessKeyName=ps6604;SharedAccessKey=****;EntityPath=ps1395\",\r\n \"name\": \"ps3850\",\r\n \"id\": \"6c38dabd-946a-46db-b8de-fcc440485d16\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"ps6458\"\r\n }\r\n ],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container1\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"json\",\r\n \"name\": \"ps7106\",\r\n \"id\": \"87692dcc-dd91-41b0-9d1a-4d9cfe535e69\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n },\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****\",\r\n \"containerName\": \"container2\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}\",\r\n \"batchFrequencyInSeconds\": 300,\r\n \"maxChunkSizeInBytes\": 314572800,\r\n \"encoding\": \"avro\",\r\n \"name\": \"ps673\",\r\n \"id\": \"2bc99b01-b4cb-4942-a5e9-10ec4c3798cf\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"pshardcodedrg1234\"\r\n }\r\n ]\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-2\",\r\n \"name\": \"sapan-iot-2\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"sapan-rg\",\r\n \"etag\": \"AAAAAE2L4UA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"sapan-iot-2.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 2,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\"\r\n ],\r\n \"path\": \"sapan-iot-2\",\r\n \"endpoint\": \"sb://iothub-ns-sapan-iot-3640461-a332d4b25a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"enrichments\": [\r\n {\r\n \"key\": \"abc\",\r\n \"value\": \"xaca\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ]\r\n }\r\n ],\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT3H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT8H\",\r\n \"maxDeliveryCount\": 6\r\n }\r\n },\r\n \"enableFileUploadNotifications\": true,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps8239/providers/Microsoft.Devices/IotHubs/ps3666\",\r\n \"name\": \"ps3666\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps8239\",\r\n \"etag\": \"AAAAAC+o+f8=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps3666.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3666\",\r\n \"endpoint\": \"sb://iothub-ns-ps3666-3654740-93974bfb77.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/lemartin-devicehub01/providers/Microsoft.Devices/IotHubs/lemartin-IoTDev01\",\r\n \"name\": \"lemartin-IoTDev01\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"test\": \"myFirst\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"lemartin-devicehub01\",\r\n \"etag\": \"AAAAAEzt/hI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"lemartin-IoTDev01.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"lemartin-iotdev01\",\r\n \"endpoint\": \"sb://iothub-ns-lemartin-i-3670153-4460c09d74.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"lemartin-route01\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"level=\\\"critical\\\"\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub3\",\r\n \"name\": \"eliohub3\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"eliorg\",\r\n \"etag\": \"AAAAACEh3bY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"eliohub3.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 2,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\"\r\n ],\r\n \"path\": \"eliohub3\",\r\n \"endpoint\": \"sb://iothub-ns-eliohub3-3702120-0403374912.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/avich-mqtt/providers/Microsoft.Devices/IotHubs/chekcsaseh\",\r\n \"name\": \"chekcsaseh\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"avich-mqtt\",\r\n \"etag\": \"AAAAAD4pcUM=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"chekcsaseh.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"chekcsaseh\",\r\n \"endpoint\": \"sb://iothub-ns-chekcsaseh-3776697-ddc056f998.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishucifnoroute\",\r\n \"name\": \"shishucifnoroute\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"shishu-resourcegroup\",\r\n \"etag\": \"AAAAAD+Dz5A=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"shishucifnoroute.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"shishucifnoroute\",\r\n \"endpoint\": \"sb://iothub-ns-shishucifn-3779885-9ce31819f5.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/lemartin/providers/Microsoft.Devices/IotHubs/lemartin-Hub02\",\r\n \"name\": \"lemartin-Hub02\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"who\": \"me\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"lemartin\",\r\n \"etag\": \"AAAAAEzIYuo=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"lemartin-Hub02.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"lemartin-hub02\",\r\n \"endpoint\": \"sb://iothub-ns-lemartin-h-3805828-6c18aa9af3.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-pnp-bash\",\r\n \"name\": \"askhura-pnp-bash\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"askhura-test-rg\",\r\n \"etag\": \"AAAAAEzjeAs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"askhura-pnp-bash.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"askhura-pnp-bash\",\r\n \"endpoint\": \"sb://iothub-ns-askhura-pn-3805997-1de88162ae.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/zheg-test-rg/providers/Microsoft.Devices/IotHubs/zhegTestHub\",\r\n \"name\": \"zhegTestHub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"zheg-test-rg\",\r\n \"etag\": \"AAAAAFOOABc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"zhegTestHub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"zhegtesthub\",\r\n \"endpoint\": \"sb://iothub-ns-zhegtesthu-3826048-57efc8084a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/saganeri-test/providers/Microsoft.Devices/IotHubs/saganeri-test-hub\",\r\n \"name\": \"saganeri-test-hub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"saganeri-test\",\r\n \"etag\": \"AAAAAFOmPZg=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"saganeri-test-hub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"saganeri-test-hub\",\r\n \"endpoint\": \"sb://iothub-ns-saganeri-t-3826319-5a60c34851.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"containerName\": \"saganeriroutingeventcapture\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"avro\",\r\n \"name\": \"saganeri-idauth\",\r\n \"id\": \"f27018ad-d0be-40f8-8900-42aa0145ff2f\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"Default-Storage-WestUS\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"RouteWithMSI\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"saganeri-idauth\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/smoke-iot-2\",\r\n \"name\": \"smoke-iot-2\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"sapan-rg\",\r\n \"etag\": \"AAAAAFPFns4=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"smoke-iot-2.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 2,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\"\r\n ],\r\n \"path\": \"smoke-iot-2\",\r\n \"endpoint\": \"sb://iothub-ns-smoke-iot-3826611-cc0c79ffc2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": [\r\n {\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****\",\r\n \"containerName\": \"testc\",\r\n \"fileNameFormat\": \"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json\",\r\n \"batchFrequencyInSeconds\": 100,\r\n \"maxChunkSizeInBytes\": 104857600,\r\n \"encoding\": \"json\",\r\n \"name\": \"storage1234\",\r\n \"id\": \"f23786b7-85e2-47ea-9d9a-18cea6fbdc92\",\r\n \"subscriptionId\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourceGroup\": \"sapan-rg\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"R1\",\r\n \"source\": \"TwinChangeEvents\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****\",\r\n \"containerName\": \"testc\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-cifhubwcu\",\r\n \"name\": \"shishu-cifhubwcu\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"shishu-resourcegroup\",\r\n \"etag\": \"AAAAAFc7ZaQ=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"shishu-cifhubwcu.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"shishu-cifhubwcu\",\r\n \"endpoint\": \"sb://iothub-ns-shishu-cif-3838638-c56a35ddad.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/BaselineTestHub\",\r\n \"name\": \"BaselineTestHub\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"RYFELDMA-DevTest\",\r\n \"etag\": \"AAAAAFb0hkA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"BaselineTestHub.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"baselinetesthub\",\r\n \"endpoint\": \"sb://iothub-ns-baselinete-3838897-15b2e2442a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/westus2hubcif\",\r\n \"name\": \"westus2hubcif\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"shishu-resourcegroup\",\r\n \"etag\": \"AAAAAFdMwKI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US 2\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West Central US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"westus2hubcif.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"westus2hubcif\",\r\n \"endpoint\": \"sb://iothub-ns-westus2hub-3839849-eb2bea1597.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub-03\",\r\n \"name\": \"nimengan-testhub-03\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"nimengan-rg\",\r\n \"etag\": \"AAAAAGosc0I=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [\r\n {\r\n \"filterName\": \"ipfilter1\",\r\n \"action\": \"Accept\",\r\n \"ipMask\": \"10.12.1.1\"\r\n },\r\n {\r\n \"filterName\": \"ipfilter2\",\r\n \"action\": \"Reject\",\r\n \"ipMask\": \"10.12.1.2\"\r\n }\r\n ],\r\n \"hostName\": \"nimengan-testhub-03.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"nimengan-testhub-03\",\r\n \"endpoint\": \"sb://iothub-ns-nimengan-t-3870918-0fca5a6352.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/mchaitest/providers/Microsoft.Devices/IotHubs/mchaitest\",\r\n \"name\": \"mchaitest\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"mchaitest\",\r\n \"etag\": \"AAAAAJYa68c=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"mchaitest.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"mchaitest\",\r\n \"endpoint\": \"sb://iothub-ns-mchaitest-3938382-3cd02bd823.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6119/providers/Microsoft.Devices/IotHubs/ps2468\",\r\n \"name\": \"ps2468\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6119\",\r\n \"etag\": \"AAAAAJp0R58=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2468.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2468\",\r\n \"endpoint\": \"sb://iothub-ns-ps2468-3944680-f260a24c97.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourcegroups/ps6651?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlZ3JvdXBzL3BzNjY1MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourcegroups/ps2471?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlZ3JvdXBzL3BzMjQ3MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "83cc6732-4a38-44ef-a093-c542e32a5c21" + "94a48183-2a76-4b9a-b1ea-dc85e8253294" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.15" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" ], "Content-Type": [ "application/json; charset=utf-8" @@ -156,16 +156,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "95be0b54-85f4-403b-833d-0b4884e2b790" + "df0ba672-8335-4897-8207-f804670b0da9" ], "x-ms-correlation-request-id": [ - "95be0b54-85f4-403b-833d-0b4884e2b790" + "df0ba672-8335-4897-8207-f804670b0da9" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182029Z:95be0b54-85f4-403b-833d-0b4884e2b790" + "WESTUS2:20200730T212832Z:df0ba672-8335-4897-8207-f804670b0da9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -174,7 +174,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:20:28 GMT" + "Thu, 30 Jul 2020 21:28:32 GMT" ], "Content-Length": [ "165" @@ -186,23 +186,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651\",\r\n \"name\": \"ps6651\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471\",\r\n \"name\": \"ps2471\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.EventHub/namespaces/eventHub4390?api-version=2018-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWI0MzkwP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.EventHub/namespaces/eventHub8918?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWI4OTE4P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a9b74449-8264-478e-977e-6d5e724022aa" + "d736153d-6a42-4632-8630-90ffdcc6e463" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.0.0" @@ -222,7 +222,7 @@ "no-cache" ], "x-ms-request-id": [ - "05280eee-755e-43eb-bf2b-dce2e0200ebd_M7SN1_M7SN1" + "3a911435-df9b-4a43-bb1c-261b27bc7e79_M7SN1_M7SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" @@ -235,10 +235,10 @@ "49" ], "x-ms-correlation-request-id": [ - "e473f294-b523-4d97-834f-1bb583d030f7" + "5035f4f8-97d4-4500-b35a-0a49f3525210" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182037Z:e473f294-b523-4d97-834f-1bb583d030f7" + "WESTUS2:20200730T212839Z:5035f4f8-97d4-4500-b35a-0a49f3525210" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -247,10 +247,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:20:37 GMT" + "Thu, 30 Jul 2020 21:28:39 GMT" ], "Content-Length": [ - "660" + "662" ], "Content-Type": [ "application/json; charset=utf-8" @@ -259,17 +259,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.EventHub/namespaces/eventHub4390\",\r\n \"name\": \"eventHub4390\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"91d12660-3dec-467a-be2a-213b5544ddc0:eventhub4390\",\r\n \"createdAt\": \"2020-06-16T18:20:31.66Z\",\r\n \"updatedAt\": \"2020-06-16T18:20:31.66Z\",\r\n \"serviceBusEndpoint\": \"https://eventHub4390.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.EventHub/namespaces/eventHub8918\",\r\n \"name\": \"eventHub8918\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"91d12660-3dec-467a-be2a-213b5544ddc0:eventhub8918\",\r\n \"createdAt\": \"2020-07-30T21:28:34.677Z\",\r\n \"updatedAt\": \"2020-07-30T21:28:34.677Z\",\r\n \"serviceBusEndpoint\": \"https://eventHub8918.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.EventHub/namespaces/eventHub4390?api-version=2018-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWI0MzkwP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.EventHub/namespaces/eventHub8918?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWI4OTE4P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.0.0" @@ -283,7 +283,7 @@ "no-cache" ], "x-ms-request-id": [ - "fea625c0-edb4-4fac-b5d1-d553b7009418_M7SN1_M7SN1" + "8466cf38-2dc4-4c42-b5d2-904c8203a26c_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" @@ -293,13 +293,13 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11997" ], "x-ms-correlation-request-id": [ - "cf0637bb-ef38-44b0-8b48-3d06d9d2bd00" + "abb6015b-8ce1-4c0a-a0f2-7048b606e369" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182107Z:cf0637bb-ef38-44b0-8b48-3d06d9d2bd00" + "WESTUS2:20200730T212909Z:abb6015b-8ce1-4c0a-a0f2-7048b606e369" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -308,10 +308,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:21:06 GMT" + "Thu, 30 Jul 2020 21:29:08 GMT" ], "Content-Length": [ - "660" + "662" ], "Content-Type": [ "application/json; charset=utf-8" @@ -320,17 +320,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.EventHub/namespaces/eventHub4390\",\r\n \"name\": \"eventHub4390\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"91d12660-3dec-467a-be2a-213b5544ddc0:eventhub4390\",\r\n \"createdAt\": \"2020-06-16T18:20:31.66Z\",\r\n \"updatedAt\": \"2020-06-16T18:20:31.66Z\",\r\n \"serviceBusEndpoint\": \"https://eventHub4390.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.EventHub/namespaces/eventHub8918\",\r\n \"name\": \"eventHub8918\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"91d12660-3dec-467a-be2a-213b5544ddc0:eventhub8918\",\r\n \"createdAt\": \"2020-07-30T21:28:34.677Z\",\r\n \"updatedAt\": \"2020-07-30T21:28:34.677Z\",\r\n \"serviceBusEndpoint\": \"https://eventHub8918.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.EventHub/namespaces/eventHub4390?api-version=2018-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWI0MzkwP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.EventHub/namespaces/eventHub8918?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWI4OTE4P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.0.0" @@ -344,7 +344,7 @@ "no-cache" ], "x-ms-request-id": [ - "110cec08-6ad7-40a8-a161-42b3e8025135_M7SN1_M7SN1" + "ff2810a2-7ec4-45e8-9edc-426674299cab_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" @@ -354,13 +354,13 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11996" ], "x-ms-correlation-request-id": [ - "6dfdd637-183f-4c6f-a4fd-bf80837b3326" + "f2d2f86c-8a65-47eb-8a2f-521e63343efa" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182137Z:6dfdd637-183f-4c6f-a4fd-bf80837b3326" + "WESTUS2:20200730T212939Z:f2d2f86c-8a65-47eb-8a2f-521e63343efa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -369,10 +369,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:21:36 GMT" + "Thu, 30 Jul 2020 21:29:39 GMT" ], "Content-Length": [ - "658" + "660" ], "Content-Type": [ "application/json; charset=utf-8" @@ -381,23 +381,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.EventHub/namespaces/eventHub4390\",\r\n \"name\": \"eventHub4390\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"91d12660-3dec-467a-be2a-213b5544ddc0:eventhub4390\",\r\n \"createdAt\": \"2020-06-16T18:20:31.66Z\",\r\n \"updatedAt\": \"2020-06-16T18:21:22.31Z\",\r\n \"serviceBusEndpoint\": \"https://eventHub4390.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.EventHub/namespaces/eventHub8918\",\r\n \"name\": \"eventHub8918\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"91d12660-3dec-467a-be2a-213b5544ddc0:eventhub8918\",\r\n \"createdAt\": \"2020-07-30T21:28:34.677Z\",\r\n \"updatedAt\": \"2020-07-30T21:29:24.973Z\",\r\n \"serviceBusEndpoint\": \"https://eventHub8918.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.EventHub/namespaces/eventHub4390/eventhubs/ps8829?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWI0MzkwL2V2ZW50aHVicy9wczg4Mjk/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.EventHub/namespaces/eventHub8918/eventhubs/ps7778?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWI4OTE4L2V2ZW50aHVicy9wczc3Nzg/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"messageRetentionInDays\": 3,\r\n \"partitionCount\": 2\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "31f99082-b398-4122-9d48-12f29eff2675" + "c930b6cb-9ef4-4fbb-84e7-3fe6e84eaede" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.0.0" @@ -417,7 +417,7 @@ "no-cache" ], "x-ms-request-id": [ - "f8f224b7-3937-4b04-b4d5-ce761d57f5ad_M7SN1_M7SN1" + "6a3aef45-344d-4000-80f0-86a7bad55b48_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" @@ -430,10 +430,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "6438e08c-a106-4ff8-83a3-5b79b8bd4813" + "d9ac7b0a-ab72-4094-85d1-d074a1efcb8c" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182155Z:6438e08c-a106-4ff8-83a3-5b79b8bd4813" + "WESTUS2:20200730T212957Z:d9ac7b0a-ab72-4094-85d1-d074a1efcb8c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -442,10 +442,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:21:54 GMT" + "Thu, 30 Jul 2020 21:29:57 GMT" ], "Content-Length": [ - "418" + "420" ], "Content-Type": [ "application/json; charset=utf-8" @@ -454,23 +454,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.EventHub/namespaces/eventHub4390/eventhubs/ps8829\",\r\n \"name\": \"ps8829\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 3,\r\n \"partitionCount\": 2,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2020-06-16T18:21:54.15Z\",\r\n \"updatedAt\": \"2020-06-16T18:21:54.48Z\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\"\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.EventHub/namespaces/eventHub8918/eventhubs/ps7778\",\r\n \"name\": \"ps7778\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 3,\r\n \"partitionCount\": 2,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2020-07-30T21:29:56.393Z\",\r\n \"updatedAt\": \"2020-07-30T21:29:56.907Z\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\"\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.EventHub/namespaces/eventHub4390/eventhubs/ps8829/authorizationRules/ps9447?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWI0MzkwL2V2ZW50aHVicy9wczg4MjkvYXV0aG9yaXphdGlvblJ1bGVzL3BzOTQ0Nz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.EventHub/namespaces/eventHub8918/eventhubs/ps7778/authorizationRules/ps7467?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWI4OTE4L2V2ZW50aHVicy9wczc3NzgvYXV0aG9yaXphdGlvblJ1bGVzL3BzNzQ2Nz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d666f866-8186-4ade-b19c-9533c37818f0" + "9774ddd9-d589-4790-bbe5-46d298419f92" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.0.0" @@ -490,23 +490,23 @@ "no-cache" ], "x-ms-request-id": [ - "b28d8a7e-f3a8-49c8-974b-ca7ed8a8a04c_M7SN1_M7SN1" + "3c533c6f-fc54-46b3-a23b-78d608e66eb1_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], "x-ms-correlation-request-id": [ - "9b198551-be59-4844-86cb-a92164d03fc3" + "d2ecba16-973d-4300-86c7-c64b24084c0c" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182155Z:9b198551-be59-4844-86cb-a92164d03fc3" + "WESTUS2:20200730T212958Z:d2ecba16-973d-4300-86c7-c64b24084c0c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -515,7 +515,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:21:55 GMT" + "Thu, 30 Jul 2020 21:29:57 GMT" ], "Content-Length": [ "325" @@ -527,23 +527,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.EventHub/namespaces/eventHub4390/eventhubs/ps8829/authorizationRules/ps9447\",\r\n \"name\": \"ps9447\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/AuthorizationRules\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.EventHub/namespaces/eventHub8918/eventhubs/ps7778/authorizationRules/ps7467\",\r\n \"name\": \"ps7467\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/AuthorizationRules\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.EventHub/namespaces/eventHub4390/eventhubs/ps8829/authorizationRules/ps9447/listKeys?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWI0MzkwL2V2ZW50aHVicy9wczg4MjkvYXV0aG9yaXphdGlvblJ1bGVzL3BzOTQ0Ny9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.EventHub/namespaces/eventHub8918/eventhubs/ps7778/authorizationRules/ps7467/listKeys?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWI4OTE4L2V2ZW50aHVicy9wczc3NzgvYXV0aG9yaXphdGlvblJ1bGVzL3BzNzQ2Ny9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8e5e9a34-9a4e-4c6d-979d-6e9f6df5986c" + "c1db27dd-3944-47e1-bd37-b4f11080ef2f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.7.0.0" @@ -557,23 +557,23 @@ "no-cache" ], "x-ms-request-id": [ - "24c7956c-60f9-4baf-97f8-7b26f8c85abc_M5CH3_M5CH3" + "de2bc962-071c-4788-8045-2799032b4684_M0SN1_M0SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "38ebd134-f38e-4192-aee6-984b8b544524" + "bc84145d-5f51-4738-9396-5e249186d093" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182156Z:38ebd134-f38e-4192-aee6-984b8b544524" + "WESTUS2:20200730T212958Z:bc84145d-5f51-4738-9396-5e249186d093" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -582,7 +582,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:21:56 GMT" + "Thu, 30 Jul 2020 21:29:58 GMT" ], "Content-Length": [ "514" @@ -594,23 +594,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://eventhub4390.servicebus.windows.net/;SharedAccessKeyName=ps9447;SharedAccessKey=IXe9hLU87Uokfg0I1BCZgbYiInPCeC0JKcOC9v9YHyc=;EntityPath=ps8829\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://eventhub4390.servicebus.windows.net/;SharedAccessKeyName=ps9447;SharedAccessKey=Mjb8ewXMshoMfht55GY4h16eRDIghmSG/h4fT2pxv7E=;EntityPath=ps8829\",\r\n \"primaryKey\": \"IXe9hLU87Uokfg0I1BCZgbYiInPCeC0JKcOC9v9YHyc=\",\r\n \"secondaryKey\": \"Mjb8ewXMshoMfht55GY4h16eRDIghmSG/h4fT2pxv7E=\",\r\n \"keyName\": \"ps9447\"\r\n}", + "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://eventhub8918.servicebus.windows.net/;SharedAccessKeyName=ps7467;SharedAccessKey=KUvDppy1JlGQJF5LR1N7jyoEX6xt4mPAa8fB0YSt4To=;EntityPath=ps7778\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://eventhub8918.servicebus.windows.net/;SharedAccessKeyName=ps7467;SharedAccessKey=6gqfjXhFZZtILsQIEY0A6ToOkMImfJ2/Pi3xt4/EIK4=;EntityPath=ps7778\",\r\n \"primaryKey\": \"KUvDppy1JlGQJF5LR1N7jyoEX6xt4mPAa8fB0YSt4To=\",\r\n \"secondaryKey\": \"6gqfjXhFZZtILsQIEY0A6ToOkMImfJ2/Pi3xt4/EIK4=\",\r\n \"keyName\": \"ps7467\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4390.servicebus.windows.net/;SharedAccessKeyName=ps9447;SharedAccessKey=IXe9hLU87Uokfg0I1BCZgbYiInPCeC0JKcOC9v9YHyc=;EntityPath=ps8829\",\r\n \"name\": \"eh1\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ]\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8918.servicebus.windows.net/;SharedAccessKeyName=ps7467;SharedAccessKey=KUvDppy1JlGQJF5LR1N7jyoEX6xt4mPAa8fB0YSt4To=;EntityPath=ps7778\",\r\n \"name\": \"eh1\"\r\n }\r\n ]\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ]\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "227cda47-0de1-4a9d-965d-32576148a4f1" + "aebe043e-c5e1-45e7-a772-fad8babb245e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -630,7 +630,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZjAwOGM4MjItYzdiOS00NWJmLTgxMTgtMTRjMWNmMTdhMjkx?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfOGM4NTYyYzctOTBhOC00YTZiLTg2YTYtN2ZmM2ExZTE2Y2Yx?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -639,13 +639,13 @@ "4999" ], "x-ms-request-id": [ - "2e355658-2dcd-434f-9c08-cb96a0db2d60" + "63785cbb-be44-4717-b21c-ff1dfddea042" ], "x-ms-correlation-request-id": [ - "2e355658-2dcd-434f-9c08-cb96a0db2d60" + "63785cbb-be44-4717-b21c-ff1dfddea042" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182213Z:2e355658-2dcd-434f-9c08-cb96a0db2d60" + "WESTUS2:20200730T213014Z:63785cbb-be44-4717-b21c-ff1dfddea042" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -654,7 +654,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:22:12 GMT" + "Thu, 30 Jul 2020 21:30:14 GMT" ], "Content-Length": [ "1201" @@ -666,23 +666,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545\",\r\n \"name\": \"ps5545\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6651\",\r\n \"properties\": {\r\n \"state\": \"Activating\",\r\n \"provisioningState\": \"Accepted\",\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4390.servicebus.windows.net/;SharedAccessKeyName=ps9447;SharedAccessKey=IXe9hLU87Uokfg0I1BCZgbYiInPCeC0JKcOC9v9YHyc=;EntityPath=ps8829\",\r\n \"name\": \"eh1\",\r\n \"id\": \"d724afe3-88e5-4b8f-9ca5-ab9e13e48cf6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713\",\r\n \"name\": \"ps9713\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2471\",\r\n \"properties\": {\r\n \"state\": \"Activating\",\r\n \"provisioningState\": \"Accepted\",\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8918.servicebus.windows.net/;SharedAccessKeyName=ps7467;SharedAccessKey=KUvDppy1JlGQJF5LR1N7jyoEX6xt4mPAa8fB0YSt4To=;EntityPath=ps7778\",\r\n \"name\": \"eh1\",\r\n \"id\": \"766d3101-9169-467b-b1be-9aa844607e9e\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAABK9y9k=\",\r\n \"properties\": {\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"qN0g/ORi6fpYJC71YEauPRvVNh4s1Ty+Rd4th7ujsCQ=\",\r\n \"secondaryKey\": \"GmKhwqAUuPxQTpNVtn53yXkrzWOX2joy85EFfXVESKc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"QsM2CxTcOTA0MTEBNPlaAZvLbQzu48yNHQIeWHS+OzE=\",\r\n \"secondaryKey\": \"HY3c8NMm5qDwIuNhD+HQEdgC8x/L3QylVhiKWxLD17U=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"84G0AQok4gqnHeb0vfapPrCwVJLmqiyzAnj98AlakjU=\",\r\n \"secondaryKey\": \"Znr37zZWpBhF6xyQrB7eO89lUENalmfLyNRqWp5pRCM=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"jcq9Rt7Lhj1KxaxwiHsOGmLCftiAWfrSDNVrje8Z1F0=\",\r\n \"secondaryKey\": \"/oG2Tm7Qx3L/5/Wl/9taUYgKP5MgCLw/qhaFTgSGQ70=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"3LEo2h5K+OW0p8WqDb1THnjlE3HDr3A7flAielHSLjo=\",\r\n \"secondaryKey\": \"ncHKK3rlmOaKGyZmdGdqJhfd5UETUZ0QtAYbvJrnoPg=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4390.servicebus.windows.net:5671/;SharedAccessKeyName=ps9447;SharedAccessKey=****;EntityPath=ps8829\",\r\n \"name\": \"eh1\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"etag\": \"AAAAAJ6EAl8=\",\r\n \"properties\": {\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"ortpnJMGwgpMMBZpZdYIbraSSMOM9ue+cxdDNbyvCws=\",\r\n \"secondaryKey\": \"yxRzxXbbp3jJCDD03/BB0SHAUenu5DmX4Br64wYHR3g=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Wba4C3/mAi67Ww/3N8dQYaaczB12v+X/vNn6Rgpv7Os=\",\r\n \"secondaryKey\": \"/CKSKGFMiZjX56+7gSg3AzmgNP012eb4u9InvAjL93A=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"/OlUnZRvcLv6XrKMaVdCIK3WvCoB7/SY/0lDxqk4Zig=\",\r\n \"secondaryKey\": \"q4ki56Tc//WSIKzpy6vxwD08Srxf1kNYIkim1QoM3bo=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"+L8yJ3ig3tfqTFn9+pitdbmFEw84qpKeCxSGaiEyHq4=\",\r\n \"secondaryKey\": \"B/YE8RsanfxrS69PMyPZfgZ8BGONv/p8RFN51tcVe+w=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"ehUDpM6WkQ0eEL9ySYwCzXBt4pmVHz+5DCiZV/Pgd50=\",\r\n \"secondaryKey\": \"/k1sGvRDViSMEmryjmkdn8fo3KXKy64GrIcugsT7o40=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8918.servicebus.windows.net:5671/;SharedAccessKeyName=ps7467;SharedAccessKey=****;EntityPath=ps7778\",\r\n \"name\": \"eh1\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1b421aba-549a-4e47-9111-0457354697d8" + "6af11f10-ce0d-4da1-b2ca-c28a8a3d0584" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -702,7 +702,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNmRjMWJlNjAtZTVmNS00NmMwLTlmODYtY2EyMTAyZWNkMTk3?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMzc3MTE1OTEtZjgwMy00OTc3LWI2NzAtZjBjZTNkZjJjYmQx?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -711,13 +711,13 @@ "4998" ], "x-ms-request-id": [ - "75fc3508-0360-4b90-9fff-0d28acf670ca" + "b48ed2a5-2ad3-4a6f-8a76-37f001335acc" ], "x-ms-correlation-request-id": [ - "75fc3508-0360-4b90-9fff-0d28acf670ca" + "b48ed2a5-2ad3-4a6f-8a76-37f001335acc" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182527Z:75fc3508-0360-4b90-9fff-0d28acf670ca" + "WESTUS2:20200730T213329Z:b48ed2a5-2ad3-4a6f-8a76-37f001335acc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -726,7 +726,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:25:27 GMT" + "Thu, 30 Jul 2020 21:33:28 GMT" ], "Content-Length": [ "4436" @@ -738,23 +738,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545\",\r\n \"name\": \"ps5545\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6651\",\r\n \"etag\": \"AAAAABK9y9k=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"qN0g/ORi6fpYJC71YEauPRvVNh4s1Ty+Rd4th7ujsCQ=\",\r\n \"secondaryKey\": \"GmKhwqAUuPxQTpNVtn53yXkrzWOX2joy85EFfXVESKc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"QsM2CxTcOTA0MTEBNPlaAZvLbQzu48yNHQIeWHS+OzE=\",\r\n \"secondaryKey\": \"HY3c8NMm5qDwIuNhD+HQEdgC8x/L3QylVhiKWxLD17U=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"84G0AQok4gqnHeb0vfapPrCwVJLmqiyzAnj98AlakjU=\",\r\n \"secondaryKey\": \"Znr37zZWpBhF6xyQrB7eO89lUENalmfLyNRqWp5pRCM=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"jcq9Rt7Lhj1KxaxwiHsOGmLCftiAWfrSDNVrje8Z1F0=\",\r\n \"secondaryKey\": \"/oG2Tm7Qx3L/5/Wl/9taUYgKP5MgCLw/qhaFTgSGQ70=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"3LEo2h5K+OW0p8WqDb1THnjlE3HDr3A7flAielHSLjo=\",\r\n \"secondaryKey\": \"ncHKK3rlmOaKGyZmdGdqJhfd5UETUZ0QtAYbvJrnoPg=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"/qetO9yW0iPsNaniGfR8ExSgYFJMuPKpVF3ylNQ16vs=\",\r\n \"secondaryKey\": \"CFHhWishCtL791GbsvrlDE4Dh6HxBzx4jh3kVwz3+5M=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5545-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps5545-3639468-bf5ebd9639.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-7b39fc7b-284a-478e-b74d-1252c6ced31c-iothub\",\r\n \"PrimaryKey\": \"KaD2ecGhoDiIKd+E0/k4AiqWwgHM3BCHPTyH6hYYBcM=\",\r\n \"SecondaryKey\": \"nwQd3fm3Sd7yk+mMSqUyccnrZ1gQOWrgg6WMerQxpAs=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:25:08 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:25:08 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-6034787d-74a7-4db1-8137-c2d8103d5c72-iothub\",\r\n \"PrimaryKey\": \"G0Im+dUWfpgST3j4TuU02d3VrtHCzKxhLsBZRBy66fg=\",\r\n \"SecondaryKey\": \"9MqpJG4od9M5/rhwMpgLQelXMkmJs0/n4/VdUjTkD5w=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:25:08 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:25:08 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"qN0g/ORi6fpYJC71YEauPRvVNh4s1Ty+Rd4th7ujsCQ=\",\r\n \"SecondaryKey\": \"GmKhwqAUuPxQTpNVtn53yXkrzWOX2joy85EFfXVESKc=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:25:08 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:25:08 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"QsM2CxTcOTA0MTEBNPlaAZvLbQzu48yNHQIeWHS+OzE=\",\r\n \"SecondaryKey\": \"HY3c8NMm5qDwIuNhD+HQEdgC8x/L3QylVhiKWxLD17U=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:25:08 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:25:08 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4390.servicebus.windows.net/;SharedAccessKeyName=ps9447;SharedAccessKey=IXe9hLU87Uokfg0I1BCZgbYiInPCeC0JKcOC9v9YHyc=;EntityPath=ps8829\",\r\n \"name\": \"eh1\",\r\n \"id\": \"d724afe3-88e5-4b8f-9ca5-ab9e13e48cf6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713\",\r\n \"name\": \"ps9713\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2471\",\r\n \"etag\": \"AAAAAJ6EAl8=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"ortpnJMGwgpMMBZpZdYIbraSSMOM9ue+cxdDNbyvCws=\",\r\n \"secondaryKey\": \"yxRzxXbbp3jJCDD03/BB0SHAUenu5DmX4Br64wYHR3g=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Wba4C3/mAi67Ww/3N8dQYaaczB12v+X/vNn6Rgpv7Os=\",\r\n \"secondaryKey\": \"/CKSKGFMiZjX56+7gSg3AzmgNP012eb4u9InvAjL93A=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"/OlUnZRvcLv6XrKMaVdCIK3WvCoB7/SY/0lDxqk4Zig=\",\r\n \"secondaryKey\": \"q4ki56Tc//WSIKzpy6vxwD08Srxf1kNYIkim1QoM3bo=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"+L8yJ3ig3tfqTFn9+pitdbmFEw84qpKeCxSGaiEyHq4=\",\r\n \"secondaryKey\": \"B/YE8RsanfxrS69PMyPZfgZ8BGONv/p8RFN51tcVe+w=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"ehUDpM6WkQ0eEL9ySYwCzXBt4pmVHz+5DCiZV/Pgd50=\",\r\n \"secondaryKey\": \"/k1sGvRDViSMEmryjmkdn8fo3KXKy64GrIcugsT7o40=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"IYoGyCuTLhZmqHnQp21XaXfumAiwvSrpl5FJJvd7rW4=\",\r\n \"secondaryKey\": \"1UFREkm3HM0XsUBpzxkssAFn7ouaQtra4Cygd2ChxtQ=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9713-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps9713-3949739-eed064899b.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-454053db-f533-4ea8-9437-eecb4e207a51-iothub\",\r\n \"PrimaryKey\": \"L9aXC0dE5t9jbo2k+CH/vao9o634UrWJLKg1Ix8jyl0=\",\r\n \"SecondaryKey\": \"Ez7jNu3IrTSpDum2TkQDGVddb4wRiVoFfC4Yj81b/0M=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 21:32:57 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 21:32:57 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-a4b8ac0a-86ce-4475-ad31-b7e00a6d1d84-iothub\",\r\n \"PrimaryKey\": \"Pvgj9tHLfNh3cfu7YXXcJKzXAZ8gUOaosM9ZJqMqU7k=\",\r\n \"SecondaryKey\": \"Tsf4oF4r5hJ71cb2of3RTH8eoFalhy7IoXAtpcW90D0=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 21:32:57 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 21:32:57 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"ortpnJMGwgpMMBZpZdYIbraSSMOM9ue+cxdDNbyvCws=\",\r\n \"SecondaryKey\": \"yxRzxXbbp3jJCDD03/BB0SHAUenu5DmX4Br64wYHR3g=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 21:32:57 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 21:32:57 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"Wba4C3/mAi67Ww/3N8dQYaaczB12v+X/vNn6Rgpv7Os=\",\r\n \"SecondaryKey\": \"/CKSKGFMiZjX56+7gSg3AzmgNP012eb4u9InvAjL93A=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 21:32:57 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 21:32:57 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8918.servicebus.windows.net/;SharedAccessKeyName=ps7467;SharedAccessKey=KUvDppy1JlGQJF5LR1N7jyoEX6xt4mPAa8fB0YSt4To=;EntityPath=ps7778\",\r\n \"name\": \"eh1\",\r\n \"id\": \"766d3101-9169-467b-b1be-9aa844607e9e\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAABK9zLQ=\",\r\n \"properties\": {\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"qN0g/ORi6fpYJC71YEauPRvVNh4s1Ty+Rd4th7ujsCQ=\",\r\n \"secondaryKey\": \"GmKhwqAUuPxQTpNVtn53yXkrzWOX2joy85EFfXVESKc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"QsM2CxTcOTA0MTEBNPlaAZvLbQzu48yNHQIeWHS+OzE=\",\r\n \"secondaryKey\": \"HY3c8NMm5qDwIuNhD+HQEdgC8x/L3QylVhiKWxLD17U=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"84G0AQok4gqnHeb0vfapPrCwVJLmqiyzAnj98AlakjU=\",\r\n \"secondaryKey\": \"Znr37zZWpBhF6xyQrB7eO89lUENalmfLyNRqWp5pRCM=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"jcq9Rt7Lhj1KxaxwiHsOGmLCftiAWfrSDNVrje8Z1F0=\",\r\n \"secondaryKey\": \"/oG2Tm7Qx3L/5/Wl/9taUYgKP5MgCLw/qhaFTgSGQ70=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"3LEo2h5K+OW0p8WqDb1THnjlE3HDr3A7flAielHSLjo=\",\r\n \"secondaryKey\": \"ncHKK3rlmOaKGyZmdGdqJhfd5UETUZ0QtAYbvJrnoPg=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"CFHhWishCtL791GbsvrlDE4Dh6HxBzx4jh3kVwz3+5M=\",\r\n \"secondaryKey\": \"/qetO9yW0iPsNaniGfR8ExSgYFJMuPKpVF3ylNQ16vs=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4390.servicebus.windows.net:5671/;SharedAccessKeyName=ps9447;SharedAccessKey=****;EntityPath=ps8829\",\r\n \"name\": \"eh1\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"etag\": \"AAAAAJ6EbaQ=\",\r\n \"properties\": {\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"ortpnJMGwgpMMBZpZdYIbraSSMOM9ue+cxdDNbyvCws=\",\r\n \"secondaryKey\": \"yxRzxXbbp3jJCDD03/BB0SHAUenu5DmX4Br64wYHR3g=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Wba4C3/mAi67Ww/3N8dQYaaczB12v+X/vNn6Rgpv7Os=\",\r\n \"secondaryKey\": \"/CKSKGFMiZjX56+7gSg3AzmgNP012eb4u9InvAjL93A=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"/OlUnZRvcLv6XrKMaVdCIK3WvCoB7/SY/0lDxqk4Zig=\",\r\n \"secondaryKey\": \"q4ki56Tc//WSIKzpy6vxwD08Srxf1kNYIkim1QoM3bo=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"+L8yJ3ig3tfqTFn9+pitdbmFEw84qpKeCxSGaiEyHq4=\",\r\n \"secondaryKey\": \"B/YE8RsanfxrS69PMyPZfgZ8BGONv/p8RFN51tcVe+w=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"ehUDpM6WkQ0eEL9ySYwCzXBt4pmVHz+5DCiZV/Pgd50=\",\r\n \"secondaryKey\": \"/k1sGvRDViSMEmryjmkdn8fo3KXKy64GrIcugsT7o40=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"1UFREkm3HM0XsUBpzxkssAFn7ouaQtra4Cygd2ChxtQ=\",\r\n \"secondaryKey\": \"IYoGyCuTLhZmqHnQp21XaXfumAiwvSrpl5FJJvd7rW4=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8918.servicebus.windows.net:5671/;SharedAccessKeyName=ps7467;SharedAccessKey=****;EntityPath=ps7778\",\r\n \"name\": \"eh1\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "16b96253-35cb-4574-8ef0-762623762697" + "7c12ec15-56de-48c6-8893-94722ace96d3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -774,7 +774,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfODk4OGRlYzgtZThmNy00Y2U5LWJmZWItNGQwZDliMzEwYzJm?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfOTFmYjcwOTAtMWRiZS00OTllLTlkMTEtZDAxMzIyYTdhM2Nh?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -783,13 +783,13 @@ "4997" ], "x-ms-request-id": [ - "f5196bf5-df94-4782-bd6b-6c613e364e96" + "1e9ace10-de5b-4772-aeba-68124b2916ad" ], "x-ms-correlation-request-id": [ - "f5196bf5-df94-4782-bd6b-6c613e364e96" + "1e9ace10-de5b-4772-aeba-68124b2916ad" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182602Z:f5196bf5-df94-4782-bd6b-6c613e364e96" + "WESTUS2:20200730T213435Z:1e9ace10-de5b-4772-aeba-68124b2916ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -798,7 +798,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:26:02 GMT" + "Thu, 30 Jul 2020 21:34:34 GMT" ], "Content-Length": [ "4436" @@ -810,23 +810,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545\",\r\n \"name\": \"ps5545\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6651\",\r\n \"etag\": \"AAAAABK9zLQ=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"qN0g/ORi6fpYJC71YEauPRvVNh4s1Ty+Rd4th7ujsCQ=\",\r\n \"secondaryKey\": \"GmKhwqAUuPxQTpNVtn53yXkrzWOX2joy85EFfXVESKc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"QsM2CxTcOTA0MTEBNPlaAZvLbQzu48yNHQIeWHS+OzE=\",\r\n \"secondaryKey\": \"HY3c8NMm5qDwIuNhD+HQEdgC8x/L3QylVhiKWxLD17U=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"84G0AQok4gqnHeb0vfapPrCwVJLmqiyzAnj98AlakjU=\",\r\n \"secondaryKey\": \"Znr37zZWpBhF6xyQrB7eO89lUENalmfLyNRqWp5pRCM=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"jcq9Rt7Lhj1KxaxwiHsOGmLCftiAWfrSDNVrje8Z1F0=\",\r\n \"secondaryKey\": \"/oG2Tm7Qx3L/5/Wl/9taUYgKP5MgCLw/qhaFTgSGQ70=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"3LEo2h5K+OW0p8WqDb1THnjlE3HDr3A7flAielHSLjo=\",\r\n \"secondaryKey\": \"ncHKK3rlmOaKGyZmdGdqJhfd5UETUZ0QtAYbvJrnoPg=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"CFHhWishCtL791GbsvrlDE4Dh6HxBzx4jh3kVwz3+5M=\",\r\n \"secondaryKey\": \"/qetO9yW0iPsNaniGfR8ExSgYFJMuPKpVF3ylNQ16vs=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5545-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps5545-3639468-bf5ebd9639.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-7b39fc7b-284a-478e-b74d-1252c6ced31c-iothub\",\r\n \"PrimaryKey\": \"KaD2ecGhoDiIKd+E0/k4AiqWwgHM3BCHPTyH6hYYBcM=\",\r\n \"SecondaryKey\": \"nwQd3fm3Sd7yk+mMSqUyccnrZ1gQOWrgg6WMerQxpAs=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:25:36 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:25:36 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-6034787d-74a7-4db1-8137-c2d8103d5c72-iothub\",\r\n \"PrimaryKey\": \"G0Im+dUWfpgST3j4TuU02d3VrtHCzKxhLsBZRBy66fg=\",\r\n \"SecondaryKey\": \"9MqpJG4od9M5/rhwMpgLQelXMkmJs0/n4/VdUjTkD5w=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:25:36 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:25:36 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"qN0g/ORi6fpYJC71YEauPRvVNh4s1Ty+Rd4th7ujsCQ=\",\r\n \"SecondaryKey\": \"GmKhwqAUuPxQTpNVtn53yXkrzWOX2joy85EFfXVESKc=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:25:36 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:25:36 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"QsM2CxTcOTA0MTEBNPlaAZvLbQzu48yNHQIeWHS+OzE=\",\r\n \"SecondaryKey\": \"HY3c8NMm5qDwIuNhD+HQEdgC8x/L3QylVhiKWxLD17U=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:25:36 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:25:36 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4390.servicebus.windows.net/;SharedAccessKeyName=ps9447;SharedAccessKey=IXe9hLU87Uokfg0I1BCZgbYiInPCeC0JKcOC9v9YHyc=;EntityPath=ps8829\",\r\n \"name\": \"eh1\",\r\n \"id\": \"d724afe3-88e5-4b8f-9ca5-ab9e13e48cf6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713\",\r\n \"name\": \"ps9713\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2471\",\r\n \"etag\": \"AAAAAJ6EbaQ=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"ortpnJMGwgpMMBZpZdYIbraSSMOM9ue+cxdDNbyvCws=\",\r\n \"secondaryKey\": \"yxRzxXbbp3jJCDD03/BB0SHAUenu5DmX4Br64wYHR3g=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Wba4C3/mAi67Ww/3N8dQYaaczB12v+X/vNn6Rgpv7Os=\",\r\n \"secondaryKey\": \"/CKSKGFMiZjX56+7gSg3AzmgNP012eb4u9InvAjL93A=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"/OlUnZRvcLv6XrKMaVdCIK3WvCoB7/SY/0lDxqk4Zig=\",\r\n \"secondaryKey\": \"q4ki56Tc//WSIKzpy6vxwD08Srxf1kNYIkim1QoM3bo=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"+L8yJ3ig3tfqTFn9+pitdbmFEw84qpKeCxSGaiEyHq4=\",\r\n \"secondaryKey\": \"B/YE8RsanfxrS69PMyPZfgZ8BGONv/p8RFN51tcVe+w=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"ehUDpM6WkQ0eEL9ySYwCzXBt4pmVHz+5DCiZV/Pgd50=\",\r\n \"secondaryKey\": \"/k1sGvRDViSMEmryjmkdn8fo3KXKy64GrIcugsT7o40=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"1UFREkm3HM0XsUBpzxkssAFn7ouaQtra4Cygd2ChxtQ=\",\r\n \"secondaryKey\": \"IYoGyCuTLhZmqHnQp21XaXfumAiwvSrpl5FJJvd7rW4=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9713-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps9713-3949739-eed064899b.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-454053db-f533-4ea8-9437-eecb4e207a51-iothub\",\r\n \"PrimaryKey\": \"L9aXC0dE5t9jbo2k+CH/vao9o634UrWJLKg1Ix8jyl0=\",\r\n \"SecondaryKey\": \"Ez7jNu3IrTSpDum2TkQDGVddb4wRiVoFfC4Yj81b/0M=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 21:33:52 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 21:33:52 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-a4b8ac0a-86ce-4475-ad31-b7e00a6d1d84-iothub\",\r\n \"PrimaryKey\": \"Pvgj9tHLfNh3cfu7YXXcJKzXAZ8gUOaosM9ZJqMqU7k=\",\r\n \"SecondaryKey\": \"Tsf4oF4r5hJ71cb2of3RTH8eoFalhy7IoXAtpcW90D0=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 21:33:52 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 21:33:52 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"ortpnJMGwgpMMBZpZdYIbraSSMOM9ue+cxdDNbyvCws=\",\r\n \"SecondaryKey\": \"yxRzxXbbp3jJCDD03/BB0SHAUenu5DmX4Br64wYHR3g=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 21:33:52 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 21:33:52 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"Wba4C3/mAi67Ww/3N8dQYaaczB12v+X/vNn6Rgpv7Os=\",\r\n \"SecondaryKey\": \"/CKSKGFMiZjX56+7gSg3AzmgNP012eb4u9InvAjL93A=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 21:33:52 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 21:33:52 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8918.servicebus.windows.net/;SharedAccessKeyName=ps7467;SharedAccessKey=KUvDppy1JlGQJF5LR1N7jyoEX6xt4mPAa8fB0YSt4To=;EntityPath=ps7778\",\r\n \"name\": \"eh1\",\r\n \"id\": \"766d3101-9169-467b-b1be-9aa844607e9e\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAABK9+J0=\",\r\n \"properties\": {\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"qN0g/ORi6fpYJC71YEauPRvVNh4s1Ty+Rd4th7ujsCQ=\",\r\n \"secondaryKey\": \"GmKhwqAUuPxQTpNVtn53yXkrzWOX2joy85EFfXVESKc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"QsM2CxTcOTA0MTEBNPlaAZvLbQzu48yNHQIeWHS+OzE=\",\r\n \"secondaryKey\": \"HY3c8NMm5qDwIuNhD+HQEdgC8x/L3QylVhiKWxLD17U=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"84G0AQok4gqnHeb0vfapPrCwVJLmqiyzAnj98AlakjU=\",\r\n \"secondaryKey\": \"Znr37zZWpBhF6xyQrB7eO89lUENalmfLyNRqWp5pRCM=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"jcq9Rt7Lhj1KxaxwiHsOGmLCftiAWfrSDNVrje8Z1F0=\",\r\n \"secondaryKey\": \"/oG2Tm7Qx3L/5/Wl/9taUYgKP5MgCLw/qhaFTgSGQ70=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"3LEo2h5K+OW0p8WqDb1THnjlE3HDr3A7flAielHSLjo=\",\r\n \"secondaryKey\": \"ncHKK3rlmOaKGyZmdGdqJhfd5UETUZ0QtAYbvJrnoPg=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"NtYfNHkj48gY28cL5MugrcxeC8gvcdF5SvjKaEKDzM0=\",\r\n \"secondaryKey\": \"/qetO9yW0iPsNaniGfR8ExSgYFJMuPKpVF3ylNQ16vs=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4390.servicebus.windows.net:5671/;SharedAccessKeyName=ps9447;SharedAccessKey=****;EntityPath=ps8829\",\r\n \"name\": \"eh1\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"etag\": \"AAAAAJ6Fzcs=\",\r\n \"properties\": {\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"ortpnJMGwgpMMBZpZdYIbraSSMOM9ue+cxdDNbyvCws=\",\r\n \"secondaryKey\": \"yxRzxXbbp3jJCDD03/BB0SHAUenu5DmX4Br64wYHR3g=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Wba4C3/mAi67Ww/3N8dQYaaczB12v+X/vNn6Rgpv7Os=\",\r\n \"secondaryKey\": \"/CKSKGFMiZjX56+7gSg3AzmgNP012eb4u9InvAjL93A=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"/OlUnZRvcLv6XrKMaVdCIK3WvCoB7/SY/0lDxqk4Zig=\",\r\n \"secondaryKey\": \"q4ki56Tc//WSIKzpy6vxwD08Srxf1kNYIkim1QoM3bo=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"+L8yJ3ig3tfqTFn9+pitdbmFEw84qpKeCxSGaiEyHq4=\",\r\n \"secondaryKey\": \"B/YE8RsanfxrS69PMyPZfgZ8BGONv/p8RFN51tcVe+w=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"ehUDpM6WkQ0eEL9ySYwCzXBt4pmVHz+5DCiZV/Pgd50=\",\r\n \"secondaryKey\": \"/k1sGvRDViSMEmryjmkdn8fo3KXKy64GrIcugsT7o40=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"yRqTSd/L+ZN4nRKdHnEcOeBUxU0cs3FG82TRbPU2pa4=\",\r\n \"secondaryKey\": \"IYoGyCuTLhZmqHnQp21XaXfumAiwvSrpl5FJJvd7rW4=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8918.servicebus.windows.net:5671/;SharedAccessKeyName=ps7467;SharedAccessKey=****;EntityPath=ps7778\",\r\n \"name\": \"eh1\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "67b88ebb-f56a-4f12-b1e1-5785ec4d8327" + "23d28d29-4b22-44f2-844a-eca34a957213" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -846,7 +846,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNGFhZDU5MjYtNjQ2MC00ZDdmLWFmMjctOTIzZGVmZTMyODQz?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjMxM2E1MjYtNDNjMy00NTMzLWI5MGQtNmYwNzUwMzVhOGVk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -855,13 +855,13 @@ "4996" ], "x-ms-request-id": [ - "08e10b9f-cec8-4023-bc2c-a3318b128776" + "de964209-dfd7-46df-8618-6147e518eb26" ], "x-ms-correlation-request-id": [ - "08e10b9f-cec8-4023-bc2c-a3318b128776" + "de964209-dfd7-46df-8618-6147e518eb26" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182636Z:08e10b9f-cec8-4023-bc2c-a3318b128776" + "WESTUS2:20200730T213510Z:de964209-dfd7-46df-8618-6147e518eb26" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -870,7 +870,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:26:36 GMT" + "Thu, 30 Jul 2020 21:35:10 GMT" ], "Content-Length": [ "4436" @@ -882,23 +882,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545\",\r\n \"name\": \"ps5545\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6651\",\r\n \"etag\": \"AAAAABK9+J0=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"qN0g/ORi6fpYJC71YEauPRvVNh4s1Ty+Rd4th7ujsCQ=\",\r\n \"secondaryKey\": \"GmKhwqAUuPxQTpNVtn53yXkrzWOX2joy85EFfXVESKc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"QsM2CxTcOTA0MTEBNPlaAZvLbQzu48yNHQIeWHS+OzE=\",\r\n \"secondaryKey\": \"HY3c8NMm5qDwIuNhD+HQEdgC8x/L3QylVhiKWxLD17U=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"84G0AQok4gqnHeb0vfapPrCwVJLmqiyzAnj98AlakjU=\",\r\n \"secondaryKey\": \"Znr37zZWpBhF6xyQrB7eO89lUENalmfLyNRqWp5pRCM=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"jcq9Rt7Lhj1KxaxwiHsOGmLCftiAWfrSDNVrje8Z1F0=\",\r\n \"secondaryKey\": \"/oG2Tm7Qx3L/5/Wl/9taUYgKP5MgCLw/qhaFTgSGQ70=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"3LEo2h5K+OW0p8WqDb1THnjlE3HDr3A7flAielHSLjo=\",\r\n \"secondaryKey\": \"ncHKK3rlmOaKGyZmdGdqJhfd5UETUZ0QtAYbvJrnoPg=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"NtYfNHkj48gY28cL5MugrcxeC8gvcdF5SvjKaEKDzM0=\",\r\n \"secondaryKey\": \"/qetO9yW0iPsNaniGfR8ExSgYFJMuPKpVF3ylNQ16vs=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5545-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps5545-3639468-bf5ebd9639.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-7b39fc7b-284a-478e-b74d-1252c6ced31c-iothub\",\r\n \"PrimaryKey\": \"KaD2ecGhoDiIKd+E0/k4AiqWwgHM3BCHPTyH6hYYBcM=\",\r\n \"SecondaryKey\": \"nwQd3fm3Sd7yk+mMSqUyccnrZ1gQOWrgg6WMerQxpAs=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:26:13 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:26:13 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-6034787d-74a7-4db1-8137-c2d8103d5c72-iothub\",\r\n \"PrimaryKey\": \"G0Im+dUWfpgST3j4TuU02d3VrtHCzKxhLsBZRBy66fg=\",\r\n \"SecondaryKey\": \"9MqpJG4od9M5/rhwMpgLQelXMkmJs0/n4/VdUjTkD5w=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:26:13 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:26:13 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"qN0g/ORi6fpYJC71YEauPRvVNh4s1Ty+Rd4th7ujsCQ=\",\r\n \"SecondaryKey\": \"GmKhwqAUuPxQTpNVtn53yXkrzWOX2joy85EFfXVESKc=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:26:13 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:26:13 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"QsM2CxTcOTA0MTEBNPlaAZvLbQzu48yNHQIeWHS+OzE=\",\r\n \"SecondaryKey\": \"HY3c8NMm5qDwIuNhD+HQEdgC8x/L3QylVhiKWxLD17U=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:26:13 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:26:13 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4390.servicebus.windows.net/;SharedAccessKeyName=ps9447;SharedAccessKey=IXe9hLU87Uokfg0I1BCZgbYiInPCeC0JKcOC9v9YHyc=;EntityPath=ps8829\",\r\n \"name\": \"eh1\",\r\n \"id\": \"d724afe3-88e5-4b8f-9ca5-ab9e13e48cf6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713\",\r\n \"name\": \"ps9713\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2471\",\r\n \"etag\": \"AAAAAJ6Fzcs=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"ortpnJMGwgpMMBZpZdYIbraSSMOM9ue+cxdDNbyvCws=\",\r\n \"secondaryKey\": \"yxRzxXbbp3jJCDD03/BB0SHAUenu5DmX4Br64wYHR3g=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Wba4C3/mAi67Ww/3N8dQYaaczB12v+X/vNn6Rgpv7Os=\",\r\n \"secondaryKey\": \"/CKSKGFMiZjX56+7gSg3AzmgNP012eb4u9InvAjL93A=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"/OlUnZRvcLv6XrKMaVdCIK3WvCoB7/SY/0lDxqk4Zig=\",\r\n \"secondaryKey\": \"q4ki56Tc//WSIKzpy6vxwD08Srxf1kNYIkim1QoM3bo=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"+L8yJ3ig3tfqTFn9+pitdbmFEw84qpKeCxSGaiEyHq4=\",\r\n \"secondaryKey\": \"B/YE8RsanfxrS69PMyPZfgZ8BGONv/p8RFN51tcVe+w=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"ehUDpM6WkQ0eEL9ySYwCzXBt4pmVHz+5DCiZV/Pgd50=\",\r\n \"secondaryKey\": \"/k1sGvRDViSMEmryjmkdn8fo3KXKy64GrIcugsT7o40=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"yRqTSd/L+ZN4nRKdHnEcOeBUxU0cs3FG82TRbPU2pa4=\",\r\n \"secondaryKey\": \"IYoGyCuTLhZmqHnQp21XaXfumAiwvSrpl5FJJvd7rW4=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9713-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps9713-3949739-eed064899b.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-454053db-f533-4ea8-9437-eecb4e207a51-iothub\",\r\n \"PrimaryKey\": \"L9aXC0dE5t9jbo2k+CH/vao9o634UrWJLKg1Ix8jyl0=\",\r\n \"SecondaryKey\": \"Ez7jNu3IrTSpDum2TkQDGVddb4wRiVoFfC4Yj81b/0M=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 21:34:49 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 21:34:49 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-a4b8ac0a-86ce-4475-ad31-b7e00a6d1d84-iothub\",\r\n \"PrimaryKey\": \"Pvgj9tHLfNh3cfu7YXXcJKzXAZ8gUOaosM9ZJqMqU7k=\",\r\n \"SecondaryKey\": \"Tsf4oF4r5hJ71cb2of3RTH8eoFalhy7IoXAtpcW90D0=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 21:34:49 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 21:34:49 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"ortpnJMGwgpMMBZpZdYIbraSSMOM9ue+cxdDNbyvCws=\",\r\n \"SecondaryKey\": \"yxRzxXbbp3jJCDD03/BB0SHAUenu5DmX4Br64wYHR3g=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 21:34:49 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 21:34:49 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"Wba4C3/mAi67Ww/3N8dQYaaczB12v+X/vNn6Rgpv7Os=\",\r\n \"SecondaryKey\": \"/CKSKGFMiZjX56+7gSg3AzmgNP012eb4u9InvAjL93A=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 21:34:49 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 21:34:49 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8918.servicebus.windows.net/;SharedAccessKeyName=ps7467;SharedAccessKey=KUvDppy1JlGQJF5LR1N7jyoEX6xt4mPAa8fB0YSt4To=;EntityPath=ps7778\",\r\n \"name\": \"eh1\",\r\n \"id\": \"766d3101-9169-467b-b1be-9aa844607e9e\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAABK+LsU=\",\r\n \"properties\": {\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"qN0g/ORi6fpYJC71YEauPRvVNh4s1Ty+Rd4th7ujsCQ=\",\r\n \"secondaryKey\": \"GmKhwqAUuPxQTpNVtn53yXkrzWOX2joy85EFfXVESKc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"QsM2CxTcOTA0MTEBNPlaAZvLbQzu48yNHQIeWHS+OzE=\",\r\n \"secondaryKey\": \"HY3c8NMm5qDwIuNhD+HQEdgC8x/L3QylVhiKWxLD17U=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"84G0AQok4gqnHeb0vfapPrCwVJLmqiyzAnj98AlakjU=\",\r\n \"secondaryKey\": \"Znr37zZWpBhF6xyQrB7eO89lUENalmfLyNRqWp5pRCM=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"jcq9Rt7Lhj1KxaxwiHsOGmLCftiAWfrSDNVrje8Z1F0=\",\r\n \"secondaryKey\": \"/oG2Tm7Qx3L/5/Wl/9taUYgKP5MgCLw/qhaFTgSGQ70=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"3LEo2h5K+OW0p8WqDb1THnjlE3HDr3A7flAielHSLjo=\",\r\n \"secondaryKey\": \"ncHKK3rlmOaKGyZmdGdqJhfd5UETUZ0QtAYbvJrnoPg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4390.servicebus.windows.net:5671/;SharedAccessKeyName=ps9447;SharedAccessKey=****;EntityPath=ps8829\",\r\n \"name\": \"eh1\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"etag\": \"AAAAAJ6GYzI=\",\r\n \"properties\": {\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"ortpnJMGwgpMMBZpZdYIbraSSMOM9ue+cxdDNbyvCws=\",\r\n \"secondaryKey\": \"yxRzxXbbp3jJCDD03/BB0SHAUenu5DmX4Br64wYHR3g=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Wba4C3/mAi67Ww/3N8dQYaaczB12v+X/vNn6Rgpv7Os=\",\r\n \"secondaryKey\": \"/CKSKGFMiZjX56+7gSg3AzmgNP012eb4u9InvAjL93A=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"/OlUnZRvcLv6XrKMaVdCIK3WvCoB7/SY/0lDxqk4Zig=\",\r\n \"secondaryKey\": \"q4ki56Tc//WSIKzpy6vxwD08Srxf1kNYIkim1QoM3bo=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"+L8yJ3ig3tfqTFn9+pitdbmFEw84qpKeCxSGaiEyHq4=\",\r\n \"secondaryKey\": \"B/YE8RsanfxrS69PMyPZfgZ8BGONv/p8RFN51tcVe+w=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"ehUDpM6WkQ0eEL9ySYwCzXBt4pmVHz+5DCiZV/Pgd50=\",\r\n \"secondaryKey\": \"/k1sGvRDViSMEmryjmkdn8fo3KXKy64GrIcugsT7o40=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8918.servicebus.windows.net:5671/;SharedAccessKeyName=ps7467;SharedAccessKey=****;EntityPath=ps7778\",\r\n \"name\": \"eh1\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a4e95978-d24e-4723-9c4b-2d762564bb20" + "8953d7d4-8ef9-4f6d-84a9-f6e31ad3d984" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -918,7 +918,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGQwNTZhOWItOTkxOC00ZjA5LWJmOTUtNzU0YmVkMjhjNmFh?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMTlmZTMyOWUtYzU5MS00OGNlLWIwYTgtMGM2YjMyZDZiYTVm?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -927,13 +927,13 @@ "4995" ], "x-ms-request-id": [ - "6f3c497c-5a0b-4057-815a-879dddc0c9e2" + "14ceb192-8116-49a9-9341-d1bdd1ce9e3c" ], "x-ms-correlation-request-id": [ - "6f3c497c-5a0b-4057-815a-879dddc0c9e2" + "14ceb192-8116-49a9-9341-d1bdd1ce9e3c" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182712Z:6f3c497c-5a0b-4057-815a-879dddc0c9e2" + "WESTUS2:20200730T213545Z:14ceb192-8116-49a9-9341-d1bdd1ce9e3c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -942,7 +942,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:27:11 GMT" + "Thu, 30 Jul 2020 21:35:45 GMT" ], "Content-Length": [ "4263" @@ -954,23 +954,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545\",\r\n \"name\": \"ps5545\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6651\",\r\n \"etag\": \"AAAAABK+LsU=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"qN0g/ORi6fpYJC71YEauPRvVNh4s1Ty+Rd4th7ujsCQ=\",\r\n \"secondaryKey\": \"GmKhwqAUuPxQTpNVtn53yXkrzWOX2joy85EFfXVESKc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"QsM2CxTcOTA0MTEBNPlaAZvLbQzu48yNHQIeWHS+OzE=\",\r\n \"secondaryKey\": \"HY3c8NMm5qDwIuNhD+HQEdgC8x/L3QylVhiKWxLD17U=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"84G0AQok4gqnHeb0vfapPrCwVJLmqiyzAnj98AlakjU=\",\r\n \"secondaryKey\": \"Znr37zZWpBhF6xyQrB7eO89lUENalmfLyNRqWp5pRCM=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"jcq9Rt7Lhj1KxaxwiHsOGmLCftiAWfrSDNVrje8Z1F0=\",\r\n \"secondaryKey\": \"/oG2Tm7Qx3L/5/Wl/9taUYgKP5MgCLw/qhaFTgSGQ70=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"3LEo2h5K+OW0p8WqDb1THnjlE3HDr3A7flAielHSLjo=\",\r\n \"secondaryKey\": \"ncHKK3rlmOaKGyZmdGdqJhfd5UETUZ0QtAYbvJrnoPg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5545-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps5545-3639468-bf5ebd9639.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-7b39fc7b-284a-478e-b74d-1252c6ced31c-iothub\",\r\n \"PrimaryKey\": \"KaD2ecGhoDiIKd+E0/k4AiqWwgHM3BCHPTyH6hYYBcM=\",\r\n \"SecondaryKey\": \"nwQd3fm3Sd7yk+mMSqUyccnrZ1gQOWrgg6WMerQxpAs=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:26:48 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:26:48 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-6034787d-74a7-4db1-8137-c2d8103d5c72-iothub\",\r\n \"PrimaryKey\": \"G0Im+dUWfpgST3j4TuU02d3VrtHCzKxhLsBZRBy66fg=\",\r\n \"SecondaryKey\": \"9MqpJG4od9M5/rhwMpgLQelXMkmJs0/n4/VdUjTkD5w=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:26:48 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:26:48 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"qN0g/ORi6fpYJC71YEauPRvVNh4s1Ty+Rd4th7ujsCQ=\",\r\n \"SecondaryKey\": \"GmKhwqAUuPxQTpNVtn53yXkrzWOX2joy85EFfXVESKc=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:26:48 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:26:48 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"QsM2CxTcOTA0MTEBNPlaAZvLbQzu48yNHQIeWHS+OzE=\",\r\n \"SecondaryKey\": \"HY3c8NMm5qDwIuNhD+HQEdgC8x/L3QylVhiKWxLD17U=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:26:48 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:26:48 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4390.servicebus.windows.net/;SharedAccessKeyName=ps9447;SharedAccessKey=IXe9hLU87Uokfg0I1BCZgbYiInPCeC0JKcOC9v9YHyc=;EntityPath=ps8829\",\r\n \"name\": \"eh1\",\r\n \"id\": \"d724afe3-88e5-4b8f-9ca5-ab9e13e48cf6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713\",\r\n \"name\": \"ps9713\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2471\",\r\n \"etag\": \"AAAAAJ6GYzI=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"ortpnJMGwgpMMBZpZdYIbraSSMOM9ue+cxdDNbyvCws=\",\r\n \"secondaryKey\": \"yxRzxXbbp3jJCDD03/BB0SHAUenu5DmX4Br64wYHR3g=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Wba4C3/mAi67Ww/3N8dQYaaczB12v+X/vNn6Rgpv7Os=\",\r\n \"secondaryKey\": \"/CKSKGFMiZjX56+7gSg3AzmgNP012eb4u9InvAjL93A=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"/OlUnZRvcLv6XrKMaVdCIK3WvCoB7/SY/0lDxqk4Zig=\",\r\n \"secondaryKey\": \"q4ki56Tc//WSIKzpy6vxwD08Srxf1kNYIkim1QoM3bo=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"+L8yJ3ig3tfqTFn9+pitdbmFEw84qpKeCxSGaiEyHq4=\",\r\n \"secondaryKey\": \"B/YE8RsanfxrS69PMyPZfgZ8BGONv/p8RFN51tcVe+w=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"ehUDpM6WkQ0eEL9ySYwCzXBt4pmVHz+5DCiZV/Pgd50=\",\r\n \"secondaryKey\": \"/k1sGvRDViSMEmryjmkdn8fo3KXKy64GrIcugsT7o40=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9713-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps9713-3949739-eed064899b.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-454053db-f533-4ea8-9437-eecb4e207a51-iothub\",\r\n \"PrimaryKey\": \"L9aXC0dE5t9jbo2k+CH/vao9o634UrWJLKg1Ix8jyl0=\",\r\n \"SecondaryKey\": \"Ez7jNu3IrTSpDum2TkQDGVddb4wRiVoFfC4Yj81b/0M=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 21:35:21 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 21:35:21 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-a4b8ac0a-86ce-4475-ad31-b7e00a6d1d84-iothub\",\r\n \"PrimaryKey\": \"Pvgj9tHLfNh3cfu7YXXcJKzXAZ8gUOaosM9ZJqMqU7k=\",\r\n \"SecondaryKey\": \"Tsf4oF4r5hJ71cb2of3RTH8eoFalhy7IoXAtpcW90D0=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 21:35:21 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 21:35:21 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"ortpnJMGwgpMMBZpZdYIbraSSMOM9ue+cxdDNbyvCws=\",\r\n \"SecondaryKey\": \"yxRzxXbbp3jJCDD03/BB0SHAUenu5DmX4Br64wYHR3g=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 21:35:21 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 21:35:21 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"Wba4C3/mAi67Ww/3N8dQYaaczB12v+X/vNn6Rgpv7Os=\",\r\n \"SecondaryKey\": \"/CKSKGFMiZjX56+7gSg3AzmgNP012eb4u9InvAjL93A=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 21:35:21 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 21:35:21 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8918.servicebus.windows.net/;SharedAccessKeyName=ps7467;SharedAccessKey=KUvDppy1JlGQJF5LR1N7jyoEX6xt4mPAa8fB0YSt4To=;EntityPath=ps7778\",\r\n \"name\": \"eh1\",\r\n \"id\": \"766d3101-9169-467b-b1be-9aa844607e9e\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAABK+M6w=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4390.servicebus.windows.net:5671/;SharedAccessKeyName=ps9447;SharedAccessKey=****;EntityPath=ps8829\",\r\n \"name\": \"eh1\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 5\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"etag\": \"AAAAAJ6HETo=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8918.servicebus.windows.net:5671/;SharedAccessKeyName=ps7467;SharedAccessKey=****;EntityPath=ps7778\",\r\n \"name\": \"eh1\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 5\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "44b18ad0-f32a-456a-92d2-2e9f34299ce7" + "490f8b2d-2ac3-4270-bc87-3d55a92e4e50" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -990,7 +990,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMzc1MzRmMmItYmViMS00YmJkLTkzYTMtZmJmNGUzNzlhODJl?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYTBjMmVlOTQtYTVlNC00MWVjLTg3NjEtMGMwMzcyYzlhMzVj?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -999,13 +999,13 @@ "4994" ], "x-ms-request-id": [ - "38e96fb1-c212-48c4-b8c5-6cd5022bb642" + "3c8bb9ef-2743-4c41-ad8b-777bc819e896" ], "x-ms-correlation-request-id": [ - "38e96fb1-c212-48c4-b8c5-6cd5022bb642" + "3c8bb9ef-2743-4c41-ad8b-777bc819e896" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182746Z:38e96fb1-c212-48c4-b8c5-6cd5022bb642" + "WESTUS2:20200730T213621Z:3c8bb9ef-2743-4c41-ad8b-777bc819e896" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1014,7 +1014,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:27:46 GMT" + "Thu, 30 Jul 2020 21:36:20 GMT" ], "Content-Length": [ "4266" @@ -1026,23 +1026,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545\",\r\n \"name\": \"ps5545\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6651\",\r\n \"etag\": \"AAAAABK+M6w=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"qN0g/ORi6fpYJC71YEauPRvVNh4s1Ty+Rd4th7ujsCQ=\",\r\n \"secondaryKey\": \"GmKhwqAUuPxQTpNVtn53yXkrzWOX2joy85EFfXVESKc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"QsM2CxTcOTA0MTEBNPlaAZvLbQzu48yNHQIeWHS+OzE=\",\r\n \"secondaryKey\": \"HY3c8NMm5qDwIuNhD+HQEdgC8x/L3QylVhiKWxLD17U=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"84G0AQok4gqnHeb0vfapPrCwVJLmqiyzAnj98AlakjU=\",\r\n \"secondaryKey\": \"Znr37zZWpBhF6xyQrB7eO89lUENalmfLyNRqWp5pRCM=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"jcq9Rt7Lhj1KxaxwiHsOGmLCftiAWfrSDNVrje8Z1F0=\",\r\n \"secondaryKey\": \"/oG2Tm7Qx3L/5/Wl/9taUYgKP5MgCLw/qhaFTgSGQ70=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"3LEo2h5K+OW0p8WqDb1THnjlE3HDr3A7flAielHSLjo=\",\r\n \"secondaryKey\": \"ncHKK3rlmOaKGyZmdGdqJhfd5UETUZ0QtAYbvJrnoPg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5545-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps5545-3639468-bf5ebd9639.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-7b39fc7b-284a-478e-b74d-1252c6ced31c-iothub\",\r\n \"PrimaryKey\": \"KaD2ecGhoDiIKd+E0/k4AiqWwgHM3BCHPTyH6hYYBcM=\",\r\n \"SecondaryKey\": \"nwQd3fm3Sd7yk+mMSqUyccnrZ1gQOWrgg6WMerQxpAs=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:27:23 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:27:23 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-6034787d-74a7-4db1-8137-c2d8103d5c72-iothub\",\r\n \"PrimaryKey\": \"G0Im+dUWfpgST3j4TuU02d3VrtHCzKxhLsBZRBy66fg=\",\r\n \"SecondaryKey\": \"9MqpJG4od9M5/rhwMpgLQelXMkmJs0/n4/VdUjTkD5w=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:27:23 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:27:23 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"qN0g/ORi6fpYJC71YEauPRvVNh4s1Ty+Rd4th7ujsCQ=\",\r\n \"SecondaryKey\": \"GmKhwqAUuPxQTpNVtn53yXkrzWOX2joy85EFfXVESKc=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:27:23 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:27:23 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"QsM2CxTcOTA0MTEBNPlaAZvLbQzu48yNHQIeWHS+OzE=\",\r\n \"SecondaryKey\": \"HY3c8NMm5qDwIuNhD+HQEdgC8x/L3QylVhiKWxLD17U=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:27:23 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:27:23 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4390.servicebus.windows.net/;SharedAccessKeyName=ps9447;SharedAccessKey=IXe9hLU87Uokfg0I1BCZgbYiInPCeC0JKcOC9v9YHyc=;EntityPath=ps8829\",\r\n \"name\": \"eh1\",\r\n \"id\": \"d724afe3-88e5-4b8f-9ca5-ab9e13e48cf6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713\",\r\n \"name\": \"ps9713\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2471\",\r\n \"etag\": \"AAAAAJ6HETo=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"ortpnJMGwgpMMBZpZdYIbraSSMOM9ue+cxdDNbyvCws=\",\r\n \"secondaryKey\": \"yxRzxXbbp3jJCDD03/BB0SHAUenu5DmX4Br64wYHR3g=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Wba4C3/mAi67Ww/3N8dQYaaczB12v+X/vNn6Rgpv7Os=\",\r\n \"secondaryKey\": \"/CKSKGFMiZjX56+7gSg3AzmgNP012eb4u9InvAjL93A=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"/OlUnZRvcLv6XrKMaVdCIK3WvCoB7/SY/0lDxqk4Zig=\",\r\n \"secondaryKey\": \"q4ki56Tc//WSIKzpy6vxwD08Srxf1kNYIkim1QoM3bo=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"+L8yJ3ig3tfqTFn9+pitdbmFEw84qpKeCxSGaiEyHq4=\",\r\n \"secondaryKey\": \"B/YE8RsanfxrS69PMyPZfgZ8BGONv/p8RFN51tcVe+w=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"ehUDpM6WkQ0eEL9ySYwCzXBt4pmVHz+5DCiZV/Pgd50=\",\r\n \"secondaryKey\": \"/k1sGvRDViSMEmryjmkdn8fo3KXKy64GrIcugsT7o40=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9713-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps9713-3949739-eed064899b.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-454053db-f533-4ea8-9437-eecb4e207a51-iothub\",\r\n \"PrimaryKey\": \"L9aXC0dE5t9jbo2k+CH/vao9o634UrWJLKg1Ix8jyl0=\",\r\n \"SecondaryKey\": \"Ez7jNu3IrTSpDum2TkQDGVddb4wRiVoFfC4Yj81b/0M=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 21:35:56 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 21:35:56 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-a4b8ac0a-86ce-4475-ad31-b7e00a6d1d84-iothub\",\r\n \"PrimaryKey\": \"Pvgj9tHLfNh3cfu7YXXcJKzXAZ8gUOaosM9ZJqMqU7k=\",\r\n \"SecondaryKey\": \"Tsf4oF4r5hJ71cb2of3RTH8eoFalhy7IoXAtpcW90D0=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 21:35:56 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 21:35:56 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"ortpnJMGwgpMMBZpZdYIbraSSMOM9ue+cxdDNbyvCws=\",\r\n \"SecondaryKey\": \"yxRzxXbbp3jJCDD03/BB0SHAUenu5DmX4Br64wYHR3g=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 21:35:56 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 21:35:56 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"Wba4C3/mAi67Ww/3N8dQYaaczB12v+X/vNn6Rgpv7Os=\",\r\n \"SecondaryKey\": \"/CKSKGFMiZjX56+7gSg3AzmgNP012eb4u9InvAjL93A=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 21:35:56 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 21:35:56 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8918.servicebus.windows.net/;SharedAccessKeyName=ps7467;SharedAccessKey=KUvDppy1JlGQJF5LR1N7jyoEX6xt4mPAa8fB0YSt4To=;EntityPath=ps7778\",\r\n \"name\": \"eh1\",\r\n \"id\": \"766d3101-9169-467b-b1be-9aa844607e9e\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAABK+ToE=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4390.servicebus.windows.net:5671/;SharedAccessKeyName=ps9447;SharedAccessKey=****;EntityPath=ps8829\",\r\n \"name\": \"eh1\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 5\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"etag\": \"AAAAAJ6HElI=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8918.servicebus.windows.net:5671/;SharedAccessKeyName=ps7467;SharedAccessKey=****;EntityPath=ps7778\",\r\n \"name\": \"eh1\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 5\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "dad369a7-1ae4-4980-8761-09e14678a840" + "f7488ad7-26b0-4a57-b2cb-5562fd55eed8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1062,7 +1062,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNjFhYjNiOWQtZjQwNi00MjQxLTgwOTItZTJhM2YxMTVmMjY1?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfODI0M2E0MWEtNDc3Ni00NTVmLWIzM2MtY2Q0ZWY2MmViYTA1?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1071,13 +1071,13 @@ "4993" ], "x-ms-request-id": [ - "9cb28c6c-8270-4eb9-b0e1-b8180f3d010e" + "cc4b8f70-5bef-4cc4-8954-085f8ea9d2b2" ], "x-ms-correlation-request-id": [ - "9cb28c6c-8270-4eb9-b0e1-b8180f3d010e" + "cc4b8f70-5bef-4cc4-8954-085f8ea9d2b2" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182821Z:9cb28c6c-8270-4eb9-b0e1-b8180f3d010e" + "WESTUS2:20200730T213656Z:cc4b8f70-5bef-4cc4-8954-085f8ea9d2b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1086,7 +1086,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:28:20 GMT" + "Thu, 30 Jul 2020 21:36:55 GMT" ], "Content-Length": [ "4266" @@ -1098,23 +1098,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545\",\r\n \"name\": \"ps5545\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6651\",\r\n \"etag\": \"AAAAABK+ToE=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"qN0g/ORi6fpYJC71YEauPRvVNh4s1Ty+Rd4th7ujsCQ=\",\r\n \"secondaryKey\": \"GmKhwqAUuPxQTpNVtn53yXkrzWOX2joy85EFfXVESKc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"QsM2CxTcOTA0MTEBNPlaAZvLbQzu48yNHQIeWHS+OzE=\",\r\n \"secondaryKey\": \"HY3c8NMm5qDwIuNhD+HQEdgC8x/L3QylVhiKWxLD17U=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"84G0AQok4gqnHeb0vfapPrCwVJLmqiyzAnj98AlakjU=\",\r\n \"secondaryKey\": \"Znr37zZWpBhF6xyQrB7eO89lUENalmfLyNRqWp5pRCM=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"jcq9Rt7Lhj1KxaxwiHsOGmLCftiAWfrSDNVrje8Z1F0=\",\r\n \"secondaryKey\": \"/oG2Tm7Qx3L/5/Wl/9taUYgKP5MgCLw/qhaFTgSGQ70=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"3LEo2h5K+OW0p8WqDb1THnjlE3HDr3A7flAielHSLjo=\",\r\n \"secondaryKey\": \"ncHKK3rlmOaKGyZmdGdqJhfd5UETUZ0QtAYbvJrnoPg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5545-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps5545-3639468-bf5ebd9639.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-7b39fc7b-284a-478e-b74d-1252c6ced31c-iothub\",\r\n \"PrimaryKey\": \"KaD2ecGhoDiIKd+E0/k4AiqWwgHM3BCHPTyH6hYYBcM=\",\r\n \"SecondaryKey\": \"nwQd3fm3Sd7yk+mMSqUyccnrZ1gQOWrgg6WMerQxpAs=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:28:01 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:28:01 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-6034787d-74a7-4db1-8137-c2d8103d5c72-iothub\",\r\n \"PrimaryKey\": \"G0Im+dUWfpgST3j4TuU02d3VrtHCzKxhLsBZRBy66fg=\",\r\n \"SecondaryKey\": \"9MqpJG4od9M5/rhwMpgLQelXMkmJs0/n4/VdUjTkD5w=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:28:01 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:28:01 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"qN0g/ORi6fpYJC71YEauPRvVNh4s1Ty+Rd4th7ujsCQ=\",\r\n \"SecondaryKey\": \"GmKhwqAUuPxQTpNVtn53yXkrzWOX2joy85EFfXVESKc=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:28:01 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:28:01 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"QsM2CxTcOTA0MTEBNPlaAZvLbQzu48yNHQIeWHS+OzE=\",\r\n \"SecondaryKey\": \"HY3c8NMm5qDwIuNhD+HQEdgC8x/L3QylVhiKWxLD17U=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:28:01 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:28:01 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4390.servicebus.windows.net/;SharedAccessKeyName=ps9447;SharedAccessKey=IXe9hLU87Uokfg0I1BCZgbYiInPCeC0JKcOC9v9YHyc=;EntityPath=ps8829\",\r\n \"name\": \"eh1\",\r\n \"id\": \"d724afe3-88e5-4b8f-9ca5-ab9e13e48cf6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713\",\r\n \"name\": \"ps9713\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2471\",\r\n \"etag\": \"AAAAAJ6HElI=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"ortpnJMGwgpMMBZpZdYIbraSSMOM9ue+cxdDNbyvCws=\",\r\n \"secondaryKey\": \"yxRzxXbbp3jJCDD03/BB0SHAUenu5DmX4Br64wYHR3g=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Wba4C3/mAi67Ww/3N8dQYaaczB12v+X/vNn6Rgpv7Os=\",\r\n \"secondaryKey\": \"/CKSKGFMiZjX56+7gSg3AzmgNP012eb4u9InvAjL93A=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"/OlUnZRvcLv6XrKMaVdCIK3WvCoB7/SY/0lDxqk4Zig=\",\r\n \"secondaryKey\": \"q4ki56Tc//WSIKzpy6vxwD08Srxf1kNYIkim1QoM3bo=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"+L8yJ3ig3tfqTFn9+pitdbmFEw84qpKeCxSGaiEyHq4=\",\r\n \"secondaryKey\": \"B/YE8RsanfxrS69PMyPZfgZ8BGONv/p8RFN51tcVe+w=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"ehUDpM6WkQ0eEL9ySYwCzXBt4pmVHz+5DCiZV/Pgd50=\",\r\n \"secondaryKey\": \"/k1sGvRDViSMEmryjmkdn8fo3KXKy64GrIcugsT7o40=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9713-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps9713-3949739-eed064899b.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-454053db-f533-4ea8-9437-eecb4e207a51-iothub\",\r\n \"PrimaryKey\": \"L9aXC0dE5t9jbo2k+CH/vao9o634UrWJLKg1Ix8jyl0=\",\r\n \"SecondaryKey\": \"Ez7jNu3IrTSpDum2TkQDGVddb4wRiVoFfC4Yj81b/0M=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 21:36:34 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 21:36:34 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-a4b8ac0a-86ce-4475-ad31-b7e00a6d1d84-iothub\",\r\n \"PrimaryKey\": \"Pvgj9tHLfNh3cfu7YXXcJKzXAZ8gUOaosM9ZJqMqU7k=\",\r\n \"SecondaryKey\": \"Tsf4oF4r5hJ71cb2of3RTH8eoFalhy7IoXAtpcW90D0=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 21:36:34 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 21:36:34 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"ortpnJMGwgpMMBZpZdYIbraSSMOM9ue+cxdDNbyvCws=\",\r\n \"SecondaryKey\": \"yxRzxXbbp3jJCDD03/BB0SHAUenu5DmX4Br64wYHR3g=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 21:36:34 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 21:36:34 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"Wba4C3/mAi67Ww/3N8dQYaaczB12v+X/vNn6Rgpv7Os=\",\r\n \"SecondaryKey\": \"/CKSKGFMiZjX56+7gSg3AzmgNP012eb4u9InvAjL93A=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 21:36:34 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 21:36:34 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8918.servicebus.windows.net/;SharedAccessKeyName=ps7467;SharedAccessKey=KUvDppy1JlGQJF5LR1N7jyoEX6xt4mPAa8fB0YSt4To=;EntityPath=ps7778\",\r\n \"name\": \"eh1\",\r\n \"id\": \"766d3101-9169-467b-b1be-9aa844607e9e\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAABK+YfQ=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4390.servicebus.windows.net:5671/;SharedAccessKeyName=ps9447;SharedAccessKey=****;EntityPath=ps8829\",\r\n \"name\": \"eh1\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 5\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"etag\": \"AAAAAJ6HZVk=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8918.servicebus.windows.net:5671/;SharedAccessKeyName=ps7467;SharedAccessKey=****;EntityPath=ps7778\",\r\n \"name\": \"eh1\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 5\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e1b016f6-6e31-4d2c-9ec9-8f3edc53a9f0" + "3cd8578b-3bb8-4780-aad1-9f54ad6faaaa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1134,7 +1134,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfOTliM2I2MTktZGVhMy00MWRhLTkwNzAtZTA0YTRlZmMwODc5?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfM2FjYmZiZmMtMDQxNi00ODVmLWJmMjktM2YyMGRjOWVmN2Zk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1143,13 +1143,13 @@ "4992" ], "x-ms-request-id": [ - "f1b5cb8d-8986-4aec-ad56-a1d8af8e410a" + "aaf21b5f-87c4-4c63-8afa-65c0d0827149" ], "x-ms-correlation-request-id": [ - "f1b5cb8d-8986-4aec-ad56-a1d8af8e410a" + "aaf21b5f-87c4-4c63-8afa-65c0d0827149" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182855Z:f1b5cb8d-8986-4aec-ad56-a1d8af8e410a" + "WESTUS2:20200730T213731Z:aaf21b5f-87c4-4c63-8afa-65c0d0827149" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1158,7 +1158,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:28:55 GMT" + "Thu, 30 Jul 2020 21:37:30 GMT" ], "Content-Length": [ "4266" @@ -1170,23 +1170,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545\",\r\n \"name\": \"ps5545\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6651\",\r\n \"etag\": \"AAAAABK+YfQ=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"qN0g/ORi6fpYJC71YEauPRvVNh4s1Ty+Rd4th7ujsCQ=\",\r\n \"secondaryKey\": \"GmKhwqAUuPxQTpNVtn53yXkrzWOX2joy85EFfXVESKc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"QsM2CxTcOTA0MTEBNPlaAZvLbQzu48yNHQIeWHS+OzE=\",\r\n \"secondaryKey\": \"HY3c8NMm5qDwIuNhD+HQEdgC8x/L3QylVhiKWxLD17U=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"84G0AQok4gqnHeb0vfapPrCwVJLmqiyzAnj98AlakjU=\",\r\n \"secondaryKey\": \"Znr37zZWpBhF6xyQrB7eO89lUENalmfLyNRqWp5pRCM=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"jcq9Rt7Lhj1KxaxwiHsOGmLCftiAWfrSDNVrje8Z1F0=\",\r\n \"secondaryKey\": \"/oG2Tm7Qx3L/5/Wl/9taUYgKP5MgCLw/qhaFTgSGQ70=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"3LEo2h5K+OW0p8WqDb1THnjlE3HDr3A7flAielHSLjo=\",\r\n \"secondaryKey\": \"ncHKK3rlmOaKGyZmdGdqJhfd5UETUZ0QtAYbvJrnoPg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5545-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps5545-3639468-bf5ebd9639.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-7b39fc7b-284a-478e-b74d-1252c6ced31c-iothub\",\r\n \"PrimaryKey\": \"KaD2ecGhoDiIKd+E0/k4AiqWwgHM3BCHPTyH6hYYBcM=\",\r\n \"SecondaryKey\": \"nwQd3fm3Sd7yk+mMSqUyccnrZ1gQOWrgg6WMerQxpAs=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:28:32 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:28:32 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-6034787d-74a7-4db1-8137-c2d8103d5c72-iothub\",\r\n \"PrimaryKey\": \"G0Im+dUWfpgST3j4TuU02d3VrtHCzKxhLsBZRBy66fg=\",\r\n \"SecondaryKey\": \"9MqpJG4od9M5/rhwMpgLQelXMkmJs0/n4/VdUjTkD5w=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:28:32 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:28:32 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"qN0g/ORi6fpYJC71YEauPRvVNh4s1Ty+Rd4th7ujsCQ=\",\r\n \"SecondaryKey\": \"GmKhwqAUuPxQTpNVtn53yXkrzWOX2joy85EFfXVESKc=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:28:32 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:28:32 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"QsM2CxTcOTA0MTEBNPlaAZvLbQzu48yNHQIeWHS+OzE=\",\r\n \"SecondaryKey\": \"HY3c8NMm5qDwIuNhD+HQEdgC8x/L3QylVhiKWxLD17U=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:28:32 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:28:32 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4390.servicebus.windows.net/;SharedAccessKeyName=ps9447;SharedAccessKey=IXe9hLU87Uokfg0I1BCZgbYiInPCeC0JKcOC9v9YHyc=;EntityPath=ps8829\",\r\n \"name\": \"eh1\",\r\n \"id\": \"d724afe3-88e5-4b8f-9ca5-ab9e13e48cf6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713\",\r\n \"name\": \"ps9713\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2471\",\r\n \"etag\": \"AAAAAJ6HZVk=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"ortpnJMGwgpMMBZpZdYIbraSSMOM9ue+cxdDNbyvCws=\",\r\n \"secondaryKey\": \"yxRzxXbbp3jJCDD03/BB0SHAUenu5DmX4Br64wYHR3g=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Wba4C3/mAi67Ww/3N8dQYaaczB12v+X/vNn6Rgpv7Os=\",\r\n \"secondaryKey\": \"/CKSKGFMiZjX56+7gSg3AzmgNP012eb4u9InvAjL93A=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"/OlUnZRvcLv6XrKMaVdCIK3WvCoB7/SY/0lDxqk4Zig=\",\r\n \"secondaryKey\": \"q4ki56Tc//WSIKzpy6vxwD08Srxf1kNYIkim1QoM3bo=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"+L8yJ3ig3tfqTFn9+pitdbmFEw84qpKeCxSGaiEyHq4=\",\r\n \"secondaryKey\": \"B/YE8RsanfxrS69PMyPZfgZ8BGONv/p8RFN51tcVe+w=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"ehUDpM6WkQ0eEL9ySYwCzXBt4pmVHz+5DCiZV/Pgd50=\",\r\n \"secondaryKey\": \"/k1sGvRDViSMEmryjmkdn8fo3KXKy64GrIcugsT7o40=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9713-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps9713-3949739-eed064899b.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-454053db-f533-4ea8-9437-eecb4e207a51-iothub\",\r\n \"PrimaryKey\": \"L9aXC0dE5t9jbo2k+CH/vao9o634UrWJLKg1Ix8jyl0=\",\r\n \"SecondaryKey\": \"Ez7jNu3IrTSpDum2TkQDGVddb4wRiVoFfC4Yj81b/0M=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 21:37:14 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 21:37:14 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-a4b8ac0a-86ce-4475-ad31-b7e00a6d1d84-iothub\",\r\n \"PrimaryKey\": \"Pvgj9tHLfNh3cfu7YXXcJKzXAZ8gUOaosM9ZJqMqU7k=\",\r\n \"SecondaryKey\": \"Tsf4oF4r5hJ71cb2of3RTH8eoFalhy7IoXAtpcW90D0=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 21:37:14 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 21:37:14 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"ortpnJMGwgpMMBZpZdYIbraSSMOM9ue+cxdDNbyvCws=\",\r\n \"SecondaryKey\": \"yxRzxXbbp3jJCDD03/BB0SHAUenu5DmX4Br64wYHR3g=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 21:37:14 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 21:37:14 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"Wba4C3/mAi67Ww/3N8dQYaaczB12v+X/vNn6Rgpv7Os=\",\r\n \"SecondaryKey\": \"/CKSKGFMiZjX56+7gSg3AzmgNP012eb4u9InvAjL93A=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 21:37:14 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 21:37:14 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8918.servicebus.windows.net/;SharedAccessKeyName=ps7467;SharedAccessKey=KUvDppy1JlGQJF5LR1N7jyoEX6xt4mPAa8fB0YSt4To=;EntityPath=ps7778\",\r\n \"name\": \"eh1\",\r\n \"id\": \"766d3101-9169-467b-b1be-9aa844607e9e\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAABK+Y4A=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ]\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 5\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"etag\": \"AAAAAJ6Hwc4=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ]\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 5\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6d04045b-c4bd-487b-a7f7-699174a12e98" + "7d5bff6a-813e-4e06-a711-a9d4f484a8bf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1206,7 +1206,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNjljNWI2ZGUtMDZlYS00OWY2LWJjN2UtOWExOTQ2M2Q0MmEz?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMTUzZjViYjgtOGM4Mi00ZjRhLWE5MmQtMmE5NjkxNGM3ODhm?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1215,13 +1215,13 @@ "4991" ], "x-ms-request-id": [ - "6eeab4dd-f92c-48d9-b085-6dca2a74c3d8" + "ac6f98d2-b6d0-4068-9ce1-46d761d95d10" ], "x-ms-correlation-request-id": [ - "6eeab4dd-f92c-48d9-b085-6dca2a74c3d8" + "ac6f98d2-b6d0-4068-9ce1-46d761d95d10" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182929Z:6eeab4dd-f92c-48d9-b085-6dca2a74c3d8" + "WESTUS2:20200730T213906Z:ac6f98d2-b6d0-4068-9ce1-46d761d95d10" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1230,7 +1230,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:29:28 GMT" + "Thu, 30 Jul 2020 21:39:06 GMT" ], "Content-Length": [ "4034" @@ -1242,23 +1242,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545\",\r\n \"name\": \"ps5545\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6651\",\r\n \"etag\": \"AAAAABK+Y4A=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"qN0g/ORi6fpYJC71YEauPRvVNh4s1Ty+Rd4th7ujsCQ=\",\r\n \"secondaryKey\": \"GmKhwqAUuPxQTpNVtn53yXkrzWOX2joy85EFfXVESKc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"QsM2CxTcOTA0MTEBNPlaAZvLbQzu48yNHQIeWHS+OzE=\",\r\n \"secondaryKey\": \"HY3c8NMm5qDwIuNhD+HQEdgC8x/L3QylVhiKWxLD17U=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"84G0AQok4gqnHeb0vfapPrCwVJLmqiyzAnj98AlakjU=\",\r\n \"secondaryKey\": \"Znr37zZWpBhF6xyQrB7eO89lUENalmfLyNRqWp5pRCM=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"jcq9Rt7Lhj1KxaxwiHsOGmLCftiAWfrSDNVrje8Z1F0=\",\r\n \"secondaryKey\": \"/oG2Tm7Qx3L/5/Wl/9taUYgKP5MgCLw/qhaFTgSGQ70=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"3LEo2h5K+OW0p8WqDb1THnjlE3HDr3A7flAielHSLjo=\",\r\n \"secondaryKey\": \"ncHKK3rlmOaKGyZmdGdqJhfd5UETUZ0QtAYbvJrnoPg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5545-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps5545-3639468-bf5ebd9639.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-7b39fc7b-284a-478e-b74d-1252c6ced31c-iothub\",\r\n \"PrimaryKey\": \"KaD2ecGhoDiIKd+E0/k4AiqWwgHM3BCHPTyH6hYYBcM=\",\r\n \"SecondaryKey\": \"nwQd3fm3Sd7yk+mMSqUyccnrZ1gQOWrgg6WMerQxpAs=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:29:06 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:29:06 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-6034787d-74a7-4db1-8137-c2d8103d5c72-iothub\",\r\n \"PrimaryKey\": \"G0Im+dUWfpgST3j4TuU02d3VrtHCzKxhLsBZRBy66fg=\",\r\n \"SecondaryKey\": \"9MqpJG4od9M5/rhwMpgLQelXMkmJs0/n4/VdUjTkD5w=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:29:06 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:29:06 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"qN0g/ORi6fpYJC71YEauPRvVNh4s1Ty+Rd4th7ujsCQ=\",\r\n \"SecondaryKey\": \"GmKhwqAUuPxQTpNVtn53yXkrzWOX2joy85EFfXVESKc=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:29:06 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:29:06 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"QsM2CxTcOTA0MTEBNPlaAZvLbQzu48yNHQIeWHS+OzE=\",\r\n \"SecondaryKey\": \"HY3c8NMm5qDwIuNhD+HQEdgC8x/L3QylVhiKWxLD17U=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:29:06 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:29:06 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713\",\r\n \"name\": \"ps9713\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2471\",\r\n \"etag\": \"AAAAAJ6Hwc4=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"ortpnJMGwgpMMBZpZdYIbraSSMOM9ue+cxdDNbyvCws=\",\r\n \"secondaryKey\": \"yxRzxXbbp3jJCDD03/BB0SHAUenu5DmX4Br64wYHR3g=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Wba4C3/mAi67Ww/3N8dQYaaczB12v+X/vNn6Rgpv7Os=\",\r\n \"secondaryKey\": \"/CKSKGFMiZjX56+7gSg3AzmgNP012eb4u9InvAjL93A=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"/OlUnZRvcLv6XrKMaVdCIK3WvCoB7/SY/0lDxqk4Zig=\",\r\n \"secondaryKey\": \"q4ki56Tc//WSIKzpy6vxwD08Srxf1kNYIkim1QoM3bo=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"+L8yJ3ig3tfqTFn9+pitdbmFEw84qpKeCxSGaiEyHq4=\",\r\n \"secondaryKey\": \"B/YE8RsanfxrS69PMyPZfgZ8BGONv/p8RFN51tcVe+w=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"ehUDpM6WkQ0eEL9ySYwCzXBt4pmVHz+5DCiZV/Pgd50=\",\r\n \"secondaryKey\": \"/k1sGvRDViSMEmryjmkdn8fo3KXKy64GrIcugsT7o40=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9713-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps9713-3949739-eed064899b.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-454053db-f533-4ea8-9437-eecb4e207a51-iothub\",\r\n \"PrimaryKey\": \"L9aXC0dE5t9jbo2k+CH/vao9o634UrWJLKg1Ix8jyl0=\",\r\n \"SecondaryKey\": \"Ez7jNu3IrTSpDum2TkQDGVddb4wRiVoFfC4Yj81b/0M=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 21:37:45 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 21:37:45 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-a4b8ac0a-86ce-4475-ad31-b7e00a6d1d84-iothub\",\r\n \"PrimaryKey\": \"Pvgj9tHLfNh3cfu7YXXcJKzXAZ8gUOaosM9ZJqMqU7k=\",\r\n \"SecondaryKey\": \"Tsf4oF4r5hJ71cb2of3RTH8eoFalhy7IoXAtpcW90D0=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 21:37:45 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 21:37:45 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"ortpnJMGwgpMMBZpZdYIbraSSMOM9ue+cxdDNbyvCws=\",\r\n \"SecondaryKey\": \"yxRzxXbbp3jJCDD03/BB0SHAUenu5DmX4Br64wYHR3g=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 21:37:45 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 21:37:45 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"Wba4C3/mAi67Ww/3N8dQYaaczB12v+X/vNn6Rgpv7Os=\",\r\n \"SecondaryKey\": \"/CKSKGFMiZjX56+7gSg3AzmgNP012eb4u9InvAjL93A=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 21:37:45 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 21:37:45 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAABK+kHI=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 5\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"etag\": \"AAAAAJ6IqRE=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 5\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c36b9e43-05b6-4c37-947c-12cf42bea88c" + "21ef4d15-7da9-49da-8ced-f3dd658f9046" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1278,7 +1278,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfM2QxZGRkNmYtNDg4Yy00MWRlLTkxOWMtOTMzMDgzM2Q5NDU2?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZDdhMTc4MmYtNWIyOC00NjQ4LWE1ZDUtYmM5YzMwNzNjZjVk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1287,13 +1287,13 @@ "4990" ], "x-ms-request-id": [ - "f5815c81-ee07-486a-add1-a68b5d659feb" + "dd25153a-9332-45c3-bf13-8f2ebfa8ed04" ], "x-ms-correlation-request-id": [ - "f5815c81-ee07-486a-add1-a68b5d659feb" + "dd25153a-9332-45c3-bf13-8f2ebfa8ed04" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183004Z:f5815c81-ee07-486a-add1-a68b5d659feb" + "WESTUS2:20200730T213942Z:dd25153a-9332-45c3-bf13-8f2ebfa8ed04" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1302,7 +1302,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:30:03 GMT" + "Thu, 30 Jul 2020 21:39:41 GMT" ], "Content-Length": [ "4141" @@ -1314,23 +1314,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545\",\r\n \"name\": \"ps5545\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6651\",\r\n \"etag\": \"AAAAABK+kHI=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"qN0g/ORi6fpYJC71YEauPRvVNh4s1Ty+Rd4th7ujsCQ=\",\r\n \"secondaryKey\": \"GmKhwqAUuPxQTpNVtn53yXkrzWOX2joy85EFfXVESKc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"QsM2CxTcOTA0MTEBNPlaAZvLbQzu48yNHQIeWHS+OzE=\",\r\n \"secondaryKey\": \"HY3c8NMm5qDwIuNhD+HQEdgC8x/L3QylVhiKWxLD17U=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"84G0AQok4gqnHeb0vfapPrCwVJLmqiyzAnj98AlakjU=\",\r\n \"secondaryKey\": \"Znr37zZWpBhF6xyQrB7eO89lUENalmfLyNRqWp5pRCM=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"jcq9Rt7Lhj1KxaxwiHsOGmLCftiAWfrSDNVrje8Z1F0=\",\r\n \"secondaryKey\": \"/oG2Tm7Qx3L/5/Wl/9taUYgKP5MgCLw/qhaFTgSGQ70=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"3LEo2h5K+OW0p8WqDb1THnjlE3HDr3A7flAielHSLjo=\",\r\n \"secondaryKey\": \"ncHKK3rlmOaKGyZmdGdqJhfd5UETUZ0QtAYbvJrnoPg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5545-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps5545-3639468-bf5ebd9639.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-7b39fc7b-284a-478e-b74d-1252c6ced31c-iothub\",\r\n \"PrimaryKey\": \"KaD2ecGhoDiIKd+E0/k4AiqWwgHM3BCHPTyH6hYYBcM=\",\r\n \"SecondaryKey\": \"nwQd3fm3Sd7yk+mMSqUyccnrZ1gQOWrgg6WMerQxpAs=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:29:41 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:29:41 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-6034787d-74a7-4db1-8137-c2d8103d5c72-iothub\",\r\n \"PrimaryKey\": \"G0Im+dUWfpgST3j4TuU02d3VrtHCzKxhLsBZRBy66fg=\",\r\n \"SecondaryKey\": \"9MqpJG4od9M5/rhwMpgLQelXMkmJs0/n4/VdUjTkD5w=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:29:41 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:29:41 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"qN0g/ORi6fpYJC71YEauPRvVNh4s1Ty+Rd4th7ujsCQ=\",\r\n \"SecondaryKey\": \"GmKhwqAUuPxQTpNVtn53yXkrzWOX2joy85EFfXVESKc=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:29:41 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:29:41 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"QsM2CxTcOTA0MTEBNPlaAZvLbQzu48yNHQIeWHS+OzE=\",\r\n \"SecondaryKey\": \"HY3c8NMm5qDwIuNhD+HQEdgC8x/L3QylVhiKWxLD17U=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:29:41 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:29:41 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713\",\r\n \"name\": \"ps9713\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2471\",\r\n \"etag\": \"AAAAAJ6IqRE=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"ortpnJMGwgpMMBZpZdYIbraSSMOM9ue+cxdDNbyvCws=\",\r\n \"secondaryKey\": \"yxRzxXbbp3jJCDD03/BB0SHAUenu5DmX4Br64wYHR3g=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Wba4C3/mAi67Ww/3N8dQYaaczB12v+X/vNn6Rgpv7Os=\",\r\n \"secondaryKey\": \"/CKSKGFMiZjX56+7gSg3AzmgNP012eb4u9InvAjL93A=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"/OlUnZRvcLv6XrKMaVdCIK3WvCoB7/SY/0lDxqk4Zig=\",\r\n \"secondaryKey\": \"q4ki56Tc//WSIKzpy6vxwD08Srxf1kNYIkim1QoM3bo=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"+L8yJ3ig3tfqTFn9+pitdbmFEw84qpKeCxSGaiEyHq4=\",\r\n \"secondaryKey\": \"B/YE8RsanfxrS69PMyPZfgZ8BGONv/p8RFN51tcVe+w=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"ehUDpM6WkQ0eEL9ySYwCzXBt4pmVHz+5DCiZV/Pgd50=\",\r\n \"secondaryKey\": \"/k1sGvRDViSMEmryjmkdn8fo3KXKy64GrIcugsT7o40=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9713-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps9713-3949739-eed064899b.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-454053db-f533-4ea8-9437-eecb4e207a51-iothub\",\r\n \"PrimaryKey\": \"L9aXC0dE5t9jbo2k+CH/vao9o634UrWJLKg1Ix8jyl0=\",\r\n \"SecondaryKey\": \"Ez7jNu3IrTSpDum2TkQDGVddb4wRiVoFfC4Yj81b/0M=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 21:39:19 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 21:39:19 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-a4b8ac0a-86ce-4475-ad31-b7e00a6d1d84-iothub\",\r\n \"PrimaryKey\": \"Pvgj9tHLfNh3cfu7YXXcJKzXAZ8gUOaosM9ZJqMqU7k=\",\r\n \"SecondaryKey\": \"Tsf4oF4r5hJ71cb2of3RTH8eoFalhy7IoXAtpcW90D0=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 21:39:19 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 21:39:19 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"ortpnJMGwgpMMBZpZdYIbraSSMOM9ue+cxdDNbyvCws=\",\r\n \"SecondaryKey\": \"yxRzxXbbp3jJCDD03/BB0SHAUenu5DmX4Br64wYHR3g=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 21:39:19 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 21:39:19 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"Wba4C3/mAi67Ww/3N8dQYaaczB12v+X/vNn6Rgpv7Os=\",\r\n \"SecondaryKey\": \"/CKSKGFMiZjX56+7gSg3AzmgNP012eb4u9InvAjL93A=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 21:39:19 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 21:39:19 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAABK+y3M=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 5\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"etag\": \"AAAAAJ6JXKo=\",\r\n \"properties\": {\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true,\r\n \"source\": \"DeviceMessages\"\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 5\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "17850b68-b462-4c64-a0b5-706a96ebc188" + "ca74a639-9b16-4b68-949a-f5aeb684d61e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1350,7 +1350,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTZlMTdhYzItYjcyNC00MWVlLWIxOGItN2I2ODU4ZTYyMmFl?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMzJlODAxNjMtMmU5Yi00NDFjLTllMGUtOGRkYjdlYmQ5MmY1?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1359,13 +1359,13 @@ "4989" ], "x-ms-request-id": [ - "513ff96a-ed09-4215-88dc-44c35450790d" + "47764f7f-9a28-438f-b5f8-90cb03695fb1" ], "x-ms-correlation-request-id": [ - "513ff96a-ed09-4215-88dc-44c35450790d" + "47764f7f-9a28-438f-b5f8-90cb03695fb1" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183039Z:513ff96a-ed09-4215-88dc-44c35450790d" + "WESTUS2:20200730T214255Z:47764f7f-9a28-438f-b5f8-90cb03695fb1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1374,7 +1374,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:30:38 GMT" + "Thu, 30 Jul 2020 21:42:55 GMT" ], "Content-Length": [ "4140" @@ -1386,17 +1386,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545\",\r\n \"name\": \"ps5545\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6651\",\r\n \"etag\": \"AAAAABK+y3M=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"qN0g/ORi6fpYJC71YEauPRvVNh4s1Ty+Rd4th7ujsCQ=\",\r\n \"secondaryKey\": \"GmKhwqAUuPxQTpNVtn53yXkrzWOX2joy85EFfXVESKc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"QsM2CxTcOTA0MTEBNPlaAZvLbQzu48yNHQIeWHS+OzE=\",\r\n \"secondaryKey\": \"HY3c8NMm5qDwIuNhD+HQEdgC8x/L3QylVhiKWxLD17U=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"84G0AQok4gqnHeb0vfapPrCwVJLmqiyzAnj98AlakjU=\",\r\n \"secondaryKey\": \"Znr37zZWpBhF6xyQrB7eO89lUENalmfLyNRqWp5pRCM=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"jcq9Rt7Lhj1KxaxwiHsOGmLCftiAWfrSDNVrje8Z1F0=\",\r\n \"secondaryKey\": \"/oG2Tm7Qx3L/5/Wl/9taUYgKP5MgCLw/qhaFTgSGQ70=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"3LEo2h5K+OW0p8WqDb1THnjlE3HDr3A7flAielHSLjo=\",\r\n \"secondaryKey\": \"ncHKK3rlmOaKGyZmdGdqJhfd5UETUZ0QtAYbvJrnoPg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5545-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps5545-3639468-bf5ebd9639.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-7b39fc7b-284a-478e-b74d-1252c6ced31c-iothub\",\r\n \"PrimaryKey\": \"KaD2ecGhoDiIKd+E0/k4AiqWwgHM3BCHPTyH6hYYBcM=\",\r\n \"SecondaryKey\": \"nwQd3fm3Sd7yk+mMSqUyccnrZ1gQOWrgg6WMerQxpAs=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:30:15 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:30:15 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-6034787d-74a7-4db1-8137-c2d8103d5c72-iothub\",\r\n \"PrimaryKey\": \"G0Im+dUWfpgST3j4TuU02d3VrtHCzKxhLsBZRBy66fg=\",\r\n \"SecondaryKey\": \"9MqpJG4od9M5/rhwMpgLQelXMkmJs0/n4/VdUjTkD5w=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:30:15 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:30:15 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"qN0g/ORi6fpYJC71YEauPRvVNh4s1Ty+Rd4th7ujsCQ=\",\r\n \"SecondaryKey\": \"GmKhwqAUuPxQTpNVtn53yXkrzWOX2joy85EFfXVESKc=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:30:15 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:30:15 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"QsM2CxTcOTA0MTEBNPlaAZvLbQzu48yNHQIeWHS+OzE=\",\r\n \"SecondaryKey\": \"HY3c8NMm5qDwIuNhD+HQEdgC8x/L3QylVhiKWxLD17U=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Tue, 16 Jun 2020 18:30:15 GMT\",\r\n \"ModifiedTime\": \"Tue, 16 Jun 2020 18:30:15 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713\",\r\n \"name\": \"ps9713\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2471\",\r\n \"etag\": \"AAAAAJ6JXKo=\",\r\n \"properties\": {\r\n \"operationsMonitoringProperties\": {\r\n \"events\": {\r\n \"None\": \"None\",\r\n \"Connections\": \"None\",\r\n \"DeviceTelemetry\": \"None\",\r\n \"C2DCommands\": \"None\",\r\n \"DeviceIdentityOperations\": \"None\",\r\n \"FileUploadOperations\": \"None\",\r\n \"Routes\": \"None\"\r\n }\r\n },\r\n \"provisioningState\": \"Accepted\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"ortpnJMGwgpMMBZpZdYIbraSSMOM9ue+cxdDNbyvCws=\",\r\n \"secondaryKey\": \"yxRzxXbbp3jJCDD03/BB0SHAUenu5DmX4Br64wYHR3g=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Wba4C3/mAi67Ww/3N8dQYaaczB12v+X/vNn6Rgpv7Os=\",\r\n \"secondaryKey\": \"/CKSKGFMiZjX56+7gSg3AzmgNP012eb4u9InvAjL93A=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"/OlUnZRvcLv6XrKMaVdCIK3WvCoB7/SY/0lDxqk4Zig=\",\r\n \"secondaryKey\": \"q4ki56Tc//WSIKzpy6vxwD08Srxf1kNYIkim1QoM3bo=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"+L8yJ3ig3tfqTFn9+pitdbmFEw84qpKeCxSGaiEyHq4=\",\r\n \"secondaryKey\": \"B/YE8RsanfxrS69PMyPZfgZ8BGONv/p8RFN51tcVe+w=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"ehUDpM6WkQ0eEL9ySYwCzXBt4pmVHz+5DCiZV/Pgd50=\",\r\n \"secondaryKey\": \"/k1sGvRDViSMEmryjmkdn8fo3KXKy64GrIcugsT7o40=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ],\r\n \"ipFilterRules\": [],\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4\r\n },\r\n \"operationsMonitoringEvents\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9713-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps9713-3949739-eed064899b.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"KeyName\": \"scaleunitsend-454053db-f533-4ea8-9437-eecb4e207a51-iothub\",\r\n \"PrimaryKey\": \"L9aXC0dE5t9jbo2k+CH/vao9o634UrWJLKg1Ix8jyl0=\",\r\n \"SecondaryKey\": \"Ez7jNu3IrTSpDum2TkQDGVddb4wRiVoFfC4Yj81b/0M=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 21:39:55 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 21:39:55 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"owner-a4b8ac0a-86ce-4475-ad31-b7e00a6d1d84-iothub\",\r\n \"PrimaryKey\": \"Pvgj9tHLfNh3cfu7YXXcJKzXAZ8gUOaosM9ZJqMqU7k=\",\r\n \"SecondaryKey\": \"Tsf4oF4r5hJ71cb2of3RTH8eoFalhy7IoXAtpcW90D0=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 21:39:55 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 21:39:55 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"ortpnJMGwgpMMBZpZdYIbraSSMOM9ue+cxdDNbyvCws=\",\r\n \"SecondaryKey\": \"yxRzxXbbp3jJCDD03/BB0SHAUenu5DmX4Br64wYHR3g=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 21:39:55 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 21:39:55 GMT\"\r\n },\r\n {\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"Wba4C3/mAi67Ww/3N8dQYaaczB12v+X/vNn6Rgpv7Os=\",\r\n \"SecondaryKey\": \"/CKSKGFMiZjX56+7gSg3AzmgNP012eb4u9InvAjL93A=\",\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Thu, 30 Jul 2020 21:39:55 GMT\",\r\n \"ModifiedTime\": \"Thu, 30 Jul 2020 21:39:55 GMT\"\r\n }\r\n ]\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZjAwOGM4MjItYzdiOS00NWJmLTgxMTgtMTRjMWNmMTdhMjkx?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWmpBd09HTTRNakl0WXpkaU9TMDBOV0ptTFRneE1UZ3RNVFJqTVdObU1UZGhNamt4P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfOGM4NTYyYzctOTBhOC00YTZiLTg2YTYtN2ZmM2ExZTE2Y2Yx?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmT0dNNE5UWXlZemN0T1RCaE9DMDBZVFppTFRnMllUWXROMlptTTJFeFpURTJZMll4P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1416,13 +1416,13 @@ "11998" ], "x-ms-request-id": [ - "f180273c-9d18-49f1-a9b1-b3c05286ed54" + "229c3c7f-1a23-4f3d-977e-7948d3177d1e" ], "x-ms-correlation-request-id": [ - "f180273c-9d18-49f1-a9b1-b3c05286ed54" + "229c3c7f-1a23-4f3d-977e-7948d3177d1e" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182243Z:f180273c-9d18-49f1-a9b1-b3c05286ed54" + "WESTUS2:20200730T213045Z:229c3c7f-1a23-4f3d-977e-7948d3177d1e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1431,7 +1431,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:22:43 GMT" + "Thu, 30 Jul 2020 21:30:44 GMT" ], "Content-Length": [ "20" @@ -1447,13 +1447,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZjAwOGM4MjItYzdiOS00NWJmLTgxMTgtMTRjMWNmMTdhMjkx?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWmpBd09HTTRNakl0WXpkaU9TMDBOV0ptTFRneE1UZ3RNVFJqTVdObU1UZGhNamt4P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfOGM4NTYyYzctOTBhOC00YTZiLTg2YTYtN2ZmM2ExZTE2Y2Yx?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmT0dNNE5UWXlZemN0T1RCaE9DMDBZVFppTFRnMllUWXROMlptTTJFeFpURTJZMll4P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1473,13 +1473,13 @@ "11997" ], "x-ms-request-id": [ - "f40a3562-4b3a-4afc-98b0-d1fba5a26a1b" + "f3a3fc83-25a6-4d04-9d63-c5e915f4c85c" ], "x-ms-correlation-request-id": [ - "f40a3562-4b3a-4afc-98b0-d1fba5a26a1b" + "f3a3fc83-25a6-4d04-9d63-c5e915f4c85c" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182314Z:f40a3562-4b3a-4afc-98b0-d1fba5a26a1b" + "WESTUS2:20200730T213115Z:f3a3fc83-25a6-4d04-9d63-c5e915f4c85c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1488,7 +1488,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:23:14 GMT" + "Thu, 30 Jul 2020 21:31:14 GMT" ], "Content-Length": [ "20" @@ -1504,13 +1504,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZjAwOGM4MjItYzdiOS00NWJmLTgxMTgtMTRjMWNmMTdhMjkx?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWmpBd09HTTRNakl0WXpkaU9TMDBOV0ptTFRneE1UZ3RNVFJqTVdObU1UZGhNamt4P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfOGM4NTYyYzctOTBhOC00YTZiLTg2YTYtN2ZmM2ExZTE2Y2Yx?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmT0dNNE5UWXlZemN0T1RCaE9DMDBZVFppTFRnMllUWXROMlptTTJFeFpURTJZMll4P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1530,13 +1530,13 @@ "11996" ], "x-ms-request-id": [ - "6a213f2f-2957-4094-ae4d-60ce7091eee9" + "8fef1d67-64c8-4c86-82d7-3bc929d06b03" ], "x-ms-correlation-request-id": [ - "6a213f2f-2957-4094-ae4d-60ce7091eee9" + "8fef1d67-64c8-4c86-82d7-3bc929d06b03" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182344Z:6a213f2f-2957-4094-ae4d-60ce7091eee9" + "WESTUS2:20200730T213145Z:8fef1d67-64c8-4c86-82d7-3bc929d06b03" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1545,7 +1545,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:23:43 GMT" + "Thu, 30 Jul 2020 21:31:45 GMT" ], "Content-Length": [ "20" @@ -1561,13 +1561,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZjAwOGM4MjItYzdiOS00NWJmLTgxMTgtMTRjMWNmMTdhMjkx?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWmpBd09HTTRNakl0WXpkaU9TMDBOV0ptTFRneE1UZ3RNVFJqTVdObU1UZGhNamt4P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfOGM4NTYyYzctOTBhOC00YTZiLTg2YTYtN2ZmM2ExZTE2Y2Yx?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmT0dNNE5UWXlZemN0T1RCaE9DMDBZVFppTFRnMllUWXROMlptTTJFeFpURTJZMll4P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1587,13 +1587,13 @@ "11995" ], "x-ms-request-id": [ - "6b493aa4-e532-4b51-ba0e-0d7ffd27d88c" + "5cbd1723-42a3-4be7-9d8f-3e586b80c963" ], "x-ms-correlation-request-id": [ - "6b493aa4-e532-4b51-ba0e-0d7ffd27d88c" + "5cbd1723-42a3-4be7-9d8f-3e586b80c963" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182414Z:6b493aa4-e532-4b51-ba0e-0d7ffd27d88c" + "WESTUS2:20200730T213215Z:5cbd1723-42a3-4be7-9d8f-3e586b80c963" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1602,7 +1602,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:24:14 GMT" + "Thu, 30 Jul 2020 21:32:15 GMT" ], "Content-Length": [ "20" @@ -1618,13 +1618,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZjAwOGM4MjItYzdiOS00NWJmLTgxMTgtMTRjMWNmMTdhMjkx?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWmpBd09HTTRNakl0WXpkaU9TMDBOV0ptTFRneE1UZ3RNVFJqTVdObU1UZGhNamt4P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfOGM4NTYyYzctOTBhOC00YTZiLTg2YTYtN2ZmM2ExZTE2Y2Yx?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmT0dNNE5UWXlZemN0T1RCaE9DMDBZVFppTFRnMllUWXROMlptTTJFeFpURTJZMll4P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1641,16 +1641,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11993" ], "x-ms-request-id": [ - "230863ca-1a6b-4b8c-9066-cd42ba1826bc" + "e3926c6f-74c7-4c19-95e0-c6723398a28a" ], "x-ms-correlation-request-id": [ - "230863ca-1a6b-4b8c-9066-cd42ba1826bc" + "e3926c6f-74c7-4c19-95e0-c6723398a28a" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182445Z:230863ca-1a6b-4b8c-9066-cd42ba1826bc" + "WESTUS2:20200730T213246Z:e3926c6f-74c7-4c19-95e0-c6723398a28a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1659,7 +1659,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:24:44 GMT" + "Thu, 30 Jul 2020 21:32:45 GMT" ], "Content-Length": [ "20" @@ -1675,13 +1675,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZjAwOGM4MjItYzdiOS00NWJmLTgxMTgtMTRjMWNmMTdhMjkx?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWmpBd09HTTRNakl0WXpkaU9TMDBOV0ptTFRneE1UZ3RNVFJqTVdObU1UZGhNamt4P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfOGM4NTYyYzctOTBhOC00YTZiLTg2YTYtN2ZmM2ExZTE2Y2Yx?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmT0dNNE5UWXlZemN0T1RCaE9DMDBZVFppTFRnMllUWXROMlptTTJFeFpURTJZMll4P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1698,16 +1698,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11992" ], "x-ms-request-id": [ - "bb73cfe4-d2c0-49ae-911e-c1b8cf615c9c" + "dabc37b0-f928-4054-aa50-3dff553daed4" ], "x-ms-correlation-request-id": [ - "bb73cfe4-d2c0-49ae-911e-c1b8cf615c9c" + "dabc37b0-f928-4054-aa50-3dff553daed4" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182515Z:bb73cfe4-d2c0-49ae-911e-c1b8cf615c9c" + "WESTUS2:20200730T213316Z:dabc37b0-f928-4054-aa50-3dff553daed4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1716,7 +1716,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:25:14 GMT" + "Thu, 30 Jul 2020 21:33:15 GMT" ], "Content-Length": [ "22" @@ -1732,13 +1732,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1755,16 +1755,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11991" ], "x-ms-request-id": [ - "a56a2564-9569-47d0-8fba-d761d425aa07" + "1859ed12-3651-4b45-b866-4dbe4372bd2f" ], "x-ms-correlation-request-id": [ - "a56a2564-9569-47d0-8fba-d761d425aa07" + "1859ed12-3651-4b45-b866-4dbe4372bd2f" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182515Z:a56a2564-9569-47d0-8fba-d761d425aa07" + "WESTUS2:20200730T213316Z:1859ed12-3651-4b45-b866-4dbe4372bd2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1773,7 +1773,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:25:15 GMT" + "Thu, 30 Jul 2020 21:33:16 GMT" ], "Content-Length": [ "1761" @@ -1785,23 +1785,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545\",\r\n \"name\": \"ps5545\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6651\",\r\n \"etag\": \"AAAAABK9y9k=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5545.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5545\",\r\n \"endpoint\": \"sb://iothub-ns-ps5545-3639468-bf5ebd9639.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4390.servicebus.windows.net:5671/;SharedAccessKeyName=ps9447;SharedAccessKey=****;EntityPath=ps8829\",\r\n \"name\": \"eh1\",\r\n \"id\": \"d724afe3-88e5-4b8f-9ca5-ab9e13e48cf6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713\",\r\n \"name\": \"ps9713\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2471\",\r\n \"etag\": \"AAAAAJ6EAl8=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps9713.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9713\",\r\n \"endpoint\": \"sb://iothub-ns-ps9713-3949739-eed064899b.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8918.servicebus.windows.net:5671/;SharedAccessKeyName=ps7467;SharedAccessKey=****;EntityPath=ps7778\",\r\n \"name\": \"eh1\",\r\n \"id\": \"766d3101-9169-467b-b1be-9aa844607e9e\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "666ed2fc-25a0-4131-9b1b-9d2882de2da3" + "c4816bc6-2568-4673-8b96-d794396d83d5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1818,16 +1818,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11990" ], "x-ms-request-id": [ - "74cede4f-16d3-4a55-b79c-84d8fc758ce6" + "3bb9be89-c949-4cc1-8e43-8ac5c6c05c9d" ], "x-ms-correlation-request-id": [ - "74cede4f-16d3-4a55-b79c-84d8fc758ce6" + "3bb9be89-c949-4cc1-8e43-8ac5c6c05c9d" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182516Z:74cede4f-16d3-4a55-b79c-84d8fc758ce6" + "WESTUS2:20200730T213317Z:3bb9be89-c949-4cc1-8e43-8ac5c6c05c9d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1836,7 +1836,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:25:15 GMT" + "Thu, 30 Jul 2020 21:33:16 GMT" ], "Content-Length": [ "1761" @@ -1848,23 +1848,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545\",\r\n \"name\": \"ps5545\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6651\",\r\n \"etag\": \"AAAAABK9y9k=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5545.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5545\",\r\n \"endpoint\": \"sb://iothub-ns-ps5545-3639468-bf5ebd9639.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4390.servicebus.windows.net:5671/;SharedAccessKeyName=ps9447;SharedAccessKey=****;EntityPath=ps8829\",\r\n \"name\": \"eh1\",\r\n \"id\": \"d724afe3-88e5-4b8f-9ca5-ab9e13e48cf6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713\",\r\n \"name\": \"ps9713\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2471\",\r\n \"etag\": \"AAAAAJ6EAl8=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps9713.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9713\",\r\n \"endpoint\": \"sb://iothub-ns-ps9713-3949739-eed064899b.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8918.servicebus.windows.net:5671/;SharedAccessKeyName=ps7467;SharedAccessKey=****;EntityPath=ps7778\",\r\n \"name\": \"eh1\",\r\n \"id\": \"766d3101-9169-467b-b1be-9aa844607e9e\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c6ad5e94-0e64-4bfd-910e-044fde6ec7d1" + "d98e9f40-60a7-40f6-accd-bf5eb40ed3c2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1881,16 +1881,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11988" ], "x-ms-request-id": [ - "85a7c548-8232-4756-8f81-499709b89555" + "1d4898f1-848a-46c5-b0b5-66f31f3e40de" ], "x-ms-correlation-request-id": [ - "85a7c548-8232-4756-8f81-499709b89555" + "1d4898f1-848a-46c5-b0b5-66f31f3e40de" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182517Z:85a7c548-8232-4756-8f81-499709b89555" + "WESTUS2:20200730T213318Z:1d4898f1-848a-46c5-b0b5-66f31f3e40de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1899,7 +1899,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:25:16 GMT" + "Thu, 30 Jul 2020 21:33:17 GMT" ], "Content-Length": [ "1761" @@ -1911,23 +1911,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545\",\r\n \"name\": \"ps5545\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6651\",\r\n \"etag\": \"AAAAABK9y9k=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5545.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5545\",\r\n \"endpoint\": \"sb://iothub-ns-ps5545-3639468-bf5ebd9639.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4390.servicebus.windows.net:5671/;SharedAccessKeyName=ps9447;SharedAccessKey=****;EntityPath=ps8829\",\r\n \"name\": \"eh1\",\r\n \"id\": \"d724afe3-88e5-4b8f-9ca5-ab9e13e48cf6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713\",\r\n \"name\": \"ps9713\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2471\",\r\n \"etag\": \"AAAAAJ6EAl8=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps9713.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9713\",\r\n \"endpoint\": \"sb://iothub-ns-ps9713-3949739-eed064899b.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8918.servicebus.windows.net:5671/;SharedAccessKeyName=ps7467;SharedAccessKey=****;EntityPath=ps7778\",\r\n \"name\": \"eh1\",\r\n \"id\": \"766d3101-9169-467b-b1be-9aa844607e9e\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "283860ae-d542-4b9c-a65c-8618f3266fe3" + "1ad1f07c-9816-41ef-896b-4d7df0df2469" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -1944,16 +1944,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11983" ], "x-ms-request-id": [ - "7df5154b-5f3e-4919-809d-eb6e500a0408" + "98625c09-7271-4623-86e0-71dc98c010ca" ], "x-ms-correlation-request-id": [ - "7df5154b-5f3e-4919-809d-eb6e500a0408" + "98625c09-7271-4623-86e0-71dc98c010ca" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182520Z:7df5154b-5f3e-4919-809d-eb6e500a0408" + "WESTUS2:20200730T213320Z:98625c09-7271-4623-86e0-71dc98c010ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1962,7 +1962,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:25:19 GMT" + "Thu, 30 Jul 2020 21:33:20 GMT" ], "Content-Length": [ "1761" @@ -1974,23 +1974,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545\",\r\n \"name\": \"ps5545\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6651\",\r\n \"etag\": \"AAAAABK9y9k=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5545.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5545\",\r\n \"endpoint\": \"sb://iothub-ns-ps5545-3639468-bf5ebd9639.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4390.servicebus.windows.net:5671/;SharedAccessKeyName=ps9447;SharedAccessKey=****;EntityPath=ps8829\",\r\n \"name\": \"eh1\",\r\n \"id\": \"d724afe3-88e5-4b8f-9ca5-ab9e13e48cf6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713\",\r\n \"name\": \"ps9713\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2471\",\r\n \"etag\": \"AAAAAJ6EAl8=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps9713.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9713\",\r\n \"endpoint\": \"sb://iothub-ns-ps9713-3949739-eed064899b.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8918.servicebus.windows.net:5671/;SharedAccessKeyName=ps7467;SharedAccessKey=****;EntityPath=ps7778\",\r\n \"name\": \"eh1\",\r\n \"id\": \"766d3101-9169-467b-b1be-9aa844607e9e\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f98bdac7-cbc5-4643-8517-c0cb61019f27" + "20503182-26cd-44ad-9e51-6e2c23045273" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2007,16 +2007,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11982" ], "x-ms-request-id": [ - "94a6df33-1b12-48d5-9f09-f22b91ca1271" + "81ec158c-6832-4263-9ec8-b63109957b4b" ], "x-ms-correlation-request-id": [ - "94a6df33-1b12-48d5-9f09-f22b91ca1271" + "81ec158c-6832-4263-9ec8-b63109957b4b" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182520Z:94a6df33-1b12-48d5-9f09-f22b91ca1271" + "WESTUS2:20200730T213321Z:81ec158c-6832-4263-9ec8-b63109957b4b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2025,7 +2025,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:25:20 GMT" + "Thu, 30 Jul 2020 21:33:20 GMT" ], "Content-Length": [ "1761" @@ -2037,23 +2037,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545\",\r\n \"name\": \"ps5545\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6651\",\r\n \"etag\": \"AAAAABK9y9k=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5545.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5545\",\r\n \"endpoint\": \"sb://iothub-ns-ps5545-3639468-bf5ebd9639.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4390.servicebus.windows.net:5671/;SharedAccessKeyName=ps9447;SharedAccessKey=****;EntityPath=ps8829\",\r\n \"name\": \"eh1\",\r\n \"id\": \"d724afe3-88e5-4b8f-9ca5-ab9e13e48cf6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713\",\r\n \"name\": \"ps9713\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2471\",\r\n \"etag\": \"AAAAAJ6EAl8=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps9713.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9713\",\r\n \"endpoint\": \"sb://iothub-ns-ps9713-3949739-eed064899b.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8918.servicebus.windows.net:5671/;SharedAccessKeyName=ps7467;SharedAccessKey=****;EntityPath=ps7778\",\r\n \"name\": \"eh1\",\r\n \"id\": \"766d3101-9169-467b-b1be-9aa844607e9e\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5112b49b-33cb-48bb-9e9c-0ebbec16dad8" + "938767e0-45ef-47fa-8326-5b73ccb199d7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2070,16 +2070,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11977" ], "x-ms-request-id": [ - "7e25b2e5-ec28-4f43-ab02-4dcba15bbdb5" + "ca84bcf6-2708-405c-a6de-1c4b907debd4" ], "x-ms-correlation-request-id": [ - "7e25b2e5-ec28-4f43-ab02-4dcba15bbdb5" + "ca84bcf6-2708-405c-a6de-1c4b907debd4" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182524Z:7e25b2e5-ec28-4f43-ab02-4dcba15bbdb5" + "WESTUS2:20200730T213324Z:ca84bcf6-2708-405c-a6de-1c4b907debd4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2088,7 +2088,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:25:23 GMT" + "Thu, 30 Jul 2020 21:33:23 GMT" ], "Content-Length": [ "1761" @@ -2100,17 +2100,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545\",\r\n \"name\": \"ps5545\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6651\",\r\n \"etag\": \"AAAAABK9y9k=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5545.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5545\",\r\n \"endpoint\": \"sb://iothub-ns-ps5545-3639468-bf5ebd9639.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4390.servicebus.windows.net:5671/;SharedAccessKeyName=ps9447;SharedAccessKey=****;EntityPath=ps8829\",\r\n \"name\": \"eh1\",\r\n \"id\": \"d724afe3-88e5-4b8f-9ca5-ab9e13e48cf6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713\",\r\n \"name\": \"ps9713\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2471\",\r\n \"etag\": \"AAAAAJ6EAl8=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps9713.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9713\",\r\n \"endpoint\": \"sb://iothub-ns-ps9713-3949739-eed064899b.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8918.servicebus.windows.net:5671/;SharedAccessKeyName=ps7467;SharedAccessKey=****;EntityPath=ps7778\",\r\n \"name\": \"eh1\",\r\n \"id\": \"766d3101-9169-467b-b1be-9aa844607e9e\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2127,16 +2127,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11974" ], "x-ms-request-id": [ - "00422584-e6f2-4e73-a187-d5cee2cf8a4d" + "aa03969f-84bd-489b-806f-ce97e9a52b92" ], "x-ms-correlation-request-id": [ - "00422584-e6f2-4e73-a187-d5cee2cf8a4d" + "aa03969f-84bd-489b-806f-ce97e9a52b92" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182558Z:00422584-e6f2-4e73-a187-d5cee2cf8a4d" + "WESTUS2:20200730T213430Z:aa03969f-84bd-489b-806f-ce97e9a52b92" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2145,7 +2145,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:25:58 GMT" + "Thu, 30 Jul 2020 21:34:29 GMT" ], "Content-Length": [ "1761" @@ -2157,23 +2157,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545\",\r\n \"name\": \"ps5545\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6651\",\r\n \"etag\": \"AAAAABK9zLQ=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5545.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5545\",\r\n \"endpoint\": \"sb://iothub-ns-ps5545-3639468-bf5ebd9639.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4390.servicebus.windows.net:5671/;SharedAccessKeyName=ps9447;SharedAccessKey=****;EntityPath=ps8829\",\r\n \"name\": \"eh1\",\r\n \"id\": \"d724afe3-88e5-4b8f-9ca5-ab9e13e48cf6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713\",\r\n \"name\": \"ps9713\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2471\",\r\n \"etag\": \"AAAAAJ6EbaQ=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps9713.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9713\",\r\n \"endpoint\": \"sb://iothub-ns-ps9713-3949739-eed064899b.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8918.servicebus.windows.net:5671/;SharedAccessKeyName=ps7467;SharedAccessKey=****;EntityPath=ps7778\",\r\n \"name\": \"eh1\",\r\n \"id\": \"766d3101-9169-467b-b1be-9aa844607e9e\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "def6c989-2e9e-41bc-a84a-9ac7dd37d64f" + "751d06ac-e97e-4f14-97a8-5be83349729c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2190,16 +2190,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11973" ], "x-ms-request-id": [ - "2d1527d0-019e-40ea-86d6-19ec753da83f" + "80ac4a74-619f-4e41-9d15-a4b3c5ebbc01" ], "x-ms-correlation-request-id": [ - "2d1527d0-019e-40ea-86d6-19ec753da83f" + "80ac4a74-619f-4e41-9d15-a4b3c5ebbc01" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182559Z:2d1527d0-019e-40ea-86d6-19ec753da83f" + "WESTUS2:20200730T213431Z:80ac4a74-619f-4e41-9d15-a4b3c5ebbc01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2208,7 +2208,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:25:59 GMT" + "Thu, 30 Jul 2020 21:34:30 GMT" ], "Content-Length": [ "1761" @@ -2220,17 +2220,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545\",\r\n \"name\": \"ps5545\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6651\",\r\n \"etag\": \"AAAAABK9zLQ=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5545.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5545\",\r\n \"endpoint\": \"sb://iothub-ns-ps5545-3639468-bf5ebd9639.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4390.servicebus.windows.net:5671/;SharedAccessKeyName=ps9447;SharedAccessKey=****;EntityPath=ps8829\",\r\n \"name\": \"eh1\",\r\n \"id\": \"d724afe3-88e5-4b8f-9ca5-ab9e13e48cf6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713\",\r\n \"name\": \"ps9713\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2471\",\r\n \"etag\": \"AAAAAJ6EbaQ=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps9713.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9713\",\r\n \"endpoint\": \"sb://iothub-ns-ps9713-3949739-eed064899b.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8918.servicebus.windows.net:5671/;SharedAccessKeyName=ps7467;SharedAccessKey=****;EntityPath=ps7778\",\r\n \"name\": \"eh1\",\r\n \"id\": \"766d3101-9169-467b-b1be-9aa844607e9e\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2247,16 +2247,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11971" ], "x-ms-request-id": [ - "f3a2cfc9-5b61-4b74-a110-436d463b489f" + "0f1d9d9b-ee28-47d4-bad9-7460eeb9946d" ], "x-ms-correlation-request-id": [ - "f3a2cfc9-5b61-4b74-a110-436d463b489f" + "0f1d9d9b-ee28-47d4-bad9-7460eeb9946d" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182633Z:f3a2cfc9-5b61-4b74-a110-436d463b489f" + "WESTUS2:20200730T213506Z:0f1d9d9b-ee28-47d4-bad9-7460eeb9946d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2265,7 +2265,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:26:32 GMT" + "Thu, 30 Jul 2020 21:35:06 GMT" ], "Content-Length": [ "1761" @@ -2277,23 +2277,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545\",\r\n \"name\": \"ps5545\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6651\",\r\n \"etag\": \"AAAAABK9+J0=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5545.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5545\",\r\n \"endpoint\": \"sb://iothub-ns-ps5545-3639468-bf5ebd9639.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4390.servicebus.windows.net:5671/;SharedAccessKeyName=ps9447;SharedAccessKey=****;EntityPath=ps8829\",\r\n \"name\": \"eh1\",\r\n \"id\": \"d724afe3-88e5-4b8f-9ca5-ab9e13e48cf6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713\",\r\n \"name\": \"ps9713\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2471\",\r\n \"etag\": \"AAAAAJ6Fzcs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps9713.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9713\",\r\n \"endpoint\": \"sb://iothub-ns-ps9713-3949739-eed064899b.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8918.servicebus.windows.net:5671/;SharedAccessKeyName=ps7467;SharedAccessKey=****;EntityPath=ps7778\",\r\n \"name\": \"eh1\",\r\n \"id\": \"766d3101-9169-467b-b1be-9aa844607e9e\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "68fae295-a9fc-4454-b87b-9cf463bda84f" + "e1d677ea-4a65-4b6d-9e9c-67938afa9236" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2310,16 +2310,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11970" ], "x-ms-request-id": [ - "ff6bb3d1-b74d-421d-89b5-528e6a1f0a98" + "22932197-81f0-41ab-976c-cae39d1e40e8" ], "x-ms-correlation-request-id": [ - "ff6bb3d1-b74d-421d-89b5-528e6a1f0a98" + "22932197-81f0-41ab-976c-cae39d1e40e8" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182634Z:ff6bb3d1-b74d-421d-89b5-528e6a1f0a98" + "WESTUS2:20200730T213507Z:22932197-81f0-41ab-976c-cae39d1e40e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2328,7 +2328,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:26:33 GMT" + "Thu, 30 Jul 2020 21:35:06 GMT" ], "Content-Length": [ "1761" @@ -2340,17 +2340,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545\",\r\n \"name\": \"ps5545\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6651\",\r\n \"etag\": \"AAAAABK9+J0=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5545.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5545\",\r\n \"endpoint\": \"sb://iothub-ns-ps5545-3639468-bf5ebd9639.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4390.servicebus.windows.net:5671/;SharedAccessKeyName=ps9447;SharedAccessKey=****;EntityPath=ps8829\",\r\n \"name\": \"eh1\",\r\n \"id\": \"d724afe3-88e5-4b8f-9ca5-ab9e13e48cf6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713\",\r\n \"name\": \"ps9713\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2471\",\r\n \"etag\": \"AAAAAJ6Fzcs=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps9713.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9713\",\r\n \"endpoint\": \"sb://iothub-ns-ps9713-3949739-eed064899b.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8918.servicebus.windows.net:5671/;SharedAccessKeyName=ps7467;SharedAccessKey=****;EntityPath=ps7778\",\r\n \"name\": \"eh1\",\r\n \"id\": \"766d3101-9169-467b-b1be-9aa844607e9e\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2363,20 +2363,20 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], "x-ms-request-id": [ - "09b30147-3d6b-4ae0-b7cb-899c319c4a51" + "c1672b80-ddc8-40c9-8b0a-24edb67cf025" ], "x-ms-correlation-request-id": [ - "09b30147-3d6b-4ae0-b7cb-899c319c4a51" + "c1672b80-ddc8-40c9-8b0a-24edb67cf025" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182708Z:09b30147-3d6b-4ae0-b7cb-899c319c4a51" + "WESTUS2:20200730T213541Z:c1672b80-ddc8-40c9-8b0a-24edb67cf025" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2385,7 +2385,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:27:07 GMT" + "Thu, 30 Jul 2020 21:35:41 GMT" ], "Content-Length": [ "1761" @@ -2397,23 +2397,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545\",\r\n \"name\": \"ps5545\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6651\",\r\n \"etag\": \"AAAAABK+LsU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5545.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5545\",\r\n \"endpoint\": \"sb://iothub-ns-ps5545-3639468-bf5ebd9639.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4390.servicebus.windows.net:5671/;SharedAccessKeyName=ps9447;SharedAccessKey=****;EntityPath=ps8829\",\r\n \"name\": \"eh1\",\r\n \"id\": \"d724afe3-88e5-4b8f-9ca5-ab9e13e48cf6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713\",\r\n \"name\": \"ps9713\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2471\",\r\n \"etag\": \"AAAAAJ6GYzI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps9713.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9713\",\r\n \"endpoint\": \"sb://iothub-ns-ps9713-3949739-eed064899b.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8918.servicebus.windows.net:5671/;SharedAccessKeyName=ps7467;SharedAccessKey=****;EntityPath=ps7778\",\r\n \"name\": \"eh1\",\r\n \"id\": \"766d3101-9169-467b-b1be-9aa844607e9e\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2e302b4a-ae74-44b6-b430-6c1f07b8cee2" + "9b061853-6a86-4fcd-b556-2220af99b696" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2430,16 +2430,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11967" ], "x-ms-request-id": [ - "8894204b-3754-43ef-8aa6-13243e742b19" + "00102a04-1a9b-4d8d-9d9c-7b4b7f07e63b" ], "x-ms-correlation-request-id": [ - "8894204b-3754-43ef-8aa6-13243e742b19" + "00102a04-1a9b-4d8d-9d9c-7b4b7f07e63b" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182709Z:8894204b-3754-43ef-8aa6-13243e742b19" + "WESTUS2:20200730T213542Z:00102a04-1a9b-4d8d-9d9c-7b4b7f07e63b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2448,7 +2448,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:27:08 GMT" + "Thu, 30 Jul 2020 21:35:42 GMT" ], "Content-Length": [ "1761" @@ -2460,17 +2460,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545\",\r\n \"name\": \"ps5545\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6651\",\r\n \"etag\": \"AAAAABK+LsU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5545.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5545\",\r\n \"endpoint\": \"sb://iothub-ns-ps5545-3639468-bf5ebd9639.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4390.servicebus.windows.net:5671/;SharedAccessKeyName=ps9447;SharedAccessKey=****;EntityPath=ps8829\",\r\n \"name\": \"eh1\",\r\n \"id\": \"d724afe3-88e5-4b8f-9ca5-ab9e13e48cf6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713\",\r\n \"name\": \"ps9713\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2471\",\r\n \"etag\": \"AAAAAJ6GYzI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps9713.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9713\",\r\n \"endpoint\": \"sb://iothub-ns-ps9713-3949739-eed064899b.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8918.servicebus.windows.net:5671/;SharedAccessKeyName=ps7467;SharedAccessKey=****;EntityPath=ps7778\",\r\n \"name\": \"eh1\",\r\n \"id\": \"766d3101-9169-467b-b1be-9aa844607e9e\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2487,16 +2487,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11965" ], "x-ms-request-id": [ - "856fccdb-8524-422e-8bdb-88c2b558b502" + "66fb1a42-4c98-408e-a3aa-d0045182e82b" ], "x-ms-correlation-request-id": [ - "856fccdb-8524-422e-8bdb-88c2b558b502" + "66fb1a42-4c98-408e-a3aa-d0045182e82b" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182742Z:856fccdb-8524-422e-8bdb-88c2b558b502" + "WESTUS2:20200730T213616Z:66fb1a42-4c98-408e-a3aa-d0045182e82b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2505,7 +2505,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:27:41 GMT" + "Thu, 30 Jul 2020 21:36:16 GMT" ], "Content-Length": [ "1761" @@ -2517,23 +2517,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545\",\r\n \"name\": \"ps5545\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6651\",\r\n \"etag\": \"AAAAABK+M6w=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5545.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5545\",\r\n \"endpoint\": \"sb://iothub-ns-ps5545-3639468-bf5ebd9639.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4390.servicebus.windows.net:5671/;SharedAccessKeyName=ps9447;SharedAccessKey=****;EntityPath=ps8829\",\r\n \"name\": \"eh1\",\r\n \"id\": \"d724afe3-88e5-4b8f-9ca5-ab9e13e48cf6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713\",\r\n \"name\": \"ps9713\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2471\",\r\n \"etag\": \"AAAAAJ6HETo=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps9713.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9713\",\r\n \"endpoint\": \"sb://iothub-ns-ps9713-3949739-eed064899b.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8918.servicebus.windows.net:5671/;SharedAccessKeyName=ps7467;SharedAccessKey=****;EntityPath=ps7778\",\r\n \"name\": \"eh1\",\r\n \"id\": \"766d3101-9169-467b-b1be-9aa844607e9e\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bdff4125-7742-4669-bf2b-4251ad3e9f73" + "601e5955-7566-4d8c-9d46-b22226ce5232" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2550,16 +2550,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11964" ], "x-ms-request-id": [ - "7a18a65c-fd40-4a91-8134-953d3a12a451" + "162d9162-2b30-4498-96d3-b7756dfe2f54" ], "x-ms-correlation-request-id": [ - "7a18a65c-fd40-4a91-8134-953d3a12a451" + "162d9162-2b30-4498-96d3-b7756dfe2f54" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182743Z:7a18a65c-fd40-4a91-8134-953d3a12a451" + "WESTUS2:20200730T213617Z:162d9162-2b30-4498-96d3-b7756dfe2f54" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2568,7 +2568,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:27:43 GMT" + "Thu, 30 Jul 2020 21:36:17 GMT" ], "Content-Length": [ "1761" @@ -2580,23 +2580,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545\",\r\n \"name\": \"ps5545\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6651\",\r\n \"etag\": \"AAAAABK+M6w=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5545.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5545\",\r\n \"endpoint\": \"sb://iothub-ns-ps5545-3639468-bf5ebd9639.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4390.servicebus.windows.net:5671/;SharedAccessKeyName=ps9447;SharedAccessKey=****;EntityPath=ps8829\",\r\n \"name\": \"eh1\",\r\n \"id\": \"d724afe3-88e5-4b8f-9ca5-ab9e13e48cf6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713\",\r\n \"name\": \"ps9713\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2471\",\r\n \"etag\": \"AAAAAJ6HETo=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps9713.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9713\",\r\n \"endpoint\": \"sb://iothub-ns-ps9713-3949739-eed064899b.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8918.servicebus.windows.net:5671/;SharedAccessKeyName=ps7467;SharedAccessKey=****;EntityPath=ps7778\",\r\n \"name\": \"eh1\",\r\n \"id\": \"766d3101-9169-467b-b1be-9aa844607e9e\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "88ff8eae-a7c0-4471-9685-5339d66b447f" + "ba86a539-1b31-4aff-84c2-90a47c2a80c5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2613,16 +2613,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11963" ], "x-ms-request-id": [ - "da656551-f440-4917-ad89-daba8510f848" + "7c13bed9-9b05-4302-b3fc-150668713dbd" ], "x-ms-correlation-request-id": [ - "da656551-f440-4917-ad89-daba8510f848" + "7c13bed9-9b05-4302-b3fc-150668713dbd" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182744Z:da656551-f440-4917-ad89-daba8510f848" + "WESTUS2:20200730T213617Z:7c13bed9-9b05-4302-b3fc-150668713dbd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2631,7 +2631,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:27:44 GMT" + "Thu, 30 Jul 2020 21:36:17 GMT" ], "Content-Length": [ "1761" @@ -2643,17 +2643,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545\",\r\n \"name\": \"ps5545\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6651\",\r\n \"etag\": \"AAAAABK+M6w=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5545.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5545\",\r\n \"endpoint\": \"sb://iothub-ns-ps5545-3639468-bf5ebd9639.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4390.servicebus.windows.net:5671/;SharedAccessKeyName=ps9447;SharedAccessKey=****;EntityPath=ps8829\",\r\n \"name\": \"eh1\",\r\n \"id\": \"d724afe3-88e5-4b8f-9ca5-ab9e13e48cf6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713\",\r\n \"name\": \"ps9713\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2471\",\r\n \"etag\": \"AAAAAJ6HETo=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps9713.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9713\",\r\n \"endpoint\": \"sb://iothub-ns-ps9713-3949739-eed064899b.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8918.servicebus.windows.net:5671/;SharedAccessKeyName=ps7467;SharedAccessKey=****;EntityPath=ps7778\",\r\n \"name\": \"eh1\",\r\n \"id\": \"766d3101-9169-467b-b1be-9aa844607e9e\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2670,16 +2670,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11961" ], "x-ms-request-id": [ - "0d261beb-c863-41ef-97fa-c5590a1c382b" + "313511e0-f9a9-42ac-bfab-4b56c9987a41" ], "x-ms-correlation-request-id": [ - "0d261beb-c863-41ef-97fa-c5590a1c382b" + "313511e0-f9a9-42ac-bfab-4b56c9987a41" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182817Z:0d261beb-c863-41ef-97fa-c5590a1c382b" + "WESTUS2:20200730T213651Z:313511e0-f9a9-42ac-bfab-4b56c9987a41" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2688,7 +2688,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:28:16 GMT" + "Thu, 30 Jul 2020 21:36:51 GMT" ], "Content-Length": [ "1764" @@ -2700,23 +2700,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545\",\r\n \"name\": \"ps5545\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6651\",\r\n \"etag\": \"AAAAABK+ToE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5545.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5545\",\r\n \"endpoint\": \"sb://iothub-ns-ps5545-3639468-bf5ebd9639.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4390.servicebus.windows.net:5671/;SharedAccessKeyName=ps9447;SharedAccessKey=****;EntityPath=ps8829\",\r\n \"name\": \"eh1\",\r\n \"id\": \"d724afe3-88e5-4b8f-9ca5-ab9e13e48cf6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713\",\r\n \"name\": \"ps9713\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2471\",\r\n \"etag\": \"AAAAAJ6HElI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps9713.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9713\",\r\n \"endpoint\": \"sb://iothub-ns-ps9713-3949739-eed064899b.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8918.servicebus.windows.net:5671/;SharedAccessKeyName=ps7467;SharedAccessKey=****;EntityPath=ps7778\",\r\n \"name\": \"eh1\",\r\n \"id\": \"766d3101-9169-467b-b1be-9aa844607e9e\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cd71f07b-f5ef-4997-8bc9-f8daaa139f6e" + "e8313f1a-6ac8-46c9-b593-120a7467ad76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2733,16 +2733,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" + "11960" ], "x-ms-request-id": [ - "f3a38606-b93f-4442-95b2-3f160a687e07" + "12856455-8527-4e70-8e16-60cc12e1ff15" ], "x-ms-correlation-request-id": [ - "f3a38606-b93f-4442-95b2-3f160a687e07" + "12856455-8527-4e70-8e16-60cc12e1ff15" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182818Z:f3a38606-b93f-4442-95b2-3f160a687e07" + "WESTUS2:20200730T213652Z:12856455-8527-4e70-8e16-60cc12e1ff15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2751,7 +2751,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:28:17 GMT" + "Thu, 30 Jul 2020 21:36:51 GMT" ], "Content-Length": [ "1764" @@ -2763,23 +2763,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545\",\r\n \"name\": \"ps5545\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6651\",\r\n \"etag\": \"AAAAABK+ToE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5545.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5545\",\r\n \"endpoint\": \"sb://iothub-ns-ps5545-3639468-bf5ebd9639.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4390.servicebus.windows.net:5671/;SharedAccessKeyName=ps9447;SharedAccessKey=****;EntityPath=ps8829\",\r\n \"name\": \"eh1\",\r\n \"id\": \"d724afe3-88e5-4b8f-9ca5-ab9e13e48cf6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713\",\r\n \"name\": \"ps9713\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2471\",\r\n \"etag\": \"AAAAAJ6HElI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps9713.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9713\",\r\n \"endpoint\": \"sb://iothub-ns-ps9713-3949739-eed064899b.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8918.servicebus.windows.net:5671/;SharedAccessKeyName=ps7467;SharedAccessKey=****;EntityPath=ps7778\",\r\n \"name\": \"eh1\",\r\n \"id\": \"766d3101-9169-467b-b1be-9aa844607e9e\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fee0e5eb-3334-49f5-8171-c936137acddc" + "c87b7f77-7182-49ca-82cc-2011959112d4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2796,16 +2796,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" + "11959" ], "x-ms-request-id": [ - "046d1d32-7053-4cdc-a4c5-3bf14050f255" + "dd4ebba0-3b5b-40ab-ac21-7d8588706c42" ], "x-ms-correlation-request-id": [ - "046d1d32-7053-4cdc-a4c5-3bf14050f255" + "dd4ebba0-3b5b-40ab-ac21-7d8588706c42" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182818Z:046d1d32-7053-4cdc-a4c5-3bf14050f255" + "WESTUS2:20200730T213653Z:dd4ebba0-3b5b-40ab-ac21-7d8588706c42" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2814,7 +2814,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:28:17 GMT" + "Thu, 30 Jul 2020 21:36:52 GMT" ], "Content-Length": [ "1764" @@ -2826,17 +2826,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545\",\r\n \"name\": \"ps5545\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6651\",\r\n \"etag\": \"AAAAABK+ToE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5545.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5545\",\r\n \"endpoint\": \"sb://iothub-ns-ps5545-3639468-bf5ebd9639.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4390.servicebus.windows.net:5671/;SharedAccessKeyName=ps9447;SharedAccessKey=****;EntityPath=ps8829\",\r\n \"name\": \"eh1\",\r\n \"id\": \"d724afe3-88e5-4b8f-9ca5-ab9e13e48cf6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713\",\r\n \"name\": \"ps9713\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2471\",\r\n \"etag\": \"AAAAAJ6HElI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps9713.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9713\",\r\n \"endpoint\": \"sb://iothub-ns-ps9713-3949739-eed064899b.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8918.servicebus.windows.net:5671/;SharedAccessKeyName=ps7467;SharedAccessKey=****;EntityPath=ps7778\",\r\n \"name\": \"eh1\",\r\n \"id\": \"766d3101-9169-467b-b1be-9aa844607e9e\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2853,16 +2853,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11957" ], "x-ms-request-id": [ - "b73b2bda-aeb7-450d-b283-a84bf0da8a60" + "fd6020fb-c0d8-4faa-a086-bf28c0a39857" ], "x-ms-correlation-request-id": [ - "b73b2bda-aeb7-450d-b283-a84bf0da8a60" + "fd6020fb-c0d8-4faa-a086-bf28c0a39857" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182852Z:b73b2bda-aeb7-450d-b283-a84bf0da8a60" + "WESTUS2:20200730T213726Z:fd6020fb-c0d8-4faa-a086-bf28c0a39857" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2871,7 +2871,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:28:51 GMT" + "Thu, 30 Jul 2020 21:37:26 GMT" ], "Content-Length": [ "1764" @@ -2883,23 +2883,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545\",\r\n \"name\": \"ps5545\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6651\",\r\n \"etag\": \"AAAAABK+YfQ=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5545.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5545\",\r\n \"endpoint\": \"sb://iothub-ns-ps5545-3639468-bf5ebd9639.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4390.servicebus.windows.net:5671/;SharedAccessKeyName=ps9447;SharedAccessKey=****;EntityPath=ps8829\",\r\n \"name\": \"eh1\",\r\n \"id\": \"d724afe3-88e5-4b8f-9ca5-ab9e13e48cf6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713\",\r\n \"name\": \"ps9713\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2471\",\r\n \"etag\": \"AAAAAJ6HZVk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps9713.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9713\",\r\n \"endpoint\": \"sb://iothub-ns-ps9713-3949739-eed064899b.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8918.servicebus.windows.net:5671/;SharedAccessKeyName=ps7467;SharedAccessKey=****;EntityPath=ps7778\",\r\n \"name\": \"eh1\",\r\n \"id\": \"766d3101-9169-467b-b1be-9aa844607e9e\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8bfd7545-df35-4042-bc9b-7ebc68f965c8" + "c7326fde-9cc9-4206-964b-cfecd68b6c75" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2916,16 +2916,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" + "11956" ], "x-ms-request-id": [ - "cd5b4233-3781-4e2b-b284-a68f5a128147" + "977186a4-1bd8-46e0-a3b4-bb0319944295" ], "x-ms-correlation-request-id": [ - "cd5b4233-3781-4e2b-b284-a68f5a128147" + "977186a4-1bd8-46e0-a3b4-bb0319944295" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182852Z:cd5b4233-3781-4e2b-b284-a68f5a128147" + "WESTUS2:20200730T213727Z:977186a4-1bd8-46e0-a3b4-bb0319944295" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2934,7 +2934,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:28:52 GMT" + "Thu, 30 Jul 2020 21:37:27 GMT" ], "Content-Length": [ "1764" @@ -2946,23 +2946,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545\",\r\n \"name\": \"ps5545\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6651\",\r\n \"etag\": \"AAAAABK+YfQ=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5545.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5545\",\r\n \"endpoint\": \"sb://iothub-ns-ps5545-3639468-bf5ebd9639.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4390.servicebus.windows.net:5671/;SharedAccessKeyName=ps9447;SharedAccessKey=****;EntityPath=ps8829\",\r\n \"name\": \"eh1\",\r\n \"id\": \"d724afe3-88e5-4b8f-9ca5-ab9e13e48cf6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713\",\r\n \"name\": \"ps9713\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2471\",\r\n \"etag\": \"AAAAAJ6HZVk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps9713.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9713\",\r\n \"endpoint\": \"sb://iothub-ns-ps9713-3949739-eed064899b.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8918.servicebus.windows.net:5671/;SharedAccessKeyName=ps7467;SharedAccessKey=****;EntityPath=ps7778\",\r\n \"name\": \"eh1\",\r\n \"id\": \"766d3101-9169-467b-b1be-9aa844607e9e\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "603072fe-bfcd-4c19-b027-eb677c9230aa" + "6c16fcf0-c9f7-4ef3-ae82-5dfc9b66d13c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -2979,16 +2979,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" + "11955" ], "x-ms-request-id": [ - "af7042ea-24e4-4834-8a99-2899b6f80e75" + "b1c1f28c-82ae-44f8-857d-648e4fa5ab65" ], "x-ms-correlation-request-id": [ - "af7042ea-24e4-4834-8a99-2899b6f80e75" + "b1c1f28c-82ae-44f8-857d-648e4fa5ab65" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182853Z:af7042ea-24e4-4834-8a99-2899b6f80e75" + "WESTUS2:20200730T213728Z:b1c1f28c-82ae-44f8-857d-648e4fa5ab65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2997,7 +2997,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:28:52 GMT" + "Thu, 30 Jul 2020 21:37:27 GMT" ], "Content-Length": [ "1764" @@ -3009,17 +3009,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545\",\r\n \"name\": \"ps5545\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6651\",\r\n \"etag\": \"AAAAABK+YfQ=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5545.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5545\",\r\n \"endpoint\": \"sb://iothub-ns-ps5545-3639468-bf5ebd9639.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4390.servicebus.windows.net:5671/;SharedAccessKeyName=ps9447;SharedAccessKey=****;EntityPath=ps8829\",\r\n \"name\": \"eh1\",\r\n \"id\": \"d724afe3-88e5-4b8f-9ca5-ab9e13e48cf6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713\",\r\n \"name\": \"ps9713\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2471\",\r\n \"etag\": \"AAAAAJ6HZVk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps9713.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9713\",\r\n \"endpoint\": \"sb://iothub-ns-ps9713-3949739-eed064899b.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8918.servicebus.windows.net:5671/;SharedAccessKeyName=ps7467;SharedAccessKey=****;EntityPath=ps7778\",\r\n \"name\": \"eh1\",\r\n \"id\": \"766d3101-9169-467b-b1be-9aa844607e9e\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3036,16 +3036,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" + "11951" ], "x-ms-request-id": [ - "74f8584b-493e-444b-80ec-ba552ecc1f00" + "d391cb26-c535-4627-99b7-cc32151569bb" ], "x-ms-correlation-request-id": [ - "74f8584b-493e-444b-80ec-ba552ecc1f00" + "d391cb26-c535-4627-99b7-cc32151569bb" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182926Z:74f8584b-493e-444b-80ec-ba552ecc1f00" + "WESTUS2:20200730T213902Z:d391cb26-c535-4627-99b7-cc32151569bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3054,7 +3054,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:29:25 GMT" + "Thu, 30 Jul 2020 21:39:02 GMT" ], "Content-Length": [ "1764" @@ -3066,23 +3066,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545\",\r\n \"name\": \"ps5545\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6651\",\r\n \"etag\": \"AAAAABK+Y4A=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5545.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5545\",\r\n \"endpoint\": \"sb://iothub-ns-ps5545-3639468-bf5ebd9639.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4390.servicebus.windows.net:5671/;SharedAccessKeyName=ps9447;SharedAccessKey=****;EntityPath=ps8829\",\r\n \"name\": \"eh1\",\r\n \"id\": \"d724afe3-88e5-4b8f-9ca5-ab9e13e48cf6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713\",\r\n \"name\": \"ps9713\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2471\",\r\n \"etag\": \"AAAAAJ6Hwc4=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps9713.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9713\",\r\n \"endpoint\": \"sb://iothub-ns-ps9713-3949739-eed064899b.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8918.servicebus.windows.net:5671/;SharedAccessKeyName=ps7467;SharedAccessKey=****;EntityPath=ps7778\",\r\n \"name\": \"eh1\",\r\n \"id\": \"766d3101-9169-467b-b1be-9aa844607e9e\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0873bc9c-360d-40e3-8b0b-c157c7f52ddb" + "0c273dc7-0dd9-4392-b7b2-474c1cecc889" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3099,16 +3099,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" + "11950" ], "x-ms-request-id": [ - "729b7d82-8460-43db-a4a0-69349e11f68a" + "8f9da657-30eb-4824-a8ef-cd3fcc97b6cd" ], "x-ms-correlation-request-id": [ - "729b7d82-8460-43db-a4a0-69349e11f68a" + "8f9da657-30eb-4824-a8ef-cd3fcc97b6cd" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182926Z:729b7d82-8460-43db-a4a0-69349e11f68a" + "WESTUS2:20200730T213903Z:8f9da657-30eb-4824-a8ef-cd3fcc97b6cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3117,7 +3117,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:29:26 GMT" + "Thu, 30 Jul 2020 21:39:03 GMT" ], "Content-Length": [ "1764" @@ -3129,23 +3129,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545\",\r\n \"name\": \"ps5545\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6651\",\r\n \"etag\": \"AAAAABK+Y4A=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5545.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5545\",\r\n \"endpoint\": \"sb://iothub-ns-ps5545-3639468-bf5ebd9639.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4390.servicebus.windows.net:5671/;SharedAccessKeyName=ps9447;SharedAccessKey=****;EntityPath=ps8829\",\r\n \"name\": \"eh1\",\r\n \"id\": \"d724afe3-88e5-4b8f-9ca5-ab9e13e48cf6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713\",\r\n \"name\": \"ps9713\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2471\",\r\n \"etag\": \"AAAAAJ6Hwc4=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps9713.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9713\",\r\n \"endpoint\": \"sb://iothub-ns-ps9713-3949739-eed064899b.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8918.servicebus.windows.net:5671/;SharedAccessKeyName=ps7467;SharedAccessKey=****;EntityPath=ps7778\",\r\n \"name\": \"eh1\",\r\n \"id\": \"766d3101-9169-467b-b1be-9aa844607e9e\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "11d69cea-0151-4fb0-8b4a-f30700e37577" + "eaa052e4-f459-4514-8f75-d2e8315e3b89" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3162,16 +3162,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" + "11949" ], "x-ms-request-id": [ - "d35781d6-163a-40bb-a2e4-5ae77a1458cd" + "a589a136-059c-47c1-8c5a-e2b3fd9f2b65" ], "x-ms-correlation-request-id": [ - "d35781d6-163a-40bb-a2e4-5ae77a1458cd" + "a589a136-059c-47c1-8c5a-e2b3fd9f2b65" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182927Z:d35781d6-163a-40bb-a2e4-5ae77a1458cd" + "WESTUS2:20200730T213903Z:a589a136-059c-47c1-8c5a-e2b3fd9f2b65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3180,7 +3180,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:29:26 GMT" + "Thu, 30 Jul 2020 21:39:03 GMT" ], "Content-Length": [ "1764" @@ -3192,17 +3192,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545\",\r\n \"name\": \"ps5545\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6651\",\r\n \"etag\": \"AAAAABK+Y4A=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5545.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5545\",\r\n \"endpoint\": \"sb://iothub-ns-ps5545-3639468-bf5ebd9639.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4390.servicebus.windows.net:5671/;SharedAccessKeyName=ps9447;SharedAccessKey=****;EntityPath=ps8829\",\r\n \"name\": \"eh1\",\r\n \"id\": \"d724afe3-88e5-4b8f-9ca5-ab9e13e48cf6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713\",\r\n \"name\": \"ps9713\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2471\",\r\n \"etag\": \"AAAAAJ6Hwc4=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps9713.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9713\",\r\n \"endpoint\": \"sb://iothub-ns-ps9713-3949739-eed064899b.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8918.servicebus.windows.net:5671/;SharedAccessKeyName=ps7467;SharedAccessKey=****;EntityPath=ps7778\",\r\n \"name\": \"eh1\",\r\n \"id\": \"766d3101-9169-467b-b1be-9aa844607e9e\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3219,16 +3219,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11951" + "11947" ], "x-ms-request-id": [ - "53c4fa05-c8a5-4a74-bc90-b023d676b278" + "78e63665-bafa-4242-b392-e171c183ae62" ], "x-ms-correlation-request-id": [ - "53c4fa05-c8a5-4a74-bc90-b023d676b278" + "78e63665-bafa-4242-b392-e171c183ae62" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183000Z:53c4fa05-c8a5-4a74-bc90-b023d676b278" + "WESTUS2:20200730T213937Z:78e63665-bafa-4242-b392-e171c183ae62" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3237,7 +3237,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:30:00 GMT" + "Thu, 30 Jul 2020 21:39:37 GMT" ], "Content-Length": [ "1567" @@ -3249,23 +3249,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545\",\r\n \"name\": \"ps5545\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6651\",\r\n \"etag\": \"AAAAABK+kHI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5545.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5545\",\r\n \"endpoint\": \"sb://iothub-ns-ps5545-3639468-bf5ebd9639.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713\",\r\n \"name\": \"ps9713\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2471\",\r\n \"etag\": \"AAAAAJ6IqRE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps9713.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9713\",\r\n \"endpoint\": \"sb://iothub-ns-ps9713-3949739-eed064899b.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e96515a3-314f-4b07-bd34-5e7536751fc0" + "0635869e-8518-49e0-9a65-0f90f92f0cd9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3282,16 +3282,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11950" + "11946" ], "x-ms-request-id": [ - "70d070a9-4081-4906-a35c-1f41ecb0e022" + "a79ec4eb-9c6d-4738-960b-1e48634b925f" ], "x-ms-correlation-request-id": [ - "70d070a9-4081-4906-a35c-1f41ecb0e022" + "a79ec4eb-9c6d-4738-960b-1e48634b925f" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183001Z:70d070a9-4081-4906-a35c-1f41ecb0e022" + "WESTUS2:20200730T213938Z:a79ec4eb-9c6d-4738-960b-1e48634b925f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3300,7 +3300,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:30:00 GMT" + "Thu, 30 Jul 2020 21:39:37 GMT" ], "Content-Length": [ "1567" @@ -3312,23 +3312,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545\",\r\n \"name\": \"ps5545\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6651\",\r\n \"etag\": \"AAAAABK+kHI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5545.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5545\",\r\n \"endpoint\": \"sb://iothub-ns-ps5545-3639468-bf5ebd9639.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713\",\r\n \"name\": \"ps9713\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2471\",\r\n \"etag\": \"AAAAAJ6IqRE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps9713.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9713\",\r\n \"endpoint\": \"sb://iothub-ns-ps9713-3949739-eed064899b.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "508afa07-f4c3-418d-8d47-32c16584c00b" + "fd03d10d-c7b6-4f09-92f4-d194755d8783" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3345,16 +3345,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11949" + "11945" ], "x-ms-request-id": [ - "222ecc1e-dffc-4f05-a58c-6854655675d7" + "bd72162a-0a2c-4bd1-a2dd-a8934ccb65ad" ], "x-ms-correlation-request-id": [ - "222ecc1e-dffc-4f05-a58c-6854655675d7" + "bd72162a-0a2c-4bd1-a2dd-a8934ccb65ad" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183001Z:222ecc1e-dffc-4f05-a58c-6854655675d7" + "WESTUS2:20200730T213939Z:bd72162a-0a2c-4bd1-a2dd-a8934ccb65ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3363,7 +3363,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:30:01 GMT" + "Thu, 30 Jul 2020 21:39:38 GMT" ], "Content-Length": [ "1567" @@ -3375,17 +3375,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545\",\r\n \"name\": \"ps5545\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6651\",\r\n \"etag\": \"AAAAABK+kHI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5545.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5545\",\r\n \"endpoint\": \"sb://iothub-ns-ps5545-3639468-bf5ebd9639.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713\",\r\n \"name\": \"ps9713\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2471\",\r\n \"etag\": \"AAAAAJ6IqRE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps9713.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9713\",\r\n \"endpoint\": \"sb://iothub-ns-ps9713-3949739-eed064899b.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route1\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3402,16 +3402,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11947" + "11938" ], "x-ms-request-id": [ - "21ea0254-5ba8-4248-9735-4563022817fb" + "e4d94a85-1e82-4452-8277-f35cde14dac6" ], "x-ms-correlation-request-id": [ - "21ea0254-5ba8-4248-9735-4563022817fb" + "e4d94a85-1e82-4452-8277-f35cde14dac6" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183035Z:21ea0254-5ba8-4248-9735-4563022817fb" + "WESTUS2:20200730T214244Z:e4d94a85-1e82-4452-8277-f35cde14dac6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3420,7 +3420,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:30:34 GMT" + "Thu, 30 Jul 2020 21:42:43 GMT" ], "Content-Length": [ "1674" @@ -3432,23 +3432,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545\",\r\n \"name\": \"ps5545\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6651\",\r\n \"etag\": \"AAAAABK+y3M=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5545.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5545\",\r\n \"endpoint\": \"sb://iothub-ns-ps5545-3639468-bf5ebd9639.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713\",\r\n \"name\": \"ps9713\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2471\",\r\n \"etag\": \"AAAAAJ6JXKo=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps9713.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9713\",\r\n \"endpoint\": \"sb://iothub-ns-ps9713-3949739-eed064899b.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21bca26a-7162-42a9-b0d9-1d6c6c8581bd" + "c54f12b8-cece-4811-bd1b-98ae545cecaf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3465,16 +3465,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11946" + "11937" ], "x-ms-request-id": [ - "771d0a71-5f05-412e-b155-825235ca4174" + "e7954df4-7082-4389-bb65-e55ee72c6adb" ], "x-ms-correlation-request-id": [ - "771d0a71-5f05-412e-b155-825235ca4174" + "e7954df4-7082-4389-bb65-e55ee72c6adb" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183035Z:771d0a71-5f05-412e-b155-825235ca4174" + "WESTUS2:20200730T214245Z:e7954df4-7082-4389-bb65-e55ee72c6adb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3483,7 +3483,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:30:34 GMT" + "Thu, 30 Jul 2020 21:42:44 GMT" ], "Content-Length": [ "1674" @@ -3495,23 +3495,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545\",\r\n \"name\": \"ps5545\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6651\",\r\n \"etag\": \"AAAAABK+y3M=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5545.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5545\",\r\n \"endpoint\": \"sb://iothub-ns-ps5545-3639468-bf5ebd9639.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713\",\r\n \"name\": \"ps9713\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2471\",\r\n \"etag\": \"AAAAAJ6JXKo=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps9713.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9713\",\r\n \"endpoint\": \"sb://iothub-ns-ps9713-3949739-eed064899b.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7769e7e7-3e13-416f-b476-826ec5493563" + "5fe6cb00-1d55-4866-adc8-271f4609c791" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3528,16 +3528,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11945" + "11936" ], "x-ms-request-id": [ - "f60f4646-e460-48dd-a35e-bd8767b43a3d" + "9cd12b4e-2bfe-4ce8-974b-d26461a5bbec" ], "x-ms-correlation-request-id": [ - "f60f4646-e460-48dd-a35e-bd8767b43a3d" + "9cd12b4e-2bfe-4ce8-974b-d26461a5bbec" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183036Z:f60f4646-e460-48dd-a35e-bd8767b43a3d" + "WESTUS2:20200730T214245Z:9cd12b4e-2bfe-4ce8-974b-d26461a5bbec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3546,7 +3546,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:30:35 GMT" + "Thu, 30 Jul 2020 21:42:44 GMT" ], "Content-Length": [ "1674" @@ -3558,23 +3558,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545\",\r\n \"name\": \"ps5545\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6651\",\r\n \"etag\": \"AAAAABK+y3M=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5545.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5545\",\r\n \"endpoint\": \"sb://iothub-ns-ps5545-3639468-bf5ebd9639.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713\",\r\n \"name\": \"ps9713\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2471\",\r\n \"etag\": \"AAAAAJ6JXKo=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps9713.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9713\",\r\n \"endpoint\": \"sb://iothub-ns-ps9713-3949739-eed064899b.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9811a10-2836-4ffd-a343-31ff2261859f" + "bc93440f-5275-41c5-b15b-456f25907caf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3591,16 +3591,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11944" + "11935" ], "x-ms-request-id": [ - "af9fff20-8660-41db-9d50-57320e43d67b" + "831b6835-5a1f-4b34-a11c-e6ec9794c31c" ], "x-ms-correlation-request-id": [ - "af9fff20-8660-41db-9d50-57320e43d67b" + "831b6835-5a1f-4b34-a11c-e6ec9794c31c" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183037Z:af9fff20-8660-41db-9d50-57320e43d67b" + "WESTUS2:20200730T214246Z:831b6835-5a1f-4b34-a11c-e6ec9794c31c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3609,7 +3609,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:30:36 GMT" + "Thu, 30 Jul 2020 21:42:45 GMT" ], "Content-Length": [ "1674" @@ -3621,17 +3621,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545\",\r\n \"name\": \"ps5545\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6651\",\r\n \"etag\": \"AAAAABK+y3M=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5545.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5545\",\r\n \"endpoint\": \"sb://iothub-ns-ps5545-3639468-bf5ebd9639.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713\",\r\n \"name\": \"ps9713\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2471\",\r\n \"etag\": \"AAAAAJ6JXKo=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps9713.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9713\",\r\n \"endpoint\": \"sb://iothub-ns-ps9713-3949739-eed064899b.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3648,16 +3648,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11942" + "11933" ], "x-ms-request-id": [ - "f1765e13-82ef-46b9-98d6-f5d9e738a2ce" + "17f95857-84de-431b-a29a-f7719efa6540" ], "x-ms-correlation-request-id": [ - "f1765e13-82ef-46b9-98d6-f5d9e738a2ce" + "17f95857-84de-431b-a29a-f7719efa6540" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183110Z:f1765e13-82ef-46b9-98d6-f5d9e738a2ce" + "WESTUS2:20200730T214326Z:17f95857-84de-431b-a29a-f7719efa6540" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3666,7 +3666,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:31:10 GMT" + "Thu, 30 Jul 2020 21:43:25 GMT" ], "Content-Length": [ "1673" @@ -3678,23 +3678,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545\",\r\n \"name\": \"ps5545\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6651\",\r\n \"etag\": \"AAAAABK+3U0=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5545.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5545\",\r\n \"endpoint\": \"sb://iothub-ns-ps5545-3639468-bf5ebd9639.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713\",\r\n \"name\": \"ps9713\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2471\",\r\n \"etag\": \"AAAAAJ6NG3A=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps9713.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9713\",\r\n \"endpoint\": \"sb://iothub-ns-ps9713-3949739-eed064899b.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fd7bd84-c669-4b62-8060-838784b95c5b" + "7b5e1f6b-6820-4f89-825b-8aea8bcac709" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3711,16 +3711,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11941" + "11932" ], "x-ms-request-id": [ - "a1247619-244f-4071-a942-408e0be18e2b" + "51be8bf7-a5ec-4cd5-992f-d63ffc3e88eb" ], "x-ms-correlation-request-id": [ - "a1247619-244f-4071-a942-408e0be18e2b" + "51be8bf7-a5ec-4cd5-992f-d63ffc3e88eb" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183111Z:a1247619-244f-4071-a942-408e0be18e2b" + "WESTUS2:20200730T214326Z:51be8bf7-a5ec-4cd5-992f-d63ffc3e88eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3729,7 +3729,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:31:10 GMT" + "Thu, 30 Jul 2020 21:43:26 GMT" ], "Content-Length": [ "1673" @@ -3741,23 +3741,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545\",\r\n \"name\": \"ps5545\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6651\",\r\n \"etag\": \"AAAAABK+3U0=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5545.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5545\",\r\n \"endpoint\": \"sb://iothub-ns-ps5545-3639468-bf5ebd9639.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713\",\r\n \"name\": \"ps9713\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2471\",\r\n \"etag\": \"AAAAAJ6NG3A=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps9713.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9713\",\r\n \"endpoint\": \"sb://iothub-ns-ps9713-3949739-eed064899b.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "47db5ffe-a0de-4450-be14-f940865e50c7" + "c8e0ba04-a92f-4130-bd9d-a9cdaabe39ec" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3774,16 +3774,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11940" + "11931" ], "x-ms-request-id": [ - "0d37c086-a558-4bc6-bf27-11266fa6bf10" + "811ea4f8-9fcc-4fb4-873a-9ea6caac86b1" ], "x-ms-correlation-request-id": [ - "0d37c086-a558-4bc6-bf27-11266fa6bf10" + "811ea4f8-9fcc-4fb4-873a-9ea6caac86b1" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183111Z:0d37c086-a558-4bc6-bf27-11266fa6bf10" + "WESTUS2:20200730T214327Z:811ea4f8-9fcc-4fb4-873a-9ea6caac86b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3792,7 +3792,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:31:11 GMT" + "Thu, 30 Jul 2020 21:43:27 GMT" ], "Content-Length": [ "1673" @@ -3804,23 +3804,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545\",\r\n \"name\": \"ps5545\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6651\",\r\n \"etag\": \"AAAAABK+3U0=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5545.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5545\",\r\n \"endpoint\": \"sb://iothub-ns-ps5545-3639468-bf5ebd9639.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713\",\r\n \"name\": \"ps9713\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2471\",\r\n \"etag\": \"AAAAAJ6NG3A=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps9713.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9713\",\r\n \"endpoint\": \"sb://iothub-ns-ps9713-3949739-eed064899b.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f2f4b37d-6cc7-4f91-a679-3c178f6ebba0" + "fd50b1b3-e3fd-4387-8c21-2241ca4b0f3a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3837,16 +3837,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11939" + "11930" ], "x-ms-request-id": [ - "f797c16c-96a8-4d66-a95b-a98e3de2b965" + "b244de0f-45b0-459a-bcde-c7f9e9bbfd2d" ], "x-ms-correlation-request-id": [ - "f797c16c-96a8-4d66-a95b-a98e3de2b965" + "b244de0f-45b0-459a-bcde-c7f9e9bbfd2d" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183119Z:f797c16c-96a8-4d66-a95b-a98e3de2b965" + "WESTUS2:20200730T214329Z:b244de0f-45b0-459a-bcde-c7f9e9bbfd2d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3855,7 +3855,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:31:18 GMT" + "Thu, 30 Jul 2020 21:43:28 GMT" ], "Content-Length": [ "1688" @@ -3867,23 +3867,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545\",\r\n \"name\": \"ps5545\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6651\",\r\n \"etag\": \"AAAAABK+69k=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5545.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5545\",\r\n \"endpoint\": \"sb://iothub-ns-ps5545-3639468-bf5ebd9639.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713\",\r\n \"name\": \"ps9713\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2471\",\r\n \"etag\": \"AAAAAJ6NVQU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps9713.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9713\",\r\n \"endpoint\": \"sb://iothub-ns-ps9713-3949739-eed064899b.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "02ce7958-b8bc-441f-a6d8-9c67035769c6" + "bc761674-0058-4a27-a7c9-30b4001265a6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3900,16 +3900,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11938" + "11929" ], "x-ms-request-id": [ - "1428668a-b904-4566-9bec-49ac3b47327b" + "c5c68c6d-02da-4a28-a26c-057ef4a82a25" ], "x-ms-correlation-request-id": [ - "1428668a-b904-4566-9bec-49ac3b47327b" + "c5c68c6d-02da-4a28-a26c-057ef4a82a25" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183121Z:1428668a-b904-4566-9bec-49ac3b47327b" + "WESTUS2:20200730T214331Z:c5c68c6d-02da-4a28-a26c-057ef4a82a25" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3918,7 +3918,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:31:20 GMT" + "Thu, 30 Jul 2020 21:43:30 GMT" ], "Content-Length": [ "1704" @@ -3930,23 +3930,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545\",\r\n \"name\": \"ps5545\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6651\",\r\n \"etag\": \"AAAAABK++mg=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5545.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5545\",\r\n \"endpoint\": \"sb://iothub-ns-ps5545-3639468-bf5ebd9639.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713\",\r\n \"name\": \"ps9713\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2471\",\r\n \"etag\": \"AAAAAJ6Nd+w=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps9713.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9713\",\r\n \"endpoint\": \"sb://iothub-ns-ps9713-3949739-eed064899b.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ce2531e6-167d-4a90-8d61-d17137a05358" + "a9bb1b4f-4bc9-4aeb-8801-9633d5201148" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -3963,16 +3963,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11937" + "11928" ], "x-ms-request-id": [ - "8ebbb829-b9b7-4086-a2bb-0b5e495e9c3f" + "35580bc0-7c56-4b84-8876-30c139f66172" ], "x-ms-correlation-request-id": [ - "8ebbb829-b9b7-4086-a2bb-0b5e495e9c3f" + "35580bc0-7c56-4b84-8876-30c139f66172" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183123Z:8ebbb829-b9b7-4086-a2bb-0b5e495e9c3f" + "WESTUS2:20200730T214333Z:35580bc0-7c56-4b84-8876-30c139f66172" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3981,7 +3981,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:31:22 GMT" + "Thu, 30 Jul 2020 21:43:32 GMT" ], "Content-Length": [ "1688" @@ -3993,23 +3993,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545\",\r\n \"name\": \"ps5545\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6651\",\r\n \"etag\": \"AAAAABK++ng=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5545.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5545\",\r\n \"endpoint\": \"sb://iothub-ns-ps5545-3639468-bf5ebd9639.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713\",\r\n \"name\": \"ps9713\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2471\",\r\n \"etag\": \"AAAAAJ6Nd/U=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps9713.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9713\",\r\n \"endpoint\": \"sb://iothub-ns-ps9713-3949739-eed064899b.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "71151649-66cf-4827-a74e-70ccf1a985e9" + "3996dce2-fa06-4dea-b863-f52069902153" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -4026,16 +4026,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11936" + "11927" ], "x-ms-request-id": [ - "1c291489-4eaf-4321-b8f4-1d726aa4da20" + "375bdb85-5838-43ea-89d3-3240dfb094e9" ], "x-ms-correlation-request-id": [ - "1c291489-4eaf-4321-b8f4-1d726aa4da20" + "375bdb85-5838-43ea-89d3-3240dfb094e9" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183123Z:1c291489-4eaf-4321-b8f4-1d726aa4da20" + "WESTUS2:20200730T214333Z:375bdb85-5838-43ea-89d3-3240dfb094e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4044,7 +4044,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:31:23 GMT" + "Thu, 30 Jul 2020 21:43:33 GMT" ], "Content-Length": [ "1688" @@ -4056,23 +4056,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545\",\r\n \"name\": \"ps5545\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6651\",\r\n \"etag\": \"AAAAABK++ng=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5545.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5545\",\r\n \"endpoint\": \"sb://iothub-ns-ps5545-3639468-bf5ebd9639.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713\",\r\n \"name\": \"ps9713\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2471\",\r\n \"etag\": \"AAAAAJ6Nd/U=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps9713.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9713\",\r\n \"endpoint\": \"sb://iothub-ns-ps9713-3949739-eed064899b.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "259d3172-e1d0-4080-bf6f-b3b97637446a" + "75ca68cd-6498-43c0-bba2-9ea30adf69c4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -4089,16 +4089,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11900" + "11899" ], "x-ms-request-id": [ - "057d69e2-100b-48a7-a3ac-d6d196a268e9" + "74add12c-769b-4976-aa03-9e0b27ecd516" ], "x-ms-correlation-request-id": [ - "057d69e2-100b-48a7-a3ac-d6d196a268e9" + "74add12c-769b-4976-aa03-9e0b27ecd516" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184005Z:057d69e2-100b-48a7-a3ac-d6d196a268e9" + "WESTUS2:20200730T215223Z:74add12c-769b-4976-aa03-9e0b27ecd516" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4107,7 +4107,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:40:04 GMT" + "Thu, 30 Jul 2020 21:52:23 GMT" ], "Content-Length": [ "1688" @@ -4119,23 +4119,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545\",\r\n \"name\": \"ps5545\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6651\",\r\n \"etag\": \"AAAAABLAkDM=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5545.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5545\",\r\n \"endpoint\": \"sb://iothub-ns-ps5545-3639468-eed34f0406.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713\",\r\n \"name\": \"ps9713\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2471\",\r\n \"etag\": \"AAAAAJ6WH5U=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps9713.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9713\",\r\n \"endpoint\": \"sb://iothub-ns-ps9713-3949739-97dce9a8d2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "184e6f58-f227-42f4-9415-476470e76047" + "ea7fa835-2339-49f2-ae47-6053bf22e8e5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -4152,16 +4152,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11989" ], "x-ms-request-id": [ - "0a5f221a-cbd6-4242-a325-ff5f0f9c84e3" + "592d39d5-6e60-4b86-a964-afce29cf60c0" ], "x-ms-correlation-request-id": [ - "0a5f221a-cbd6-4242-a325-ff5f0f9c84e3" + "592d39d5-6e60-4b86-a964-afce29cf60c0" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182516Z:0a5f221a-cbd6-4242-a325-ff5f0f9c84e3" + "WESTUS2:20200730T213317Z:592d39d5-6e60-4b86-a964-afce29cf60c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4170,7 +4170,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:25:16 GMT" + "Thu, 30 Jul 2020 21:33:17 GMT" ], "Content-Length": [ "1773" @@ -4182,23 +4182,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545\",\r\n \"name\": \"ps5545\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6651\",\r\n \"etag\": \"AAAAABK9y9k=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5545.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5545\",\r\n \"endpoint\": \"sb://iothub-ns-ps5545-3639468-bf5ebd9639.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub4390.servicebus.windows.net:5671/;SharedAccessKeyName=ps9447;SharedAccessKey=****;EntityPath=ps8829\",\r\n \"name\": \"eh1\",\r\n \"id\": \"d724afe3-88e5-4b8f-9ca5-ab9e13e48cf6\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713\",\r\n \"name\": \"ps9713\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2471\",\r\n \"etag\": \"AAAAAJ6EAl8=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps9713.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9713\",\r\n \"endpoint\": \"sb://iothub-ns-ps9713-3949739-eed064899b.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [\r\n {\r\n \"connectionString\": \"Endpoint=sb://eventhub8918.servicebus.windows.net:5671/;SharedAccessKeyName=ps7467;SharedAccessKey=****;EntityPath=ps7778\",\r\n \"name\": \"eh1\",\r\n \"id\": \"766d3101-9169-467b-b1be-9aa844607e9e\"\r\n }\r\n ],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"eh1\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": false\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B1\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545/quotaMetrics?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDUvcXVvdGFNZXRyaWNzP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713/quotaMetrics?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTMvcXVvdGFNZXRyaWNzP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2e2375b4-2f86-46e3-8ffd-9081065f8451" + "73558f06-080b-4a58-b599-da1ebfcbd0a1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -4215,16 +4215,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11987" ], "x-ms-request-id": [ - "1972c052-7b32-437d-9661-b3b5ffb0a4bd" + "0ec3c481-2729-4780-b9e5-982602f4e90a" ], "x-ms-correlation-request-id": [ - "1972c052-7b32-437d-9661-b3b5ffb0a4bd" + "0ec3c481-2729-4780-b9e5-982602f4e90a" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182517Z:1972c052-7b32-437d-9661-b3b5ffb0a4bd" + "WESTUS2:20200730T213318Z:0ec3c481-2729-4780-b9e5-982602f4e90a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4233,7 +4233,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:25:16 GMT" + "Thu, 30 Jul 2020 21:33:18 GMT" ], "Content-Length": [ "135" @@ -4249,19 +4249,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545/IotHubStats?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDUvSW90SHViU3RhdHM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713/IotHubStats?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTMvSW90SHViU3RhdHM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b8e00def-b90e-4def-ab9d-6f2b154c6734" + "02ed05a2-4fb5-485d-98c3-fad2188036e7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -4278,16 +4278,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11986" ], "x-ms-request-id": [ - "2e5d29e0-ea5b-4c3b-aad6-731fb74fc9c3" + "e9acf862-ec82-4eb3-b604-a1ade6598497" ], "x-ms-correlation-request-id": [ - "2e5d29e0-ea5b-4c3b-aad6-731fb74fc9c3" + "e9acf862-ec82-4eb3-b604-a1ade6598497" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182517Z:2e5d29e0-ea5b-4c3b-aad6-731fb74fc9c3" + "WESTUS2:20200730T213318Z:e9acf862-ec82-4eb3-b604-a1ade6598497" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4296,7 +4296,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:25:17 GMT" + "Thu, 30 Jul 2020 21:33:18 GMT" ], "Content-Length": [ "69" @@ -4312,19 +4312,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545/skus?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDUvc2t1cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713/skus?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTMvc2t1cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ceefa878-f481-4128-a9aa-4976496824f3" + "e3033490-7695-4f12-ab24-82eb2c90d54b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -4341,16 +4341,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11985" ], "x-ms-request-id": [ - "12523d17-e1c7-40e1-9fde-b35568468f53" + "906cc0a0-94c6-44e7-9668-afc222974e82" ], "x-ms-correlation-request-id": [ - "12523d17-e1c7-40e1-9fde-b35568468f53" + "906cc0a0-94c6-44e7-9668-afc222974e82" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182518Z:12523d17-e1c7-40e1-9fde-b35568468f53" + "WESTUS2:20200730T213319Z:906cc0a0-94c6-44e7-9668-afc222974e82" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4359,7 +4359,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:25:18 GMT" + "Thu, 30 Jul 2020 21:33:18 GMT" ], "Content-Length": [ "930" @@ -4375,19 +4375,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545/eventHubEndpoints/events/ConsumerGroups?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDUvZXZlbnRIdWJFbmRwb2ludHMvZXZlbnRzL0NvbnN1bWVyR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713/eventHubEndpoints/events/ConsumerGroups?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTMvZXZlbnRIdWJFbmRwb2ludHMvZXZlbnRzL0NvbnN1bWVyR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8197258a-fec1-4fe5-ade1-c16c40693f08" + "74961dfa-bec5-4822-8b49-30a55e8f0242" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -4404,16 +4404,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11984" ], "x-ms-request-id": [ - "7165dcde-0c6a-4a5f-8750-1f3a773f96e4" + "3f093930-982a-4db2-8712-668e8482b05f" ], "x-ms-correlation-request-id": [ - "7165dcde-0c6a-4a5f-8750-1f3a773f96e4" + "3f093930-982a-4db2-8712-668e8482b05f" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182519Z:7165dcde-0c6a-4a5f-8750-1f3a773f96e4" + "WESTUS2:20200730T213319Z:3f093930-982a-4db2-8712-668e8482b05f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4422,7 +4422,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:25:18 GMT" + "Thu, 30 Jul 2020 21:33:19 GMT" ], "Content-Length": [ "343" @@ -4434,23 +4434,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"created\": \"Tue, 16 Jun 2020 18:23:56 GMT\"\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545/eventHubEndpoints/events/ConsumerGroups/%24Default\",\r\n \"name\": \"$Default\",\r\n \"type\": \"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups\",\r\n \"etag\": null\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"created\": \"Thu, 30 Jul 2020 21:32:02 GMT\"\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713/eventHubEndpoints/events/ConsumerGroups/%24Default\",\r\n \"name\": \"$Default\",\r\n \"type\": \"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups\",\r\n \"etag\": null\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545/eventHubEndpoints/events/ConsumerGroups?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDUvZXZlbnRIdWJFbmRwb2ludHMvZXZlbnRzL0NvbnN1bWVyR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713/eventHubEndpoints/events/ConsumerGroups?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTMvZXZlbnRIdWJFbmRwb2ludHMvZXZlbnRzL0NvbnN1bWVyR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0acd2804-e954-41b9-b6bb-699ec9b79809" + "866a81bf-950c-4c7d-be04-f4954aefec92" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -4467,16 +4467,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11981" ], "x-ms-request-id": [ - "214efd54-fbfe-467b-b76e-358bff12ff08" + "8f72c0a5-e60d-4386-b30c-f9e1a65ecf60" ], "x-ms-correlation-request-id": [ - "214efd54-fbfe-467b-b76e-358bff12ff08" + "8f72c0a5-e60d-4386-b30c-f9e1a65ecf60" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182523Z:214efd54-fbfe-467b-b76e-358bff12ff08" + "WESTUS2:20200730T213322Z:8f72c0a5-e60d-4386-b30c-f9e1a65ecf60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4485,7 +4485,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:25:22 GMT" + "Thu, 30 Jul 2020 21:33:22 GMT" ], "Content-Length": [ "663" @@ -4497,23 +4497,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"created\": \"Tue, 16 Jun 2020 18:23:56 GMT\"\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545/eventHubEndpoints/events/ConsumerGroups/%24Default\",\r\n \"name\": \"$Default\",\r\n \"type\": \"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups\",\r\n \"etag\": null\r\n },\r\n {\r\n \"properties\": {\r\n \"created\": \"Tue, 16 Jun 2020 18:25:22 GMT\"\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545/eventHubEndpoints/events/ConsumerGroups/cg1\",\r\n \"name\": \"cg1\",\r\n \"type\": \"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups\",\r\n \"etag\": null\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"created\": \"Thu, 30 Jul 2020 21:32:02 GMT\"\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713/eventHubEndpoints/events/ConsumerGroups/%24Default\",\r\n \"name\": \"$Default\",\r\n \"type\": \"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups\",\r\n \"etag\": null\r\n },\r\n {\r\n \"properties\": {\r\n \"created\": \"Thu, 30 Jul 2020 21:33:22 GMT\"\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713/eventHubEndpoints/events/ConsumerGroups/cg1\",\r\n \"name\": \"cg1\",\r\n \"type\": \"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups\",\r\n \"etag\": null\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545/eventHubEndpoints/events/ConsumerGroups?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDUvZXZlbnRIdWJFbmRwb2ludHMvZXZlbnRzL0NvbnN1bWVyR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713/eventHubEndpoints/events/ConsumerGroups?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTMvZXZlbnRIdWJFbmRwb2ludHMvZXZlbnRzL0NvbnN1bWVyR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "daa8f48f-13ed-45c6-8d9a-08676a5db4a6" + "11e7f12e-bc28-4aa5-bc1a-7b0800cb1bab" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -4530,16 +4530,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11980" ], "x-ms-request-id": [ - "cd754341-d74b-4b18-bd56-5dfc9a428816" + "560f23c4-d41f-4c2b-8ef4-b7032ca8c576" ], "x-ms-correlation-request-id": [ - "cd754341-d74b-4b18-bd56-5dfc9a428816" + "560f23c4-d41f-4c2b-8ef4-b7032ca8c576" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182523Z:cd754341-d74b-4b18-bd56-5dfc9a428816" + "WESTUS2:20200730T213323Z:560f23c4-d41f-4c2b-8ef4-b7032ca8c576" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4548,7 +4548,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:25:22 GMT" + "Thu, 30 Jul 2020 21:33:22 GMT" ], "Content-Length": [ "663" @@ -4560,23 +4560,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"created\": \"Tue, 16 Jun 2020 18:23:56 GMT\"\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545/eventHubEndpoints/events/ConsumerGroups/%24Default\",\r\n \"name\": \"$Default\",\r\n \"type\": \"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups\",\r\n \"etag\": null\r\n },\r\n {\r\n \"properties\": {\r\n \"created\": \"Tue, 16 Jun 2020 18:25:22 GMT\"\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545/eventHubEndpoints/events/ConsumerGroups/cg1\",\r\n \"name\": \"cg1\",\r\n \"type\": \"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups\",\r\n \"etag\": null\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"created\": \"Thu, 30 Jul 2020 21:32:02 GMT\"\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713/eventHubEndpoints/events/ConsumerGroups/%24Default\",\r\n \"name\": \"$Default\",\r\n \"type\": \"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups\",\r\n \"etag\": null\r\n },\r\n {\r\n \"properties\": {\r\n \"created\": \"Thu, 30 Jul 2020 21:33:22 GMT\"\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713/eventHubEndpoints/events/ConsumerGroups/cg1\",\r\n \"name\": \"cg1\",\r\n \"type\": \"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups\",\r\n \"etag\": null\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545/eventHubEndpoints/events/ConsumerGroups?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDUvZXZlbnRIdWJFbmRwb2ludHMvZXZlbnRzL0NvbnN1bWVyR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713/eventHubEndpoints/events/ConsumerGroups?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTMvZXZlbnRIdWJFbmRwb2ludHMvZXZlbnRzL0NvbnN1bWVyR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ee902b69-e3e7-4bef-a300-d03e5b503a6c" + "12eb0ac6-9a9f-4dd0-b6a2-fc2335b6c167" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -4593,16 +4593,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11979" ], "x-ms-request-id": [ - "0ed8200f-d32e-4746-9ad1-9261e78fd084" + "c3f29d01-9259-4af7-a044-5ecfa9dfded1" ], "x-ms-correlation-request-id": [ - "0ed8200f-d32e-4746-9ad1-9261e78fd084" + "c3f29d01-9259-4af7-a044-5ecfa9dfded1" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182523Z:0ed8200f-d32e-4746-9ad1-9261e78fd084" + "WESTUS2:20200730T213323Z:c3f29d01-9259-4af7-a044-5ecfa9dfded1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4611,7 +4611,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:25:22 GMT" + "Thu, 30 Jul 2020 21:33:23 GMT" ], "Content-Length": [ "343" @@ -4623,23 +4623,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"created\": \"Tue, 16 Jun 2020 18:23:56 GMT\"\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545/eventHubEndpoints/events/ConsumerGroups/%24Default\",\r\n \"name\": \"$Default\",\r\n \"type\": \"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups\",\r\n \"etag\": null\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"created\": \"Thu, 30 Jul 2020 21:32:02 GMT\"\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713/eventHubEndpoints/events/ConsumerGroups/%24Default\",\r\n \"name\": \"$Default\",\r\n \"type\": \"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups\",\r\n \"etag\": null\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545/eventHubEndpoints/events/ConsumerGroups?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDUvZXZlbnRIdWJFbmRwb2ludHMvZXZlbnRzL0NvbnN1bWVyR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713/eventHubEndpoints/events/ConsumerGroups?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTMvZXZlbnRIdWJFbmRwb2ludHMvZXZlbnRzL0NvbnN1bWVyR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "025a1bd4-4bc7-4934-aa5c-a8e3a80752fa" + "5b4b92d3-aede-4cd3-b289-c111184b0d33" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -4656,16 +4656,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11978" ], "x-ms-request-id": [ - "87b061f8-1486-46be-a372-d9b29cf64c56" + "d58bdfa2-d19b-42e2-bc47-5f15480fb8d8" ], "x-ms-correlation-request-id": [ - "87b061f8-1486-46be-a372-d9b29cf64c56" + "d58bdfa2-d19b-42e2-bc47-5f15480fb8d8" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182523Z:87b061f8-1486-46be-a372-d9b29cf64c56" + "WESTUS2:20200730T213323Z:d58bdfa2-d19b-42e2-bc47-5f15480fb8d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4674,7 +4674,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:25:23 GMT" + "Thu, 30 Jul 2020 21:33:23 GMT" ], "Content-Length": [ "343" @@ -4686,23 +4686,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"created\": \"Tue, 16 Jun 2020 18:23:56 GMT\"\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545/eventHubEndpoints/events/ConsumerGroups/%24Default\",\r\n \"name\": \"$Default\",\r\n \"type\": \"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups\",\r\n \"etag\": null\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"created\": \"Thu, 30 Jul 2020 21:32:02 GMT\"\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713/eventHubEndpoints/events/ConsumerGroups/%24Default\",\r\n \"name\": \"$Default\",\r\n \"type\": \"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups\",\r\n \"etag\": null\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTMvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5c1c4c2a-129f-48c6-9d97-5ccd65c48aac" + "79b1c709-9ae1-406d-a7f3-59db2cdd42d7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -4722,13 +4722,13 @@ "1199" ], "x-ms-request-id": [ - "aeff3cb3-c991-4a92-882c-e993af57edde" + "b05ba731-54bd-4b51-91a0-a5565d5aa9ea" ], "x-ms-correlation-request-id": [ - "aeff3cb3-c991-4a92-882c-e993af57edde" + "b05ba731-54bd-4b51-91a0-a5565d5aa9ea" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182519Z:aeff3cb3-c991-4a92-882c-e993af57edde" + "WESTUS2:20200730T213319Z:b05ba731-54bd-4b51-91a0-a5565d5aa9ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4737,7 +4737,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:25:18 GMT" + "Thu, 30 Jul 2020 21:33:19 GMT" ], "Content-Length": [ "905" @@ -4749,23 +4749,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"qN0g/ORi6fpYJC71YEauPRvVNh4s1Ty+Rd4th7ujsCQ=\",\r\n \"secondaryKey\": \"GmKhwqAUuPxQTpNVtn53yXkrzWOX2joy85EFfXVESKc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"QsM2CxTcOTA0MTEBNPlaAZvLbQzu48yNHQIeWHS+OzE=\",\r\n \"secondaryKey\": \"HY3c8NMm5qDwIuNhD+HQEdgC8x/L3QylVhiKWxLD17U=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"84G0AQok4gqnHeb0vfapPrCwVJLmqiyzAnj98AlakjU=\",\r\n \"secondaryKey\": \"Znr37zZWpBhF6xyQrB7eO89lUENalmfLyNRqWp5pRCM=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"jcq9Rt7Lhj1KxaxwiHsOGmLCftiAWfrSDNVrje8Z1F0=\",\r\n \"secondaryKey\": \"/oG2Tm7Qx3L/5/Wl/9taUYgKP5MgCLw/qhaFTgSGQ70=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"3LEo2h5K+OW0p8WqDb1THnjlE3HDr3A7flAielHSLjo=\",\r\n \"secondaryKey\": \"ncHKK3rlmOaKGyZmdGdqJhfd5UETUZ0QtAYbvJrnoPg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"ortpnJMGwgpMMBZpZdYIbraSSMOM9ue+cxdDNbyvCws=\",\r\n \"secondaryKey\": \"yxRzxXbbp3jJCDD03/BB0SHAUenu5DmX4Br64wYHR3g=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Wba4C3/mAi67Ww/3N8dQYaaczB12v+X/vNn6Rgpv7Os=\",\r\n \"secondaryKey\": \"/CKSKGFMiZjX56+7gSg3AzmgNP012eb4u9InvAjL93A=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"/OlUnZRvcLv6XrKMaVdCIK3WvCoB7/SY/0lDxqk4Zig=\",\r\n \"secondaryKey\": \"q4ki56Tc//WSIKzpy6vxwD08Srxf1kNYIkim1QoM3bo=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"+L8yJ3ig3tfqTFn9+pitdbmFEw84qpKeCxSGaiEyHq4=\",\r\n \"secondaryKey\": \"B/YE8RsanfxrS69PMyPZfgZ8BGONv/p8RFN51tcVe+w=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"ehUDpM6WkQ0eEL9ySYwCzXBt4pmVHz+5DCiZV/Pgd50=\",\r\n \"secondaryKey\": \"/k1sGvRDViSMEmryjmkdn8fo3KXKy64GrIcugsT7o40=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTMvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "76c1b1b5-ce6e-414a-8281-dcac5354b344" + "91fd54bb-6c3f-4524-9181-e67feffaae12" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -4785,13 +4785,13 @@ "1197" ], "x-ms-request-id": [ - "747c0321-5c23-4d9e-944d-f55bf38b6ad1" + "8cf90d74-c2f5-4c15-8065-abc1549ba5b5" ], "x-ms-correlation-request-id": [ - "747c0321-5c23-4d9e-944d-f55bf38b6ad1" + "8cf90d74-c2f5-4c15-8065-abc1549ba5b5" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182520Z:747c0321-5c23-4d9e-944d-f55bf38b6ad1" + "WESTUS2:20200730T213320Z:8cf90d74-c2f5-4c15-8065-abc1549ba5b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4800,7 +4800,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:25:19 GMT" + "Thu, 30 Jul 2020 21:33:20 GMT" ], "Content-Length": [ "905" @@ -4812,23 +4812,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"qN0g/ORi6fpYJC71YEauPRvVNh4s1Ty+Rd4th7ujsCQ=\",\r\n \"secondaryKey\": \"GmKhwqAUuPxQTpNVtn53yXkrzWOX2joy85EFfXVESKc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"QsM2CxTcOTA0MTEBNPlaAZvLbQzu48yNHQIeWHS+OzE=\",\r\n \"secondaryKey\": \"HY3c8NMm5qDwIuNhD+HQEdgC8x/L3QylVhiKWxLD17U=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"84G0AQok4gqnHeb0vfapPrCwVJLmqiyzAnj98AlakjU=\",\r\n \"secondaryKey\": \"Znr37zZWpBhF6xyQrB7eO89lUENalmfLyNRqWp5pRCM=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"jcq9Rt7Lhj1KxaxwiHsOGmLCftiAWfrSDNVrje8Z1F0=\",\r\n \"secondaryKey\": \"/oG2Tm7Qx3L/5/Wl/9taUYgKP5MgCLw/qhaFTgSGQ70=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"3LEo2h5K+OW0p8WqDb1THnjlE3HDr3A7flAielHSLjo=\",\r\n \"secondaryKey\": \"ncHKK3rlmOaKGyZmdGdqJhfd5UETUZ0QtAYbvJrnoPg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"ortpnJMGwgpMMBZpZdYIbraSSMOM9ue+cxdDNbyvCws=\",\r\n \"secondaryKey\": \"yxRzxXbbp3jJCDD03/BB0SHAUenu5DmX4Br64wYHR3g=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Wba4C3/mAi67Ww/3N8dQYaaczB12v+X/vNn6Rgpv7Os=\",\r\n \"secondaryKey\": \"/CKSKGFMiZjX56+7gSg3AzmgNP012eb4u9InvAjL93A=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"/OlUnZRvcLv6XrKMaVdCIK3WvCoB7/SY/0lDxqk4Zig=\",\r\n \"secondaryKey\": \"q4ki56Tc//WSIKzpy6vxwD08Srxf1kNYIkim1QoM3bo=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"+L8yJ3ig3tfqTFn9+pitdbmFEw84qpKeCxSGaiEyHq4=\",\r\n \"secondaryKey\": \"B/YE8RsanfxrS69PMyPZfgZ8BGONv/p8RFN51tcVe+w=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"ehUDpM6WkQ0eEL9ySYwCzXBt4pmVHz+5DCiZV/Pgd50=\",\r\n \"secondaryKey\": \"/k1sGvRDViSMEmryjmkdn8fo3KXKy64GrIcugsT7o40=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTMvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ce2a7f14-72f5-4ab7-b430-11cfd1eb3be2" + "5d5e16e8-ff32-424c-8fc2-47bffb37805e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -4848,13 +4848,13 @@ "1195" ], "x-ms-request-id": [ - "5c214e0d-3836-4200-a5e3-4fdead10278a" + "5478e15e-d4e5-4295-beb4-aefb967c48ae" ], "x-ms-correlation-request-id": [ - "5c214e0d-3836-4200-a5e3-4fdead10278a" + "5478e15e-d4e5-4295-beb4-aefb967c48ae" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182524Z:5c214e0d-3836-4200-a5e3-4fdead10278a" + "WESTUS2:20200730T213324Z:5478e15e-d4e5-4295-beb4-aefb967c48ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4863,7 +4863,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:25:23 GMT" + "Thu, 30 Jul 2020 21:33:23 GMT" ], "Content-Length": [ "905" @@ -4875,23 +4875,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"qN0g/ORi6fpYJC71YEauPRvVNh4s1Ty+Rd4th7ujsCQ=\",\r\n \"secondaryKey\": \"GmKhwqAUuPxQTpNVtn53yXkrzWOX2joy85EFfXVESKc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"QsM2CxTcOTA0MTEBNPlaAZvLbQzu48yNHQIeWHS+OzE=\",\r\n \"secondaryKey\": \"HY3c8NMm5qDwIuNhD+HQEdgC8x/L3QylVhiKWxLD17U=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"84G0AQok4gqnHeb0vfapPrCwVJLmqiyzAnj98AlakjU=\",\r\n \"secondaryKey\": \"Znr37zZWpBhF6xyQrB7eO89lUENalmfLyNRqWp5pRCM=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"jcq9Rt7Lhj1KxaxwiHsOGmLCftiAWfrSDNVrje8Z1F0=\",\r\n \"secondaryKey\": \"/oG2Tm7Qx3L/5/Wl/9taUYgKP5MgCLw/qhaFTgSGQ70=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"3LEo2h5K+OW0p8WqDb1THnjlE3HDr3A7flAielHSLjo=\",\r\n \"secondaryKey\": \"ncHKK3rlmOaKGyZmdGdqJhfd5UETUZ0QtAYbvJrnoPg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"ortpnJMGwgpMMBZpZdYIbraSSMOM9ue+cxdDNbyvCws=\",\r\n \"secondaryKey\": \"yxRzxXbbp3jJCDD03/BB0SHAUenu5DmX4Br64wYHR3g=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Wba4C3/mAi67Ww/3N8dQYaaczB12v+X/vNn6Rgpv7Os=\",\r\n \"secondaryKey\": \"/CKSKGFMiZjX56+7gSg3AzmgNP012eb4u9InvAjL93A=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"/OlUnZRvcLv6XrKMaVdCIK3WvCoB7/SY/0lDxqk4Zig=\",\r\n \"secondaryKey\": \"q4ki56Tc//WSIKzpy6vxwD08Srxf1kNYIkim1QoM3bo=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"+L8yJ3ig3tfqTFn9+pitdbmFEw84qpKeCxSGaiEyHq4=\",\r\n \"secondaryKey\": \"B/YE8RsanfxrS69PMyPZfgZ8BGONv/p8RFN51tcVe+w=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"ehUDpM6WkQ0eEL9ySYwCzXBt4pmVHz+5DCiZV/Pgd50=\",\r\n \"secondaryKey\": \"/k1sGvRDViSMEmryjmkdn8fo3KXKy64GrIcugsT7o40=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTMvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8f0e6798-d273-4e0a-9a8d-09fcfce558a7" + "de48f80c-8c1c-45a4-ba11-c79b512649e6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -4911,13 +4911,13 @@ "1194" ], "x-ms-request-id": [ - "5d9d5251-5187-4acf-8b19-04d5031dcd1e" + "a71310af-abb7-4a0e-b282-523bfd5eb96e" ], "x-ms-correlation-request-id": [ - "5d9d5251-5187-4acf-8b19-04d5031dcd1e" + "a71310af-abb7-4a0e-b282-523bfd5eb96e" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182558Z:5d9d5251-5187-4acf-8b19-04d5031dcd1e" + "WESTUS2:20200730T213430Z:a71310af-abb7-4a0e-b282-523bfd5eb96e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4926,7 +4926,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:25:58 GMT" + "Thu, 30 Jul 2020 21:34:29 GMT" ], "Content-Length": [ "1078" @@ -4938,23 +4938,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"qN0g/ORi6fpYJC71YEauPRvVNh4s1Ty+Rd4th7ujsCQ=\",\r\n \"secondaryKey\": \"GmKhwqAUuPxQTpNVtn53yXkrzWOX2joy85EFfXVESKc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"QsM2CxTcOTA0MTEBNPlaAZvLbQzu48yNHQIeWHS+OzE=\",\r\n \"secondaryKey\": \"HY3c8NMm5qDwIuNhD+HQEdgC8x/L3QylVhiKWxLD17U=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"84G0AQok4gqnHeb0vfapPrCwVJLmqiyzAnj98AlakjU=\",\r\n \"secondaryKey\": \"Znr37zZWpBhF6xyQrB7eO89lUENalmfLyNRqWp5pRCM=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"jcq9Rt7Lhj1KxaxwiHsOGmLCftiAWfrSDNVrje8Z1F0=\",\r\n \"secondaryKey\": \"/oG2Tm7Qx3L/5/Wl/9taUYgKP5MgCLw/qhaFTgSGQ70=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"3LEo2h5K+OW0p8WqDb1THnjlE3HDr3A7flAielHSLjo=\",\r\n \"secondaryKey\": \"ncHKK3rlmOaKGyZmdGdqJhfd5UETUZ0QtAYbvJrnoPg=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"/qetO9yW0iPsNaniGfR8ExSgYFJMuPKpVF3ylNQ16vs=\",\r\n \"secondaryKey\": \"CFHhWishCtL791GbsvrlDE4Dh6HxBzx4jh3kVwz3+5M=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"ortpnJMGwgpMMBZpZdYIbraSSMOM9ue+cxdDNbyvCws=\",\r\n \"secondaryKey\": \"yxRzxXbbp3jJCDD03/BB0SHAUenu5DmX4Br64wYHR3g=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Wba4C3/mAi67Ww/3N8dQYaaczB12v+X/vNn6Rgpv7Os=\",\r\n \"secondaryKey\": \"/CKSKGFMiZjX56+7gSg3AzmgNP012eb4u9InvAjL93A=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"/OlUnZRvcLv6XrKMaVdCIK3WvCoB7/SY/0lDxqk4Zig=\",\r\n \"secondaryKey\": \"q4ki56Tc//WSIKzpy6vxwD08Srxf1kNYIkim1QoM3bo=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"+L8yJ3ig3tfqTFn9+pitdbmFEw84qpKeCxSGaiEyHq4=\",\r\n \"secondaryKey\": \"B/YE8RsanfxrS69PMyPZfgZ8BGONv/p8RFN51tcVe+w=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"ehUDpM6WkQ0eEL9ySYwCzXBt4pmVHz+5DCiZV/Pgd50=\",\r\n \"secondaryKey\": \"/k1sGvRDViSMEmryjmkdn8fo3KXKy64GrIcugsT7o40=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"IYoGyCuTLhZmqHnQp21XaXfumAiwvSrpl5FJJvd7rW4=\",\r\n \"secondaryKey\": \"1UFREkm3HM0XsUBpzxkssAFn7ouaQtra4Cygd2ChxtQ=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTMvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7e7df500-a2ff-4066-9065-9dd846d25d2e" + "8ad45cac-f03a-45a8-9dda-40217c5a09fc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -4974,13 +4974,13 @@ "1193" ], "x-ms-request-id": [ - "74e76621-6a7c-4c3e-bf1a-01979f930aa9" + "86df0e01-4422-46ee-b6ae-309ce75b2de4" ], "x-ms-correlation-request-id": [ - "74e76621-6a7c-4c3e-bf1a-01979f930aa9" + "86df0e01-4422-46ee-b6ae-309ce75b2de4" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182559Z:74e76621-6a7c-4c3e-bf1a-01979f930aa9" + "WESTUS2:20200730T213430Z:86df0e01-4422-46ee-b6ae-309ce75b2de4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4989,7 +4989,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:25:58 GMT" + "Thu, 30 Jul 2020 21:34:29 GMT" ], "Content-Length": [ "1078" @@ -5001,23 +5001,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"qN0g/ORi6fpYJC71YEauPRvVNh4s1Ty+Rd4th7ujsCQ=\",\r\n \"secondaryKey\": \"GmKhwqAUuPxQTpNVtn53yXkrzWOX2joy85EFfXVESKc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"QsM2CxTcOTA0MTEBNPlaAZvLbQzu48yNHQIeWHS+OzE=\",\r\n \"secondaryKey\": \"HY3c8NMm5qDwIuNhD+HQEdgC8x/L3QylVhiKWxLD17U=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"84G0AQok4gqnHeb0vfapPrCwVJLmqiyzAnj98AlakjU=\",\r\n \"secondaryKey\": \"Znr37zZWpBhF6xyQrB7eO89lUENalmfLyNRqWp5pRCM=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"jcq9Rt7Lhj1KxaxwiHsOGmLCftiAWfrSDNVrje8Z1F0=\",\r\n \"secondaryKey\": \"/oG2Tm7Qx3L/5/Wl/9taUYgKP5MgCLw/qhaFTgSGQ70=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"3LEo2h5K+OW0p8WqDb1THnjlE3HDr3A7flAielHSLjo=\",\r\n \"secondaryKey\": \"ncHKK3rlmOaKGyZmdGdqJhfd5UETUZ0QtAYbvJrnoPg=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"/qetO9yW0iPsNaniGfR8ExSgYFJMuPKpVF3ylNQ16vs=\",\r\n \"secondaryKey\": \"CFHhWishCtL791GbsvrlDE4Dh6HxBzx4jh3kVwz3+5M=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"ortpnJMGwgpMMBZpZdYIbraSSMOM9ue+cxdDNbyvCws=\",\r\n \"secondaryKey\": \"yxRzxXbbp3jJCDD03/BB0SHAUenu5DmX4Br64wYHR3g=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Wba4C3/mAi67Ww/3N8dQYaaczB12v+X/vNn6Rgpv7Os=\",\r\n \"secondaryKey\": \"/CKSKGFMiZjX56+7gSg3AzmgNP012eb4u9InvAjL93A=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"/OlUnZRvcLv6XrKMaVdCIK3WvCoB7/SY/0lDxqk4Zig=\",\r\n \"secondaryKey\": \"q4ki56Tc//WSIKzpy6vxwD08Srxf1kNYIkim1QoM3bo=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"+L8yJ3ig3tfqTFn9+pitdbmFEw84qpKeCxSGaiEyHq4=\",\r\n \"secondaryKey\": \"B/YE8RsanfxrS69PMyPZfgZ8BGONv/p8RFN51tcVe+w=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"ehUDpM6WkQ0eEL9ySYwCzXBt4pmVHz+5DCiZV/Pgd50=\",\r\n \"secondaryKey\": \"/k1sGvRDViSMEmryjmkdn8fo3KXKy64GrIcugsT7o40=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"IYoGyCuTLhZmqHnQp21XaXfumAiwvSrpl5FJJvd7rW4=\",\r\n \"secondaryKey\": \"1UFREkm3HM0XsUBpzxkssAFn7ouaQtra4Cygd2ChxtQ=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTMvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "17091c85-8a6e-44d0-8f99-de8c58eec9f5" + "f58d94ad-2756-4bb6-895e-7ef7ef946d1a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -5037,13 +5037,13 @@ "1191" ], "x-ms-request-id": [ - "9c11efe5-3605-4c21-97a7-7b89cb2d14cf" + "164aa98b-3c5a-4955-9b1e-df98c8da0272" ], "x-ms-correlation-request-id": [ - "9c11efe5-3605-4c21-97a7-7b89cb2d14cf" + "164aa98b-3c5a-4955-9b1e-df98c8da0272" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182559Z:9c11efe5-3605-4c21-97a7-7b89cb2d14cf" + "WESTUS2:20200730T213431Z:164aa98b-3c5a-4955-9b1e-df98c8da0272" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5052,7 +5052,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:25:59 GMT" + "Thu, 30 Jul 2020 21:34:30 GMT" ], "Content-Length": [ "1078" @@ -5064,23 +5064,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"qN0g/ORi6fpYJC71YEauPRvVNh4s1Ty+Rd4th7ujsCQ=\",\r\n \"secondaryKey\": \"GmKhwqAUuPxQTpNVtn53yXkrzWOX2joy85EFfXVESKc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"QsM2CxTcOTA0MTEBNPlaAZvLbQzu48yNHQIeWHS+OzE=\",\r\n \"secondaryKey\": \"HY3c8NMm5qDwIuNhD+HQEdgC8x/L3QylVhiKWxLD17U=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"84G0AQok4gqnHeb0vfapPrCwVJLmqiyzAnj98AlakjU=\",\r\n \"secondaryKey\": \"Znr37zZWpBhF6xyQrB7eO89lUENalmfLyNRqWp5pRCM=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"jcq9Rt7Lhj1KxaxwiHsOGmLCftiAWfrSDNVrje8Z1F0=\",\r\n \"secondaryKey\": \"/oG2Tm7Qx3L/5/Wl/9taUYgKP5MgCLw/qhaFTgSGQ70=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"3LEo2h5K+OW0p8WqDb1THnjlE3HDr3A7flAielHSLjo=\",\r\n \"secondaryKey\": \"ncHKK3rlmOaKGyZmdGdqJhfd5UETUZ0QtAYbvJrnoPg=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"/qetO9yW0iPsNaniGfR8ExSgYFJMuPKpVF3ylNQ16vs=\",\r\n \"secondaryKey\": \"CFHhWishCtL791GbsvrlDE4Dh6HxBzx4jh3kVwz3+5M=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"ortpnJMGwgpMMBZpZdYIbraSSMOM9ue+cxdDNbyvCws=\",\r\n \"secondaryKey\": \"yxRzxXbbp3jJCDD03/BB0SHAUenu5DmX4Br64wYHR3g=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Wba4C3/mAi67Ww/3N8dQYaaczB12v+X/vNn6Rgpv7Os=\",\r\n \"secondaryKey\": \"/CKSKGFMiZjX56+7gSg3AzmgNP012eb4u9InvAjL93A=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"/OlUnZRvcLv6XrKMaVdCIK3WvCoB7/SY/0lDxqk4Zig=\",\r\n \"secondaryKey\": \"q4ki56Tc//WSIKzpy6vxwD08Srxf1kNYIkim1QoM3bo=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"+L8yJ3ig3tfqTFn9+pitdbmFEw84qpKeCxSGaiEyHq4=\",\r\n \"secondaryKey\": \"B/YE8RsanfxrS69PMyPZfgZ8BGONv/p8RFN51tcVe+w=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"ehUDpM6WkQ0eEL9ySYwCzXBt4pmVHz+5DCiZV/Pgd50=\",\r\n \"secondaryKey\": \"/k1sGvRDViSMEmryjmkdn8fo3KXKy64GrIcugsT7o40=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"IYoGyCuTLhZmqHnQp21XaXfumAiwvSrpl5FJJvd7rW4=\",\r\n \"secondaryKey\": \"1UFREkm3HM0XsUBpzxkssAFn7ouaQtra4Cygd2ChxtQ=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTMvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "83515539-2487-4384-b0c2-ff75d308f113" + "b3266849-8410-4f9f-af26-e840923213fb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -5100,13 +5100,13 @@ "1190" ], "x-ms-request-id": [ - "ef1fdb1b-2f93-4941-baa8-6a5f82b628d9" + "7fcb8baa-1fb0-4615-8553-840d5b776115" ], "x-ms-correlation-request-id": [ - "ef1fdb1b-2f93-4941-baa8-6a5f82b628d9" + "7fcb8baa-1fb0-4615-8553-840d5b776115" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182633Z:ef1fdb1b-2f93-4941-baa8-6a5f82b628d9" + "WESTUS2:20200730T213506Z:7fcb8baa-1fb0-4615-8553-840d5b776115" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5115,7 +5115,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:26:32 GMT" + "Thu, 30 Jul 2020 21:35:06 GMT" ], "Content-Length": [ "1078" @@ -5127,23 +5127,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"qN0g/ORi6fpYJC71YEauPRvVNh4s1Ty+Rd4th7ujsCQ=\",\r\n \"secondaryKey\": \"GmKhwqAUuPxQTpNVtn53yXkrzWOX2joy85EFfXVESKc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"QsM2CxTcOTA0MTEBNPlaAZvLbQzu48yNHQIeWHS+OzE=\",\r\n \"secondaryKey\": \"HY3c8NMm5qDwIuNhD+HQEdgC8x/L3QylVhiKWxLD17U=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"84G0AQok4gqnHeb0vfapPrCwVJLmqiyzAnj98AlakjU=\",\r\n \"secondaryKey\": \"Znr37zZWpBhF6xyQrB7eO89lUENalmfLyNRqWp5pRCM=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"jcq9Rt7Lhj1KxaxwiHsOGmLCftiAWfrSDNVrje8Z1F0=\",\r\n \"secondaryKey\": \"/oG2Tm7Qx3L/5/Wl/9taUYgKP5MgCLw/qhaFTgSGQ70=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"3LEo2h5K+OW0p8WqDb1THnjlE3HDr3A7flAielHSLjo=\",\r\n \"secondaryKey\": \"ncHKK3rlmOaKGyZmdGdqJhfd5UETUZ0QtAYbvJrnoPg=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"CFHhWishCtL791GbsvrlDE4Dh6HxBzx4jh3kVwz3+5M=\",\r\n \"secondaryKey\": \"/qetO9yW0iPsNaniGfR8ExSgYFJMuPKpVF3ylNQ16vs=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"ortpnJMGwgpMMBZpZdYIbraSSMOM9ue+cxdDNbyvCws=\",\r\n \"secondaryKey\": \"yxRzxXbbp3jJCDD03/BB0SHAUenu5DmX4Br64wYHR3g=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Wba4C3/mAi67Ww/3N8dQYaaczB12v+X/vNn6Rgpv7Os=\",\r\n \"secondaryKey\": \"/CKSKGFMiZjX56+7gSg3AzmgNP012eb4u9InvAjL93A=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"/OlUnZRvcLv6XrKMaVdCIK3WvCoB7/SY/0lDxqk4Zig=\",\r\n \"secondaryKey\": \"q4ki56Tc//WSIKzpy6vxwD08Srxf1kNYIkim1QoM3bo=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"+L8yJ3ig3tfqTFn9+pitdbmFEw84qpKeCxSGaiEyHq4=\",\r\n \"secondaryKey\": \"B/YE8RsanfxrS69PMyPZfgZ8BGONv/p8RFN51tcVe+w=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"ehUDpM6WkQ0eEL9ySYwCzXBt4pmVHz+5DCiZV/Pgd50=\",\r\n \"secondaryKey\": \"/k1sGvRDViSMEmryjmkdn8fo3KXKy64GrIcugsT7o40=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"1UFREkm3HM0XsUBpzxkssAFn7ouaQtra4Cygd2ChxtQ=\",\r\n \"secondaryKey\": \"IYoGyCuTLhZmqHnQp21XaXfumAiwvSrpl5FJJvd7rW4=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTMvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f67cdfd5-332f-4f0a-b340-4ef11120038f" + "e02f7a5b-3dae-4927-932e-5fcee6129a1e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -5163,13 +5163,13 @@ "1188" ], "x-ms-request-id": [ - "b4299964-eea3-4808-92d0-0fd7eaa659d6" + "08020387-1dd4-4ded-81cc-5da8b157b749" ], "x-ms-correlation-request-id": [ - "b4299964-eea3-4808-92d0-0fd7eaa659d6" + "08020387-1dd4-4ded-81cc-5da8b157b749" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182634Z:b4299964-eea3-4808-92d0-0fd7eaa659d6" + "WESTUS2:20200730T213507Z:08020387-1dd4-4ded-81cc-5da8b157b749" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5178,7 +5178,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:26:33 GMT" + "Thu, 30 Jul 2020 21:35:07 GMT" ], "Content-Length": [ "1078" @@ -5190,23 +5190,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"qN0g/ORi6fpYJC71YEauPRvVNh4s1Ty+Rd4th7ujsCQ=\",\r\n \"secondaryKey\": \"GmKhwqAUuPxQTpNVtn53yXkrzWOX2joy85EFfXVESKc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"QsM2CxTcOTA0MTEBNPlaAZvLbQzu48yNHQIeWHS+OzE=\",\r\n \"secondaryKey\": \"HY3c8NMm5qDwIuNhD+HQEdgC8x/L3QylVhiKWxLD17U=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"84G0AQok4gqnHeb0vfapPrCwVJLmqiyzAnj98AlakjU=\",\r\n \"secondaryKey\": \"Znr37zZWpBhF6xyQrB7eO89lUENalmfLyNRqWp5pRCM=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"jcq9Rt7Lhj1KxaxwiHsOGmLCftiAWfrSDNVrje8Z1F0=\",\r\n \"secondaryKey\": \"/oG2Tm7Qx3L/5/Wl/9taUYgKP5MgCLw/qhaFTgSGQ70=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"3LEo2h5K+OW0p8WqDb1THnjlE3HDr3A7flAielHSLjo=\",\r\n \"secondaryKey\": \"ncHKK3rlmOaKGyZmdGdqJhfd5UETUZ0QtAYbvJrnoPg=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"CFHhWishCtL791GbsvrlDE4Dh6HxBzx4jh3kVwz3+5M=\",\r\n \"secondaryKey\": \"/qetO9yW0iPsNaniGfR8ExSgYFJMuPKpVF3ylNQ16vs=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"ortpnJMGwgpMMBZpZdYIbraSSMOM9ue+cxdDNbyvCws=\",\r\n \"secondaryKey\": \"yxRzxXbbp3jJCDD03/BB0SHAUenu5DmX4Br64wYHR3g=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Wba4C3/mAi67Ww/3N8dQYaaczB12v+X/vNn6Rgpv7Os=\",\r\n \"secondaryKey\": \"/CKSKGFMiZjX56+7gSg3AzmgNP012eb4u9InvAjL93A=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"/OlUnZRvcLv6XrKMaVdCIK3WvCoB7/SY/0lDxqk4Zig=\",\r\n \"secondaryKey\": \"q4ki56Tc//WSIKzpy6vxwD08Srxf1kNYIkim1QoM3bo=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"+L8yJ3ig3tfqTFn9+pitdbmFEw84qpKeCxSGaiEyHq4=\",\r\n \"secondaryKey\": \"B/YE8RsanfxrS69PMyPZfgZ8BGONv/p8RFN51tcVe+w=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"ehUDpM6WkQ0eEL9ySYwCzXBt4pmVHz+5DCiZV/Pgd50=\",\r\n \"secondaryKey\": \"/k1sGvRDViSMEmryjmkdn8fo3KXKy64GrIcugsT7o40=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"1UFREkm3HM0XsUBpzxkssAFn7ouaQtra4Cygd2ChxtQ=\",\r\n \"secondaryKey\": \"IYoGyCuTLhZmqHnQp21XaXfumAiwvSrpl5FJJvd7rW4=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTMvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0e3bc581-f6f9-4fe0-b804-d9ed6545f99d" + "4dd74e68-ca71-4263-b73d-acf7a898119a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -5226,13 +5226,13 @@ "1187" ], "x-ms-request-id": [ - "065f4919-b60a-4e82-9186-7f9bf8a0dd24" + "48102da2-7b55-4d5c-b25f-11fbe1613c47" ], "x-ms-correlation-request-id": [ - "065f4919-b60a-4e82-9186-7f9bf8a0dd24" + "48102da2-7b55-4d5c-b25f-11fbe1613c47" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182708Z:065f4919-b60a-4e82-9186-7f9bf8a0dd24" + "WESTUS2:20200730T213541Z:48102da2-7b55-4d5c-b25f-11fbe1613c47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5241,7 +5241,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:27:07 GMT" + "Thu, 30 Jul 2020 21:35:41 GMT" ], "Content-Length": [ "1078" @@ -5253,23 +5253,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"qN0g/ORi6fpYJC71YEauPRvVNh4s1Ty+Rd4th7ujsCQ=\",\r\n \"secondaryKey\": \"GmKhwqAUuPxQTpNVtn53yXkrzWOX2joy85EFfXVESKc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"QsM2CxTcOTA0MTEBNPlaAZvLbQzu48yNHQIeWHS+OzE=\",\r\n \"secondaryKey\": \"HY3c8NMm5qDwIuNhD+HQEdgC8x/L3QylVhiKWxLD17U=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"84G0AQok4gqnHeb0vfapPrCwVJLmqiyzAnj98AlakjU=\",\r\n \"secondaryKey\": \"Znr37zZWpBhF6xyQrB7eO89lUENalmfLyNRqWp5pRCM=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"jcq9Rt7Lhj1KxaxwiHsOGmLCftiAWfrSDNVrje8Z1F0=\",\r\n \"secondaryKey\": \"/oG2Tm7Qx3L/5/Wl/9taUYgKP5MgCLw/qhaFTgSGQ70=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"3LEo2h5K+OW0p8WqDb1THnjlE3HDr3A7flAielHSLjo=\",\r\n \"secondaryKey\": \"ncHKK3rlmOaKGyZmdGdqJhfd5UETUZ0QtAYbvJrnoPg=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"NtYfNHkj48gY28cL5MugrcxeC8gvcdF5SvjKaEKDzM0=\",\r\n \"secondaryKey\": \"/qetO9yW0iPsNaniGfR8ExSgYFJMuPKpVF3ylNQ16vs=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"ortpnJMGwgpMMBZpZdYIbraSSMOM9ue+cxdDNbyvCws=\",\r\n \"secondaryKey\": \"yxRzxXbbp3jJCDD03/BB0SHAUenu5DmX4Br64wYHR3g=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Wba4C3/mAi67Ww/3N8dQYaaczB12v+X/vNn6Rgpv7Os=\",\r\n \"secondaryKey\": \"/CKSKGFMiZjX56+7gSg3AzmgNP012eb4u9InvAjL93A=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"/OlUnZRvcLv6XrKMaVdCIK3WvCoB7/SY/0lDxqk4Zig=\",\r\n \"secondaryKey\": \"q4ki56Tc//WSIKzpy6vxwD08Srxf1kNYIkim1QoM3bo=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"+L8yJ3ig3tfqTFn9+pitdbmFEw84qpKeCxSGaiEyHq4=\",\r\n \"secondaryKey\": \"B/YE8RsanfxrS69PMyPZfgZ8BGONv/p8RFN51tcVe+w=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"ehUDpM6WkQ0eEL9ySYwCzXBt4pmVHz+5DCiZV/Pgd50=\",\r\n \"secondaryKey\": \"/k1sGvRDViSMEmryjmkdn8fo3KXKy64GrIcugsT7o40=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"yRqTSd/L+ZN4nRKdHnEcOeBUxU0cs3FG82TRbPU2pa4=\",\r\n \"secondaryKey\": \"IYoGyCuTLhZmqHnQp21XaXfumAiwvSrpl5FJJvd7rW4=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTMvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "03d27fe3-c695-4f62-a896-a57c48717008" + "66c45ae8-9e38-43bc-8301-daca8b58efa0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -5289,13 +5289,13 @@ "1185" ], "x-ms-request-id": [ - "ecbdbc23-408c-4eba-9489-b292cba983e9" + "72aef434-b8b9-45e6-a18c-371db980b364" ], "x-ms-correlation-request-id": [ - "ecbdbc23-408c-4eba-9489-b292cba983e9" + "72aef434-b8b9-45e6-a18c-371db980b364" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182709Z:ecbdbc23-408c-4eba-9489-b292cba983e9" + "WESTUS2:20200730T213542Z:72aef434-b8b9-45e6-a18c-371db980b364" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5304,7 +5304,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:27:08 GMT" + "Thu, 30 Jul 2020 21:35:42 GMT" ], "Content-Length": [ "1078" @@ -5316,23 +5316,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"qN0g/ORi6fpYJC71YEauPRvVNh4s1Ty+Rd4th7ujsCQ=\",\r\n \"secondaryKey\": \"GmKhwqAUuPxQTpNVtn53yXkrzWOX2joy85EFfXVESKc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"QsM2CxTcOTA0MTEBNPlaAZvLbQzu48yNHQIeWHS+OzE=\",\r\n \"secondaryKey\": \"HY3c8NMm5qDwIuNhD+HQEdgC8x/L3QylVhiKWxLD17U=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"84G0AQok4gqnHeb0vfapPrCwVJLmqiyzAnj98AlakjU=\",\r\n \"secondaryKey\": \"Znr37zZWpBhF6xyQrB7eO89lUENalmfLyNRqWp5pRCM=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"jcq9Rt7Lhj1KxaxwiHsOGmLCftiAWfrSDNVrje8Z1F0=\",\r\n \"secondaryKey\": \"/oG2Tm7Qx3L/5/Wl/9taUYgKP5MgCLw/qhaFTgSGQ70=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"3LEo2h5K+OW0p8WqDb1THnjlE3HDr3A7flAielHSLjo=\",\r\n \"secondaryKey\": \"ncHKK3rlmOaKGyZmdGdqJhfd5UETUZ0QtAYbvJrnoPg=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"NtYfNHkj48gY28cL5MugrcxeC8gvcdF5SvjKaEKDzM0=\",\r\n \"secondaryKey\": \"/qetO9yW0iPsNaniGfR8ExSgYFJMuPKpVF3ylNQ16vs=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"ortpnJMGwgpMMBZpZdYIbraSSMOM9ue+cxdDNbyvCws=\",\r\n \"secondaryKey\": \"yxRzxXbbp3jJCDD03/BB0SHAUenu5DmX4Br64wYHR3g=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Wba4C3/mAi67Ww/3N8dQYaaczB12v+X/vNn6Rgpv7Os=\",\r\n \"secondaryKey\": \"/CKSKGFMiZjX56+7gSg3AzmgNP012eb4u9InvAjL93A=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"/OlUnZRvcLv6XrKMaVdCIK3WvCoB7/SY/0lDxqk4Zig=\",\r\n \"secondaryKey\": \"q4ki56Tc//WSIKzpy6vxwD08Srxf1kNYIkim1QoM3bo=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"+L8yJ3ig3tfqTFn9+pitdbmFEw84qpKeCxSGaiEyHq4=\",\r\n \"secondaryKey\": \"B/YE8RsanfxrS69PMyPZfgZ8BGONv/p8RFN51tcVe+w=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"ehUDpM6WkQ0eEL9ySYwCzXBt4pmVHz+5DCiZV/Pgd50=\",\r\n \"secondaryKey\": \"/k1sGvRDViSMEmryjmkdn8fo3KXKy64GrIcugsT7o40=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"yRqTSd/L+ZN4nRKdHnEcOeBUxU0cs3FG82TRbPU2pa4=\",\r\n \"secondaryKey\": \"IYoGyCuTLhZmqHnQp21XaXfumAiwvSrpl5FJJvd7rW4=\",\r\n \"rights\": \"RegistryRead\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTMvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e8775b41-4ff8-4391-a5ea-aaac4e34823a" + "b152edd1-64b4-4db5-ac34-c4fac77d2515" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -5352,13 +5352,13 @@ "1184" ], "x-ms-request-id": [ - "bf10e1fa-a3c5-4c74-860b-d5c9ec428d08" + "684f10ca-9545-438b-8b19-52931870898b" ], "x-ms-correlation-request-id": [ - "bf10e1fa-a3c5-4c74-860b-d5c9ec428d08" + "684f10ca-9545-438b-8b19-52931870898b" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182743Z:bf10e1fa-a3c5-4c74-860b-d5c9ec428d08" + "WESTUS2:20200730T213616Z:684f10ca-9545-438b-8b19-52931870898b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5367,7 +5367,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:27:43 GMT" + "Thu, 30 Jul 2020 21:36:16 GMT" ], "Content-Length": [ "905" @@ -5379,23 +5379,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"qN0g/ORi6fpYJC71YEauPRvVNh4s1Ty+Rd4th7ujsCQ=\",\r\n \"secondaryKey\": \"GmKhwqAUuPxQTpNVtn53yXkrzWOX2joy85EFfXVESKc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"QsM2CxTcOTA0MTEBNPlaAZvLbQzu48yNHQIeWHS+OzE=\",\r\n \"secondaryKey\": \"HY3c8NMm5qDwIuNhD+HQEdgC8x/L3QylVhiKWxLD17U=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"84G0AQok4gqnHeb0vfapPrCwVJLmqiyzAnj98AlakjU=\",\r\n \"secondaryKey\": \"Znr37zZWpBhF6xyQrB7eO89lUENalmfLyNRqWp5pRCM=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"jcq9Rt7Lhj1KxaxwiHsOGmLCftiAWfrSDNVrje8Z1F0=\",\r\n \"secondaryKey\": \"/oG2Tm7Qx3L/5/Wl/9taUYgKP5MgCLw/qhaFTgSGQ70=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"3LEo2h5K+OW0p8WqDb1THnjlE3HDr3A7flAielHSLjo=\",\r\n \"secondaryKey\": \"ncHKK3rlmOaKGyZmdGdqJhfd5UETUZ0QtAYbvJrnoPg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"ortpnJMGwgpMMBZpZdYIbraSSMOM9ue+cxdDNbyvCws=\",\r\n \"secondaryKey\": \"yxRzxXbbp3jJCDD03/BB0SHAUenu5DmX4Br64wYHR3g=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Wba4C3/mAi67Ww/3N8dQYaaczB12v+X/vNn6Rgpv7Os=\",\r\n \"secondaryKey\": \"/CKSKGFMiZjX56+7gSg3AzmgNP012eb4u9InvAjL93A=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"/OlUnZRvcLv6XrKMaVdCIK3WvCoB7/SY/0lDxqk4Zig=\",\r\n \"secondaryKey\": \"q4ki56Tc//WSIKzpy6vxwD08Srxf1kNYIkim1QoM3bo=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"+L8yJ3ig3tfqTFn9+pitdbmFEw84qpKeCxSGaiEyHq4=\",\r\n \"secondaryKey\": \"B/YE8RsanfxrS69PMyPZfgZ8BGONv/p8RFN51tcVe+w=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"ehUDpM6WkQ0eEL9ySYwCzXBt4pmVHz+5DCiZV/Pgd50=\",\r\n \"secondaryKey\": \"/k1sGvRDViSMEmryjmkdn8fo3KXKy64GrIcugsT7o40=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTMvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f803d71a-c44b-40b8-b413-a1b8985e8322" + "70dde20e-e6d8-4d78-8b62-e2bcbda07ec2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -5415,13 +5415,13 @@ "1183" ], "x-ms-request-id": [ - "dc87d6ae-44c6-4676-aa95-94ae299b863c" + "ac4a28cf-4afe-4f70-bbd2-74081f47470a" ], "x-ms-correlation-request-id": [ - "dc87d6ae-44c6-4676-aa95-94ae299b863c" + "ac4a28cf-4afe-4f70-bbd2-74081f47470a" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182743Z:dc87d6ae-44c6-4676-aa95-94ae299b863c" + "WESTUS2:20200730T213616Z:ac4a28cf-4afe-4f70-bbd2-74081f47470a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5430,7 +5430,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:27:43 GMT" + "Thu, 30 Jul 2020 21:36:16 GMT" ], "Content-Length": [ "905" @@ -5442,23 +5442,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"qN0g/ORi6fpYJC71YEauPRvVNh4s1Ty+Rd4th7ujsCQ=\",\r\n \"secondaryKey\": \"GmKhwqAUuPxQTpNVtn53yXkrzWOX2joy85EFfXVESKc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"QsM2CxTcOTA0MTEBNPlaAZvLbQzu48yNHQIeWHS+OzE=\",\r\n \"secondaryKey\": \"HY3c8NMm5qDwIuNhD+HQEdgC8x/L3QylVhiKWxLD17U=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"84G0AQok4gqnHeb0vfapPrCwVJLmqiyzAnj98AlakjU=\",\r\n \"secondaryKey\": \"Znr37zZWpBhF6xyQrB7eO89lUENalmfLyNRqWp5pRCM=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"jcq9Rt7Lhj1KxaxwiHsOGmLCftiAWfrSDNVrje8Z1F0=\",\r\n \"secondaryKey\": \"/oG2Tm7Qx3L/5/Wl/9taUYgKP5MgCLw/qhaFTgSGQ70=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"3LEo2h5K+OW0p8WqDb1THnjlE3HDr3A7flAielHSLjo=\",\r\n \"secondaryKey\": \"ncHKK3rlmOaKGyZmdGdqJhfd5UETUZ0QtAYbvJrnoPg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"ortpnJMGwgpMMBZpZdYIbraSSMOM9ue+cxdDNbyvCws=\",\r\n \"secondaryKey\": \"yxRzxXbbp3jJCDD03/BB0SHAUenu5DmX4Br64wYHR3g=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Wba4C3/mAi67Ww/3N8dQYaaczB12v+X/vNn6Rgpv7Os=\",\r\n \"secondaryKey\": \"/CKSKGFMiZjX56+7gSg3AzmgNP012eb4u9InvAjL93A=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"/OlUnZRvcLv6XrKMaVdCIK3WvCoB7/SY/0lDxqk4Zig=\",\r\n \"secondaryKey\": \"q4ki56Tc//WSIKzpy6vxwD08Srxf1kNYIkim1QoM3bo=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"+L8yJ3ig3tfqTFn9+pitdbmFEw84qpKeCxSGaiEyHq4=\",\r\n \"secondaryKey\": \"B/YE8RsanfxrS69PMyPZfgZ8BGONv/p8RFN51tcVe+w=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"ehUDpM6WkQ0eEL9ySYwCzXBt4pmVHz+5DCiZV/Pgd50=\",\r\n \"secondaryKey\": \"/k1sGvRDViSMEmryjmkdn8fo3KXKy64GrIcugsT7o40=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545/IotHubKeys/iothubowner/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDUvSW90SHViS2V5cy9pb3RodWJvd25lci9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713/IotHubKeys/iothubowner/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTMvSW90SHViS2V5cy9pb3RodWJvd25lci9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cf6757ed-d8b7-46f2-bd40-e3d705594853" + "b9f30bfe-8985-40ee-87c7-41953152f06d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -5478,13 +5478,13 @@ "1198" ], "x-ms-request-id": [ - "65269072-f87c-434e-9cc1-57f8a95501b5" + "5f08c48f-4ea4-4c55-9303-f8ed5b79f8d7" ], "x-ms-correlation-request-id": [ - "65269072-f87c-434e-9cc1-57f8a95501b5" + "5f08c48f-4ea4-4c55-9303-f8ed5b79f8d7" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182519Z:65269072-f87c-434e-9cc1-57f8a95501b5" + "WESTUS2:20200730T213320Z:5f08c48f-4ea4-4c55-9303-f8ed5b79f8d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5493,7 +5493,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:25:18 GMT" + "Thu, 30 Jul 2020 21:33:19 GMT" ], "Content-Length": [ "203" @@ -5505,23 +5505,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"qN0g/ORi6fpYJC71YEauPRvVNh4s1Ty+Rd4th7ujsCQ=\",\r\n \"secondaryKey\": \"GmKhwqAUuPxQTpNVtn53yXkrzWOX2joy85EFfXVESKc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n}", + "ResponseBody": "{\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"ortpnJMGwgpMMBZpZdYIbraSSMOM9ue+cxdDNbyvCws=\",\r\n \"secondaryKey\": \"yxRzxXbbp3jJCDD03/BB0SHAUenu5DmX4Br64wYHR3g=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545/IotHubKeys/iothubowner/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDUvSW90SHViS2V5cy9pb3RodWJvd25lci9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713/IotHubKeys/iothubowner/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTMvSW90SHViS2V5cy9pb3RodWJvd25lci9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "89c139a8-1868-4b29-ba0c-17c3829b2768" + "8ac8d5a5-c881-4ff0-92d8-16f70d907197" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -5541,13 +5541,13 @@ "1196" ], "x-ms-request-id": [ - "981f778e-a215-4cca-84d5-ff96974c723c" + "7601e1d6-f8bf-4e8c-8567-6a05e40913f9" ], "x-ms-correlation-request-id": [ - "981f778e-a215-4cca-84d5-ff96974c723c" + "7601e1d6-f8bf-4e8c-8567-6a05e40913f9" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182521Z:981f778e-a215-4cca-84d5-ff96974c723c" + "WESTUS2:20200730T213321Z:7601e1d6-f8bf-4e8c-8567-6a05e40913f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5556,7 +5556,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:25:20 GMT" + "Thu, 30 Jul 2020 21:33:20 GMT" ], "Content-Length": [ "203" @@ -5568,23 +5568,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"qN0g/ORi6fpYJC71YEauPRvVNh4s1Ty+Rd4th7ujsCQ=\",\r\n \"secondaryKey\": \"GmKhwqAUuPxQTpNVtn53yXkrzWOX2joy85EFfXVESKc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n}", + "ResponseBody": "{\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"ortpnJMGwgpMMBZpZdYIbraSSMOM9ue+cxdDNbyvCws=\",\r\n \"secondaryKey\": \"yxRzxXbbp3jJCDD03/BB0SHAUenu5DmX4Br64wYHR3g=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545/eventHubEndpoints/events/ConsumerGroups/cg1?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDUvZXZlbnRIdWJFbmRwb2ludHMvZXZlbnRzL0NvbnN1bWVyR3JvdXBzL2NnMT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713/eventHubEndpoints/events/ConsumerGroups/cg1?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTMvZXZlbnRIdWJFbmRwb2ludHMvZXZlbnRzL0NvbnN1bWVyR3JvdXBzL2NnMT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5915ad2a-efb3-4fcc-b747-347602717456" + "04ae24c3-744f-4a45-9b29-99b43f92fc3d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -5604,13 +5604,13 @@ "1199" ], "x-ms-request-id": [ - "c2e27c04-784a-4f97-9993-423a02bd1934" + "326ada5e-3e15-43e3-b350-a37d5950d2e4" ], "x-ms-correlation-request-id": [ - "c2e27c04-784a-4f97-9993-423a02bd1934" + "326ada5e-3e15-43e3-b350-a37d5950d2e4" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182522Z:c2e27c04-784a-4f97-9993-423a02bd1934" + "WESTUS2:20200730T213322Z:326ada5e-3e15-43e3-b350-a37d5950d2e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5619,7 +5619,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:25:22 GMT" + "Thu, 30 Jul 2020 21:33:22 GMT" ], "Content-Length": [ "319" @@ -5631,23 +5631,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"created\": \"Tue, 16 Jun 2020 18:25:22 GMT\"\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545/eventHubEndpoints/events/ConsumerGroups/cg1\",\r\n \"name\": \"cg1\",\r\n \"type\": \"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups\",\r\n \"etag\": null\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"created\": \"Thu, 30 Jul 2020 21:33:22 GMT\"\r\n },\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713/eventHubEndpoints/events/ConsumerGroups/cg1\",\r\n \"name\": \"cg1\",\r\n \"type\": \"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups\",\r\n \"etag\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545/eventHubEndpoints/events/ConsumerGroups/cg1?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDUvZXZlbnRIdWJFbmRwb2ludHMvZXZlbnRzL0NvbnN1bWVyR3JvdXBzL2NnMT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713/eventHubEndpoints/events/ConsumerGroups/cg1?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTMvZXZlbnRIdWJFbmRwb2ludHMvZXZlbnRzL0NvbnN1bWVyR3JvdXBzL2NnMT9hcGktdmVyc2lvbj0yMDE5LTA3LTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "16591711-6178-4037-85e6-0a35cdab9fa0" + "03a29fb7-3ace-4317-8fec-9a610f9d9733" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -5667,13 +5667,13 @@ "14999" ], "x-ms-request-id": [ - "5da0803b-3cf8-47dc-92e2-36cc2a1701d5" + "6a178aa2-c675-4770-a8ae-c413f125c467" ], "x-ms-correlation-request-id": [ - "5da0803b-3cf8-47dc-92e2-36cc2a1701d5" + "6a178aa2-c675-4770-a8ae-c413f125c467" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182523Z:5da0803b-3cf8-47dc-92e2-36cc2a1701d5" + "WESTUS2:20200730T213323Z:6a178aa2-c675-4770-a8ae-c413f125c467" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5682,7 +5682,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:25:22 GMT" + "Thu, 30 Jul 2020 21:33:22 GMT" ], "Expires": [ "-1" @@ -5695,13 +5695,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNmRjMWJlNjAtZTVmNS00NmMwLTlmODYtY2EyMTAyZWNkMTk3?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTm1Sak1XSmxOakF0WlRWbU5TMDBObU13TFRsbU9EWXRZMkV5TVRBeVpXTmtNVGszP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMzc3MTE1OTEtZjgwMy00OTc3LWI2NzAtZjBjZTNkZjJjYmQx?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTXpjM01URTFPVEV0Wmpnd015MDBPVGMzTFdJMk56QXRaakJqWlROa1pqSmpZbVF4P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -5718,16 +5718,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11976" ], "x-ms-request-id": [ - "f7c74cd3-1ae7-4bfd-bc9a-09a606dca063" + "a04a60e8-1c66-4094-a72d-885a76eac0e1" ], "x-ms-correlation-request-id": [ - "f7c74cd3-1ae7-4bfd-bc9a-09a606dca063" + "a04a60e8-1c66-4094-a72d-885a76eac0e1" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182558Z:f7c74cd3-1ae7-4bfd-bc9a-09a606dca063" + "WESTUS2:20200730T213359Z:a04a60e8-1c66-4094-a72d-885a76eac0e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5736,10 +5736,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:25:57 GMT" + "Thu, 30 Jul 2020 21:33:59 GMT" ], "Content-Length": [ - "22" + "20" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5748,23 +5748,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545/IotHubKeys/iothubowner1/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDUvSW90SHViS2V5cy9pb3RodWJvd25lcjEvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMzc3MTE1OTEtZjgwMy00OTc3LWI2NzAtZjBjZTNkZjJjYmQx?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTXpjM01URTFPVEV0Wmpnd015MDBPVGMzTFdJMk56QXRaakJqWlROa1pqSmpZbVF4P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "170bb9bb-0668-4220-a3eb-5a72d66e8fc2" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -5780,17 +5774,17 @@ "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" ], "x-ms-request-id": [ - "6b78e3ba-eab6-4f5c-96e2-711f01fcdc7b" + "bc2db791-5e19-4531-8c58-eb50896094ac" ], "x-ms-correlation-request-id": [ - "6b78e3ba-eab6-4f5c-96e2-711f01fcdc7b" + "bc2db791-5e19-4531-8c58-eb50896094ac" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182559Z:6b78e3ba-eab6-4f5c-96e2-711f01fcdc7b" + "WESTUS2:20200730T213429Z:bc2db791-5e19-4531-8c58-eb50896094ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5799,10 +5793,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:25:58 GMT" + "Thu, 30 Jul 2020 21:34:28 GMT" ], "Content-Length": [ - "172" + "22" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5811,23 +5805,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"/qetO9yW0iPsNaniGfR8ExSgYFJMuPKpVF3ylNQ16vs=\",\r\n \"secondaryKey\": \"CFHhWishCtL791GbsvrlDE4Dh6HxBzx4jh3kVwz3+5M=\",\r\n \"rights\": \"RegistryRead\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545/IotHubKeys/iothubowner1/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDUvSW90SHViS2V5cy9pb3RodWJvd25lcjEvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713/IotHubKeys/iothubowner1/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTMvSW90SHViS2V5cy9pb3RodWJvd25lcjEvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "10143653-6fe2-4e71-9558-6b2d73317fa4" + "860bf684-c5ff-4ca6-81a2-6e68c57d6729" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -5844,16 +5838,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1192" ], "x-ms-request-id": [ - "ced8fdd5-0bee-4086-aa82-c1b5d66dabba" + "501e95e8-6ef4-407a-bf85-6b3df3f73777" ], "x-ms-correlation-request-id": [ - "ced8fdd5-0bee-4086-aa82-c1b5d66dabba" + "501e95e8-6ef4-407a-bf85-6b3df3f73777" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182633Z:ced8fdd5-0bee-4086-aa82-c1b5d66dabba" + "WESTUS2:20200730T213430Z:501e95e8-6ef4-407a-bf85-6b3df3f73777" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5862,7 +5856,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:26:32 GMT" + "Thu, 30 Jul 2020 21:34:29 GMT" ], "Content-Length": [ "172" @@ -5874,23 +5868,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"CFHhWishCtL791GbsvrlDE4Dh6HxBzx4jh3kVwz3+5M=\",\r\n \"secondaryKey\": \"/qetO9yW0iPsNaniGfR8ExSgYFJMuPKpVF3ylNQ16vs=\",\r\n \"rights\": \"RegistryRead\"\r\n}", + "ResponseBody": "{\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"IYoGyCuTLhZmqHnQp21XaXfumAiwvSrpl5FJJvd7rW4=\",\r\n \"secondaryKey\": \"1UFREkm3HM0XsUBpzxkssAFn7ouaQtra4Cygd2ChxtQ=\",\r\n \"rights\": \"RegistryRead\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545/IotHubKeys/iothubowner1/listkeys?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDUvSW90SHViS2V5cy9pb3RodWJvd25lcjEvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713/IotHubKeys/iothubowner1/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTMvSW90SHViS2V5cy9pb3RodWJvd25lcjEvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "24d4eb09-4f15-470b-8d53-d48e72325508" + "ffd45601-f3ce-4eb5-a713-44a82ac9c315" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -5907,16 +5901,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1189" ], "x-ms-request-id": [ - "cdb78509-570b-43f0-8ad9-ea1ca0314215" + "712930b3-85f3-40ae-bcf8-2f518092fd1a" ], "x-ms-correlation-request-id": [ - "cdb78509-570b-43f0-8ad9-ea1ca0314215" + "712930b3-85f3-40ae-bcf8-2f518092fd1a" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182708Z:cdb78509-570b-43f0-8ad9-ea1ca0314215" + "WESTUS2:20200730T213507Z:712930b3-85f3-40ae-bcf8-2f518092fd1a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5925,7 +5919,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:27:08 GMT" + "Thu, 30 Jul 2020 21:35:06 GMT" ], "Content-Length": [ "172" @@ -5937,17 +5931,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"NtYfNHkj48gY28cL5MugrcxeC8gvcdF5SvjKaEKDzM0=\",\r\n \"secondaryKey\": \"/qetO9yW0iPsNaniGfR8ExSgYFJMuPKpVF3ylNQ16vs=\",\r\n \"rights\": \"RegistryRead\"\r\n}", + "ResponseBody": "{\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"1UFREkm3HM0XsUBpzxkssAFn7ouaQtra4Cygd2ChxtQ=\",\r\n \"secondaryKey\": \"IYoGyCuTLhZmqHnQp21XaXfumAiwvSrpl5FJJvd7rW4=\",\r\n \"rights\": \"RegistryRead\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfODk4OGRlYzgtZThmNy00Y2U5LWJmZWItNGQwZDliMzEwYzJm?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmT0RrNE9HUmxZemd0WlRobU55MDBZMlU1TFdKbVpXSXROR1F3WkRsaU16RXdZekptP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713/IotHubKeys/iothubowner1/listkeys?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTMvSW90SHViS2V5cy9pb3RodWJvd25lcjEvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "39b7d6fe-6f1e-4ccd-8807-2bfc72fa7a58" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -5963,17 +5963,17 @@ "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1186" ], "x-ms-request-id": [ - "fe5b9d85-da4b-4fc3-922c-ce6324cc4a86" + "6816f6b4-7444-4f5e-9fd0-ef1f094d5ba0" ], "x-ms-correlation-request-id": [ - "fe5b9d85-da4b-4fc3-922c-ce6324cc4a86" + "6816f6b4-7444-4f5e-9fd0-ef1f094d5ba0" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182632Z:fe5b9d85-da4b-4fc3-922c-ce6324cc4a86" + "WESTUS2:20200730T213542Z:6816f6b4-7444-4f5e-9fd0-ef1f094d5ba0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5982,10 +5982,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:26:32 GMT" + "Thu, 30 Jul 2020 21:35:41 GMT" ], "Content-Length": [ - "22" + "172" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5994,17 +5994,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"keyName\": \"iothubowner1\",\r\n \"primaryKey\": \"yRqTSd/L+ZN4nRKdHnEcOeBUxU0cs3FG82TRbPU2pa4=\",\r\n \"secondaryKey\": \"IYoGyCuTLhZmqHnQp21XaXfumAiwvSrpl5FJJvd7rW4=\",\r\n \"rights\": \"RegistryRead\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNGFhZDU5MjYtNjQ2MC00ZDdmLWFmMjctOTIzZGVmZTMyODQz?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkdGaFpEVTVNall0TmpRMk1DMDBaRGRtTFdGbU1qY3RPVEl6WkdWbVpUTXlPRFF6P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfOTFmYjcwOTAtMWRiZS00OTllLTlkMTEtZDAxMzIyYTdhM2Nh?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmT1RGbVlqY3dPVEF0TVdSaVpTMDBPVGxsTFRsa01URXRaREF4TXpJeVlUZGhNMk5oP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -6018,19 +6018,19 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11972" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "b1d5350d-dd31-4b2c-a90f-984938fc5606" + "0e155372-cf3d-4be2-beeb-d1bb99f08e1b" ], "x-ms-correlation-request-id": [ - "b1d5350d-dd31-4b2c-a90f-984938fc5606" + "0e155372-cf3d-4be2-beeb-d1bb99f08e1b" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182707Z:b1d5350d-dd31-4b2c-a90f-984938fc5606" + "WESTUS2:20200730T213506Z:0e155372-cf3d-4be2-beeb-d1bb99f08e1b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6039,7 +6039,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:27:07 GMT" + "Thu, 30 Jul 2020 21:35:05 GMT" ], "Content-Length": [ "22" @@ -6055,13 +6055,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMGQwNTZhOWItOTkxOC00ZjA5LWJmOTUtNzU0YmVkMjhjNmFh?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTUdRd05UWmhPV0l0T1RreE9DMDBaakE1TFdKbU9UVXROelUwWW1Wa01qaGpObUZoP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMjMxM2E1MjYtNDNjMy00NTMzLWI5MGQtNmYwNzUwMzVhOGVk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTWpNeE0yRTFNall0TkROak15MDBOVE16TFdJNU1HUXRObVl3TnpVd016VmhPR1ZrP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -6078,16 +6078,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11969" ], "x-ms-request-id": [ - "944d92f3-4824-4900-a8c2-65ffc24363ea" + "9e036a7a-34d0-43bb-a018-e1223e8570b7" ], "x-ms-correlation-request-id": [ - "944d92f3-4824-4900-a8c2-65ffc24363ea" + "9e036a7a-34d0-43bb-a018-e1223e8570b7" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182742Z:944d92f3-4824-4900-a8c2-65ffc24363ea" + "WESTUS2:20200730T213541Z:9e036a7a-34d0-43bb-a018-e1223e8570b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6096,7 +6096,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:27:41 GMT" + "Thu, 30 Jul 2020 21:35:40 GMT" ], "Content-Length": [ "22" @@ -6112,13 +6112,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMzc1MzRmMmItYmViMS00YmJkLTkzYTMtZmJmNGUzNzlhODJl?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTXpjMU16Um1NbUl0WW1WaU1TMDBZbUprTFRrellUTXRabUptTkdVek56bGhPREpsP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMTlmZTMyOWUtYzU5MS00OGNlLWIwYTgtMGM2YjMyZDZiYTVm?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTVRsbVpUTXlPV1V0WXpVNU1TMDBPR05sTFdJd1lUZ3RNR00yWWpNeVpEWmlZVFZtP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -6135,16 +6135,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11966" ], "x-ms-request-id": [ - "14717430-d553-48cb-ab0a-cd015754c392" + "959d9a24-5536-4267-84cd-9e81e6b9b6ed" ], "x-ms-correlation-request-id": [ - "14717430-d553-48cb-ab0a-cd015754c392" + "959d9a24-5536-4267-84cd-9e81e6b9b6ed" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182817Z:14717430-d553-48cb-ab0a-cd015754c392" + "WESTUS2:20200730T213615Z:959d9a24-5536-4267-84cd-9e81e6b9b6ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6153,7 +6153,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:28:16 GMT" + "Thu, 30 Jul 2020 21:36:15 GMT" ], "Content-Length": [ "22" @@ -6169,13 +6169,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNjFhYjNiOWQtZjQwNi00MjQxLTgwOTItZTJhM2YxMTVmMjY1?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTmpGaFlqTmlPV1F0WmpRd05pMDBNalF4TFRnd09USXRaVEpoTTJZeE1UVm1NalkxP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYTBjMmVlOTQtYTVlNC00MWVjLTg3NjEtMGMwMzcyYzlhMzVj?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWVRCak1tVmxPVFF0WVRWbE5DMDBNV1ZqTFRnM05qRXRNR013TXpjeVl6bGhNelZqP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -6192,16 +6192,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "11962" ], "x-ms-request-id": [ - "3722d102-adf7-4285-8b53-1de2706892fe" + "2f181810-754c-4543-978a-641a90634582" ], "x-ms-correlation-request-id": [ - "3722d102-adf7-4285-8b53-1de2706892fe" + "2f181810-754c-4543-978a-641a90634582" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182851Z:3722d102-adf7-4285-8b53-1de2706892fe" + "WESTUS2:20200730T213651Z:2f181810-754c-4543-978a-641a90634582" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6210,7 +6210,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:28:51 GMT" + "Thu, 30 Jul 2020 21:36:50 GMT" ], "Content-Length": [ "22" @@ -6226,13 +6226,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfOTliM2I2MTktZGVhMy00MWRhLTkwNzAtZTA0YTRlZmMwODc5?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmT1RsaU0ySTJNVGt0WkdWaE15MDBNV1JoTFRrd056QXRaVEEwWVRSbFptTXdPRGM1P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfODI0M2E0MWEtNDc3Ni00NTVmLWIzM2MtY2Q0ZWY2MmViYTA1?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmT0RJME0yRTBNV0V0TkRjM05pMDBOVFZtTFdJek0yTXRZMlEwWldZMk1tVmlZVEExP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -6249,16 +6249,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" + "11958" ], "x-ms-request-id": [ - "1163988e-81af-4efb-834d-20ca4a6a9c62" + "7a316ec8-61df-4036-835d-04b288bcf3cd" ], "x-ms-correlation-request-id": [ - "1163988e-81af-4efb-834d-20ca4a6a9c62" + "7a316ec8-61df-4036-835d-04b288bcf3cd" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T182925Z:1163988e-81af-4efb-834d-20ca4a6a9c62" + "WESTUS2:20200730T213726Z:7a316ec8-61df-4036-835d-04b288bcf3cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6267,7 +6267,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:29:25 GMT" + "Thu, 30 Jul 2020 21:37:26 GMT" ], "Content-Length": [ "22" @@ -6283,13 +6283,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNjljNWI2ZGUtMDZlYS00OWY2LWJjN2UtOWExOTQ2M2Q0MmEz?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTmpsak5XSTJaR1V0TURabFlTMDBPV1kyTFdKak4yVXRPV0V4T1RRMk0yUTBNbUV6P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfM2FjYmZiZmMtMDQxNi00ODVmLWJmMjktM2YyMGRjOWVmN2Zk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTTJGalltWmlabU10TURReE5pMDBPRFZtTFdKbU1qa3RNMll5TUdSak9XVm1OMlprP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -6306,16 +6306,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11952" + "11954" ], "x-ms-request-id": [ - "e6a7e0f1-3222-4ba9-8aaf-5c6d5a3ecc4a" + "5a9c173d-17e1-47b9-9292-c664e02992e4" ], "x-ms-correlation-request-id": [ - "e6a7e0f1-3222-4ba9-8aaf-5c6d5a3ecc4a" + "5a9c173d-17e1-47b9-9292-c664e02992e4" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183000Z:e6a7e0f1-3222-4ba9-8aaf-5c6d5a3ecc4a" + "WESTUS2:20200730T213801Z:5a9c173d-17e1-47b9-9292-c664e02992e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6324,10 +6324,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:29:59 GMT" + "Thu, 30 Jul 2020 21:38:01 GMT" ], "Content-Length": [ - "22" + "20" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6336,17 +6336,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfM2QxZGRkNmYtNDg4Yy00MWRlLTkxOWMtOTMzMDgzM2Q5NDU2?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTTJReFpHUmtObVl0TkRnNFl5MDBNV1JsTFRreE9XTXRPVE16TURnek0yUTVORFUyP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfM2FjYmZiZmMtMDQxNi00ODVmLWJmMjktM2YyMGRjOWVmN2Zk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTTJGalltWmlabU10TURReE5pMDBPRFZtTFdKbU1qa3RNMll5TUdSak9XVm1OMlprP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -6363,16 +6363,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11948" + "11953" ], "x-ms-request-id": [ - "a8595913-352f-459f-a618-d2c84e657454" + "1eea4cab-d768-47fd-904f-15e9dda5d4c5" ], "x-ms-correlation-request-id": [ - "a8595913-352f-459f-a618-d2c84e657454" + "1eea4cab-d768-47fd-904f-15e9dda5d4c5" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183034Z:a8595913-352f-459f-a618-d2c84e657454" + "WESTUS2:20200730T213831Z:1eea4cab-d768-47fd-904f-15e9dda5d4c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6381,10 +6381,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:30:33 GMT" + "Thu, 30 Jul 2020 21:38:31 GMT" ], "Content-Length": [ - "22" + "20" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6393,17 +6393,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTZlMTdhYzItYjcyNC00MWVlLWIxOGItN2I2ODU4ZTYyMmFl?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRabE1UZGhZekl0WWpjeU5DMDBNV1ZsTFdJeE9HSXROMkkyT0RVNFpUWXlNbUZsP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfM2FjYmZiZmMtMDQxNi00ODVmLWJmMjktM2YyMGRjOWVmN2Zk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTTJGalltWmlabU10TURReE5pMDBPRFZtTFdKbU1qa3RNMll5TUdSak9XVm1OMlprP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -6420,16 +6420,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11943" + "11952" ], "x-ms-request-id": [ - "f48ae5b4-910a-473b-abb8-7a67cf137040" + "8a4a2a16-c5bc-4813-8c5e-76af92f273ec" ], "x-ms-correlation-request-id": [ - "f48ae5b4-910a-473b-abb8-7a67cf137040" + "8a4a2a16-c5bc-4813-8c5e-76af92f273ec" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183109Z:f48ae5b4-910a-473b-abb8-7a67cf137040" + "WESTUS2:20200730T213902Z:8a4a2a16-c5bc-4813-8c5e-76af92f273ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6438,7 +6438,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:31:09 GMT" + "Thu, 30 Jul 2020 21:39:02 GMT" ], "Content-Length": [ "22" @@ -6454,28 +6454,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", - "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n }\r\n}", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMTUzZjViYjgtOGM4Mi00ZjRhLWE5MmQtMmE5NjkxNGM3ODhm?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTVRVelpqVmlZamd0T0dNNE1pMDBaalJoTFdFNU1tUXRNbUU1TmpreE5HTTNPRGhtP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "f2abe3c4-e915-4282-bbf8-50f8b276a0e6" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "44" ] }, "ResponseHeaders": { @@ -6488,17 +6476,17 @@ "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "4988" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11948" ], "x-ms-request-id": [ - "ab9dc0a9-b7e7-4990-a3bf-479ded1ef900" + "2d85ca2c-d4db-403d-a40d-22339ee6225d" ], "x-ms-correlation-request-id": [ - "ab9dc0a9-b7e7-4990-a3bf-479ded1ef900" + "2d85ca2c-d4db-403d-a40d-22339ee6225d" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183118Z:ab9dc0a9-b7e7-4990-a3bf-479ded1ef900" + "WESTUS2:20200730T213937Z:2d85ca2c-d4db-403d-a40d-22339ee6225d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6507,10 +6495,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:31:18 GMT" + "Thu, 30 Jul 2020 21:39:36 GMT" ], "Content-Length": [ - "1676" + "22" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6519,32 +6507,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545\",\r\n \"name\": \"ps5545\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6651\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5545.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5545\",\r\n \"endpoint\": \"sb://iothub-ns-ps5545-3639468-bf5ebd9639.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", - "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZDdhMTc4MmYtNWIyOC00NjQ4LWE1ZDUtYmM5YzMwNzNjZjVk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWkRkaE1UYzRNbVl0TldJeU9DMDBOalE0TFdFMVpEVXRZbU01WXpNd056TmpaalZrP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "ae3d95d1-0e96-46ee-8408-f54a1847aadd" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "67" ] }, "ResponseHeaders": { @@ -6557,17 +6533,17 @@ "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "4987" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11944" ], "x-ms-request-id": [ - "c117e370-90a6-4fdf-8a4a-484e72e24b6e" + "83ca26f9-2ccc-47b5-8031-8299702be782" ], "x-ms-correlation-request-id": [ - "c117e370-90a6-4fdf-8a4a-484e72e24b6e" + "83ca26f9-2ccc-47b5-8031-8299702be782" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183120Z:c117e370-90a6-4fdf-8a4a-484e72e24b6e" + "WESTUS2:20200730T214012Z:83ca26f9-2ccc-47b5-8031-8299702be782" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6576,10 +6552,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:31:20 GMT" + "Thu, 30 Jul 2020 21:40:11 GMT" ], "Content-Length": [ - "1692" + "20" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6588,32 +6564,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545\",\r\n \"name\": \"ps5545\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6651\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5545.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5545\",\r\n \"endpoint\": \"sb://iothub-ns-ps5545-3639468-bf5ebd9639.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", - "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n }\r\n}", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZDdhMTc4MmYtNWIyOC00NjQ4LWE1ZDUtYmM5YzMwNzNjZjVk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWkRkaE1UYzRNbVl0TldJeU9DMDBOalE0TFdFMVpEVXRZbU01WXpNd056TmpaalZrP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "0df85bb0-c315-4b0c-8fb0-38dee4adf612" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "44" ] }, "ResponseHeaders": { @@ -6626,17 +6590,17 @@ "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "4986" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11943" ], "x-ms-request-id": [ - "9f0a5a8b-624c-4e80-a022-4f044ac4003a" + "2ca761ba-ccac-432b-b5ab-67b4cf214e49" ], "x-ms-correlation-request-id": [ - "9f0a5a8b-624c-4e80-a022-4f044ac4003a" + "2ca761ba-ccac-432b-b5ab-67b4cf214e49" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183122Z:9f0a5a8b-624c-4e80-a022-4f044ac4003a" + "WESTUS2:20200730T214042Z:2ca761ba-ccac-432b-b5ab-67b4cf214e49" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6645,10 +6609,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:31:21 GMT" + "Thu, 30 Jul 2020 21:40:42 GMT" ], "Content-Length": [ - "1676" + "20" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6657,32 +6621,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545\",\r\n \"name\": \"ps5545\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps6651\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5545.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5545\",\r\n \"endpoint\": \"sb://iothub-ns-ps5545-3639468-bf5ebd9639.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545/failover?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDUvZmFpbG92ZXI/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"failoverRegion\": \"East US\"\r\n}", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZDdhMTc4MmYtNWIyOC00NjQ4LWE1ZDUtYmM5YzMwNzNjZjVk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWkRkaE1UYzRNbVl0TldJeU9DMDBOalE0TFdFMVpEVXRZbU01WXpNd056TmpaalZrP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "e19be124-0e97-47ab-ad8a-94fab77efd11" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "35" ] }, "ResponseHeaders": { @@ -6692,29 +6644,20 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTJjMDljNWEtNmY0My00OTFkLTgxMjQtZTczNTE2NjYzYmIw?api-version=2019-07-01-preview&operationSource=os_ih" - ], - "Retry-After": [ - "15" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTJjMDljNWEtNmY0My00OTFkLTgxMjQtZTczNTE2NjYzYmIw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1182" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11942" ], "x-ms-request-id": [ - "adea1239-7adf-4fb1-896b-675ee645bda8" + "fe772165-c851-4200-8e6a-47e1b7c8cbbb" ], "x-ms-correlation-request-id": [ - "adea1239-7adf-4fb1-896b-675ee645bda8" + "fe772165-c851-4200-8e6a-47e1b7c8cbbb" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183126Z:adea1239-7adf-4fb1-896b-675ee645bda8" + "WESTUS2:20200730T214113Z:fe772165-c851-4200-8e6a-47e1b7c8cbbb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6723,10 +6666,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:31:25 GMT" + "Thu, 30 Jul 2020 21:41:12 GMT" ], "Content-Length": [ - "4" + "20" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6735,17 +6678,17 @@ "-1" ] }, - "ResponseBody": "null", - "StatusCode": 202 + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTJjMDljNWEtNmY0My00OTFkLTgxMjQtZTczNTE2NjYzYmIw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRKak1EbGpOV0V0Tm1ZME15MDBPVEZrTFRneE1qUXRaVGN6TlRFMk5qWXpZbUl3P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZDdhMTc4MmYtNWIyOC00NjQ4LWE1ZDUtYmM5YzMwNzNjZjVk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWkRkaE1UYzRNbVl0TldJeU9DMDBOalE0TFdFMVpEVXRZbU01WXpNd056TmpaalZrP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -6762,16 +6705,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11935" + "11941" ], "x-ms-request-id": [ - "6436691e-866f-443f-a957-276173763b2f" + "df8d077c-c1b2-4c3e-8950-6383189218bd" ], "x-ms-correlation-request-id": [ - "6436691e-866f-443f-a957-276173763b2f" + "df8d077c-c1b2-4c3e-8950-6383189218bd" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183141Z:6436691e-866f-443f-a957-276173763b2f" + "WESTUS2:20200730T214143Z:df8d077c-c1b2-4c3e-8950-6383189218bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6780,7 +6723,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:31:41 GMT" + "Thu, 30 Jul 2020 21:41:43 GMT" ], "Content-Length": [ "20" @@ -6796,13 +6739,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTJjMDljNWEtNmY0My00OTFkLTgxMjQtZTczNTE2NjYzYmIw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRKak1EbGpOV0V0Tm1ZME15MDBPVEZrTFRneE1qUXRaVGN6TlRFMk5qWXpZbUl3P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZDdhMTc4MmYtNWIyOC00NjQ4LWE1ZDUtYmM5YzMwNzNjZjVk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWkRkaE1UYzRNbVl0TldJeU9DMDBOalE0TFdFMVpEVXRZbU01WXpNd056TmpaalZrP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -6819,16 +6762,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11934" + "11940" ], "x-ms-request-id": [ - "a79a3ac2-6977-48f5-9655-5a853ff1ca3e" + "1ca31606-bbce-4ee9-bb41-e99968dfaa0c" ], "x-ms-correlation-request-id": [ - "a79a3ac2-6977-48f5-9655-5a853ff1ca3e" + "1ca31606-bbce-4ee9-bb41-e99968dfaa0c" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183156Z:a79a3ac2-6977-48f5-9655-5a853ff1ca3e" + "WESTUS2:20200730T214213Z:1ca31606-bbce-4ee9-bb41-e99968dfaa0c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6837,7 +6780,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:31:56 GMT" + "Thu, 30 Jul 2020 21:42:13 GMT" ], "Content-Length": [ "20" @@ -6853,13 +6796,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTJjMDljNWEtNmY0My00OTFkLTgxMjQtZTczNTE2NjYzYmIw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRKak1EbGpOV0V0Tm1ZME15MDBPVEZrTFRneE1qUXRaVGN6TlRFMk5qWXpZbUl3P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfZDdhMTc4MmYtNWIyOC00NjQ4LWE1ZDUtYmM5YzMwNzNjZjVk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWkRkaE1UYzRNbVl0TldJeU9DMDBOalE0TFdFMVpEVXRZbU01WXpNd056TmpaalZrP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -6872,20 +6815,20 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11933" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11939" + ], "x-ms-request-id": [ - "511f8593-701d-48b3-8015-460450c83430" + "24559917-c887-4fcf-9479-75a31bd158ae" ], "x-ms-correlation-request-id": [ - "511f8593-701d-48b3-8015-460450c83430" + "24559917-c887-4fcf-9479-75a31bd158ae" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183212Z:511f8593-701d-48b3-8015-460450c83430" + "WESTUS2:20200730T214244Z:24559917-c887-4fcf-9479-75a31bd158ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6894,10 +6837,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:32:11 GMT" + "Thu, 30 Jul 2020 21:42:43 GMT" ], "Content-Length": [ - "20" + "22" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6906,17 +6849,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTJjMDljNWEtNmY0My00OTFkLTgxMjQtZTczNTE2NjYzYmIw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRKak1EbGpOV0V0Tm1ZME15MDBPVEZrTFRneE1qUXRaVGN6TlRFMk5qWXpZbUl3P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMzJlODAxNjMtMmU5Yi00NDFjLTllMGUtOGRkYjdlYmQ5MmY1?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTXpKbE9EQXhOak10TW1VNVlpMDBOREZqTFRsbE1HVXRPR1JrWWpkbFltUTVNbVkxP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -6933,16 +6876,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11932" + "11934" ], "x-ms-request-id": [ - "259e92ac-4842-4e03-b47c-39cd01041ce7" + "97774ac0-2fa2-4356-bbda-a50fd29ee6db" ], "x-ms-correlation-request-id": [ - "259e92ac-4842-4e03-b47c-39cd01041ce7" + "97774ac0-2fa2-4356-bbda-a50fd29ee6db" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183227Z:259e92ac-4842-4e03-b47c-39cd01041ce7" + "WESTUS2:20200730T214325Z:97774ac0-2fa2-4356-bbda-a50fd29ee6db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6951,10 +6894,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:32:26 GMT" + "Thu, 30 Jul 2020 21:43:25 GMT" ], "Content-Length": [ - "20" + "22" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6963,20 +6906,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTJjMDljNWEtNmY0My00OTFkLTgxMjQtZTczNTE2NjYzYmIw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRKak1EbGpOV0V0Tm1ZME15MDBPVEZrTFRneE1qUXRaVGN6TlRFMk5qWXpZbUl3P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n }\r\n}", "RequestHeaders": { + "x-ms-client-request-id": [ + "0d08a9b0-19f6-4739-9cd2-992a98d0c449" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "44" ] }, "ResponseHeaders": { @@ -6989,17 +6944,17 @@ "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11931" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "4988" ], "x-ms-request-id": [ - "b9351803-1e65-455f-b517-5c365e53e7f8" + "5925e157-153d-4717-88a1-c86086c013da" ], "x-ms-correlation-request-id": [ - "b9351803-1e65-455f-b517-5c365e53e7f8" + "5925e157-153d-4717-88a1-c86086c013da" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183242Z:b9351803-1e65-455f-b517-5c365e53e7f8" + "WESTUS2:20200730T214328Z:5925e157-153d-4717-88a1-c86086c013da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7008,10 +6963,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:32:42 GMT" + "Thu, 30 Jul 2020 21:43:28 GMT" ], "Content-Length": [ - "20" + "1676" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7020,20 +6975,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713\",\r\n \"name\": \"ps9713\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2471\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps9713.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9713\",\r\n \"endpoint\": \"sb://iothub-ns-ps9713-3949739-eed064899b.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTJjMDljNWEtNmY0My00OTFkLTgxMjQtZTczNTE2NjYzYmIw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRKak1EbGpOV0V0Tm1ZME15MDBPVEZrTFRneE1qUXRaVGN6TlRFMk5qWXpZbUl3P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}", "RequestHeaders": { + "x-ms-client-request-id": [ + "c720cd95-7d4d-41c7-87bb-7cfcaeea4fff" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "67" ] }, "ResponseHeaders": { @@ -7046,17 +7013,17 @@ "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11930" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "4987" ], "x-ms-request-id": [ - "f7288d9e-5e03-441e-a32f-cb1da0701c1b" + "32e2c0da-703a-4e6c-83f3-73ada2e10f39" ], "x-ms-correlation-request-id": [ - "f7288d9e-5e03-441e-a32f-cb1da0701c1b" + "32e2c0da-703a-4e6c-83f3-73ada2e10f39" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183257Z:f7288d9e-5e03-441e-a32f-cb1da0701c1b" + "WESTUS2:20200730T214330Z:32e2c0da-703a-4e6c-83f3-73ada2e10f39" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7065,10 +7032,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:32:57 GMT" + "Thu, 30 Jul 2020 21:43:30 GMT" ], "Content-Length": [ - "20" + "1692" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7077,20 +7044,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713\",\r\n \"name\": \"ps9713\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2471\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps9713.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9713\",\r\n \"endpoint\": \"sb://iothub-ns-ps9713-3949739-eed064899b.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTJjMDljNWEtNmY0My00OTFkLTgxMjQtZTczNTE2NjYzYmIw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRKak1EbGpOV0V0Tm1ZME15MDBPVEZrTFRneE1qUXRaVGN6TlRFMk5qWXpZbUl3P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n }\r\n}", "RequestHeaders": { + "x-ms-client-request-id": [ + "659758a8-e57b-411a-8038-91835caefb7a" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "44" ] }, "ResponseHeaders": { @@ -7103,17 +7082,17 @@ "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11929" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "4986" ], "x-ms-request-id": [ - "aefd0625-7c60-4c30-bbd7-7e2835019ed9" + "331c75c1-243f-480b-abcb-a604ecd0d26a" ], "x-ms-correlation-request-id": [ - "aefd0625-7c60-4c30-bbd7-7e2835019ed9" + "331c75c1-243f-480b-abcb-a604ecd0d26a" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183313Z:aefd0625-7c60-4c30-bbd7-7e2835019ed9" + "WESTUS2:20200730T214332Z:331c75c1-243f-480b-abcb-a604ecd0d26a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7122,10 +7101,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:33:12 GMT" + "Thu, 30 Jul 2020 21:43:32 GMT" ], "Content-Length": [ - "20" + "1676" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7134,20 +7113,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713\",\r\n \"name\": \"ps9713\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"subscriptionid\": \"91d12660-3dec-467a-be2a-213b5544ddc0\",\r\n \"resourcegroup\": \"ps2471\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps9713.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9713\",\r\n \"endpoint\": \"sb://iothub-ns-ps9713-3949739-eed064899b.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [\r\n {\r\n \"name\": \"route2\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n },\r\n {\r\n \"name\": \"route3\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n ],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 25,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTJjMDljNWEtNmY0My00OTFkLTgxMjQtZTczNTE2NjYzYmIw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRKak1EbGpOV0V0Tm1ZME15MDBPVEZrTFRneE1qUXRaVGN6TlRFMk5qWXpZbUl3P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713/failover?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTMvZmFpbG92ZXI/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"failoverRegion\": \"East US\"\r\n}", "RequestHeaders": { + "x-ms-client-request-id": [ + "ea9ca2cc-8f18-44d3-9ff6-51c529013879" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" ] }, "ResponseHeaders": { @@ -7157,20 +7148,29 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMWFkYzE4M2ItZjBmNC00ZWUxLWJjNjEtYzIzYjI1ZDE5Nzlk?api-version=2019-07-01-preview&operationSource=os_ih" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMWFkYzE4M2ItZjBmNC00ZWUxLWJjNjEtYzIzYjI1ZDE5Nzlk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11928" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1182" ], "x-ms-request-id": [ - "47ed96aa-529c-4074-ba87-fe433eb79a34" + "61c1327d-4d44-4e61-a874-09665a518e62" ], "x-ms-correlation-request-id": [ - "47ed96aa-529c-4074-ba87-fe433eb79a34" + "61c1327d-4d44-4e61-a874-09665a518e62" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183328Z:47ed96aa-529c-4074-ba87-fe433eb79a34" + "WESTUS2:20200730T214336Z:61c1327d-4d44-4e61-a874-09665a518e62" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7179,10 +7179,10 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:33:28 GMT" + "Thu, 30 Jul 2020 21:43:36 GMT" ], "Content-Length": [ - "20" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7191,17 +7191,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", - "StatusCode": 200 + "ResponseBody": "null", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTJjMDljNWEtNmY0My00OTFkLTgxMjQtZTczNTE2NjYzYmIw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRKak1EbGpOV0V0Tm1ZME15MDBPVEZrTFRneE1qUXRaVGN6TlRFMk5qWXpZbUl3P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMWFkYzE4M2ItZjBmNC00ZWUxLWJjNjEtYzIzYjI1ZDE5Nzlk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTVdGa1l6RTRNMkl0WmpCbU5DMDBaV1V4TFdKak5qRXRZekl6WWpJMVpERTVOemxrP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -7218,16 +7218,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11927" + "11926" ], "x-ms-request-id": [ - "04bb9bde-3182-4dd6-accf-8b73c671ade6" + "c723e566-61ca-46ab-822b-dbe20728a2a7" ], "x-ms-correlation-request-id": [ - "04bb9bde-3182-4dd6-accf-8b73c671ade6" + "c723e566-61ca-46ab-822b-dbe20728a2a7" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183343Z:04bb9bde-3182-4dd6-accf-8b73c671ade6" + "WESTUS2:20200730T214351Z:c723e566-61ca-46ab-822b-dbe20728a2a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7236,7 +7236,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:33:43 GMT" + "Thu, 30 Jul 2020 21:43:50 GMT" ], "Content-Length": [ "20" @@ -7252,13 +7252,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTJjMDljNWEtNmY0My00OTFkLTgxMjQtZTczNTE2NjYzYmIw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRKak1EbGpOV0V0Tm1ZME15MDBPVEZrTFRneE1qUXRaVGN6TlRFMk5qWXpZbUl3P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMWFkYzE4M2ItZjBmNC00ZWUxLWJjNjEtYzIzYjI1ZDE5Nzlk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTVdGa1l6RTRNMkl0WmpCbU5DMDBaV1V4TFdKak5qRXRZekl6WWpJMVpERTVOemxrP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -7275,16 +7275,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11926" + "11925" ], "x-ms-request-id": [ - "6eab311c-cea9-4940-b823-da810610b219" + "a3aa2fb1-876e-4d11-819a-0da8f1b662da" ], "x-ms-correlation-request-id": [ - "6eab311c-cea9-4940-b823-da810610b219" + "a3aa2fb1-876e-4d11-819a-0da8f1b662da" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183358Z:6eab311c-cea9-4940-b823-da810610b219" + "WESTUS2:20200730T214406Z:a3aa2fb1-876e-4d11-819a-0da8f1b662da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7293,7 +7293,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:33:58 GMT" + "Thu, 30 Jul 2020 21:44:05 GMT" ], "Content-Length": [ "20" @@ -7309,13 +7309,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTJjMDljNWEtNmY0My00OTFkLTgxMjQtZTczNTE2NjYzYmIw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRKak1EbGpOV0V0Tm1ZME15MDBPVEZrTFRneE1qUXRaVGN6TlRFMk5qWXpZbUl3P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMWFkYzE4M2ItZjBmNC00ZWUxLWJjNjEtYzIzYjI1ZDE5Nzlk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTVdGa1l6RTRNMkl0WmpCbU5DMDBaV1V4TFdKak5qRXRZekl6WWpJMVpERTVOemxrP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -7332,16 +7332,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11925" + "11924" ], "x-ms-request-id": [ - "9eb34130-ee35-4358-999f-1f7b76709a02" + "4a42970a-6302-45b9-b1f1-1f03db486a91" ], "x-ms-correlation-request-id": [ - "9eb34130-ee35-4358-999f-1f7b76709a02" + "4a42970a-6302-45b9-b1f1-1f03db486a91" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183413Z:9eb34130-ee35-4358-999f-1f7b76709a02" + "WESTUS2:20200730T214422Z:4a42970a-6302-45b9-b1f1-1f03db486a91" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7350,7 +7350,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:34:13 GMT" + "Thu, 30 Jul 2020 21:44:21 GMT" ], "Content-Length": [ "20" @@ -7366,13 +7366,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTJjMDljNWEtNmY0My00OTFkLTgxMjQtZTczNTE2NjYzYmIw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRKak1EbGpOV0V0Tm1ZME15MDBPVEZrTFRneE1qUXRaVGN6TlRFMk5qWXpZbUl3P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMWFkYzE4M2ItZjBmNC00ZWUxLWJjNjEtYzIzYjI1ZDE5Nzlk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTVdGa1l6RTRNMkl0WmpCbU5DMDBaV1V4TFdKak5qRXRZekl6WWpJMVpERTVOemxrP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -7389,16 +7389,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11924" + "11923" ], "x-ms-request-id": [ - "7a5f699f-f0aa-481d-b2eb-ae7ffa828b9b" + "e4a88ee8-8fb6-4640-bdab-db2814a2baf7" ], "x-ms-correlation-request-id": [ - "7a5f699f-f0aa-481d-b2eb-ae7ffa828b9b" + "e4a88ee8-8fb6-4640-bdab-db2814a2baf7" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183429Z:7a5f699f-f0aa-481d-b2eb-ae7ffa828b9b" + "WESTUS2:20200730T214437Z:e4a88ee8-8fb6-4640-bdab-db2814a2baf7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7407,7 +7407,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:34:28 GMT" + "Thu, 30 Jul 2020 21:44:36 GMT" ], "Content-Length": [ "20" @@ -7423,13 +7423,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTJjMDljNWEtNmY0My00OTFkLTgxMjQtZTczNTE2NjYzYmIw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRKak1EbGpOV0V0Tm1ZME15MDBPVEZrTFRneE1qUXRaVGN6TlRFMk5qWXpZbUl3P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMWFkYzE4M2ItZjBmNC00ZWUxLWJjNjEtYzIzYjI1ZDE5Nzlk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTVdGa1l6RTRNMkl0WmpCbU5DMDBaV1V4TFdKak5qRXRZekl6WWpJMVpERTVOemxrP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -7442,20 +7442,20 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11922" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11923" - ], "x-ms-request-id": [ - "98c43620-61fb-4af4-b997-dce87d3108c8" + "c2ef891a-73b3-4750-aefe-5691c5bc97cd" ], "x-ms-correlation-request-id": [ - "98c43620-61fb-4af4-b997-dce87d3108c8" + "c2ef891a-73b3-4750-aefe-5691c5bc97cd" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183444Z:98c43620-61fb-4af4-b997-dce87d3108c8" + "WESTUS2:20200730T214452Z:c2ef891a-73b3-4750-aefe-5691c5bc97cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7464,7 +7464,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:34:43 GMT" + "Thu, 30 Jul 2020 21:44:52 GMT" ], "Content-Length": [ "20" @@ -7480,13 +7480,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTJjMDljNWEtNmY0My00OTFkLTgxMjQtZTczNTE2NjYzYmIw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRKak1EbGpOV0V0Tm1ZME15MDBPVEZrTFRneE1qUXRaVGN6TlRFMk5qWXpZbUl3P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMWFkYzE4M2ItZjBmNC00ZWUxLWJjNjEtYzIzYjI1ZDE5Nzlk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTVdGa1l6RTRNMkl0WmpCbU5DMDBaV1V4TFdKak5qRXRZekl6WWpJMVpERTVOemxrP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -7503,16 +7503,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11922" + "11921" ], "x-ms-request-id": [ - "ed2bf14b-8c83-4975-8737-41a668f6084b" + "69582c02-cfca-4da7-bac3-ae490840aee5" ], "x-ms-correlation-request-id": [ - "ed2bf14b-8c83-4975-8737-41a668f6084b" + "69582c02-cfca-4da7-bac3-ae490840aee5" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183459Z:ed2bf14b-8c83-4975-8737-41a668f6084b" + "WESTUS2:20200730T214507Z:69582c02-cfca-4da7-bac3-ae490840aee5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7521,7 +7521,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:34:58 GMT" + "Thu, 30 Jul 2020 21:45:07 GMT" ], "Content-Length": [ "20" @@ -7537,13 +7537,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTJjMDljNWEtNmY0My00OTFkLTgxMjQtZTczNTE2NjYzYmIw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRKak1EbGpOV0V0Tm1ZME15MDBPVEZrTFRneE1qUXRaVGN6TlRFMk5qWXpZbUl3P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMWFkYzE4M2ItZjBmNC00ZWUxLWJjNjEtYzIzYjI1ZDE5Nzlk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTVdGa1l6RTRNMkl0WmpCbU5DMDBaV1V4TFdKak5qRXRZekl6WWpJMVpERTVOemxrP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -7560,16 +7560,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11921" + "11920" ], "x-ms-request-id": [ - "2d0f70a9-e2ab-4d37-b632-faaa3595b8c7" + "bd5d2f3c-beda-41f5-9cdc-83a552f3504b" ], "x-ms-correlation-request-id": [ - "2d0f70a9-e2ab-4d37-b632-faaa3595b8c7" + "bd5d2f3c-beda-41f5-9cdc-83a552f3504b" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183514Z:2d0f70a9-e2ab-4d37-b632-faaa3595b8c7" + "WESTUS2:20200730T214523Z:bd5d2f3c-beda-41f5-9cdc-83a552f3504b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7578,7 +7578,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:35:14 GMT" + "Thu, 30 Jul 2020 21:45:22 GMT" ], "Content-Length": [ "20" @@ -7594,13 +7594,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTJjMDljNWEtNmY0My00OTFkLTgxMjQtZTczNTE2NjYzYmIw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRKak1EbGpOV0V0Tm1ZME15MDBPVEZrTFRneE1qUXRaVGN6TlRFMk5qWXpZbUl3P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMWFkYzE4M2ItZjBmNC00ZWUxLWJjNjEtYzIzYjI1ZDE5Nzlk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTVdGa1l6RTRNMkl0WmpCbU5DMDBaV1V4TFdKak5qRXRZekl6WWpJMVpERTVOemxrP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -7617,16 +7617,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11920" + "11919" ], "x-ms-request-id": [ - "7f96131b-215f-4367-b2c3-17f3cc117608" + "85b8d029-f681-4c5c-844f-e77c60d71ced" ], "x-ms-correlation-request-id": [ - "7f96131b-215f-4367-b2c3-17f3cc117608" + "85b8d029-f681-4c5c-844f-e77c60d71ced" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183529Z:7f96131b-215f-4367-b2c3-17f3cc117608" + "WESTUS2:20200730T214538Z:85b8d029-f681-4c5c-844f-e77c60d71ced" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7635,7 +7635,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:35:29 GMT" + "Thu, 30 Jul 2020 21:45:37 GMT" ], "Content-Length": [ "20" @@ -7651,13 +7651,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTJjMDljNWEtNmY0My00OTFkLTgxMjQtZTczNTE2NjYzYmIw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRKak1EbGpOV0V0Tm1ZME15MDBPVEZrTFRneE1qUXRaVGN6TlRFMk5qWXpZbUl3P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMWFkYzE4M2ItZjBmNC00ZWUxLWJjNjEtYzIzYjI1ZDE5Nzlk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTVdGa1l6RTRNMkl0WmpCbU5DMDBaV1V4TFdKak5qRXRZekl6WWpJMVpERTVOemxrP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -7674,16 +7674,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11919" + "11918" ], "x-ms-request-id": [ - "51b4ee66-a9d3-45e8-9c55-aa54de89755d" + "b8b2e4e8-1183-47da-8a69-bfd570cd2f59" ], "x-ms-correlation-request-id": [ - "51b4ee66-a9d3-45e8-9c55-aa54de89755d" + "b8b2e4e8-1183-47da-8a69-bfd570cd2f59" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183545Z:51b4ee66-a9d3-45e8-9c55-aa54de89755d" + "WESTUS2:20200730T214606Z:b8b2e4e8-1183-47da-8a69-bfd570cd2f59" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7692,7 +7692,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:35:45 GMT" + "Thu, 30 Jul 2020 21:46:05 GMT" ], "Content-Length": [ "20" @@ -7708,13 +7708,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTJjMDljNWEtNmY0My00OTFkLTgxMjQtZTczNTE2NjYzYmIw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRKak1EbGpOV0V0Tm1ZME15MDBPVEZrTFRneE1qUXRaVGN6TlRFMk5qWXpZbUl3P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMWFkYzE4M2ItZjBmNC00ZWUxLWJjNjEtYzIzYjI1ZDE5Nzlk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTVdGa1l6RTRNMkl0WmpCbU5DMDBaV1V4TFdKak5qRXRZekl6WWpJMVpERTVOemxrP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -7731,16 +7731,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11918" + "11917" ], "x-ms-request-id": [ - "0cc314b7-6b82-4fd8-8c6f-c59e38cbb652" + "248063ba-243c-4328-8872-e8f3d2c32bac" ], "x-ms-correlation-request-id": [ - "0cc314b7-6b82-4fd8-8c6f-c59e38cbb652" + "248063ba-243c-4328-8872-e8f3d2c32bac" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183600Z:0cc314b7-6b82-4fd8-8c6f-c59e38cbb652" + "WESTUS2:20200730T214635Z:248063ba-243c-4328-8872-e8f3d2c32bac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7749,7 +7749,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:36:00 GMT" + "Thu, 30 Jul 2020 21:46:34 GMT" ], "Content-Length": [ "20" @@ -7765,13 +7765,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTJjMDljNWEtNmY0My00OTFkLTgxMjQtZTczNTE2NjYzYmIw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRKak1EbGpOV0V0Tm1ZME15MDBPVEZrTFRneE1qUXRaVGN6TlRFMk5qWXpZbUl3P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMWFkYzE4M2ItZjBmNC00ZWUxLWJjNjEtYzIzYjI1ZDE5Nzlk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTVdGa1l6RTRNMkl0WmpCbU5DMDBaV1V4TFdKak5qRXRZekl6WWpJMVpERTVOemxrP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -7788,16 +7788,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11917" + "11916" ], "x-ms-request-id": [ - "5d39e3f0-0dfd-4e65-9bc9-f6b38dc15362" + "a87b5d1d-2263-4ed1-b2be-d16db6045977" ], "x-ms-correlation-request-id": [ - "5d39e3f0-0dfd-4e65-9bc9-f6b38dc15362" + "a87b5d1d-2263-4ed1-b2be-d16db6045977" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183615Z:5d39e3f0-0dfd-4e65-9bc9-f6b38dc15362" + "WESTUS2:20200730T214704Z:a87b5d1d-2263-4ed1-b2be-d16db6045977" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7806,7 +7806,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:36:15 GMT" + "Thu, 30 Jul 2020 21:47:04 GMT" ], "Content-Length": [ "20" @@ -7822,13 +7822,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTJjMDljNWEtNmY0My00OTFkLTgxMjQtZTczNTE2NjYzYmIw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRKak1EbGpOV0V0Tm1ZME15MDBPVEZrTFRneE1qUXRaVGN6TlRFMk5qWXpZbUl3P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMWFkYzE4M2ItZjBmNC00ZWUxLWJjNjEtYzIzYjI1ZDE5Nzlk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTVdGa1l6RTRNMkl0WmpCbU5DMDBaV1V4TFdKak5qRXRZekl6WWpJMVpERTVOemxrP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -7845,16 +7845,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11916" + "11915" ], "x-ms-request-id": [ - "3004dee5-1e20-4bcc-97e2-b254c9f859c1" + "275416e0-ae5c-4476-8d35-57f4b395090a" ], "x-ms-correlation-request-id": [ - "3004dee5-1e20-4bcc-97e2-b254c9f859c1" + "275416e0-ae5c-4476-8d35-57f4b395090a" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183630Z:3004dee5-1e20-4bcc-97e2-b254c9f859c1" + "WESTUS2:20200730T214731Z:275416e0-ae5c-4476-8d35-57f4b395090a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7863,7 +7863,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:36:30 GMT" + "Thu, 30 Jul 2020 21:47:30 GMT" ], "Content-Length": [ "20" @@ -7879,13 +7879,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTJjMDljNWEtNmY0My00OTFkLTgxMjQtZTczNTE2NjYzYmIw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRKak1EbGpOV0V0Tm1ZME15MDBPVEZrTFRneE1qUXRaVGN6TlRFMk5qWXpZbUl3P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMWFkYzE4M2ItZjBmNC00ZWUxLWJjNjEtYzIzYjI1ZDE5Nzlk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTVdGa1l6RTRNMkl0WmpCbU5DMDBaV1V4TFdKak5qRXRZekl6WWpJMVpERTVOemxrP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -7902,16 +7902,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11915" + "11914" ], "x-ms-request-id": [ - "2cdceed3-6236-4f35-84ce-3ed0055e51d9" + "01788fbc-c0fe-431f-bb64-11f9da020f22" ], "x-ms-correlation-request-id": [ - "2cdceed3-6236-4f35-84ce-3ed0055e51d9" + "01788fbc-c0fe-431f-bb64-11f9da020f22" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183646Z:2cdceed3-6236-4f35-84ce-3ed0055e51d9" + "WESTUS2:20200730T214801Z:01788fbc-c0fe-431f-bb64-11f9da020f22" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7920,7 +7920,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:36:45 GMT" + "Thu, 30 Jul 2020 21:48:01 GMT" ], "Content-Length": [ "20" @@ -7936,13 +7936,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTJjMDljNWEtNmY0My00OTFkLTgxMjQtZTczNTE2NjYzYmIw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRKak1EbGpOV0V0Tm1ZME15MDBPVEZrTFRneE1qUXRaVGN6TlRFMk5qWXpZbUl3P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMWFkYzE4M2ItZjBmNC00ZWUxLWJjNjEtYzIzYjI1ZDE5Nzlk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTVdGa1l6RTRNMkl0WmpCbU5DMDBaV1V4TFdKak5qRXRZekl6WWpJMVpERTVOemxrP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -7959,16 +7959,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11914" + "11913" ], "x-ms-request-id": [ - "c14a7c9e-f554-4432-8162-4a8fe1bd78f1" + "745f717c-d56a-4656-ae38-6c86636b4f82" ], "x-ms-correlation-request-id": [ - "c14a7c9e-f554-4432-8162-4a8fe1bd78f1" + "745f717c-d56a-4656-ae38-6c86636b4f82" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183701Z:c14a7c9e-f554-4432-8162-4a8fe1bd78f1" + "WESTUS2:20200730T214830Z:745f717c-d56a-4656-ae38-6c86636b4f82" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7977,7 +7977,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:37:00 GMT" + "Thu, 30 Jul 2020 21:48:30 GMT" ], "Content-Length": [ "20" @@ -7993,13 +7993,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTJjMDljNWEtNmY0My00OTFkLTgxMjQtZTczNTE2NjYzYmIw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRKak1EbGpOV0V0Tm1ZME15MDBPVEZrTFRneE1qUXRaVGN6TlRFMk5qWXpZbUl3P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMWFkYzE4M2ItZjBmNC00ZWUxLWJjNjEtYzIzYjI1ZDE5Nzlk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTVdGa1l6RTRNMkl0WmpCbU5DMDBaV1V4TFdKak5qRXRZekl6WWpJMVpERTVOemxrP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -8012,20 +8012,20 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11913" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11912" + ], "x-ms-request-id": [ - "7f6d8727-c04d-4c93-8415-7c6db52641fa" + "9d567b10-3811-4710-8715-3f0230bd235d" ], "x-ms-correlation-request-id": [ - "7f6d8727-c04d-4c93-8415-7c6db52641fa" + "9d567b10-3811-4710-8715-3f0230bd235d" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183716Z:7f6d8727-c04d-4c93-8415-7c6db52641fa" + "WESTUS2:20200730T214854Z:9d567b10-3811-4710-8715-3f0230bd235d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8034,7 +8034,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:37:16 GMT" + "Thu, 30 Jul 2020 21:48:53 GMT" ], "Content-Length": [ "20" @@ -8050,13 +8050,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTJjMDljNWEtNmY0My00OTFkLTgxMjQtZTczNTE2NjYzYmIw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRKak1EbGpOV0V0Tm1ZME15MDBPVEZrTFRneE1qUXRaVGN6TlRFMk5qWXpZbUl3P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMWFkYzE4M2ItZjBmNC00ZWUxLWJjNjEtYzIzYjI1ZDE5Nzlk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTVdGa1l6RTRNMkl0WmpCbU5DMDBaV1V4TFdKak5qRXRZekl6WWpJMVpERTVOemxrP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -8073,16 +8073,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11912" + "11911" ], "x-ms-request-id": [ - "fedde76c-d32e-41cb-895f-edf1e864b74a" + "aef52c6c-f2a2-4b8b-ac24-e5646e09c45c" ], "x-ms-correlation-request-id": [ - "fedde76c-d32e-41cb-895f-edf1e864b74a" + "aef52c6c-f2a2-4b8b-ac24-e5646e09c45c" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183732Z:fedde76c-d32e-41cb-895f-edf1e864b74a" + "WESTUS2:20200730T214924Z:aef52c6c-f2a2-4b8b-ac24-e5646e09c45c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8091,7 +8091,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:37:31 GMT" + "Thu, 30 Jul 2020 21:49:23 GMT" ], "Content-Length": [ "20" @@ -8107,13 +8107,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTJjMDljNWEtNmY0My00OTFkLTgxMjQtZTczNTE2NjYzYmIw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRKak1EbGpOV0V0Tm1ZME15MDBPVEZrTFRneE1qUXRaVGN6TlRFMk5qWXpZbUl3P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMWFkYzE4M2ItZjBmNC00ZWUxLWJjNjEtYzIzYjI1ZDE5Nzlk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTVdGa1l6RTRNMkl0WmpCbU5DMDBaV1V4TFdKak5qRXRZekl6WWpJMVpERTVOemxrP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -8130,16 +8130,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11911" + "11910" ], "x-ms-request-id": [ - "361fa69f-3b21-4406-8776-2e4f5450db5f" + "33a54a21-bbec-4035-9eee-fa63a8dee37b" ], "x-ms-correlation-request-id": [ - "361fa69f-3b21-4406-8776-2e4f5450db5f" + "33a54a21-bbec-4035-9eee-fa63a8dee37b" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183747Z:361fa69f-3b21-4406-8776-2e4f5450db5f" + "WESTUS2:20200730T214950Z:33a54a21-bbec-4035-9eee-fa63a8dee37b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8148,7 +8148,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:37:46 GMT" + "Thu, 30 Jul 2020 21:49:49 GMT" ], "Content-Length": [ "20" @@ -8164,13 +8164,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTJjMDljNWEtNmY0My00OTFkLTgxMjQtZTczNTE2NjYzYmIw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRKak1EbGpOV0V0Tm1ZME15MDBPVEZrTFRneE1qUXRaVGN6TlRFMk5qWXpZbUl3P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMWFkYzE4M2ItZjBmNC00ZWUxLWJjNjEtYzIzYjI1ZDE5Nzlk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTVdGa1l6RTRNMkl0WmpCbU5DMDBaV1V4TFdKak5qRXRZekl6WWpJMVpERTVOemxrP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -8183,20 +8183,20 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11909" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11910" - ], "x-ms-request-id": [ - "2db78543-993b-4064-8d02-e6b2b407a1f0" + "1043eb6e-2aa7-4739-a110-484f0ceed49d" ], "x-ms-correlation-request-id": [ - "2db78543-993b-4064-8d02-e6b2b407a1f0" + "1043eb6e-2aa7-4739-a110-484f0ceed49d" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183802Z:2db78543-993b-4064-8d02-e6b2b407a1f0" + "WESTUS2:20200730T215020Z:1043eb6e-2aa7-4739-a110-484f0ceed49d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8205,7 +8205,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:38:01 GMT" + "Thu, 30 Jul 2020 21:50:20 GMT" ], "Content-Length": [ "20" @@ -8221,13 +8221,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTJjMDljNWEtNmY0My00OTFkLTgxMjQtZTczNTE2NjYzYmIw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRKak1EbGpOV0V0Tm1ZME15MDBPVEZrTFRneE1qUXRaVGN6TlRFMk5qWXpZbUl3P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMWFkYzE4M2ItZjBmNC00ZWUxLWJjNjEtYzIzYjI1ZDE5Nzlk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTVdGa1l6RTRNMkl0WmpCbU5DMDBaV1V4TFdKak5qRXRZekl6WWpJMVpERTVOemxrP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -8244,16 +8244,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11909" + "11908" ], "x-ms-request-id": [ - "862404c9-c174-4d3d-91e0-6c36cec16249" + "e34e2dda-9b36-4b14-a57d-3f43e32865d6" ], "x-ms-correlation-request-id": [ - "862404c9-c174-4d3d-91e0-6c36cec16249" + "e34e2dda-9b36-4b14-a57d-3f43e32865d6" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183817Z:862404c9-c174-4d3d-91e0-6c36cec16249" + "WESTUS2:20200730T215035Z:e34e2dda-9b36-4b14-a57d-3f43e32865d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8262,7 +8262,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:38:17 GMT" + "Thu, 30 Jul 2020 21:50:35 GMT" ], "Content-Length": [ "20" @@ -8278,13 +8278,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTJjMDljNWEtNmY0My00OTFkLTgxMjQtZTczNTE2NjYzYmIw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRKak1EbGpOV0V0Tm1ZME15MDBPVEZrTFRneE1qUXRaVGN6TlRFMk5qWXpZbUl3P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMWFkYzE4M2ItZjBmNC00ZWUxLWJjNjEtYzIzYjI1ZDE5Nzlk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTVdGa1l6RTRNMkl0WmpCbU5DMDBaV1V4TFdKak5qRXRZekl6WWpJMVpERTVOemxrP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -8301,16 +8301,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11908" + "11907" ], "x-ms-request-id": [ - "1f4fdc39-47a9-4b20-a873-28f238a41665" + "baf2067c-eaff-4d66-9a2a-b6f6c4f6e1fc" ], "x-ms-correlation-request-id": [ - "1f4fdc39-47a9-4b20-a873-28f238a41665" + "baf2067c-eaff-4d66-9a2a-b6f6c4f6e1fc" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183833Z:1f4fdc39-47a9-4b20-a873-28f238a41665" + "WESTUS2:20200730T215051Z:baf2067c-eaff-4d66-9a2a-b6f6c4f6e1fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8319,7 +8319,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:38:32 GMT" + "Thu, 30 Jul 2020 21:50:50 GMT" ], "Content-Length": [ "20" @@ -8335,13 +8335,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTJjMDljNWEtNmY0My00OTFkLTgxMjQtZTczNTE2NjYzYmIw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRKak1EbGpOV0V0Tm1ZME15MDBPVEZrTFRneE1qUXRaVGN6TlRFMk5qWXpZbUl3P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMWFkYzE4M2ItZjBmNC00ZWUxLWJjNjEtYzIzYjI1ZDE5Nzlk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTVdGa1l6RTRNMkl0WmpCbU5DMDBaV1V4TFdKak5qRXRZekl6WWpJMVpERTVOemxrP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -8358,16 +8358,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11907" + "11906" ], "x-ms-request-id": [ - "f2498c53-7dfd-4713-8b49-7f06bebdf40c" + "bc074a48-4a24-4efa-9888-777642815e27" ], "x-ms-correlation-request-id": [ - "f2498c53-7dfd-4713-8b49-7f06bebdf40c" + "bc074a48-4a24-4efa-9888-777642815e27" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183848Z:f2498c53-7dfd-4713-8b49-7f06bebdf40c" + "WESTUS2:20200730T215106Z:bc074a48-4a24-4efa-9888-777642815e27" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8376,7 +8376,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:38:47 GMT" + "Thu, 30 Jul 2020 21:51:05 GMT" ], "Content-Length": [ "20" @@ -8392,13 +8392,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTJjMDljNWEtNmY0My00OTFkLTgxMjQtZTczNTE2NjYzYmIw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRKak1EbGpOV0V0Tm1ZME15MDBPVEZrTFRneE1qUXRaVGN6TlRFMk5qWXpZbUl3P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMWFkYzE4M2ItZjBmNC00ZWUxLWJjNjEtYzIzYjI1ZDE5Nzlk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTVdGa1l6RTRNMkl0WmpCbU5DMDBaV1V4TFdKak5qRXRZekl6WWpJMVpERTVOemxrP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -8415,16 +8415,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11906" + "11905" ], "x-ms-request-id": [ - "46e15abd-0761-43b1-b2c1-e4989ce3edb7" + "e906adf0-73b5-4d7a-b235-3e8b2eff08fa" ], "x-ms-correlation-request-id": [ - "46e15abd-0761-43b1-b2c1-e4989ce3edb7" + "e906adf0-73b5-4d7a-b235-3e8b2eff08fa" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183903Z:46e15abd-0761-43b1-b2c1-e4989ce3edb7" + "WESTUS2:20200730T215121Z:e906adf0-73b5-4d7a-b235-3e8b2eff08fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8433,7 +8433,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:39:03 GMT" + "Thu, 30 Jul 2020 21:51:21 GMT" ], "Content-Length": [ "20" @@ -8449,13 +8449,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTJjMDljNWEtNmY0My00OTFkLTgxMjQtZTczNTE2NjYzYmIw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRKak1EbGpOV0V0Tm1ZME15MDBPVEZrTFRneE1qUXRaVGN6TlRFMk5qWXpZbUl3P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMWFkYzE4M2ItZjBmNC00ZWUxLWJjNjEtYzIzYjI1ZDE5Nzlk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTVdGa1l6RTRNMkl0WmpCbU5DMDBaV1V4TFdKak5qRXRZekl6WWpJMVpERTVOemxrP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -8472,16 +8472,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11905" + "11904" ], "x-ms-request-id": [ - "256d217a-651a-4604-9fe8-f3a1cdbaea80" + "b8e6162c-ceca-49bf-8cc3-1084600b830b" ], "x-ms-correlation-request-id": [ - "256d217a-651a-4604-9fe8-f3a1cdbaea80" + "b8e6162c-ceca-49bf-8cc3-1084600b830b" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183919Z:256d217a-651a-4604-9fe8-f3a1cdbaea80" + "WESTUS2:20200730T215136Z:b8e6162c-ceca-49bf-8cc3-1084600b830b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8490,7 +8490,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:39:18 GMT" + "Thu, 30 Jul 2020 21:51:36 GMT" ], "Content-Length": [ "20" @@ -8506,13 +8506,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTJjMDljNWEtNmY0My00OTFkLTgxMjQtZTczNTE2NjYzYmIw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRKak1EbGpOV0V0Tm1ZME15MDBPVEZrTFRneE1qUXRaVGN6TlRFMk5qWXpZbUl3P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMWFkYzE4M2ItZjBmNC00ZWUxLWJjNjEtYzIzYjI1ZDE5Nzlk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTVdGa1l6RTRNMkl0WmpCbU5DMDBaV1V4TFdKak5qRXRZekl6WWpJMVpERTVOemxrP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -8529,16 +8529,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11904" + "11903" ], "x-ms-request-id": [ - "e45a217a-3cbf-49dd-bac1-ffc111a0708d" + "abf69d01-1e02-4557-a32f-711fb8debb10" ], "x-ms-correlation-request-id": [ - "e45a217a-3cbf-49dd-bac1-ffc111a0708d" + "abf69d01-1e02-4557-a32f-711fb8debb10" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183934Z:e45a217a-3cbf-49dd-bac1-ffc111a0708d" + "WESTUS2:20200730T215151Z:abf69d01-1e02-4557-a32f-711fb8debb10" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8547,7 +8547,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:39:33 GMT" + "Thu, 30 Jul 2020 21:51:51 GMT" ], "Content-Length": [ "20" @@ -8563,13 +8563,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTJjMDljNWEtNmY0My00OTFkLTgxMjQtZTczNTE2NjYzYmIw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRKak1EbGpOV0V0Tm1ZME15MDBPVEZrTFRneE1qUXRaVGN6TlRFMk5qWXpZbUl3P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMWFkYzE4M2ItZjBmNC00ZWUxLWJjNjEtYzIzYjI1ZDE5Nzlk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTVdGa1l6RTRNMkl0WmpCbU5DMDBaV1V4TFdKak5qRXRZekl6WWpJMVpERTVOemxrP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -8586,16 +8586,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11903" + "11902" ], "x-ms-request-id": [ - "143e6c2c-09c9-44f6-b422-c5ddf5341c3b" + "068a61b4-4c41-48ff-a5a5-39b7c058a201" ], "x-ms-correlation-request-id": [ - "143e6c2c-09c9-44f6-b422-c5ddf5341c3b" + "068a61b4-4c41-48ff-a5a5-39b7c058a201" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T183949Z:143e6c2c-09c9-44f6-b422-c5ddf5341c3b" + "WESTUS2:20200730T215207Z:068a61b4-4c41-48ff-a5a5-39b7c058a201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8604,7 +8604,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:39:48 GMT" + "Thu, 30 Jul 2020 21:52:06 GMT" ], "Content-Length": [ "20" @@ -8620,13 +8620,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTJjMDljNWEtNmY0My00OTFkLTgxMjQtZTczNTE2NjYzYmIw?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRKak1EbGpOV0V0Tm1ZME15MDBPVEZrTFRneE1qUXRaVGN6TlRFMk5qWXpZbUl3P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMWFkYzE4M2ItZjBmNC00ZWUxLWJjNjEtYzIzYjI1ZDE5Nzlk?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTVdGa1l6RTRNMkl0WmpCbU5DMDBaV1V4TFdKak5qRXRZekl6WWpJMVpERTVOemxrP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -8643,16 +8643,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11902" + "11901" ], "x-ms-request-id": [ - "414b240d-9a20-4d13-9c52-230b7ad4bc47" + "c6a7c3b0-bb81-48a9-9e65-169db52c530e" ], "x-ms-correlation-request-id": [ - "414b240d-9a20-4d13-9c52-230b7ad4bc47" + "c6a7c3b0-bb81-48a9-9e65-169db52c530e" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184004Z:414b240d-9a20-4d13-9c52-230b7ad4bc47" + "WESTUS2:20200730T215222Z:c6a7c3b0-bb81-48a9-9e65-169db52c530e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8661,7 +8661,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:40:04 GMT" + "Thu, 30 Jul 2020 21:52:22 GMT" ], "Content-Length": [ "22" @@ -8677,13 +8677,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTJjMDljNWEtNmY0My00OTFkLTgxMjQtZTczNTE2NjYzYmIw?api-version=2019-07-01-preview&operationSource=os_ih", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRKak1EbGpOV0V0Tm1ZME15MDBPVEZrTFRneE1qUXRaVGN6TlRFMk5qWXpZbUl3P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWg=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMWFkYzE4M2ItZjBmNC00ZWUxLWJjNjEtYzIzYjI1ZDE5Nzlk?api-version=2019-07-01-preview&operationSource=os_ih", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTVdGa1l6RTRNMkl0WmpCbU5DMDBaV1V4TFdKak5qRXRZekl6WWpJMVpERTVOemxrP2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWg=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -8697,7 +8697,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNTJjMDljNWEtNmY0My00OTFkLTgxMjQtZTczNTE2NjYzYmIw?api-version=2019-07-01-preview&operationSource=os_ih" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfMWFkYzE4M2ItZjBmNC00ZWUxLWJjNjEtYzIzYjI1ZDE5Nzlk?api-version=2019-07-01-preview&operationSource=os_ih" ], "Retry-After": [ "15" @@ -8706,16 +8706,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11901" + "11900" ], "x-ms-request-id": [ - "df64a7f5-7004-445a-a27b-4156e1797e52" + "82054b06-35c4-469b-9dab-37c35907f0e4" ], "x-ms-correlation-request-id": [ - "df64a7f5-7004-445a-a27b-4156e1797e52" + "82054b06-35c4-469b-9dab-37c35907f0e4" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184005Z:df64a7f5-7004-445a-a27b-4156e1797e52" + "WESTUS2:20200730T215222Z:82054b06-35c4-469b-9dab-37c35907f0e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8724,7 +8724,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:40:04 GMT" + "Thu, 30 Jul 2020 21:52:22 GMT" ], "Expires": [ "-1" @@ -8737,19 +8737,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps6651/providers/Microsoft.Devices/IotHubs/ps5545?api-version=2019-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzNjY1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU1NDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/ps2471/providers/Microsoft.Devices/IotHubs/ps9713?api-version=2019-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Jlc291cmNlR3JvdXBzL3BzMjQ3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk3MTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b6e0a366-bd15-464d-9e81-68d1fd344ea5" + "0d641164-067b-4cb6-95cd-4ce3fda4a071" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -8763,13 +8763,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYWIxMTRjNmMtYzNjOC00Mzg4LWEwMTEtNDMyOGI2NmQ2OTM4?api-version=2019-07-01-preview&operationSource=os_ih" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNDNhYzMwZjAtOTZkMi00NGY3LTgwNzktNDM3ZDRkOTUxMjM5?api-version=2019-07-01-preview&operationSource=os_ih" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYWIxMTRjNmMtYzNjOC00Mzg4LWEwMTEtNDMyOGI2NmQ2OTM4?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNDNhYzMwZjAtOTZkMi00NGY3LTgwNzktNDM3ZDRkOTUxMjM5?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -8778,13 +8778,13 @@ "14998" ], "x-ms-request-id": [ - "9fa6c2b0-9dc7-490d-a6e4-692598e7d4ac" + "25cf0623-50c0-4dfb-8aa7-061e6f40d268" ], "x-ms-correlation-request-id": [ - "9fa6c2b0-9dc7-490d-a6e4-692598e7d4ac" + "25cf0623-50c0-4dfb-8aa7-061e6f40d268" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184007Z:9fa6c2b0-9dc7-490d-a6e4-692598e7d4ac" + "WESTUS2:20200730T215224Z:25cf0623-50c0-4dfb-8aa7-061e6f40d268" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8793,7 +8793,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:40:06 GMT" + "Thu, 30 Jul 2020 21:52:24 GMT" ], "Content-Length": [ "4" @@ -8809,13 +8809,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYWIxMTRjNmMtYzNjOC00Mzg4LWEwMTEtNDMyOGI2NmQ2OTM4?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWVdJeE1UUmpObU10WXpOak9DMDBNemc0TFdFd01URXRORE15T0dJMk5tUTJPVE00P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNDNhYzMwZjAtOTZkMi00NGY3LTgwNzktNDM3ZDRkOTUxMjM5?api-version=2019-07-01-preview&operationSource=os_ih&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkROaFl6TXdaakF0T1Raa01pMDBOR1kzTFRnd056a3RORE0zWkRSa09UVXhNak01P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWgmYXN5bmNpbmZv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -8832,16 +8832,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11899" + "11898" ], "x-ms-request-id": [ - "ce1a3121-a149-43cf-953d-f6b1de834756" + "26e9623f-3a8e-4956-af21-6cafe8c2608e" ], "x-ms-correlation-request-id": [ - "ce1a3121-a149-43cf-953d-f6b1de834756" + "26e9623f-3a8e-4956-af21-6cafe8c2608e" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184022Z:ce1a3121-a149-43cf-953d-f6b1de834756" + "WESTUS2:20200730T215239Z:26e9623f-3a8e-4956-af21-6cafe8c2608e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8850,7 +8850,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:40:22 GMT" + "Thu, 30 Jul 2020 21:52:39 GMT" ], "Content-Length": [ "22" @@ -8866,13 +8866,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYWIxMTRjNmMtYzNjOC00Mzg4LWEwMTEtNDMyOGI2NmQ2OTM4?api-version=2019-07-01-preview&operationSource=os_ih", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWVdJeE1UUmpObU10WXpOak9DMDBNemc0TFdFd01URXRORE15T0dJMk5tUTJPVE00P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWg=", + "RequestUri": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNDNhYzMwZjAtOTZkMi00NGY3LTgwNzktNDM3ZDRkOTUxMjM5?api-version=2019-07-01-preview&operationSource=os_ih", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTFkMTI2NjAtM2RlYy00NjdhLWJlMmEtMjEzYjU1NDRkZGMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkROaFl6TXdaakF0T1Raa01pMDBOR1kzTFRnd056a3RORE0zWkRSa09UVXhNak01P2FwaS12ZXJzaW9uPTIwMTktMDctMDEtcHJldmlldyZvcGVyYXRpb25Tb3VyY2U9b3NfaWg=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.28619.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.IotHub.IotHubClient/2.10.0.0" @@ -8886,7 +8886,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfYWIxMTRjNmMtYzNjOC00Mzg4LWEwMTEtNDMyOGI2NmQ2OTM4?api-version=2019-07-01-preview&operationSource=os_ih" + "https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/providers/Microsoft.Devices/operationResults/b3NfaWhfNDNhYzMwZjAtOTZkMi00NGY3LTgwNzktNDM3ZDRkOTUxMjM5?api-version=2019-07-01-preview&operationSource=os_ih" ], "Retry-After": [ "15" @@ -8895,16 +8895,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11898" + "11897" ], "x-ms-request-id": [ - "267d0a08-52e6-4cdf-9231-32a7f6283cea" + "52a7a1d2-3ea8-4374-b970-f8820a1bf8e4" ], "x-ms-correlation-request-id": [ - "267d0a08-52e6-4cdf-9231-32a7f6283cea" + "52a7a1d2-3ea8-4374-b970-f8820a1bf8e4" ], "x-ms-routing-request-id": [ - "WESTUS2:20200616T184022Z:267d0a08-52e6-4cdf-9231-32a7f6283cea" + "WESTUS2:20200730T215239Z:52a7a1d2-3ea8-4374-b970-f8820a1bf8e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8913,7 +8913,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Jun 2020 18:40:22 GMT" + "Thu, 30 Jul 2020 21:52:39 GMT" ], "Expires": [ "-1" @@ -8928,11 +8928,11 @@ ], "Names": { "Test-AzureRmIotHubLifecycle": [ - "ps5545", - "ps6651", - "eventHub4390", - "ps8829", - "ps9447" + "ps9713", + "ps2471", + "eventHub8918", + "ps7778", + "ps7467" ] }, "Variables": { diff --git a/src/IotHub/IotHub/ChangeLog.md b/src/IotHub/IotHub/ChangeLog.md index de05474f5ea7..e0d5929f4f4c 100644 --- a/src/IotHub/IotHub/ChangeLog.md +++ b/src/IotHub/IotHub/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* Update devices sdk. ## Version 2.5.0 * Added cmdlet to invoke a query in an IoT hub to retrieve information using a SQL-like language. diff --git a/src/IotHub/IotHub/IotHub.csproj b/src/IotHub/IotHub/IotHub.csproj index 11f2ef5cd0db..4976e639f9da 100644 --- a/src/IotHub/IotHub/IotHub.csproj +++ b/src/IotHub/IotHub/IotHub.csproj @@ -1,4 +1,4 @@ - + IotHub @@ -11,10 +11,14 @@ - - + + + + + + \ No newline at end of file diff --git a/src/KeyVault/KeyVault/ChangeLog.md b/src/KeyVault/KeyVault/ChangeLog.md index 81b5c2842fe3..68a28a006768 100644 --- a/src/KeyVault/KeyVault/ChangeLog.md +++ b/src/KeyVault/KeyVault/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* Provided the detailed date of removing property SecretValueText ## Version 2.2.0 * Added support for RBAC authorization [#10557] diff --git a/src/KeyVault/KeyVault/Commands/GetAzureKeyVaultSecret.cs b/src/KeyVault/KeyVault/Commands/GetAzureKeyVaultSecret.cs index 5a3b9a5b4f13..7ea2adee58c0 100644 --- a/src/KeyVault/KeyVault/Commands/GetAzureKeyVaultSecret.cs +++ b/src/KeyVault/KeyVault/Commands/GetAzureKeyVaultSecret.cs @@ -23,6 +23,7 @@ namespace Microsoft.Azure.Commands.KeyVault { + [GenericBreakingChange("Property 'SecretValueText' in PSKeyVaultSecret and PSDeletedKeyVaultSecret will be removed around 10/27/2020")] [CmdletOutputBreakingChange(typeof(PSKeyVaultSecret), "3.0.0", DeprecatedOutputProperties = new String[] { "SecretValueText" })] [CmdletOutputBreakingChange(typeof(PSDeletedKeyVaultSecret), "3.0.0", DeprecatedOutputProperties = new String[] { "SecretValueText" })] [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzurePrefix + "KeyVaultSecret", DefaultParameterSetName = ByVaultNameParameterSet)] diff --git a/src/KeyVault/KeyVault/Commands/RemoveAzureKeyVaultSecret.cs b/src/KeyVault/KeyVault/Commands/RemoveAzureKeyVaultSecret.cs index 5c271a262dad..cdbee18586bb 100644 --- a/src/KeyVault/KeyVault/Commands/RemoveAzureKeyVaultSecret.cs +++ b/src/KeyVault/KeyVault/Commands/RemoveAzureKeyVaultSecret.cs @@ -25,6 +25,7 @@ namespace Microsoft.Azure.Commands.KeyVault [GenericBreakingChange("If you have soft-delete protection enabled on this key vault, this secret will be moved to the soft deleted state. " + "You will not be able to create a secret with the same name within this key vault until the secret has been purged from the soft-deleted state. Please see the following documentation for additional guidance. " + "https://docs.microsoft.com/en-us/azure/key-vault/general/soft-delete-overview")] + [GenericBreakingChange("Property 'SecretValueText' in PSDeletedKeyVaultSecret will be removed around 10/27/2020")] [CmdletOutputBreakingChange(typeof(PSDeletedKeyVaultSecret), "3.0.0", DeprecatedOutputProperties = new String[] { "SecretValueText" })] [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzurePrefix + "KeyVaultSecret",SupportsShouldProcess = true,DefaultParameterSetName = ByVaultNameParameterSet)] [OutputType(typeof(PSDeletedKeyVaultSecret))] diff --git a/src/KeyVault/KeyVault/Commands/RestoreAzureKeyVaultSecret.cs b/src/KeyVault/KeyVault/Commands/RestoreAzureKeyVaultSecret.cs index e3d08ac6e0f3..7e69692bfa20 100644 --- a/src/KeyVault/KeyVault/Commands/RestoreAzureKeyVaultSecret.cs +++ b/src/KeyVault/KeyVault/Commands/RestoreAzureKeyVaultSecret.cs @@ -27,6 +27,7 @@ namespace Microsoft.Azure.Commands.KeyVault /// /// Restores the backup secret into a vault /// + [GenericBreakingChange("Property 'SecretValueText' in PSKeyVaultSecret will be removed around 10/27/2020")] [CmdletOutputBreakingChange(typeof(PSKeyVaultSecret), "3.0.0", DeprecatedOutputProperties = new String[] { "SecretValueText" })] [Cmdlet("Restore", ResourceManager.Common.AzureRMConstants.AzurePrefix + "KeyVaultSecret",SupportsShouldProcess = true,DefaultParameterSetName = ByVaultNameParameterSet)] [OutputType( typeof(PSKeyVaultSecret) )] diff --git a/src/KeyVault/KeyVault/Commands/SetAzureKeyVaultSecret.cs b/src/KeyVault/KeyVault/Commands/SetAzureKeyVaultSecret.cs index a2975a029683..423f21f94876 100644 --- a/src/KeyVault/KeyVault/Commands/SetAzureKeyVaultSecret.cs +++ b/src/KeyVault/KeyVault/Commands/SetAzureKeyVaultSecret.cs @@ -24,6 +24,7 @@ namespace Microsoft.Azure.Commands.KeyVault { + [GenericBreakingChange("Property 'SecretValueText' in PSKeyVaultSecret will be removed around 10/27/2020")] [CmdletOutputBreakingChange(typeof(PSKeyVaultSecret), "3.0.0", DeprecatedOutputProperties = new String[] { "SecretValueText" })] [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzurePrefix + "KeyVaultSecret",SupportsShouldProcess = true,DefaultParameterSetName = DefaultParameterSet)] [OutputType(typeof(PSKeyVaultSecret))] diff --git a/src/KeyVault/KeyVault/Commands/UndoAzureKeyVaultSecretRemoval.cs b/src/KeyVault/KeyVault/Commands/UndoAzureKeyVaultSecretRemoval.cs index 86dd416bf2ab..62f4f5a455e6 100644 --- a/src/KeyVault/KeyVault/Commands/UndoAzureKeyVaultSecretRemoval.cs +++ b/src/KeyVault/KeyVault/Commands/UndoAzureKeyVaultSecretRemoval.cs @@ -20,6 +20,7 @@ namespace Microsoft.Azure.Commands.KeyVault { + [GenericBreakingChange("Property 'SecretValueText' in PSKeyVaultSecret will be removed around 10/27/2020")] [CmdletOutputBreakingChange(typeof(PSKeyVaultSecret), "3.0.0", DeprecatedOutputProperties = new String[] { "SecretValueText" })] [Cmdlet("Undo", ResourceManager.Common.AzureRMConstants.AzurePrefix + "KeyVaultSecretRemoval",SupportsShouldProcess = true,DefaultParameterSetName = DefaultParameterSet)] [OutputType(typeof(PSKeyVaultSecret))] diff --git a/src/KeyVault/KeyVault/Commands/UpdateAzureKeyVaultSecret.cs b/src/KeyVault/KeyVault/Commands/UpdateAzureKeyVaultSecret.cs index 70b38e086796..5a1f2b341ec4 100644 --- a/src/KeyVault/KeyVault/Commands/UpdateAzureKeyVaultSecret.cs +++ b/src/KeyVault/KeyVault/Commands/UpdateAzureKeyVaultSecret.cs @@ -21,6 +21,7 @@ namespace Microsoft.Azure.Commands.KeyVault { + [GenericBreakingChange("Property 'SecretValueText' in PSKeyVaultSecret will be removed around 10/27/2020")] [CmdletOutputBreakingChange(typeof(PSKeyVaultSecret), "3.0.0", DeprecatedOutputProperties = new String[] { "SecretValueText" })] [Cmdlet("Update", ResourceManager.Common.AzureRMConstants.AzurePrefix + "KeyVaultSecret",DefaultParameterSetName = DefaultParameterSet,SupportsShouldProcess = true)] [OutputType(typeof(PSKeyVaultSecret))] diff --git a/src/KeyVault/KeyVault/help/New-AzKeyVaultCertificatePolicy.md b/src/KeyVault/KeyVault/help/New-AzKeyVaultCertificatePolicy.md index a19bda731457..88267ce82d84 100644 --- a/src/KeyVault/KeyVault/help/New-AzKeyVaultCertificatePolicy.md +++ b/src/KeyVault/KeyVault/help/New-AzKeyVaultCertificatePolicy.md @@ -409,7 +409,11 @@ Accept wildcard characters: False ``` ### -SubjectName -Specifies the subject name of the certificate. +Specifies the subject name of the certificate. + +> [!NOTE] +> If you must use a comma (,) or a period (.) within a property in the `SubjectName` parameter, +> you must enclose the property field in quotation marks. For example, you may use O="Contoso, Ltd." in the Organization Name field. ```yaml Type: System.String diff --git a/src/ManagedServices/ManagedServices/ChangeLog.md b/src/ManagedServices/ManagedServices/ChangeLog.md index 70a893f43094..e2638c8b2e0e 100644 --- a/src/ManagedServices/ManagedServices/ChangeLog.md +++ b/src/ManagedServices/ManagedServices/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* Updated breaking change warnings on cmdlets of managed services assignment and definition ## Version 1.1.0 * Added breaking change warnings on cmdlets of managed services assignment and definition diff --git a/src/ManagedServices/ManagedServices/Commands/NewAzureRmManagedServicesAssignment.cs b/src/ManagedServices/ManagedServices/Commands/NewAzureRmManagedServicesAssignment.cs index a938c1153768..1792bf257a41 100644 --- a/src/ManagedServices/ManagedServices/Commands/NewAzureRmManagedServicesAssignment.cs +++ b/src/ManagedServices/ManagedServices/Commands/NewAzureRmManagedServicesAssignment.cs @@ -42,6 +42,11 @@ public class NewAzureRmManagedServicesAssignment : ManagedServicesCmdletBase [ScopeCompleter] public string Scope { get; set; } + [CmdletParameterBreakingChange( + nameOfParameterChanging: "RegistrationDefinitionName", + deprecateByVersion: ManagedServicesUtility.UpcomingVersion, + changeInEfectByDate: ManagedServicesUtility.UpcomingVersionReleaseDate, + ChangeDescription = ManagedServicesUtility.DeprecatedParameterDescription)] [Parameter(ParameterSetName = DefaultParameterSet, Mandatory = true, HelpMessage = "The registration definition identifier.")] [ValidateNotNullOrEmpty] public string RegistrationDefinitionName { get; set; } @@ -50,7 +55,7 @@ public class NewAzureRmManagedServicesAssignment : ManagedServicesCmdletBase nameOfParameterChanging: "RegistrationDefinitionResourceId", deprecateByVersion: ManagedServicesUtility.UpcomingVersion, changeInEfectByDate: ManagedServicesUtility.UpcomingVersionReleaseDate, - ChangeDescription = ManagedServicesUtility.DeprecatedParameterDescription)] + ReplaceMentCmdletParameterName = "RegistrationDefinitionId")] [Parameter(ParameterSetName = ByResourceIdParameterSet, ValueFromPipelineByPropertyName = true, Mandatory = true, HelpMessage = "The fully qualified resource id of the registration definition.")] [ValidateNotNullOrEmpty] [Alias("ResourceId")] diff --git a/src/ManagedServices/ManagedServices/Commands/NewAzureRmManagedServicesDefinition.cs b/src/ManagedServices/ManagedServices/Commands/NewAzureRmManagedServicesDefinition.cs index a5da0a046708..4918cc6f8163 100644 --- a/src/ManagedServices/ManagedServices/Commands/NewAzureRmManagedServicesDefinition.cs +++ b/src/ManagedServices/ManagedServices/Commands/NewAzureRmManagedServicesDefinition.cs @@ -15,6 +15,7 @@ using Microsoft.Azure.Management.ManagedServices.Models; using Microsoft.Azure.PowerShell.Cmdlets.ManagedServices.Extensions; using Microsoft.Azure.PowerShell.Cmdlets.ManagedServices.Models; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using Microsoft.WindowsAzure.Commands.Utilities.Common; using System; using System.Collections.Generic; @@ -23,10 +24,14 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServices.Commands { - [WindowsAzure.Commands.Common.CustomAttributes.GenericBreakingChange( + [GenericBreakingChange( message: "New mandatory parameter 'DisplayName' will be added to represent a user-friendly name for a registration definition", deprecateByVersion: ManagedServicesUtility.UpcomingVersion, changeInEfectByDate: ManagedServicesUtility.UpcomingVersionReleaseDate)] + [GenericBreakingChange( + message: "New mandatory parameter 'Authorization' will be added to represent a list containing principal IDs and role definition IDs.", + deprecateByVersion: ManagedServicesUtility.UpcomingVersion, + changeInEfectByDate: ManagedServicesUtility.UpcomingVersionReleaseDate)] [Cmdlet( VerbsCommon.New, Microsoft.Azure.Commands.ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ManagedServicesDefinition", diff --git a/src/ManagedServices/ManagedServices/Extensions/ManagedServicesUtility.cs b/src/ManagedServices/ManagedServices/Extensions/ManagedServicesUtility.cs index b120094a86b3..c524a7e05e75 100644 --- a/src/ManagedServices/ManagedServices/Extensions/ManagedServicesUtility.cs +++ b/src/ManagedServices/ManagedServices/Extensions/ManagedServicesUtility.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServices.Extensions public static class ManagedServicesUtility { // TODO: Remove these three string as well as breaking changes attributes for Oct. 27th change - public const string UpcomingVersion = "1.0.3"; + public const string UpcomingVersion = "1.3.0"; public const string UpcomingVersionReleaseDate = "10/27/2020"; public const string DeprecatedParameterDescription = "Parameter is being deprecated without being replaced"; diff --git a/src/MariaDb/Az.MariaDb.psd1 b/src/MariaDb/Az.MariaDb.psd1 index 86eaeea1cebc..e27327a268bf 100644 --- a/src/MariaDb/Az.MariaDb.psd1 +++ b/src/MariaDb/Az.MariaDb.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 5/11/2020 +# Generated on: 9/28/2020 # @{ @@ -45,7 +45,7 @@ PowerShellVersion = '5.1' DotNetFrameworkVersion = '4.7.2' # Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only. -# CLRVersion = '' +# ClrVersion = '' # Processor architecture (None, X86, Amd64) required by this module # ProcessorArchitecture = '' @@ -72,8 +72,8 @@ FormatsToProcess = './Az.MariaDb.format.ps1xml' FunctionsToExport = 'Get-AzMariaDbConfiguration', 'Get-AzMariaDbConnectionString', 'Get-AzMariaDbFirewallRule', 'Get-AzMariaDbReplica', 'Get-AzMariaDbServer', 'Get-AzMariaDbVirtualNetworkRule', - 'New-AzMariaDbFirewallRule', 'New-AzMariaDbServer', - 'New-AzMariaDbServerReplica', 'New-AzMariaDbVirtualNetworkRule', + 'New-AzMariaDbFirewallRule', 'New-AzMariaDbReplica', + 'New-AzMariaDbServer', 'New-AzMariaDbVirtualNetworkRule', 'Remove-AzMariaDbFirewallRule', 'Remove-AzMariaDbServer', 'Remove-AzMariaDbVirtualNetworkRule', 'Restart-AzMariaDbServer', 'Restore-AzMariaDbServer', 'Update-AzMariaDbConfiguration', @@ -116,7 +116,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* the first preview release' + # ReleaseNotes = '' # Prerelease string of this module # Prerelease = '' diff --git a/src/MariaDb/Az.MariaDb.psm1 b/src/MariaDb/Az.MariaDb.psm1 index 895da376b2d7..b4c39a5c9c73 100644 --- a/src/MariaDb/Az.MariaDb.psm1 +++ b/src/MariaDb/Az.MariaDb.psm1 @@ -16,7 +16,7 @@ $accountsName = 'Az.Accounts' $accountsModule = Get-Module -Name $accountsName if(-not $accountsModule) { - $localAccountsPath = Join-Path $PSScriptRoot 'generated/modules' + $localAccountsPath = Join-Path $PSScriptRoot 'generated\modules' if(Test-Path -Path $localAccountsPath) { $localAccounts = Get-ChildItem -Path $localAccountsPath -Recurse -Include 'Az.Accounts.psd1' | Select-Object -Last 1 if($localAccounts) { @@ -107,196 +107,3 @@ $instance.Init(); Write-Information "Loaded Module '$($instance.Name)'" # endregion - -# SIG # Begin signature block -# MIIjhgYJKoZIhvcNAQcCoIIjdzCCI3MCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCDSvWC3z4EW6HRp -# /aHjTNSz/pNEe83immRH/h+iAuVHS6CCDYEwggX/MIID56ADAgECAhMzAAABUZ6N -# j0Bxow5BAAAAAAFRMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p -# bmcgUENBIDIwMTEwHhcNMTkwNTAyMjEzNzQ2WhcNMjAwNTAyMjEzNzQ2WjB0MQsw -# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u -# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB -# AQCVWsaGaUcdNB7xVcNmdfZiVBhYFGcn8KMqxgNIvOZWNH9JYQLuhHhmJ5RWISy1 -# oey3zTuxqLbkHAdmbeU8NFMo49Pv71MgIS9IG/EtqwOH7upan+lIq6NOcw5fO6Os -# +12R0Q28MzGn+3y7F2mKDnopVu0sEufy453gxz16M8bAw4+QXuv7+fR9WzRJ2CpU -# 62wQKYiFQMfew6Vh5fuPoXloN3k6+Qlz7zgcT4YRmxzx7jMVpP/uvK6sZcBxQ3Wg -# B/WkyXHgxaY19IAzLq2QiPiX2YryiR5EsYBq35BP7U15DlZtpSs2wIYTkkDBxhPJ -# IDJgowZu5GyhHdqrst3OjkSRAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE -# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUV4Iarkq57esagu6FUBb270Zijc8w -# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 -# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDU0MTM1MB8GA1UdIwQYMBaAFEhu -# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu -# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w -# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx -# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAWg+A -# rS4Anq7KrogslIQnoMHSXUPr/RqOIhJX+32ObuY3MFvdlRElbSsSJxrRy/OCCZdS -# se+f2AqQ+F/2aYwBDmUQbeMB8n0pYLZnOPifqe78RBH2fVZsvXxyfizbHubWWoUf -# NW/FJlZlLXwJmF3BoL8E2p09K3hagwz/otcKtQ1+Q4+DaOYXWleqJrJUsnHs9UiL -# crVF0leL/Q1V5bshob2OTlZq0qzSdrMDLWdhyrUOxnZ+ojZ7UdTY4VnCuogbZ9Zs -# 9syJbg7ZUS9SVgYkowRsWv5jV4lbqTD+tG4FzhOwcRQwdb6A8zp2Nnd+s7VdCuYF -# sGgI41ucD8oxVfcAMjF9YX5N2s4mltkqnUe3/htVrnxKKDAwSYliaux2L7gKw+bD -# 1kEZ/5ozLRnJ3jjDkomTrPctokY/KaZ1qub0NUnmOKH+3xUK/plWJK8BOQYuU7gK -# YH7Yy9WSKNlP7pKj6i417+3Na/frInjnBkKRCJ/eYTvBH+s5guezpfQWtU4bNo/j -# 8Qw2vpTQ9w7flhH78Rmwd319+YTmhv7TcxDbWlyteaj4RK2wk3pY1oSz2JPE5PNu -# Nmd9Gmf6oePZgy7Ii9JLLq8SnULV7b+IP0UXRY9q+GdRjM2AEX6msZvvPCIoG0aY -# HQu9wZsKEK2jqvWi8/xdeeeSI9FN6K1w4oVQM4Mwggd6MIIFYqADAgECAgphDpDS -# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 -# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla -# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS -# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT -# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB -# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG -# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S -# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz -# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 -# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u -# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 -# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl -# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP -# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB -# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF -# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM -# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ -# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud -# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO -# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 -# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p -# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB -# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw -# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA -# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY -# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj -# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd -# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ -# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf -# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ -# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j -# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B -# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 -# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 -# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I -# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIVWzCCFVcCAQEwgZUwfjELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z -# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAVGejY9AcaMOQQAAAAABUTAN -# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor -# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgOr8SWLYl -# JZCwRlpR0X/9oLJfb0e2Ijw7TbPdbgoUubYwQgYKKwYBBAGCNwIBDDE0MDKgFIAS -# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN -# BgkqhkiG9w0BAQEFAASCAQAQ953LgMCTntXmXQjwFMbzHVUSz5S0QmoJ4GNgp5IQ -# 7R6oZWY3ir5ZbdWEBNTrrq1josFZDlU10xtyTITv5wI4np50ZQdMi2YlW5ao+yyV -# bcG4X7x8q2OZp8fw2IDUWoi4hzGchgKMYU8urQpF2FhvM1sSIiUhwxsu06pfE3Ak -# tXM8AwaHF9mLB/H9pMfmRLBjJYAlPWKu+2u/bs/p3r+On8Zq846qfI8jVJOTtLVh -# fjNx9vex8IGQ/KXZusKVX/BsSxQL3vKSsgMSIH9DRVDcIOVMoH9Drc6FuH/Mocye -# 20WeSUGkNNPOTBjM/e0FC1Mt3+LPI+y6J6SF6WIUR92PoYIS5TCCEuEGCisGAQQB -# gjcDAwExghLRMIISzQYJKoZIhvcNAQcCoIISvjCCEroCAQMxDzANBglghkgBZQME -# AgEFADCCAVEGCyqGSIb3DQEJEAEEoIIBQASCATwwggE4AgEBBgorBgEEAYRZCgMB -# MDEwDQYJYIZIAWUDBAIBBQAEIEScuW+Xnnslw3iSsRIiWf2pc+EkaV6Kykm4ADQE -# tYrxAgZegg80IGEYEzIwMjAwNDEwMDMxNjQ3LjA5MlowBIACAfSggdCkgc0wgcox -# CzAJBgNVBAYTAlVTMQswCQYDVQQIEwJXQTEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG -# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg -# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg -# RVNOOjhENDEtNEJGNy1CM0I3MSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt -# cCBTZXJ2aWNloIIOPDCCBPEwggPZoAMCAQICEzMAAAEKUsg5AVLRcEsAAAAAAQow -# DQYJKoZIhvcNAQELBQAwfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0 -# b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3Jh -# dGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwHhcN -# MTkxMDIzMjMxOTE1WhcNMjEwMTIxMjMxOTE1WjCByjELMAkGA1UEBhMCVVMxCzAJ -# BgNVBAgTAldBMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQg -# Q29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlv -# bnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046OEQ0MS00QkY3LUIz -# QjcxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2UwggEiMA0G -# CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7PhutlKFwxZ+GePU/V0pMke215HSX -# 8PcLX1hjYUbyCERBFs7/wEwrbwMIZdOo7NDqcIUhXXt3kxg1OqBJxuozVcCJ8JwR -# y/VI79p1ZeLbSv3aMMxouOzoqaNL/Dmb8CT9UEcqq3PF18vMv1cZfk8ZphuVSGPM -# 0eWsJvE1kfPXCJsYzsZturq0jEI6XBh9hpuKQq8KSXvoqCE37EZWrYWy3uhRJnsr -# d4Tq2YgYsyWQ/aQF20db73ZWwItXG4TUly4IQ0pcQi9/UH3fsVu06q8/yNvc7MfI -# cmnYOUPOyFMBh0EW519K/mg/xYgMhtmZlnzmvHnr5npzJTiwbBuhnwUnAgMBAAGj -# ggEbMIIBFzAdBgNVHQ4EFgQU+ESUpf06TE1Q3pH4Oq0BopFxhSgwHwYDVR0jBBgw -# FoAU1WM6XIoxkPNDe3xGG8UzaFqFbVUwVgYDVR0fBE8wTTBLoEmgR4ZFaHR0cDov -# L2NybC5taWNyb3NvZnQuY29tL3BraS9jcmwvcHJvZHVjdHMvTWljVGltU3RhUENB -# XzIwMTAtMDctMDEuY3JsMFoGCCsGAQUFBwEBBE4wTDBKBggrBgEFBQcwAoY+aHR0 -# cDovL3d3dy5taWNyb3NvZnQuY29tL3BraS9jZXJ0cy9NaWNUaW1TdGFQQ0FfMjAx -# MC0wNy0wMS5jcnQwDAYDVR0TAQH/BAIwADATBgNVHSUEDDAKBggrBgEFBQcDCDAN -# BgkqhkiG9w0BAQsFAAOCAQEAVJeufNQV8t3TcyWq0Su3nVYZfdRcV6isTp0Zj5gj -# BKZ8VEpE3AR7xyYu3QQ7F7PJNXr7991hPKs9w8O+BHeToXmwd4oTGiGOupyPEBrf -# JVD1IllqRdlUrNodbNu8y4DyRybOPQn9jr+mTntoWyn+Sv6W7lo13DlXdaCK0lin -# ATp+hlCwGtNM81GEhdUwec8STqzb7ucLpPL1ksgmFh4zKou6K0kYq8SJGEPw9jOQ -# YmcuSOnrUgIOT/TRlVm++Vcuie2HfZmih5n3/7vrSj2DaVSEXyhoscIHWLzZ1QKF -# d3Nm6VQTBDkJlaHxYiNBlJS6847W9XQV86p03BwPJe4V0jCCBnEwggRZoAMCAQIC -# CmEJgSoAAAAAAAIwDQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRp -# ZmljYXRlIEF1dGhvcml0eSAyMDEwMB4XDTEwMDcwMTIxMzY1NVoXDTI1MDcwMTIx -# NDY1NVowfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNV -# BAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQG -# A1UEAxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggEiMA0GCSqGSIb3 -# DQEBAQUAA4IBDwAwggEKAoIBAQCpHQ28dxGKOiDs/BOX9fp/aZRrdFQQ1aUKAIKF -# ++18aEssX8XD5WHCdrc+Zitb8BVTJwQxH0EbGpUdzgkTjnxhMFmxMEQP8WCIhFRD -# DNdNuDgIs0Ldk6zWczBXJoKjRQ3Q6vVHgc2/JGAyWGBG8lhHhjKEHnRhZ5FfgVSx -# z5NMksHEpl3RYRNuKMYa+YaAu99h/EbBJx0kZxJyGiGKr0tkiVBisV39dx898Fd1 -# rL2KQk1AUdEPnAY+Z3/1ZsADlkR+79BL/W7lmsqxqPJ6Kgox8NpOBpG2iAg16Hgc -# sOmZzTznL0S6p/TcZL2kAcEgCZN4zfy8wMlEXV4WnAEFTyJNAgMBAAGjggHmMIIB -# 4jAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQU1WM6XIoxkPNDe3xGG8UzaFqF -# bVUwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMA8GA1Ud -# EwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAU1fZWy4/oolxiaNE9lJBb186aGMQwVgYD -# VR0fBE8wTTBLoEmgR4ZFaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraS9jcmwv -# cHJvZHVjdHMvTWljUm9vQ2VyQXV0XzIwMTAtMDYtMjMuY3JsMFoGCCsGAQUFBwEB -# BE4wTDBKBggrBgEFBQcwAoY+aHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraS9j -# ZXJ0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5jcnQwgaAGA1UdIAEB/wSBlTCB -# kjCBjwYJKwYBBAGCNy4DMIGBMD0GCCsGAQUFBwIBFjFodHRwOi8vd3d3Lm1pY3Jv -# c29mdC5jb20vUEtJL2RvY3MvQ1BTL2RlZmF1bHQuaHRtMEAGCCsGAQUFBwICMDQe -# MiAdAEwAZQBnAGEAbABfAFAAbwBsAGkAYwB5AF8AUwB0AGEAdABlAG0AZQBuAHQA -# LiAdMA0GCSqGSIb3DQEBCwUAA4ICAQAH5ohRDeLG4Jg/gXEDPZ2joSFvs+umzPUx -# vs8F4qn++ldtGTCzwsVmyWrf9efweL3HqJ4l4/m87WtUVwgrUYJEEvu5U4zM9GAS -# inbMQEBBm9xcF/9c+V4XNZgkVkt070IQyK+/f8Z/8jd9Wj8c8pl5SpFSAK84Dxf1 -# L3mBZdmptWvkx872ynoAb0swRCQiPM/tA6WWj1kpvLb9BOFwnzJKJ/1Vry/+tuWO -# M7tiX5rbV0Dp8c6ZZpCM/2pif93FSguRJuI57BlKcWOdeyFtw5yjojz6f32WapB4 -# pm3S4Zz5Hfw42JT0xqUKloakvZ4argRCg7i1gJsiOCC1JeVk7Pf0v35jWSUPei45 -# V3aicaoGig+JFrphpxHLmtgOR5qAxdDNp9DvfYPw4TtxCd9ddJgiCGHasFAeb73x -# 4QDf5zEHpJM692VHeOj4qEir995yfmFrb3epgcunCaw5u+zGy9iCtHLNHfS4hQEe -# gPsbiSpUObJb2sgNVZl6h3M7COaYLeqN4DMuEin1wC9UJyH3yKxO2ii4sanblrKn -# QqLJzxlBTeCG+SqaoxFmMNO7dDJL32N79ZmKLxvHIa9Zta7cRDyXUHHXodLFVeNp -# 3lfB0d4wwP3M5k37Db9dT+mdHhk4L7zPWAUu7w2gUDXa7wknHNWzfjUeCLraNtvT -# X4/edIhJEqGCAs4wggI3AgEBMIH4oYHQpIHNMIHKMQswCQYDVQQGEwJVUzELMAkG -# A1UECBMCV0ExEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBD -# b3Jwb3JhdGlvbjEtMCsGA1UECxMkTWljcm9zb2Z0IElyZWxhbmQgT3BlcmF0aW9u -# cyBMaW1pdGVkMSYwJAYDVQQLEx1UaGFsZXMgVFNTIEVTTjo4RDQxLTRCRjctQjNC -# NzElMCMGA1UEAxMcTWljcm9zb2Z0IFRpbWUtU3RhbXAgU2VydmljZaIjCgEBMAcG -# BSsOAwIaAxUAOb12pXHRf+5RrRVyRXbiGmhj3vmggYMwgYCkfjB8MQswCQYDVQQG -# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG -# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQg -# VGltZS1TdGFtcCBQQ0EgMjAxMDANBgkqhkiG9w0BAQUFAAIFAOI5vHgwIhgPMjAy -# MDA0MDkyMzIzMzZaGA8yMDIwMDQxMDIzMjMzNlowdzA9BgorBgEEAYRZCgQBMS8w -# LTAKAgUA4jm8eAIBADAKAgEAAgIJvwIB/zAHAgEAAgIRrzAKAgUA4jsN+AIBADA2 -# BgorBgEEAYRZCgQCMSgwJjAMBgorBgEEAYRZCgMCoAowCAIBAAIDB6EgoQowCAIB -# AAIDAYagMA0GCSqGSIb3DQEBBQUAA4GBAKChfrFH2VFGJJA3GoW3WxY7pTiNsn6T -# 8j+GyTODBf/JjPdsWSOSBnO0FC/5Y89QLw4jwyZE/5kQBQFAyeNtOrsBFN+wj2EK -# 7ZzFgaAQDo2IDUIW+e7L+urrT20tW7cDaSWB4iHFJuhvSG3AXvGy9MzIPCsxbvJd -# jPYmhfvBqEWEMYIDDTCCAwkCAQEwgZMwfDELMAkGA1UEBhMCVVMxEzARBgNVBAgT -# Cldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29m -# dCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENB -# IDIwMTACEzMAAAEKUsg5AVLRcEsAAAAAAQowDQYJYIZIAWUDBAIBBQCgggFKMBoG -# CSqGSIb3DQEJAzENBgsqhkiG9w0BCRABBDAvBgkqhkiG9w0BCQQxIgQgsGwo2TSK -# F5O+kHAJvj04fBHkoe4P5JjsiRZ61Vo+mBkwgfoGCyqGSIb3DQEJEAIvMYHqMIHn -# MIHkMIG9BCBXAzYkM7qhDCgN6EbxXbZtR3HNkNZaGSMYHzfL5NKsqjCBmDCBgKR+ -# MHwxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS -# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMT -# HU1pY3Jvc29mdCBUaW1lLVN0YW1wIFBDQSAyMDEwAhMzAAABClLIOQFS0XBLAAAA -# AAEKMCIEIGLS8zV9vCGmIX5t8c2fw/wEeA1cFwiZpGjbdX6a5d7mMA0GCSqGSIb3 -# DQEBCwUABIIBAKXardYiSbahW47XuYxTwJg9fcgrcKbn1/vcIL6fD8QyebQqLDAB -# lHf1URlHLqcZ4RZY7IwM8PUQ9/QcMBqnmwNu6MtbOyfa/ueALjVH/5zCdjTL4QUn -# Y3IxcIWLnXXBIhpnRLaRxdmSLHVXtFT0N3hheuy53jYJVs1xJB41N+YJ5vh1Gmoi -# 3ZNKmyNtoEJckkd+5sAOB6zmSNix95DX1X9NiCB4jEXHCehfmlsYgcZnW/gYGr36 -# fsVzdNZPGV74wZsy4+cetsD9ceQrFeUlSY+4SVrhMammbbyINx2A/h65/+jgSmZA -# 3LkYsoHy5C6Um3Kq3F87QZhAOGt1EWVDYz0= -# SIG # End signature block diff --git a/src/MariaDb/ChangeLog.md b/src/MariaDb/ChangeLog.md index b76ecb79cf4a..60aff730a241 100644 --- a/src/MariaDb/ChangeLog.md +++ b/src/MariaDb/ChangeLog.md @@ -18,7 +18,13 @@ - Additional information about change #1 --> ## Upcoming Release +* Removed legacy SkuSize from input and output (#12734) +* New/Update-AzMyMariaDbFirewallRule create a default name with time stamp when no name is passed (#12737) +* Added validateset for parameter StorageAutogrow (#12735) +* Renamed New-AzMySqlServerReplica to New-AzMySqlReplica (#12741) +* Used 'master' and 'replica' to avoid confusion when created mysql replica server (#12742) +* Provided hint in doc to use Update-AzMySqlServer & Update-AzMySqlServerConfiguration as a candidate for each other (#12744) +* Fix secure string decrytion issue in PowerShell 7 (#12954) ## Version 0.1.0 * the first preview release - diff --git a/src/MariaDb/build-module.ps1 b/src/MariaDb/build-module.ps1 index 1176009447bf..95b24d19a285 100644 --- a/src/MariaDb/build-module.ps1 +++ b/src/MariaDb/build-module.ps1 @@ -88,7 +88,7 @@ if(-not $Debugger) { $null = Remove-Item -Recurse -ErrorAction SilentlyContinue -Path (Join-Path $binFolder 'Debug'), (Join-Path $binFolder 'Release') } -$dll = Join-Path $PSScriptRoot 'bin/Az.MariaDb.private.dll' +$dll = Join-Path $PSScriptRoot 'bin\Az.MariaDb.private.dll' if(-not (Test-Path $dll)) { Write-Error "Unable to find output assembly in '$binFolder'." } @@ -97,7 +97,7 @@ if(-not (Test-Path $dll)) { $null = Import-Module -Name $dll $modulePaths = $dll -$customPsm1 = Join-Path $PSScriptRoot 'custom/Az.MariaDb.custom.psm1' +$customPsm1 = Join-Path $PSScriptRoot 'custom\Az.MariaDb.custom.psm1' if(Test-Path $customPsm1) { $modulePaths = @($dll, $customPsm1) } diff --git a/src/MariaDb/check-dependencies.ps1 b/src/MariaDb/check-dependencies.ps1 index 30af57603366..23ee92268fde 100644 --- a/src/MariaDb/check-dependencies.ps1 +++ b/src/MariaDb/check-dependencies.ps1 @@ -21,13 +21,15 @@ if(-not $Isolated) { return } -function DownloadModule ([bool]$predicate, [string]$path, [string]$moduleName, [string]$versionMinimum) { +function DownloadModule ([bool]$predicate, [string]$path, [string]$moduleName, [string]$versionMinimum, [string]$requiredVersion) { if($predicate) { $module = Get-Module -ListAvailable -Name $moduleName if((-not $module) -or ($versionMinimum -and ($module | ForEach-Object { $_.Version } | Where-Object { $_ -ge [System.Version]$versionMinimum } | Measure-Object).Count -eq 0)) { $null = New-Item -ItemType Directory -Force -Path $path Write-Host -ForegroundColor Green "Installing local $moduleName module into '$path'..." - if($versionMinimum) { + if ($requiredVersion) { + Find-Module -Name $moduleName -RequiredVersion $requiredVersion -Repository PSGallery | Save-Module -Path $path + }elseif($versionMinimum) { Find-Module -Name $moduleName -MinimumVersion $versionMinimum -Repository PSGallery | Save-Module -Path $path } else { Find-Module -Name $moduleName -Repository PSGallery | Save-Module -Path $path @@ -39,13 +41,13 @@ function DownloadModule ([bool]$predicate, [string]$path, [string]$moduleName, [ $ProgressPreference = 'SilentlyContinue' $all = (@($Accounts.IsPresent, $Pester.IsPresent) | Select-Object -Unique | Measure-Object).Count -eq 1 -$localModulesPath = Join-Path $PSScriptRoot 'generated/modules' +$localModulesPath = Join-Path $PSScriptRoot 'generated\modules' if(Test-Path -Path $localModulesPath) { $env:PSModulePath = "$localModulesPath$([IO.Path]::PathSeparator)$env:PSModulePath" } DownloadModule -predicate ($all -or $Accounts) -path $localModulesPath -moduleName 'Az.Accounts' -versionMinimum '1.7.4' -DownloadModule -predicate ($all -or $Pester) -path $localModulesPath -moduleName 'Pester' -versionMinimum '' +DownloadModule -predicate ($all -or $Pester) -path $localModulesPath -moduleName 'Pester' -requiredVersion '4.10.1' $tools = Join-Path $PSScriptRoot 'tools' $resourceDir = Join-Path $tools 'Resources' diff --git a/src/MariaDb/custom/Az.MariaDb.custom.psm1 b/src/MariaDb/custom/Az.MariaDb.custom.psm1 index eedb9b1b0a9d..8f708e197698 100644 --- a/src/MariaDb/custom/Az.MariaDb.custom.psm1 +++ b/src/MariaDb/custom/Az.MariaDb.custom.psm1 @@ -1,9 +1,9 @@ # region Generated # Load the private module dll - $null = Import-Module -PassThru -Name (Join-Path $PSScriptRoot '../bin/Az.MariaDb.private.dll') + $null = Import-Module -PassThru -Name (Join-Path $PSScriptRoot '..\bin\Az.MariaDb.private.dll') # Load the internal module - $internalModulePath = Join-Path $PSScriptRoot '../internal/Az.MariaDb.internal.psm1' + $internalModulePath = Join-Path $PSScriptRoot '..\internal\Az.MariaDb.internal.psm1' if(Test-Path $internalModulePath) { $null = Import-Module -Name $internalModulePath } @@ -15,196 +15,3 @@ Get-ChildItem -Path $PSScriptRoot -Recurse -Include '*.ps1' -File | ForEach-Object { . $_.FullName } Export-ModuleMember -Function (Get-ScriptCmdlet -ScriptFolder $PSScriptRoot) -Alias (Get-ScriptCmdlet -ScriptFolder $PSScriptRoot -AsAlias) # endregion - -# SIG # Begin signature block -# MIIjhgYJKoZIhvcNAQcCoIIjdzCCI3MCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCCG7HKMOuASf1ma -# BBGwhV+1nVmiuQcWJCLG+d6V3l7ZmKCCDYEwggX/MIID56ADAgECAhMzAAABUZ6N -# j0Bxow5BAAAAAAFRMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p -# bmcgUENBIDIwMTEwHhcNMTkwNTAyMjEzNzQ2WhcNMjAwNTAyMjEzNzQ2WjB0MQsw -# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u -# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB -# AQCVWsaGaUcdNB7xVcNmdfZiVBhYFGcn8KMqxgNIvOZWNH9JYQLuhHhmJ5RWISy1 -# oey3zTuxqLbkHAdmbeU8NFMo49Pv71MgIS9IG/EtqwOH7upan+lIq6NOcw5fO6Os -# +12R0Q28MzGn+3y7F2mKDnopVu0sEufy453gxz16M8bAw4+QXuv7+fR9WzRJ2CpU -# 62wQKYiFQMfew6Vh5fuPoXloN3k6+Qlz7zgcT4YRmxzx7jMVpP/uvK6sZcBxQ3Wg -# B/WkyXHgxaY19IAzLq2QiPiX2YryiR5EsYBq35BP7U15DlZtpSs2wIYTkkDBxhPJ -# IDJgowZu5GyhHdqrst3OjkSRAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE -# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUV4Iarkq57esagu6FUBb270Zijc8w -# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 -# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDU0MTM1MB8GA1UdIwQYMBaAFEhu -# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu -# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w -# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx -# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAWg+A -# rS4Anq7KrogslIQnoMHSXUPr/RqOIhJX+32ObuY3MFvdlRElbSsSJxrRy/OCCZdS -# se+f2AqQ+F/2aYwBDmUQbeMB8n0pYLZnOPifqe78RBH2fVZsvXxyfizbHubWWoUf -# NW/FJlZlLXwJmF3BoL8E2p09K3hagwz/otcKtQ1+Q4+DaOYXWleqJrJUsnHs9UiL -# crVF0leL/Q1V5bshob2OTlZq0qzSdrMDLWdhyrUOxnZ+ojZ7UdTY4VnCuogbZ9Zs -# 9syJbg7ZUS9SVgYkowRsWv5jV4lbqTD+tG4FzhOwcRQwdb6A8zp2Nnd+s7VdCuYF -# sGgI41ucD8oxVfcAMjF9YX5N2s4mltkqnUe3/htVrnxKKDAwSYliaux2L7gKw+bD -# 1kEZ/5ozLRnJ3jjDkomTrPctokY/KaZ1qub0NUnmOKH+3xUK/plWJK8BOQYuU7gK -# YH7Yy9WSKNlP7pKj6i417+3Na/frInjnBkKRCJ/eYTvBH+s5guezpfQWtU4bNo/j -# 8Qw2vpTQ9w7flhH78Rmwd319+YTmhv7TcxDbWlyteaj4RK2wk3pY1oSz2JPE5PNu -# Nmd9Gmf6oePZgy7Ii9JLLq8SnULV7b+IP0UXRY9q+GdRjM2AEX6msZvvPCIoG0aY -# HQu9wZsKEK2jqvWi8/xdeeeSI9FN6K1w4oVQM4Mwggd6MIIFYqADAgECAgphDpDS -# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 -# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla -# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS -# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT -# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB -# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG -# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S -# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz -# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 -# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u -# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 -# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl -# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP -# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB -# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF -# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM -# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ -# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud -# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO -# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 -# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p -# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB -# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw -# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA -# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY -# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj -# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd -# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ -# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf -# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ -# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j -# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B -# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 -# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 -# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I -# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIVWzCCFVcCAQEwgZUwfjELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z -# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAVGejY9AcaMOQQAAAAABUTAN -# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor -# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgTzKgT8+w -# 7PHIvzJJgjP+jZdGww5fGUU7cAx9p0vuHMkwQgYKKwYBBAGCNwIBDDE0MDKgFIAS -# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN -# BgkqhkiG9w0BAQEFAASCAQAydD9EyotKdWQ8wubb+azbXpMM6Td1W6In+pQzly0s -# ikjqk6elp2fKkKPJedbY9I6ijGQX8h5BTKPtgx3pmp9tGp59DNJY6n4xqPwGQORf -# mKQZgmu0RIY12F6cgrMJAzc5tlyYiEW52N/wUtWG6m0KPFmdZjCua3zrc6kSzL/f -# nxd8tp7I0Bc1PTIlrA1PQsWe3KZMAfrhpd3KlobepMNv5R3Scd1+ttk1d9PgaCZn -# JA9hE3nynyO4pLmv12f/BWw4k36axT2CFnr+htE/w+6bxVmNITfaLAKBYCwPEhHM -# HyxwVN3i20R63FIQbHb8Kio8M8r+PX3w+Xtn/eXniMc/oYIS5TCCEuEGCisGAQQB -# gjcDAwExghLRMIISzQYJKoZIhvcNAQcCoIISvjCCEroCAQMxDzANBglghkgBZQME -# AgEFADCCAVEGCyqGSIb3DQEJEAEEoIIBQASCATwwggE4AgEBBgorBgEEAYRZCgMB -# MDEwDQYJYIZIAWUDBAIBBQAEIJL9jY51+r8TQgjvKDRHWwOUvn9HtbYa41V27oez -# u0Z0AgZegg4AMlEYEzIwMjAwNDEwMDMxNjQ1LjI2NFowBIACAfSggdCkgc0wgcox -# CzAJBgNVBAYTAlVTMQswCQYDVQQIEwJXQTEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG -# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg -# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg -# RVNOOjNCRDQtNEI4MC02OUMzMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt -# cCBTZXJ2aWNloIIOPDCCBPEwggPZoAMCAQICEzMAAAEL5Pm+j29MHdAAAAAAAQsw -# DQYJKoZIhvcNAQELBQAwfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0 -# b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3Jh -# dGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwHhcN -# MTkxMDIzMjMxOTE1WhcNMjEwMTIxMjMxOTE1WjCByjELMAkGA1UEBhMCVVMxCzAJ -# BgNVBAgTAldBMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQg -# Q29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlv -# bnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046M0JENC00QjgwLTY5 -# QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2UwggEiMA0G -# CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCXAtWdRjFBuM+D2nhUKLVuWv9cZcq1 -# /8emykQBplDii8DqwwCNnD0zJhz7n94WtWjFsc5KL/dF8gKWTMRH5MVTa5dxCJu6 -# VtZobc+sztM+0JPM5Vmcb/7D+AlFERGAkQGGxO/Z4fxHH1/EcZ/iwUimzafXjBOl -# IQ3RSxUAj980liuAyNCrj8JdunGR3nVSRvxJtWpUZvlIUrYY4LDmJJsFsI8gsch3 -# LrchmPeBkoxsvy7RpKhcOQtTYacD48vz7fzT2ciciJqAXxZt7fth8sgqKiUURCVu -# SlcUKXBXm/1dcYCKqOoUz2YGu2i0t4K/X17JWZ5jdN1vxqzSQa9P4PHxAgMBAAGj -# ggEbMIIBFzAdBgNVHQ4EFgQUrR/Z6h2KHpzgmA1QRGX/921e3u8wHwYDVR0jBBgw -# FoAU1WM6XIoxkPNDe3xGG8UzaFqFbVUwVgYDVR0fBE8wTTBLoEmgR4ZFaHR0cDov -# L2NybC5taWNyb3NvZnQuY29tL3BraS9jcmwvcHJvZHVjdHMvTWljVGltU3RhUENB -# XzIwMTAtMDctMDEuY3JsMFoGCCsGAQUFBwEBBE4wTDBKBggrBgEFBQcwAoY+aHR0 -# cDovL3d3dy5taWNyb3NvZnQuY29tL3BraS9jZXJ0cy9NaWNUaW1TdGFQQ0FfMjAx -# MC0wNy0wMS5jcnQwDAYDVR0TAQH/BAIwADATBgNVHSUEDDAKBggrBgEFBQcDCDAN -# BgkqhkiG9w0BAQsFAAOCAQEAJuijnanvNrS63e87CK0gwImI8C4JdhxLLPnA6m/p -# USXWel9KCa3t95NRNO36NgemDxhskz7rVHiUigb1pJdm+TB5Shg2DlPi1UhdCTaN -# 5lTWZ+rHAFfDI4i2gdKOwdyug73m5ja2dqfDTl2Di5axwcBgDvGsZLfBm+aGut2v -# UGBBg1QjMKfqQGqMJCYwXPGdHmwRN1UN5MpORBkTmk2DEWWjRm0LKQ1/eV4KYiU5 -# cV4GC0/8/q/X71wbrwdyH2Zyvh2mIOE+4T9mZc7H0CzZ8QdqTHd2xbTT1GSNReeY -# YlnTkWlCiELjYkInHUfwumC1pCuZMf4ITNw7KjeOGPyKDTCCBnEwggRZoAMCAQIC -# CmEJgSoAAAAAAAIwDQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRp -# ZmljYXRlIEF1dGhvcml0eSAyMDEwMB4XDTEwMDcwMTIxMzY1NVoXDTI1MDcwMTIx -# NDY1NVowfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNV -# BAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQG -# A1UEAxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggEiMA0GCSqGSIb3 -# DQEBAQUAA4IBDwAwggEKAoIBAQCpHQ28dxGKOiDs/BOX9fp/aZRrdFQQ1aUKAIKF -# ++18aEssX8XD5WHCdrc+Zitb8BVTJwQxH0EbGpUdzgkTjnxhMFmxMEQP8WCIhFRD -# DNdNuDgIs0Ldk6zWczBXJoKjRQ3Q6vVHgc2/JGAyWGBG8lhHhjKEHnRhZ5FfgVSx -# z5NMksHEpl3RYRNuKMYa+YaAu99h/EbBJx0kZxJyGiGKr0tkiVBisV39dx898Fd1 -# rL2KQk1AUdEPnAY+Z3/1ZsADlkR+79BL/W7lmsqxqPJ6Kgox8NpOBpG2iAg16Hgc -# sOmZzTznL0S6p/TcZL2kAcEgCZN4zfy8wMlEXV4WnAEFTyJNAgMBAAGjggHmMIIB -# 4jAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQU1WM6XIoxkPNDe3xGG8UzaFqF -# bVUwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMA8GA1Ud -# EwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAU1fZWy4/oolxiaNE9lJBb186aGMQwVgYD -# VR0fBE8wTTBLoEmgR4ZFaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraS9jcmwv -# cHJvZHVjdHMvTWljUm9vQ2VyQXV0XzIwMTAtMDYtMjMuY3JsMFoGCCsGAQUFBwEB -# BE4wTDBKBggrBgEFBQcwAoY+aHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraS9j -# ZXJ0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5jcnQwgaAGA1UdIAEB/wSBlTCB -# kjCBjwYJKwYBBAGCNy4DMIGBMD0GCCsGAQUFBwIBFjFodHRwOi8vd3d3Lm1pY3Jv -# c29mdC5jb20vUEtJL2RvY3MvQ1BTL2RlZmF1bHQuaHRtMEAGCCsGAQUFBwICMDQe -# MiAdAEwAZQBnAGEAbABfAFAAbwBsAGkAYwB5AF8AUwB0AGEAdABlAG0AZQBuAHQA -# LiAdMA0GCSqGSIb3DQEBCwUAA4ICAQAH5ohRDeLG4Jg/gXEDPZ2joSFvs+umzPUx -# vs8F4qn++ldtGTCzwsVmyWrf9efweL3HqJ4l4/m87WtUVwgrUYJEEvu5U4zM9GAS -# inbMQEBBm9xcF/9c+V4XNZgkVkt070IQyK+/f8Z/8jd9Wj8c8pl5SpFSAK84Dxf1 -# L3mBZdmptWvkx872ynoAb0swRCQiPM/tA6WWj1kpvLb9BOFwnzJKJ/1Vry/+tuWO -# M7tiX5rbV0Dp8c6ZZpCM/2pif93FSguRJuI57BlKcWOdeyFtw5yjojz6f32WapB4 -# pm3S4Zz5Hfw42JT0xqUKloakvZ4argRCg7i1gJsiOCC1JeVk7Pf0v35jWSUPei45 -# V3aicaoGig+JFrphpxHLmtgOR5qAxdDNp9DvfYPw4TtxCd9ddJgiCGHasFAeb73x -# 4QDf5zEHpJM692VHeOj4qEir995yfmFrb3epgcunCaw5u+zGy9iCtHLNHfS4hQEe -# gPsbiSpUObJb2sgNVZl6h3M7COaYLeqN4DMuEin1wC9UJyH3yKxO2ii4sanblrKn -# QqLJzxlBTeCG+SqaoxFmMNO7dDJL32N79ZmKLxvHIa9Zta7cRDyXUHHXodLFVeNp -# 3lfB0d4wwP3M5k37Db9dT+mdHhk4L7zPWAUu7w2gUDXa7wknHNWzfjUeCLraNtvT -# X4/edIhJEqGCAs4wggI3AgEBMIH4oYHQpIHNMIHKMQswCQYDVQQGEwJVUzELMAkG -# A1UECBMCV0ExEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBD -# b3Jwb3JhdGlvbjEtMCsGA1UECxMkTWljcm9zb2Z0IElyZWxhbmQgT3BlcmF0aW9u -# cyBMaW1pdGVkMSYwJAYDVQQLEx1UaGFsZXMgVFNTIEVTTjozQkQ0LTRCODAtNjlD -# MzElMCMGA1UEAxMcTWljcm9zb2Z0IFRpbWUtU3RhbXAgU2VydmljZaIjCgEBMAcG -# BSsOAwIaAxUA8f35HTFqU9zwihI9ktmsPgpwMFKggYMwgYCkfjB8MQswCQYDVQQG -# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG -# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQg -# VGltZS1TdGFtcCBQQ0EgMjAxMDANBgkqhkiG9w0BAQUFAAIFAOI5u00wIhgPMjAy -# MDA0MDkyMzE4MzdaGA8yMDIwMDQxMDIzMTgzN1owdzA9BgorBgEEAYRZCgQBMS8w -# LTAKAgUA4jm7TQIBADAKAgEAAgIRCQIB/zAHAgEAAgIRszAKAgUA4jsMzQIBADA2 -# BgorBgEEAYRZCgQCMSgwJjAMBgorBgEEAYRZCgMCoAowCAIBAAIDB6EgoQowCAIB -# AAIDAYagMA0GCSqGSIb3DQEBBQUAA4GBAIJg8HsA3UCcjrkEVpQ0eV/aTNsbgN4H -# 1Qog7VM3y9Vw6rKpMpyHC6U+6WLO/5tRfRpiH1+Zt9jgDm/27go3wv3QKOY//tCz -# IjcoCtCXcpJkhSgW/d3OutRbH5lxDPTumXZd69dqpjqvp2+QVSVc6lAs5sa9hyTW -# nSLomaDxhztJMYIDDTCCAwkCAQEwgZMwfDELMAkGA1UEBhMCVVMxEzARBgNVBAgT -# Cldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29m -# dCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENB -# IDIwMTACEzMAAAEL5Pm+j29MHdAAAAAAAQswDQYJYIZIAWUDBAIBBQCgggFKMBoG -# CSqGSIb3DQEJAzENBgsqhkiG9w0BCRABBDAvBgkqhkiG9w0BCQQxIgQg6l8JmHlU -# Hl5nroeS4IQPb3/ZBWQjSt3fpvLqzbwCLfswgfoGCyqGSIb3DQEJEAIvMYHqMIHn -# MIHkMIG9BCA0j9DOIFM+OiSX8XAkXAXivRR0LPHA6cVU/ATAE1xziDCBmDCBgKR+ -# MHwxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS -# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMT -# HU1pY3Jvc29mdCBUaW1lLVN0YW1wIFBDQSAyMDEwAhMzAAABC+T5vo9vTB3QAAAA -# AAELMCIEIAJBiGpmPKhwZUnDeGq9mB2rWhHU/UlKAAAyK+Hv4o3UMA0GCSqGSIb3 -# DQEBCwUABIIBAHAeRyryNrI4Gg9n68sEutqAPN+JNRckRdkYvsDRw/2CFIKQfmgA -# l+KEatgSituQDBHZ4f8SmwpdlEKXDIn6jlv0MxXUmCTiVXfDkdNNMcu3snJXxfIx -# yQzLWeUK5PE1VepFFzgAIskQs1CN4sLfyt33GJvcAcTuwYRKw8tP/K8SVfFCWRX4 -# cEUujeCCOpW83hSvxxs6M01rq6446p1YGo83V7+CvI5qoy4HCDrMaTOiRZnzheLq -# uwUsv/8D430PKRKlyXcn8lZJLGFquLdk79iiOsjhNmwRA9OW9Lm+bloViKqyhRYv -# gQ5RsLMkVY4YjPssxs2z0ZAn6SS/uAC63Wc= -# SIG # End signature block diff --git a/src/MariaDb/custom/Get-AzMariaDBConnectionString.ps1 b/src/MariaDb/custom/Get-AzMariaDBConnectionString.ps1 index 81e017ace879..e0518a6811db 100644 --- a/src/MariaDb/custom/Get-AzMariaDBConnectionString.ps1 +++ b/src/MariaDb/custom/Get-AzMariaDBConnectionString.ps1 @@ -1,3 +1,4 @@ + # ---------------------------------------------------------------------------------- # # Copyright Microsoft Corporation @@ -14,18 +15,9 @@ <# .Synopsis -Get connection string of a MariaDb under a given framework. +Get connection string of a MariaDB under a given framework. .Description -Get connection string of a MariaDb under a given framework. -.Example -To view examples, please use the -Online parameter with Get-Help or navigate to: https://docs.microsoft.com/en-us/powershell/module/az.mariadb/get-azmariadbconnectionstring -.Outputs -System.String -.Notes -COMPLEX PARAMETER PROPERTIES -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -.Link -https://docs.microsoft.com/en-us/powershell/module/az.mariadb/get-azmariadbconnectionstring +Get connection string of a MariaDB under a given framework. #> function Get-AzMariaDbConnectionString { [OutputType([System.String])] @@ -150,4 +142,4 @@ function Get-AzMariaDbConnectionString { } return $ConnectionStringMap[$Client] } -} \ No newline at end of file +} diff --git a/src/MariaDb/custom/New-AzMariaDBServer.ps1 b/src/MariaDb/custom/New-AzMariaDBServer.ps1 index 6e3f9bb57adf..c6d3fd5a0b11 100644 --- a/src/MariaDb/custom/New-AzMariaDBServer.ps1 +++ b/src/MariaDb/custom/New-AzMariaDBServer.ps1 @@ -14,28 +14,19 @@ <# .Synopsis -Creates a new MariaDb. +Creates a new MariaDB. .Description -Creates a new MariaDb. -.Example -To view examples, please use the -Online parameter with Get-Help or navigate to: https://docs.microsoft.com/en-us/powershell/module/az.mariadb/new-azmariadbserver -.Outputs -Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer -.Notes -COMPLEX PARAMETER PROPERTIES -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -.Link -https://docs.microsoft.com/en-us/powershell/module/az.mariadb/new-azmariadbserver +Creates a new MariaDB. #> function New-AzMariaDbServer { [OutputType([Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer])] [CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( - [Parameter(Mandatory, HelpMessage='MariaDb server name.')] + [Parameter(Mandatory, HelpMessage='MariaDB server name.')] [Alias('ServerName')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] [System.String] - # MariaDb server name. + # MariaDB server name. ${Name}, [Parameter(Mandatory, HelpMessage='The name of the resource group that contains the resource.')] @@ -85,6 +76,8 @@ function New-AzMariaDbServer { ${GeoRedundantBackup}, [Parameter(HelpMessage='Enable Storage Auto Grow.')] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow])] + [Validateset('Enabled', 'Disabled')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow] # Enable Storage Auto Grow. @@ -246,8 +239,7 @@ function New-AzMariaDbServer { $Parameter.Property.AdministratorLogin = $PSBoundParameters['AdministratorUsername'] $null = $PSBoundParameters.Remove('AdministratorUsername') - $BSTR = [System.Runtime.InteropServices.Marshal]::SecureStringToBSTR($PSBoundParameters['AdministratorLoginPassword']) - $Parameter.Property.AdministratorLoginPassword = [System.Runtime.InteropServices.Marshal]::PtrToStringAuto($BSTR) + $Parameter.Property.AdministratorLoginPassword = . "$PSScriptRoot/../utils/Unprotect-SecureString.ps1" $PSBoundParameters['AdministratorLoginPassword'] $null = $PSBoundParameters.Remove('AdministratorLoginPassword') $null = $PSBoundParameters.Add('Parameter', $Parameter) @@ -258,4 +250,3 @@ function New-AzMariaDbServer { } } } - \ No newline at end of file diff --git a/src/MariaDb/custom/New-AzMariaDbFirewallRule.ps1 b/src/MariaDb/custom/New-AzMariaDbFirewallRule.ps1 new file mode 100644 index 000000000000..a092b08fc2b9 --- /dev/null +++ b/src/MariaDb/custom/New-AzMariaDbFirewallRule.ps1 @@ -0,0 +1,179 @@ + +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.Synopsis +Creates a new firewall rule or updates an existing firewall rule. +.Description +Creates a new firewall rule or updates an existing firewall rule. +#> +function New-AzMariaDbFirewallRule { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRule])] +[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter()] + [Alias('FirewallRuleName')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] + [System.String] + # The name of the server firewall rule. + # If not specified, the default is undefined. + # If AllowAll is present, the default name is AllowAll_yyyy-MM-dd_HH-mm-ss. + ${Name}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] + [System.String] + # The name of the resource group that contains the resource. + # You can obtain this value from the Azure Resource Manager API or the portal. + ${ResourceGroupName}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] + [System.String] + # The name of the server. + ${ServerName}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # The subscription ID that identifies an Azure subscription. + ${SubscriptionId}, + + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] + [System.String] + # The end IP address of the server firewall rule. + # Must be IPv4 format. + ${EndIPAddress}, + + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] + [System.String] + # The start IP address of the server firewall rule. + # Must be IPv4 format. + ${StartIPAddress}, + + [Parameter(ParameterSetName='ClientIPAddress', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] + [System.String] + # Client specified single IP of the server firewall rule. + # Must be IPv4 format. + ${ClientIPAddress}, + + [Parameter(ParameterSetName='AllowAll', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] + [System.Management.Automation.SwitchParameter] + # Present to allow all range IPs, from 0.0.0.0 to 255.255.255.255. + ${AllowAll}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +process { + try { + if($PSBoundParameters.ContainsKey('AllowAll')) + { + if(!$PSBoundParameters.ContainsKey('Name')) + { + $PSBoundParameters['Name'] = Get-Date -Format "AllowAll_yyyy-MM-dd_HH-mm-ss" + } + $PSBoundParameters['StartIPAddress'] = "0.0.0.0" + $PSBoundParameters['EndIPAddress'] = "255.255.255.255" + + $null = $PSBoundParameters.Remove('AllowAll') + } + elseif($PSBoundParameters.ContainsKey('ClientIPAddress')) + { + $PSBoundParameters['StartIPAddress'] = $PSBoundParameters['ClientIPAddress'] + $PSBoundParameters['EndIPAddress'] = $PSBoundParameters['ClientIPAddress'] + + if(!$PSBoundParameters.ContainsKey('Name')) + { + $PSBoundParameters['Name'] = "ClientIPAddress_" + (Get-Date -Format "yyyy-MM-dd_HH-mm-ss") + } + + $null = $PSBoundParameters.Remove('ClientIPAddress') + } + else + { + if(!$PSBoundParameters.ContainsKey('Name')) + { + $PSBoundParameters['Name'] = "undefined" + } + } + Az.MariaDb.internal\New-AzMariaDbFirewallRule @PSBoundParameters + } catch { + throw + } +} +} diff --git a/src/MariaDb/custom/New-AzMariaDbServerReplica.ps1 b/src/MariaDb/custom/New-AzMariaDbReplica.ps1 similarity index 80% rename from src/MariaDb/custom/New-AzMariaDbServerReplica.ps1 rename to src/MariaDb/custom/New-AzMariaDbReplica.ps1 index 6904e0096b13..a6f201f01fcd 100644 --- a/src/MariaDb/custom/New-AzMariaDbServerReplica.ps1 +++ b/src/MariaDb/custom/New-AzMariaDbReplica.ps1 @@ -14,41 +14,34 @@ <# .Synopsis -Creates a replica of a MariaDb server. +Creates a replica of a MariaDB server. .Description -Creates a replica of a MariaDb server. -.Example -To view examples, please use the -Online parameter with Get-Help or navigate to: https://docs.microsoft.com/en-us/powershell/module/az.mariadb/new-azmariadbserverreplica -.Outputs -Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer -.Notes -COMPLEX PARAMETER PROPERTIES -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -.Link -https://docs.microsoft.com/en-us/powershell/module/az.mariadb/new-azmariadbserverreplica +Creates a replica of a MariaDB server. #> -function New-AzMariaDbServerReplica { +function New-AzMariaDbReplica { [OutputType([Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer])] [CmdletBinding(DefaultParameterSetName='ServerName', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory, HelpMessage='Replica name.')] - [Alias('ReplicaServerName')] + [Alias('ReplicaServerName', 'Name')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] [System.String] # Replica name - ${Name}, + ${ReplicaName}, [Parameter(ParameterSetName='ServerObject', Mandatory, ValueFromPipeline, HelpMessage='The source server object to restore from.')] + [Alias('InputObject')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer] # The source server object to restore from. - ${InputObject}, + ${Master}, - [Parameter(ParameterSetName='ServerName', Mandatory, HelpMessage='MariaDb server name.')] + [Parameter(ParameterSetName='ServerName', Mandatory, HelpMessage='MariaDB server name.')] + [Alias('ServerName')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] [System.String] - # MariaDb server name. - ${ServerName}, + # MariaDB server name. + ${MasterName}, [Parameter(ParameterSetName='ServerName', Mandatory, HelpMessage='You can obtain this value from the Azure Resource Manager API or the portal.')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] @@ -152,17 +145,35 @@ function New-AzMariaDbServerReplica { try { $Parameter = [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ServerForCreate]::new() $Parameter.Property = [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ServerPropertiesForReplica]::new() + + if($PSBoundParameters.ContainsKey('ReplicaName')) { + $PSBoundParameters['Name'] = $PSBoundParameters['ReplicaName'] + $Null = $PSBoundParameters.Remove('ReplicaName') + } #region ServerForCreate - $ServerObject = $InputObject - if (-not $PSBoundParameters.ContainsKey('InputObject')) { - $ServerObject = Get-AzMariaDbServer -ResourceGroupName $ResourceGroupName -Name $ServerName -SubscriptionId $SubscriptionId - $Null = $PSBoundParameters.Remove('ServerName') + $ServerObject = $Master + if (-not $PSBoundParameters.ContainsKey('Master')) { + $GetMariadbDbPSBoundParameters = @{} + if ($PSBoundParameters.ContainsKey('HttpPipelineAppend')) { + $GetMariadbDbPSBoundParameters['HttpPipelineAppend'] = $HttpPipelineAppend + } + if ($PSBoundParameters.ContainsKey('HttpPipelinePrepend')) { + $GetMariadbDbPSBoundParameters['HttpPipelinePrepend'] = $HttpPipelinePrepend + } + $ServerObject = Get-AzMariaDbServer -ResourceGroupName $ResourceGroupName -Name $MasterName -SubscriptionId $SubscriptionId @GetMariadbDbPSBoundParameters + + # if ($PSBoundParameters.ContainsKey('HttpPipelineAppend')) { + # $ServerObject = Get-AzMariaDbServer -ResourceGroupName $ResourceGroupName -Name $MasterName -SubscriptionId $SubscriptionId -HttpPipelineAppend $HttpPipelineAppend + # } else { + # $ServerObject = Get-AzMariaDbServer -ResourceGroupName $ResourceGroupName -Name $MasterName -SubscriptionId $SubscriptionId + # } + $Null = $PSBoundParameters.Remove('MasterName') } else { - $Fields = $InputObject.Id.Split('/') + $Fields = $Master.Id.Split('/') $PSBoundParameters['SubscriptionId'] = $Fields[2] $PSBoundParameters['ResourceGroupName'] = $Fields[4] - $Null = $PSBoundParameters.Remove('InputObject') + $Null = $PSBoundParameters.Remove('Master') } $Parameter.Property.SourceServerId = $ServerObject.Id @@ -188,11 +199,10 @@ function New-AzMariaDbServerReplica { $PSBoundParameters.Add('Parameter', $Parameter) - + Az.MariaDb.internal\New-AzMariaDbServer @PSBoundParameters } catch { throw } } } - \ No newline at end of file diff --git a/src/MariaDb/custom/Restart-AzMariaDbServer.ps1 b/src/MariaDb/custom/Restart-AzMariaDbServer.ps1 index 15a520466a63..3ffaddac04af 100644 --- a/src/MariaDb/custom/Restart-AzMariaDbServer.ps1 +++ b/src/MariaDb/custom/Restart-AzMariaDbServer.ps1 @@ -18,15 +18,6 @@ Restarts a server. .Description Restarts a server. -.Example -To view examples, please use the -Online parameter with Get-Help or navigate to: https://docs.microsoft.com/en-us/powershell/module/az.mariadb/restart-azmariadbserver -.Outputs -System.Boolean -.Notes -COMPLEX PARAMETER PROPERTIES -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -.Link -https://docs.microsoft.com/en-us/powershell/module/az.mariadb/restart-azmariadbserver #> function Restart-AzMariaDbServer { [OutputType([System.Boolean])] diff --git a/src/MariaDb/custom/Restore-AzMariaDBServer.ps1 b/src/MariaDb/custom/Restore-AzMariaDBServer.ps1 index d09135cb4349..41e8d07ec3b6 100644 --- a/src/MariaDb/custom/Restore-AzMariaDBServer.ps1 +++ b/src/MariaDb/custom/Restore-AzMariaDBServer.ps1 @@ -14,18 +14,9 @@ <# .Synopsis -Restore a MariaDb from a existing MariaDb. +Restore a MariaDB from a existing MariaDB. .Description -Restore a MariaDb from a existing MariaDb. -.Example -To view examples, please use the -Online parameter with Get-Help or navigate to: https://docs.microsoft.com/en-us/powershell/module/az.mariadb/restore-azmariadbserver -.Outputs -Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer -.Notes -COMPLEX PARAMETER PROPERTIES -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -.Link -https://docs.microsoft.com/en-us/powershell/module/az.mariadb/restore-azmariadbserver +Restore a MariaDB from a existing MariaDB. #> function Restore-AzMariaDbServer { @@ -185,7 +176,24 @@ function Restore-AzMariaDbServer $ServerObject = $InputObject if (-not $PSBoundParameters.ContainsKey('InputObject')) { - $ServerObject = Get-AzMariaDbServer -ResourceGroupName $ResourceGroupName -Name $ServerName -SubscriptionId $SubscriptionId + + $GetMariadbDbPSBoundParameters = @{} + if ($PSBoundParameters.ContainsKey('HttpPipelineAppend')) { + $GetMariadbDbPSBoundParameters['HttpPipelineAppend'] = $HttpPipelineAppend + } + if ($PSBoundParameters.ContainsKey('HttpPipelinePrepend')) { + $GetMariadbDbPSBoundParameters['HttpPipelinePrepend'] = $HttpPipelinePrepend + } + if ($PSBoundParameters.ContainsKey('Proxy')) { + $GetMariadbDbPSBoundParameters['Proxy'] = $Proxy + } + if ($PSBoundParameters.ContainsKey('ProxyCredential')) { + $GetMariadbDbPSBoundParameters['ProxyCredential'] = $ProxyCredential + } + if ($PSBoundParameters.ContainsKey('ProxyUseDefaultCredentials')) { + $GetMariadbDbPSBoundParameters['ProxyUseDefaultCredentials'] = $ProxyUseDefaultCredentials + } + $ServerObject = Get-AzMariaDbServer -ResourceGroupName $ResourceGroupName -Name $ServerName -SubscriptionId $SubscriptionId @GetMariadbDbPSBoundParameters $Null = $PSBoundParameters.Remove('ServerName') } else { @@ -214,4 +222,4 @@ function Restore-AzMariaDbServer throw } } -} \ No newline at end of file +} diff --git a/src/MariaDb/custom/Update-AzMariaDBServer.ps1 b/src/MariaDb/custom/Update-AzMariaDBServer.ps1 index 5a09c4d8106e..da24169da689 100644 --- a/src/MariaDb/custom/Update-AzMariaDBServer.ps1 +++ b/src/MariaDb/custom/Update-AzMariaDBServer.ps1 @@ -15,42 +15,20 @@ <# .Synopsis -Updates an existing server. -The request body can contain one to many of the properties present in the normal server definition. +Updates an existing server. The request body can contain one to many of the properties present in the normal server definition. Use Update-AzMariaDbConfiguration instead if you want update server parameters such as wait_timeout or net_retry_count. .Description -Updates an existing server. -The request body can contain one to many of the properties present in the normal server definition. -.Example -PS C:\> Update-AzMariaDbServer -Name mariadb-test-4rmtig -ResourceGroupName mariadb-test-qu5ov0 -StorageInMb 8192 - -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mariadb-test-4rmtig eastus xofavpndqj 10.2 8192 B_Gen5_1 Basic Enabled -.Example -PS C:\> Get-AzMariaDbServer -Name mariadb-test-4rmtig -ResourceGroupName mariadb-test-qu5ov0 | Update-AzMariaDbServer -StorageInMb (8192+1024) - -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mariadb-test-4rmtig eastus xofavpndqj 10.2 9216 B_Gen5_1 Basic Enabled - -.Outputs -Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer -.Notes -COMPLEX PARAMETER PROPERTIES -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -.Link -https://docs.microsoft.com/en-us/powershell/module/az.mariadb/update-azmariadbserver +Updates an existing server. The request body can contain one to many of the properties present in the normal server definition. Use Update-AzMariaDbConfiguration instead if you want update server parameters such as wait_timeout or net_retry_count. #> function Update-AzMariaDbServer { [OutputType([Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer])] [CmdletBinding(DefaultParameterSetName='ServerName', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( - [Parameter(ParameterSetName='ServerName', Mandatory, HelpMessage='MariaDb server name')] + [Parameter(ParameterSetName='ServerName', Mandatory, HelpMessage='MariaDB server name')] [Alias('ServerName')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] [System.String] - # MariaDb server name. + # MariaDB server name. ${Name}, [Parameter(ParameterSetName='ServerName', Mandatory, HelpMessage='The name of the resource group that contains the resource.')] @@ -107,6 +85,8 @@ function Update-AzMariaDbServer ${GeoRedundantBackup}, [Parameter(HelpMessage='Enable Storage Auto Grow.')] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow])] + [Validateset('Enabled', 'Disabled')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow] # Enable Storage Auto Grow. @@ -197,8 +177,7 @@ function Update-AzMariaDbServer process { try { if ($PSBoundParameters.ContainsKey('AdministratorLoginPassword')) { - $BSTR = [System.Runtime.InteropServices.Marshal]::SecureStringToBSTR($PSBoundParameters['AdministratorLoginPassword']) - $PSBoundParameters['AdministratorLoginPassword'] = [System.Runtime.InteropServices.Marshal]::PtrToStringAuto($BSTR) + $PSBoundParameters['AdministratorLoginPassword'] = . "$PSScriptRoot/../utils/Unprotect-SecureString.ps1" $PSBoundParameters['AdministratorLoginPassword'] $Null = $PSBoundParameters.Remove('AdministratorLoginPassword') } diff --git a/src/MariaDb/custom/Update-AzMariaDbConfiguration.ps1 b/src/MariaDb/custom/Update-AzMariaDbConfiguration.ps1 new file mode 100644 index 000000000000..e2fb2e428263 --- /dev/null +++ b/src/MariaDb/custom/Update-AzMariaDbConfiguration.ps1 @@ -0,0 +1,141 @@ + +# ---------------------------------------------------------------------------------- +# +# 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 +Updates a configuration of a server. +Use Update-AzMariaDbServer instead if you want update AdministratorLoginPassword, sku, etc. +.Description +Updates a configuration of a server. +Use Update-AzMariaDberver instead if you want update AdministratorLoginPassword, sku, etc. +#> +function Update-AzMariaDbConfiguration { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfiguration])] +[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Alias('ConfigurationName')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] + [System.String] + # The name of the server configuration. + ${Name}, + + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] + [System.String] + # The name of the resource group that contains the resource. + # You can obtain this value from the Azure Resource Manager API or the portal. + ${ResourceGroupName}, + + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] + [System.String] + # The name of the server. + ${ServerName}, + + [Parameter(ParameterSetName='UpdateExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # The subscription ID that identifies an Azure subscription. + ${SubscriptionId}, + + [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] + [System.String] + # Source of the configuration. + ${Source}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] + [System.String] + # Value of the configuration. + ${Value}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +process { + try { + Az.MariaDb.internal\Update-AzMariaDbConfiguration @PSBoundParameters + } catch { + throw + } +} +} diff --git a/src/MariaDb/custom/Update-AzMariaDbFirewallRule.ps1 b/src/MariaDb/custom/Update-AzMariaDbFirewallRule.ps1 new file mode 100644 index 000000000000..5c15bc0abab9 --- /dev/null +++ b/src/MariaDb/custom/Update-AzMariaDbFirewallRule.ps1 @@ -0,0 +1,162 @@ + +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.Synopsis +Creates a new firewall rule or updates an existing firewall rule. +.Description +Creates a new firewall rule or updates an existing firewall rule. +#> +function Update-AzMariaDbFirewallRule { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRule])] +[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(ParameterSetName='ClientIPAddress', Mandatory)] + [Alias('FirewallRuleName')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] + [System.String] + # The name of the server firewall rule. + ${Name}, + + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(ParameterSetName='ClientIPAddress', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] + [System.String] + # The name of the resource group that contains the resource. + # You can obtain this value from the Azure Resource Manager API or the portal. + ${ResourceGroupName}, + + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(ParameterSetName='ClientIPAddress', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] + [System.String] + # The name of the server. + ${ServerName}, + + [Parameter(ParameterSetName='UpdateExpanded')] + [Parameter(ParameterSetName='ClientIPAddress')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # The subscription ID that identifies an Azure subscription. + ${SubscriptionId}, + + [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] + [Parameter(ParameterSetName='ClientIPAddressViaIdentity', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] + [System.String] + # The end IP address of the server firewall rule. + # Must be IPv4 format. + ${EndIPAddress}, + + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] + [System.String] + # The start IP address of the server firewall rule. + # Must be IPv4 format. + ${StartIPAddress}, + + [Parameter(ParameterSetName='ClientIPAddress', Mandatory)] + [Parameter(ParameterSetName='ClientIPAddressViaIdentity', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] + [System.String] + # Client specified single IP of the server firewall rule. + # Must be IPv4 format. + ${ClientIPAddress}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +process { + try { + if($PSBoundParameters.ContainsKey('ClientIPAddress')) + { + $PSBoundParameters['StartIPAddress'] = $PSBoundParameters['ClientIPAddress'] + $PSBoundParameters['EndIPAddress'] = $PSBoundParameters['ClientIPAddress'] + $null = $PSBoundParameters.Remove('ClientIPAddress') + } + Az.MariaDb.internal\Update-AzMariaDbFirewallRule @PSBoundParameters + } catch { + throw + } +} +} diff --git a/src/MariaDb/custom/readme.md b/src/MariaDb/custom/readme.md index 5ca57bb44e11..a15ec6d7381f 100644 --- a/src/MariaDb/custom/readme.md +++ b/src/MariaDb/custom/readme.md @@ -1,5 +1,5 @@ # Custom -This directory contains custom implementation for non-generated cmdlets for the `Az.MariaDb` module. Both scripts (`.ps1`) and C# files (`.cs`) can be implemented here. They will be used during the build process in `build-module.ps1`, and create cmdlets into the `../exports` folder. The only generated file into this folder is the `Az.MariaDb.custom.psm1`. This file should not be modified. +This directory contains custom implementation for non-generated cmdlets for the `Az.MariaDb` module. Both scripts (`.ps1`) and C# files (`.cs`) can be implemented here. They will be used during the build process in `build-module.ps1`, and create cmdlets into the `..\exports` folder. The only generated file into this folder is the `Az.MariaDb.custom.psm1`. This file should not be modified. ## Info - Modifiable: yes @@ -15,10 +15,10 @@ For C# cmdlets, they are compiled with the rest of the generated low-level cmdle For script cmdlets, these are loaded via the `Az.MariaDb.custom.psm1`. Then, during the build process, this module is loaded and processed in the same manner as the C# cmdlets. The fundemental difference is the script cmdlets use the `ParameterSetName` attribute and C# cmdlets do not. To create a script cmdlet variant of a generated cmdlet, simply decorate all parameters in the script with the new `ParameterSetName` in the `Parameter` attribute. This will appropriately treat each parameter set as a separate variant when processed to be exported during the build. ## Purpose -This allows the modules to have cmdlets that were not defined in the REST specification. It also allows combining logic using generated cmdlets. This is a level of customization beyond what can be done using the [readme configuration options](https://github.com/Azure/autorest/blob/master/docs/powershell/options.md) that are currently available. These custom cmdlets are then referenced by the cmdlets created at build-time in the `../exports` folder. +This allows the modules to have cmdlets that were not defined in the REST specification. It also allows combining logic using generated cmdlets. This is a level of customization beyond what can be done using the [readme configuration options](https://github.com/Azure/autorest/blob/master/docs/powershell/options.md) that are currently available. These custom cmdlets are then referenced by the cmdlets created at build-time in the `..\exports` folder. ## Usage -The easiest way currently to start developing custom cmdlets is to copy an existing cmdlet. For C# cmdlets, copy one from the `generated/cmdlets` folder. For script cmdlets, build the project using `build-module.ps1` and copy one of the scripts from the `../exports` folder. After that, if you want to add new parameter sets, follow the guidelines in the `Details` section above. For implementing a new cmdlets, at minimum, please keep these parameters: +The easiest way currently to start developing custom cmdlets is to copy an existing cmdlet. For C# cmdlets, copy one from the `generated/cmdlets` folder. For script cmdlets, build the project using `build-module.ps1` and copy one of the scripts from the `..\exports` folder. After that, if you want to add new parameter sets, follow the guidelines in the `Details` section above. For implementing a new cmdlets, at minimum, please keep these parameters: - Break - DefaultProfile - HttpPipelineAppend @@ -36,6 +36,6 @@ For processing the cmdlets, we've created some additional attributes: - `Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.DoNotExportAttribute` - Used in C# and script cmdlets to suppress creating an exported cmdlet at build-time. These cmdlets will *not be exposed* by `Az.MariaDb`. - `Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.InternalExportAttribute` - - Used in C# cmdlets to route exported cmdlets to the `../internal`, which are *not exposed* by `Az.MariaDb`. For more information, see [readme.md](../internal/readme.md) in the `../internal` folder. + - Used in C# cmdlets to route exported cmdlets to the `..\internal`, which are *not exposed* by `Az.MariaDb`. For more information, see [readme.md](..\internal/readme.md) in the `..\internal` folder. - `Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.ProfileAttribute` - Used in C# and script cmdlets to define which Azure profiles the cmdlet supports. This is only supported for Azure (`--azure`) modules. \ No newline at end of file diff --git a/src/MariaDb/examples/Get-AzMariaDbReplica.md b/src/MariaDb/examples/Get-AzMariaDbReplica.md index af8479d53667..37e9f3fc197e 100644 --- a/src/MariaDb/examples/Get-AzMariaDbReplica.md +++ b/src/MariaDb/examples/Get-AzMariaDbReplica.md @@ -2,10 +2,10 @@ ```powershell PS C:\> Get-AzMariaDbReplica -ServerName mariadb-test-szp6dt -ResourceGroupName mariadb-test-qu5ov0 -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mariadb-test-szp6dt-rep428 eastus zmoxhpgjqc 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled -mariadb-test-szp6dt-rep154 eastus zcsxhpasdc 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mariadb-test-szp6dt-rep428 eastus zmoxhpgjqc 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled +mariadb-test-szp6dt-rep154 eastus zcsxhpasdc 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled ``` This command lists all replica DB under a MariaDB. diff --git a/src/MariaDb/examples/Get-AzMariaDbServer.md b/src/MariaDb/examples/Get-AzMariaDbServer.md index 5b43040d2b98..7880ea9e525d 100644 --- a/src/MariaDb/examples/Get-AzMariaDbServer.md +++ b/src/MariaDb/examples/Get-AzMariaDbServer.md @@ -2,22 +2,22 @@ ```powershell PS C:\> Get-AzMariaDbServer -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mrdb01 eastus dolauli 10.2 5120 B_Gen5_1 Basic Enabled -wyunchi-10 eastus wyunchi 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled -wyunchi eastus wyunchi 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled -wyunchi-eastus eastus wyunchi 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled -mariadb-test-h3pame eastus qiszomtkpf 10.2 5120 B_Gen5_1 Basic Enabled -mariadb-test-4rmtig eastus xofavpndqj 10.2 5120 B_Gen5_1 Basic Enabled -mariadb-test-szp6dt eastus zmoxhpgjqc 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled -mariadb-test-9pebvn eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled -mariadb-test-szp6dt-rep428 eastus zmoxhpgjqc 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled -mariadb-asd-01 eastus adminuser 10.2 5120 B_Gen5_1 Basic Enabled -rst-001 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled -rst-002 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled -rstrgp02-rep-003 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled -rstrgp02-rep-004 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mrdb01 eastus dolauli 10.2 5120 B_Gen5_1 Basic Enabled +wyunchi-10 eastus wyunchi 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled +wyunchi eastus wyunchi 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled +wyunchi-eastus eastus wyunchi 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled +mariadb-test-h3pame eastus qiszomtkpf 10.2 5120 B_Gen5_1 Basic Enabled +mariadb-test-4rmtig eastus xofavpndqj 10.2 5120 B_Gen5_1 Basic Enabled +mariadb-test-szp6dt eastus zmoxhpgjqc 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled +mariadb-test-9pebvn eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled +mariadb-test-szp6dt-rep428 eastus zmoxhpgjqc 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled +mariadb-asd-01 eastus adminuser 10.2 5120 B_Gen5_1 Basic Enabled +rst-001 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled +rst-002 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled +rstrgp02-rep-003 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled +rstrgp02-rep-004 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled ``` This command lists all MariaDB under a subscriptions. @@ -26,18 +26,18 @@ This command lists all MariaDB under a subscriptions. ```powershell PS C:\> Get-AzMariaDbServer -ResourceGroupName mariadb-test-qu5ov0 -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mariadb-test-h3pame eastus qiszomtkpf 10.2 5120 B_Gen5_1 Basic Enabled -mariadb-test-4rmtig eastus xofavpndqj 10.2 5120 B_Gen5_1 Basic Enabled -mariadb-test-szp6dt eastus zmoxhpgjqc 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled -mariadb-test-9pebvn eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled -mariadb-test-szp6dt-rep428 eastus zmoxhpgjqc 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled -mariadb-asd-01 eastus adminuser 10.2 5120 B_Gen5_1 Basic Enabled -rst-001 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled -rst-002 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled -rstrgp02-rep-003 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled -rstrgp02-rep-004 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mariadb-test-h3pame eastus qiszomtkpf 10.2 5120 B_Gen5_1 Basic Enabled +mariadb-test-4rmtig eastus xofavpndqj 10.2 5120 B_Gen5_1 Basic Enabled +mariadb-test-szp6dt eastus zmoxhpgjqc 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled +mariadb-test-9pebvn eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled +mariadb-test-szp6dt-rep428 eastus zmoxhpgjqc 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled +mariadb-asd-01 eastus adminuser 10.2 5120 B_Gen5_1 Basic Enabled +rst-001 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled +rst-002 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled +rstrgp02-rep-003 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled +rstrgp02-rep-004 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled ``` This command lists all MariaDB under a resource group. @@ -46,9 +46,9 @@ This command lists all MariaDB under a resource group. ```powershell PS C:\> Get-AzMariaDbServer -ResourceGroupName mariadb-test-qu5ov0 -Name mariadb-test-h3pame -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mariadb-test-h3pame eastus qiszomtkpf 10.2 5120 B_Gen5_1 Basic Enabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mariadb-test-h3pame eastus qiszomtkpf 10.2 5120 B_Gen5_1 Basic Enabled ``` This command gets a MariaDB. diff --git a/src/MariaDb/examples/New-AzMariaDbFirewallRule.md b/src/MariaDb/examples/New-AzMariaDbFirewallRule.md index 17aa89dff9e6..4c7f7ba3f28c 100644 --- a/src/MariaDb/examples/New-AzMariaDbFirewallRule.md +++ b/src/MariaDb/examples/New-AzMariaDbFirewallRule.md @@ -2,11 +2,33 @@ ```powershell PS C:\> New-AzMariaDbFirewallRule -Name firewall-101 -ResourceGroupName mariadb-test-qu5ov0 -ServerName mariadb-asd-01 -EndIPAddress 0.0.2.255 -StartIPAddress 0.0.2.1 -Name Type ----- ---- -firewall-101 Microsoft.DBforMariaDB/servers/firewallRules +Name StartIPAddress EndIPAddress +---- -------------- ------------ +firewall-101 0.0.2.1 0.0.2.255 ``` This command creates a firewall rule under a MariaDB. +### Example 2: Create a new MariaDB Firewall Rule using -ClientIPAddress. +```powershell +PS C:\> New-AzMariaDbFirewallRule -ResourceGroupName mariadb-test-qu5ov0 -ServerName mariadb-asd-01 -ClientIPAddress 0.0.0.1 + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +ClientIPAddress_2020-08-11_18-19-27 0.0.0.1 0.0.0.1 +``` + +This cmdlets create a MariaDB Firewall Rule using -ClientIPAddress. + +### Example 3: Create a new MariaDB Firewall Rule to allow all IPs +```powershell +PS C:\> New-AzMariaDbFirewallRule -ResourceGroupName mariadb-test-qu5ov0 -ServerName mariadb-asd-01 -AllowAll + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +AllowAll_2020-08-11_18-19-27 0.0.0.0 255.255.255.255 +``` + +This cmdlets create a new MariaDB Firewall Rule to allow all IPs. + diff --git a/src/MariaDb/examples/New-AzMariaDbReplica.md b/src/MariaDb/examples/New-AzMariaDbReplica.md new file mode 100644 index 000000000000..fbe71faa3ac1 --- /dev/null +++ b/src/MariaDb/examples/New-AzMariaDbReplica.md @@ -0,0 +1,34 @@ +### Example 1: Create a replica db for a MariaDB +```powershell +PS C:\> New-AzMariaDbReplica -MasterName mariadb-test-9pebvn -ReplicaName mariadb-test-9pebvn-rep01 -ResourceGroupName mariadb-test-qu5ov0 + +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mariadb-test-9pebvn-rep01 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled +``` + +This command creates a replica db for a MariaDB. + +### Example 2: Create a replica db for a MariaDB +```powershell +PS C:\> Get-AzMariaDbServer -Name mariadb-test-9pebvn -ResourceGroupName mariadb-test-qu5ov0 | New-AzMariaDbReplica -ReplicaName mariadb-test-9pebvn-rep02 + +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mariadb-test-9pebvn-rep02 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled +``` + +This command creates a replica db for a MariaDB. + +### Example 3: Create a replica db for a MariaDB +```powershell +PS C:\> $mariaDb = Get-AzMariaDbServer -Name mariadb-test-9pebvn -ResourceGroupName mariadb-test-qu5ov0 +PS C:\> New-AzMariaDbReplica -Master $mariaDb -ReplicaName mariadb-test-9pebvn-rep03 + +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mariadb-test-9pebvn-rep03 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled +``` + +This command with parameter inputobject creates a replica db with parameter inputobject for a MariaDB. + diff --git a/src/MariaDb/examples/New-AzMariaDbServer.md b/src/MariaDb/examples/New-AzMariaDbServer.md index 31291a087acf..65b6bafaea62 100644 --- a/src/MariaDb/examples/New-AzMariaDbServer.md +++ b/src/MariaDb/examples/New-AzMariaDbServer.md @@ -6,9 +6,9 @@ Supply values for the following parameters: AdministratorUsername: adminuser AdministratorLoginPassword: ************ -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mariadb-aassd-01 eastus adminuser 10.2 5120 B_Gen5_1 Basic Enabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mariadb-aassd-01 eastus adminuser 10.2 5120 B_Gen5_1 Basic Enabled ``` This command creates a new MariaDB. diff --git a/src/MariaDb/examples/New-AzMariaDbServerReplica.md b/src/MariaDb/examples/New-AzMariaDbServerReplica.md deleted file mode 100644 index 8a70e85625e2..000000000000 --- a/src/MariaDb/examples/New-AzMariaDbServerReplica.md +++ /dev/null @@ -1,22 +0,0 @@ -### Example 1: Create a replica db for a MariaDB -```powershell -PS C:\> New-AzMariaDbServerReplica -ServerName mariadb-test-9pebvn -Name mariadb-test-9pebvn-rep01 -ResourceGroupName mariadb-test-qu5ov0 - -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mariadb-test-9pebvn-rep01 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled -``` - -This command creates a replica db for a MariaDB. - -### Example 2: Create a replica db for a MariaDB -```powershell -PS C:\> Get-AzMariaDbServer -Name mariadb-test-9pebvn -ResourceGroupName mariadb-test-qu5ov0 | New-AzMariaDbServerReplica -Name mariadb-test-9pebvn-rep02 - -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mariadb-test-9pebvn-rep02 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled -``` - -This command creates a replica db for a MariaDB. - diff --git a/src/MariaDb/examples/Restore-AzMariaDbServer.md b/src/MariaDb/examples/Restore-AzMariaDbServer.md index 4a0aed706dd8..b8504ee0c66b 100644 --- a/src/MariaDb/examples/Restore-AzMariaDbServer.md +++ b/src/MariaDb/examples/Restore-AzMariaDbServer.md @@ -2,9 +2,9 @@ ```powershell PS C:\> Restore-AzMariaDbServer -Name restore-db01 -ServerName mariadb-test-usegeo -ResourceGroupName mariadb-test-4rih5z -UsePointInTimeRestore -RestorePointInTime $(Get-Date) -Location eastus -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -restore-db01 eastus adminuser 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +restore-db01 eastus adminuser 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled ``` This command restore a PointInTime MariaDB by server name. @@ -14,9 +14,9 @@ This command restore a PointInTime MariaDB by server name. PS C:\> $db = Get-AzMariaDbServer -Name mariadb-test-usegeo -ResourceGroupName mariadb-test-4rih5z PS C:\>Restore-AzMariaDbServer -Name restore-db02 -InputObject $db -UsePointInTimeRestore -RestorePointInTime $(Get-Date) -Location eastus -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -restore-db02 eastus adminuser 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +restore-db02 eastus adminuser 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled ``` This command restore a PointInTime MariaDB by server object. diff --git a/src/MariaDb/examples/Update-AzMariaDbConfiguration.md b/src/MariaDb/examples/Update-AzMariaDbConfiguration.md index 590b219b9242..242bee49c49b 100644 --- a/src/MariaDb/examples/Update-AzMariaDbConfiguration.md +++ b/src/MariaDb/examples/Update-AzMariaDbConfiguration.md @@ -1,4 +1,4 @@ -### Example 1: Update MariaDb configuration +### Example 1: Update MariaDB configuration ```powershell PS C:\> Update-AzMariaDbConfiguration -Name delayed_insert_timeout -Value 200 -ServerName mariadb-test-h3pame -ResourceGroupName mariadb-test-qu5ov0 @@ -7,4 +7,4 @@ Name Type delayed_insert_timeout Microsoft.DBforMariaDB/servers/configurations ``` -This command updates a MariaDb configuration. +This command updates a MariaDB configuration. diff --git a/src/MariaDb/examples/Update-AzMariaDbFirewallRule.md b/src/MariaDb/examples/Update-AzMariaDbFirewallRule.md index aeb2b7ebbe11..db1425ac1d67 100644 --- a/src/MariaDb/examples/Update-AzMariaDbFirewallRule.md +++ b/src/MariaDb/examples/Update-AzMariaDbFirewallRule.md @@ -1,12 +1,34 @@ -### Example 1: Update MariaDb firewall rule +### Example 1: Update MariaDB firewall rule ```powershell PS C:\> Update-AzMariaDbFirewallRule -Name fr-cfgl3y -ServerName mariadb-test-4rmtig -ResourceGroupName mariadb-test-qu5ov0 -StartIPAddress 0.0.3.1 -EndIPAddress 0.0.3.255 -Name Type ----- ---- -fr-cfgl3y Microsoft.DBforMariaDB/servers/firewallRules +Name StartIPAddress EndIPAddress +---- -------------- ------------ +fr-cfgl3y 0.0.3.1 0.0.3.255 ``` -This command updates a MariaDb firewall rule. +This command updates a MariaDB firewall rule. +### Example 2: Update MariaDB Firewall Rule by identity. +```powershell +PS C:\> $ID = "/subscriptions//resourceGroups/mariadb-test-qu5ov0/providers/Microsoft.DBforMariaDB/servers/mariadb-test-4rmtig/firewallRules/fr-cfgl3y" +PS C:\> Update-AzMariaDbFirewallRule -InputObject $ID -EndIPAddress 0.0.0.3 -StartIPAddress 0.0.0.2 + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +fr-cfgl3y 0.0.0.2 0.0.0.3 +``` + +The cmdlet updates MariaDB Firewall Rule by identity. + +### Example 3: Update MariaDB Firewall Rule by -ClientIPAddress. +```powershell +PS C:\> $ID = "/subscriptions//resourceGroups/mariadb-test-qu5ov0/providers/Microsoft.DBforMariaDB/servers/mariadb-test-4rmtig/firewallRules/fr-cfgl3y" +PS C:\> Update-AzMariaDbFirewallRule -InputObject $ID --ClientIPAddress 0.0.0.2 + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +fr-cfgl3y 0.0.0.2 0.0.0.2 +``` +The cmdlet updates MariaDB Firewall Rule by -ClientIPAddress. diff --git a/src/MariaDb/examples/Update-AzMariaDbServer.md b/src/MariaDb/examples/Update-AzMariaDbServer.md index b817fb6b78e4..cdfec88642c3 100644 --- a/src/MariaDb/examples/Update-AzMariaDbServer.md +++ b/src/MariaDb/examples/Update-AzMariaDbServer.md @@ -1,22 +1,22 @@ -### Example 1: Update MariaDb +### Example 1: Update MariaDB ```powershell PS C:\> Update-AzMariaDbServer -Name mariadb-test-4rmtig -ResourceGroupName mariadb-test-qu5ov0 -StorageInMb 8192 -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mariadb-test-4rmtig eastus xofavpndqj 10.2 8192 B_Gen5_1 Basic Enabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mariadb-test-4rmtig eastus xofavpndqj 10.2 8192 B_Gen5_1 Basic Enabled ``` -This command updates a MariaDb. +This command updates a MariaDB. -### Example 2: Update MariaDb +### Example 2: Update MariaDB ```powershell PS C:\> Get-AzMariaDbServer -Name mariadb-test-4rmtig -ResourceGroupName mariadb-test-qu5ov0 | Update-AzMariaDbServer -StorageInMb (8192+1024) -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mariadb-test-4rmtig eastus xofavpndqj 10.2 9216 B_Gen5_1 Basic Enabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mariadb-test-4rmtig eastus xofavpndqj 10.2 9216 B_Gen5_1 Basic Enabled ``` -This command updates a MariaDb. +This command updates a MariaDB. diff --git a/src/MariaDb/examples/Update-AzMariaDbVirtualNetworkRule.md b/src/MariaDb/examples/Update-AzMariaDbVirtualNetworkRule.md index 74cf50a9649a..e0db0b144a75 100644 --- a/src/MariaDb/examples/Update-AzMariaDbVirtualNetworkRule.md +++ b/src/MariaDb/examples/Update-AzMariaDbVirtualNetworkRule.md @@ -1,4 +1,4 @@ -### Example 1: Update MariaDb virtual network rule +### Example 1: Update MariaDB virtual network rule ```powershell PS C:\> $vnet = Get-AzVirtualNetwork -Name vnet -ResourceGroupName mariadb-test-qu5ov0 PS C:\> Update-AzMariaDbVirtualNetworkRule -ServerName mariadb-test-9pebvn -ResourceGroupName mariadb-test-qu5ov0 -Name vnetrule-QdMJpU -SubnetId $vnet.Subnets[0].Id -IgnoreMissingVnetServiceEndpoint diff --git a/src/MariaDb/export-surface.ps1 b/src/MariaDb/export-surface.ps1 index ed82faa0f879..9c5256192b59 100644 --- a/src/MariaDb/export-surface.ps1 +++ b/src/MariaDb/export-surface.ps1 @@ -21,7 +21,7 @@ if(-not $Isolated) { return } -$dll = Join-Path $PSScriptRoot 'bin/Az.MariaDb.private.dll' +$dll = Join-Path $PSScriptRoot 'bin\Az.MariaDb.private.dll' if(-not (Test-Path $dll)) { Write-Error "Unable to find output assembly in '$binFolder'." } diff --git a/src/MariaDb/exports/Get-AzMariaDbConfiguration.ps1 b/src/MariaDb/exports/Get-AzMariaDbConfiguration.ps1 index 1b159296875e..e6c9da4658b0 100644 --- a/src/MariaDb/exports/Get-AzMariaDbConfiguration.ps1 +++ b/src/MariaDb/exports/Get-AzMariaDbConfiguration.ps1 @@ -185,6 +185,26 @@ Name Type ---- ---- max_connections Microsoft.DBforMariaDB/servers/configurations +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfiguration +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ConfigurationName ]: The name of the server configuration. + [DatabaseName ]: The name of the database. + [FirewallRuleName ]: The name of the server firewall rule. + [Id ]: Resource identity path + [LocationName ]: The name of the location. + [ResourceGroupName ]: The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. + [SecurityAlertPolicyName ]: The name of the security alert policy. + [ServerName ]: The name of the server. + [SubscriptionId ]: The subscription ID that identifies an Azure subscription. + [VirtualNetworkRuleName ]: The name of the virtual network rule. .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/get-azmariadbconfiguration #> diff --git a/src/MariaDb/exports/Get-AzMariaDbConnectionString.ps1 b/src/MariaDb/exports/Get-AzMariaDbConnectionString.ps1 index 31c7820cf319..3a62efbd8236 100644 --- a/src/MariaDb/exports/Get-AzMariaDbConnectionString.ps1 +++ b/src/MariaDb/exports/Get-AzMariaDbConnectionString.ps1 @@ -15,9 +15,9 @@ <# .Synopsis - +Get connection string of a MariaDB under a given framework. .Description - +Get connection string of a MariaDB under a given framework. .Example PS C:\> Get-AzMariaDbConnectionString -ServerName mariadb-asd-01 -ResourceGroupName mariadb-test-qu5ov0 -Client ADO.NET @@ -27,6 +27,38 @@ PS C:\> Get-AzMariaDbServer -Name mariadb-gp-t03 -ResourceGroupName lucas-manual $con=mysqli_init();mysqli_ssl_set($con, NULL, NULL, {ca-cert filename}, NULL, NULL); mysqli_real_connect($con, "mariadb-gp-t03.mariadb.database.azure.com", "adminuser@mariadb-gp-t03", {your_password}, {your_database}, 3306); +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer +.Outputs +System.String +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + Location : The location the resource resides in. + [Tag ]: Application-specific metadata in the form of key-value pairs. + [(Any) ]: This indicates any property can be added to this object. + [AdministratorLogin ]: The administrator's login name of a server. Can only be specified when the server is being created (and is required for creation). + [EarliestRestoreDate ]: Earliest restore point creation time (ISO8601 format) + [FullyQualifiedDomainName ]: The fully qualified domain name of a server. + [IdentityType ]: The identity type. Set this to 'SystemAssigned' in order to automatically create and assign an Azure Active Directory principal for the resource. + [MasterServerId ]: The master server id of a replica server. + [ReplicaCapacity ]: The maximum number of replicas that a master server can have. + [ReplicationRole ]: The replication role of the server. + [SkuCapacity ]: The scale up/out capacity, representing server's compute units. + [SkuFamily ]: The family of hardware. + [SkuName ]: The name of the sku, typically, tier + family + cores, e.g. B_Gen4_1, GP_Gen5_8. + [SkuSize ]: The size code, to be interpreted by resource as appropriate. + [SkuTier ]: The tier of the particular SKU, e.g. Basic. + [SslEnforcement ]: Enable ssl enforcement or not when connect to server. + [StorageProfileBackupRetentionDay ]: Backup retention days for the server. + [StorageProfileGeoRedundantBackup ]: Enable Geo-redundant or not for server backup. + [StorageProfileStorageAutogrow ]: Enable Storage Auto Grow. + [StorageProfileStorageMb ]: Max storage allowed for a server. + [UserVisibleState ]: A state of a server that is visible to user. + [Version ]: Server version. .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/get-azmariadbconnectionstring #> @@ -72,39 +104,48 @@ param( [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Azure')] [System.Management.Automation.PSObject] + # region DefaultParameters + # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Uri] + # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + # endregion DefaultParameters ${ProxyUseDefaultCredentials} ) diff --git a/src/MariaDb/exports/Get-AzMariaDbFirewallRule.ps1 b/src/MariaDb/exports/Get-AzMariaDbFirewallRule.ps1 index 88ad6b05ed9c..edcd8375ee2b 100644 --- a/src/MariaDb/exports/Get-AzMariaDbFirewallRule.ps1 +++ b/src/MariaDb/exports/Get-AzMariaDbFirewallRule.ps1 @@ -33,6 +33,26 @@ Name Type ---- ---- frname-001 Microsoft.DBforMariaDB/servers/firewallRules +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRule +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ConfigurationName ]: The name of the server configuration. + [DatabaseName ]: The name of the database. + [FirewallRuleName ]: The name of the server firewall rule. + [Id ]: Resource identity path + [LocationName ]: The name of the location. + [ResourceGroupName ]: The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. + [SecurityAlertPolicyName ]: The name of the security alert policy. + [ServerName ]: The name of the server. + [SubscriptionId ]: The subscription ID that identifies an Azure subscription. + [VirtualNetworkRuleName ]: The name of the virtual network rule. .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/get-azmariadbfirewallrule #> diff --git a/src/MariaDb/exports/Get-AzMariaDbReplica.ps1 b/src/MariaDb/exports/Get-AzMariaDbReplica.ps1 index 3adfcb8f026c..3d28c19b5cd2 100644 --- a/src/MariaDb/exports/Get-AzMariaDbReplica.ps1 +++ b/src/MariaDb/exports/Get-AzMariaDbReplica.ps1 @@ -21,11 +21,13 @@ List all the replicas for a given server. .Example PS C:\> Get-AzMariaDbReplica -ServerName mariadb-test-szp6dt -ResourceGroupName mariadb-test-qu5ov0 -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mariadb-test-szp6dt-rep428 eastus zmoxhpgjqc 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled -mariadb-test-szp6dt-rep154 eastus zcsxhpasdc 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mariadb-test-szp6dt-rep428 eastus zmoxhpgjqc 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled +mariadb-test-szp6dt-rep154 eastus zcsxhpasdc 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/get-azmariadbreplica #> diff --git a/src/MariaDb/exports/Get-AzMariaDbServer.ps1 b/src/MariaDb/exports/Get-AzMariaDbServer.ps1 index 0459a37c5c73..b9a9370915b2 100644 --- a/src/MariaDb/exports/Get-AzMariaDbServer.ps1 +++ b/src/MariaDb/exports/Get-AzMariaDbServer.ps1 @@ -21,44 +21,64 @@ Gets information about a server. .Example PS C:\> Get-AzMariaDbServer -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mrdb01 eastus dolauli 10.2 5120 B_Gen5_1 Basic Enabled -wyunchi-10 eastus wyunchi 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled -wyunchi eastus wyunchi 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled -wyunchi-eastus eastus wyunchi 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled -mariadb-test-h3pame eastus qiszomtkpf 10.2 5120 B_Gen5_1 Basic Enabled -mariadb-test-4rmtig eastus xofavpndqj 10.2 5120 B_Gen5_1 Basic Enabled -mariadb-test-szp6dt eastus zmoxhpgjqc 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled -mariadb-test-9pebvn eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled -mariadb-test-szp6dt-rep428 eastus zmoxhpgjqc 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled -mariadb-asd-01 eastus adminuser 10.2 5120 B_Gen5_1 Basic Enabled -rst-001 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled -rst-002 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled -rstrgp02-rep-003 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled -rstrgp02-rep-004 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mrdb01 eastus dolauli 10.2 5120 B_Gen5_1 Basic Enabled +wyunchi-10 eastus wyunchi 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled +wyunchi eastus wyunchi 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled +wyunchi-eastus eastus wyunchi 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled +mariadb-test-h3pame eastus qiszomtkpf 10.2 5120 B_Gen5_1 Basic Enabled +mariadb-test-4rmtig eastus xofavpndqj 10.2 5120 B_Gen5_1 Basic Enabled +mariadb-test-szp6dt eastus zmoxhpgjqc 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled +mariadb-test-9pebvn eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled +mariadb-test-szp6dt-rep428 eastus zmoxhpgjqc 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled +mariadb-asd-01 eastus adminuser 10.2 5120 B_Gen5_1 Basic Enabled +rst-001 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled +rst-002 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled +rstrgp02-rep-003 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled +rstrgp02-rep-004 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled .Example PS C:\> Get-AzMariaDbServer -ResourceGroupName mariadb-test-qu5ov0 -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mariadb-test-h3pame eastus qiszomtkpf 10.2 5120 B_Gen5_1 Basic Enabled -mariadb-test-4rmtig eastus xofavpndqj 10.2 5120 B_Gen5_1 Basic Enabled -mariadb-test-szp6dt eastus zmoxhpgjqc 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled -mariadb-test-9pebvn eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled -mariadb-test-szp6dt-rep428 eastus zmoxhpgjqc 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled -mariadb-asd-01 eastus adminuser 10.2 5120 B_Gen5_1 Basic Enabled -rst-001 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled -rst-002 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled -rstrgp02-rep-003 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled -rstrgp02-rep-004 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mariadb-test-h3pame eastus qiszomtkpf 10.2 5120 B_Gen5_1 Basic Enabled +mariadb-test-4rmtig eastus xofavpndqj 10.2 5120 B_Gen5_1 Basic Enabled +mariadb-test-szp6dt eastus zmoxhpgjqc 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled +mariadb-test-9pebvn eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled +mariadb-test-szp6dt-rep428 eastus zmoxhpgjqc 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled +mariadb-asd-01 eastus adminuser 10.2 5120 B_Gen5_1 Basic Enabled +rst-001 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled +rst-002 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled +rstrgp02-rep-003 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled +rstrgp02-rep-004 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled .Example PS C:\> Get-AzMariaDbServer -ResourceGroupName mariadb-test-qu5ov0 -Name mariadb-test-h3pame -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mariadb-test-h3pame eastus qiszomtkpf 10.2 5120 B_Gen5_1 Basic Enabled - +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mariadb-test-h3pame eastus qiszomtkpf 10.2 5120 B_Gen5_1 Basic Enabled + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ConfigurationName ]: The name of the server configuration. + [DatabaseName ]: The name of the database. + [FirewallRuleName ]: The name of the server firewall rule. + [Id ]: Resource identity path + [LocationName ]: The name of the location. + [ResourceGroupName ]: The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. + [SecurityAlertPolicyName ]: The name of the security alert policy. + [ServerName ]: The name of the server. + [SubscriptionId ]: The subscription ID that identifies an Azure subscription. + [VirtualNetworkRuleName ]: The name of the virtual network rule. .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/get-azmariadbserver #> diff --git a/src/MariaDb/exports/Get-AzMariaDbVirtualNetworkRule.ps1 b/src/MariaDb/exports/Get-AzMariaDbVirtualNetworkRule.ps1 index 1e91898e1673..391371296051 100644 --- a/src/MariaDb/exports/Get-AzMariaDbVirtualNetworkRule.ps1 +++ b/src/MariaDb/exports/Get-AzMariaDbVirtualNetworkRule.ps1 @@ -32,6 +32,26 @@ Name Type ---- ---- vnetrule-QdMJpU Microsoft.DBforMariaDB/servers/virtualNetworkRules +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRule +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ConfigurationName ]: The name of the server configuration. + [DatabaseName ]: The name of the database. + [FirewallRuleName ]: The name of the server firewall rule. + [Id ]: Resource identity path + [LocationName ]: The name of the location. + [ResourceGroupName ]: The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. + [SecurityAlertPolicyName ]: The name of the security alert policy. + [ServerName ]: The name of the server. + [SubscriptionId ]: The subscription ID that identifies an Azure subscription. + [VirtualNetworkRuleName ]: The name of the virtual network rule. .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/get-azmariadbvirtualnetworkrule #> diff --git a/src/MariaDb/exports/New-AzMariaDbFirewallRule.ps1 b/src/MariaDb/exports/New-AzMariaDbFirewallRule.ps1 index 42ff2ba0924c..9fde8e48e18a 100644 --- a/src/MariaDb/exports/New-AzMariaDbFirewallRule.ps1 +++ b/src/MariaDb/exports/New-AzMariaDbFirewallRule.ps1 @@ -21,10 +21,24 @@ Creates a new firewall rule or updates an existing firewall rule. .Example PS C:\> New-AzMariaDbFirewallRule -Name firewall-101 -ResourceGroupName mariadb-test-qu5ov0 -ServerName mariadb-asd-01 -EndIPAddress 0.0.2.255 -StartIPAddress 0.0.2.1 -Name Type ----- ---- -firewall-101 Microsoft.DBforMariaDB/servers/firewallRules +Name StartIPAddress EndIPAddress +---- -------------- ------------ +firewall-101 0.0.2.1 0.0.2.255 +.Example +PS C:\> New-AzMariaDbFirewallRule -ResourceGroupName mariadb-test-qu5ov0 -ServerName mariadb-asd-01 -ClientIPAddress 0.0.0.1 + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +ClientIPAddress_2020-08-11_18-19-27 0.0.0.1 0.0.0.1 +.Example +PS C:\> New-AzMariaDbFirewallRule -ResourceGroupName mariadb-test-qu5ov0 -ServerName mariadb-asd-01 -AllowAll + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +AllowAll_2020-08-11_18-19-27 0.0.0.0 255.255.255.255 +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRule .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/new-azmariadbfirewallrule #> @@ -32,13 +46,6 @@ function New-AzMariaDbFirewallRule { [OutputType([Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRule])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( - [Parameter(Mandatory)] - [Alias('FirewallRuleName')] - [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] - [System.String] - # The name of the server firewall rule. - ${Name}, - [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] [System.String] @@ -52,6 +59,15 @@ param( # The name of the server. ${ServerName}, + [Parameter()] + [Alias('FirewallRuleName')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] + [System.String] + # The name of the server firewall rule. + # If not specified, the default is undefined. + # If AllowAll is present, the default name is AllowAll_yyyy-MM-dd_HH-mm-ss. + ${Name}, + [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] @@ -59,20 +75,33 @@ param( # The subscription ID that identifies an Azure subscription. ${SubscriptionId}, - [Parameter(Mandatory)] + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] [System.String] # The end IP address of the server firewall rule. # Must be IPv4 format. ${EndIPAddress}, - [Parameter(Mandatory)] + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] [System.String] # The start IP address of the server firewall rule. # Must be IPv4 format. ${StartIPAddress}, + [Parameter(ParameterSetName='ClientIPAddress', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] + [System.String] + # Client specified single IP of the server firewall rule. + # Must be IPv4 format. + ${ClientIPAddress}, + + [Parameter(ParameterSetName='AllowAll', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] + [System.Management.Automation.SwitchParameter] + # Present to allow all range IPs, from 0.0.0.0 to 255.255.255.255. + ${AllowAll}, + [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] @@ -141,9 +170,11 @@ begin { } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ - CreateExpanded = 'Az.MariaDb.private\New-AzMariaDbFirewallRule_CreateExpanded'; + CreateExpanded = 'Az.MariaDb.custom\New-AzMariaDbFirewallRule'; + ClientIPAddress = 'Az.MariaDb.custom\New-AzMariaDbFirewallRule'; + AllowAll = 'Az.MariaDb.custom\New-AzMariaDbFirewallRule'; } - if (('CreateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + if (('CreateExpanded', 'ClientIPAddress', 'AllowAll') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) diff --git a/src/MariaDb/exports/New-AzMariaDbReplica.ps1 b/src/MariaDb/exports/New-AzMariaDbReplica.ps1 new file mode 100644 index 000000000000..4ab3a68409f5 --- /dev/null +++ b/src/MariaDb/exports/New-AzMariaDbReplica.ps1 @@ -0,0 +1,235 @@ + +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.Synopsis +Creates a replica of a MariaDB server. +.Description +Creates a replica of a MariaDB server. +.Example +PS C:\> New-AzMariaDbReplica -MasterName mariadb-test-9pebvn -ReplicaName mariadb-test-9pebvn-rep01 -ResourceGroupName mariadb-test-qu5ov0 + +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mariadb-test-9pebvn-rep01 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled +.Example +PS C:\> Get-AzMariaDbServer -Name mariadb-test-9pebvn -ResourceGroupName mariadb-test-qu5ov0 | New-AzMariaDbReplica -ReplicaName mariadb-test-9pebvn-rep02 + +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mariadb-test-9pebvn-rep02 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled +.Example +PS C:\> $mariaDb = Get-AzMariaDbServer -Name mariadb-test-9pebvn -ResourceGroupName mariadb-test-qu5ov0 +PS C:\> New-AzMariaDbReplica -Master $mariaDb -ReplicaName mariadb-test-9pebvn-rep03 + +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mariadb-test-9pebvn-rep03 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +MASTER : The source server object to restore from. + Location : The location the resource resides in. + [Tag ]: Application-specific metadata in the form of key-value pairs. + [(Any) ]: This indicates any property can be added to this object. + [AdministratorLogin ]: The administrator's login name of a server. Can only be specified when the server is being created (and is required for creation). + [EarliestRestoreDate ]: Earliest restore point creation time (ISO8601 format) + [FullyQualifiedDomainName ]: The fully qualified domain name of a server. + [IdentityType ]: The identity type. Set this to 'SystemAssigned' in order to automatically create and assign an Azure Active Directory principal for the resource. + [MasterServerId ]: The master server id of a replica server. + [ReplicaCapacity ]: The maximum number of replicas that a master server can have. + [ReplicationRole ]: The replication role of the server. + [SkuCapacity ]: The scale up/out capacity, representing server's compute units. + [SkuFamily ]: The family of hardware. + [SkuName ]: The name of the sku, typically, tier + family + cores, e.g. B_Gen4_1, GP_Gen5_8. + [SkuSize ]: The size code, to be interpreted by resource as appropriate. + [SkuTier ]: The tier of the particular SKU, e.g. Basic. + [SslEnforcement ]: Enable ssl enforcement or not when connect to server. + [StorageProfileBackupRetentionDay ]: Backup retention days for the server. + [StorageProfileGeoRedundantBackup ]: Enable Geo-redundant or not for server backup. + [StorageProfileStorageAutogrow ]: Enable Storage Auto Grow. + [StorageProfileStorageMb ]: Max storage allowed for a server. + [UserVisibleState ]: A state of a server that is visible to user. + [Version ]: Server version. +.Link +https://docs.microsoft.com/en-us/powershell/module/az.mariadb/new-azmariadbreplica +#> +function New-AzMariaDbReplica { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer])] +[CmdletBinding(DefaultParameterSetName='ServerName', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(Mandatory)] + [Alias('ReplicaServerName', 'Name')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] + [System.String] + # Replica name. + ${ReplicaName}, + + [Parameter(ParameterSetName='ServerName', Mandatory)] + [Alias('ServerName')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] + [System.String] + # MariaDB server name. + ${MasterName}, + + [Parameter(ParameterSetName='ServerName', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] + [System.String] + # You can obtain this value from the Azure Resource Manager API or the portal. + ${ResourceGroupName}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # The subscription ID is part of the URI for every service call. + ${SubscriptionId}, + + [Parameter(ParameterSetName='ServerObject', Mandatory, ValueFromPipeline)] + [Alias('InputObject')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer] + # The source server object to restore from. + # To construct, see NOTES section for MASTER properties and create a hash table. + ${Master}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] + [System.String] + # The location the resource resides in. + ${Location}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] + [System.String] + # The name of the sku, typically, tier + family + cores, e.g. + # B_Gen4_1, GP_Gen5_8. + ${Sku}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersTags]))] + [System.Collections.Hashtable] + # Application-specific metadata in the form of key-value pairs. + ${Tag}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Azure')] + [System.Management.Automation.PSObject] + # region DefaultParameters + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + # endregion DefaultParameters + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + ServerName = 'Az.MariaDb.custom\New-AzMariaDbReplica'; + ServerObject = 'Az.MariaDb.custom\New-AzMariaDbReplica'; + } + if (('ServerName', 'ServerObject') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} diff --git a/src/MariaDb/exports/New-AzMariaDbServer.ps1 b/src/MariaDb/exports/New-AzMariaDbServer.ps1 index d404fbcaba58..fa3b3d3e059d 100644 --- a/src/MariaDb/exports/New-AzMariaDbServer.ps1 +++ b/src/MariaDb/exports/New-AzMariaDbServer.ps1 @@ -15,9 +15,9 @@ <# .Synopsis - +Creates a new MariaDB. .Description - +Creates a new MariaDB. .Example PS C:\> New-AzMariaDbServer -Name mariadb-aassd-01 -ResourceGroupName lucas-manual-test -Sku 'B_Gen5_1' -Location eastus cmdlet New-AzMariaDbServer at command pipeline position 1 @@ -25,10 +25,12 @@ Supply values for the following parameters: AdministratorUsername: adminuser AdministratorLoginPassword: ************ -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mariadb-aassd-01 eastus adminuser 10.2 5120 B_Gen5_1 Basic Enabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mariadb-aassd-01 eastus adminuser 10.2 5120 B_Gen5_1 Basic Enabled +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/new-azmariadbserver #> @@ -40,7 +42,7 @@ param( [Alias('ServerName')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] [System.String] - # MariaDb server name. + # MariaDB server name. ${Name}, [Parameter(Mandatory)] @@ -100,6 +102,7 @@ param( ${GeoRedundantBackup}, [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow])] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow] # Enable Storage Auto Grow. @@ -129,49 +132,60 @@ param( [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Azure')] [System.Management.Automation.PSObject] + # region DefaultParameters + # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.SwitchParameter] + # Run the command as a job ${AsJob}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.SwitchParameter] + # Run the command asynchronously ${NoWait}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Uri] + # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + # endregion DefaultParameters ${ProxyUseDefaultCredentials} ) diff --git a/src/MariaDb/exports/New-AzMariaDbVirtualNetworkRule.ps1 b/src/MariaDb/exports/New-AzMariaDbVirtualNetworkRule.ps1 index 75d46ea70168..634829f8aa68 100644 --- a/src/MariaDb/exports/New-AzMariaDbVirtualNetworkRule.ps1 +++ b/src/MariaDb/exports/New-AzMariaDbVirtualNetworkRule.ps1 @@ -26,6 +26,8 @@ Name Type ---- ---- vnet-001 Microsoft.DBforMariaDB/servers/virtualNetworkRules +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRule .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/new-azmariadbvirtualnetworkrule #> diff --git a/src/MariaDb/exports/ProxyCmdletDefinitions.ps1 b/src/MariaDb/exports/ProxyCmdletDefinitions.ps1 index d1e444114207..845d57488bd6 100644 --- a/src/MariaDb/exports/ProxyCmdletDefinitions.ps1 +++ b/src/MariaDb/exports/ProxyCmdletDefinitions.ps1 @@ -185,6 +185,26 @@ Name Type ---- ---- max_connections Microsoft.DBforMariaDB/servers/configurations +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfiguration +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ConfigurationName ]: The name of the server configuration. + [DatabaseName ]: The name of the database. + [FirewallRuleName ]: The name of the server firewall rule. + [Id ]: Resource identity path + [LocationName ]: The name of the location. + [ResourceGroupName ]: The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. + [SecurityAlertPolicyName ]: The name of the security alert policy. + [ServerName ]: The name of the server. + [SubscriptionId ]: The subscription ID that identifies an Azure subscription. + [VirtualNetworkRuleName ]: The name of the virtual network rule. .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/get-azmariadbconfiguration #> @@ -352,6 +372,26 @@ Name Type ---- ---- frname-001 Microsoft.DBforMariaDB/servers/firewallRules +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRule +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ConfigurationName ]: The name of the server configuration. + [DatabaseName ]: The name of the database. + [FirewallRuleName ]: The name of the server firewall rule. + [Id ]: Resource identity path + [LocationName ]: The name of the location. + [ResourceGroupName ]: The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. + [SecurityAlertPolicyName ]: The name of the security alert policy. + [ServerName ]: The name of the server. + [SubscriptionId ]: The subscription ID that identifies an Azure subscription. + [VirtualNetworkRuleName ]: The name of the virtual network rule. .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/get-azmariadbfirewallrule #> @@ -507,11 +547,13 @@ List all the replicas for a given server. .Example PS C:\> Get-AzMariaDbReplica -ServerName mariadb-test-szp6dt -ResourceGroupName mariadb-test-qu5ov0 -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mariadb-test-szp6dt-rep428 eastus zmoxhpgjqc 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled -mariadb-test-szp6dt-rep154 eastus zcsxhpasdc 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mariadb-test-szp6dt-rep428 eastus zmoxhpgjqc 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled +mariadb-test-szp6dt-rep154 eastus zcsxhpasdc 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/get-azmariadbreplica #> @@ -648,44 +690,64 @@ Gets information about a server. .Example PS C:\> Get-AzMariaDbServer -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mrdb01 eastus dolauli 10.2 5120 B_Gen5_1 Basic Enabled -wyunchi-10 eastus wyunchi 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled -wyunchi eastus wyunchi 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled -wyunchi-eastus eastus wyunchi 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled -mariadb-test-h3pame eastus qiszomtkpf 10.2 5120 B_Gen5_1 Basic Enabled -mariadb-test-4rmtig eastus xofavpndqj 10.2 5120 B_Gen5_1 Basic Enabled -mariadb-test-szp6dt eastus zmoxhpgjqc 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled -mariadb-test-9pebvn eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled -mariadb-test-szp6dt-rep428 eastus zmoxhpgjqc 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled -mariadb-asd-01 eastus adminuser 10.2 5120 B_Gen5_1 Basic Enabled -rst-001 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled -rst-002 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled -rstrgp02-rep-003 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled -rstrgp02-rep-004 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mrdb01 eastus dolauli 10.2 5120 B_Gen5_1 Basic Enabled +wyunchi-10 eastus wyunchi 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled +wyunchi eastus wyunchi 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled +wyunchi-eastus eastus wyunchi 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled +mariadb-test-h3pame eastus qiszomtkpf 10.2 5120 B_Gen5_1 Basic Enabled +mariadb-test-4rmtig eastus xofavpndqj 10.2 5120 B_Gen5_1 Basic Enabled +mariadb-test-szp6dt eastus zmoxhpgjqc 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled +mariadb-test-9pebvn eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled +mariadb-test-szp6dt-rep428 eastus zmoxhpgjqc 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled +mariadb-asd-01 eastus adminuser 10.2 5120 B_Gen5_1 Basic Enabled +rst-001 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled +rst-002 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled +rstrgp02-rep-003 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled +rstrgp02-rep-004 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled .Example PS C:\> Get-AzMariaDbServer -ResourceGroupName mariadb-test-qu5ov0 -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mariadb-test-h3pame eastus qiszomtkpf 10.2 5120 B_Gen5_1 Basic Enabled -mariadb-test-4rmtig eastus xofavpndqj 10.2 5120 B_Gen5_1 Basic Enabled -mariadb-test-szp6dt eastus zmoxhpgjqc 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled -mariadb-test-9pebvn eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled -mariadb-test-szp6dt-rep428 eastus zmoxhpgjqc 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled -mariadb-asd-01 eastus adminuser 10.2 5120 B_Gen5_1 Basic Enabled -rst-001 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled -rst-002 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled -rstrgp02-rep-003 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled -rstrgp02-rep-004 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mariadb-test-h3pame eastus qiszomtkpf 10.2 5120 B_Gen5_1 Basic Enabled +mariadb-test-4rmtig eastus xofavpndqj 10.2 5120 B_Gen5_1 Basic Enabled +mariadb-test-szp6dt eastus zmoxhpgjqc 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled +mariadb-test-9pebvn eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled +mariadb-test-szp6dt-rep428 eastus zmoxhpgjqc 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled +mariadb-asd-01 eastus adminuser 10.2 5120 B_Gen5_1 Basic Enabled +rst-001 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled +rst-002 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled +rstrgp02-rep-003 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled +rstrgp02-rep-004 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled .Example PS C:\> Get-AzMariaDbServer -ResourceGroupName mariadb-test-qu5ov0 -Name mariadb-test-h3pame -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mariadb-test-h3pame eastus qiszomtkpf 10.2 5120 B_Gen5_1 Basic Enabled - +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mariadb-test-h3pame eastus qiszomtkpf 10.2 5120 B_Gen5_1 Basic Enabled + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ConfigurationName ]: The name of the server configuration. + [DatabaseName ]: The name of the database. + [FirewallRuleName ]: The name of the server firewall rule. + [Id ]: Resource identity path + [LocationName ]: The name of the location. + [ResourceGroupName ]: The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. + [SecurityAlertPolicyName ]: The name of the security alert policy. + [ServerName ]: The name of the server. + [SubscriptionId ]: The subscription ID that identifies an Azure subscription. + [VirtualNetworkRuleName ]: The name of the virtual network rule. .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/get-azmariadbserver #> @@ -847,6 +909,26 @@ Name Type ---- ---- vnetrule-QdMJpU Microsoft.DBforMariaDB/servers/virtualNetworkRules +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRule +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ConfigurationName ]: The name of the server configuration. + [DatabaseName ]: The name of the database. + [FirewallRuleName ]: The name of the server firewall rule. + [Id ]: Resource identity path + [LocationName ]: The name of the location. + [ResourceGroupName ]: The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. + [SecurityAlertPolicyName ]: The name of the security alert policy. + [ServerName ]: The name of the server. + [SubscriptionId ]: The subscription ID that identifies an Azure subscription. + [VirtualNetworkRuleName ]: The name of the virtual network rule. .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/get-azmariadbvirtualnetworkrule #> @@ -1000,179 +1082,6 @@ end { # limitations under the License. # ---------------------------------------------------------------------------------- -<# -.Synopsis -Creates a new firewall rule or updates an existing firewall rule. -.Description -Creates a new firewall rule or updates an existing firewall rule. -.Example -PS C:\> New-AzMariaDbFirewallRule -Name firewall-101 -ResourceGroupName mariadb-test-qu5ov0 -ServerName mariadb-asd-01 -EndIPAddress 0.0.2.255 -StartIPAddress 0.0.2.1 - -Name Type ----- ---- -firewall-101 Microsoft.DBforMariaDB/servers/firewallRules - -.Link -https://docs.microsoft.com/en-us/powershell/module/az.mariadb/new-azmariadbfirewallrule -#> -function New-AzMariaDbFirewallRule { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRule])] -[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Mandatory)] - [Alias('FirewallRuleName')] - [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] - [System.String] - # The name of the server firewall rule. - ${Name}, - - [Parameter(Mandatory)] - [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] - [System.String] - # The name of the resource group that contains the resource. - # You can obtain this value from the Azure Resource Manager API or the portal. - ${ResourceGroupName}, - - [Parameter(Mandatory)] - [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] - [System.String] - # The name of the server. - ${ServerName}, - - [Parameter()] - [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] - [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] - [System.String] - # The subscription ID that identifies an Azure subscription. - ${SubscriptionId}, - - [Parameter(Mandatory)] - [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] - [System.String] - # The end IP address of the server firewall rule. - # Must be IPv4 format. - ${EndIPAddress}, - - [Parameter(Mandatory)] - [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] - [System.String] - # The start IP address of the server firewall rule. - # Must be IPv4 format. - ${StartIPAddress}, - - [Parameter()] - [Alias('AzureRMContext', 'AzureCredential')] - [ValidateNotNull()] - [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Azure')] - [System.Management.Automation.PSObject] - # The credentials, account, tenant, and subscription used for communication with Azure. - ${DefaultProfile}, - - [Parameter()] - [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Run the command as a job - ${AsJob}, - - [Parameter(DontShow)] - [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] - [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] - [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Run the command asynchronously - ${NoWait}, - - [Parameter(DontShow)] - [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - $mapping = @{ - CreateExpanded = 'Az.MariaDb.private\New-AzMariaDbFirewallRule_CreateExpanded'; - } - if (('CreateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { - $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id - } - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - throw - } -} - -end { - try { - $steppablePipeline.End() - } catch { - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - <# .Synopsis Creates or updates an existing virtual network rule. @@ -1186,6 +1095,8 @@ Name Type ---- ---- vnet-001 Microsoft.DBforMariaDB/servers/virtualNetworkRules +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRule .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/new-azmariadbvirtualnetworkrule #> @@ -1360,6 +1271,26 @@ Deletes a server firewall rule. PS C:\> Remove-AzMariaDbFirewallRule -Name frname-001 -ResourceGroupName mariadb-test-qu5ov0 -ServerName mariadb-test-4rmtig +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity +.Outputs +System.Boolean +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ConfigurationName ]: The name of the server configuration. + [DatabaseName ]: The name of the database. + [FirewallRuleName ]: The name of the server firewall rule. + [Id ]: Resource identity path + [LocationName ]: The name of the location. + [ResourceGroupName ]: The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. + [SecurityAlertPolicyName ]: The name of the security alert policy. + [ServerName ]: The name of the server. + [SubscriptionId ]: The subscription ID that identifies an Azure subscription. + [VirtualNetworkRuleName ]: The name of the virtual network rule. .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/remove-azmariadbfirewallrule #> @@ -1533,6 +1464,26 @@ PS C:\> Remove-AzMariaDbServer -Name mariadb-asd-01 -ResourceGroupName mariadb-t PS C:\> Get-AzMariaDbServer -Name mariadb-bc-t01 -ResourceGroupName mariadb-test-qu5ov0 | Remove-AzMariaDbServer +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity +.Outputs +System.Boolean +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ConfigurationName ]: The name of the server configuration. + [DatabaseName ]: The name of the database. + [FirewallRuleName ]: The name of the server firewall rule. + [Id ]: Resource identity path + [LocationName ]: The name of the location. + [ResourceGroupName ]: The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. + [SecurityAlertPolicyName ]: The name of the security alert policy. + [ServerName ]: The name of the server. + [SubscriptionId ]: The subscription ID that identifies an Azure subscription. + [VirtualNetworkRuleName ]: The name of the virtual network rule. .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/remove-azmariadbserver #> @@ -1697,6 +1648,26 @@ Deletes the virtual network rule with the given name. PS C:\> Remove-AzMariaDbVirtualNetworkRule -Name vnet-001 -ResourceGroupName mariadb-test-qu5ov0 -ServerName mariadb-test-9pebvn +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity +.Outputs +System.Boolean +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ConfigurationName ]: The name of the server configuration. + [DatabaseName ]: The name of the database. + [FirewallRuleName ]: The name of the server firewall rule. + [Id ]: Resource identity path + [LocationName ]: The name of the location. + [ResourceGroupName ]: The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. + [SecurityAlertPolicyName ]: The name of the security alert policy. + [ServerName ]: The name of the server. + [SubscriptionId ]: The subscription ID that identifies an Azure subscription. + [VirtualNetworkRuleName ]: The name of the virtual network rule. .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/remove-azmariadbvirtualnetworkrule #> @@ -1860,28 +1831,49 @@ end { <# .Synopsis -Updates a configuration of a server. +Creates or updates an existing virtual network rule. .Description -Updates a configuration of a server. +Creates or updates an existing virtual network rule. .Example -PS C:\> Update-AzMariaDbConfiguration -Name delayed_insert_timeout -Value 200 -ServerName mariadb-test-h3pame -ResourceGroupName mariadb-test-qu5ov0 +PS C:\> $vnet = Get-AzVirtualNetwork -Name vnet -ResourceGroupName mariadb-test-qu5ov0 +PS C:\> Update-AzMariaDbVirtualNetworkRule -ServerName mariadb-test-9pebvn -ResourceGroupName mariadb-test-qu5ov0 -Name vnetrule-QdMJpU -SubnetId $vnet.Subnets[0].Id -IgnoreMissingVnetServiceEndpoint -Name Type ----- ---- -delayed_insert_timeout Microsoft.DBforMariaDB/servers/configurations +Name Type +---- ---- +vnetrule-QdMJpU Microsoft.DBforMariaDB/servers/virtualNetworkRules +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRule +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ConfigurationName ]: The name of the server configuration. + [DatabaseName ]: The name of the database. + [FirewallRuleName ]: The name of the server firewall rule. + [Id ]: Resource identity path + [LocationName ]: The name of the location. + [ResourceGroupName ]: The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. + [SecurityAlertPolicyName ]: The name of the security alert policy. + [ServerName ]: The name of the server. + [SubscriptionId ]: The subscription ID that identifies an Azure subscription. + [VirtualNetworkRuleName ]: The name of the virtual network rule. .Link -https://docs.microsoft.com/en-us/powershell/module/az.mariadb/update-azmariadbconfiguration +https://docs.microsoft.com/en-us/powershell/module/az.mariadb/update-azmariadbvirtualnetworkrule #> -function Update-AzMariaDbConfiguration { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfiguration])] +function Update-AzMariaDbVirtualNetworkRule { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRule])] [CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] - [Alias('ConfigurationName')] + [Alias('VirtualNetworkRuleName')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] [System.String] - # The name of the server configuration. + # The name of the virtual network rule. ${Name}, [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] @@ -1913,15 +1905,15 @@ param( [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] - [System.String] - # Source of the configuration. - ${Source}, + [System.Management.Automation.SwitchParameter] + # Create firewall rule before the virtual network has vnet service endpoint enabled. + ${IgnoreMissingVnetServiceEndpoint}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] [System.String] - # Value of the configuration. - ${Value}, + # The ARM resource id of the virtual network subnet. + ${SubnetId}, [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] @@ -1963,6 +1955,12 @@ param( # Run the command asynchronously ${NoWait}, + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Returns true when the command succeeds + ${PassThru}, + [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Uri] @@ -1991,8 +1989,8 @@ begin { } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ - UpdateExpanded = 'Az.MariaDb.private\Update-AzMariaDbConfiguration_UpdateExpanded'; - UpdateViaIdentityExpanded = 'Az.MariaDb.private\Update-AzMariaDbConfiguration_UpdateViaIdentityExpanded'; + UpdateExpanded = 'Az.MariaDb.private\Update-AzMariaDbVirtualNetworkRule_UpdateExpanded'; + UpdateViaIdentityExpanded = 'Az.MariaDb.private\Update-AzMariaDbVirtualNetworkRule_UpdateViaIdentityExpanded'; } if (('UpdateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id @@ -2039,85 +2037,99 @@ end { <# .Synopsis -Creates a new firewall rule or updates an existing firewall rule. +Get connection string of a MariaDB under a given framework. .Description -Creates a new firewall rule or updates an existing firewall rule. +Get connection string of a MariaDB under a given framework. .Example -PS C:\> Update-AzMariaDbFirewallRule -Name fr-cfgl3y -ServerName mariadb-test-4rmtig -ResourceGroupName mariadb-test-qu5ov0 -StartIPAddress 0.0.3.1 -EndIPAddress 0.0.3.255 +PS C:\> Get-AzMariaDbConnectionString -ServerName mariadb-asd-01 -ResourceGroupName mariadb-test-qu5ov0 -Client ADO.NET + +Server=mariadb-asd-01.mariadb.database.azure.com; Port=3306; Database={your_database}; Uid=adminuser@mariadb-asd-01; Pwd={your_password}; SslMode=Preferred; +.Example +PS C:\> Get-AzMariaDbServer -Name mariadb-gp-t03 -ResourceGroupName lucas-manual-test | Get-AzMariaDbConnectionString -Client PHP -Name Type ----- ---- -fr-cfgl3y Microsoft.DBforMariaDB/servers/firewallRules +$con=mysqli_init();mysqli_ssl_set($con, NULL, NULL, {ca-cert filename}, NULL, NULL); mysqli_real_connect($con, "mariadb-gp-t03.mariadb.database.azure.com", "adminuser@mariadb-gp-t03", {your_password}, {your_database}, 3306); +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer +.Outputs +System.String +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + Location : The location the resource resides in. + [Tag ]: Application-specific metadata in the form of key-value pairs. + [(Any) ]: This indicates any property can be added to this object. + [AdministratorLogin ]: The administrator's login name of a server. Can only be specified when the server is being created (and is required for creation). + [EarliestRestoreDate ]: Earliest restore point creation time (ISO8601 format) + [FullyQualifiedDomainName ]: The fully qualified domain name of a server. + [IdentityType ]: The identity type. Set this to 'SystemAssigned' in order to automatically create and assign an Azure Active Directory principal for the resource. + [MasterServerId ]: The master server id of a replica server. + [ReplicaCapacity ]: The maximum number of replicas that a master server can have. + [ReplicationRole ]: The replication role of the server. + [SkuCapacity ]: The scale up/out capacity, representing server's compute units. + [SkuFamily ]: The family of hardware. + [SkuName ]: The name of the sku, typically, tier + family + cores, e.g. B_Gen4_1, GP_Gen5_8. + [SkuSize ]: The size code, to be interpreted by resource as appropriate. + [SkuTier ]: The tier of the particular SKU, e.g. Basic. + [SslEnforcement ]: Enable ssl enforcement or not when connect to server. + [StorageProfileBackupRetentionDay ]: Backup retention days for the server. + [StorageProfileGeoRedundantBackup ]: Enable Geo-redundant or not for server backup. + [StorageProfileStorageAutogrow ]: Enable Storage Auto Grow. + [StorageProfileStorageMb ]: Max storage allowed for a server. + [UserVisibleState ]: A state of a server that is visible to user. + [Version ]: Server version. .Link -https://docs.microsoft.com/en-us/powershell/module/az.mariadb/update-azmariadbfirewallrule +https://docs.microsoft.com/en-us/powershell/module/az.mariadb/get-azmariadbconnectionstring #> -function Update-AzMariaDbFirewallRule { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRule])] -[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +function Get-AzMariaDbConnectionString { +[OutputType([System.String])] +[CmdletBinding(DefaultParameterSetName='ServerName', PositionalBinding=$false)] param( - [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] - [Alias('FirewallRuleName')] + [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] [System.String] - # The name of the server firewall rule. - ${Name}, + # Connect client type + ${Client}, - [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(ParameterSetName='ServerName', Mandatory)] + [Alias('ServerName')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] [System.String] - # The name of the resource group that contains the resource. - # You can obtain this value from the Azure Resource Manager API or the portal. - ${ResourceGroupName}, + # The name of the server. + ${Name}, - [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(ParameterSetName='ServerName', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] [System.String] - # The name of the server. - ${ServerName}, + # The name of the resource group that contains the resource. + ${ResourceGroupName}, - [Parameter(ParameterSetName='UpdateExpanded')] + [Parameter(ParameterSetName='ServerName')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] - # The subscription ID that identifies an Azure subscription. + # The subscription ID is part of the URI for every service call ${SubscriptionId}, - [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] + [Parameter(ParameterSetName='ServerObject', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] - [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer] # Identity Parameter # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, - [Parameter(Mandatory)] - [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] - [System.String] - # The end IP address of the server firewall rule. - # Must be IPv4 format. - ${EndIPAddress}, - - [Parameter(Mandatory)] - [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] - [System.String] - # The start IP address of the server firewall rule. - # Must be IPv4 format. - ${StartIPAddress}, - [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Azure')] [System.Management.Automation.PSObject] - # The credentials, account, tenant, and subscription used for communication with Azure. + # region DefaultParameters + # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, - [Parameter()] - [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Run the command as a job - ${AsJob}, - [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.SwitchParameter] @@ -2138,12 +2150,6 @@ param( # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, - [Parameter()] - [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Run the command asynchronously - ${NoWait}, - [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Uri] @@ -2161,6 +2167,7 @@ param( [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy + # endregion DefaultParameters ${ProxyUseDefaultCredentials} ) @@ -2172,10 +2179,10 @@ begin { } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ - UpdateExpanded = 'Az.MariaDb.private\Update-AzMariaDbFirewallRule_UpdateExpanded'; - UpdateViaIdentityExpanded = 'Az.MariaDb.private\Update-AzMariaDbFirewallRule_UpdateViaIdentityExpanded'; + ServerName = 'Az.MariaDb.custom\Get-AzMariaDbConnectionString'; + ServerObject = 'Az.MariaDb.custom\Get-AzMariaDbConnectionString'; } - if (('UpdateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + if (('ServerName') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) @@ -2220,69 +2227,92 @@ end { <# .Synopsis -Creates or updates an existing virtual network rule. +Creates a new firewall rule or updates an existing firewall rule. .Description -Creates or updates an existing virtual network rule. +Creates a new firewall rule or updates an existing firewall rule. .Example -PS C:\> $vnet = Get-AzVirtualNetwork -Name vnet -ResourceGroupName mariadb-test-qu5ov0 -PS C:\> Update-AzMariaDbVirtualNetworkRule -ServerName mariadb-test-9pebvn -ResourceGroupName mariadb-test-qu5ov0 -Name vnetrule-QdMJpU -SubnetId $vnet.Subnets[0].Id -IgnoreMissingVnetServiceEndpoint +PS C:\> New-AzMariaDbFirewallRule -Name firewall-101 -ResourceGroupName mariadb-test-qu5ov0 -ServerName mariadb-asd-01 -EndIPAddress 0.0.2.255 -StartIPAddress 0.0.2.1 -Name Type ----- ---- -vnetrule-QdMJpU Microsoft.DBforMariaDB/servers/virtualNetworkRules +Name StartIPAddress EndIPAddress +---- -------------- ------------ +firewall-101 0.0.2.1 0.0.2.255 +.Example +PS C:\> New-AzMariaDbFirewallRule -ResourceGroupName mariadb-test-qu5ov0 -ServerName mariadb-asd-01 -ClientIPAddress 0.0.0.1 + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +ClientIPAddress_2020-08-11_18-19-27 0.0.0.1 0.0.0.1 +.Example +PS C:\> New-AzMariaDbFirewallRule -ResourceGroupName mariadb-test-qu5ov0 -ServerName mariadb-asd-01 -AllowAll + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +AllowAll_2020-08-11_18-19-27 0.0.0.0 255.255.255.255 +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRule .Link -https://docs.microsoft.com/en-us/powershell/module/az.mariadb/update-azmariadbvirtualnetworkrule +https://docs.microsoft.com/en-us/powershell/module/az.mariadb/new-azmariadbfirewallrule #> -function Update-AzMariaDbVirtualNetworkRule { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRule])] -[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +function New-AzMariaDbFirewallRule { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRule])] +[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( - [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] - [Alias('VirtualNetworkRuleName')] - [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] - [System.String] - # The name of the virtual network rule. - ${Name}, - - [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] [System.String] # The name of the resource group that contains the resource. # You can obtain this value from the Azure Resource Manager API or the portal. ${ResourceGroupName}, - [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] [System.String] # The name of the server. ${ServerName}, - [Parameter(ParameterSetName='UpdateExpanded')] + [Parameter()] + [Alias('FirewallRuleName')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] + [System.String] + # The name of the server firewall rule. + # If not specified, the default is undefined. + # If AllowAll is present, the default name is AllowAll_yyyy-MM-dd_HH-mm-ss. + ${Name}, + + [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] # The subscription ID that identifies an Azure subscription. ${SubscriptionId}, - [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] - [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] + [System.String] + # The end IP address of the server firewall rule. + # Must be IPv4 format. + ${EndIPAddress}, - [Parameter()] + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Create firewall rule before the virtual network has vnet service endpoint enabled. - ${IgnoreMissingVnetServiceEndpoint}, + [System.String] + # The start IP address of the server firewall rule. + # Must be IPv4 format. + ${StartIPAddress}, - [Parameter()] + [Parameter(ParameterSetName='ClientIPAddress', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] [System.String] - # The ARM resource id of the virtual network subnet. - ${SubnetId}, + # Client specified single IP of the server firewall rule. + # Must be IPv4 format. + ${ClientIPAddress}, + + [Parameter(ParameterSetName='AllowAll', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] + [System.Management.Automation.SwitchParameter] + # Present to allow all range IPs, from 0.0.0.0 to 255.255.255.255. + ${AllowAll}, [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] @@ -2324,12 +2354,6 @@ param( # Run the command asynchronously ${NoWait}, - [Parameter()] - [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Uri] @@ -2358,10 +2382,11 @@ begin { } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ - UpdateExpanded = 'Az.MariaDb.private\Update-AzMariaDbVirtualNetworkRule_UpdateExpanded'; - UpdateViaIdentityExpanded = 'Az.MariaDb.private\Update-AzMariaDbVirtualNetworkRule_UpdateViaIdentityExpanded'; + CreateExpanded = 'Az.MariaDb.custom\New-AzMariaDbFirewallRule'; + ClientIPAddress = 'Az.MariaDb.custom\New-AzMariaDbFirewallRule'; + AllowAll = 'Az.MariaDb.custom\New-AzMariaDbFirewallRule'; } - if (('UpdateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + if (('CreateExpanded', 'ClientIPAddress', 'AllowAll') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) @@ -2406,96 +2431,182 @@ end { <# .Synopsis - +Creates a replica of a MariaDB server. .Description - +Creates a replica of a MariaDB server. .Example -PS C:\> Get-AzMariaDbConnectionString -ServerName mariadb-asd-01 -ResourceGroupName mariadb-test-qu5ov0 -Client ADO.NET +PS C:\> New-AzMariaDbReplica -MasterName mariadb-test-9pebvn -ReplicaName mariadb-test-9pebvn-rep01 -ResourceGroupName mariadb-test-qu5ov0 -Server=mariadb-asd-01.mariadb.database.azure.com; Port=3306; Database={your_database}; Uid=adminuser@mariadb-asd-01; Pwd={your_password}; SslMode=Preferred; +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mariadb-test-9pebvn-rep01 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled .Example -PS C:\> Get-AzMariaDbServer -Name mariadb-gp-t03 -ResourceGroupName lucas-manual-test | Get-AzMariaDbConnectionString -Client PHP - -$con=mysqli_init();mysqli_ssl_set($con, NULL, NULL, {ca-cert filename}, NULL, NULL); mysqli_real_connect($con, "mariadb-gp-t03.mariadb.database.azure.com", "adminuser@mariadb-gp-t03", {your_password}, {your_database}, 3306); +PS C:\> Get-AzMariaDbServer -Name mariadb-test-9pebvn -ResourceGroupName mariadb-test-qu5ov0 | New-AzMariaDbReplica -ReplicaName mariadb-test-9pebvn-rep02 +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mariadb-test-9pebvn-rep02 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled +.Example +PS C:\> $mariaDb = Get-AzMariaDbServer -Name mariadb-test-9pebvn -ResourceGroupName mariadb-test-qu5ov0 +PS C:\> New-AzMariaDbReplica -Master $mariaDb -ReplicaName mariadb-test-9pebvn-rep03 + +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mariadb-test-9pebvn-rep03 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +MASTER : The source server object to restore from. + Location : The location the resource resides in. + [Tag ]: Application-specific metadata in the form of key-value pairs. + [(Any) ]: This indicates any property can be added to this object. + [AdministratorLogin ]: The administrator's login name of a server. Can only be specified when the server is being created (and is required for creation). + [EarliestRestoreDate ]: Earliest restore point creation time (ISO8601 format) + [FullyQualifiedDomainName ]: The fully qualified domain name of a server. + [IdentityType ]: The identity type. Set this to 'SystemAssigned' in order to automatically create and assign an Azure Active Directory principal for the resource. + [MasterServerId ]: The master server id of a replica server. + [ReplicaCapacity ]: The maximum number of replicas that a master server can have. + [ReplicationRole ]: The replication role of the server. + [SkuCapacity ]: The scale up/out capacity, representing server's compute units. + [SkuFamily ]: The family of hardware. + [SkuName ]: The name of the sku, typically, tier + family + cores, e.g. B_Gen4_1, GP_Gen5_8. + [SkuSize ]: The size code, to be interpreted by resource as appropriate. + [SkuTier ]: The tier of the particular SKU, e.g. Basic. + [SslEnforcement ]: Enable ssl enforcement or not when connect to server. + [StorageProfileBackupRetentionDay ]: Backup retention days for the server. + [StorageProfileGeoRedundantBackup ]: Enable Geo-redundant or not for server backup. + [StorageProfileStorageAutogrow ]: Enable Storage Auto Grow. + [StorageProfileStorageMb ]: Max storage allowed for a server. + [UserVisibleState ]: A state of a server that is visible to user. + [Version ]: Server version. .Link -https://docs.microsoft.com/en-us/powershell/module/az.mariadb/get-azmariadbconnectionstring +https://docs.microsoft.com/en-us/powershell/module/az.mariadb/new-azmariadbreplica #> -function Get-AzMariaDbConnectionString { -[OutputType([System.String])] -[CmdletBinding(DefaultParameterSetName='ServerName', PositionalBinding=$false)] +function New-AzMariaDbReplica { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer])] +[CmdletBinding(DefaultParameterSetName='ServerName', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] + [Alias('ReplicaServerName', 'Name')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] [System.String] - # Connect client type - ${Client}, + # Replica name. + ${ReplicaName}, [Parameter(ParameterSetName='ServerName', Mandatory)] [Alias('ServerName')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] [System.String] - # The name of the server. - ${Name}, + # MariaDB server name. + ${MasterName}, [Parameter(ParameterSetName='ServerName', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] [System.String] - # The name of the resource group that contains the resource. + # You can obtain this value from the Azure Resource Manager API or the portal. ${ResourceGroupName}, - [Parameter(ParameterSetName='ServerName')] + [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] - # The subscription ID is part of the URI for every service call + # The subscription ID is part of the URI for every service call. ${SubscriptionId}, [Parameter(ParameterSetName='ServerObject', Mandatory, ValueFromPipeline)] + [Alias('InputObject')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, + # The source server object to restore from. + # To construct, see NOTES section for MASTER properties and create a hash table. + ${Master}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] + [System.String] + # The location the resource resides in. + ${Location}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] + [System.String] + # The name of the sku, typically, tier + family + cores, e.g. + # B_Gen4_1, GP_Gen5_8. + ${Sku}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersTags]))] + [System.Collections.Hashtable] + # Application-specific metadata in the form of key-value pairs. + ${Tag}, [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Azure')] [System.Management.Automation.PSObject] + # region DefaultParameters + # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Uri] + # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + # endregion DefaultParameters ${ProxyUseDefaultCredentials} ) @@ -2507,10 +2618,10 @@ begin { } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ - ServerName = 'Az.MariaDb.custom\Get-AzMariaDbConnectionString'; - ServerObject = 'Az.MariaDb.custom\Get-AzMariaDbConnectionString'; + ServerName = 'Az.MariaDb.custom\New-AzMariaDbReplica'; + ServerObject = 'Az.MariaDb.custom\New-AzMariaDbReplica'; } - if (('ServerName') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + if (('ServerName', 'ServerObject') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) @@ -2555,9 +2666,9 @@ end { <# .Synopsis - +Creates a new MariaDB. .Description - +Creates a new MariaDB. .Example PS C:\> New-AzMariaDbServer -Name mariadb-aassd-01 -ResourceGroupName lucas-manual-test -Sku 'B_Gen5_1' -Location eastus cmdlet New-AzMariaDbServer at command pipeline position 1 @@ -2565,10 +2676,12 @@ Supply values for the following parameters: AdministratorUsername: adminuser AdministratorLoginPassword: ************ -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mariadb-aassd-01 eastus adminuser 10.2 5120 B_Gen5_1 Basic Enabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mariadb-aassd-01 eastus adminuser 10.2 5120 B_Gen5_1 Basic Enabled +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/new-azmariadbserver #> @@ -2580,7 +2693,7 @@ param( [Alias('ServerName')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] [System.String] - # MariaDb server name. + # MariaDB server name. ${Name}, [Parameter(Mandatory)] @@ -2640,6 +2753,7 @@ param( ${GeoRedundantBackup}, [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow])] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow] # Enable Storage Auto Grow. @@ -2669,49 +2783,60 @@ param( [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Azure')] [System.Management.Automation.PSObject] + # region DefaultParameters + # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.SwitchParameter] + # Run the command as a job ${AsJob}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.SwitchParameter] + # Run the command asynchronously ${NoWait}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Uri] + # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + # endregion DefaultParameters ${ProxyUseDefaultCredentials} ) @@ -2770,130 +2895,134 @@ end { <# .Synopsis - +Restarts a server. .Description - +Restarts a server. .Example -PS C:\> New-AzMariaDbServerReplica -ServerName mariadb-test-9pebvn -Name mariadb-test-9pebvn-rep01 -ResourceGroupName mariadb-test-qu5ov0 +PS C:\> Restart-AzMariaDbServer -Name mariadb-test-9pebvn -ResourceGroupName mariadb-test-qu5ov0 -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mariadb-test-9pebvn-rep01 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled .Example -PS C:\> Get-AzMariaDbServer -Name mariadb-test-9pebvn -ResourceGroupName mariadb-test-qu5ov0 | New-AzMariaDbServerReplica -Name mariadb-test-9pebvn-rep02 +PS C:\> Get-AzMariaDbServer -Name mariadb-test-9pebvn -ResourceGroupName mariadb-test-qu5ov0 | Restart-AzMariaDbServer -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mariadb-test-9pebvn-rep02 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity +.Outputs +System.Boolean +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ConfigurationName ]: The name of the server configuration. + [DatabaseName ]: The name of the database. + [FirewallRuleName ]: The name of the server firewall rule. + [Id ]: Resource identity path + [LocationName ]: The name of the location. + [ResourceGroupName ]: The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. + [SecurityAlertPolicyName ]: The name of the security alert policy. + [ServerName ]: The name of the server. + [SubscriptionId ]: The subscription ID that identifies an Azure subscription. + [VirtualNetworkRuleName ]: The name of the virtual network rule. .Link -https://docs.microsoft.com/en-us/powershell/module/az.mariadb/new-azmariadbserverreplica +https://docs.microsoft.com/en-us/powershell/module/az.mariadb/restart-azmariadbserver #> -function New-AzMariaDbServerReplica { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer])] +function Restart-AzMariaDbServer { +[OutputType([System.Boolean])] [CmdletBinding(DefaultParameterSetName='ServerName', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( - [Parameter(Mandatory)] - [Alias('ReplicaServerName')] - [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] - [System.String] - # Replica name. - ${Name}, - [Parameter(ParameterSetName='ServerName', Mandatory)] + [Alias('ServerName')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] [System.String] - # MariaDb server name. - ${ServerName}, + # The name of the server. + ${Name}, [Parameter(ParameterSetName='ServerName', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] [System.String] + # The name of the resource group that contains the resource. # You can obtain this value from the Azure Resource Manager API or the portal. ${ResourceGroupName}, - [Parameter()] + [Parameter(ParameterSetName='ServerName')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] - # The subscription ID is part of the URI for every service call. + # The subscription ID that identifies an Azure subscription. ${SubscriptionId}, [Parameter(ParameterSetName='ServerObject', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] - [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer] - # The source server object to restore from. + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity] + # Identity Parameter # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, - [Parameter()] - [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] - [System.String] - # The location the resource resides in. - ${Location}, - - [Parameter()] - [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] - [System.String] - # The name of the sku, typically, tier + family + cores, e.g. - # B_Gen4_1, GP_Gen5_8. - ${Sku}, - - [Parameter()] - [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersTags]))] - [System.Collections.Hashtable] - # Application-specific metadata in the form of key-value pairs. - ${Tag}, - [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Azure')] [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.SwitchParameter] + # Run the command as a job ${AsJob}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.SwitchParameter] + # Run the command asynchronously ${NoWait}, + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Returns true when the command succeeds + ${PassThru}, + [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Uri] + # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) @@ -2905,10 +3034,10 @@ begin { } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ - ServerName = 'Az.MariaDb.custom\New-AzMariaDbServerReplica'; - ServerObject = 'Az.MariaDb.custom\New-AzMariaDbServerReplica'; + ServerName = 'Az.MariaDb.custom\Restart-AzMariaDbServer'; + ServerObject = 'Az.MariaDb.custom\Restart-AzMariaDbServer'; } - if (('ServerName', 'ServerObject') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + if (('ServerName') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) @@ -2953,99 +3082,175 @@ end { <# .Synopsis - +Restore a MariaDB from a existing MariaDB. .Description - +Restore a MariaDB from a existing MariaDB. .Example -PS C:\> Restart-AzMariaDbServer -Name mariadb-test-9pebvn -ResourceGroupName mariadb-test-qu5ov0 +PS C:\> Restore-AzMariaDbServer -Name restore-db01 -ServerName mariadb-test-usegeo -ResourceGroupName mariadb-test-4rih5z -UsePointInTimeRestore -RestorePointInTime $(Get-Date) -Location eastus +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +restore-db01 eastus adminuser 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled .Example -PS C:\> Get-AzMariaDbServer -Name mariadb-test-9pebvn -ResourceGroupName mariadb-test-qu5ov0 | Restart-AzMariaDbServer - +PS C:\> $db = Get-AzMariaDbServer -Name mariadb-test-usegeo -ResourceGroupName mariadb-test-4rih5z +PS C:\>Restore-AzMariaDbServer -Name restore-db02 -InputObject $db -UsePointInTimeRestore -RestorePointInTime $(Get-Date) -Location eastus +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +restore-db02 eastus adminuser 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : The source server object to restore from. + Location : The location the resource resides in. + [Tag ]: Application-specific metadata in the form of key-value pairs. + [(Any) ]: This indicates any property can be added to this object. + [AdministratorLogin ]: The administrator's login name of a server. Can only be specified when the server is being created (and is required for creation). + [EarliestRestoreDate ]: Earliest restore point creation time (ISO8601 format) + [FullyQualifiedDomainName ]: The fully qualified domain name of a server. + [IdentityType ]: The identity type. Set this to 'SystemAssigned' in order to automatically create and assign an Azure Active Directory principal for the resource. + [MasterServerId ]: The master server id of a replica server. + [ReplicaCapacity ]: The maximum number of replicas that a master server can have. + [ReplicationRole ]: The replication role of the server. + [SkuCapacity ]: The scale up/out capacity, representing server's compute units. + [SkuFamily ]: The family of hardware. + [SkuName ]: The name of the sku, typically, tier + family + cores, e.g. B_Gen4_1, GP_Gen5_8. + [SkuSize ]: The size code, to be interpreted by resource as appropriate. + [SkuTier ]: The tier of the particular SKU, e.g. Basic. + [SslEnforcement ]: Enable ssl enforcement or not when connect to server. + [StorageProfileBackupRetentionDay ]: Backup retention days for the server. + [StorageProfileGeoRedundantBackup ]: Enable Geo-redundant or not for server backup. + [StorageProfileStorageAutogrow ]: Enable Storage Auto Grow. + [StorageProfileStorageMb ]: Max storage allowed for a server. + [UserVisibleState ]: A state of a server that is visible to user. + [Version ]: Server version. .Link -https://docs.microsoft.com/en-us/powershell/module/az.mariadb/restart-azmariadbserver +https://docs.microsoft.com/en-us/powershell/module/az.mariadb/restore-azmariadbserver #> -function Restart-AzMariaDbServer { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='ServerName', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +function Restore-AzMariaDbServer { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer])] +[CmdletBinding(DefaultParameterSetName='PointInTimeRestore', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( - [Parameter(ParameterSetName='ServerName', Mandatory)] - [Alias('ServerName')] + [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] [System.String] + # The dest server name to restore from. ${Name}, - [Parameter(ParameterSetName='ServerName', Mandatory)] + [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] [System.String] + # The source server name to restore from. + ${ServerName}, + + [Parameter(ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer] + # The source server object to restore from. + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] + [System.String] + # The name of the resource group that contains the resource. + # You can obtain this value from the Azure Resource Manager API or the portal. ${ResourceGroupName}, - [Parameter(ParameterSetName='ServerName')] + [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] + # Gets the subscription Id which uniquely identifies the Microsoft Azure subscription. + # The subscription ID is part of the URI for every service call. ${SubscriptionId}, - [Parameter(ParameterSetName='ServerObject', Mandatory, ValueFromPipeline)] - [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] - [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity] - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] + [System.DateTime] + # region PointInTimeRestore + # The location the resource resides in. + ${RestorePointInTime}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] + [System.String] + # The location the resource resides in. + ${Location}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersTags]))] + [System.Collections.Hashtable] + # Application-specific metadata in the form of key-value pairs. + ${Tag}, [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Azure')] [System.Management.Automation.PSObject] + # region DefaultParameters + # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.SwitchParameter] + # Run the command as a job ${AsJob}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.SwitchParameter] + # Run the command asynchronously ${NoWait}, - [Parameter()] - [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - ${PassThru}, - [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Uri] + # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + # endregion DefaultParameters ${ProxyUseDefaultCredentials} ) @@ -3057,10 +3262,9 @@ begin { } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ - ServerName = 'Az.MariaDb.custom\Restart-AzMariaDbServer'; - ServerObject = 'Az.MariaDb.custom\Restart-AzMariaDbServer'; + PointInTimeRestore = 'Az.MariaDb.custom\Restore-AzMariaDbServer'; } - if (('ServerName') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + if (('PointInTimeRestore') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) @@ -3105,122 +3309,378 @@ end { <# .Synopsis - +Updates a configuration of a server. +Use Update-AzMariaDbServer instead if you want update AdministratorLoginPassword, sku, etc. .Description - -.Example -PS C:\> Restore-AzMariaDbServer -Name restore-db01 -ServerName mariadb-test-usegeo -ResourceGroupName mariadb-test-4rih5z -UsePointInTimeRestore -RestorePointInTime $(Get-Date) -Location eastus - -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -restore-db01 eastus adminuser 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled +Updates a configuration of a server. +Use Update-AzMariaDberver instead if you want update AdministratorLoginPassword, sku, etc. .Example -PS C:\> $db = Get-AzMariaDbServer -Name mariadb-test-usegeo -ResourceGroupName mariadb-test-4rih5z -PS C:\>Restore-AzMariaDbServer -Name restore-db02 -InputObject $db -UsePointInTimeRestore -RestorePointInTime $(Get-Date) -Location eastus +PS C:\> Update-AzMariaDbConfiguration -Name delayed_insert_timeout -Value 200 -ServerName mariadb-test-h3pame -ResourceGroupName mariadb-test-qu5ov0 -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -restore-db02 eastus adminuser 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled +Name Type +---- ---- +delayed_insert_timeout Microsoft.DBforMariaDB/servers/configurations +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfiguration +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ConfigurationName ]: The name of the server configuration. + [DatabaseName ]: The name of the database. + [FirewallRuleName ]: The name of the server firewall rule. + [Id ]: Resource identity path + [LocationName ]: The name of the location. + [ResourceGroupName ]: The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. + [SecurityAlertPolicyName ]: The name of the security alert policy. + [ServerName ]: The name of the server. + [SubscriptionId ]: The subscription ID that identifies an Azure subscription. + [VirtualNetworkRuleName ]: The name of the virtual network rule. .Link -https://docs.microsoft.com/en-us/powershell/module/az.mariadb/restore-azmariadbserver +https://docs.microsoft.com/en-us/powershell/module/az.mariadb/update-azmariadbconfiguration #> -function Restore-AzMariaDbServer { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer])] -[CmdletBinding(DefaultParameterSetName='PointInTimeRestore', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +function Update-AzMariaDbConfiguration { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfiguration])] +[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( - [Parameter(Mandatory)] + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Alias('ConfigurationName')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] [System.String] + # The name of the server configuration. ${Name}, - [Parameter()] + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] [System.String] + # The name of the resource group that contains the resource. + # You can obtain this value from the Azure Resource Manager API or the portal. + ${ResourceGroupName}, + + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] + [System.String] + # The name of the server. ${ServerName}, - [Parameter(ValueFromPipeline)] + [Parameter(ParameterSetName='UpdateExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] - [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # The subscription ID that identifies an Azure subscription. + ${SubscriptionId}, + + [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity] + # Identity Parameter # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] + [System.String] + # Source of the configuration. + ${Source}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] + [System.String] + # Value of the configuration. + ${Value}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + UpdateExpanded = 'Az.MariaDb.custom\Update-AzMariaDbConfiguration'; + UpdateViaIdentityExpanded = 'Az.MariaDb.custom\Update-AzMariaDbConfiguration'; + } + if (('UpdateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} + +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.Synopsis +Creates a new firewall rule or updates an existing firewall rule. +.Description +Creates a new firewall rule or updates an existing firewall rule. +.Example +PS C:\> Update-AzMariaDbFirewallRule -Name fr-cfgl3y -ServerName mariadb-test-4rmtig -ResourceGroupName mariadb-test-qu5ov0 -StartIPAddress 0.0.3.1 -EndIPAddress 0.0.3.255 + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +fr-cfgl3y 0.0.3.1 0.0.3.255 +.Example +PS C:\> $ID = "/subscriptions//resourceGroups/mariadb-test-qu5ov0/providers/Microsoft.DBforMariaDB/servers/mariadb-test-4rmtig/firewallRules/fr-cfgl3y" +PS C:\> Update-AzMariaDbFirewallRule -InputObject $ID -EndIPAddress 0.0.0.3 -StartIPAddress 0.0.0.2 + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +fr-cfgl3y 0.0.0.2 0.0.0.3 +.Example +PS C:\> $ID = "/subscriptions//resourceGroups/mariadb-test-qu5ov0/providers/Microsoft.DBforMariaDB/servers/mariadb-test-4rmtig/firewallRules/fr-cfgl3y" +PS C:\> Update-AzMariaDbFirewallRule -InputObject $ID --ClientIPAddress 0.0.0.2 + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +fr-cfgl3y 0.0.0.2 0.0.0.2 + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRule +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ConfigurationName ]: The name of the server configuration. + [DatabaseName ]: The name of the database. + [FirewallRuleName ]: The name of the server firewall rule. + [Id ]: Resource identity path + [LocationName ]: The name of the location. + [ResourceGroupName ]: The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. + [SecurityAlertPolicyName ]: The name of the security alert policy. + [ServerName ]: The name of the server. + [SubscriptionId ]: The subscription ID that identifies an Azure subscription. + [VirtualNetworkRuleName ]: The name of the virtual network rule. +.Link +https://docs.microsoft.com/en-us/powershell/module/az.mariadb/update-azmariadbfirewallrule +#> +function Update-AzMariaDbFirewallRule { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRule])] +[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(ParameterSetName='ClientIPAddress', Mandatory)] + [Alias('FirewallRuleName')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] + [System.String] + # The name of the server firewall rule. + ${Name}, + + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(ParameterSetName='ClientIPAddress', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] [System.String] + # The name of the resource group that contains the resource. + # You can obtain this value from the Azure Resource Manager API or the portal. ${ResourceGroupName}, - [Parameter()] + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(ParameterSetName='ClientIPAddress', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] + [System.String] + # The name of the server. + ${ServerName}, + + [Parameter(ParameterSetName='UpdateExpanded')] + [Parameter(ParameterSetName='ClientIPAddress')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] + # The subscription ID that identifies an Azure subscription. ${SubscriptionId}, - [Parameter(Mandatory)] + [Parameter(ParameterSetName='ClientIPAddressViaIdentity', Mandatory, ValueFromPipeline)] + [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] - [System.DateTime] - ${RestorePointInTime}, + [System.String] + # The end IP address of the server firewall rule. + # Must be IPv4 format. + ${EndIPAddress}, - [Parameter()] + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] [System.String] - # The location the resource resides in. - ${Location}, + # The start IP address of the server firewall rule. + # Must be IPv4 format. + ${StartIPAddress}, - [Parameter()] + [Parameter(ParameterSetName='ClientIPAddress', Mandatory)] + [Parameter(ParameterSetName='ClientIPAddressViaIdentity', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersTags]))] - [System.Collections.Hashtable] - ${Tag}, + [System.String] + # Client specified single IP of the server firewall rule. + # Must be IPv4 format. + ${ClientIPAddress}, [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Azure')] [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.SwitchParameter] + # Run the command as a job ${AsJob}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.SwitchParameter] + # Run the command asynchronously ${NoWait}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Uri] + # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) @@ -3232,9 +3692,12 @@ begin { } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ - PointInTimeRestore = 'Az.MariaDb.custom\Restore-AzMariaDbServer'; + UpdateExpanded = 'Az.MariaDb.custom\Update-AzMariaDbFirewallRule'; + ClientIPAddress = 'Az.MariaDb.custom\Update-AzMariaDbFirewallRule'; + ClientIPAddressViaIdentity = 'Az.MariaDb.custom\Update-AzMariaDbFirewallRule'; + UpdateViaIdentityExpanded = 'Az.MariaDb.custom\Update-AzMariaDbFirewallRule'; } - if (('PointInTimeRestore') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + if (('UpdateExpanded', 'ClientIPAddress') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) @@ -3279,22 +3742,46 @@ end { <# .Synopsis - +Updates an existing server. +The request body can contain one to many of the properties present in the normal server definition. +Use Update-AzMariaDbConfiguration instead if you want update server parameters such as wait_timeout or net_retry_count. .Description - +Updates an existing server. +The request body can contain one to many of the properties present in the normal server definition. +Use Update-AzMariaDbConfiguration instead if you want update server parameters such as wait_timeout or net_retry_count. .Example PS C:\> Update-AzMariaDbServer -Name mariadb-test-4rmtig -ResourceGroupName mariadb-test-qu5ov0 -StorageInMb 8192 -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mariadb-test-4rmtig eastus xofavpndqj 10.2 8192 B_Gen5_1 Basic Enabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mariadb-test-4rmtig eastus xofavpndqj 10.2 8192 B_Gen5_1 Basic Enabled .Example PS C:\> Get-AzMariaDbServer -Name mariadb-test-4rmtig -ResourceGroupName mariadb-test-qu5ov0 | Update-AzMariaDbServer -StorageInMb (8192+1024) -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mariadb-test-4rmtig eastus xofavpndqj 10.2 9216 B_Gen5_1 Basic Enabled - +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mariadb-test-4rmtig eastus xofavpndqj 10.2 9216 B_Gen5_1 Basic Enabled + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ConfigurationName ]: The name of the server configuration. + [DatabaseName ]: The name of the database. + [FirewallRuleName ]: The name of the server firewall rule. + [Id ]: Resource identity path + [LocationName ]: The name of the location. + [ResourceGroupName ]: The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. + [SecurityAlertPolicyName ]: The name of the security alert policy. + [ServerName ]: The name of the server. + [SubscriptionId ]: The subscription ID that identifies an Azure subscription. + [VirtualNetworkRuleName ]: The name of the virtual network rule. .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/update-azmariadbserver #> @@ -3306,7 +3793,7 @@ param( [Alias('ServerName')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] [System.String] - # MariaDb server name + # MariaDB server name ${Name}, [Parameter(ParameterSetName='ServerName', Mandatory)] @@ -3360,6 +3847,7 @@ param( ${GeoRedundantBackup}, [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow])] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow] # Enable Storage Auto Grow. @@ -3390,49 +3878,60 @@ param( [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Azure')] [System.Management.Automation.PSObject] + # region DefaultParameters + # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.SwitchParameter] + # Run the command as a job ${AsJob}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.SwitchParameter] + # Run the command asynchronously ${NoWait}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Uri] + # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + # endregion DefaultParameters ${ProxyUseDefaultCredentials} ) diff --git a/src/MariaDb/exports/Remove-AzMariaDbFirewallRule.ps1 b/src/MariaDb/exports/Remove-AzMariaDbFirewallRule.ps1 index 307ddda52955..940b74715e67 100644 --- a/src/MariaDb/exports/Remove-AzMariaDbFirewallRule.ps1 +++ b/src/MariaDb/exports/Remove-AzMariaDbFirewallRule.ps1 @@ -22,6 +22,26 @@ Deletes a server firewall rule. PS C:\> Remove-AzMariaDbFirewallRule -Name frname-001 -ResourceGroupName mariadb-test-qu5ov0 -ServerName mariadb-test-4rmtig +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity +.Outputs +System.Boolean +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ConfigurationName ]: The name of the server configuration. + [DatabaseName ]: The name of the database. + [FirewallRuleName ]: The name of the server firewall rule. + [Id ]: Resource identity path + [LocationName ]: The name of the location. + [ResourceGroupName ]: The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. + [SecurityAlertPolicyName ]: The name of the security alert policy. + [ServerName ]: The name of the server. + [SubscriptionId ]: The subscription ID that identifies an Azure subscription. + [VirtualNetworkRuleName ]: The name of the virtual network rule. .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/remove-azmariadbfirewallrule #> diff --git a/src/MariaDb/exports/Remove-AzMariaDbServer.ps1 b/src/MariaDb/exports/Remove-AzMariaDbServer.ps1 index e64325c48740..554a92e33b45 100644 --- a/src/MariaDb/exports/Remove-AzMariaDbServer.ps1 +++ b/src/MariaDb/exports/Remove-AzMariaDbServer.ps1 @@ -25,6 +25,26 @@ PS C:\> Remove-AzMariaDbServer -Name mariadb-asd-01 -ResourceGroupName mariadb-t PS C:\> Get-AzMariaDbServer -Name mariadb-bc-t01 -ResourceGroupName mariadb-test-qu5ov0 | Remove-AzMariaDbServer +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity +.Outputs +System.Boolean +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ConfigurationName ]: The name of the server configuration. + [DatabaseName ]: The name of the database. + [FirewallRuleName ]: The name of the server firewall rule. + [Id ]: Resource identity path + [LocationName ]: The name of the location. + [ResourceGroupName ]: The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. + [SecurityAlertPolicyName ]: The name of the security alert policy. + [ServerName ]: The name of the server. + [SubscriptionId ]: The subscription ID that identifies an Azure subscription. + [VirtualNetworkRuleName ]: The name of the virtual network rule. .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/remove-azmariadbserver #> diff --git a/src/MariaDb/exports/Remove-AzMariaDbVirtualNetworkRule.ps1 b/src/MariaDb/exports/Remove-AzMariaDbVirtualNetworkRule.ps1 index cc958ebfe381..12f31bec06a6 100644 --- a/src/MariaDb/exports/Remove-AzMariaDbVirtualNetworkRule.ps1 +++ b/src/MariaDb/exports/Remove-AzMariaDbVirtualNetworkRule.ps1 @@ -22,6 +22,26 @@ Deletes the virtual network rule with the given name. PS C:\> Remove-AzMariaDbVirtualNetworkRule -Name vnet-001 -ResourceGroupName mariadb-test-qu5ov0 -ServerName mariadb-test-9pebvn +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity +.Outputs +System.Boolean +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ConfigurationName ]: The name of the server configuration. + [DatabaseName ]: The name of the database. + [FirewallRuleName ]: The name of the server firewall rule. + [Id ]: Resource identity path + [LocationName ]: The name of the location. + [ResourceGroupName ]: The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. + [SecurityAlertPolicyName ]: The name of the security alert policy. + [ServerName ]: The name of the server. + [SubscriptionId ]: The subscription ID that identifies an Azure subscription. + [VirtualNetworkRuleName ]: The name of the virtual network rule. .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/remove-azmariadbvirtualnetworkrule #> diff --git a/src/MariaDb/exports/Restart-AzMariaDbServer.ps1 b/src/MariaDb/exports/Restart-AzMariaDbServer.ps1 index 54173ccf9ce1..78f24f641468 100644 --- a/src/MariaDb/exports/Restart-AzMariaDbServer.ps1 +++ b/src/MariaDb/exports/Restart-AzMariaDbServer.ps1 @@ -15,9 +15,9 @@ <# .Synopsis - +Restarts a server. .Description - +Restarts a server. .Example PS C:\> Restart-AzMariaDbServer -Name mariadb-test-9pebvn -ResourceGroupName mariadb-test-qu5ov0 @@ -25,6 +25,26 @@ PS C:\> Restart-AzMariaDbServer -Name mariadb-test-9pebvn -ResourceGroupName mar PS C:\> Get-AzMariaDbServer -Name mariadb-test-9pebvn -ResourceGroupName mariadb-test-qu5ov0 | Restart-AzMariaDbServer +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity +.Outputs +System.Boolean +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ConfigurationName ]: The name of the server configuration. + [DatabaseName ]: The name of the database. + [FirewallRuleName ]: The name of the server firewall rule. + [Id ]: Resource identity path + [LocationName ]: The name of the location. + [ResourceGroupName ]: The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. + [SecurityAlertPolicyName ]: The name of the security alert policy. + [ServerName ]: The name of the server. + [SubscriptionId ]: The subscription ID that identifies an Azure subscription. + [VirtualNetworkRuleName ]: The name of the virtual network rule. .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/restart-azmariadbserver #> @@ -36,22 +56,27 @@ param( [Alias('ServerName')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] [System.String] + # The name of the server. ${Name}, [Parameter(ParameterSetName='ServerName', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] [System.String] + # The name of the resource group that contains the resource. + # You can obtain this value from the Azure Resource Manager API or the portal. ${ResourceGroupName}, [Parameter(ParameterSetName='ServerName')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] + # The subscription ID that identifies an Azure subscription. ${SubscriptionId}, [Parameter(ParameterSetName='ServerObject', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity] + # Identity Parameter # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, @@ -60,54 +85,64 @@ param( [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Azure')] [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.SwitchParameter] + # Run the command as a job ${AsJob}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.SwitchParameter] + # Run the command asynchronously ${NoWait}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.SwitchParameter] + # Returns true when the command succeeds ${PassThru}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Uri] + # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) diff --git a/src/MariaDb/exports/Restore-AzMariaDbServer.ps1 b/src/MariaDb/exports/Restore-AzMariaDbServer.ps1 index 59aa862475a8..f03426450de8 100644 --- a/src/MariaDb/exports/Restore-AzMariaDbServer.ps1 +++ b/src/MariaDb/exports/Restore-AzMariaDbServer.ps1 @@ -15,23 +15,55 @@ <# .Synopsis - +Restore a MariaDB from a existing MariaDB. .Description - +Restore a MariaDB from a existing MariaDB. .Example PS C:\> Restore-AzMariaDbServer -Name restore-db01 -ServerName mariadb-test-usegeo -ResourceGroupName mariadb-test-4rih5z -UsePointInTimeRestore -RestorePointInTime $(Get-Date) -Location eastus -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -restore-db01 eastus adminuser 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +restore-db01 eastus adminuser 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled .Example PS C:\> $db = Get-AzMariaDbServer -Name mariadb-test-usegeo -ResourceGroupName mariadb-test-4rih5z PS C:\>Restore-AzMariaDbServer -Name restore-db02 -InputObject $db -UsePointInTimeRestore -RestorePointInTime $(Get-Date) -Location eastus -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -restore-db02 eastus adminuser 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled - +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +restore-db02 eastus adminuser 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : The source server object to restore from. + Location : The location the resource resides in. + [Tag ]: Application-specific metadata in the form of key-value pairs. + [(Any) ]: This indicates any property can be added to this object. + [AdministratorLogin ]: The administrator's login name of a server. Can only be specified when the server is being created (and is required for creation). + [EarliestRestoreDate ]: Earliest restore point creation time (ISO8601 format) + [FullyQualifiedDomainName ]: The fully qualified domain name of a server. + [IdentityType ]: The identity type. Set this to 'SystemAssigned' in order to automatically create and assign an Azure Active Directory principal for the resource. + [MasterServerId ]: The master server id of a replica server. + [ReplicaCapacity ]: The maximum number of replicas that a master server can have. + [ReplicationRole ]: The replication role of the server. + [SkuCapacity ]: The scale up/out capacity, representing server's compute units. + [SkuFamily ]: The family of hardware. + [SkuName ]: The name of the sku, typically, tier + family + cores, e.g. B_Gen4_1, GP_Gen5_8. + [SkuSize ]: The size code, to be interpreted by resource as appropriate. + [SkuTier ]: The tier of the particular SKU, e.g. Basic. + [SslEnforcement ]: Enable ssl enforcement or not when connect to server. + [StorageProfileBackupRetentionDay ]: Backup retention days for the server. + [StorageProfileGeoRedundantBackup ]: Enable Geo-redundant or not for server backup. + [StorageProfileStorageAutogrow ]: Enable Storage Auto Grow. + [StorageProfileStorageMb ]: Max storage allowed for a server. + [UserVisibleState ]: A state of a server that is visible to user. + [Version ]: Server version. .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/restore-azmariadbserver #> @@ -42,33 +74,42 @@ param( [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] [System.String] + # The dest server name to restore from. ${Name}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] [System.String] + # The source server name to restore from. ${ServerName}, [Parameter(ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer] + # The source server object to restore from. # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] [System.String] + # The name of the resource group that contains the resource. + # You can obtain this value from the Azure Resource Manager API or the portal. ${ResourceGroupName}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] + # Gets the subscription Id which uniquely identifies the Microsoft Azure subscription. + # The subscription ID is part of the URI for every service call. ${SubscriptionId}, [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] [System.DateTime] + # region PointInTimeRestore + # The location the resource resides in. ${RestorePointInTime}, [Parameter()] @@ -81,6 +122,7 @@ param( [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersTags]))] [System.Collections.Hashtable] + # Application-specific metadata in the form of key-value pairs. ${Tag}, [Parameter()] @@ -88,49 +130,60 @@ param( [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Azure')] [System.Management.Automation.PSObject] + # region DefaultParameters + # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.SwitchParameter] + # Run the command as a job ${AsJob}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.SwitchParameter] + # Run the command asynchronously ${NoWait}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Uri] + # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + # endregion DefaultParameters ${ProxyUseDefaultCredentials} ) diff --git a/src/MariaDb/exports/Update-AzMariaDbConfiguration.ps1 b/src/MariaDb/exports/Update-AzMariaDbConfiguration.ps1 index c218a6975d27..93822cddf8fa 100644 --- a/src/MariaDb/exports/Update-AzMariaDbConfiguration.ps1 +++ b/src/MariaDb/exports/Update-AzMariaDbConfiguration.ps1 @@ -16,8 +16,10 @@ <# .Synopsis Updates a configuration of a server. +Use Update-AzMariaDbServer instead if you want update AdministratorLoginPassword, sku, etc. .Description Updates a configuration of a server. +Use Update-AzMariaDberver instead if you want update AdministratorLoginPassword, sku, etc. .Example PS C:\> Update-AzMariaDbConfiguration -Name delayed_insert_timeout -Value 200 -ServerName mariadb-test-h3pame -ResourceGroupName mariadb-test-qu5ov0 @@ -25,6 +27,26 @@ Name Type ---- ---- delayed_insert_timeout Microsoft.DBforMariaDB/servers/configurations +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfiguration +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ConfigurationName ]: The name of the server configuration. + [DatabaseName ]: The name of the database. + [FirewallRuleName ]: The name of the server firewall rule. + [Id ]: Resource identity path + [LocationName ]: The name of the location. + [ResourceGroupName ]: The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. + [SecurityAlertPolicyName ]: The name of the security alert policy. + [ServerName ]: The name of the server. + [SubscriptionId ]: The subscription ID that identifies an Azure subscription. + [VirtualNetworkRuleName ]: The name of the virtual network rule. .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/update-azmariadbconfiguration #> @@ -146,8 +168,8 @@ begin { } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ - UpdateExpanded = 'Az.MariaDb.private\Update-AzMariaDbConfiguration_UpdateExpanded'; - UpdateViaIdentityExpanded = 'Az.MariaDb.private\Update-AzMariaDbConfiguration_UpdateViaIdentityExpanded'; + UpdateExpanded = 'Az.MariaDb.custom\Update-AzMariaDbConfiguration'; + UpdateViaIdentityExpanded = 'Az.MariaDb.custom\Update-AzMariaDbConfiguration'; } if (('UpdateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id diff --git a/src/MariaDb/exports/Update-AzMariaDbFirewallRule.ps1 b/src/MariaDb/exports/Update-AzMariaDbFirewallRule.ps1 index a5e5b9362b81..1ae0bab2275a 100644 --- a/src/MariaDb/exports/Update-AzMariaDbFirewallRule.ps1 +++ b/src/MariaDb/exports/Update-AzMariaDbFirewallRule.ps1 @@ -21,10 +21,44 @@ Creates a new firewall rule or updates an existing firewall rule. .Example PS C:\> Update-AzMariaDbFirewallRule -Name fr-cfgl3y -ServerName mariadb-test-4rmtig -ResourceGroupName mariadb-test-qu5ov0 -StartIPAddress 0.0.3.1 -EndIPAddress 0.0.3.255 -Name Type ----- ---- -fr-cfgl3y Microsoft.DBforMariaDB/servers/firewallRules +Name StartIPAddress EndIPAddress +---- -------------- ------------ +fr-cfgl3y 0.0.3.1 0.0.3.255 +.Example +PS C:\> $ID = "/subscriptions//resourceGroups/mariadb-test-qu5ov0/providers/Microsoft.DBforMariaDB/servers/mariadb-test-4rmtig/firewallRules/fr-cfgl3y" +PS C:\> Update-AzMariaDbFirewallRule -InputObject $ID -EndIPAddress 0.0.0.3 -StartIPAddress 0.0.0.2 +Name StartIPAddress EndIPAddress +---- -------------- ------------ +fr-cfgl3y 0.0.0.2 0.0.0.3 +.Example +PS C:\> $ID = "/subscriptions//resourceGroups/mariadb-test-qu5ov0/providers/Microsoft.DBforMariaDB/servers/mariadb-test-4rmtig/firewallRules/fr-cfgl3y" +PS C:\> Update-AzMariaDbFirewallRule -InputObject $ID --ClientIPAddress 0.0.0.2 + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +fr-cfgl3y 0.0.0.2 0.0.0.2 + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRule +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ConfigurationName ]: The name of the server configuration. + [DatabaseName ]: The name of the database. + [FirewallRuleName ]: The name of the server firewall rule. + [Id ]: Resource identity path + [LocationName ]: The name of the location. + [ResourceGroupName ]: The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. + [SecurityAlertPolicyName ]: The name of the security alert policy. + [ServerName ]: The name of the server. + [SubscriptionId ]: The subscription ID that identifies an Azure subscription. + [VirtualNetworkRuleName ]: The name of the virtual network rule. .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/update-azmariadbfirewallrule #> @@ -33,6 +67,7 @@ function Update-AzMariaDbFirewallRule { [CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(ParameterSetName='ClientIPAddress', Mandatory)] [Alias('FirewallRuleName')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] [System.String] @@ -40,6 +75,7 @@ param( ${Name}, [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(ParameterSetName='ClientIPAddress', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] [System.String] # The name of the resource group that contains the resource. @@ -47,18 +83,21 @@ param( ${ResourceGroupName}, [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(ParameterSetName='ClientIPAddress', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] [System.String] # The name of the server. ${ServerName}, [Parameter(ParameterSetName='UpdateExpanded')] + [Parameter(ParameterSetName='ClientIPAddress')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] # The subscription ID that identifies an Azure subscription. ${SubscriptionId}, + [Parameter(ParameterSetName='ClientIPAddressViaIdentity', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity] @@ -66,20 +105,30 @@ param( # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, - [Parameter(Mandatory)] + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] [System.String] # The end IP address of the server firewall rule. # Must be IPv4 format. ${EndIPAddress}, - [Parameter(Mandatory)] + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] [System.String] # The start IP address of the server firewall rule. # Must be IPv4 format. ${StartIPAddress}, + [Parameter(ParameterSetName='ClientIPAddress', Mandatory)] + [Parameter(ParameterSetName='ClientIPAddressViaIdentity', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] + [System.String] + # Client specified single IP of the server firewall rule. + # Must be IPv4 format. + ${ClientIPAddress}, + [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] @@ -148,10 +197,12 @@ begin { } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ - UpdateExpanded = 'Az.MariaDb.private\Update-AzMariaDbFirewallRule_UpdateExpanded'; - UpdateViaIdentityExpanded = 'Az.MariaDb.private\Update-AzMariaDbFirewallRule_UpdateViaIdentityExpanded'; + UpdateExpanded = 'Az.MariaDb.custom\Update-AzMariaDbFirewallRule'; + ClientIPAddress = 'Az.MariaDb.custom\Update-AzMariaDbFirewallRule'; + ClientIPAddressViaIdentity = 'Az.MariaDb.custom\Update-AzMariaDbFirewallRule'; + UpdateViaIdentityExpanded = 'Az.MariaDb.custom\Update-AzMariaDbFirewallRule'; } - if (('UpdateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + if (('UpdateExpanded', 'ClientIPAddress') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) diff --git a/src/MariaDb/exports/Update-AzMariaDbServer.ps1 b/src/MariaDb/exports/Update-AzMariaDbServer.ps1 index ff5d83331121..c7d1c4a996ab 100644 --- a/src/MariaDb/exports/Update-AzMariaDbServer.ps1 +++ b/src/MariaDb/exports/Update-AzMariaDbServer.ps1 @@ -15,22 +15,46 @@ <# .Synopsis - +Updates an existing server. +The request body can contain one to many of the properties present in the normal server definition. +Use Update-AzMariaDbConfiguration instead if you want update server parameters such as wait_timeout or net_retry_count. .Description - +Updates an existing server. +The request body can contain one to many of the properties present in the normal server definition. +Use Update-AzMariaDbConfiguration instead if you want update server parameters such as wait_timeout or net_retry_count. .Example PS C:\> Update-AzMariaDbServer -Name mariadb-test-4rmtig -ResourceGroupName mariadb-test-qu5ov0 -StorageInMb 8192 -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mariadb-test-4rmtig eastus xofavpndqj 10.2 8192 B_Gen5_1 Basic Enabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mariadb-test-4rmtig eastus xofavpndqj 10.2 8192 B_Gen5_1 Basic Enabled .Example PS C:\> Get-AzMariaDbServer -Name mariadb-test-4rmtig -ResourceGroupName mariadb-test-qu5ov0 | Update-AzMariaDbServer -StorageInMb (8192+1024) -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mariadb-test-4rmtig eastus xofavpndqj 10.2 9216 B_Gen5_1 Basic Enabled - +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mariadb-test-4rmtig eastus xofavpndqj 10.2 9216 B_Gen5_1 Basic Enabled + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ConfigurationName ]: The name of the server configuration. + [DatabaseName ]: The name of the database. + [FirewallRuleName ]: The name of the server firewall rule. + [Id ]: Resource identity path + [LocationName ]: The name of the location. + [ResourceGroupName ]: The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. + [SecurityAlertPolicyName ]: The name of the security alert policy. + [ServerName ]: The name of the server. + [SubscriptionId ]: The subscription ID that identifies an Azure subscription. + [VirtualNetworkRuleName ]: The name of the virtual network rule. .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/update-azmariadbserver #> @@ -42,7 +66,7 @@ param( [Alias('ServerName')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] [System.String] - # MariaDb server name + # MariaDB server name ${Name}, [Parameter(ParameterSetName='ServerName', Mandatory)] @@ -96,6 +120,7 @@ param( ${GeoRedundantBackup}, [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow])] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow] # Enable Storage Auto Grow. @@ -126,49 +151,60 @@ param( [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Azure')] [System.Management.Automation.PSObject] + # region DefaultParameters + # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.SwitchParameter] + # Run the command as a job ${AsJob}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.SwitchParameter] + # Run the command asynchronously ${NoWait}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Uri] + # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + # endregion DefaultParameters ${ProxyUseDefaultCredentials} ) diff --git a/src/MariaDb/exports/Update-AzMariaDbVirtualNetworkRule.ps1 b/src/MariaDb/exports/Update-AzMariaDbVirtualNetworkRule.ps1 index c47bc2418e5f..bc5dcb9c0957 100644 --- a/src/MariaDb/exports/Update-AzMariaDbVirtualNetworkRule.ps1 +++ b/src/MariaDb/exports/Update-AzMariaDbVirtualNetworkRule.ps1 @@ -26,6 +26,26 @@ Name Type ---- ---- vnetrule-QdMJpU Microsoft.DBforMariaDB/servers/virtualNetworkRules +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRule +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ConfigurationName ]: The name of the server configuration. + [DatabaseName ]: The name of the database. + [FirewallRuleName ]: The name of the server firewall rule. + [Id ]: Resource identity path + [LocationName ]: The name of the location. + [ResourceGroupName ]: The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. + [SecurityAlertPolicyName ]: The name of the security alert policy. + [ServerName ]: The name of the server. + [SubscriptionId ]: The subscription ID that identifies an Azure subscription. + [VirtualNetworkRuleName ]: The name of the virtual network rule. .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/update-azmariadbvirtualnetworkrule #> diff --git a/src/MariaDb/exports/readme.md b/src/MariaDb/exports/readme.md index 51a97b75a546..24c8384a3aa8 100644 --- a/src/MariaDb/exports/readme.md +++ b/src/MariaDb/exports/readme.md @@ -1,5 +1,5 @@ # Exports -This directory contains the cmdlets *exported by* `Az.MariaDb`. No other cmdlets in this repository are directly exported. What that means is the `Az.MariaDb` module will run [Export-ModuleMember](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/export-modulemember) on the cmldets in this directory. The cmdlets in this directory are generated at **build-time**. Do not put any custom code, files, cmdlets, etc. into this directory. Please use `../custom` for all custom implementation. +This directory contains the cmdlets *exported by* `Az.MariaDb`. No other cmdlets in this repository are directly exported. What that means is the `Az.MariaDb` module will run [Export-ModuleMember](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/export-modulemember) on the cmldets in this directory. The cmdlets in this directory are generated at **build-time**. Do not put any custom code, files, cmdlets, etc. into this directory. Please use `..\custom` for all custom implementation. ## Info - Modifiable: no @@ -8,7 +8,7 @@ This directory contains the cmdlets *exported by* `Az.MariaDb`. No other cmdlets - Packaged: yes ## Details -The cmdlets generated here are created every time you run `build-module.ps1`. These cmdlets are a merge of all (excluding `InternalExport`) cmdlets from the private binary (`../bin/Az.MariaDb.private.dll`) and from the `../custom/Az.MariaDb.custom.psm1` module. Cmdlets that are *not merged* from those directories are decorated with the `InternalExport` attribute. This happens when you set the cmdlet to **hide** from configuration. For more information on hiding, see [cmdlet hiding](https://github.com/Azure/autorest/blob/master/docs/powershell/options.md#cmdlet-hiding-exportation-suppression) or the [readme.md](../internal/readme.md) in the `../internal` folder. +The cmdlets generated here are created every time you run `build-module.ps1`. These cmdlets are a merge of all (excluding `InternalExport`) cmdlets from the private binary (`..\bin\Az.MariaDb.private.dll`) and from the `..\custom\Az.MariaDb.custom.psm1` module. Cmdlets that are *not merged* from those directories are decorated with the `InternalExport` attribute. This happens when you set the cmdlet to **hide** from configuration. For more information on hiding, see [cmdlet hiding](https://github.com/Azure/autorest/blob/master/docs/powershell/options.md#cmdlet-hiding-exportation-suppression) or the [readme.md](..\internal/readme.md) in the `..\internal` folder. ## Purpose We generate script cmdlets out of the binary cmdlets and custom cmdlets. The format of script cmdlets are simplistic; thus, easier to generate at build time. Generating the cmdlets is required as to allow merging of generated binary, hand-written binary, and hand-written custom cmdlets. For Azure cmdlets, having script cmdlets simplifies the mechanism for exporting Azure profiles. diff --git a/src/MariaDb/generate-info.json b/src/MariaDb/generate-info.json new file mode 100644 index 000000000000..c5733bb475e8 --- /dev/null +++ b/src/MariaDb/generate-info.json @@ -0,0 +1,8 @@ +{ + "swagger_commit": "25e3eaa8dd29c201625aebc33762ef9ab021eb9e", + "autorest_powershell": "2.1.400", + "node": "v10.16.0", + "autorest": "3.0.6187", + "autorest_core": "3.0.6320", + "autorest_remodeler": "2.1.27" +} diff --git a/src/MariaDb/generated/api/MariaDb.cs b/src/MariaDb/generated/api/MariaDb.cs index 09da177b2128..1f87848200a0 100644 --- a/src/MariaDb/generated/api/MariaDb.cs +++ b/src/MariaDb/generated/api/MariaDb.cs @@ -9,6 +9,8 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb /// /// Low-level API implementation for the MariaDB service. + /// The Microsoft Azure management API provides create, read, update, and delete functionality for Azure MariaDB resources + /// including servers, databases, firewall rules, VNET rules, log files and configurations with new business model. /// public partial class MariaDb { diff --git a/src/MariaDb/generated/api/Models/Api20180601Preview/Components15Yg3X7SchemasOperationPropertiesAdditionalproperties.PowerShell.cs b/src/MariaDb/generated/api/Models/Any.PowerShell.cs similarity index 69% rename from src/MariaDb/generated/api/Models/Api20180601Preview/Components15Yg3X7SchemasOperationPropertiesAdditionalproperties.PowerShell.cs rename to src/MariaDb/generated/api/Models/Any.PowerShell.cs index 8c7802615ae7..cae21a3fa9d7 100644 --- a/src/MariaDb/generated/api/Models/Api20180601Preview/Components15Yg3X7SchemasOperationPropertiesAdditionalproperties.PowerShell.cs +++ b/src/MariaDb/generated/api/Models/Any.PowerShell.cs @@ -1,9 +1,15 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models { using Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.PowerShell; - [System.ComponentModel.TypeConverter(typeof(Components15Yg3X7SchemasOperationPropertiesAdditionalpropertiesTypeConverter))] - public partial class Components15Yg3X7SchemasOperationPropertiesAdditionalproperties + /// Any object + [System.ComponentModel.TypeConverter(typeof(AnyTypeConverter))] + public partial class Any { /// @@ -47,11 +53,11 @@ public partial class Components15Yg3X7SchemasOperationPropertiesAdditionalproper partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. - internal Components15Yg3X7SchemasOperationPropertiesAdditionalproperties(global::System.Collections.IDictionary content) + internal Any(global::System.Collections.IDictionary content) { bool returnNow = false; BeforeDeserializeDictionary(content, ref returnNow); @@ -64,11 +70,11 @@ internal Components15Yg3X7SchemasOperationPropertiesAdditionalproperties(global: } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. - internal Components15Yg3X7SchemasOperationPropertiesAdditionalproperties(global::System.Management.Automation.PSObject content) + internal Any(global::System.Management.Automation.PSObject content) { bool returnNow = false; BeforeDeserializePSObject(content, ref returnNow); @@ -81,48 +87,46 @@ internal Components15Yg3X7SchemasOperationPropertiesAdditionalproperties(global: } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IComponents15Yg3X7SchemasOperationPropertiesAdditionalproperties DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IAny DeserializeFromDictionary(global::System.Collections.IDictionary content) { - return new Components15Yg3X7SchemasOperationPropertiesAdditionalproperties(content); + return new Any(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IComponents15Yg3X7SchemasOperationPropertiesAdditionalproperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IAny DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { - return new Components15Yg3X7SchemasOperationPropertiesAdditionalproperties(content); + return new Any(content); } /// - /// Creates a new instance of , deserializing - /// the content from a json string. + /// Creates a new instance of , deserializing the content from a json string. /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IComponents15Yg3X7SchemasOperationPropertiesAdditionalproperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IAny FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. /// a containing this model serialized to JSON text. public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SerializationMode.IncludeAll)?.ToString(); } - [System.ComponentModel.TypeConverter(typeof(Components15Yg3X7SchemasOperationPropertiesAdditionalpropertiesTypeConverter))] - public partial interface IComponents15Yg3X7SchemasOperationPropertiesAdditionalproperties + /// Any object + [System.ComponentModel.TypeConverter(typeof(AnyTypeConverter))] + public partial interface IAny { diff --git a/src/MariaDb/generated/api/Models/Api20180601Preview/Components15Yg3X7SchemasOperationPropertiesAdditionalproperties.TypeConverter.cs b/src/MariaDb/generated/api/Models/Any.TypeConverter.cs similarity index 78% rename from src/MariaDb/generated/api/Models/Api20180601Preview/Components15Yg3X7SchemasOperationPropertiesAdditionalproperties.TypeConverter.cs rename to src/MariaDb/generated/api/Models/Any.TypeConverter.cs index 8c94b8d69675..4a26fd1f988b 100644 --- a/src/MariaDb/generated/api/Models/Api20180601Preview/Components15Yg3X7SchemasOperationPropertiesAdditionalproperties.TypeConverter.cs +++ b/src/MariaDb/generated/api/Models/Any.TypeConverter.cs @@ -1,12 +1,16 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models { using Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.PowerShell; /// - /// A PowerShell PSTypeConverter to support converting to an instance of + /// A PowerShell PSTypeConverter to support converting to an instance of /// - public partial class Components15Yg3X7SchemasOperationPropertiesAdditionalpropertiesTypeConverter : global::System.Management.Automation.PSTypeConverter + public partial class AnyTypeConverter : global::System.Management.Automation.PSTypeConverter { /// @@ -25,11 +29,10 @@ public partial class Components15Yg3X7SchemasOperationPropertiesAdditionalproper /// Determines if the converter can convert the parameter to the /// parameter. /// - /// the instance to check if it can be converted to the the instance to check if it can be converted to the type. /// - /// true if the instance could be converted to a type, otherwise false + /// true if the instance could be converted to a type, otherwise false /// public static bool CanConvertFrom(dynamic sourceValue) { @@ -91,8 +94,7 @@ public static bool CanConvertFrom(dynamic sourceValue) /// not used by this TypeConverter. /// when set to true, will ignore the case when converting. /// - /// an instance of , or null if there - /// is no suitable conversion. + /// an instance of , or null if there is no suitable conversion. /// public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); @@ -100,26 +102,24 @@ public static bool CanConvertFrom(dynamic sourceValue) /// Converts the parameter to the parameter using and /// - /// the value to convert into an instance of . + /// the value to convert into an instance of . /// - /// an instance of , or null if there - /// is no suitable conversion. + /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IComponents15Yg3X7SchemasOperationPropertiesAdditionalproperties ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IAny ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IComponents15Yg3X7SchemasOperationPropertiesAdditionalproperties).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IAny).IsAssignableFrom(type)) { return sourceValue; } try { - return Components15Yg3X7SchemasOperationPropertiesAdditionalproperties.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + return Any.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; } catch { @@ -127,11 +127,11 @@ public static Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Previ } if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) { - return Components15Yg3X7SchemasOperationPropertiesAdditionalproperties.DeserializeFromPSObject(sourceValue); + return Any.DeserializeFromPSObject(sourceValue); } if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) { - return Components15Yg3X7SchemasOperationPropertiesAdditionalproperties.DeserializeFromDictionary(sourceValue); + return Any.DeserializeFromDictionary(sourceValue); } return null; } diff --git a/src/MariaDb/generated/api/Models/Any.cs b/src/MariaDb/generated/api/Models/Any.cs new file mode 100644 index 000000000000..70ae97e662c3 --- /dev/null +++ b/src/MariaDb/generated/api/Models/Any.cs @@ -0,0 +1,34 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models +{ + using static Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Extensions; + + /// Any object + public partial class Any : + Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IAny, + Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IAnyInternal + { + + /// Creates an new instance. + public Any() + { + + } + } + /// Any object + public partial interface IAny : + Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.IJsonSerializable + { + + } + /// Any object + internal partial interface IAnyInternal + + { + + } +} \ No newline at end of file diff --git a/src/MariaDb/generated/api/Models/Api20180601Preview/Components15Yg3X7SchemasOperationPropertiesAdditionalproperties.json.cs b/src/MariaDb/generated/api/Models/Any.json.cs similarity index 77% rename from src/MariaDb/generated/api/Models/Api20180601Preview/Components15Yg3X7SchemasOperationPropertiesAdditionalproperties.json.cs rename to src/MariaDb/generated/api/Models/Any.json.cs index 51dfc243c3b1..c10d246d429d 100644 --- a/src/MariaDb/generated/api/Models/Api20180601Preview/Components15Yg3X7SchemasOperationPropertiesAdditionalproperties.json.cs +++ b/src/MariaDb/generated/api/Models/Any.json.cs @@ -1,8 +1,14 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models { using static Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Extensions; - public partial class Components15Yg3X7SchemasOperationPropertiesAdditionalproperties + /// Any object + public partial class Any { /// @@ -46,11 +52,10 @@ public partial class Components15Yg3X7SchemasOperationPropertiesAdditionalproper partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonObject into a new instance of . + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonObject into a new instance of . /// /// A Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonObject instance to deserialize from. - internal Components15Yg3X7SchemasOperationPropertiesAdditionalproperties(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonObject json) + internal Any(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonObject json) { bool returnNow = false; BeforeFromJson(json, ref returnNow); @@ -62,27 +67,23 @@ internal Components15Yg3X7SchemasOperationPropertiesAdditionalproperties(Microso } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IComponents15Yg3X7SchemasOperationPropertiesAdditionalproperties. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IAny. /// /// a to deserialize from. - /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IComponents15Yg3X7SchemasOperationPropertiesAdditionalproperties. - /// - public static Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IComponents15Yg3X7SchemasOperationPropertiesAdditionalproperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode node) + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IAny. + public static Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IAny FromJson(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode node) { - return node is Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonObject json ? new Components15Yg3X7SchemasOperationPropertiesAdditionalproperties(json) : null; + return node is Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonObject json ? new Any(json) : null; } /// - /// Serializes this instance of into a . + /// Serializes this instance of into a . /// /// The container to serialize this object into. If the caller /// passes in null, a new instance will be created and returned to the caller. /// Allows the caller to choose the depth of the serialization. See . /// - /// a serialized instance of as a . + /// a serialized instance of as a . /// public Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SerializationMode serializationMode) { diff --git a/src/MariaDb/generated/api/Models/Api20180601Preview/Components15Yg3X7SchemasOperationPropertiesAdditionalproperties.cs b/src/MariaDb/generated/api/Models/Api20180601Preview/Components15Yg3X7SchemasOperationPropertiesAdditionalproperties.cs deleted file mode 100644 index c18448cc4840..000000000000 --- a/src/MariaDb/generated/api/Models/Api20180601Preview/Components15Yg3X7SchemasOperationPropertiesAdditionalproperties.cs +++ /dev/null @@ -1,28 +0,0 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview -{ - using static Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Extensions; - - public partial class Components15Yg3X7SchemasOperationPropertiesAdditionalproperties : - Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IComponents15Yg3X7SchemasOperationPropertiesAdditionalproperties, - Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IComponents15Yg3X7SchemasOperationPropertiesAdditionalpropertiesInternal - { - - /// - /// Creates an new instance. - /// - public Components15Yg3X7SchemasOperationPropertiesAdditionalproperties() - { - - } - } - public partial interface IComponents15Yg3X7SchemasOperationPropertiesAdditionalproperties : - Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.IJsonSerializable - { - - } - internal partial interface IComponents15Yg3X7SchemasOperationPropertiesAdditionalpropertiesInternal - - { - - } -} \ No newline at end of file diff --git a/src/MariaDb/generated/api/Models/Api20180601Preview/Configuration.PowerShell.cs b/src/MariaDb/generated/api/Models/Api20180601Preview/Configuration.PowerShell.cs index 03cef02fe365..74d013bc87f1 100644 --- a/src/MariaDb/generated/api/Models/Api20180601Preview/Configuration.PowerShell.cs +++ b/src/MariaDb/generated/api/Models/Api20180601Preview/Configuration.PowerShell.cs @@ -62,15 +62,15 @@ internal Configuration(global::System.Collections.IDictionary content) } // actually deserialize ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ConfigurationPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Name, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Type, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationInternal)this).Value = (string) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationInternal)this).Value, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationInternal)this).Description = (string) content.GetValueForProperty("Description",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationInternal)this).Description, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationInternal)this).AllowedValue = (string) content.GetValueForProperty("AllowedValue",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationInternal)this).AllowedValue, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationInternal)this).DataType = (string) content.GetValueForProperty("DataType",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationInternal)this).DataType, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationInternal)this).DefaultValue = (string) content.GetValueForProperty("DefaultValue",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationInternal)this).DefaultValue, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationInternal)this).DataType = (string) content.GetValueForProperty("DataType",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationInternal)this).DataType, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationInternal)this).AllowedValue = (string) content.GetValueForProperty("AllowedValue",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationInternal)this).AllowedValue, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationInternal)this).Source = (string) content.GetValueForProperty("Source",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationInternal)this).Source, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationInternal)this).Value = (string) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationInternal)this).Value, global::System.Convert.ToString); AfterDeserializeDictionary(content); } @@ -89,15 +89,15 @@ internal Configuration(global::System.Management.Automation.PSObject content) } // actually deserialize ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ConfigurationPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Name, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Type, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationInternal)this).Value = (string) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationInternal)this).Value, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationInternal)this).Description = (string) content.GetValueForProperty("Description",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationInternal)this).Description, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationInternal)this).AllowedValue = (string) content.GetValueForProperty("AllowedValue",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationInternal)this).AllowedValue, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationInternal)this).DataType = (string) content.GetValueForProperty("DataType",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationInternal)this).DataType, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationInternal)this).DefaultValue = (string) content.GetValueForProperty("DefaultValue",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationInternal)this).DefaultValue, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationInternal)this).DataType = (string) content.GetValueForProperty("DataType",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationInternal)this).DataType, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationInternal)this).AllowedValue = (string) content.GetValueForProperty("AllowedValue",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationInternal)this).AllowedValue, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationInternal)this).Source = (string) content.GetValueForProperty("Source",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationInternal)this).Source, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationInternal)this).Value = (string) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationInternal)this).Value, global::System.Convert.ToString); AfterDeserializePSObject(content); } diff --git a/src/MariaDb/generated/api/Models/Api20180601Preview/ConfigurationProperties.PowerShell.cs b/src/MariaDb/generated/api/Models/Api20180601Preview/ConfigurationProperties.PowerShell.cs index 856b905aadb5..7ee293af0603 100644 --- a/src/MariaDb/generated/api/Models/Api20180601Preview/ConfigurationProperties.PowerShell.cs +++ b/src/MariaDb/generated/api/Models/Api20180601Preview/ConfigurationProperties.PowerShell.cs @@ -61,12 +61,12 @@ internal ConfigurationProperties(global::System.Collections.IDictionary content) return; } // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationPropertiesInternal)this).Value = (string) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationPropertiesInternal)this).Value, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationPropertiesInternal)this).Description = (string) content.GetValueForProperty("Description",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationPropertiesInternal)this).Description, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationPropertiesInternal)this).AllowedValue = (string) content.GetValueForProperty("AllowedValue",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationPropertiesInternal)this).AllowedValue, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationPropertiesInternal)this).DataType = (string) content.GetValueForProperty("DataType",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationPropertiesInternal)this).DataType, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationPropertiesInternal)this).DefaultValue = (string) content.GetValueForProperty("DefaultValue",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationPropertiesInternal)this).DefaultValue, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationPropertiesInternal)this).DataType = (string) content.GetValueForProperty("DataType",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationPropertiesInternal)this).DataType, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationPropertiesInternal)this).AllowedValue = (string) content.GetValueForProperty("AllowedValue",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationPropertiesInternal)this).AllowedValue, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationPropertiesInternal)this).Source = (string) content.GetValueForProperty("Source",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationPropertiesInternal)this).Source, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationPropertiesInternal)this).Value = (string) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationPropertiesInternal)this).Value, global::System.Convert.ToString); AfterDeserializeDictionary(content); } @@ -84,12 +84,12 @@ internal ConfigurationProperties(global::System.Management.Automation.PSObject c return; } // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationPropertiesInternal)this).Value = (string) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationPropertiesInternal)this).Value, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationPropertiesInternal)this).Description = (string) content.GetValueForProperty("Description",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationPropertiesInternal)this).Description, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationPropertiesInternal)this).AllowedValue = (string) content.GetValueForProperty("AllowedValue",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationPropertiesInternal)this).AllowedValue, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationPropertiesInternal)this).DataType = (string) content.GetValueForProperty("DataType",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationPropertiesInternal)this).DataType, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationPropertiesInternal)this).DefaultValue = (string) content.GetValueForProperty("DefaultValue",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationPropertiesInternal)this).DefaultValue, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationPropertiesInternal)this).DataType = (string) content.GetValueForProperty("DataType",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationPropertiesInternal)this).DataType, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationPropertiesInternal)this).AllowedValue = (string) content.GetValueForProperty("AllowedValue",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationPropertiesInternal)this).AllowedValue, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationPropertiesInternal)this).Source = (string) content.GetValueForProperty("Source",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationPropertiesInternal)this).Source, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationPropertiesInternal)this).Value = (string) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfigurationPropertiesInternal)this).Value, global::System.Convert.ToString); AfterDeserializePSObject(content); } diff --git a/src/MariaDb/generated/api/Models/Api20180601Preview/ConfigurationProperties.json.cs b/src/MariaDb/generated/api/Models/Api20180601Preview/ConfigurationProperties.json.cs index 6e61ecd1442f..3e8469b5ea4f 100644 --- a/src/MariaDb/generated/api/Models/Api20180601Preview/ConfigurationProperties.json.cs +++ b/src/MariaDb/generated/api/Models/Api20180601Preview/ConfigurationProperties.json.cs @@ -58,12 +58,12 @@ internal ConfigurationProperties(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runt { return; } + {_value = If( json?.PropertyT("value"), out var __jsonValue) ? (string)__jsonValue : (string)Value;} {_description = If( json?.PropertyT("description"), out var __jsonDescription) ? (string)__jsonDescription : (string)Description;} - {_allowedValue = If( json?.PropertyT("allowedValues"), out var __jsonAllowedValues) ? (string)__jsonAllowedValues : (string)AllowedValue;} - {_dataType = If( json?.PropertyT("dataType"), out var __jsonDataType) ? (string)__jsonDataType : (string)DataType;} {_defaultValue = If( json?.PropertyT("defaultValue"), out var __jsonDefaultValue) ? (string)__jsonDefaultValue : (string)DefaultValue;} + {_dataType = If( json?.PropertyT("dataType"), out var __jsonDataType) ? (string)__jsonDataType : (string)DataType;} + {_allowedValue = If( json?.PropertyT("allowedValues"), out var __jsonAllowedValues) ? (string)__jsonAllowedValues : (string)AllowedValue;} {_source = If( json?.PropertyT("source"), out var __jsonSource) ? (string)__jsonSource : (string)Source;} - {_value = If( json?.PropertyT("value"), out var __jsonValue) ? (string)__jsonValue : (string)Value;} AfterFromJson(json); } @@ -98,13 +98,14 @@ public Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode ToJson(M { return container; } + AddIf( null != (((object)this._value)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._value.ToString()) : null, "value" ,container.Add ); if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SerializationMode.IncludeReadOnly)) { AddIf( null != (((object)this._description)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._description.ToString()) : null, "description" ,container.Add ); } if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SerializationMode.IncludeReadOnly)) { - AddIf( null != (((object)this._allowedValue)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._allowedValue.ToString()) : null, "allowedValues" ,container.Add ); + AddIf( null != (((object)this._defaultValue)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._defaultValue.ToString()) : null, "defaultValue" ,container.Add ); } if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SerializationMode.IncludeReadOnly)) { @@ -112,10 +113,9 @@ public Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode ToJson(M } if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SerializationMode.IncludeReadOnly)) { - AddIf( null != (((object)this._defaultValue)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._defaultValue.ToString()) : null, "defaultValue" ,container.Add ); + AddIf( null != (((object)this._allowedValue)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._allowedValue.ToString()) : null, "allowedValues" ,container.Add ); } AddIf( null != (((object)this._source)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._source.ToString()) : null, "source" ,container.Add ); - AddIf( null != (((object)this._value)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._value.ToString()) : null, "value" ,container.Add ); AfterToJson(ref container); return container; } diff --git a/src/MariaDb/generated/api/Models/Api20180601Preview/Database.PowerShell.cs b/src/MariaDb/generated/api/Models/Api20180601Preview/Database.PowerShell.cs index 85e3c6e140f1..91b997a982df 100644 --- a/src/MariaDb/generated/api/Models/Api20180601Preview/Database.PowerShell.cs +++ b/src/MariaDb/generated/api/Models/Api20180601Preview/Database.PowerShell.cs @@ -62,9 +62,9 @@ internal Database(global::System.Collections.IDictionary content) } // actually deserialize ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IDatabaseInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IDatabaseProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IDatabaseInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.DatabasePropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Name, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Type, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IDatabaseInternal)this).Charset = (string) content.GetValueForProperty("Charset",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IDatabaseInternal)this).Charset, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IDatabaseInternal)this).Collation = (string) content.GetValueForProperty("Collation",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IDatabaseInternal)this).Collation, global::System.Convert.ToString); AfterDeserializeDictionary(content); @@ -85,9 +85,9 @@ internal Database(global::System.Management.Automation.PSObject content) } // actually deserialize ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IDatabaseInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IDatabaseProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IDatabaseInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.DatabasePropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Name, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Type, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IDatabaseInternal)this).Charset = (string) content.GetValueForProperty("Charset",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IDatabaseInternal)this).Charset, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IDatabaseInternal)this).Collation = (string) content.GetValueForProperty("Collation",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IDatabaseInternal)this).Collation, global::System.Convert.ToString); AfterDeserializePSObject(content); diff --git a/src/MariaDb/generated/api/Models/Api20180601Preview/FirewallRule.PowerShell.cs b/src/MariaDb/generated/api/Models/Api20180601Preview/FirewallRule.PowerShell.cs index ad507868176b..1d9525555d38 100644 --- a/src/MariaDb/generated/api/Models/Api20180601Preview/FirewallRule.PowerShell.cs +++ b/src/MariaDb/generated/api/Models/Api20180601Preview/FirewallRule.PowerShell.cs @@ -88,11 +88,11 @@ internal FirewallRule(global::System.Collections.IDictionary content) } // actually deserialize ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRuleInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRuleProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRuleInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.FirewallRulePropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Name, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Type, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRuleInternal)this).EndIPAddress = (string) content.GetValueForProperty("EndIPAddress",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRuleInternal)this).EndIPAddress, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRuleInternal)this).StartIPAddress = (string) content.GetValueForProperty("StartIPAddress",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRuleInternal)this).StartIPAddress, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRuleInternal)this).EndIPAddress = (string) content.GetValueForProperty("EndIPAddress",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRuleInternal)this).EndIPAddress, global::System.Convert.ToString); AfterDeserializeDictionary(content); } @@ -111,11 +111,11 @@ internal FirewallRule(global::System.Management.Automation.PSObject content) } // actually deserialize ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRuleInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRuleProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRuleInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.FirewallRulePropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Name, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Type, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRuleInternal)this).EndIPAddress = (string) content.GetValueForProperty("EndIPAddress",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRuleInternal)this).EndIPAddress, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRuleInternal)this).StartIPAddress = (string) content.GetValueForProperty("StartIPAddress",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRuleInternal)this).StartIPAddress, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRuleInternal)this).EndIPAddress = (string) content.GetValueForProperty("EndIPAddress",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRuleInternal)this).EndIPAddress, global::System.Convert.ToString); AfterDeserializePSObject(content); } diff --git a/src/MariaDb/generated/api/Models/Api20180601Preview/FirewallRuleProperties.PowerShell.cs b/src/MariaDb/generated/api/Models/Api20180601Preview/FirewallRuleProperties.PowerShell.cs index 35681076941b..de189457973a 100644 --- a/src/MariaDb/generated/api/Models/Api20180601Preview/FirewallRuleProperties.PowerShell.cs +++ b/src/MariaDb/generated/api/Models/Api20180601Preview/FirewallRuleProperties.PowerShell.cs @@ -89,8 +89,8 @@ internal FirewallRuleProperties(global::System.Collections.IDictionary content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRulePropertiesInternal)this).EndIPAddress = (string) content.GetValueForProperty("EndIPAddress",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRulePropertiesInternal)this).EndIPAddress, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRulePropertiesInternal)this).StartIPAddress = (string) content.GetValueForProperty("StartIPAddress",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRulePropertiesInternal)this).StartIPAddress, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRulePropertiesInternal)this).EndIPAddress = (string) content.GetValueForProperty("EndIPAddress",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRulePropertiesInternal)this).EndIPAddress, global::System.Convert.ToString); AfterDeserializeDictionary(content); } @@ -108,8 +108,8 @@ internal FirewallRuleProperties(global::System.Management.Automation.PSObject co return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRulePropertiesInternal)this).EndIPAddress = (string) content.GetValueForProperty("EndIPAddress",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRulePropertiesInternal)this).EndIPAddress, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRulePropertiesInternal)this).StartIPAddress = (string) content.GetValueForProperty("StartIPAddress",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRulePropertiesInternal)this).StartIPAddress, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRulePropertiesInternal)this).EndIPAddress = (string) content.GetValueForProperty("EndIPAddress",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRulePropertiesInternal)this).EndIPAddress, global::System.Convert.ToString); AfterDeserializePSObject(content); } diff --git a/src/MariaDb/generated/api/Models/Api20180601Preview/FirewallRuleProperties.json.cs b/src/MariaDb/generated/api/Models/Api20180601Preview/FirewallRuleProperties.json.cs index 5a03b4805546..73d9077b7a88 100644 --- a/src/MariaDb/generated/api/Models/Api20180601Preview/FirewallRuleProperties.json.cs +++ b/src/MariaDb/generated/api/Models/Api20180601Preview/FirewallRuleProperties.json.cs @@ -58,8 +58,8 @@ internal FirewallRuleProperties(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runti { return; } - {_endIPAddress = If( json?.PropertyT("endIpAddress"), out var __jsonEndIPAddress) ? (string)__jsonEndIPAddress : (string)EndIPAddress;} {_startIPAddress = If( json?.PropertyT("startIpAddress"), out var __jsonStartIPAddress) ? (string)__jsonStartIPAddress : (string)StartIPAddress;} + {_endIPAddress = If( json?.PropertyT("endIpAddress"), out var __jsonEndIPAddress) ? (string)__jsonEndIPAddress : (string)EndIPAddress;} AfterFromJson(json); } @@ -94,8 +94,8 @@ public Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode ToJson(M { return container; } - AddIf( null != (((object)this._endIPAddress)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._endIPAddress.ToString()) : null, "endIpAddress" ,container.Add ); AddIf( null != (((object)this._startIPAddress)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._startIPAddress.ToString()) : null, "startIpAddress" ,container.Add ); + AddIf( null != (((object)this._endIPAddress)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._endIPAddress.ToString()) : null, "endIpAddress" ,container.Add ); AfterToJson(ref container); return container; } diff --git a/src/MariaDb/generated/api/Models/Api20180601Preview/LogFile.PowerShell.cs b/src/MariaDb/generated/api/Models/Api20180601Preview/LogFile.PowerShell.cs index fcf1234dc107..66a471d6e1a4 100644 --- a/src/MariaDb/generated/api/Models/Api20180601Preview/LogFile.PowerShell.cs +++ b/src/MariaDb/generated/api/Models/Api20180601Preview/LogFile.PowerShell.cs @@ -95,13 +95,13 @@ internal LogFile(global::System.Collections.IDictionary content) } // actually deserialize ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFileInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFileProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFileInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.LogFilePropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Name, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Type, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFileInternal)this).PropertiesType = (string) content.GetValueForProperty("PropertiesType",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFileInternal)this).PropertiesType, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFileInternal)this).SizeInKb = (long?) content.GetValueForProperty("SizeInKb",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFileInternal)this).SizeInKb, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFileInternal)this).CreatedTime = (global::System.DateTime?) content.GetValueForProperty("CreatedTime",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFileInternal)this).CreatedTime, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFileInternal)this).LastModifiedTime = (global::System.DateTime?) content.GetValueForProperty("LastModifiedTime",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFileInternal)this).LastModifiedTime, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFileInternal)this).SizeInKb = (long?) content.GetValueForProperty("SizeInKb",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFileInternal)this).SizeInKb, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFileInternal)this).PropertiesType = (string) content.GetValueForProperty("PropertiesType",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFileInternal)this).PropertiesType, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFileInternal)this).Url = (string) content.GetValueForProperty("Url",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFileInternal)this).Url, global::System.Convert.ToString); AfterDeserializeDictionary(content); } @@ -121,13 +121,13 @@ internal LogFile(global::System.Management.Automation.PSObject content) } // actually deserialize ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFileInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFileProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFileInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.LogFilePropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Name, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Type, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFileInternal)this).PropertiesType = (string) content.GetValueForProperty("PropertiesType",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFileInternal)this).PropertiesType, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFileInternal)this).SizeInKb = (long?) content.GetValueForProperty("SizeInKb",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFileInternal)this).SizeInKb, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFileInternal)this).CreatedTime = (global::System.DateTime?) content.GetValueForProperty("CreatedTime",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFileInternal)this).CreatedTime, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFileInternal)this).LastModifiedTime = (global::System.DateTime?) content.GetValueForProperty("LastModifiedTime",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFileInternal)this).LastModifiedTime, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFileInternal)this).SizeInKb = (long?) content.GetValueForProperty("SizeInKb",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFileInternal)this).SizeInKb, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFileInternal)this).PropertiesType = (string) content.GetValueForProperty("PropertiesType",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFileInternal)this).PropertiesType, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFileInternal)this).Url = (string) content.GetValueForProperty("Url",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFileInternal)this).Url, global::System.Convert.ToString); AfterDeserializePSObject(content); } diff --git a/src/MariaDb/generated/api/Models/Api20180601Preview/LogFileProperties.PowerShell.cs b/src/MariaDb/generated/api/Models/Api20180601Preview/LogFileProperties.PowerShell.cs index bceeb32f8455..7167bed74ddf 100644 --- a/src/MariaDb/generated/api/Models/Api20180601Preview/LogFileProperties.PowerShell.cs +++ b/src/MariaDb/generated/api/Models/Api20180601Preview/LogFileProperties.PowerShell.cs @@ -94,10 +94,10 @@ internal LogFileProperties(global::System.Collections.IDictionary content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFilePropertiesInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFilePropertiesInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFilePropertiesInternal)this).SizeInKb = (long?) content.GetValueForProperty("SizeInKb",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFilePropertiesInternal)this).SizeInKb, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFilePropertiesInternal)this).CreatedTime = (global::System.DateTime?) content.GetValueForProperty("CreatedTime",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFilePropertiesInternal)this).CreatedTime, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFilePropertiesInternal)this).LastModifiedTime = (global::System.DateTime?) content.GetValueForProperty("LastModifiedTime",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFilePropertiesInternal)this).LastModifiedTime, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFilePropertiesInternal)this).SizeInKb = (long?) content.GetValueForProperty("SizeInKb",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFilePropertiesInternal)this).SizeInKb, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFilePropertiesInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFilePropertiesInternal)this).Type, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFilePropertiesInternal)this).Url = (string) content.GetValueForProperty("Url",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFilePropertiesInternal)this).Url, global::System.Convert.ToString); AfterDeserializeDictionary(content); } @@ -116,10 +116,10 @@ internal LogFileProperties(global::System.Management.Automation.PSObject content return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFilePropertiesInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFilePropertiesInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFilePropertiesInternal)this).SizeInKb = (long?) content.GetValueForProperty("SizeInKb",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFilePropertiesInternal)this).SizeInKb, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFilePropertiesInternal)this).CreatedTime = (global::System.DateTime?) content.GetValueForProperty("CreatedTime",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFilePropertiesInternal)this).CreatedTime, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFilePropertiesInternal)this).LastModifiedTime = (global::System.DateTime?) content.GetValueForProperty("LastModifiedTime",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFilePropertiesInternal)this).LastModifiedTime, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFilePropertiesInternal)this).SizeInKb = (long?) content.GetValueForProperty("SizeInKb",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFilePropertiesInternal)this).SizeInKb, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFilePropertiesInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFilePropertiesInternal)this).Type, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFilePropertiesInternal)this).Url = (string) content.GetValueForProperty("Url",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFilePropertiesInternal)this).Url, global::System.Convert.ToString); AfterDeserializePSObject(content); } diff --git a/src/MariaDb/generated/api/Models/Api20180601Preview/LogFileProperties.json.cs b/src/MariaDb/generated/api/Models/Api20180601Preview/LogFileProperties.json.cs index d79273de4244..1ba94e2d0955 100644 --- a/src/MariaDb/generated/api/Models/Api20180601Preview/LogFileProperties.json.cs +++ b/src/MariaDb/generated/api/Models/Api20180601Preview/LogFileProperties.json.cs @@ -70,10 +70,10 @@ internal LogFileProperties(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Js { return; } - {_type = If( json?.PropertyT("type"), out var __jsonType) ? (string)__jsonType : (string)Type;} + {_sizeInKb = If( json?.PropertyT("sizeInKB"), out var __jsonSizeInKb) ? (long?)__jsonSizeInKb : SizeInKb;} {_createdTime = If( json?.PropertyT("createdTime"), out var __jsonCreatedTime) ? global::System.DateTime.TryParse((string)__jsonCreatedTime, global::System.Globalization.CultureInfo.InvariantCulture, global::System.Globalization.DateTimeStyles.AdjustToUniversal, out var __jsonCreatedTimeValue) ? __jsonCreatedTimeValue : CreatedTime : CreatedTime;} {_lastModifiedTime = If( json?.PropertyT("lastModifiedTime"), out var __jsonLastModifiedTime) ? global::System.DateTime.TryParse((string)__jsonLastModifiedTime, global::System.Globalization.CultureInfo.InvariantCulture, global::System.Globalization.DateTimeStyles.AdjustToUniversal, out var __jsonLastModifiedTimeValue) ? __jsonLastModifiedTimeValue : LastModifiedTime : LastModifiedTime;} - {_sizeInKb = If( json?.PropertyT("sizeInKB"), out var __jsonSizeInKb) ? (long?)__jsonSizeInKb : SizeInKb;} + {_type = If( json?.PropertyT("type"), out var __jsonType) ? (string)__jsonType : (string)Type;} {_url = If( json?.PropertyT("url"), out var __jsonUrl) ? (string)__jsonUrl : (string)Url;} AfterFromJson(json); } @@ -97,7 +97,7 @@ public Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode ToJson(M { return container; } - AddIf( null != (((object)this._type)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._type.ToString()) : null, "type" ,container.Add ); + AddIf( null != this._sizeInKb ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode)new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNumber((long)this._sizeInKb) : null, "sizeInKB" ,container.Add ); if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SerializationMode.IncludeReadOnly)) { AddIf( null != this._createdTime ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._createdTime?.ToString(@"yyyy'-'MM'-'dd'T'HH':'mm':'ss.fffffffK",global::System.Globalization.CultureInfo.InvariantCulture)) : null, "createdTime" ,container.Add ); @@ -106,7 +106,7 @@ public Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode ToJson(M { AddIf( null != this._lastModifiedTime ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._lastModifiedTime?.ToString(@"yyyy'-'MM'-'dd'T'HH':'mm':'ss.fffffffK",global::System.Globalization.CultureInfo.InvariantCulture)) : null, "lastModifiedTime" ,container.Add ); } - AddIf( null != this._sizeInKb ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode)new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNumber((long)this._sizeInKb) : null, "sizeInKB" ,container.Add ); + AddIf( null != (((object)this._type)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._type.ToString()) : null, "type" ,container.Add ); if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SerializationMode.IncludeReadOnly)) { AddIf( null != (((object)this._url)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._url.ToString()) : null, "url" ,container.Add ); diff --git a/src/MariaDb/generated/api/Models/Api20180601Preview/Operation.PowerShell.cs b/src/MariaDb/generated/api/Models/Api20180601Preview/Operation.PowerShell.cs index 68e4fdbf2900..caa9ffd5172d 100644 --- a/src/MariaDb/generated/api/Models/Api20180601Preview/Operation.PowerShell.cs +++ b/src/MariaDb/generated/api/Models/Api20180601Preview/Operation.PowerShell.cs @@ -98,10 +98,10 @@ internal Operation(global::System.Collections.IDictionary content) ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationInternal)this).Name, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationInternal)this).Origin = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.OperationOrigin?) content.GetValueForProperty("Origin",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationInternal)this).Origin, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.OperationOrigin.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.OperationPropertiesTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationInternal)this).DisplayDescription = (string) content.GetValueForProperty("DisplayDescription",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationInternal)this).DisplayDescription, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationInternal)this).DisplayOperation = (string) content.GetValueForProperty("DisplayOperation",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationInternal)this).DisplayOperation, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationInternal)this).DisplayProvider = (string) content.GetValueForProperty("DisplayProvider",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationInternal)this).DisplayProvider, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationInternal)this).DisplayResource = (string) content.GetValueForProperty("DisplayResource",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationInternal)this).DisplayResource, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationInternal)this).DisplayOperation = (string) content.GetValueForProperty("DisplayOperation",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationInternal)this).DisplayOperation, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationInternal)this).DisplayDescription = (string) content.GetValueForProperty("DisplayDescription",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationInternal)this).DisplayDescription, global::System.Convert.ToString); AfterDeserializeDictionary(content); } @@ -123,10 +123,10 @@ internal Operation(global::System.Management.Automation.PSObject content) ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationInternal)this).Name, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationInternal)this).Origin = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.OperationOrigin?) content.GetValueForProperty("Origin",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationInternal)this).Origin, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.OperationOrigin.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.OperationPropertiesTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationInternal)this).DisplayDescription = (string) content.GetValueForProperty("DisplayDescription",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationInternal)this).DisplayDescription, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationInternal)this).DisplayOperation = (string) content.GetValueForProperty("DisplayOperation",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationInternal)this).DisplayOperation, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationInternal)this).DisplayProvider = (string) content.GetValueForProperty("DisplayProvider",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationInternal)this).DisplayProvider, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationInternal)this).DisplayResource = (string) content.GetValueForProperty("DisplayResource",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationInternal)this).DisplayResource, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationInternal)this).DisplayOperation = (string) content.GetValueForProperty("DisplayOperation",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationInternal)this).DisplayOperation, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationInternal)this).DisplayDescription = (string) content.GetValueForProperty("DisplayDescription",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationInternal)this).DisplayDescription, global::System.Convert.ToString); AfterDeserializePSObject(content); } diff --git a/src/MariaDb/generated/api/Models/Api20180601Preview/OperationDisplay.PowerShell.cs b/src/MariaDb/generated/api/Models/Api20180601Preview/OperationDisplay.PowerShell.cs index 80db33d85a0e..8d1b79500195 100644 --- a/src/MariaDb/generated/api/Models/Api20180601Preview/OperationDisplay.PowerShell.cs +++ b/src/MariaDb/generated/api/Models/Api20180601Preview/OperationDisplay.PowerShell.cs @@ -94,10 +94,10 @@ internal OperationDisplay(global::System.Collections.IDictionary content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationDisplayInternal)this).Description = (string) content.GetValueForProperty("Description",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationDisplayInternal)this).Description, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationDisplayInternal)this).Operation = (string) content.GetValueForProperty("Operation",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationDisplayInternal)this).Operation, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationDisplayInternal)this).Provider = (string) content.GetValueForProperty("Provider",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationDisplayInternal)this).Provider, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationDisplayInternal)this).Resource = (string) content.GetValueForProperty("Resource",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationDisplayInternal)this).Resource, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationDisplayInternal)this).Operation = (string) content.GetValueForProperty("Operation",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationDisplayInternal)this).Operation, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationDisplayInternal)this).Description = (string) content.GetValueForProperty("Description",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationDisplayInternal)this).Description, global::System.Convert.ToString); AfterDeserializeDictionary(content); } @@ -115,10 +115,10 @@ internal OperationDisplay(global::System.Management.Automation.PSObject content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationDisplayInternal)this).Description = (string) content.GetValueForProperty("Description",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationDisplayInternal)this).Description, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationDisplayInternal)this).Operation = (string) content.GetValueForProperty("Operation",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationDisplayInternal)this).Operation, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationDisplayInternal)this).Provider = (string) content.GetValueForProperty("Provider",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationDisplayInternal)this).Provider, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationDisplayInternal)this).Resource = (string) content.GetValueForProperty("Resource",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationDisplayInternal)this).Resource, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationDisplayInternal)this).Operation = (string) content.GetValueForProperty("Operation",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationDisplayInternal)this).Operation, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationDisplayInternal)this).Description = (string) content.GetValueForProperty("Description",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperationDisplayInternal)this).Description, global::System.Convert.ToString); AfterDeserializePSObject(content); } diff --git a/src/MariaDb/generated/api/Models/Api20180601Preview/OperationDisplay.json.cs b/src/MariaDb/generated/api/Models/Api20180601Preview/OperationDisplay.json.cs index 2a3d213ac368..b887735c3a86 100644 --- a/src/MariaDb/generated/api/Models/Api20180601Preview/OperationDisplay.json.cs +++ b/src/MariaDb/generated/api/Models/Api20180601Preview/OperationDisplay.json.cs @@ -70,10 +70,10 @@ internal OperationDisplay(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Jso { return; } - {_description = If( json?.PropertyT("description"), out var __jsonDescription) ? (string)__jsonDescription : (string)Description;} - {_operation = If( json?.PropertyT("operation"), out var __jsonOperation) ? (string)__jsonOperation : (string)Operation;} {_provider = If( json?.PropertyT("provider"), out var __jsonProvider) ? (string)__jsonProvider : (string)Provider;} {_resource = If( json?.PropertyT("resource"), out var __jsonResource) ? (string)__jsonResource : (string)Resource;} + {_operation = If( json?.PropertyT("operation"), out var __jsonOperation) ? (string)__jsonOperation : (string)Operation;} + {_description = If( json?.PropertyT("description"), out var __jsonDescription) ? (string)__jsonDescription : (string)Description;} AfterFromJson(json); } @@ -98,19 +98,19 @@ public Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode ToJson(M } if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SerializationMode.IncludeReadOnly)) { - AddIf( null != (((object)this._description)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._description.ToString()) : null, "description" ,container.Add ); + AddIf( null != (((object)this._provider)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._provider.ToString()) : null, "provider" ,container.Add ); } if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SerializationMode.IncludeReadOnly)) { - AddIf( null != (((object)this._operation)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._operation.ToString()) : null, "operation" ,container.Add ); + AddIf( null != (((object)this._resource)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._resource.ToString()) : null, "resource" ,container.Add ); } if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SerializationMode.IncludeReadOnly)) { - AddIf( null != (((object)this._provider)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._provider.ToString()) : null, "provider" ,container.Add ); + AddIf( null != (((object)this._operation)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._operation.ToString()) : null, "operation" ,container.Add ); } if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SerializationMode.IncludeReadOnly)) { - AddIf( null != (((object)this._resource)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._resource.ToString()) : null, "resource" ,container.Add ); + AddIf( null != (((object)this._description)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._description.ToString()) : null, "description" ,container.Add ); } AfterToJson(ref container); return container; diff --git a/src/MariaDb/generated/api/Models/Api20180601Preview/PerformanceTierServiceLevelObjectives.PowerShell.cs b/src/MariaDb/generated/api/Models/Api20180601Preview/PerformanceTierServiceLevelObjectives.PowerShell.cs index 4550ef4a0462..8e646f8b5473 100644 --- a/src/MariaDb/generated/api/Models/Api20180601Preview/PerformanceTierServiceLevelObjectives.PowerShell.cs +++ b/src/MariaDb/generated/api/Models/Api20180601Preview/PerformanceTierServiceLevelObjectives.PowerShell.cs @@ -97,14 +97,14 @@ internal PerformanceTierServiceLevelObjectives(global::System.Collections.IDicti return; } // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IPerformanceTierServiceLevelObjectivesInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IPerformanceTierServiceLevelObjectivesInternal)this).Id, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IPerformanceTierServiceLevelObjectivesInternal)this).Edition = (string) content.GetValueForProperty("Edition",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IPerformanceTierServiceLevelObjectivesInternal)this).Edition, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IPerformanceTierServiceLevelObjectivesInternal)this).VCore = (int?) content.GetValueForProperty("VCore",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IPerformanceTierServiceLevelObjectivesInternal)this).VCore, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IPerformanceTierServiceLevelObjectivesInternal)this).HardwareGeneration = (string) content.GetValueForProperty("HardwareGeneration",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IPerformanceTierServiceLevelObjectivesInternal)this).HardwareGeneration, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IPerformanceTierServiceLevelObjectivesInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IPerformanceTierServiceLevelObjectivesInternal)this).Id, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IPerformanceTierServiceLevelObjectivesInternal)this).MaxBackupRetentionDay = (int?) content.GetValueForProperty("MaxBackupRetentionDay",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IPerformanceTierServiceLevelObjectivesInternal)this).MaxBackupRetentionDay, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IPerformanceTierServiceLevelObjectivesInternal)this).MaxStorageMb = (int?) content.GetValueForProperty("MaxStorageMb",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IPerformanceTierServiceLevelObjectivesInternal)this).MaxStorageMb, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IPerformanceTierServiceLevelObjectivesInternal)this).MinBackupRetentionDay = (int?) content.GetValueForProperty("MinBackupRetentionDay",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IPerformanceTierServiceLevelObjectivesInternal)this).MinBackupRetentionDay, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IPerformanceTierServiceLevelObjectivesInternal)this).MaxStorageMb = (int?) content.GetValueForProperty("MaxStorageMb",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IPerformanceTierServiceLevelObjectivesInternal)this).MaxStorageMb, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IPerformanceTierServiceLevelObjectivesInternal)this).MinStorageMb = (int?) content.GetValueForProperty("MinStorageMb",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IPerformanceTierServiceLevelObjectivesInternal)this).MinStorageMb, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IPerformanceTierServiceLevelObjectivesInternal)this).VCore = (int?) content.GetValueForProperty("VCore",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IPerformanceTierServiceLevelObjectivesInternal)this).VCore, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); AfterDeserializeDictionary(content); } @@ -122,14 +122,14 @@ internal PerformanceTierServiceLevelObjectives(global::System.Management.Automat return; } // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IPerformanceTierServiceLevelObjectivesInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IPerformanceTierServiceLevelObjectivesInternal)this).Id, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IPerformanceTierServiceLevelObjectivesInternal)this).Edition = (string) content.GetValueForProperty("Edition",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IPerformanceTierServiceLevelObjectivesInternal)this).Edition, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IPerformanceTierServiceLevelObjectivesInternal)this).VCore = (int?) content.GetValueForProperty("VCore",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IPerformanceTierServiceLevelObjectivesInternal)this).VCore, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IPerformanceTierServiceLevelObjectivesInternal)this).HardwareGeneration = (string) content.GetValueForProperty("HardwareGeneration",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IPerformanceTierServiceLevelObjectivesInternal)this).HardwareGeneration, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IPerformanceTierServiceLevelObjectivesInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IPerformanceTierServiceLevelObjectivesInternal)this).Id, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IPerformanceTierServiceLevelObjectivesInternal)this).MaxBackupRetentionDay = (int?) content.GetValueForProperty("MaxBackupRetentionDay",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IPerformanceTierServiceLevelObjectivesInternal)this).MaxBackupRetentionDay, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IPerformanceTierServiceLevelObjectivesInternal)this).MaxStorageMb = (int?) content.GetValueForProperty("MaxStorageMb",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IPerformanceTierServiceLevelObjectivesInternal)this).MaxStorageMb, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IPerformanceTierServiceLevelObjectivesInternal)this).MinBackupRetentionDay = (int?) content.GetValueForProperty("MinBackupRetentionDay",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IPerformanceTierServiceLevelObjectivesInternal)this).MinBackupRetentionDay, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IPerformanceTierServiceLevelObjectivesInternal)this).MaxStorageMb = (int?) content.GetValueForProperty("MaxStorageMb",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IPerformanceTierServiceLevelObjectivesInternal)this).MaxStorageMb, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IPerformanceTierServiceLevelObjectivesInternal)this).MinStorageMb = (int?) content.GetValueForProperty("MinStorageMb",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IPerformanceTierServiceLevelObjectivesInternal)this).MinStorageMb, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IPerformanceTierServiceLevelObjectivesInternal)this).VCore = (int?) content.GetValueForProperty("VCore",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IPerformanceTierServiceLevelObjectivesInternal)this).VCore, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); AfterDeserializePSObject(content); } diff --git a/src/MariaDb/generated/api/Models/Api20180601Preview/PerformanceTierServiceLevelObjectives.json.cs b/src/MariaDb/generated/api/Models/Api20180601Preview/PerformanceTierServiceLevelObjectives.json.cs index a0f3ffee4434..cdb2d6043b7e 100644 --- a/src/MariaDb/generated/api/Models/Api20180601Preview/PerformanceTierServiceLevelObjectives.json.cs +++ b/src/MariaDb/generated/api/Models/Api20180601Preview/PerformanceTierServiceLevelObjectives.json.cs @@ -70,14 +70,14 @@ internal PerformanceTierServiceLevelObjectives(Microsoft.Azure.PowerShell.Cmdlet { return; } + {_id = If( json?.PropertyT("id"), out var __jsonId) ? (string)__jsonId : (string)Id;} {_edition = If( json?.PropertyT("edition"), out var __jsonEdition) ? (string)__jsonEdition : (string)Edition;} + {_vCore = If( json?.PropertyT("vCore"), out var __jsonVCore) ? (int?)__jsonVCore : VCore;} {_hardwareGeneration = If( json?.PropertyT("hardwareGeneration"), out var __jsonHardwareGeneration) ? (string)__jsonHardwareGeneration : (string)HardwareGeneration;} - {_id = If( json?.PropertyT("id"), out var __jsonId) ? (string)__jsonId : (string)Id;} {_maxBackupRetentionDay = If( json?.PropertyT("maxBackupRetentionDays"), out var __jsonMaxBackupRetentionDays) ? (int?)__jsonMaxBackupRetentionDays : MaxBackupRetentionDay;} - {_maxStorageMb = If( json?.PropertyT("maxStorageMB"), out var __jsonMaxStorageMb) ? (int?)__jsonMaxStorageMb : MaxStorageMb;} {_minBackupRetentionDay = If( json?.PropertyT("minBackupRetentionDays"), out var __jsonMinBackupRetentionDays) ? (int?)__jsonMinBackupRetentionDays : MinBackupRetentionDay;} + {_maxStorageMb = If( json?.PropertyT("maxStorageMB"), out var __jsonMaxStorageMb) ? (int?)__jsonMaxStorageMb : MaxStorageMb;} {_minStorageMb = If( json?.PropertyT("minStorageMB"), out var __jsonMinStorageMb) ? (int?)__jsonMinStorageMb : MinStorageMb;} - {_vCore = If( json?.PropertyT("vCore"), out var __jsonVCore) ? (int?)__jsonVCore : VCore;} AfterFromJson(json); } @@ -101,14 +101,14 @@ public Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode ToJson(M { return container; } + AddIf( null != (((object)this._id)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._id.ToString()) : null, "id" ,container.Add ); AddIf( null != (((object)this._edition)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._edition.ToString()) : null, "edition" ,container.Add ); + AddIf( null != this._vCore ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode)new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNumber((int)this._vCore) : null, "vCore" ,container.Add ); AddIf( null != (((object)this._hardwareGeneration)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._hardwareGeneration.ToString()) : null, "hardwareGeneration" ,container.Add ); - AddIf( null != (((object)this._id)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._id.ToString()) : null, "id" ,container.Add ); AddIf( null != this._maxBackupRetentionDay ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode)new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNumber((int)this._maxBackupRetentionDay) : null, "maxBackupRetentionDays" ,container.Add ); - AddIf( null != this._maxStorageMb ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode)new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNumber((int)this._maxStorageMb) : null, "maxStorageMB" ,container.Add ); AddIf( null != this._minBackupRetentionDay ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode)new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNumber((int)this._minBackupRetentionDay) : null, "minBackupRetentionDays" ,container.Add ); + AddIf( null != this._maxStorageMb ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode)new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNumber((int)this._maxStorageMb) : null, "maxStorageMB" ,container.Add ); AddIf( null != this._minStorageMb ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode)new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNumber((int)this._minStorageMb) : null, "minStorageMB" ,container.Add ); - AddIf( null != this._vCore ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode)new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNumber((int)this._vCore) : null, "vCore" ,container.Add ); AfterToJson(ref container); return container; } diff --git a/src/MariaDb/generated/api/Models/Api20180601Preview/ProxyResource.PowerShell.cs b/src/MariaDb/generated/api/Models/Api20180601Preview/ProxyResource.PowerShell.cs index 920091b7b55a..06e9608e6ba2 100644 --- a/src/MariaDb/generated/api/Models/Api20180601Preview/ProxyResource.PowerShell.cs +++ b/src/MariaDb/generated/api/Models/Api20180601Preview/ProxyResource.PowerShell.cs @@ -94,9 +94,9 @@ internal ProxyResource(global::System.Collections.IDictionary content) return; } // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Name, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Type, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id, global::System.Convert.ToString); AfterDeserializeDictionary(content); } @@ -114,9 +114,9 @@ internal ProxyResource(global::System.Management.Automation.PSObject content) return; } // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Name, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Type, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id, global::System.Convert.ToString); AfterDeserializePSObject(content); } diff --git a/src/MariaDb/generated/api/Models/Api20180601Preview/ProxyResource.json.cs b/src/MariaDb/generated/api/Models/Api20180601Preview/ProxyResource.json.cs index 3a0bb2f0dbf8..604728f004cf 100644 --- a/src/MariaDb/generated/api/Models/Api20180601Preview/ProxyResource.json.cs +++ b/src/MariaDb/generated/api/Models/Api20180601Preview/ProxyResource.json.cs @@ -70,9 +70,9 @@ internal ProxyResource(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.J { return; } + {_id = If( json?.PropertyT("id"), out var __jsonId) ? (string)__jsonId : (string)Id;} {_name = If( json?.PropertyT("name"), out var __jsonName) ? (string)__jsonName : (string)Name;} {_type = If( json?.PropertyT("type"), out var __jsonType) ? (string)__jsonType : (string)Type;} - {_id = If( json?.PropertyT("id"), out var __jsonId) ? (string)__jsonId : (string)Id;} AfterFromJson(json); } @@ -97,15 +97,15 @@ public Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode ToJson(M } if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SerializationMode.IncludeReadOnly)) { - AddIf( null != (((object)this._name)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._name.ToString()) : null, "name" ,container.Add ); + AddIf( null != (((object)this._id)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._id.ToString()) : null, "id" ,container.Add ); } if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SerializationMode.IncludeReadOnly)) { - AddIf( null != (((object)this._type)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._type.ToString()) : null, "type" ,container.Add ); + AddIf( null != (((object)this._name)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._name.ToString()) : null, "name" ,container.Add ); } if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SerializationMode.IncludeReadOnly)) { - AddIf( null != (((object)this._id)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._id.ToString()) : null, "id" ,container.Add ); + AddIf( null != (((object)this._type)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._type.ToString()) : null, "type" ,container.Add ); } AfterToJson(ref container); return container; diff --git a/src/MariaDb/generated/api/Models/Api20180601Preview/ResourceIdentity.PowerShell.cs b/src/MariaDb/generated/api/Models/Api20180601Preview/ResourceIdentity.PowerShell.cs index 2f05c72fe139..78069cc5cf49 100644 --- a/src/MariaDb/generated/api/Models/Api20180601Preview/ResourceIdentity.PowerShell.cs +++ b/src/MariaDb/generated/api/Models/Api20180601Preview/ResourceIdentity.PowerShell.cs @@ -94,8 +94,8 @@ internal ResourceIdentity(global::System.Collections.IDictionary content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IResourceIdentityInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.IdentityType?) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IResourceIdentityInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.IdentityType.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IResourceIdentityInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IResourceIdentityInternal)this).PrincipalId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IResourceIdentityInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.IdentityType?) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IResourceIdentityInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.IdentityType.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IResourceIdentityInternal)this).TenantId = (string) content.GetValueForProperty("TenantId",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IResourceIdentityInternal)this).TenantId, global::System.Convert.ToString); AfterDeserializeDictionary(content); } @@ -114,8 +114,8 @@ internal ResourceIdentity(global::System.Management.Automation.PSObject content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IResourceIdentityInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.IdentityType?) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IResourceIdentityInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.IdentityType.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IResourceIdentityInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IResourceIdentityInternal)this).PrincipalId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IResourceIdentityInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.IdentityType?) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IResourceIdentityInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.IdentityType.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IResourceIdentityInternal)this).TenantId = (string) content.GetValueForProperty("TenantId",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IResourceIdentityInternal)this).TenantId, global::System.Convert.ToString); AfterDeserializePSObject(content); } diff --git a/src/MariaDb/generated/api/Models/Api20180601Preview/ResourceIdentity.json.cs b/src/MariaDb/generated/api/Models/Api20180601Preview/ResourceIdentity.json.cs index b2b90900c42b..7180d26fe638 100644 --- a/src/MariaDb/generated/api/Models/Api20180601Preview/ResourceIdentity.json.cs +++ b/src/MariaDb/generated/api/Models/Api20180601Preview/ResourceIdentity.json.cs @@ -70,8 +70,8 @@ internal ResourceIdentity(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Jso { return; } - {_type = If( json?.PropertyT("type"), out var __jsonType) ? (string)__jsonType : (string)Type;} {_principalId = If( json?.PropertyT("principalId"), out var __jsonPrincipalId) ? (string)__jsonPrincipalId : (string)PrincipalId;} + {_type = If( json?.PropertyT("type"), out var __jsonType) ? (string)__jsonType : (string)Type;} {_tenantId = If( json?.PropertyT("tenantId"), out var __jsonTenantId) ? (string)__jsonTenantId : (string)TenantId;} AfterFromJson(json); } @@ -95,11 +95,11 @@ public Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode ToJson(M { return container; } - AddIf( null != (((object)this._type)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._type.ToString()) : null, "type" ,container.Add ); if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SerializationMode.IncludeReadOnly)) { AddIf( null != (((object)this._principalId)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._principalId.ToString()) : null, "principalId" ,container.Add ); } + AddIf( null != (((object)this._type)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._type.ToString()) : null, "type" ,container.Add ); if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SerializationMode.IncludeReadOnly)) { AddIf( null != (((object)this._tenantId)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._tenantId.ToString()) : null, "tenantId" ,container.Add ); diff --git a/src/MariaDb/generated/api/Models/Api20180601Preview/SecurityAlertPolicyProperties.PowerShell.cs b/src/MariaDb/generated/api/Models/Api20180601Preview/SecurityAlertPolicyProperties.PowerShell.cs index 3cd7bd3fc5ce..d3af5c503554 100644 --- a/src/MariaDb/generated/api/Models/Api20180601Preview/SecurityAlertPolicyProperties.PowerShell.cs +++ b/src/MariaDb/generated/api/Models/Api20180601Preview/SecurityAlertPolicyProperties.PowerShell.cs @@ -96,13 +96,13 @@ internal SecurityAlertPolicyProperties(global::System.Collections.IDictionary co return; } // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISecurityAlertPolicyPropertiesInternal)this).State = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerSecurityAlertPolicyState) content.GetValueForProperty("State",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISecurityAlertPolicyPropertiesInternal)this).State, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerSecurityAlertPolicyState.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISecurityAlertPolicyPropertiesInternal)this).DisabledAlert = (string[]) content.GetValueForProperty("DisabledAlert",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISecurityAlertPolicyPropertiesInternal)this).DisabledAlert, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISecurityAlertPolicyPropertiesInternal)this).EmailAccountAdmin = (bool?) content.GetValueForProperty("EmailAccountAdmin",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISecurityAlertPolicyPropertiesInternal)this).EmailAccountAdmin, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISecurityAlertPolicyPropertiesInternal)this).EmailAddress = (string[]) content.GetValueForProperty("EmailAddress",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISecurityAlertPolicyPropertiesInternal)this).EmailAddress, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISecurityAlertPolicyPropertiesInternal)this).RetentionDay = (int?) content.GetValueForProperty("RetentionDay",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISecurityAlertPolicyPropertiesInternal)this).RetentionDay, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISecurityAlertPolicyPropertiesInternal)this).State = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerSecurityAlertPolicyState) content.GetValueForProperty("State",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISecurityAlertPolicyPropertiesInternal)this).State, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerSecurityAlertPolicyState.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISecurityAlertPolicyPropertiesInternal)this).StorageAccountAccessKey = (string) content.GetValueForProperty("StorageAccountAccessKey",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISecurityAlertPolicyPropertiesInternal)this).StorageAccountAccessKey, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISecurityAlertPolicyPropertiesInternal)this).EmailAccountAdmin = (bool?) content.GetValueForProperty("EmailAccountAdmin",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISecurityAlertPolicyPropertiesInternal)this).EmailAccountAdmin, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISecurityAlertPolicyPropertiesInternal)this).StorageEndpoint = (string) content.GetValueForProperty("StorageEndpoint",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISecurityAlertPolicyPropertiesInternal)this).StorageEndpoint, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISecurityAlertPolicyPropertiesInternal)this).StorageAccountAccessKey = (string) content.GetValueForProperty("StorageAccountAccessKey",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISecurityAlertPolicyPropertiesInternal)this).StorageAccountAccessKey, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISecurityAlertPolicyPropertiesInternal)this).RetentionDay = (int?) content.GetValueForProperty("RetentionDay",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISecurityAlertPolicyPropertiesInternal)this).RetentionDay, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); AfterDeserializeDictionary(content); } @@ -120,13 +120,13 @@ internal SecurityAlertPolicyProperties(global::System.Management.Automation.PSOb return; } // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISecurityAlertPolicyPropertiesInternal)this).State = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerSecurityAlertPolicyState) content.GetValueForProperty("State",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISecurityAlertPolicyPropertiesInternal)this).State, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerSecurityAlertPolicyState.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISecurityAlertPolicyPropertiesInternal)this).DisabledAlert = (string[]) content.GetValueForProperty("DisabledAlert",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISecurityAlertPolicyPropertiesInternal)this).DisabledAlert, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISecurityAlertPolicyPropertiesInternal)this).EmailAccountAdmin = (bool?) content.GetValueForProperty("EmailAccountAdmin",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISecurityAlertPolicyPropertiesInternal)this).EmailAccountAdmin, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISecurityAlertPolicyPropertiesInternal)this).EmailAddress = (string[]) content.GetValueForProperty("EmailAddress",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISecurityAlertPolicyPropertiesInternal)this).EmailAddress, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISecurityAlertPolicyPropertiesInternal)this).RetentionDay = (int?) content.GetValueForProperty("RetentionDay",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISecurityAlertPolicyPropertiesInternal)this).RetentionDay, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISecurityAlertPolicyPropertiesInternal)this).State = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerSecurityAlertPolicyState) content.GetValueForProperty("State",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISecurityAlertPolicyPropertiesInternal)this).State, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerSecurityAlertPolicyState.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISecurityAlertPolicyPropertiesInternal)this).StorageAccountAccessKey = (string) content.GetValueForProperty("StorageAccountAccessKey",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISecurityAlertPolicyPropertiesInternal)this).StorageAccountAccessKey, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISecurityAlertPolicyPropertiesInternal)this).EmailAccountAdmin = (bool?) content.GetValueForProperty("EmailAccountAdmin",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISecurityAlertPolicyPropertiesInternal)this).EmailAccountAdmin, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISecurityAlertPolicyPropertiesInternal)this).StorageEndpoint = (string) content.GetValueForProperty("StorageEndpoint",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISecurityAlertPolicyPropertiesInternal)this).StorageEndpoint, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISecurityAlertPolicyPropertiesInternal)this).StorageAccountAccessKey = (string) content.GetValueForProperty("StorageAccountAccessKey",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISecurityAlertPolicyPropertiesInternal)this).StorageAccountAccessKey, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISecurityAlertPolicyPropertiesInternal)this).RetentionDay = (int?) content.GetValueForProperty("RetentionDay",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISecurityAlertPolicyPropertiesInternal)this).RetentionDay, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); AfterDeserializePSObject(content); } diff --git a/src/MariaDb/generated/api/Models/Api20180601Preview/SecurityAlertPolicyProperties.json.cs b/src/MariaDb/generated/api/Models/Api20180601Preview/SecurityAlertPolicyProperties.json.cs index fe72cbcb3001..6bdfeee87278 100644 --- a/src/MariaDb/generated/api/Models/Api20180601Preview/SecurityAlertPolicyProperties.json.cs +++ b/src/MariaDb/generated/api/Models/Api20180601Preview/SecurityAlertPolicyProperties.json.cs @@ -70,13 +70,13 @@ internal SecurityAlertPolicyProperties(Microsoft.Azure.PowerShell.Cmdlets.MariaD { return; } + {_state = If( json?.PropertyT("state"), out var __jsonState) ? (string)__jsonState : (string)State;} {_disabledAlert = If( json?.PropertyT("disabledAlerts"), out var __jsonDisabledAlerts) ? If( __jsonDisabledAlerts as Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(string) (__u is Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString __t ? (string)(__t.ToString()) : null)) ))() : null : DisabledAlert;} - {_emailAccountAdmin = If( json?.PropertyT("emailAccountAdmins"), out var __jsonEmailAccountAdmins) ? (bool?)__jsonEmailAccountAdmins : EmailAccountAdmin;} {_emailAddress = If( json?.PropertyT("emailAddresses"), out var __jsonEmailAddresses) ? If( __jsonEmailAddresses as Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonArray, out var __q) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__q, (__p)=>(string) (__p is Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString __o ? (string)(__o.ToString()) : null)) ))() : null : EmailAddress;} - {_retentionDay = If( json?.PropertyT("retentionDays"), out var __jsonRetentionDays) ? (int?)__jsonRetentionDays : RetentionDay;} - {_state = If( json?.PropertyT("state"), out var __jsonState) ? (string)__jsonState : (string)State;} - {_storageAccountAccessKey = If( json?.PropertyT("storageAccountAccessKey"), out var __jsonStorageAccountAccessKey) ? (string)__jsonStorageAccountAccessKey : (string)StorageAccountAccessKey;} + {_emailAccountAdmin = If( json?.PropertyT("emailAccountAdmins"), out var __jsonEmailAccountAdmins) ? (bool?)__jsonEmailAccountAdmins : EmailAccountAdmin;} {_storageEndpoint = If( json?.PropertyT("storageEndpoint"), out var __jsonStorageEndpoint) ? (string)__jsonStorageEndpoint : (string)StorageEndpoint;} + {_storageAccountAccessKey = If( json?.PropertyT("storageAccountAccessKey"), out var __jsonStorageAccountAccessKey) ? (string)__jsonStorageAccountAccessKey : (string)StorageAccountAccessKey;} + {_retentionDay = If( json?.PropertyT("retentionDays"), out var __jsonRetentionDays) ? (int?)__jsonRetentionDays : RetentionDay;} AfterFromJson(json); } @@ -99,6 +99,7 @@ public Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode ToJson(M { return container; } + AddIf( null != (((object)this._state)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._state.ToString()) : null, "state" ,container.Add ); if (null != this._disabledAlert) { var __w = new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.XNodeArray(); @@ -108,7 +109,6 @@ public Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode ToJson(M } container.Add("disabledAlerts",__w); } - AddIf( null != this._emailAccountAdmin ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode)new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonBoolean((bool)this._emailAccountAdmin) : null, "emailAccountAdmins" ,container.Add ); if (null != this._emailAddress) { var __r = new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.XNodeArray(); @@ -118,10 +118,10 @@ public Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode ToJson(M } container.Add("emailAddresses",__r); } - AddIf( null != this._retentionDay ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode)new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNumber((int)this._retentionDay) : null, "retentionDays" ,container.Add ); - AddIf( null != (((object)this._state)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._state.ToString()) : null, "state" ,container.Add ); - AddIf( null != (((object)this._storageAccountAccessKey)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._storageAccountAccessKey.ToString()) : null, "storageAccountAccessKey" ,container.Add ); + AddIf( null != this._emailAccountAdmin ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode)new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonBoolean((bool)this._emailAccountAdmin) : null, "emailAccountAdmins" ,container.Add ); AddIf( null != (((object)this._storageEndpoint)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._storageEndpoint.ToString()) : null, "storageEndpoint" ,container.Add ); + AddIf( null != (((object)this._storageAccountAccessKey)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._storageAccountAccessKey.ToString()) : null, "storageAccountAccessKey" ,container.Add ); + AddIf( null != this._retentionDay ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode)new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNumber((int)this._retentionDay) : null, "retentionDays" ,container.Add ); AfterToJson(ref container); return container; } diff --git a/src/MariaDb/generated/api/Models/Api20180601Preview/Server.PowerShell.cs b/src/MariaDb/generated/api/Models/Api20180601Preview/Server.PowerShell.cs index 8335436a1339..bc0c14139aa6 100644 --- a/src/MariaDb/generated/api/Models/Api20180601Preview/Server.PowerShell.cs +++ b/src/MariaDb/generated/api/Models/Api20180601Preview/Server.PowerShell.cs @@ -95,35 +95,35 @@ internal Server(global::System.Collections.IDictionary content) } // actually deserialize ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).Identity = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IResourceIdentity) content.GetValueForProperty("Identity",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).Identity, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ResourceIdentityTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ServerPropertiesTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).Sku = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISku) content.GetValueForProperty("Sku",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).Sku, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.SkuTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ServerPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Name, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Type, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ITrackedResourceInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ITrackedResourceInternal)this).Location, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ITrackedResourceInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ITrackedResourceTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ITrackedResourceInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.TrackedResourceTagsTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).IdentityType = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.IdentityType?) content.GetValueForProperty("IdentityType",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).IdentityType, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.IdentityType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).SkuName = (string) content.GetValueForProperty("SkuName",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).SkuName, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).SkuTier = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SkuTier?) content.GetValueForProperty("SkuTier",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).SkuTier, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SkuTier.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).SkuSize = (string) content.GetValueForProperty("SkuSize",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).SkuSize, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).StorageProfile = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IStorageProfile) content.GetValueForProperty("StorageProfile",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).StorageProfile, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.StorageProfileTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).SkuFamily = (string) content.GetValueForProperty("SkuFamily",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).SkuFamily, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).SkuName = (string) content.GetValueForProperty("SkuName",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).SkuName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).FullyQualifiedDomainName = (string) content.GetValueForProperty("FullyQualifiedDomainName",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).FullyQualifiedDomainName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).UserVisibleState = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerState?) content.GetValueForProperty("UserVisibleState",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).UserVisibleState, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerState.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).ReplicaCapacity = (int?) content.GetValueForProperty("ReplicaCapacity",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).ReplicaCapacity, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).ReplicationRole = (string) content.GetValueForProperty("ReplicationRole",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).ReplicationRole, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).StorageProfile = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IStorageProfile) content.GetValueForProperty("StorageProfile",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).StorageProfile, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.StorageProfileTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).IdentityType = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.IdentityType?) content.GetValueForProperty("IdentityType",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).IdentityType, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.IdentityType.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).SslEnforcement = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum?) content.GetValueForProperty("SslEnforcement",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).SslEnforcement, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).IdentityPrincipalId = (string) content.GetValueForProperty("IdentityPrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).IdentityPrincipalId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).Version = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion?) content.GetValueForProperty("Version",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).Version, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).StorageProfileStorageAutogrow = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow?) content.GetValueForProperty("StorageProfileStorageAutogrow",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).StorageProfileStorageAutogrow, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).MasterServerId = (string) content.GetValueForProperty("MasterServerId",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).MasterServerId, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).IdentityTenantId = (string) content.GetValueForProperty("IdentityTenantId",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).IdentityTenantId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).SkuCapacity = (int?) content.GetValueForProperty("SkuCapacity",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).SkuCapacity, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).AdministratorLogin = (string) content.GetValueForProperty("AdministratorLogin",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).AdministratorLogin, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).Version = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion?) content.GetValueForProperty("Version",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).Version, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).IdentityPrincipalId = (string) content.GetValueForProperty("IdentityPrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).IdentityPrincipalId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).UserVisibleState = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerState?) content.GetValueForProperty("UserVisibleState",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).UserVisibleState, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerState.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).FullyQualifiedDomainName = (string) content.GetValueForProperty("FullyQualifiedDomainName",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).FullyQualifiedDomainName, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).EarliestRestoreDate = (global::System.DateTime?) content.GetValueForProperty("EarliestRestoreDate",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).EarliestRestoreDate, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).SkuCapacity = (int?) content.GetValueForProperty("SkuCapacity",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).SkuCapacity, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).StorageProfileStorageMb = (int?) content.GetValueForProperty("StorageProfileStorageMb",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).StorageProfileStorageMb, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).StorageProfileGeoRedundantBackup = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup?) content.GetValueForProperty("StorageProfileGeoRedundantBackup",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).StorageProfileGeoRedundantBackup, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).ReplicationRole = (string) content.GetValueForProperty("ReplicationRole",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).ReplicationRole, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).MasterServerId = (string) content.GetValueForProperty("MasterServerId",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).MasterServerId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).ReplicaCapacity = (int?) content.GetValueForProperty("ReplicaCapacity",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).ReplicaCapacity, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).StorageProfileStorageAutogrow = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow?) content.GetValueForProperty("StorageProfileStorageAutogrow",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).StorageProfileStorageAutogrow, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).StorageProfileBackupRetentionDay = (int?) content.GetValueForProperty("StorageProfileBackupRetentionDay",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).StorageProfileBackupRetentionDay, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).StorageProfileGeoRedundantBackup = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup?) content.GetValueForProperty("StorageProfileGeoRedundantBackup",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).StorageProfileGeoRedundantBackup, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).StorageProfileStorageMb = (int?) content.GetValueForProperty("StorageProfileStorageMb",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).StorageProfileStorageMb, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); AfterDeserializeDictionary(content); } @@ -142,35 +142,35 @@ internal Server(global::System.Management.Automation.PSObject content) } // actually deserialize ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).Identity = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IResourceIdentity) content.GetValueForProperty("Identity",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).Identity, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ResourceIdentityTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ServerPropertiesTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).Sku = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISku) content.GetValueForProperty("Sku",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).Sku, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.SkuTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ServerPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Name, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Type, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ITrackedResourceInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ITrackedResourceInternal)this).Location, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ITrackedResourceInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ITrackedResourceTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ITrackedResourceInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.TrackedResourceTagsTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).IdentityType = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.IdentityType?) content.GetValueForProperty("IdentityType",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).IdentityType, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.IdentityType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).SkuName = (string) content.GetValueForProperty("SkuName",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).SkuName, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).SkuTier = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SkuTier?) content.GetValueForProperty("SkuTier",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).SkuTier, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SkuTier.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).SkuSize = (string) content.GetValueForProperty("SkuSize",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).SkuSize, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).StorageProfile = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IStorageProfile) content.GetValueForProperty("StorageProfile",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).StorageProfile, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.StorageProfileTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).SkuFamily = (string) content.GetValueForProperty("SkuFamily",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).SkuFamily, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).SkuName = (string) content.GetValueForProperty("SkuName",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).SkuName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).FullyQualifiedDomainName = (string) content.GetValueForProperty("FullyQualifiedDomainName",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).FullyQualifiedDomainName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).UserVisibleState = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerState?) content.GetValueForProperty("UserVisibleState",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).UserVisibleState, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerState.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).ReplicaCapacity = (int?) content.GetValueForProperty("ReplicaCapacity",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).ReplicaCapacity, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).ReplicationRole = (string) content.GetValueForProperty("ReplicationRole",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).ReplicationRole, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).StorageProfile = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IStorageProfile) content.GetValueForProperty("StorageProfile",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).StorageProfile, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.StorageProfileTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).IdentityType = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.IdentityType?) content.GetValueForProperty("IdentityType",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).IdentityType, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.IdentityType.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).SslEnforcement = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum?) content.GetValueForProperty("SslEnforcement",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).SslEnforcement, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).IdentityPrincipalId = (string) content.GetValueForProperty("IdentityPrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).IdentityPrincipalId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).Version = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion?) content.GetValueForProperty("Version",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).Version, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).StorageProfileStorageAutogrow = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow?) content.GetValueForProperty("StorageProfileStorageAutogrow",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).StorageProfileStorageAutogrow, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).MasterServerId = (string) content.GetValueForProperty("MasterServerId",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).MasterServerId, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).IdentityTenantId = (string) content.GetValueForProperty("IdentityTenantId",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).IdentityTenantId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).SkuCapacity = (int?) content.GetValueForProperty("SkuCapacity",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).SkuCapacity, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).AdministratorLogin = (string) content.GetValueForProperty("AdministratorLogin",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).AdministratorLogin, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).Version = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion?) content.GetValueForProperty("Version",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).Version, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).IdentityPrincipalId = (string) content.GetValueForProperty("IdentityPrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).IdentityPrincipalId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).UserVisibleState = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerState?) content.GetValueForProperty("UserVisibleState",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).UserVisibleState, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerState.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).FullyQualifiedDomainName = (string) content.GetValueForProperty("FullyQualifiedDomainName",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).FullyQualifiedDomainName, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).EarliestRestoreDate = (global::System.DateTime?) content.GetValueForProperty("EarliestRestoreDate",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).EarliestRestoreDate, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).SkuCapacity = (int?) content.GetValueForProperty("SkuCapacity",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).SkuCapacity, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).StorageProfileStorageMb = (int?) content.GetValueForProperty("StorageProfileStorageMb",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).StorageProfileStorageMb, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).StorageProfileGeoRedundantBackup = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup?) content.GetValueForProperty("StorageProfileGeoRedundantBackup",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).StorageProfileGeoRedundantBackup, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).ReplicationRole = (string) content.GetValueForProperty("ReplicationRole",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).ReplicationRole, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).MasterServerId = (string) content.GetValueForProperty("MasterServerId",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).MasterServerId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).ReplicaCapacity = (int?) content.GetValueForProperty("ReplicaCapacity",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).ReplicaCapacity, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).StorageProfileStorageAutogrow = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow?) content.GetValueForProperty("StorageProfileStorageAutogrow",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).StorageProfileStorageAutogrow, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).StorageProfileBackupRetentionDay = (int?) content.GetValueForProperty("StorageProfileBackupRetentionDay",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).StorageProfileBackupRetentionDay, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).StorageProfileGeoRedundantBackup = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup?) content.GetValueForProperty("StorageProfileGeoRedundantBackup",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).StorageProfileGeoRedundantBackup, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).StorageProfileStorageMb = (int?) content.GetValueForProperty("StorageProfileStorageMb",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerInternal)this).StorageProfileStorageMb, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); AfterDeserializePSObject(content); } diff --git a/src/MariaDb/generated/api/Models/Api20180601Preview/Server.json.cs b/src/MariaDb/generated/api/Models/Api20180601Preview/Server.json.cs index 8df72bd16f1b..73c8fe339748 100644 --- a/src/MariaDb/generated/api/Models/Api20180601Preview/Server.json.cs +++ b/src/MariaDb/generated/api/Models/Api20180601Preview/Server.json.cs @@ -72,8 +72,8 @@ internal Server(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonObje } __trackedResource = new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.TrackedResource(json); {_identity = If( json?.PropertyT("identity"), out var __jsonIdentity) ? Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ResourceIdentity.FromJson(__jsonIdentity) : Identity;} - {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ServerProperties.FromJson(__jsonProperties) : Property;} {_sku = If( json?.PropertyT("sku"), out var __jsonSku) ? Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.Sku.FromJson(__jsonSku) : Sku;} + {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ServerProperties.FromJson(__jsonProperties) : Property;} AfterFromJson(json); } @@ -98,8 +98,8 @@ public Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode ToJson(M } __trackedResource?.ToJson(container, serializationMode); AddIf( null != this._identity ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) this._identity.ToJson(null,serializationMode) : null, "identity" ,container.Add ); - AddIf( null != this._property ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) this._property.ToJson(null,serializationMode) : null, "properties" ,container.Add ); AddIf( null != this._sku ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) this._sku.ToJson(null,serializationMode) : null, "sku" ,container.Add ); + AddIf( null != this._property ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) this._property.ToJson(null,serializationMode) : null, "properties" ,container.Add ); AfterToJson(ref container); return container; } diff --git a/src/MariaDb/generated/api/Models/Api20180601Preview/ServerForCreate.PowerShell.cs b/src/MariaDb/generated/api/Models/Api20180601Preview/ServerForCreate.PowerShell.cs index f661574ce85c..83df06e468e1 100644 --- a/src/MariaDb/generated/api/Models/Api20180601Preview/ServerForCreate.PowerShell.cs +++ b/src/MariaDb/generated/api/Models/Api20180601Preview/ServerForCreate.PowerShell.cs @@ -94,23 +94,23 @@ internal ServerForCreate(global::System.Collections.IDictionary content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreate) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ServerPropertiesForCreateTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).Sku = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISku) content.GetValueForProperty("Sku",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).Sku, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.SkuTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreate) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ServerPropertiesForCreateTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).Location, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ServerForCreateTagsTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).StorageProfile = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IStorageProfile) content.GetValueForProperty("StorageProfile",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).StorageProfile, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.StorageProfileTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).SkuTier = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SkuTier?) content.GetValueForProperty("SkuTier",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).SkuTier, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SkuTier.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).SkuName = (string) content.GetValueForProperty("SkuName",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).SkuName, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).SkuSize = (string) content.GetValueForProperty("SkuSize",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).SkuSize, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).SkuFamily = (string) content.GetValueForProperty("SkuFamily",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).SkuFamily, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).SkuName = (string) content.GetValueForProperty("SkuName",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).SkuName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).StorageProfile = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IStorageProfile) content.GetValueForProperty("StorageProfile",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).StorageProfile, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.StorageProfileTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).SkuTier = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SkuTier?) content.GetValueForProperty("SkuTier",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).SkuTier, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SkuTier.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).CreateMode = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.CreateMode) content.GetValueForProperty("CreateMode",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).CreateMode, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.CreateMode.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).StorageProfileStorageAutogrow = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow?) content.GetValueForProperty("StorageProfileStorageAutogrow",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).StorageProfileStorageAutogrow, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).SkuCapacity = (int?) content.GetValueForProperty("SkuCapacity",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).SkuCapacity, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).Version = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion?) content.GetValueForProperty("Version",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).Version, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).SslEnforcement = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum?) content.GetValueForProperty("SslEnforcement",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).SslEnforcement, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).Version = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion?) content.GetValueForProperty("Version",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).Version, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).StorageProfileStorageAutogrow = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow?) content.GetValueForProperty("StorageProfileStorageAutogrow",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).StorageProfileStorageAutogrow, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).StorageProfileBackupRetentionDay = (int?) content.GetValueForProperty("StorageProfileBackupRetentionDay",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).StorageProfileBackupRetentionDay, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).StorageProfileStorageMb = (int?) content.GetValueForProperty("StorageProfileStorageMb",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).StorageProfileStorageMb, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).StorageProfileGeoRedundantBackup = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup?) content.GetValueForProperty("StorageProfileGeoRedundantBackup",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).StorageProfileGeoRedundantBackup, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).StorageProfileStorageMb = (int?) content.GetValueForProperty("StorageProfileStorageMb",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).StorageProfileStorageMb, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); AfterDeserializeDictionary(content); } @@ -128,23 +128,23 @@ internal ServerForCreate(global::System.Management.Automation.PSObject content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreate) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ServerPropertiesForCreateTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).Sku = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISku) content.GetValueForProperty("Sku",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).Sku, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.SkuTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreate) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ServerPropertiesForCreateTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).Location, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ServerForCreateTagsTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).StorageProfile = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IStorageProfile) content.GetValueForProperty("StorageProfile",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).StorageProfile, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.StorageProfileTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).SkuTier = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SkuTier?) content.GetValueForProperty("SkuTier",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).SkuTier, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SkuTier.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).SkuName = (string) content.GetValueForProperty("SkuName",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).SkuName, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).SkuSize = (string) content.GetValueForProperty("SkuSize",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).SkuSize, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).SkuFamily = (string) content.GetValueForProperty("SkuFamily",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).SkuFamily, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).SkuName = (string) content.GetValueForProperty("SkuName",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).SkuName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).StorageProfile = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IStorageProfile) content.GetValueForProperty("StorageProfile",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).StorageProfile, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.StorageProfileTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).SkuTier = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SkuTier?) content.GetValueForProperty("SkuTier",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).SkuTier, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SkuTier.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).CreateMode = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.CreateMode) content.GetValueForProperty("CreateMode",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).CreateMode, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.CreateMode.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).StorageProfileStorageAutogrow = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow?) content.GetValueForProperty("StorageProfileStorageAutogrow",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).StorageProfileStorageAutogrow, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).SkuCapacity = (int?) content.GetValueForProperty("SkuCapacity",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).SkuCapacity, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).Version = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion?) content.GetValueForProperty("Version",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).Version, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).SslEnforcement = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum?) content.GetValueForProperty("SslEnforcement",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).SslEnforcement, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).Version = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion?) content.GetValueForProperty("Version",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).Version, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).StorageProfileStorageAutogrow = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow?) content.GetValueForProperty("StorageProfileStorageAutogrow",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).StorageProfileStorageAutogrow, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).StorageProfileBackupRetentionDay = (int?) content.GetValueForProperty("StorageProfileBackupRetentionDay",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).StorageProfileBackupRetentionDay, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).StorageProfileStorageMb = (int?) content.GetValueForProperty("StorageProfileStorageMb",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).StorageProfileStorageMb, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).StorageProfileGeoRedundantBackup = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup?) content.GetValueForProperty("StorageProfileGeoRedundantBackup",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).StorageProfileGeoRedundantBackup, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).StorageProfileStorageMb = (int?) content.GetValueForProperty("StorageProfileStorageMb",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreateInternal)this).StorageProfileStorageMb, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); AfterDeserializePSObject(content); } diff --git a/src/MariaDb/generated/api/Models/Api20180601Preview/ServerForCreate.json.cs b/src/MariaDb/generated/api/Models/Api20180601Preview/ServerForCreate.json.cs index b3b2aca7f6c9..7990b71e6930 100644 --- a/src/MariaDb/generated/api/Models/Api20180601Preview/ServerForCreate.json.cs +++ b/src/MariaDb/generated/api/Models/Api20180601Preview/ServerForCreate.json.cs @@ -70,8 +70,8 @@ internal ServerForCreate(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json { return; } - {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ServerPropertiesForCreate.FromJson(__jsonProperties) : Property;} {_sku = If( json?.PropertyT("sku"), out var __jsonSku) ? Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.Sku.FromJson(__jsonSku) : Sku;} + {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ServerPropertiesForCreate.FromJson(__jsonProperties) : Property;} {_location = If( json?.PropertyT("location"), out var __jsonLocation) ? (string)__jsonLocation : (string)Location;} {_tag = If( json?.PropertyT("tags"), out var __jsonTags) ? Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ServerForCreateTags.FromJson(__jsonTags) : Tag;} AfterFromJson(json); @@ -96,8 +96,8 @@ public Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode ToJson(M { return container; } - AddIf( null != this._property ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) this._property.ToJson(null,serializationMode) : null, "properties" ,container.Add ); AddIf( null != this._sku ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) this._sku.ToJson(null,serializationMode) : null, "sku" ,container.Add ); + AddIf( null != this._property ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) this._property.ToJson(null,serializationMode) : null, "properties" ,container.Add ); AddIf( null != (((object)this._location)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._location.ToString()) : null, "location" ,container.Add ); AddIf( null != this._tag ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) this._tag.ToJson(null,serializationMode) : null, "tags" ,container.Add ); AfterToJson(ref container); diff --git a/src/MariaDb/generated/api/Models/Api20180601Preview/ServerProperties.PowerShell.cs b/src/MariaDb/generated/api/Models/Api20180601Preview/ServerProperties.PowerShell.cs index 9c47c8ee0615..0d8062c42615 100644 --- a/src/MariaDb/generated/api/Models/Api20180601Preview/ServerProperties.PowerShell.cs +++ b/src/MariaDb/generated/api/Models/Api20180601Preview/ServerProperties.PowerShell.cs @@ -96,14 +96,14 @@ internal ServerProperties(global::System.Collections.IDictionary content) // actually deserialize ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).StorageProfile = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IStorageProfile) content.GetValueForProperty("StorageProfile",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).StorageProfile, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.StorageProfileTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).AdministratorLogin = (string) content.GetValueForProperty("AdministratorLogin",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).AdministratorLogin, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).EarliestRestoreDate = (global::System.DateTime?) content.GetValueForProperty("EarliestRestoreDate",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).EarliestRestoreDate, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).Version = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion?) content.GetValueForProperty("Version",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).Version, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).SslEnforcement = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum?) content.GetValueForProperty("SslEnforcement",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).SslEnforcement, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).UserVisibleState = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerState?) content.GetValueForProperty("UserVisibleState",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).UserVisibleState, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerState.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).FullyQualifiedDomainName = (string) content.GetValueForProperty("FullyQualifiedDomainName",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).FullyQualifiedDomainName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).EarliestRestoreDate = (global::System.DateTime?) content.GetValueForProperty("EarliestRestoreDate",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).EarliestRestoreDate, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).ReplicationRole = (string) content.GetValueForProperty("ReplicationRole",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).ReplicationRole, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).MasterServerId = (string) content.GetValueForProperty("MasterServerId",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).MasterServerId, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).ReplicaCapacity = (int?) content.GetValueForProperty("ReplicaCapacity",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).ReplicaCapacity, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).ReplicationRole = (string) content.GetValueForProperty("ReplicationRole",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).ReplicationRole, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).SslEnforcement = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum?) content.GetValueForProperty("SslEnforcement",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).SslEnforcement, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).UserVisibleState = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerState?) content.GetValueForProperty("UserVisibleState",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).UserVisibleState, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerState.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).Version = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion?) content.GetValueForProperty("Version",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).Version, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).StorageProfileStorageAutogrow = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow?) content.GetValueForProperty("StorageProfileStorageAutogrow",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).StorageProfileStorageAutogrow, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).StorageProfileBackupRetentionDay = (int?) content.GetValueForProperty("StorageProfileBackupRetentionDay",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).StorageProfileBackupRetentionDay, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).StorageProfileGeoRedundantBackup = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup?) content.GetValueForProperty("StorageProfileGeoRedundantBackup",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).StorageProfileGeoRedundantBackup, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup.CreateFrom); @@ -127,14 +127,14 @@ internal ServerProperties(global::System.Management.Automation.PSObject content) // actually deserialize ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).StorageProfile = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IStorageProfile) content.GetValueForProperty("StorageProfile",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).StorageProfile, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.StorageProfileTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).AdministratorLogin = (string) content.GetValueForProperty("AdministratorLogin",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).AdministratorLogin, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).EarliestRestoreDate = (global::System.DateTime?) content.GetValueForProperty("EarliestRestoreDate",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).EarliestRestoreDate, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).Version = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion?) content.GetValueForProperty("Version",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).Version, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).SslEnforcement = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum?) content.GetValueForProperty("SslEnforcement",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).SslEnforcement, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).UserVisibleState = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerState?) content.GetValueForProperty("UserVisibleState",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).UserVisibleState, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerState.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).FullyQualifiedDomainName = (string) content.GetValueForProperty("FullyQualifiedDomainName",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).FullyQualifiedDomainName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).EarliestRestoreDate = (global::System.DateTime?) content.GetValueForProperty("EarliestRestoreDate",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).EarliestRestoreDate, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).ReplicationRole = (string) content.GetValueForProperty("ReplicationRole",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).ReplicationRole, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).MasterServerId = (string) content.GetValueForProperty("MasterServerId",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).MasterServerId, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).ReplicaCapacity = (int?) content.GetValueForProperty("ReplicaCapacity",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).ReplicaCapacity, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).ReplicationRole = (string) content.GetValueForProperty("ReplicationRole",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).ReplicationRole, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).SslEnforcement = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum?) content.GetValueForProperty("SslEnforcement",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).SslEnforcement, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).UserVisibleState = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerState?) content.GetValueForProperty("UserVisibleState",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).UserVisibleState, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerState.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).Version = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion?) content.GetValueForProperty("Version",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).Version, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).StorageProfileStorageAutogrow = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow?) content.GetValueForProperty("StorageProfileStorageAutogrow",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).StorageProfileStorageAutogrow, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).StorageProfileBackupRetentionDay = (int?) content.GetValueForProperty("StorageProfileBackupRetentionDay",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).StorageProfileBackupRetentionDay, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).StorageProfileGeoRedundantBackup = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup?) content.GetValueForProperty("StorageProfileGeoRedundantBackup",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesInternal)this).StorageProfileGeoRedundantBackup, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup.CreateFrom); diff --git a/src/MariaDb/generated/api/Models/Api20180601Preview/ServerProperties.json.cs b/src/MariaDb/generated/api/Models/Api20180601Preview/ServerProperties.json.cs index 8db254084dae..2928bf075050 100644 --- a/src/MariaDb/generated/api/Models/Api20180601Preview/ServerProperties.json.cs +++ b/src/MariaDb/generated/api/Models/Api20180601Preview/ServerProperties.json.cs @@ -72,14 +72,14 @@ internal ServerProperties(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Jso } {_storageProfile = If( json?.PropertyT("storageProfile"), out var __jsonStorageProfile) ? Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.StorageProfile.FromJson(__jsonStorageProfile) : StorageProfile;} {_administratorLogin = If( json?.PropertyT("administratorLogin"), out var __jsonAdministratorLogin) ? (string)__jsonAdministratorLogin : (string)AdministratorLogin;} - {_earliestRestoreDate = If( json?.PropertyT("earliestRestoreDate"), out var __jsonEarliestRestoreDate) ? global::System.DateTime.TryParse((string)__jsonEarliestRestoreDate, global::System.Globalization.CultureInfo.InvariantCulture, global::System.Globalization.DateTimeStyles.AdjustToUniversal, out var __jsonEarliestRestoreDateValue) ? __jsonEarliestRestoreDateValue : EarliestRestoreDate : EarliestRestoreDate;} + {_version = If( json?.PropertyT("version"), out var __jsonVersion) ? (string)__jsonVersion : (string)Version;} + {_sslEnforcement = If( json?.PropertyT("sslEnforcement"), out var __jsonSslEnforcement) ? (string)__jsonSslEnforcement : (string)SslEnforcement;} + {_userVisibleState = If( json?.PropertyT("userVisibleState"), out var __jsonUserVisibleState) ? (string)__jsonUserVisibleState : (string)UserVisibleState;} {_fullyQualifiedDomainName = If( json?.PropertyT("fullyQualifiedDomainName"), out var __jsonFullyQualifiedDomainName) ? (string)__jsonFullyQualifiedDomainName : (string)FullyQualifiedDomainName;} + {_earliestRestoreDate = If( json?.PropertyT("earliestRestoreDate"), out var __jsonEarliestRestoreDate) ? global::System.DateTime.TryParse((string)__jsonEarliestRestoreDate, global::System.Globalization.CultureInfo.InvariantCulture, global::System.Globalization.DateTimeStyles.AdjustToUniversal, out var __jsonEarliestRestoreDateValue) ? __jsonEarliestRestoreDateValue : EarliestRestoreDate : EarliestRestoreDate;} + {_replicationRole = If( json?.PropertyT("replicationRole"), out var __jsonReplicationRole) ? (string)__jsonReplicationRole : (string)ReplicationRole;} {_masterServerId = If( json?.PropertyT("masterServerId"), out var __jsonMasterServerId) ? (string)__jsonMasterServerId : (string)MasterServerId;} {_replicaCapacity = If( json?.PropertyT("replicaCapacity"), out var __jsonReplicaCapacity) ? (int?)__jsonReplicaCapacity : ReplicaCapacity;} - {_replicationRole = If( json?.PropertyT("replicationRole"), out var __jsonReplicationRole) ? (string)__jsonReplicationRole : (string)ReplicationRole;} - {_sslEnforcement = If( json?.PropertyT("sslEnforcement"), out var __jsonSslEnforcement) ? (string)__jsonSslEnforcement : (string)SslEnforcement;} - {_userVisibleState = If( json?.PropertyT("userVisibleState"), out var __jsonUserVisibleState) ? (string)__jsonUserVisibleState : (string)UserVisibleState;} - {_version = If( json?.PropertyT("version"), out var __jsonVersion) ? (string)__jsonVersion : (string)Version;} AfterFromJson(json); } @@ -104,14 +104,14 @@ public Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode ToJson(M } AddIf( null != this._storageProfile ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) this._storageProfile.ToJson(null,serializationMode) : null, "storageProfile" ,container.Add ); AddIf( null != (((object)this._administratorLogin)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._administratorLogin.ToString()) : null, "administratorLogin" ,container.Add ); - AddIf( null != this._earliestRestoreDate ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._earliestRestoreDate?.ToString(@"yyyy'-'MM'-'dd'T'HH':'mm':'ss.fffffffK",global::System.Globalization.CultureInfo.InvariantCulture)) : null, "earliestRestoreDate" ,container.Add ); + AddIf( null != (((object)this._version)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._version.ToString()) : null, "version" ,container.Add ); + AddIf( null != (((object)this._sslEnforcement)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._sslEnforcement.ToString()) : null, "sslEnforcement" ,container.Add ); + AddIf( null != (((object)this._userVisibleState)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._userVisibleState.ToString()) : null, "userVisibleState" ,container.Add ); AddIf( null != (((object)this._fullyQualifiedDomainName)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._fullyQualifiedDomainName.ToString()) : null, "fullyQualifiedDomainName" ,container.Add ); + AddIf( null != this._earliestRestoreDate ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._earliestRestoreDate?.ToString(@"yyyy'-'MM'-'dd'T'HH':'mm':'ss.fffffffK",global::System.Globalization.CultureInfo.InvariantCulture)) : null, "earliestRestoreDate" ,container.Add ); + AddIf( null != (((object)this._replicationRole)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._replicationRole.ToString()) : null, "replicationRole" ,container.Add ); AddIf( null != (((object)this._masterServerId)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._masterServerId.ToString()) : null, "masterServerId" ,container.Add ); AddIf( null != this._replicaCapacity ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode)new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNumber((int)this._replicaCapacity) : null, "replicaCapacity" ,container.Add ); - AddIf( null != (((object)this._replicationRole)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._replicationRole.ToString()) : null, "replicationRole" ,container.Add ); - AddIf( null != (((object)this._sslEnforcement)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._sslEnforcement.ToString()) : null, "sslEnforcement" ,container.Add ); - AddIf( null != (((object)this._userVisibleState)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._userVisibleState.ToString()) : null, "userVisibleState" ,container.Add ); - AddIf( null != (((object)this._version)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._version.ToString()) : null, "version" ,container.Add ); AfterToJson(ref container); return container; } diff --git a/src/MariaDb/generated/api/Models/Api20180601Preview/ServerPropertiesForCreate.PowerShell.cs b/src/MariaDb/generated/api/Models/Api20180601Preview/ServerPropertiesForCreate.PowerShell.cs index 4263655f0b7b..6118bab5298e 100644 --- a/src/MariaDb/generated/api/Models/Api20180601Preview/ServerPropertiesForCreate.PowerShell.cs +++ b/src/MariaDb/generated/api/Models/Api20180601Preview/ServerPropertiesForCreate.PowerShell.cs @@ -97,9 +97,9 @@ internal ServerPropertiesForCreate(global::System.Collections.IDictionary conten } // actually deserialize ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfile = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IStorageProfile) content.GetValueForProperty("StorageProfile",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfile, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.StorageProfileTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).CreateMode = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.CreateMode) content.GetValueForProperty("CreateMode",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).CreateMode, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.CreateMode.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).SslEnforcement = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum?) content.GetValueForProperty("SslEnforcement",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).SslEnforcement, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).Version = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion?) content.GetValueForProperty("Version",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).Version, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).SslEnforcement = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum?) content.GetValueForProperty("SslEnforcement",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).SslEnforcement, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).CreateMode = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.CreateMode) content.GetValueForProperty("CreateMode",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).CreateMode, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.CreateMode.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfileStorageAutogrow = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow?) content.GetValueForProperty("StorageProfileStorageAutogrow",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfileStorageAutogrow, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfileBackupRetentionDay = (int?) content.GetValueForProperty("StorageProfileBackupRetentionDay",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfileBackupRetentionDay, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfileGeoRedundantBackup = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup?) content.GetValueForProperty("StorageProfileGeoRedundantBackup",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfileGeoRedundantBackup, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup.CreateFrom); @@ -122,9 +122,9 @@ internal ServerPropertiesForCreate(global::System.Management.Automation.PSObject } // actually deserialize ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfile = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IStorageProfile) content.GetValueForProperty("StorageProfile",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfile, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.StorageProfileTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).CreateMode = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.CreateMode) content.GetValueForProperty("CreateMode",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).CreateMode, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.CreateMode.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).SslEnforcement = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum?) content.GetValueForProperty("SslEnforcement",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).SslEnforcement, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).Version = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion?) content.GetValueForProperty("Version",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).Version, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).SslEnforcement = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum?) content.GetValueForProperty("SslEnforcement",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).SslEnforcement, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).CreateMode = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.CreateMode) content.GetValueForProperty("CreateMode",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).CreateMode, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.CreateMode.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfileStorageAutogrow = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow?) content.GetValueForProperty("StorageProfileStorageAutogrow",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfileStorageAutogrow, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfileBackupRetentionDay = (int?) content.GetValueForProperty("StorageProfileBackupRetentionDay",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfileBackupRetentionDay, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfileGeoRedundantBackup = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup?) content.GetValueForProperty("StorageProfileGeoRedundantBackup",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfileGeoRedundantBackup, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup.CreateFrom); diff --git a/src/MariaDb/generated/api/Models/Api20180601Preview/ServerPropertiesForCreate.json.cs b/src/MariaDb/generated/api/Models/Api20180601Preview/ServerPropertiesForCreate.json.cs index 8b183d4817b2..01f16bbe05dd 100644 --- a/src/MariaDb/generated/api/Models/Api20180601Preview/ServerPropertiesForCreate.json.cs +++ b/src/MariaDb/generated/api/Models/Api20180601Preview/ServerPropertiesForCreate.json.cs @@ -98,9 +98,9 @@ internal ServerPropertiesForCreate(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Ru return; } {_storageProfile = If( json?.PropertyT("storageProfile"), out var __jsonStorageProfile) ? Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.StorageProfile.FromJson(__jsonStorageProfile) : StorageProfile;} - {_createMode = If( json?.PropertyT("createMode"), out var __jsonCreateMode) ? (string)__jsonCreateMode : (string)CreateMode;} - {_sslEnforcement = If( json?.PropertyT("sslEnforcement"), out var __jsonSslEnforcement) ? (string)__jsonSslEnforcement : (string)SslEnforcement;} {_version = If( json?.PropertyT("version"), out var __jsonVersion) ? (string)__jsonVersion : (string)Version;} + {_sslEnforcement = If( json?.PropertyT("sslEnforcement"), out var __jsonSslEnforcement) ? (string)__jsonSslEnforcement : (string)SslEnforcement;} + {_createMode = If( json?.PropertyT("createMode"), out var __jsonCreateMode) ? (string)__jsonCreateMode : (string)CreateMode;} AfterFromJson(json); } @@ -124,9 +124,9 @@ public Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode ToJson(M return container; } AddIf( null != this._storageProfile ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) this._storageProfile.ToJson(null,serializationMode) : null, "storageProfile" ,container.Add ); - AddIf( null != (((object)this._createMode)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._createMode.ToString()) : null, "createMode" ,container.Add ); - AddIf( null != (((object)this._sslEnforcement)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._sslEnforcement.ToString()) : null, "sslEnforcement" ,container.Add ); AddIf( null != (((object)this._version)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._version.ToString()) : null, "version" ,container.Add ); + AddIf( null != (((object)this._sslEnforcement)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._sslEnforcement.ToString()) : null, "sslEnforcement" ,container.Add ); + AddIf( null != (((object)this._createMode)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._createMode.ToString()) : null, "createMode" ,container.Add ); AfterToJson(ref container); return container; } diff --git a/src/MariaDb/generated/api/Models/Api20180601Preview/ServerPropertiesForDefaultCreate.PowerShell.cs b/src/MariaDb/generated/api/Models/Api20180601Preview/ServerPropertiesForDefaultCreate.PowerShell.cs index 7047c6dc4e1c..68189d74f275 100644 --- a/src/MariaDb/generated/api/Models/Api20180601Preview/ServerPropertiesForDefaultCreate.PowerShell.cs +++ b/src/MariaDb/generated/api/Models/Api20180601Preview/ServerPropertiesForDefaultCreate.PowerShell.cs @@ -103,9 +103,9 @@ internal ServerPropertiesForDefaultCreate(global::System.Collections.IDictionary ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfileGeoRedundantBackup = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup?) content.GetValueForProperty("StorageProfileGeoRedundantBackup",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfileGeoRedundantBackup, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfileStorageMb = (int?) content.GetValueForProperty("StorageProfileStorageMb",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfileStorageMb, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfile = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IStorageProfile) content.GetValueForProperty("StorageProfile",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfile, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.StorageProfileTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).CreateMode = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.CreateMode) content.GetValueForProperty("CreateMode",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).CreateMode, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.CreateMode.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).SslEnforcement = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum?) content.GetValueForProperty("SslEnforcement",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).SslEnforcement, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).Version = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion?) content.GetValueForProperty("Version",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).Version, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).SslEnforcement = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum?) content.GetValueForProperty("SslEnforcement",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).SslEnforcement, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).CreateMode = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.CreateMode) content.GetValueForProperty("CreateMode",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).CreateMode, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.CreateMode.CreateFrom); AfterDeserializeDictionary(content); } @@ -130,9 +130,9 @@ internal ServerPropertiesForDefaultCreate(global::System.Management.Automation.P ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfileGeoRedundantBackup = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup?) content.GetValueForProperty("StorageProfileGeoRedundantBackup",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfileGeoRedundantBackup, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfileStorageMb = (int?) content.GetValueForProperty("StorageProfileStorageMb",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfileStorageMb, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfile = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IStorageProfile) content.GetValueForProperty("StorageProfile",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfile, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.StorageProfileTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).CreateMode = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.CreateMode) content.GetValueForProperty("CreateMode",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).CreateMode, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.CreateMode.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).SslEnforcement = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum?) content.GetValueForProperty("SslEnforcement",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).SslEnforcement, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).Version = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion?) content.GetValueForProperty("Version",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).Version, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).SslEnforcement = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum?) content.GetValueForProperty("SslEnforcement",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).SslEnforcement, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).CreateMode = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.CreateMode) content.GetValueForProperty("CreateMode",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).CreateMode, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.CreateMode.CreateFrom); AfterDeserializePSObject(content); } diff --git a/src/MariaDb/generated/api/Models/Api20180601Preview/ServerPropertiesForGeoRestore.PowerShell.cs b/src/MariaDb/generated/api/Models/Api20180601Preview/ServerPropertiesForGeoRestore.PowerShell.cs index f35de161f23d..f6dc7ebefd4c 100644 --- a/src/MariaDb/generated/api/Models/Api20180601Preview/ServerPropertiesForGeoRestore.PowerShell.cs +++ b/src/MariaDb/generated/api/Models/Api20180601Preview/ServerPropertiesForGeoRestore.PowerShell.cs @@ -104,9 +104,9 @@ internal ServerPropertiesForGeoRestore(global::System.Collections.IDictionary co ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfileGeoRedundantBackup = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup?) content.GetValueForProperty("StorageProfileGeoRedundantBackup",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfileGeoRedundantBackup, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfileStorageMb = (int?) content.GetValueForProperty("StorageProfileStorageMb",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfileStorageMb, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfile = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IStorageProfile) content.GetValueForProperty("StorageProfile",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfile, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.StorageProfileTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).CreateMode = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.CreateMode) content.GetValueForProperty("CreateMode",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).CreateMode, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.CreateMode.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).SslEnforcement = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum?) content.GetValueForProperty("SslEnforcement",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).SslEnforcement, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).Version = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion?) content.GetValueForProperty("Version",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).Version, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).SslEnforcement = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum?) content.GetValueForProperty("SslEnforcement",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).SslEnforcement, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).CreateMode = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.CreateMode) content.GetValueForProperty("CreateMode",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).CreateMode, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.CreateMode.CreateFrom); AfterDeserializeDictionary(content); } @@ -130,9 +130,9 @@ internal ServerPropertiesForGeoRestore(global::System.Management.Automation.PSOb ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfileGeoRedundantBackup = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup?) content.GetValueForProperty("StorageProfileGeoRedundantBackup",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfileGeoRedundantBackup, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfileStorageMb = (int?) content.GetValueForProperty("StorageProfileStorageMb",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfileStorageMb, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfile = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IStorageProfile) content.GetValueForProperty("StorageProfile",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfile, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.StorageProfileTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).CreateMode = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.CreateMode) content.GetValueForProperty("CreateMode",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).CreateMode, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.CreateMode.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).SslEnforcement = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum?) content.GetValueForProperty("SslEnforcement",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).SslEnforcement, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).Version = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion?) content.GetValueForProperty("Version",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).Version, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).SslEnforcement = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum?) content.GetValueForProperty("SslEnforcement",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).SslEnforcement, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).CreateMode = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.CreateMode) content.GetValueForProperty("CreateMode",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).CreateMode, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.CreateMode.CreateFrom); AfterDeserializePSObject(content); } diff --git a/src/MariaDb/generated/api/Models/Api20180601Preview/ServerPropertiesForReplica.PowerShell.cs b/src/MariaDb/generated/api/Models/Api20180601Preview/ServerPropertiesForReplica.PowerShell.cs index a980065e0e7d..076c45c37f14 100644 --- a/src/MariaDb/generated/api/Models/Api20180601Preview/ServerPropertiesForReplica.PowerShell.cs +++ b/src/MariaDb/generated/api/Models/Api20180601Preview/ServerPropertiesForReplica.PowerShell.cs @@ -102,9 +102,9 @@ internal ServerPropertiesForReplica(global::System.Collections.IDictionary conte ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfileGeoRedundantBackup = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup?) content.GetValueForProperty("StorageProfileGeoRedundantBackup",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfileGeoRedundantBackup, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfileStorageMb = (int?) content.GetValueForProperty("StorageProfileStorageMb",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfileStorageMb, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfile = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IStorageProfile) content.GetValueForProperty("StorageProfile",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfile, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.StorageProfileTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).CreateMode = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.CreateMode) content.GetValueForProperty("CreateMode",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).CreateMode, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.CreateMode.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).SslEnforcement = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum?) content.GetValueForProperty("SslEnforcement",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).SslEnforcement, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).Version = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion?) content.GetValueForProperty("Version",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).Version, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).SslEnforcement = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum?) content.GetValueForProperty("SslEnforcement",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).SslEnforcement, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).CreateMode = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.CreateMode) content.GetValueForProperty("CreateMode",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).CreateMode, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.CreateMode.CreateFrom); AfterDeserializeDictionary(content); } @@ -128,9 +128,9 @@ internal ServerPropertiesForReplica(global::System.Management.Automation.PSObjec ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfileGeoRedundantBackup = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup?) content.GetValueForProperty("StorageProfileGeoRedundantBackup",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfileGeoRedundantBackup, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfileStorageMb = (int?) content.GetValueForProperty("StorageProfileStorageMb",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfileStorageMb, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfile = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IStorageProfile) content.GetValueForProperty("StorageProfile",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfile, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.StorageProfileTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).CreateMode = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.CreateMode) content.GetValueForProperty("CreateMode",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).CreateMode, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.CreateMode.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).SslEnforcement = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum?) content.GetValueForProperty("SslEnforcement",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).SslEnforcement, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).Version = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion?) content.GetValueForProperty("Version",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).Version, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).SslEnforcement = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum?) content.GetValueForProperty("SslEnforcement",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).SslEnforcement, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).CreateMode = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.CreateMode) content.GetValueForProperty("CreateMode",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).CreateMode, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.CreateMode.CreateFrom); AfterDeserializePSObject(content); } diff --git a/src/MariaDb/generated/api/Models/Api20180601Preview/ServerPropertiesForRestore.PowerShell.cs b/src/MariaDb/generated/api/Models/Api20180601Preview/ServerPropertiesForRestore.PowerShell.cs index cab3b5c00ad4..e07f4a497221 100644 --- a/src/MariaDb/generated/api/Models/Api20180601Preview/ServerPropertiesForRestore.PowerShell.cs +++ b/src/MariaDb/generated/api/Models/Api20180601Preview/ServerPropertiesForRestore.PowerShell.cs @@ -96,16 +96,16 @@ internal ServerPropertiesForRestore(global::System.Collections.IDictionary conte return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForRestoreInternal)this).RestorePointInTime = (global::System.DateTime) content.GetValueForProperty("RestorePointInTime",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForRestoreInternal)this).RestorePointInTime, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForRestoreInternal)this).SourceServerId = (string) content.GetValueForProperty("SourceServerId",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForRestoreInternal)this).SourceServerId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForRestoreInternal)this).RestorePointInTime = (global::System.DateTime) content.GetValueForProperty("RestorePointInTime",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForRestoreInternal)this).RestorePointInTime, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfileStorageAutogrow = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow?) content.GetValueForProperty("StorageProfileStorageAutogrow",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfileStorageAutogrow, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfileBackupRetentionDay = (int?) content.GetValueForProperty("StorageProfileBackupRetentionDay",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfileBackupRetentionDay, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfileGeoRedundantBackup = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup?) content.GetValueForProperty("StorageProfileGeoRedundantBackup",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfileGeoRedundantBackup, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfileStorageMb = (int?) content.GetValueForProperty("StorageProfileStorageMb",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfileStorageMb, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfile = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IStorageProfile) content.GetValueForProperty("StorageProfile",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfile, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.StorageProfileTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).CreateMode = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.CreateMode) content.GetValueForProperty("CreateMode",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).CreateMode, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.CreateMode.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).SslEnforcement = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum?) content.GetValueForProperty("SslEnforcement",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).SslEnforcement, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).Version = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion?) content.GetValueForProperty("Version",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).Version, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).SslEnforcement = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum?) content.GetValueForProperty("SslEnforcement",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).SslEnforcement, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).CreateMode = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.CreateMode) content.GetValueForProperty("CreateMode",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).CreateMode, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.CreateMode.CreateFrom); AfterDeserializeDictionary(content); } @@ -123,16 +123,16 @@ internal ServerPropertiesForRestore(global::System.Management.Automation.PSObjec return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForRestoreInternal)this).RestorePointInTime = (global::System.DateTime) content.GetValueForProperty("RestorePointInTime",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForRestoreInternal)this).RestorePointInTime, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForRestoreInternal)this).SourceServerId = (string) content.GetValueForProperty("SourceServerId",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForRestoreInternal)this).SourceServerId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForRestoreInternal)this).RestorePointInTime = (global::System.DateTime) content.GetValueForProperty("RestorePointInTime",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForRestoreInternal)this).RestorePointInTime, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfileStorageAutogrow = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow?) content.GetValueForProperty("StorageProfileStorageAutogrow",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfileStorageAutogrow, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfileBackupRetentionDay = (int?) content.GetValueForProperty("StorageProfileBackupRetentionDay",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfileBackupRetentionDay, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfileGeoRedundantBackup = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup?) content.GetValueForProperty("StorageProfileGeoRedundantBackup",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfileGeoRedundantBackup, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfileStorageMb = (int?) content.GetValueForProperty("StorageProfileStorageMb",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfileStorageMb, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfile = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IStorageProfile) content.GetValueForProperty("StorageProfile",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).StorageProfile, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.StorageProfileTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).CreateMode = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.CreateMode) content.GetValueForProperty("CreateMode",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).CreateMode, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.CreateMode.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).SslEnforcement = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum?) content.GetValueForProperty("SslEnforcement",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).SslEnforcement, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).Version = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion?) content.GetValueForProperty("Version",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).Version, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).SslEnforcement = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum?) content.GetValueForProperty("SslEnforcement",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).SslEnforcement, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).CreateMode = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.CreateMode) content.GetValueForProperty("CreateMode",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerPropertiesForCreateInternal)this).CreateMode, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.CreateMode.CreateFrom); AfterDeserializePSObject(content); } diff --git a/src/MariaDb/generated/api/Models/Api20180601Preview/ServerPropertiesForRestore.json.cs b/src/MariaDb/generated/api/Models/Api20180601Preview/ServerPropertiesForRestore.json.cs index cb7efafb1a95..a0ade98da7aa 100644 --- a/src/MariaDb/generated/api/Models/Api20180601Preview/ServerPropertiesForRestore.json.cs +++ b/src/MariaDb/generated/api/Models/Api20180601Preview/ServerPropertiesForRestore.json.cs @@ -71,8 +71,8 @@ internal ServerPropertiesForRestore(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.R return; } __serverPropertiesForCreate = new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ServerPropertiesForCreate(json); - {_restorePointInTime = If( json?.PropertyT("restorePointInTime"), out var __jsonRestorePointInTime) ? global::System.DateTime.TryParse((string)__jsonRestorePointInTime, global::System.Globalization.CultureInfo.InvariantCulture, global::System.Globalization.DateTimeStyles.AdjustToUniversal, out var __jsonRestorePointInTimeValue) ? __jsonRestorePointInTimeValue : RestorePointInTime : RestorePointInTime;} {_sourceServerId = If( json?.PropertyT("sourceServerId"), out var __jsonSourceServerId) ? (string)__jsonSourceServerId : (string)SourceServerId;} + {_restorePointInTime = If( json?.PropertyT("restorePointInTime"), out var __jsonRestorePointInTime) ? global::System.DateTime.TryParse((string)__jsonRestorePointInTime, global::System.Globalization.CultureInfo.InvariantCulture, global::System.Globalization.DateTimeStyles.AdjustToUniversal, out var __jsonRestorePointInTimeValue) ? __jsonRestorePointInTimeValue : RestorePointInTime : RestorePointInTime;} AfterFromJson(json); } @@ -96,8 +96,8 @@ public Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode ToJson(M return container; } __serverPropertiesForCreate?.ToJson(container, serializationMode); - AddIf( (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._restorePointInTime.ToString(@"yyyy'-'MM'-'dd'T'HH':'mm':'ss.fffffffK",global::System.Globalization.CultureInfo.InvariantCulture)), "restorePointInTime" ,container.Add ); AddIf( null != (((object)this._sourceServerId)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._sourceServerId.ToString()) : null, "sourceServerId" ,container.Add ); + AddIf( (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._restorePointInTime.ToString(@"yyyy'-'MM'-'dd'T'HH':'mm':'ss.fffffffK",global::System.Globalization.CultureInfo.InvariantCulture)), "restorePointInTime" ,container.Add ); AfterToJson(ref container); return container; } diff --git a/src/MariaDb/generated/api/Models/Api20180601Preview/ServerSecurityAlertPolicy.PowerShell.cs b/src/MariaDb/generated/api/Models/Api20180601Preview/ServerSecurityAlertPolicy.PowerShell.cs index ca0ed6b79bee..c43dfe67f6c9 100644 --- a/src/MariaDb/generated/api/Models/Api20180601Preview/ServerSecurityAlertPolicy.PowerShell.cs +++ b/src/MariaDb/generated/api/Models/Api20180601Preview/ServerSecurityAlertPolicy.PowerShell.cs @@ -97,16 +97,16 @@ internal ServerSecurityAlertPolicy(global::System.Collections.IDictionary conten } // actually deserialize ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicyInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISecurityAlertPolicyProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicyInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.SecurityAlertPolicyPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Name, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Type, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicyInternal)this).State = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerSecurityAlertPolicyState) content.GetValueForProperty("State",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicyInternal)this).State, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerSecurityAlertPolicyState.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicyInternal)this).DisabledAlert = (string[]) content.GetValueForProperty("DisabledAlert",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicyInternal)this).DisabledAlert, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicyInternal)this).EmailAccountAdmin = (bool?) content.GetValueForProperty("EmailAccountAdmin",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicyInternal)this).EmailAccountAdmin, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicyInternal)this).EmailAddress = (string[]) content.GetValueForProperty("EmailAddress",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicyInternal)this).EmailAddress, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicyInternal)this).RetentionDay = (int?) content.GetValueForProperty("RetentionDay",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicyInternal)this).RetentionDay, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicyInternal)this).State = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerSecurityAlertPolicyState) content.GetValueForProperty("State",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicyInternal)this).State, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerSecurityAlertPolicyState.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicyInternal)this).StorageAccountAccessKey = (string) content.GetValueForProperty("StorageAccountAccessKey",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicyInternal)this).StorageAccountAccessKey, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicyInternal)this).EmailAccountAdmin = (bool?) content.GetValueForProperty("EmailAccountAdmin",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicyInternal)this).EmailAccountAdmin, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicyInternal)this).StorageEndpoint = (string) content.GetValueForProperty("StorageEndpoint",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicyInternal)this).StorageEndpoint, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicyInternal)this).StorageAccountAccessKey = (string) content.GetValueForProperty("StorageAccountAccessKey",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicyInternal)this).StorageAccountAccessKey, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicyInternal)this).RetentionDay = (int?) content.GetValueForProperty("RetentionDay",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicyInternal)this).RetentionDay, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); AfterDeserializeDictionary(content); } @@ -125,16 +125,16 @@ internal ServerSecurityAlertPolicy(global::System.Management.Automation.PSObject } // actually deserialize ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicyInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISecurityAlertPolicyProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicyInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.SecurityAlertPolicyPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Name, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Type, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicyInternal)this).State = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerSecurityAlertPolicyState) content.GetValueForProperty("State",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicyInternal)this).State, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerSecurityAlertPolicyState.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicyInternal)this).DisabledAlert = (string[]) content.GetValueForProperty("DisabledAlert",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicyInternal)this).DisabledAlert, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicyInternal)this).EmailAccountAdmin = (bool?) content.GetValueForProperty("EmailAccountAdmin",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicyInternal)this).EmailAccountAdmin, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicyInternal)this).EmailAddress = (string[]) content.GetValueForProperty("EmailAddress",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicyInternal)this).EmailAddress, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicyInternal)this).RetentionDay = (int?) content.GetValueForProperty("RetentionDay",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicyInternal)this).RetentionDay, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicyInternal)this).State = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerSecurityAlertPolicyState) content.GetValueForProperty("State",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicyInternal)this).State, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerSecurityAlertPolicyState.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicyInternal)this).StorageAccountAccessKey = (string) content.GetValueForProperty("StorageAccountAccessKey",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicyInternal)this).StorageAccountAccessKey, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicyInternal)this).EmailAccountAdmin = (bool?) content.GetValueForProperty("EmailAccountAdmin",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicyInternal)this).EmailAccountAdmin, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicyInternal)this).StorageEndpoint = (string) content.GetValueForProperty("StorageEndpoint",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicyInternal)this).StorageEndpoint, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicyInternal)this).StorageAccountAccessKey = (string) content.GetValueForProperty("StorageAccountAccessKey",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicyInternal)this).StorageAccountAccessKey, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicyInternal)this).RetentionDay = (int?) content.GetValueForProperty("RetentionDay",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicyInternal)this).RetentionDay, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); AfterDeserializePSObject(content); } diff --git a/src/MariaDb/generated/api/Models/Api20180601Preview/ServerUpdateParameters.PowerShell.cs b/src/MariaDb/generated/api/Models/Api20180601Preview/ServerUpdateParameters.PowerShell.cs index 2b4ff04b48a1..fc84b768f14b 100644 --- a/src/MariaDb/generated/api/Models/Api20180601Preview/ServerUpdateParameters.PowerShell.cs +++ b/src/MariaDb/generated/api/Models/Api20180601Preview/ServerUpdateParameters.PowerShell.cs @@ -96,23 +96,23 @@ internal ServerUpdateParameters(global::System.Collections.IDictionary content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ServerUpdateParametersPropertiesTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).Sku = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISku) content.GetValueForProperty("Sku",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).Sku, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.SkuTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ServerUpdateParametersPropertiesTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ServerUpdateParametersTagsTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).StorageProfile = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IStorageProfile) content.GetValueForProperty("StorageProfile",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).StorageProfile, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.StorageProfileTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).SkuTier = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SkuTier?) content.GetValueForProperty("SkuTier",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).SkuTier, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SkuTier.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).SkuName = (string) content.GetValueForProperty("SkuName",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).SkuName, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).SkuSize = (string) content.GetValueForProperty("SkuSize",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).SkuSize, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).SkuFamily = (string) content.GetValueForProperty("SkuFamily",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).SkuFamily, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).SkuName = (string) content.GetValueForProperty("SkuName",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).SkuName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).StorageProfileStorageAutogrow = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow?) content.GetValueForProperty("StorageProfileStorageAutogrow",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).StorageProfileStorageAutogrow, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).AdministratorLoginPassword = (string) content.GetValueForProperty("AdministratorLoginPassword",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).AdministratorLoginPassword, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).StorageProfile = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IStorageProfile) content.GetValueForProperty("StorageProfile",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).StorageProfile, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.StorageProfileTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).SkuTier = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SkuTier?) content.GetValueForProperty("SkuTier",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).SkuTier, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SkuTier.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).Version = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion?) content.GetValueForProperty("Version",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).Version, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).AdministratorLoginPassword = (string) content.GetValueForProperty("AdministratorLoginPassword",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).AdministratorLoginPassword, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).SkuCapacity = (int?) content.GetValueForProperty("SkuCapacity",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).SkuCapacity, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).SslEnforcement = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum?) content.GetValueForProperty("SslEnforcement",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).SslEnforcement, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).ReplicationRole = (string) content.GetValueForProperty("ReplicationRole",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).ReplicationRole, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).StorageProfileStorageAutogrow = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow?) content.GetValueForProperty("StorageProfileStorageAutogrow",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).StorageProfileStorageAutogrow, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).StorageProfileBackupRetentionDay = (int?) content.GetValueForProperty("StorageProfileBackupRetentionDay",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).StorageProfileBackupRetentionDay, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).StorageProfileStorageMb = (int?) content.GetValueForProperty("StorageProfileStorageMb",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).StorageProfileStorageMb, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).StorageProfileGeoRedundantBackup = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup?) content.GetValueForProperty("StorageProfileGeoRedundantBackup",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).StorageProfileGeoRedundantBackup, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).StorageProfileStorageMb = (int?) content.GetValueForProperty("StorageProfileStorageMb",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).StorageProfileStorageMb, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); AfterDeserializeDictionary(content); } @@ -130,23 +130,23 @@ internal ServerUpdateParameters(global::System.Management.Automation.PSObject co return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ServerUpdateParametersPropertiesTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).Sku = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISku) content.GetValueForProperty("Sku",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).Sku, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.SkuTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ServerUpdateParametersPropertiesTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ServerUpdateParametersTagsTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).StorageProfile = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IStorageProfile) content.GetValueForProperty("StorageProfile",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).StorageProfile, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.StorageProfileTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).SkuTier = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SkuTier?) content.GetValueForProperty("SkuTier",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).SkuTier, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SkuTier.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).SkuName = (string) content.GetValueForProperty("SkuName",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).SkuName, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).SkuSize = (string) content.GetValueForProperty("SkuSize",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).SkuSize, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).SkuFamily = (string) content.GetValueForProperty("SkuFamily",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).SkuFamily, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).SkuName = (string) content.GetValueForProperty("SkuName",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).SkuName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).StorageProfileStorageAutogrow = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow?) content.GetValueForProperty("StorageProfileStorageAutogrow",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).StorageProfileStorageAutogrow, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).AdministratorLoginPassword = (string) content.GetValueForProperty("AdministratorLoginPassword",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).AdministratorLoginPassword, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).StorageProfile = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IStorageProfile) content.GetValueForProperty("StorageProfile",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).StorageProfile, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.StorageProfileTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).SkuTier = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SkuTier?) content.GetValueForProperty("SkuTier",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).SkuTier, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SkuTier.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).Version = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion?) content.GetValueForProperty("Version",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).Version, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).AdministratorLoginPassword = (string) content.GetValueForProperty("AdministratorLoginPassword",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).AdministratorLoginPassword, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).SkuCapacity = (int?) content.GetValueForProperty("SkuCapacity",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).SkuCapacity, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).SslEnforcement = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum?) content.GetValueForProperty("SslEnforcement",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).SslEnforcement, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).ReplicationRole = (string) content.GetValueForProperty("ReplicationRole",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).ReplicationRole, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).StorageProfileStorageAutogrow = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow?) content.GetValueForProperty("StorageProfileStorageAutogrow",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).StorageProfileStorageAutogrow, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).StorageProfileBackupRetentionDay = (int?) content.GetValueForProperty("StorageProfileBackupRetentionDay",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).StorageProfileBackupRetentionDay, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).StorageProfileStorageMb = (int?) content.GetValueForProperty("StorageProfileStorageMb",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).StorageProfileStorageMb, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).StorageProfileGeoRedundantBackup = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup?) content.GetValueForProperty("StorageProfileGeoRedundantBackup",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).StorageProfileGeoRedundantBackup, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).StorageProfileStorageMb = (int?) content.GetValueForProperty("StorageProfileStorageMb",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersInternal)this).StorageProfileStorageMb, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); AfterDeserializePSObject(content); } diff --git a/src/MariaDb/generated/api/Models/Api20180601Preview/ServerUpdateParameters.json.cs b/src/MariaDb/generated/api/Models/Api20180601Preview/ServerUpdateParameters.json.cs index 264635f44624..d1a56d97eac7 100644 --- a/src/MariaDb/generated/api/Models/Api20180601Preview/ServerUpdateParameters.json.cs +++ b/src/MariaDb/generated/api/Models/Api20180601Preview/ServerUpdateParameters.json.cs @@ -70,8 +70,8 @@ internal ServerUpdateParameters(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runti { return; } - {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ServerUpdateParametersProperties.FromJson(__jsonProperties) : Property;} {_sku = If( json?.PropertyT("sku"), out var __jsonSku) ? Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.Sku.FromJson(__jsonSku) : Sku;} + {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ServerUpdateParametersProperties.FromJson(__jsonProperties) : Property;} {_tag = If( json?.PropertyT("tags"), out var __jsonTags) ? Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ServerUpdateParametersTags.FromJson(__jsonTags) : Tag;} AfterFromJson(json); } @@ -95,8 +95,8 @@ public Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode ToJson(M { return container; } - AddIf( null != this._property ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) this._property.ToJson(null,serializationMode) : null, "properties" ,container.Add ); AddIf( null != this._sku ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) this._sku.ToJson(null,serializationMode) : null, "sku" ,container.Add ); + AddIf( null != this._property ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) this._property.ToJson(null,serializationMode) : null, "properties" ,container.Add ); AddIf( null != this._tag ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) this._tag.ToJson(null,serializationMode) : null, "tags" ,container.Add ); AfterToJson(ref container); return container; diff --git a/src/MariaDb/generated/api/Models/Api20180601Preview/ServerUpdateParametersProperties.PowerShell.cs b/src/MariaDb/generated/api/Models/Api20180601Preview/ServerUpdateParametersProperties.PowerShell.cs index f6d354347a2c..0fe1c7340016 100644 --- a/src/MariaDb/generated/api/Models/Api20180601Preview/ServerUpdateParametersProperties.PowerShell.cs +++ b/src/MariaDb/generated/api/Models/Api20180601Preview/ServerUpdateParametersProperties.PowerShell.cs @@ -98,9 +98,9 @@ internal ServerUpdateParametersProperties(global::System.Collections.IDictionary // actually deserialize ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersPropertiesInternal)this).StorageProfile = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IStorageProfile) content.GetValueForProperty("StorageProfile",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersPropertiesInternal)this).StorageProfile, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.StorageProfileTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersPropertiesInternal)this).AdministratorLoginPassword = (string) content.GetValueForProperty("AdministratorLoginPassword",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersPropertiesInternal)this).AdministratorLoginPassword, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersPropertiesInternal)this).ReplicationRole = (string) content.GetValueForProperty("ReplicationRole",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersPropertiesInternal)this).ReplicationRole, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersPropertiesInternal)this).SslEnforcement = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum?) content.GetValueForProperty("SslEnforcement",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersPropertiesInternal)this).SslEnforcement, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersPropertiesInternal)this).Version = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion?) content.GetValueForProperty("Version",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersPropertiesInternal)this).Version, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersPropertiesInternal)this).SslEnforcement = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum?) content.GetValueForProperty("SslEnforcement",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersPropertiesInternal)this).SslEnforcement, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersPropertiesInternal)this).ReplicationRole = (string) content.GetValueForProperty("ReplicationRole",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersPropertiesInternal)this).ReplicationRole, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersPropertiesInternal)this).StorageProfileStorageAutogrow = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow?) content.GetValueForProperty("StorageProfileStorageAutogrow",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersPropertiesInternal)this).StorageProfileStorageAutogrow, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersPropertiesInternal)this).StorageProfileBackupRetentionDay = (int?) content.GetValueForProperty("StorageProfileBackupRetentionDay",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersPropertiesInternal)this).StorageProfileBackupRetentionDay, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersPropertiesInternal)this).StorageProfileGeoRedundantBackup = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup?) content.GetValueForProperty("StorageProfileGeoRedundantBackup",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersPropertiesInternal)this).StorageProfileGeoRedundantBackup, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup.CreateFrom); @@ -124,9 +124,9 @@ internal ServerUpdateParametersProperties(global::System.Management.Automation.P // actually deserialize ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersPropertiesInternal)this).StorageProfile = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IStorageProfile) content.GetValueForProperty("StorageProfile",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersPropertiesInternal)this).StorageProfile, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.StorageProfileTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersPropertiesInternal)this).AdministratorLoginPassword = (string) content.GetValueForProperty("AdministratorLoginPassword",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersPropertiesInternal)this).AdministratorLoginPassword, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersPropertiesInternal)this).ReplicationRole = (string) content.GetValueForProperty("ReplicationRole",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersPropertiesInternal)this).ReplicationRole, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersPropertiesInternal)this).SslEnforcement = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum?) content.GetValueForProperty("SslEnforcement",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersPropertiesInternal)this).SslEnforcement, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersPropertiesInternal)this).Version = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion?) content.GetValueForProperty("Version",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersPropertiesInternal)this).Version, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersPropertiesInternal)this).SslEnforcement = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum?) content.GetValueForProperty("SslEnforcement",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersPropertiesInternal)this).SslEnforcement, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersPropertiesInternal)this).ReplicationRole = (string) content.GetValueForProperty("ReplicationRole",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersPropertiesInternal)this).ReplicationRole, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersPropertiesInternal)this).StorageProfileStorageAutogrow = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow?) content.GetValueForProperty("StorageProfileStorageAutogrow",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersPropertiesInternal)this).StorageProfileStorageAutogrow, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersPropertiesInternal)this).StorageProfileBackupRetentionDay = (int?) content.GetValueForProperty("StorageProfileBackupRetentionDay",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersPropertiesInternal)this).StorageProfileBackupRetentionDay, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersPropertiesInternal)this).StorageProfileGeoRedundantBackup = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup?) content.GetValueForProperty("StorageProfileGeoRedundantBackup",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersPropertiesInternal)this).StorageProfileGeoRedundantBackup, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup.CreateFrom); diff --git a/src/MariaDb/generated/api/Models/Api20180601Preview/ServerUpdateParametersProperties.json.cs b/src/MariaDb/generated/api/Models/Api20180601Preview/ServerUpdateParametersProperties.json.cs index c3db229dca6b..6762a30c41e6 100644 --- a/src/MariaDb/generated/api/Models/Api20180601Preview/ServerUpdateParametersProperties.json.cs +++ b/src/MariaDb/generated/api/Models/Api20180601Preview/ServerUpdateParametersProperties.json.cs @@ -72,9 +72,9 @@ internal ServerUpdateParametersProperties(Microsoft.Azure.PowerShell.Cmdlets.Mar } {_storageProfile = If( json?.PropertyT("storageProfile"), out var __jsonStorageProfile) ? Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.StorageProfile.FromJson(__jsonStorageProfile) : StorageProfile;} {_administratorLoginPassword = If( json?.PropertyT("administratorLoginPassword"), out var __jsonAdministratorLoginPassword) ? (string)__jsonAdministratorLoginPassword : (string)AdministratorLoginPassword;} - {_replicationRole = If( json?.PropertyT("replicationRole"), out var __jsonReplicationRole) ? (string)__jsonReplicationRole : (string)ReplicationRole;} - {_sslEnforcement = If( json?.PropertyT("sslEnforcement"), out var __jsonSslEnforcement) ? (string)__jsonSslEnforcement : (string)SslEnforcement;} {_version = If( json?.PropertyT("version"), out var __jsonVersion) ? (string)__jsonVersion : (string)Version;} + {_sslEnforcement = If( json?.PropertyT("sslEnforcement"), out var __jsonSslEnforcement) ? (string)__jsonSslEnforcement : (string)SslEnforcement;} + {_replicationRole = If( json?.PropertyT("replicationRole"), out var __jsonReplicationRole) ? (string)__jsonReplicationRole : (string)ReplicationRole;} AfterFromJson(json); } @@ -99,9 +99,9 @@ public Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode ToJson(M } AddIf( null != this._storageProfile ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) this._storageProfile.ToJson(null,serializationMode) : null, "storageProfile" ,container.Add ); AddIf( null != (((object)this._administratorLoginPassword)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._administratorLoginPassword.ToString()) : null, "administratorLoginPassword" ,container.Add ); - AddIf( null != (((object)this._replicationRole)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._replicationRole.ToString()) : null, "replicationRole" ,container.Add ); - AddIf( null != (((object)this._sslEnforcement)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._sslEnforcement.ToString()) : null, "sslEnforcement" ,container.Add ); AddIf( null != (((object)this._version)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._version.ToString()) : null, "version" ,container.Add ); + AddIf( null != (((object)this._sslEnforcement)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._sslEnforcement.ToString()) : null, "sslEnforcement" ,container.Add ); + AddIf( null != (((object)this._replicationRole)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._replicationRole.ToString()) : null, "replicationRole" ,container.Add ); AfterToJson(ref container); return container; } diff --git a/src/MariaDb/generated/api/Models/Api20180601Preview/Sku.PowerShell.cs b/src/MariaDb/generated/api/Models/Api20180601Preview/Sku.PowerShell.cs index b0b6fcc5f7fd..8eba02792bdb 100644 --- a/src/MariaDb/generated/api/Models/Api20180601Preview/Sku.PowerShell.cs +++ b/src/MariaDb/generated/api/Models/Api20180601Preview/Sku.PowerShell.cs @@ -95,10 +95,10 @@ internal Sku(global::System.Collections.IDictionary content) } // actually deserialize ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISkuInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISkuInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISkuInternal)this).Tier = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SkuTier?) content.GetValueForProperty("Tier",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISkuInternal)this).Tier, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SkuTier.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISkuInternal)this).Capacity = (int?) content.GetValueForProperty("Capacity",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISkuInternal)this).Capacity, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISkuInternal)this).Family = (string) content.GetValueForProperty("Family",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISkuInternal)this).Family, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISkuInternal)this).Size = (string) content.GetValueForProperty("Size",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISkuInternal)this).Size, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISkuInternal)this).Tier = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SkuTier?) content.GetValueForProperty("Tier",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISkuInternal)this).Tier, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SkuTier.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISkuInternal)this).Family = (string) content.GetValueForProperty("Family",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISkuInternal)this).Family, global::System.Convert.ToString); AfterDeserializeDictionary(content); } @@ -117,10 +117,10 @@ internal Sku(global::System.Management.Automation.PSObject content) } // actually deserialize ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISkuInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISkuInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISkuInternal)this).Tier = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SkuTier?) content.GetValueForProperty("Tier",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISkuInternal)this).Tier, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SkuTier.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISkuInternal)this).Capacity = (int?) content.GetValueForProperty("Capacity",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISkuInternal)this).Capacity, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISkuInternal)this).Family = (string) content.GetValueForProperty("Family",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISkuInternal)this).Family, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISkuInternal)this).Size = (string) content.GetValueForProperty("Size",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISkuInternal)this).Size, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISkuInternal)this).Tier = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SkuTier?) content.GetValueForProperty("Tier",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISkuInternal)this).Tier, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SkuTier.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISkuInternal)this).Family = (string) content.GetValueForProperty("Family",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ISkuInternal)this).Family, global::System.Convert.ToString); AfterDeserializePSObject(content); } diff --git a/src/MariaDb/generated/api/Models/Api20180601Preview/Sku.json.cs b/src/MariaDb/generated/api/Models/Api20180601Preview/Sku.json.cs index dd5fcff90bf3..0a60416157a2 100644 --- a/src/MariaDb/generated/api/Models/Api20180601Preview/Sku.json.cs +++ b/src/MariaDb/generated/api/Models/Api20180601Preview/Sku.json.cs @@ -71,10 +71,10 @@ internal Sku(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonObject return; } {_name = If( json?.PropertyT("name"), out var __jsonName) ? (string)__jsonName : (string)Name;} + {_tier = If( json?.PropertyT("tier"), out var __jsonTier) ? (string)__jsonTier : (string)Tier;} {_capacity = If( json?.PropertyT("capacity"), out var __jsonCapacity) ? (int?)__jsonCapacity : Capacity;} - {_family = If( json?.PropertyT("family"), out var __jsonFamily) ? (string)__jsonFamily : (string)Family;} {_size = If( json?.PropertyT("size"), out var __jsonSize) ? (string)__jsonSize : (string)Size;} - {_tier = If( json?.PropertyT("tier"), out var __jsonTier) ? (string)__jsonTier : (string)Tier;} + {_family = If( json?.PropertyT("family"), out var __jsonFamily) ? (string)__jsonFamily : (string)Family;} AfterFromJson(json); } @@ -98,10 +98,10 @@ public Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode ToJson(M return container; } AddIf( null != (((object)this._name)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._name.ToString()) : null, "name" ,container.Add ); + AddIf( null != (((object)this._tier)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._tier.ToString()) : null, "tier" ,container.Add ); AddIf( null != this._capacity ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode)new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNumber((int)this._capacity) : null, "capacity" ,container.Add ); - AddIf( null != (((object)this._family)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._family.ToString()) : null, "family" ,container.Add ); AddIf( null != (((object)this._size)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._size.ToString()) : null, "size" ,container.Add ); - AddIf( null != (((object)this._tier)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._tier.ToString()) : null, "tier" ,container.Add ); + AddIf( null != (((object)this._family)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._family.ToString()) : null, "family" ,container.Add ); AfterToJson(ref container); return container; } diff --git a/src/MariaDb/generated/api/Models/Api20180601Preview/StorageProfile.PowerShell.cs b/src/MariaDb/generated/api/Models/Api20180601Preview/StorageProfile.PowerShell.cs index 2234c8c3e113..b95e57b46a3c 100644 --- a/src/MariaDb/generated/api/Models/Api20180601Preview/StorageProfile.PowerShell.cs +++ b/src/MariaDb/generated/api/Models/Api20180601Preview/StorageProfile.PowerShell.cs @@ -96,8 +96,8 @@ internal StorageProfile(global::System.Collections.IDictionary content) // actually deserialize ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IStorageProfileInternal)this).BackupRetentionDay = (int?) content.GetValueForProperty("BackupRetentionDay",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IStorageProfileInternal)this).BackupRetentionDay, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IStorageProfileInternal)this).GeoRedundantBackup = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup?) content.GetValueForProperty("GeoRedundantBackup",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IStorageProfileInternal)this).GeoRedundantBackup, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IStorageProfileInternal)this).StorageAutogrow = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow?) content.GetValueForProperty("StorageAutogrow",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IStorageProfileInternal)this).StorageAutogrow, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IStorageProfileInternal)this).StorageMb = (int?) content.GetValueForProperty("StorageMb",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IStorageProfileInternal)this).StorageMb, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IStorageProfileInternal)this).StorageAutogrow = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow?) content.GetValueForProperty("StorageAutogrow",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IStorageProfileInternal)this).StorageAutogrow, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow.CreateFrom); AfterDeserializeDictionary(content); } @@ -117,8 +117,8 @@ internal StorageProfile(global::System.Management.Automation.PSObject content) // actually deserialize ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IStorageProfileInternal)this).BackupRetentionDay = (int?) content.GetValueForProperty("BackupRetentionDay",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IStorageProfileInternal)this).BackupRetentionDay, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IStorageProfileInternal)this).GeoRedundantBackup = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup?) content.GetValueForProperty("GeoRedundantBackup",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IStorageProfileInternal)this).GeoRedundantBackup, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IStorageProfileInternal)this).StorageAutogrow = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow?) content.GetValueForProperty("StorageAutogrow",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IStorageProfileInternal)this).StorageAutogrow, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IStorageProfileInternal)this).StorageMb = (int?) content.GetValueForProperty("StorageMb",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IStorageProfileInternal)this).StorageMb, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IStorageProfileInternal)this).StorageAutogrow = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow?) content.GetValueForProperty("StorageAutogrow",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IStorageProfileInternal)this).StorageAutogrow, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow.CreateFrom); AfterDeserializePSObject(content); } diff --git a/src/MariaDb/generated/api/Models/Api20180601Preview/StorageProfile.json.cs b/src/MariaDb/generated/api/Models/Api20180601Preview/StorageProfile.json.cs index dc02b7997772..2c071e417ef6 100644 --- a/src/MariaDb/generated/api/Models/Api20180601Preview/StorageProfile.json.cs +++ b/src/MariaDb/generated/api/Models/Api20180601Preview/StorageProfile.json.cs @@ -72,8 +72,8 @@ internal StorageProfile(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json. } {_backupRetentionDay = If( json?.PropertyT("backupRetentionDays"), out var __jsonBackupRetentionDays) ? (int?)__jsonBackupRetentionDays : BackupRetentionDay;} {_geoRedundantBackup = If( json?.PropertyT("geoRedundantBackup"), out var __jsonGeoRedundantBackup) ? (string)__jsonGeoRedundantBackup : (string)GeoRedundantBackup;} - {_storageAutogrow = If( json?.PropertyT("storageAutogrow"), out var __jsonStorageAutogrow) ? (string)__jsonStorageAutogrow : (string)StorageAutogrow;} {_storageMb = If( json?.PropertyT("storageMB"), out var __jsonStorageMb) ? (int?)__jsonStorageMb : StorageMb;} + {_storageAutogrow = If( json?.PropertyT("storageAutogrow"), out var __jsonStorageAutogrow) ? (string)__jsonStorageAutogrow : (string)StorageAutogrow;} AfterFromJson(json); } @@ -98,8 +98,8 @@ public Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode ToJson(M } AddIf( null != this._backupRetentionDay ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode)new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNumber((int)this._backupRetentionDay) : null, "backupRetentionDays" ,container.Add ); AddIf( null != (((object)this._geoRedundantBackup)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._geoRedundantBackup.ToString()) : null, "geoRedundantBackup" ,container.Add ); - AddIf( null != (((object)this._storageAutogrow)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._storageAutogrow.ToString()) : null, "storageAutogrow" ,container.Add ); AddIf( null != this._storageMb ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode)new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNumber((int)this._storageMb) : null, "storageMB" ,container.Add ); + AddIf( null != (((object)this._storageAutogrow)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._storageAutogrow.ToString()) : null, "storageAutogrow" ,container.Add ); AfterToJson(ref container); return container; } diff --git a/src/MariaDb/generated/api/Models/Api20180601Preview/TrackedResource.PowerShell.cs b/src/MariaDb/generated/api/Models/Api20180601Preview/TrackedResource.PowerShell.cs index 0bea6eaea7e7..fe641c78d29e 100644 --- a/src/MariaDb/generated/api/Models/Api20180601Preview/TrackedResource.PowerShell.cs +++ b/src/MariaDb/generated/api/Models/Api20180601Preview/TrackedResource.PowerShell.cs @@ -101,9 +101,9 @@ internal TrackedResource(global::System.Collections.IDictionary content) // actually deserialize ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ITrackedResourceInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ITrackedResourceInternal)this).Location, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ITrackedResourceInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ITrackedResourceTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ITrackedResourceInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.TrackedResourceTagsTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Name, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Type, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id, global::System.Convert.ToString); AfterDeserializeDictionary(content); } @@ -123,9 +123,9 @@ internal TrackedResource(global::System.Management.Automation.PSObject content) // actually deserialize ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ITrackedResourceInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ITrackedResourceInternal)this).Location, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ITrackedResourceInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ITrackedResourceTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ITrackedResourceInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.TrackedResourceTagsTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Name, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Type, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id, global::System.Convert.ToString); AfterDeserializePSObject(content); } } diff --git a/src/MariaDb/generated/api/Models/Api20180601Preview/VirtualNetworkRule.PowerShell.cs b/src/MariaDb/generated/api/Models/Api20180601Preview/VirtualNetworkRule.PowerShell.cs index 026596748a31..fd7b07f46b17 100644 --- a/src/MariaDb/generated/api/Models/Api20180601Preview/VirtualNetworkRule.PowerShell.cs +++ b/src/MariaDb/generated/api/Models/Api20180601Preview/VirtualNetworkRule.PowerShell.cs @@ -100,12 +100,12 @@ internal VirtualNetworkRule(global::System.Collections.IDictionary content) } // actually deserialize ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRuleInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRuleProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRuleInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.VirtualNetworkRulePropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Name, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Type, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRuleInternal)this).VirtualNetworkSubnetId = (string) content.GetValueForProperty("VirtualNetworkSubnetId",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRuleInternal)this).VirtualNetworkSubnetId, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRuleInternal)this).IgnoreMissingVnetServiceEndpoint = (bool?) content.GetValueForProperty("IgnoreMissingVnetServiceEndpoint",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRuleInternal)this).IgnoreMissingVnetServiceEndpoint, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRuleInternal)this).State = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.VirtualNetworkRuleState?) content.GetValueForProperty("State",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRuleInternal)this).State, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.VirtualNetworkRuleState.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRuleInternal)this).VirtualNetworkSubnetId = (string) content.GetValueForProperty("VirtualNetworkSubnetId",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRuleInternal)this).VirtualNetworkSubnetId, global::System.Convert.ToString); AfterDeserializeDictionary(content); } @@ -124,12 +124,12 @@ internal VirtualNetworkRule(global::System.Management.Automation.PSObject conten } // actually deserialize ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRuleInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRuleProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRuleInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.VirtualNetworkRulePropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Name, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Type, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IProxyResourceInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRuleInternal)this).VirtualNetworkSubnetId = (string) content.GetValueForProperty("VirtualNetworkSubnetId",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRuleInternal)this).VirtualNetworkSubnetId, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRuleInternal)this).IgnoreMissingVnetServiceEndpoint = (bool?) content.GetValueForProperty("IgnoreMissingVnetServiceEndpoint",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRuleInternal)this).IgnoreMissingVnetServiceEndpoint, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRuleInternal)this).State = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.VirtualNetworkRuleState?) content.GetValueForProperty("State",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRuleInternal)this).State, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.VirtualNetworkRuleState.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRuleInternal)this).VirtualNetworkSubnetId = (string) content.GetValueForProperty("VirtualNetworkSubnetId",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRuleInternal)this).VirtualNetworkSubnetId, global::System.Convert.ToString); AfterDeserializePSObject(content); } } diff --git a/src/MariaDb/generated/api/Models/Api20180601Preview/VirtualNetworkRuleListResult.PowerShell.cs b/src/MariaDb/generated/api/Models/Api20180601Preview/VirtualNetworkRuleListResult.PowerShell.cs index bb865f34fd15..3c41a938b493 100644 --- a/src/MariaDb/generated/api/Models/Api20180601Preview/VirtualNetworkRuleListResult.PowerShell.cs +++ b/src/MariaDb/generated/api/Models/Api20180601Preview/VirtualNetworkRuleListResult.PowerShell.cs @@ -101,8 +101,8 @@ internal VirtualNetworkRuleListResult(global::System.Collections.IDictionary con return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRuleListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRuleListResultInternal)this).NextLink, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRuleListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRule[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRuleListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.VirtualNetworkRuleTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRuleListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRuleListResultInternal)this).NextLink, global::System.Convert.ToString); AfterDeserializeDictionary(content); } @@ -120,8 +120,8 @@ internal VirtualNetworkRuleListResult(global::System.Management.Automation.PSObj return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRuleListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRuleListResultInternal)this).NextLink, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRuleListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRule[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRuleListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.VirtualNetworkRuleTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRuleListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRuleListResultInternal)this).NextLink, global::System.Convert.ToString); AfterDeserializePSObject(content); } } diff --git a/src/MariaDb/generated/api/Models/Api20180601Preview/VirtualNetworkRuleListResult.json.cs b/src/MariaDb/generated/api/Models/Api20180601Preview/VirtualNetworkRuleListResult.json.cs index 5aa2e8d19328..fff39c34c49f 100644 --- a/src/MariaDb/generated/api/Models/Api20180601Preview/VirtualNetworkRuleListResult.json.cs +++ b/src/MariaDb/generated/api/Models/Api20180601Preview/VirtualNetworkRuleListResult.json.cs @@ -78,10 +78,6 @@ public Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode ToJson(M return container; } if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SerializationMode.IncludeReadOnly)) - { - AddIf( null != (((object)this._nextLink)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._nextLink.ToString()) : null, "nextLink" ,container.Add ); - } - if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SerializationMode.IncludeReadOnly)) { if (null != this._value) { @@ -93,6 +89,10 @@ public Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode ToJson(M container.Add("value",__w); } } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._nextLink)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._nextLink.ToString()) : null, "nextLink" ,container.Add ); + } AfterToJson(ref container); return container; } @@ -109,8 +109,8 @@ internal VirtualNetworkRuleListResult(Microsoft.Azure.PowerShell.Cmdlets.MariaDb { return; } - {_nextLink = If( json?.PropertyT("nextLink"), out var __jsonNextLink) ? (string)__jsonNextLink : (string)NextLink;} {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRule) (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.VirtualNetworkRule.FromJson(__u) )) ))() : null : Value;} + {_nextLink = If( json?.PropertyT("nextLink"), out var __jsonNextLink) ? (string)__jsonNextLink : (string)NextLink;} AfterFromJson(json); } } diff --git a/src/MariaDb/generated/api/Models/Api20180601Preview/VirtualNetworkRuleProperties.PowerShell.cs b/src/MariaDb/generated/api/Models/Api20180601Preview/VirtualNetworkRuleProperties.PowerShell.cs index b94c85ebcecb..2530e88c259b 100644 --- a/src/MariaDb/generated/api/Models/Api20180601Preview/VirtualNetworkRuleProperties.PowerShell.cs +++ b/src/MariaDb/generated/api/Models/Api20180601Preview/VirtualNetworkRuleProperties.PowerShell.cs @@ -101,9 +101,9 @@ internal VirtualNetworkRuleProperties(global::System.Collections.IDictionary con return; } // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRulePropertiesInternal)this).VirtualNetworkSubnetId = (string) content.GetValueForProperty("VirtualNetworkSubnetId",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRulePropertiesInternal)this).VirtualNetworkSubnetId, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRulePropertiesInternal)this).IgnoreMissingVnetServiceEndpoint = (bool?) content.GetValueForProperty("IgnoreMissingVnetServiceEndpoint",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRulePropertiesInternal)this).IgnoreMissingVnetServiceEndpoint, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRulePropertiesInternal)this).State = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.VirtualNetworkRuleState?) content.GetValueForProperty("State",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRulePropertiesInternal)this).State, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.VirtualNetworkRuleState.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRulePropertiesInternal)this).VirtualNetworkSubnetId = (string) content.GetValueForProperty("VirtualNetworkSubnetId",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRulePropertiesInternal)this).VirtualNetworkSubnetId, global::System.Convert.ToString); AfterDeserializeDictionary(content); } @@ -121,9 +121,9 @@ internal VirtualNetworkRuleProperties(global::System.Management.Automation.PSObj return; } // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRulePropertiesInternal)this).VirtualNetworkSubnetId = (string) content.GetValueForProperty("VirtualNetworkSubnetId",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRulePropertiesInternal)this).VirtualNetworkSubnetId, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRulePropertiesInternal)this).IgnoreMissingVnetServiceEndpoint = (bool?) content.GetValueForProperty("IgnoreMissingVnetServiceEndpoint",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRulePropertiesInternal)this).IgnoreMissingVnetServiceEndpoint, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRulePropertiesInternal)this).State = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.VirtualNetworkRuleState?) content.GetValueForProperty("State",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRulePropertiesInternal)this).State, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.VirtualNetworkRuleState.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRulePropertiesInternal)this).VirtualNetworkSubnetId = (string) content.GetValueForProperty("VirtualNetworkSubnetId",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRulePropertiesInternal)this).VirtualNetworkSubnetId, global::System.Convert.ToString); AfterDeserializePSObject(content); } } diff --git a/src/MariaDb/generated/api/Models/Api20180601Preview/VirtualNetworkRuleProperties.json.cs b/src/MariaDb/generated/api/Models/Api20180601Preview/VirtualNetworkRuleProperties.json.cs index 9eeed0cc4fa9..f966ae35285f 100644 --- a/src/MariaDb/generated/api/Models/Api20180601Preview/VirtualNetworkRuleProperties.json.cs +++ b/src/MariaDb/generated/api/Models/Api20180601Preview/VirtualNetworkRuleProperties.json.cs @@ -77,12 +77,12 @@ public Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode ToJson(M { return container; } + AddIf( null != (((object)this._virtualNetworkSubnetId)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._virtualNetworkSubnetId.ToString()) : null, "virtualNetworkSubnetId" ,container.Add ); AddIf( null != this._ignoreMissingVnetServiceEndpoint ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode)new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonBoolean((bool)this._ignoreMissingVnetServiceEndpoint) : null, "ignoreMissingVnetServiceEndpoint" ,container.Add ); if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SerializationMode.IncludeReadOnly)) { AddIf( null != (((object)this._state)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._state.ToString()) : null, "state" ,container.Add ); } - AddIf( null != (((object)this._virtualNetworkSubnetId)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._virtualNetworkSubnetId.ToString()) : null, "virtualNetworkSubnetId" ,container.Add ); AfterToJson(ref container); return container; } @@ -99,9 +99,9 @@ internal VirtualNetworkRuleProperties(Microsoft.Azure.PowerShell.Cmdlets.MariaDb { return; } + {_virtualNetworkSubnetId = If( json?.PropertyT("virtualNetworkSubnetId"), out var __jsonVirtualNetworkSubnetId) ? (string)__jsonVirtualNetworkSubnetId : (string)VirtualNetworkSubnetId;} {_ignoreMissingVnetServiceEndpoint = If( json?.PropertyT("ignoreMissingVnetServiceEndpoint"), out var __jsonIgnoreMissingVnetServiceEndpoint) ? (bool?)__jsonIgnoreMissingVnetServiceEndpoint : IgnoreMissingVnetServiceEndpoint;} {_state = If( json?.PropertyT("state"), out var __jsonState) ? (string)__jsonState : (string)State;} - {_virtualNetworkSubnetId = If( json?.PropertyT("virtualNetworkSubnetId"), out var __jsonVirtualNetworkSubnetId) ? (string)__jsonVirtualNetworkSubnetId : (string)VirtualNetworkSubnetId;} AfterFromJson(json); } } diff --git a/src/MariaDb/generated/api/Models/MariaDbIdentity.PowerShell.cs b/src/MariaDb/generated/api/Models/MariaDbIdentity.PowerShell.cs index bc41f8e9cc39..073c0144bbbd 100644 --- a/src/MariaDb/generated/api/Models/MariaDbIdentity.PowerShell.cs +++ b/src/MariaDb/generated/api/Models/MariaDbIdentity.PowerShell.cs @@ -98,16 +98,16 @@ internal MariaDbIdentity(global::System.Collections.IDictionary content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).ConfigurationName = (string) content.GetValueForProperty("ConfigurationName",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).ConfigurationName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).DatabaseName = (string) content.GetValueForProperty("DatabaseName",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).DatabaseName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).FirewallRuleName = (string) content.GetValueForProperty("FirewallRuleName",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).FirewallRuleName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).Id, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).LocationName = (string) content.GetValueForProperty("LocationName",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).LocationName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).SubscriptionId = (string) content.GetValueForProperty("SubscriptionId",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).SubscriptionId, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).ResourceGroupName = (string) content.GetValueForProperty("ResourceGroupName",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).ResourceGroupName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).SecurityAlertPolicyName = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SecurityAlertPolicyName?) content.GetValueForProperty("SecurityAlertPolicyName",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).SecurityAlertPolicyName, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SecurityAlertPolicyName.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).ServerName = (string) content.GetValueForProperty("ServerName",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).ServerName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).SubscriptionId = (string) content.GetValueForProperty("SubscriptionId",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).SubscriptionId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).FirewallRuleName = (string) content.GetValueForProperty("FirewallRuleName",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).FirewallRuleName, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).VirtualNetworkRuleName = (string) content.GetValueForProperty("VirtualNetworkRuleName",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).VirtualNetworkRuleName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).DatabaseName = (string) content.GetValueForProperty("DatabaseName",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).DatabaseName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).ConfigurationName = (string) content.GetValueForProperty("ConfigurationName",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).ConfigurationName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).LocationName = (string) content.GetValueForProperty("LocationName",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).LocationName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).SecurityAlertPolicyName = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SecurityAlertPolicyName?) content.GetValueForProperty("SecurityAlertPolicyName",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).SecurityAlertPolicyName, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SecurityAlertPolicyName.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).Id, global::System.Convert.ToString); AfterDeserializeDictionary(content); } @@ -125,16 +125,16 @@ internal MariaDbIdentity(global::System.Management.Automation.PSObject content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).ConfigurationName = (string) content.GetValueForProperty("ConfigurationName",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).ConfigurationName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).DatabaseName = (string) content.GetValueForProperty("DatabaseName",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).DatabaseName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).FirewallRuleName = (string) content.GetValueForProperty("FirewallRuleName",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).FirewallRuleName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).Id, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).LocationName = (string) content.GetValueForProperty("LocationName",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).LocationName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).SubscriptionId = (string) content.GetValueForProperty("SubscriptionId",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).SubscriptionId, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).ResourceGroupName = (string) content.GetValueForProperty("ResourceGroupName",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).ResourceGroupName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).SecurityAlertPolicyName = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SecurityAlertPolicyName?) content.GetValueForProperty("SecurityAlertPolicyName",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).SecurityAlertPolicyName, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SecurityAlertPolicyName.CreateFrom); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).ServerName = (string) content.GetValueForProperty("ServerName",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).ServerName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).SubscriptionId = (string) content.GetValueForProperty("SubscriptionId",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).SubscriptionId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).FirewallRuleName = (string) content.GetValueForProperty("FirewallRuleName",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).FirewallRuleName, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).VirtualNetworkRuleName = (string) content.GetValueForProperty("VirtualNetworkRuleName",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).VirtualNetworkRuleName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).DatabaseName = (string) content.GetValueForProperty("DatabaseName",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).DatabaseName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).ConfigurationName = (string) content.GetValueForProperty("ConfigurationName",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).ConfigurationName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).LocationName = (string) content.GetValueForProperty("LocationName",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).LocationName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).SecurityAlertPolicyName = (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SecurityAlertPolicyName?) content.GetValueForProperty("SecurityAlertPolicyName",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).SecurityAlertPolicyName, Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SecurityAlertPolicyName.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentityInternal)this).Id, global::System.Convert.ToString); AfterDeserializePSObject(content); } diff --git a/src/MariaDb/generated/api/Models/MariaDbIdentity.json.cs b/src/MariaDb/generated/api/Models/MariaDbIdentity.json.cs index 1b208df73279..488160b9aa77 100644 --- a/src/MariaDb/generated/api/Models/MariaDbIdentity.json.cs +++ b/src/MariaDb/generated/api/Models/MariaDbIdentity.json.cs @@ -74,16 +74,16 @@ internal MariaDbIdentity(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json { return; } - {_configurationName = If( json?.PropertyT("configurationName"), out var __jsonConfigurationName) ? (string)__jsonConfigurationName : (string)ConfigurationName;} - {_databaseName = If( json?.PropertyT("databaseName"), out var __jsonDatabaseName) ? (string)__jsonDatabaseName : (string)DatabaseName;} - {_firewallRuleName = If( json?.PropertyT("firewallRuleName"), out var __jsonFirewallRuleName) ? (string)__jsonFirewallRuleName : (string)FirewallRuleName;} - {_id = If( json?.PropertyT("id"), out var __jsonId) ? (string)__jsonId : (string)Id;} - {_locationName = If( json?.PropertyT("locationName"), out var __jsonLocationName) ? (string)__jsonLocationName : (string)LocationName;} + {_subscriptionId = If( json?.PropertyT("subscriptionId"), out var __jsonSubscriptionId) ? (string)__jsonSubscriptionId : (string)SubscriptionId;} {_resourceGroupName = If( json?.PropertyT("resourceGroupName"), out var __jsonResourceGroupName) ? (string)__jsonResourceGroupName : (string)ResourceGroupName;} - {_securityAlertPolicyName = If( json?.PropertyT("securityAlertPolicyName"), out var __jsonSecurityAlertPolicyName) ? (string)__jsonSecurityAlertPolicyName : (string)SecurityAlertPolicyName;} {_serverName = If( json?.PropertyT("serverName"), out var __jsonServerName) ? (string)__jsonServerName : (string)ServerName;} - {_subscriptionId = If( json?.PropertyT("subscriptionId"), out var __jsonSubscriptionId) ? (string)__jsonSubscriptionId : (string)SubscriptionId;} + {_firewallRuleName = If( json?.PropertyT("firewallRuleName"), out var __jsonFirewallRuleName) ? (string)__jsonFirewallRuleName : (string)FirewallRuleName;} {_virtualNetworkRuleName = If( json?.PropertyT("virtualNetworkRuleName"), out var __jsonVirtualNetworkRuleName) ? (string)__jsonVirtualNetworkRuleName : (string)VirtualNetworkRuleName;} + {_databaseName = If( json?.PropertyT("databaseName"), out var __jsonDatabaseName) ? (string)__jsonDatabaseName : (string)DatabaseName;} + {_configurationName = If( json?.PropertyT("configurationName"), out var __jsonConfigurationName) ? (string)__jsonConfigurationName : (string)ConfigurationName;} + {_locationName = If( json?.PropertyT("locationName"), out var __jsonLocationName) ? (string)__jsonLocationName : (string)LocationName;} + {_securityAlertPolicyName = If( json?.PropertyT("securityAlertPolicyName"), out var __jsonSecurityAlertPolicyName) ? (string)__jsonSecurityAlertPolicyName : (string)SecurityAlertPolicyName;} + {_id = If( json?.PropertyT("id"), out var __jsonId) ? (string)__jsonId : (string)Id;} AfterFromJson(json); } @@ -106,16 +106,16 @@ public Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode ToJson(M { return container; } - AddIf( null != (((object)this._configurationName)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._configurationName.ToString()) : null, "configurationName" ,container.Add ); - AddIf( null != (((object)this._databaseName)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._databaseName.ToString()) : null, "databaseName" ,container.Add ); - AddIf( null != (((object)this._firewallRuleName)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._firewallRuleName.ToString()) : null, "firewallRuleName" ,container.Add ); - AddIf( null != (((object)this._id)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._id.ToString()) : null, "id" ,container.Add ); - AddIf( null != (((object)this._locationName)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._locationName.ToString()) : null, "locationName" ,container.Add ); + AddIf( null != (((object)this._subscriptionId)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._subscriptionId.ToString()) : null, "subscriptionId" ,container.Add ); AddIf( null != (((object)this._resourceGroupName)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._resourceGroupName.ToString()) : null, "resourceGroupName" ,container.Add ); - AddIf( null != (((object)this._securityAlertPolicyName)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._securityAlertPolicyName.ToString()) : null, "securityAlertPolicyName" ,container.Add ); AddIf( null != (((object)this._serverName)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._serverName.ToString()) : null, "serverName" ,container.Add ); - AddIf( null != (((object)this._subscriptionId)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._subscriptionId.ToString()) : null, "subscriptionId" ,container.Add ); + AddIf( null != (((object)this._firewallRuleName)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._firewallRuleName.ToString()) : null, "firewallRuleName" ,container.Add ); AddIf( null != (((object)this._virtualNetworkRuleName)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._virtualNetworkRuleName.ToString()) : null, "virtualNetworkRuleName" ,container.Add ); + AddIf( null != (((object)this._databaseName)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._databaseName.ToString()) : null, "databaseName" ,container.Add ); + AddIf( null != (((object)this._configurationName)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._configurationName.ToString()) : null, "configurationName" ,container.Add ); + AddIf( null != (((object)this._locationName)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._locationName.ToString()) : null, "locationName" ,container.Add ); + AddIf( null != (((object)this._securityAlertPolicyName)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._securityAlertPolicyName.ToString()) : null, "securityAlertPolicyName" ,container.Add ); + AddIf( null != (((object)this._id)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Json.JsonString(this._id.ToString()) : null, "id" ,container.Add ); AfterToJson(ref container); return container; } diff --git a/src/MariaDb/generated/api/Support/CreateMode.Completer.cs b/src/MariaDb/generated/api/Support/CreateMode.Completer.cs index 18711d8663dc..01d25af3dd24 100644 --- a/src/MariaDb/generated/api/Support/CreateMode.Completer.cs +++ b/src/MariaDb/generated/api/Support/CreateMode.Completer.cs @@ -6,7 +6,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support { - /// Argument completer implementation for CreateMode. + /// The mode to create a new server. [System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.CreateModeTypeConverter))] public partial struct CreateMode : System.Management.Automation.IArgumentCompleter diff --git a/src/MariaDb/generated/api/Support/CreateMode.TypeConverter.cs b/src/MariaDb/generated/api/Support/CreateMode.TypeConverter.cs index 95d548ef0178..238b07d84504 100644 --- a/src/MariaDb/generated/api/Support/CreateMode.TypeConverter.cs +++ b/src/MariaDb/generated/api/Support/CreateMode.TypeConverter.cs @@ -6,7 +6,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support { - /// TypeConverter implementation for CreateMode. + /// The mode to create a new server. public partial class CreateModeTypeConverter : global::System.Management.Automation.PSTypeConverter { diff --git a/src/MariaDb/generated/api/Support/CreateMode.cs b/src/MariaDb/generated/api/Support/CreateMode.cs index 0ecebf91b2c7..d2c4cafb5f47 100644 --- a/src/MariaDb/generated/api/Support/CreateMode.cs +++ b/src/MariaDb/generated/api/Support/CreateMode.cs @@ -6,6 +6,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support { + /// The mode to create a new server. public partial struct CreateMode : System.IEquatable { diff --git a/src/MariaDb/generated/api/Support/GeoRedundantBackup.Completer.cs b/src/MariaDb/generated/api/Support/GeoRedundantBackup.Completer.cs index 22dd02af9453..20c10bafdfa6 100644 --- a/src/MariaDb/generated/api/Support/GeoRedundantBackup.Completer.cs +++ b/src/MariaDb/generated/api/Support/GeoRedundantBackup.Completer.cs @@ -6,7 +6,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support { - /// Argument completer implementation for GeoRedundantBackup. + /// Enable Geo-redundant or not for server backup. [System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackupTypeConverter))] public partial struct GeoRedundantBackup : System.Management.Automation.IArgumentCompleter diff --git a/src/MariaDb/generated/api/Support/GeoRedundantBackup.TypeConverter.cs b/src/MariaDb/generated/api/Support/GeoRedundantBackup.TypeConverter.cs index 357e9db2c82a..2b14aad3c3c1 100644 --- a/src/MariaDb/generated/api/Support/GeoRedundantBackup.TypeConverter.cs +++ b/src/MariaDb/generated/api/Support/GeoRedundantBackup.TypeConverter.cs @@ -6,7 +6,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support { - /// TypeConverter implementation for GeoRedundantBackup. + /// Enable Geo-redundant or not for server backup. public partial class GeoRedundantBackupTypeConverter : global::System.Management.Automation.PSTypeConverter { diff --git a/src/MariaDb/generated/api/Support/GeoRedundantBackup.cs b/src/MariaDb/generated/api/Support/GeoRedundantBackup.cs index 2d6fcda673ca..654ad7c6a6e6 100644 --- a/src/MariaDb/generated/api/Support/GeoRedundantBackup.cs +++ b/src/MariaDb/generated/api/Support/GeoRedundantBackup.cs @@ -6,6 +6,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support { + /// Enable Geo-redundant or not for server backup. public partial struct GeoRedundantBackup : System.IEquatable { diff --git a/src/MariaDb/generated/api/Support/IdentityType.Completer.cs b/src/MariaDb/generated/api/Support/IdentityType.Completer.cs index ed4d1f33348f..45f4bb39db2a 100644 --- a/src/MariaDb/generated/api/Support/IdentityType.Completer.cs +++ b/src/MariaDb/generated/api/Support/IdentityType.Completer.cs @@ -6,7 +6,10 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support { - /// Argument completer implementation for IdentityType. + /// + /// The identity type. Set this to 'SystemAssigned' in order to automatically create and assign an Azure Active Directory + /// principal for the resource. + /// [System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.IdentityTypeTypeConverter))] public partial struct IdentityType : System.Management.Automation.IArgumentCompleter diff --git a/src/MariaDb/generated/api/Support/IdentityType.TypeConverter.cs b/src/MariaDb/generated/api/Support/IdentityType.TypeConverter.cs index c09719e662ee..8446c5ec52f9 100644 --- a/src/MariaDb/generated/api/Support/IdentityType.TypeConverter.cs +++ b/src/MariaDb/generated/api/Support/IdentityType.TypeConverter.cs @@ -6,7 +6,10 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support { - /// TypeConverter implementation for IdentityType. + /// + /// The identity type. Set this to 'SystemAssigned' in order to automatically create and assign an Azure Active Directory + /// principal for the resource. + /// public partial class IdentityTypeTypeConverter : global::System.Management.Automation.PSTypeConverter { diff --git a/src/MariaDb/generated/api/Support/IdentityType.cs b/src/MariaDb/generated/api/Support/IdentityType.cs index 489888c58be3..17200b1ef1d9 100644 --- a/src/MariaDb/generated/api/Support/IdentityType.cs +++ b/src/MariaDb/generated/api/Support/IdentityType.cs @@ -6,6 +6,10 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support { + /// + /// The identity type. Set this to 'SystemAssigned' in order to automatically create and assign an Azure Active Directory + /// principal for the resource. + /// public partial struct IdentityType : System.IEquatable { diff --git a/src/MariaDb/generated/api/Support/OperationOrigin.Completer.cs b/src/MariaDb/generated/api/Support/OperationOrigin.Completer.cs index 0376d64e63dd..f0729264a871 100644 --- a/src/MariaDb/generated/api/Support/OperationOrigin.Completer.cs +++ b/src/MariaDb/generated/api/Support/OperationOrigin.Completer.cs @@ -6,7 +6,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support { - /// Argument completer implementation for OperationOrigin. + /// The intended executor of the operation. [System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.OperationOriginTypeConverter))] public partial struct OperationOrigin : System.Management.Automation.IArgumentCompleter diff --git a/src/MariaDb/generated/api/Support/OperationOrigin.TypeConverter.cs b/src/MariaDb/generated/api/Support/OperationOrigin.TypeConverter.cs index 0af112bf00e4..ea88f3f0b2ff 100644 --- a/src/MariaDb/generated/api/Support/OperationOrigin.TypeConverter.cs +++ b/src/MariaDb/generated/api/Support/OperationOrigin.TypeConverter.cs @@ -6,7 +6,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support { - /// TypeConverter implementation for OperationOrigin. + /// The intended executor of the operation. public partial class OperationOriginTypeConverter : global::System.Management.Automation.PSTypeConverter { diff --git a/src/MariaDb/generated/api/Support/OperationOrigin.cs b/src/MariaDb/generated/api/Support/OperationOrigin.cs index 87ff81cb7b9c..7ce6b9e748be 100644 --- a/src/MariaDb/generated/api/Support/OperationOrigin.cs +++ b/src/MariaDb/generated/api/Support/OperationOrigin.cs @@ -6,6 +6,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support { + /// The intended executor of the operation. public partial struct OperationOrigin : System.IEquatable { diff --git a/src/MariaDb/generated/api/Support/ServerSecurityAlertPolicyState.Completer.cs b/src/MariaDb/generated/api/Support/ServerSecurityAlertPolicyState.Completer.cs index 9b66911e36b9..f6215dfae500 100644 --- a/src/MariaDb/generated/api/Support/ServerSecurityAlertPolicyState.Completer.cs +++ b/src/MariaDb/generated/api/Support/ServerSecurityAlertPolicyState.Completer.cs @@ -6,7 +6,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support { - /// Argument completer implementation for ServerSecurityAlertPolicyState. + /// Specifies the state of the policy, whether it is enabled or disabled. [System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerSecurityAlertPolicyStateTypeConverter))] public partial struct ServerSecurityAlertPolicyState : System.Management.Automation.IArgumentCompleter diff --git a/src/MariaDb/generated/api/Support/ServerSecurityAlertPolicyState.TypeConverter.cs b/src/MariaDb/generated/api/Support/ServerSecurityAlertPolicyState.TypeConverter.cs index e7befe181c8c..25f8aafdd084 100644 --- a/src/MariaDb/generated/api/Support/ServerSecurityAlertPolicyState.TypeConverter.cs +++ b/src/MariaDb/generated/api/Support/ServerSecurityAlertPolicyState.TypeConverter.cs @@ -6,7 +6,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support { - /// TypeConverter implementation for ServerSecurityAlertPolicyState. + /// Specifies the state of the policy, whether it is enabled or disabled. public partial class ServerSecurityAlertPolicyStateTypeConverter : global::System.Management.Automation.PSTypeConverter { diff --git a/src/MariaDb/generated/api/Support/ServerSecurityAlertPolicyState.cs b/src/MariaDb/generated/api/Support/ServerSecurityAlertPolicyState.cs index b60e933042bc..485d78b176c8 100644 --- a/src/MariaDb/generated/api/Support/ServerSecurityAlertPolicyState.cs +++ b/src/MariaDb/generated/api/Support/ServerSecurityAlertPolicyState.cs @@ -6,6 +6,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support { + /// Specifies the state of the policy, whether it is enabled or disabled. public partial struct ServerSecurityAlertPolicyState : System.IEquatable { diff --git a/src/MariaDb/generated/api/Support/ServerState.Completer.cs b/src/MariaDb/generated/api/Support/ServerState.Completer.cs index 5d199014e1e4..d729a7169174 100644 --- a/src/MariaDb/generated/api/Support/ServerState.Completer.cs +++ b/src/MariaDb/generated/api/Support/ServerState.Completer.cs @@ -6,7 +6,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support { - /// Argument completer implementation for ServerState. + /// A state of a server that is visible to user. [System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerStateTypeConverter))] public partial struct ServerState : System.Management.Automation.IArgumentCompleter diff --git a/src/MariaDb/generated/api/Support/ServerState.TypeConverter.cs b/src/MariaDb/generated/api/Support/ServerState.TypeConverter.cs index 1a6a04566c85..3179c5b0b84d 100644 --- a/src/MariaDb/generated/api/Support/ServerState.TypeConverter.cs +++ b/src/MariaDb/generated/api/Support/ServerState.TypeConverter.cs @@ -6,7 +6,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support { - /// TypeConverter implementation for ServerState. + /// A state of a server that is visible to user. public partial class ServerStateTypeConverter : global::System.Management.Automation.PSTypeConverter { diff --git a/src/MariaDb/generated/api/Support/ServerState.cs b/src/MariaDb/generated/api/Support/ServerState.cs index 1dbed77d50a8..7a2e9183a18c 100644 --- a/src/MariaDb/generated/api/Support/ServerState.cs +++ b/src/MariaDb/generated/api/Support/ServerState.cs @@ -6,6 +6,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support { + /// A state of a server that is visible to user. public partial struct ServerState : System.IEquatable { diff --git a/src/MariaDb/generated/api/Support/ServerVersion.Completer.cs b/src/MariaDb/generated/api/Support/ServerVersion.Completer.cs index 710074906fb4..7d9805a4f69b 100644 --- a/src/MariaDb/generated/api/Support/ServerVersion.Completer.cs +++ b/src/MariaDb/generated/api/Support/ServerVersion.Completer.cs @@ -6,7 +6,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support { - /// Argument completer implementation for ServerVersion. + /// The version of a server. [System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersionTypeConverter))] public partial struct ServerVersion : System.Management.Automation.IArgumentCompleter diff --git a/src/MariaDb/generated/api/Support/ServerVersion.TypeConverter.cs b/src/MariaDb/generated/api/Support/ServerVersion.TypeConverter.cs index 6b20f464097d..6b656718aa28 100644 --- a/src/MariaDb/generated/api/Support/ServerVersion.TypeConverter.cs +++ b/src/MariaDb/generated/api/Support/ServerVersion.TypeConverter.cs @@ -6,7 +6,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support { - /// TypeConverter implementation for ServerVersion. + /// The version of a server. public partial class ServerVersionTypeConverter : global::System.Management.Automation.PSTypeConverter { diff --git a/src/MariaDb/generated/api/Support/ServerVersion.cs b/src/MariaDb/generated/api/Support/ServerVersion.cs index 691314a70de1..d546432b0c98 100644 --- a/src/MariaDb/generated/api/Support/ServerVersion.cs +++ b/src/MariaDb/generated/api/Support/ServerVersion.cs @@ -6,6 +6,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support { + /// The version of a server. public partial struct ServerVersion : System.IEquatable { diff --git a/src/MariaDb/generated/api/Support/SkuTier.Completer.cs b/src/MariaDb/generated/api/Support/SkuTier.Completer.cs index afac93b3e866..813dd3b64232 100644 --- a/src/MariaDb/generated/api/Support/SkuTier.Completer.cs +++ b/src/MariaDb/generated/api/Support/SkuTier.Completer.cs @@ -6,7 +6,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support { - /// Argument completer implementation for SkuTier. + /// The tier of the particular SKU, e.g. Basic. [System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SkuTierTypeConverter))] public partial struct SkuTier : System.Management.Automation.IArgumentCompleter diff --git a/src/MariaDb/generated/api/Support/SkuTier.TypeConverter.cs b/src/MariaDb/generated/api/Support/SkuTier.TypeConverter.cs index 8ef94499a8f0..ac6041a41537 100644 --- a/src/MariaDb/generated/api/Support/SkuTier.TypeConverter.cs +++ b/src/MariaDb/generated/api/Support/SkuTier.TypeConverter.cs @@ -6,7 +6,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support { - /// TypeConverter implementation for SkuTier. + /// The tier of the particular SKU, e.g. Basic. public partial class SkuTierTypeConverter : global::System.Management.Automation.PSTypeConverter { diff --git a/src/MariaDb/generated/api/Support/SkuTier.cs b/src/MariaDb/generated/api/Support/SkuTier.cs index 7346d46103bb..56d22b59508a 100644 --- a/src/MariaDb/generated/api/Support/SkuTier.cs +++ b/src/MariaDb/generated/api/Support/SkuTier.cs @@ -6,6 +6,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support { + /// The tier of the particular SKU, e.g. Basic. public partial struct SkuTier : System.IEquatable { diff --git a/src/MariaDb/generated/api/Support/SslEnforcementEnum.Completer.cs b/src/MariaDb/generated/api/Support/SslEnforcementEnum.Completer.cs index 3720ea7cd9b1..64046a1215fc 100644 --- a/src/MariaDb/generated/api/Support/SslEnforcementEnum.Completer.cs +++ b/src/MariaDb/generated/api/Support/SslEnforcementEnum.Completer.cs @@ -6,7 +6,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support { - /// Argument completer implementation for SslEnforcementEnum. + /// Enable ssl enforcement or not when connect to server. [System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnumTypeConverter))] public partial struct SslEnforcementEnum : System.Management.Automation.IArgumentCompleter diff --git a/src/MariaDb/generated/api/Support/SslEnforcementEnum.TypeConverter.cs b/src/MariaDb/generated/api/Support/SslEnforcementEnum.TypeConverter.cs index c87f4049fffc..521d003daec2 100644 --- a/src/MariaDb/generated/api/Support/SslEnforcementEnum.TypeConverter.cs +++ b/src/MariaDb/generated/api/Support/SslEnforcementEnum.TypeConverter.cs @@ -6,7 +6,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support { - /// TypeConverter implementation for SslEnforcementEnum. + /// Enable ssl enforcement or not when connect to server. public partial class SslEnforcementEnumTypeConverter : global::System.Management.Automation.PSTypeConverter { diff --git a/src/MariaDb/generated/api/Support/SslEnforcementEnum.cs b/src/MariaDb/generated/api/Support/SslEnforcementEnum.cs index f09f609eab57..43ed856f6ef3 100644 --- a/src/MariaDb/generated/api/Support/SslEnforcementEnum.cs +++ b/src/MariaDb/generated/api/Support/SslEnforcementEnum.cs @@ -6,6 +6,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support { + /// Enable ssl enforcement or not when connect to server. public partial struct SslEnforcementEnum : System.IEquatable { diff --git a/src/MariaDb/generated/api/Support/StorageAutogrow.Completer.cs b/src/MariaDb/generated/api/Support/StorageAutogrow.Completer.cs index 23a7114c278a..ccb8ef7a78c5 100644 --- a/src/MariaDb/generated/api/Support/StorageAutogrow.Completer.cs +++ b/src/MariaDb/generated/api/Support/StorageAutogrow.Completer.cs @@ -6,7 +6,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support { - /// Argument completer implementation for StorageAutogrow. + /// Enable Storage Auto Grow. [System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrowTypeConverter))] public partial struct StorageAutogrow : System.Management.Automation.IArgumentCompleter diff --git a/src/MariaDb/generated/api/Support/StorageAutogrow.TypeConverter.cs b/src/MariaDb/generated/api/Support/StorageAutogrow.TypeConverter.cs index 3b385ac576f8..47fbb758df22 100644 --- a/src/MariaDb/generated/api/Support/StorageAutogrow.TypeConverter.cs +++ b/src/MariaDb/generated/api/Support/StorageAutogrow.TypeConverter.cs @@ -6,7 +6,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support { - /// TypeConverter implementation for StorageAutogrow. + /// Enable Storage Auto Grow. public partial class StorageAutogrowTypeConverter : global::System.Management.Automation.PSTypeConverter { diff --git a/src/MariaDb/generated/api/Support/StorageAutogrow.cs b/src/MariaDb/generated/api/Support/StorageAutogrow.cs index 47e113fa1034..bbbf5a0948ea 100644 --- a/src/MariaDb/generated/api/Support/StorageAutogrow.cs +++ b/src/MariaDb/generated/api/Support/StorageAutogrow.cs @@ -6,6 +6,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support { + /// Enable Storage Auto Grow. public partial struct StorageAutogrow : System.IEquatable { diff --git a/src/MariaDb/generated/api/Support/VirtualNetworkRuleState.Completer.cs b/src/MariaDb/generated/api/Support/VirtualNetworkRuleState.Completer.cs index d9a65da73746..ea8f15dc6cdd 100644 --- a/src/MariaDb/generated/api/Support/VirtualNetworkRuleState.Completer.cs +++ b/src/MariaDb/generated/api/Support/VirtualNetworkRuleState.Completer.cs @@ -6,7 +6,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support { - /// Argument completer implementation for VirtualNetworkRuleState. + /// Virtual Network Rule State [System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.VirtualNetworkRuleStateTypeConverter))] public partial struct VirtualNetworkRuleState : System.Management.Automation.IArgumentCompleter diff --git a/src/MariaDb/generated/api/Support/VirtualNetworkRuleState.TypeConverter.cs b/src/MariaDb/generated/api/Support/VirtualNetworkRuleState.TypeConverter.cs index 40867fba4257..4cf92c7f2b7b 100644 --- a/src/MariaDb/generated/api/Support/VirtualNetworkRuleState.TypeConverter.cs +++ b/src/MariaDb/generated/api/Support/VirtualNetworkRuleState.TypeConverter.cs @@ -6,7 +6,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support { - /// TypeConverter implementation for VirtualNetworkRuleState. + /// Virtual Network Rule State public partial class VirtualNetworkRuleStateTypeConverter : global::System.Management.Automation.PSTypeConverter { diff --git a/src/MariaDb/generated/api/Support/VirtualNetworkRuleState.cs b/src/MariaDb/generated/api/Support/VirtualNetworkRuleState.cs index f3ef451cdc73..2812a2bcdf32 100644 --- a/src/MariaDb/generated/api/Support/VirtualNetworkRuleState.cs +++ b/src/MariaDb/generated/api/Support/VirtualNetworkRuleState.cs @@ -6,6 +6,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support { + /// Virtual Network Rule State public partial struct VirtualNetworkRuleState : System.IEquatable { diff --git a/src/MariaDb/generated/cmdlets/GetAzMariaDbConfiguration_Get.cs b/src/MariaDb/generated/cmdlets/GetAzMariaDbConfiguration_Get.cs index 39a619a24637..8ebe19b21121 100644 --- a/src/MariaDb/generated/cmdlets/GetAzMariaDbConfiguration_Get.cs +++ b/src/MariaDb/generated/cmdlets/GetAzMariaDbConfiguration_Get.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Gets information about a configuration of server. /// - /// [OpenAPI] Configurations_Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/configurations/{configurationName}" + /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/configurations/{configurationName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMariaDbConfiguration_Get")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfiguration))] diff --git a/src/MariaDb/generated/cmdlets/GetAzMariaDbConfiguration_GetViaIdentity.cs b/src/MariaDb/generated/cmdlets/GetAzMariaDbConfiguration_GetViaIdentity.cs index 136064d8de0f..2f6f60f4c1cb 100644 --- a/src/MariaDb/generated/cmdlets/GetAzMariaDbConfiguration_GetViaIdentity.cs +++ b/src/MariaDb/generated/cmdlets/GetAzMariaDbConfiguration_GetViaIdentity.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Gets information about a configuration of server. /// - /// [OpenAPI] Configurations_Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/configurations/{configurationName}" + /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/configurations/{configurationName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMariaDbConfiguration_GetViaIdentity")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfiguration))] diff --git a/src/MariaDb/generated/cmdlets/GetAzMariaDbConfiguration_List.cs b/src/MariaDb/generated/cmdlets/GetAzMariaDbConfiguration_List.cs index 4a99116fe4b4..6a483dece7aa 100644 --- a/src/MariaDb/generated/cmdlets/GetAzMariaDbConfiguration_List.cs +++ b/src/MariaDb/generated/cmdlets/GetAzMariaDbConfiguration_List.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// List all the configurations in a given server. /// - /// [OpenAPI] Configurations_ListByServer=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/configurations" + /// [OpenAPI] ListByServer=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/configurations" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMariaDbConfiguration_List")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfiguration))] diff --git a/src/MariaDb/generated/cmdlets/GetAzMariaDbDatabase_Get.cs b/src/MariaDb/generated/cmdlets/GetAzMariaDbDatabase_Get.cs index 0cb1cc93c9d0..678332f45b95 100644 --- a/src/MariaDb/generated/cmdlets/GetAzMariaDbDatabase_Get.cs +++ b/src/MariaDb/generated/cmdlets/GetAzMariaDbDatabase_Get.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Gets information about a database. /// - /// [OpenAPI] Databases_Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/databases/{databaseName}" + /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/databases/{databaseName}" /// [global::Microsoft.Azure.PowerShell.Cmdlets.MariaDb.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMariaDbDatabase_Get")] diff --git a/src/MariaDb/generated/cmdlets/GetAzMariaDbDatabase_GetViaIdentity.cs b/src/MariaDb/generated/cmdlets/GetAzMariaDbDatabase_GetViaIdentity.cs index 8c7261940e44..57fa5bd49dfb 100644 --- a/src/MariaDb/generated/cmdlets/GetAzMariaDbDatabase_GetViaIdentity.cs +++ b/src/MariaDb/generated/cmdlets/GetAzMariaDbDatabase_GetViaIdentity.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Gets information about a database. /// - /// [OpenAPI] Databases_Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/databases/{databaseName}" + /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/databases/{databaseName}" /// [global::Microsoft.Azure.PowerShell.Cmdlets.MariaDb.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMariaDbDatabase_GetViaIdentity")] diff --git a/src/MariaDb/generated/cmdlets/GetAzMariaDbDatabase_List.cs b/src/MariaDb/generated/cmdlets/GetAzMariaDbDatabase_List.cs index 73385ebef9c6..a89c045fab60 100644 --- a/src/MariaDb/generated/cmdlets/GetAzMariaDbDatabase_List.cs +++ b/src/MariaDb/generated/cmdlets/GetAzMariaDbDatabase_List.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// List all the databases in a given server. /// - /// [OpenAPI] Databases_ListByServer=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/databases" + /// [OpenAPI] ListByServer=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/databases" /// [global::Microsoft.Azure.PowerShell.Cmdlets.MariaDb.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMariaDbDatabase_List")] diff --git a/src/MariaDb/generated/cmdlets/GetAzMariaDbFirewallRule_Get.cs b/src/MariaDb/generated/cmdlets/GetAzMariaDbFirewallRule_Get.cs index 69a0fdd1861e..256f0a60b94c 100644 --- a/src/MariaDb/generated/cmdlets/GetAzMariaDbFirewallRule_Get.cs +++ b/src/MariaDb/generated/cmdlets/GetAzMariaDbFirewallRule_Get.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Gets information about a server firewall rule. /// - /// [OpenAPI] FirewallRules_Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/firewallRules/{firewallRuleName}" + /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/firewallRules/{firewallRuleName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMariaDbFirewallRule_Get")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRule))] diff --git a/src/MariaDb/generated/cmdlets/GetAzMariaDbFirewallRule_GetViaIdentity.cs b/src/MariaDb/generated/cmdlets/GetAzMariaDbFirewallRule_GetViaIdentity.cs index bf317e92f626..c306612b5939 100644 --- a/src/MariaDb/generated/cmdlets/GetAzMariaDbFirewallRule_GetViaIdentity.cs +++ b/src/MariaDb/generated/cmdlets/GetAzMariaDbFirewallRule_GetViaIdentity.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Gets information about a server firewall rule. /// - /// [OpenAPI] FirewallRules_Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/firewallRules/{firewallRuleName}" + /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/firewallRules/{firewallRuleName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMariaDbFirewallRule_GetViaIdentity")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRule))] diff --git a/src/MariaDb/generated/cmdlets/GetAzMariaDbFirewallRule_List.cs b/src/MariaDb/generated/cmdlets/GetAzMariaDbFirewallRule_List.cs index 8ff299dcad37..fa91d9467ac4 100644 --- a/src/MariaDb/generated/cmdlets/GetAzMariaDbFirewallRule_List.cs +++ b/src/MariaDb/generated/cmdlets/GetAzMariaDbFirewallRule_List.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// List all the firewall rules in a given server. /// - /// [OpenAPI] FirewallRules_ListByServer=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/firewallRules" + /// [OpenAPI] ListByServer=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/firewallRules" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMariaDbFirewallRule_List")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRule))] diff --git a/src/MariaDb/generated/cmdlets/GetAzMariaDbLocationBasedPerformanceTier_List.cs b/src/MariaDb/generated/cmdlets/GetAzMariaDbLocationBasedPerformanceTier_List.cs index 2d24b2a34068..441b091bf0f0 100644 --- a/src/MariaDb/generated/cmdlets/GetAzMariaDbLocationBasedPerformanceTier_List.cs +++ b/src/MariaDb/generated/cmdlets/GetAzMariaDbLocationBasedPerformanceTier_List.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// List all the performance tiers at specified location in a given subscription. /// - /// [OpenAPI] LocationBasedPerformanceTier_List=>GET:"/subscriptions/{subscriptionId}/providers/Microsoft.DBforMariaDB/locations/{locationName}/performanceTiers" + /// [OpenAPI] List=>GET:"/subscriptions/{subscriptionId}/providers/Microsoft.DBforMariaDB/locations/{locationName}/performanceTiers" /// [global::Microsoft.Azure.PowerShell.Cmdlets.MariaDb.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMariaDbLocationBasedPerformanceTier_List")] diff --git a/src/MariaDb/generated/cmdlets/GetAzMariaDbLogFile_List.cs b/src/MariaDb/generated/cmdlets/GetAzMariaDbLogFile_List.cs index 27978d5d0fa7..c847fc743d32 100644 --- a/src/MariaDb/generated/cmdlets/GetAzMariaDbLogFile_List.cs +++ b/src/MariaDb/generated/cmdlets/GetAzMariaDbLogFile_List.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// List all the log files in a given server. /// - /// [OpenAPI] LogFiles_ListByServer=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/logFiles" + /// [OpenAPI] ListByServer=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/logFiles" /// [global::Microsoft.Azure.PowerShell.Cmdlets.MariaDb.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMariaDbLogFile_List")] diff --git a/src/MariaDb/generated/cmdlets/GetAzMariaDbOperation_List.cs b/src/MariaDb/generated/cmdlets/GetAzMariaDbOperation_List.cs index db61ef530f55..427d3645dff7 100644 --- a/src/MariaDb/generated/cmdlets/GetAzMariaDbOperation_List.cs +++ b/src/MariaDb/generated/cmdlets/GetAzMariaDbOperation_List.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Lists all of the available REST API operations. /// - /// [OpenAPI] Operations_List=>GET:"/providers/Microsoft.DBforMariaDB/operations" + /// [OpenAPI] List=>GET:"/providers/Microsoft.DBforMariaDB/operations" /// [global::Microsoft.Azure.PowerShell.Cmdlets.MariaDb.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMariaDbOperation_List")] diff --git a/src/MariaDb/generated/cmdlets/GetAzMariaDbReplica_List.cs b/src/MariaDb/generated/cmdlets/GetAzMariaDbReplica_List.cs index 0bda96b01c51..1997bfd01159 100644 --- a/src/MariaDb/generated/cmdlets/GetAzMariaDbReplica_List.cs +++ b/src/MariaDb/generated/cmdlets/GetAzMariaDbReplica_List.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// List all the replicas for a given server. /// - /// [OpenAPI] Replicas_ListByServer=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/replicas" + /// [OpenAPI] ListByServer=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/replicas" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMariaDbReplica_List")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer))] diff --git a/src/MariaDb/generated/cmdlets/GetAzMariaDbServerSecurityAlertPolicy_Get.cs b/src/MariaDb/generated/cmdlets/GetAzMariaDbServerSecurityAlertPolicy_Get.cs index 3fbdede27a25..501a54e6264e 100644 --- a/src/MariaDb/generated/cmdlets/GetAzMariaDbServerSecurityAlertPolicy_Get.cs +++ b/src/MariaDb/generated/cmdlets/GetAzMariaDbServerSecurityAlertPolicy_Get.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Get a server's security alert policy. /// - /// [OpenAPI] ServerSecurityAlertPolicies_Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/securityAlertPolicies/{securityAlertPolicyName}" + /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/securityAlertPolicies/{securityAlertPolicyName}" /// [global::Microsoft.Azure.PowerShell.Cmdlets.MariaDb.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMariaDbServerSecurityAlertPolicy_Get")] diff --git a/src/MariaDb/generated/cmdlets/GetAzMariaDbServerSecurityAlertPolicy_GetViaIdentity.cs b/src/MariaDb/generated/cmdlets/GetAzMariaDbServerSecurityAlertPolicy_GetViaIdentity.cs index fae925662e64..cedaf85efbb2 100644 --- a/src/MariaDb/generated/cmdlets/GetAzMariaDbServerSecurityAlertPolicy_GetViaIdentity.cs +++ b/src/MariaDb/generated/cmdlets/GetAzMariaDbServerSecurityAlertPolicy_GetViaIdentity.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Get a server's security alert policy. /// - /// [OpenAPI] ServerSecurityAlertPolicies_Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/securityAlertPolicies/{securityAlertPolicyName}" + /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/securityAlertPolicies/{securityAlertPolicyName}" /// [global::Microsoft.Azure.PowerShell.Cmdlets.MariaDb.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMariaDbServerSecurityAlertPolicy_GetViaIdentity")] diff --git a/src/MariaDb/generated/cmdlets/GetAzMariaDbServer_Get.cs b/src/MariaDb/generated/cmdlets/GetAzMariaDbServer_Get.cs index 0e7571bd6afe..af9588d49fd3 100644 --- a/src/MariaDb/generated/cmdlets/GetAzMariaDbServer_Get.cs +++ b/src/MariaDb/generated/cmdlets/GetAzMariaDbServer_Get.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Gets information about a server. /// - /// [OpenAPI] Servers_Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}" + /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMariaDbServer_Get")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer))] diff --git a/src/MariaDb/generated/cmdlets/GetAzMariaDbServer_GetViaIdentity.cs b/src/MariaDb/generated/cmdlets/GetAzMariaDbServer_GetViaIdentity.cs index 22eb1de966b1..5350269fe14e 100644 --- a/src/MariaDb/generated/cmdlets/GetAzMariaDbServer_GetViaIdentity.cs +++ b/src/MariaDb/generated/cmdlets/GetAzMariaDbServer_GetViaIdentity.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Gets information about a server. /// - /// [OpenAPI] Servers_Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}" + /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMariaDbServer_GetViaIdentity")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer))] diff --git a/src/MariaDb/generated/cmdlets/GetAzMariaDbServer_List.cs b/src/MariaDb/generated/cmdlets/GetAzMariaDbServer_List.cs index d7bfaa3d3ac6..a5d36538ba9c 100644 --- a/src/MariaDb/generated/cmdlets/GetAzMariaDbServer_List.cs +++ b/src/MariaDb/generated/cmdlets/GetAzMariaDbServer_List.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// List all the servers in a given resource group. /// - /// [OpenAPI] Servers_ListByResourceGroup=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers" + /// [OpenAPI] ListByResourceGroup=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMariaDbServer_List")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer))] diff --git a/src/MariaDb/generated/cmdlets/GetAzMariaDbServer_List1.cs b/src/MariaDb/generated/cmdlets/GetAzMariaDbServer_List1.cs index a9752deb69d0..0383b9b6da07 100644 --- a/src/MariaDb/generated/cmdlets/GetAzMariaDbServer_List1.cs +++ b/src/MariaDb/generated/cmdlets/GetAzMariaDbServer_List1.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// List all the servers in a given subscription. /// - /// [OpenAPI] Servers_List=>GET:"/subscriptions/{subscriptionId}/providers/Microsoft.DBforMariaDB/servers" + /// [OpenAPI] List=>GET:"/subscriptions/{subscriptionId}/providers/Microsoft.DBforMariaDB/servers" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMariaDbServer_List1")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer))] diff --git a/src/MariaDb/generated/cmdlets/GetAzMariaDbVirtualNetworkRule_Get.cs b/src/MariaDb/generated/cmdlets/GetAzMariaDbVirtualNetworkRule_Get.cs index d54b9ff03691..fa9b05a5fef9 100644 --- a/src/MariaDb/generated/cmdlets/GetAzMariaDbVirtualNetworkRule_Get.cs +++ b/src/MariaDb/generated/cmdlets/GetAzMariaDbVirtualNetworkRule_Get.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Gets a virtual network rule. /// - /// [OpenAPI] VirtualNetworkRules_Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/virtualNetworkRules/{virtualNetworkRuleName}" + /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/virtualNetworkRules/{virtualNetworkRuleName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMariaDbVirtualNetworkRule_Get")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRule))] diff --git a/src/MariaDb/generated/cmdlets/GetAzMariaDbVirtualNetworkRule_GetViaIdentity.cs b/src/MariaDb/generated/cmdlets/GetAzMariaDbVirtualNetworkRule_GetViaIdentity.cs index f85fcbc88ff8..8704f3876196 100644 --- a/src/MariaDb/generated/cmdlets/GetAzMariaDbVirtualNetworkRule_GetViaIdentity.cs +++ b/src/MariaDb/generated/cmdlets/GetAzMariaDbVirtualNetworkRule_GetViaIdentity.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Gets a virtual network rule. /// - /// [OpenAPI] VirtualNetworkRules_Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/virtualNetworkRules/{virtualNetworkRuleName}" + /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/virtualNetworkRules/{virtualNetworkRuleName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMariaDbVirtualNetworkRule_GetViaIdentity")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRule))] diff --git a/src/MariaDb/generated/cmdlets/GetAzMariaDbVirtualNetworkRule_List.cs b/src/MariaDb/generated/cmdlets/GetAzMariaDbVirtualNetworkRule_List.cs index 9fd6893b572d..27786611ee90 100644 --- a/src/MariaDb/generated/cmdlets/GetAzMariaDbVirtualNetworkRule_List.cs +++ b/src/MariaDb/generated/cmdlets/GetAzMariaDbVirtualNetworkRule_List.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Gets a list of virtual network rules in a server. /// - /// [OpenAPI] VirtualNetworkRules_ListByServer=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/virtualNetworkRules" + /// [OpenAPI] ListByServer=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/virtualNetworkRules" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzMariaDbVirtualNetworkRule_List")] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRule))] diff --git a/src/MariaDb/generated/cmdlets/InvokeAzMariaDbExecuteCheckNameAvailability_Execute.cs b/src/MariaDb/generated/cmdlets/InvokeAzMariaDbExecuteCheckNameAvailability_Execute.cs index cc8f491b5e2f..d6ccb4de2540 100644 --- a/src/MariaDb/generated/cmdlets/InvokeAzMariaDbExecuteCheckNameAvailability_Execute.cs +++ b/src/MariaDb/generated/cmdlets/InvokeAzMariaDbExecuteCheckNameAvailability_Execute.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Check the availability of name for resource /// - /// [OpenAPI] CheckNameAvailability_Execute=>POST:"/subscriptions/{subscriptionId}/providers/Microsoft.DBforMariaDB/checkNameAvailability" + /// [OpenAPI] Execute=>POST:"/subscriptions/{subscriptionId}/providers/Microsoft.DBforMariaDB/checkNameAvailability" /// [global::Microsoft.Azure.PowerShell.Cmdlets.MariaDb.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsLifecycle.Invoke, @"AzMariaDbExecuteCheckNameAvailability_Execute", SupportsShouldProcess = true)] diff --git a/src/MariaDb/generated/cmdlets/InvokeAzMariaDbExecuteCheckNameAvailability_ExecuteExpanded.cs b/src/MariaDb/generated/cmdlets/InvokeAzMariaDbExecuteCheckNameAvailability_ExecuteExpanded.cs index c63a5e5a4ae7..28585570280a 100644 --- a/src/MariaDb/generated/cmdlets/InvokeAzMariaDbExecuteCheckNameAvailability_ExecuteExpanded.cs +++ b/src/MariaDb/generated/cmdlets/InvokeAzMariaDbExecuteCheckNameAvailability_ExecuteExpanded.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Check the availability of name for resource /// - /// [OpenAPI] CheckNameAvailability_Execute=>POST:"/subscriptions/{subscriptionId}/providers/Microsoft.DBforMariaDB/checkNameAvailability" + /// [OpenAPI] Execute=>POST:"/subscriptions/{subscriptionId}/providers/Microsoft.DBforMariaDB/checkNameAvailability" /// [global::Microsoft.Azure.PowerShell.Cmdlets.MariaDb.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsLifecycle.Invoke, @"AzMariaDbExecuteCheckNameAvailability_ExecuteExpanded", SupportsShouldProcess = true)] diff --git a/src/MariaDb/generated/cmdlets/InvokeAzMariaDbExecuteCheckNameAvailability_ExecuteViaIdentity.cs b/src/MariaDb/generated/cmdlets/InvokeAzMariaDbExecuteCheckNameAvailability_ExecuteViaIdentity.cs index ef8fcef17d86..8bfe3d299eca 100644 --- a/src/MariaDb/generated/cmdlets/InvokeAzMariaDbExecuteCheckNameAvailability_ExecuteViaIdentity.cs +++ b/src/MariaDb/generated/cmdlets/InvokeAzMariaDbExecuteCheckNameAvailability_ExecuteViaIdentity.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Check the availability of name for resource /// - /// [OpenAPI] CheckNameAvailability_Execute=>POST:"/subscriptions/{subscriptionId}/providers/Microsoft.DBforMariaDB/checkNameAvailability" + /// [OpenAPI] Execute=>POST:"/subscriptions/{subscriptionId}/providers/Microsoft.DBforMariaDB/checkNameAvailability" /// [global::Microsoft.Azure.PowerShell.Cmdlets.MariaDb.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsLifecycle.Invoke, @"AzMariaDbExecuteCheckNameAvailability_ExecuteViaIdentity", SupportsShouldProcess = true)] diff --git a/src/MariaDb/generated/cmdlets/InvokeAzMariaDbExecuteCheckNameAvailability_ExecuteViaIdentityExpanded.cs b/src/MariaDb/generated/cmdlets/InvokeAzMariaDbExecuteCheckNameAvailability_ExecuteViaIdentityExpanded.cs index d81b433917eb..45e2130876dd 100644 --- a/src/MariaDb/generated/cmdlets/InvokeAzMariaDbExecuteCheckNameAvailability_ExecuteViaIdentityExpanded.cs +++ b/src/MariaDb/generated/cmdlets/InvokeAzMariaDbExecuteCheckNameAvailability_ExecuteViaIdentityExpanded.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Check the availability of name for resource /// - /// [OpenAPI] CheckNameAvailability_Execute=>POST:"/subscriptions/{subscriptionId}/providers/Microsoft.DBforMariaDB/checkNameAvailability" + /// [OpenAPI] Execute=>POST:"/subscriptions/{subscriptionId}/providers/Microsoft.DBforMariaDB/checkNameAvailability" /// [global::Microsoft.Azure.PowerShell.Cmdlets.MariaDb.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsLifecycle.Invoke, @"AzMariaDbExecuteCheckNameAvailability_ExecuteViaIdentityExpanded", SupportsShouldProcess = true)] diff --git a/src/MariaDb/generated/cmdlets/NewAzMariaDbConfiguration_CreateExpanded.cs b/src/MariaDb/generated/cmdlets/NewAzMariaDbConfiguration_CreateExpanded.cs index 0bce1e6a71a3..92d91fc57098 100644 --- a/src/MariaDb/generated/cmdlets/NewAzMariaDbConfiguration_CreateExpanded.cs +++ b/src/MariaDb/generated/cmdlets/NewAzMariaDbConfiguration_CreateExpanded.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Updates a configuration of a server. /// - /// [OpenAPI] Configurations_CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/configurations/{configurationName}" + /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/configurations/{configurationName}" /// [global::Microsoft.Azure.PowerShell.Cmdlets.MariaDb.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMariaDbConfiguration_CreateExpanded", SupportsShouldProcess = true)] diff --git a/src/MariaDb/generated/cmdlets/NewAzMariaDbDatabase_Create.cs b/src/MariaDb/generated/cmdlets/NewAzMariaDbDatabase_Create.cs index dc792078000d..7682ad462df9 100644 --- a/src/MariaDb/generated/cmdlets/NewAzMariaDbDatabase_Create.cs +++ b/src/MariaDb/generated/cmdlets/NewAzMariaDbDatabase_Create.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Creates a new database or updates an existing database. /// - /// [OpenAPI] Databases_CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/databases/{databaseName}" + /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/databases/{databaseName}" /// [global::Microsoft.Azure.PowerShell.Cmdlets.MariaDb.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMariaDbDatabase_Create", SupportsShouldProcess = true)] diff --git a/src/MariaDb/generated/cmdlets/NewAzMariaDbDatabase_CreateExpanded.cs b/src/MariaDb/generated/cmdlets/NewAzMariaDbDatabase_CreateExpanded.cs index 0fe59e12b6fd..50604a900eb6 100644 --- a/src/MariaDb/generated/cmdlets/NewAzMariaDbDatabase_CreateExpanded.cs +++ b/src/MariaDb/generated/cmdlets/NewAzMariaDbDatabase_CreateExpanded.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Creates a new database or updates an existing database. /// - /// [OpenAPI] Databases_CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/databases/{databaseName}" + /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/databases/{databaseName}" /// [global::Microsoft.Azure.PowerShell.Cmdlets.MariaDb.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMariaDbDatabase_CreateExpanded", SupportsShouldProcess = true)] diff --git a/src/MariaDb/generated/cmdlets/NewAzMariaDbDatabase_CreateViaIdentity.cs b/src/MariaDb/generated/cmdlets/NewAzMariaDbDatabase_CreateViaIdentity.cs index 71617a1c29c2..4f4239e628d0 100644 --- a/src/MariaDb/generated/cmdlets/NewAzMariaDbDatabase_CreateViaIdentity.cs +++ b/src/MariaDb/generated/cmdlets/NewAzMariaDbDatabase_CreateViaIdentity.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Creates a new database or updates an existing database. /// - /// [OpenAPI] Databases_CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/databases/{databaseName}" + /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/databases/{databaseName}" /// [global::Microsoft.Azure.PowerShell.Cmdlets.MariaDb.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMariaDbDatabase_CreateViaIdentity", SupportsShouldProcess = true)] diff --git a/src/MariaDb/generated/cmdlets/NewAzMariaDbDatabase_CreateViaIdentityExpanded.cs b/src/MariaDb/generated/cmdlets/NewAzMariaDbDatabase_CreateViaIdentityExpanded.cs index 03ff6ad9ce8a..822165b4579b 100644 --- a/src/MariaDb/generated/cmdlets/NewAzMariaDbDatabase_CreateViaIdentityExpanded.cs +++ b/src/MariaDb/generated/cmdlets/NewAzMariaDbDatabase_CreateViaIdentityExpanded.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Creates a new database or updates an existing database. /// - /// [OpenAPI] Databases_CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/databases/{databaseName}" + /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/databases/{databaseName}" /// [global::Microsoft.Azure.PowerShell.Cmdlets.MariaDb.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMariaDbDatabase_CreateViaIdentityExpanded", SupportsShouldProcess = true)] diff --git a/src/MariaDb/generated/cmdlets/NewAzMariaDbFirewallRule_CreateExpanded.cs b/src/MariaDb/generated/cmdlets/NewAzMariaDbFirewallRule_CreateExpanded.cs index d5a5bbf9ed6c..596471e51d2d 100644 --- a/src/MariaDb/generated/cmdlets/NewAzMariaDbFirewallRule_CreateExpanded.cs +++ b/src/MariaDb/generated/cmdlets/NewAzMariaDbFirewallRule_CreateExpanded.cs @@ -9,8 +9,9 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Creates a new firewall rule or updates an existing firewall rule. /// - /// [OpenAPI] FirewallRules_CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/firewallRules/{firewallRuleName}" + /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/firewallRules/{firewallRuleName}" /// + [global::Microsoft.Azure.PowerShell.Cmdlets.MariaDb.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMariaDbFirewallRule_CreateExpanded", SupportsShouldProcess = true)] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRule))] [global::Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Description(@"Creates a new firewall rule or updates an existing firewall rule.")] diff --git a/src/MariaDb/generated/cmdlets/NewAzMariaDbServerSecurityAlertPolicy_Create.cs b/src/MariaDb/generated/cmdlets/NewAzMariaDbServerSecurityAlertPolicy_Create.cs index 644df3caa58f..fa8a5928a844 100644 --- a/src/MariaDb/generated/cmdlets/NewAzMariaDbServerSecurityAlertPolicy_Create.cs +++ b/src/MariaDb/generated/cmdlets/NewAzMariaDbServerSecurityAlertPolicy_Create.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Creates or updates a threat detection policy. /// - /// [OpenAPI] ServerSecurityAlertPolicies_CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/securityAlertPolicies/{securityAlertPolicyName}" + /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/securityAlertPolicies/{securityAlertPolicyName}" /// [global::Microsoft.Azure.PowerShell.Cmdlets.MariaDb.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMariaDbServerSecurityAlertPolicy_Create", SupportsShouldProcess = true)] diff --git a/src/MariaDb/generated/cmdlets/NewAzMariaDbServerSecurityAlertPolicy_CreateExpanded.cs b/src/MariaDb/generated/cmdlets/NewAzMariaDbServerSecurityAlertPolicy_CreateExpanded.cs index a7d2e17ae6e7..fe6f1000b83a 100644 --- a/src/MariaDb/generated/cmdlets/NewAzMariaDbServerSecurityAlertPolicy_CreateExpanded.cs +++ b/src/MariaDb/generated/cmdlets/NewAzMariaDbServerSecurityAlertPolicy_CreateExpanded.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Creates or updates a threat detection policy. /// - /// [OpenAPI] ServerSecurityAlertPolicies_CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/securityAlertPolicies/{securityAlertPolicyName}" + /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/securityAlertPolicies/{securityAlertPolicyName}" /// [global::Microsoft.Azure.PowerShell.Cmdlets.MariaDb.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMariaDbServerSecurityAlertPolicy_CreateExpanded", SupportsShouldProcess = true)] diff --git a/src/MariaDb/generated/cmdlets/NewAzMariaDbServerSecurityAlertPolicy_CreateViaIdentity.cs b/src/MariaDb/generated/cmdlets/NewAzMariaDbServerSecurityAlertPolicy_CreateViaIdentity.cs index 39b9741c3b7c..303584f54774 100644 --- a/src/MariaDb/generated/cmdlets/NewAzMariaDbServerSecurityAlertPolicy_CreateViaIdentity.cs +++ b/src/MariaDb/generated/cmdlets/NewAzMariaDbServerSecurityAlertPolicy_CreateViaIdentity.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Creates or updates a threat detection policy. /// - /// [OpenAPI] ServerSecurityAlertPolicies_CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/securityAlertPolicies/{securityAlertPolicyName}" + /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/securityAlertPolicies/{securityAlertPolicyName}" /// [global::Microsoft.Azure.PowerShell.Cmdlets.MariaDb.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMariaDbServerSecurityAlertPolicy_CreateViaIdentity", SupportsShouldProcess = true)] diff --git a/src/MariaDb/generated/cmdlets/NewAzMariaDbServerSecurityAlertPolicy_CreateViaIdentityExpanded.cs b/src/MariaDb/generated/cmdlets/NewAzMariaDbServerSecurityAlertPolicy_CreateViaIdentityExpanded.cs index 5096ed9e168f..8d83dd72dab3 100644 --- a/src/MariaDb/generated/cmdlets/NewAzMariaDbServerSecurityAlertPolicy_CreateViaIdentityExpanded.cs +++ b/src/MariaDb/generated/cmdlets/NewAzMariaDbServerSecurityAlertPolicy_CreateViaIdentityExpanded.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Creates or updates a threat detection policy. /// - /// [OpenAPI] ServerSecurityAlertPolicies_CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/securityAlertPolicies/{securityAlertPolicyName}" + /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/securityAlertPolicies/{securityAlertPolicyName}" /// [global::Microsoft.Azure.PowerShell.Cmdlets.MariaDb.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMariaDbServerSecurityAlertPolicy_CreateViaIdentityExpanded", SupportsShouldProcess = true)] diff --git a/src/MariaDb/generated/cmdlets/NewAzMariaDbServer_Create.cs b/src/MariaDb/generated/cmdlets/NewAzMariaDbServer_Create.cs index 0aad02ab2a1c..f4f7df4a4163 100644 --- a/src/MariaDb/generated/cmdlets/NewAzMariaDbServer_Create.cs +++ b/src/MariaDb/generated/cmdlets/NewAzMariaDbServer_Create.cs @@ -11,7 +11,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Creates a new server or updates an existing server. The update action will overwrite the existing server. /// /// - /// [OpenAPI] Servers_Create=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}" + /// [OpenAPI] Create=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}" /// [global::Microsoft.Azure.PowerShell.Cmdlets.MariaDb.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMariaDbServer_Create", SupportsShouldProcess = true)] diff --git a/src/MariaDb/generated/cmdlets/NewAzMariaDbServer_CreateExpanded.cs b/src/MariaDb/generated/cmdlets/NewAzMariaDbServer_CreateExpanded.cs index d0ae8f59be64..a4994ea92c00 100644 --- a/src/MariaDb/generated/cmdlets/NewAzMariaDbServer_CreateExpanded.cs +++ b/src/MariaDb/generated/cmdlets/NewAzMariaDbServer_CreateExpanded.cs @@ -11,7 +11,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Creates a new server or updates an existing server. The update action will overwrite the existing server. /// /// - /// [OpenAPI] Servers_Create=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}" + /// [OpenAPI] Create=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}" /// [global::Microsoft.Azure.PowerShell.Cmdlets.MariaDb.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMariaDbServer_CreateExpanded", SupportsShouldProcess = true)] diff --git a/src/MariaDb/generated/cmdlets/NewAzMariaDbServer_CreateViaIdentity.cs b/src/MariaDb/generated/cmdlets/NewAzMariaDbServer_CreateViaIdentity.cs index 85249443cd93..1da707f04316 100644 --- a/src/MariaDb/generated/cmdlets/NewAzMariaDbServer_CreateViaIdentity.cs +++ b/src/MariaDb/generated/cmdlets/NewAzMariaDbServer_CreateViaIdentity.cs @@ -11,7 +11,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Creates a new server or updates an existing server. The update action will overwrite the existing server. /// /// - /// [OpenAPI] Servers_Create=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}" + /// [OpenAPI] Create=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}" /// [global::Microsoft.Azure.PowerShell.Cmdlets.MariaDb.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMariaDbServer_CreateViaIdentity", SupportsShouldProcess = true)] diff --git a/src/MariaDb/generated/cmdlets/NewAzMariaDbServer_CreateViaIdentityExpanded.cs b/src/MariaDb/generated/cmdlets/NewAzMariaDbServer_CreateViaIdentityExpanded.cs index df21d6d403eb..68b8f6a1eeac 100644 --- a/src/MariaDb/generated/cmdlets/NewAzMariaDbServer_CreateViaIdentityExpanded.cs +++ b/src/MariaDb/generated/cmdlets/NewAzMariaDbServer_CreateViaIdentityExpanded.cs @@ -11,7 +11,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Creates a new server or updates an existing server. The update action will overwrite the existing server. /// /// - /// [OpenAPI] Servers_Create=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}" + /// [OpenAPI] Create=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}" /// [global::Microsoft.Azure.PowerShell.Cmdlets.MariaDb.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMariaDbServer_CreateViaIdentityExpanded", SupportsShouldProcess = true)] diff --git a/src/MariaDb/generated/cmdlets/NewAzMariaDbVirtualNetworkRule_CreateExpanded.cs b/src/MariaDb/generated/cmdlets/NewAzMariaDbVirtualNetworkRule_CreateExpanded.cs index 6bee7a3f50cc..4254a2a57aa2 100644 --- a/src/MariaDb/generated/cmdlets/NewAzMariaDbVirtualNetworkRule_CreateExpanded.cs +++ b/src/MariaDb/generated/cmdlets/NewAzMariaDbVirtualNetworkRule_CreateExpanded.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Creates or updates an existing virtual network rule. /// - /// [OpenAPI] VirtualNetworkRules_CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/virtualNetworkRules/{virtualNetworkRuleName}" + /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/virtualNetworkRules/{virtualNetworkRuleName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMariaDbVirtualNetworkRule_CreateExpanded", SupportsShouldProcess = true)] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRule))] diff --git a/src/MariaDb/generated/cmdlets/RemoveAzMariaDbDatabase_Delete.cs b/src/MariaDb/generated/cmdlets/RemoveAzMariaDbDatabase_Delete.cs index ce88d0797ccc..16829e216b09 100644 --- a/src/MariaDb/generated/cmdlets/RemoveAzMariaDbDatabase_Delete.cs +++ b/src/MariaDb/generated/cmdlets/RemoveAzMariaDbDatabase_Delete.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Deletes a database. /// - /// [OpenAPI] Databases_Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/databases/{databaseName}" + /// [OpenAPI] Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/databases/{databaseName}" /// [global::Microsoft.Azure.PowerShell.Cmdlets.MariaDb.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzMariaDbDatabase_Delete", SupportsShouldProcess = true)] diff --git a/src/MariaDb/generated/cmdlets/RemoveAzMariaDbDatabase_DeleteViaIdentity.cs b/src/MariaDb/generated/cmdlets/RemoveAzMariaDbDatabase_DeleteViaIdentity.cs index a515a75c0aa4..7fc96077835a 100644 --- a/src/MariaDb/generated/cmdlets/RemoveAzMariaDbDatabase_DeleteViaIdentity.cs +++ b/src/MariaDb/generated/cmdlets/RemoveAzMariaDbDatabase_DeleteViaIdentity.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Deletes a database. /// - /// [OpenAPI] Databases_Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/databases/{databaseName}" + /// [OpenAPI] Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/databases/{databaseName}" /// [global::Microsoft.Azure.PowerShell.Cmdlets.MariaDb.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzMariaDbDatabase_DeleteViaIdentity", SupportsShouldProcess = true)] diff --git a/src/MariaDb/generated/cmdlets/RemoveAzMariaDbFirewallRule_Delete.cs b/src/MariaDb/generated/cmdlets/RemoveAzMariaDbFirewallRule_Delete.cs index f617e2a16fc2..fe77889c4c75 100644 --- a/src/MariaDb/generated/cmdlets/RemoveAzMariaDbFirewallRule_Delete.cs +++ b/src/MariaDb/generated/cmdlets/RemoveAzMariaDbFirewallRule_Delete.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Deletes a server firewall rule. /// - /// [OpenAPI] FirewallRules_Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/firewallRules/{firewallRuleName}" + /// [OpenAPI] Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/firewallRules/{firewallRuleName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzMariaDbFirewallRule_Delete", SupportsShouldProcess = true)] [global::System.Management.Automation.OutputType(typeof(bool))] diff --git a/src/MariaDb/generated/cmdlets/RemoveAzMariaDbFirewallRule_DeleteViaIdentity.cs b/src/MariaDb/generated/cmdlets/RemoveAzMariaDbFirewallRule_DeleteViaIdentity.cs index b01684ceeb96..27831091f8b2 100644 --- a/src/MariaDb/generated/cmdlets/RemoveAzMariaDbFirewallRule_DeleteViaIdentity.cs +++ b/src/MariaDb/generated/cmdlets/RemoveAzMariaDbFirewallRule_DeleteViaIdentity.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Deletes a server firewall rule. /// - /// [OpenAPI] FirewallRules_Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/firewallRules/{firewallRuleName}" + /// [OpenAPI] Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/firewallRules/{firewallRuleName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzMariaDbFirewallRule_DeleteViaIdentity", SupportsShouldProcess = true)] [global::System.Management.Automation.OutputType(typeof(bool))] diff --git a/src/MariaDb/generated/cmdlets/RemoveAzMariaDbServer_Delete.cs b/src/MariaDb/generated/cmdlets/RemoveAzMariaDbServer_Delete.cs index 2221b2f5d0b3..0347f2f8c77c 100644 --- a/src/MariaDb/generated/cmdlets/RemoveAzMariaDbServer_Delete.cs +++ b/src/MariaDb/generated/cmdlets/RemoveAzMariaDbServer_Delete.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Deletes a server. /// - /// [OpenAPI] Servers_Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}" + /// [OpenAPI] Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzMariaDbServer_Delete", SupportsShouldProcess = true)] [global::System.Management.Automation.OutputType(typeof(bool))] diff --git a/src/MariaDb/generated/cmdlets/RemoveAzMariaDbServer_DeleteViaIdentity.cs b/src/MariaDb/generated/cmdlets/RemoveAzMariaDbServer_DeleteViaIdentity.cs index 1cd8b7ea3af6..8cf8e1e3c531 100644 --- a/src/MariaDb/generated/cmdlets/RemoveAzMariaDbServer_DeleteViaIdentity.cs +++ b/src/MariaDb/generated/cmdlets/RemoveAzMariaDbServer_DeleteViaIdentity.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Deletes a server. /// - /// [OpenAPI] Servers_Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}" + /// [OpenAPI] Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzMariaDbServer_DeleteViaIdentity", SupportsShouldProcess = true)] [global::System.Management.Automation.OutputType(typeof(bool))] diff --git a/src/MariaDb/generated/cmdlets/RemoveAzMariaDbVirtualNetworkRule_Delete.cs b/src/MariaDb/generated/cmdlets/RemoveAzMariaDbVirtualNetworkRule_Delete.cs index 41276c1ad6db..4288a2233afe 100644 --- a/src/MariaDb/generated/cmdlets/RemoveAzMariaDbVirtualNetworkRule_Delete.cs +++ b/src/MariaDb/generated/cmdlets/RemoveAzMariaDbVirtualNetworkRule_Delete.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Deletes the virtual network rule with the given name. /// - /// [OpenAPI] VirtualNetworkRules_Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/virtualNetworkRules/{virtualNetworkRuleName}" + /// [OpenAPI] Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/virtualNetworkRules/{virtualNetworkRuleName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzMariaDbVirtualNetworkRule_Delete", SupportsShouldProcess = true)] [global::System.Management.Automation.OutputType(typeof(bool))] diff --git a/src/MariaDb/generated/cmdlets/RemoveAzMariaDbVirtualNetworkRule_DeleteViaIdentity.cs b/src/MariaDb/generated/cmdlets/RemoveAzMariaDbVirtualNetworkRule_DeleteViaIdentity.cs index 8029adb1584d..c6c360b15bf6 100644 --- a/src/MariaDb/generated/cmdlets/RemoveAzMariaDbVirtualNetworkRule_DeleteViaIdentity.cs +++ b/src/MariaDb/generated/cmdlets/RemoveAzMariaDbVirtualNetworkRule_DeleteViaIdentity.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Deletes the virtual network rule with the given name. /// - /// [OpenAPI] VirtualNetworkRules_Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/virtualNetworkRules/{virtualNetworkRuleName}" + /// [OpenAPI] Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/virtualNetworkRules/{virtualNetworkRuleName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzMariaDbVirtualNetworkRule_DeleteViaIdentity", SupportsShouldProcess = true)] [global::System.Management.Automation.OutputType(typeof(bool))] diff --git a/src/MariaDb/generated/cmdlets/RestartAzMariaDbServer_Restart.cs b/src/MariaDb/generated/cmdlets/RestartAzMariaDbServer_Restart.cs index da0687599536..bae3218e6ba2 100644 --- a/src/MariaDb/generated/cmdlets/RestartAzMariaDbServer_Restart.cs +++ b/src/MariaDb/generated/cmdlets/RestartAzMariaDbServer_Restart.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Restarts a server. /// - /// [OpenAPI] Servers_Restart=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/restart" + /// [OpenAPI] Restart=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/restart" /// [global::Microsoft.Azure.PowerShell.Cmdlets.MariaDb.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsLifecycle.Restart, @"AzMariaDbServer_Restart", SupportsShouldProcess = true)] diff --git a/src/MariaDb/generated/cmdlets/RestartAzMariaDbServer_RestartViaIdentity.cs b/src/MariaDb/generated/cmdlets/RestartAzMariaDbServer_RestartViaIdentity.cs index 8e249b80e43c..2daede184cd3 100644 --- a/src/MariaDb/generated/cmdlets/RestartAzMariaDbServer_RestartViaIdentity.cs +++ b/src/MariaDb/generated/cmdlets/RestartAzMariaDbServer_RestartViaIdentity.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Restarts a server. /// - /// [OpenAPI] Servers_Restart=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/restart" + /// [OpenAPI] Restart=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/restart" /// [global::Microsoft.Azure.PowerShell.Cmdlets.MariaDb.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsLifecycle.Restart, @"AzMariaDbServer_RestartViaIdentity", SupportsShouldProcess = true)] diff --git a/src/MariaDb/generated/cmdlets/SetAzMariaDbDatabase_Update.cs b/src/MariaDb/generated/cmdlets/SetAzMariaDbDatabase_Update.cs index ab6d0ffbe45f..7b1f8501cd48 100644 --- a/src/MariaDb/generated/cmdlets/SetAzMariaDbDatabase_Update.cs +++ b/src/MariaDb/generated/cmdlets/SetAzMariaDbDatabase_Update.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Creates a new database or updates an existing database. /// - /// [OpenAPI] Databases_CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/databases/{databaseName}" + /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/databases/{databaseName}" /// [global::Microsoft.Azure.PowerShell.Cmdlets.MariaDb.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Set, @"AzMariaDbDatabase_Update", SupportsShouldProcess = true)] diff --git a/src/MariaDb/generated/cmdlets/SetAzMariaDbDatabase_UpdateExpanded.cs b/src/MariaDb/generated/cmdlets/SetAzMariaDbDatabase_UpdateExpanded.cs index fa0847485e9e..2a7cff382ce0 100644 --- a/src/MariaDb/generated/cmdlets/SetAzMariaDbDatabase_UpdateExpanded.cs +++ b/src/MariaDb/generated/cmdlets/SetAzMariaDbDatabase_UpdateExpanded.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Creates a new database or updates an existing database. /// - /// [OpenAPI] Databases_CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/databases/{databaseName}" + /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/databases/{databaseName}" /// [global::Microsoft.Azure.PowerShell.Cmdlets.MariaDb.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Set, @"AzMariaDbDatabase_UpdateExpanded", SupportsShouldProcess = true)] diff --git a/src/MariaDb/generated/cmdlets/SetAzMariaDbServerSecurityAlertPolicy_Update.cs b/src/MariaDb/generated/cmdlets/SetAzMariaDbServerSecurityAlertPolicy_Update.cs index 1147ec838b69..14929887777d 100644 --- a/src/MariaDb/generated/cmdlets/SetAzMariaDbServerSecurityAlertPolicy_Update.cs +++ b/src/MariaDb/generated/cmdlets/SetAzMariaDbServerSecurityAlertPolicy_Update.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Creates or updates a threat detection policy. /// - /// [OpenAPI] ServerSecurityAlertPolicies_CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/securityAlertPolicies/{securityAlertPolicyName}" + /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/securityAlertPolicies/{securityAlertPolicyName}" /// [global::Microsoft.Azure.PowerShell.Cmdlets.MariaDb.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Set, @"AzMariaDbServerSecurityAlertPolicy_Update", SupportsShouldProcess = true)] diff --git a/src/MariaDb/generated/cmdlets/SetAzMariaDbServerSecurityAlertPolicy_UpdateExpanded.cs b/src/MariaDb/generated/cmdlets/SetAzMariaDbServerSecurityAlertPolicy_UpdateExpanded.cs index b9f50c1aa483..67e1b52cb995 100644 --- a/src/MariaDb/generated/cmdlets/SetAzMariaDbServerSecurityAlertPolicy_UpdateExpanded.cs +++ b/src/MariaDb/generated/cmdlets/SetAzMariaDbServerSecurityAlertPolicy_UpdateExpanded.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Creates or updates a threat detection policy. /// - /// [OpenAPI] ServerSecurityAlertPolicies_CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/securityAlertPolicies/{securityAlertPolicyName}" + /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/securityAlertPolicies/{securityAlertPolicyName}" /// [global::Microsoft.Azure.PowerShell.Cmdlets.MariaDb.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Set, @"AzMariaDbServerSecurityAlertPolicy_UpdateExpanded", SupportsShouldProcess = true)] diff --git a/src/MariaDb/generated/cmdlets/UpdateAzMariaDbConfiguration_UpdateExpanded.cs b/src/MariaDb/generated/cmdlets/UpdateAzMariaDbConfiguration_UpdateExpanded.cs index f4139d33593c..e1e0f9595523 100644 --- a/src/MariaDb/generated/cmdlets/UpdateAzMariaDbConfiguration_UpdateExpanded.cs +++ b/src/MariaDb/generated/cmdlets/UpdateAzMariaDbConfiguration_UpdateExpanded.cs @@ -9,8 +9,9 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Updates a configuration of a server. /// - /// [OpenAPI] Configurations_CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/configurations/{configurationName}" + /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/configurations/{configurationName}" /// + [global::Microsoft.Azure.PowerShell.Cmdlets.MariaDb.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMariaDbConfiguration_UpdateExpanded", SupportsShouldProcess = true)] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfiguration))] [global::Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Description(@"Updates a configuration of a server.")] diff --git a/src/MariaDb/generated/cmdlets/UpdateAzMariaDbConfiguration_UpdateViaIdentityExpanded.cs b/src/MariaDb/generated/cmdlets/UpdateAzMariaDbConfiguration_UpdateViaIdentityExpanded.cs index e433325de105..1bcef6b31d2a 100644 --- a/src/MariaDb/generated/cmdlets/UpdateAzMariaDbConfiguration_UpdateViaIdentityExpanded.cs +++ b/src/MariaDb/generated/cmdlets/UpdateAzMariaDbConfiguration_UpdateViaIdentityExpanded.cs @@ -9,8 +9,9 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Updates a configuration of a server. /// - /// [OpenAPI] Configurations_CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/configurations/{configurationName}" + /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/configurations/{configurationName}" /// + [global::Microsoft.Azure.PowerShell.Cmdlets.MariaDb.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMariaDbConfiguration_UpdateViaIdentityExpanded", SupportsShouldProcess = true)] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfiguration))] [global::Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Description(@"Updates a configuration of a server.")] diff --git a/src/MariaDb/generated/cmdlets/UpdateAzMariaDbFirewallRule_UpdateExpanded.cs b/src/MariaDb/generated/cmdlets/UpdateAzMariaDbFirewallRule_UpdateExpanded.cs index aea98dfd6060..ea0392547d36 100644 --- a/src/MariaDb/generated/cmdlets/UpdateAzMariaDbFirewallRule_UpdateExpanded.cs +++ b/src/MariaDb/generated/cmdlets/UpdateAzMariaDbFirewallRule_UpdateExpanded.cs @@ -9,8 +9,9 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Creates a new firewall rule or updates an existing firewall rule. /// - /// [OpenAPI] FirewallRules_CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/firewallRules/{firewallRuleName}" + /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/firewallRules/{firewallRuleName}" /// + [global::Microsoft.Azure.PowerShell.Cmdlets.MariaDb.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMariaDbFirewallRule_UpdateExpanded", SupportsShouldProcess = true)] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRule))] [global::Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Description(@"Creates a new firewall rule or updates an existing firewall rule.")] diff --git a/src/MariaDb/generated/cmdlets/UpdateAzMariaDbFirewallRule_UpdateViaIdentityExpanded.cs b/src/MariaDb/generated/cmdlets/UpdateAzMariaDbFirewallRule_UpdateViaIdentityExpanded.cs index 883876bd63d3..4be5bc471b7d 100644 --- a/src/MariaDb/generated/cmdlets/UpdateAzMariaDbFirewallRule_UpdateViaIdentityExpanded.cs +++ b/src/MariaDb/generated/cmdlets/UpdateAzMariaDbFirewallRule_UpdateViaIdentityExpanded.cs @@ -9,8 +9,9 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Creates a new firewall rule or updates an existing firewall rule. /// - /// [OpenAPI] FirewallRules_CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/firewallRules/{firewallRuleName}" + /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/firewallRules/{firewallRuleName}" /// + [global::Microsoft.Azure.PowerShell.Cmdlets.MariaDb.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMariaDbFirewallRule_UpdateViaIdentityExpanded", SupportsShouldProcess = true)] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRule))] [global::Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Description(@"Creates a new firewall rule or updates an existing firewall rule.")] diff --git a/src/MariaDb/generated/cmdlets/UpdateAzMariaDbServer_Update.cs b/src/MariaDb/generated/cmdlets/UpdateAzMariaDbServer_Update.cs index e94f544b5952..b9c3dd08cf9f 100644 --- a/src/MariaDb/generated/cmdlets/UpdateAzMariaDbServer_Update.cs +++ b/src/MariaDb/generated/cmdlets/UpdateAzMariaDbServer_Update.cs @@ -11,7 +11,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Updates an existing server. The request body can contain one to many of the properties present in the normal server definition. /// /// - /// [OpenAPI] Servers_Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}" + /// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}" /// [global::Microsoft.Azure.PowerShell.Cmdlets.MariaDb.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMariaDbServer_Update", SupportsShouldProcess = true)] diff --git a/src/MariaDb/generated/cmdlets/UpdateAzMariaDbServer_UpdateExpanded.cs b/src/MariaDb/generated/cmdlets/UpdateAzMariaDbServer_UpdateExpanded.cs index da1295c8c98f..d5b142dd18c3 100644 --- a/src/MariaDb/generated/cmdlets/UpdateAzMariaDbServer_UpdateExpanded.cs +++ b/src/MariaDb/generated/cmdlets/UpdateAzMariaDbServer_UpdateExpanded.cs @@ -11,7 +11,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Updates an existing server. The request body can contain one to many of the properties present in the normal server definition. /// /// - /// [OpenAPI] Servers_Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}" + /// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}" /// [global::Microsoft.Azure.PowerShell.Cmdlets.MariaDb.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMariaDbServer_UpdateExpanded", SupportsShouldProcess = true)] diff --git a/src/MariaDb/generated/cmdlets/UpdateAzMariaDbServer_UpdateViaIdentity.cs b/src/MariaDb/generated/cmdlets/UpdateAzMariaDbServer_UpdateViaIdentity.cs index 1fd667307df0..5624a463b4d0 100644 --- a/src/MariaDb/generated/cmdlets/UpdateAzMariaDbServer_UpdateViaIdentity.cs +++ b/src/MariaDb/generated/cmdlets/UpdateAzMariaDbServer_UpdateViaIdentity.cs @@ -11,7 +11,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Updates an existing server. The request body can contain one to many of the properties present in the normal server definition. /// /// - /// [OpenAPI] Servers_Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}" + /// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}" /// [global::Microsoft.Azure.PowerShell.Cmdlets.MariaDb.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMariaDbServer_UpdateViaIdentity", SupportsShouldProcess = true)] diff --git a/src/MariaDb/generated/cmdlets/UpdateAzMariaDbServer_UpdateViaIdentityExpanded.cs b/src/MariaDb/generated/cmdlets/UpdateAzMariaDbServer_UpdateViaIdentityExpanded.cs index c3449d91417d..14ddcce89957 100644 --- a/src/MariaDb/generated/cmdlets/UpdateAzMariaDbServer_UpdateViaIdentityExpanded.cs +++ b/src/MariaDb/generated/cmdlets/UpdateAzMariaDbServer_UpdateViaIdentityExpanded.cs @@ -11,7 +11,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Updates an existing server. The request body can contain one to many of the properties present in the normal server definition. /// /// - /// [OpenAPI] Servers_Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}" + /// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}" /// [global::Microsoft.Azure.PowerShell.Cmdlets.MariaDb.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMariaDbServer_UpdateViaIdentityExpanded", SupportsShouldProcess = true)] diff --git a/src/MariaDb/generated/cmdlets/UpdateAzMariaDbVirtualNetworkRule_UpdateExpanded.cs b/src/MariaDb/generated/cmdlets/UpdateAzMariaDbVirtualNetworkRule_UpdateExpanded.cs index 84eb7010fc83..23a18aa03f55 100644 --- a/src/MariaDb/generated/cmdlets/UpdateAzMariaDbVirtualNetworkRule_UpdateExpanded.cs +++ b/src/MariaDb/generated/cmdlets/UpdateAzMariaDbVirtualNetworkRule_UpdateExpanded.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Creates or updates an existing virtual network rule. /// - /// [OpenAPI] VirtualNetworkRules_CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/virtualNetworkRules/{virtualNetworkRuleName}" + /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/virtualNetworkRules/{virtualNetworkRuleName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMariaDbVirtualNetworkRule_UpdateExpanded", SupportsShouldProcess = true)] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRule))] diff --git a/src/MariaDb/generated/cmdlets/UpdateAzMariaDbVirtualNetworkRule_UpdateViaIdentityExpanded.cs b/src/MariaDb/generated/cmdlets/UpdateAzMariaDbVirtualNetworkRule_UpdateViaIdentityExpanded.cs index e2fcbaab8a7a..9c1b129a95cb 100644 --- a/src/MariaDb/generated/cmdlets/UpdateAzMariaDbVirtualNetworkRule_UpdateViaIdentityExpanded.cs +++ b/src/MariaDb/generated/cmdlets/UpdateAzMariaDbVirtualNetworkRule_UpdateViaIdentityExpanded.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Cmdlets /// Creates or updates an existing virtual network rule. /// - /// [OpenAPI] VirtualNetworkRules_CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/virtualNetworkRules/{virtualNetworkRuleName}" + /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMariaDB/servers/{serverName}/virtualNetworkRules/{virtualNetworkRuleName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMariaDbVirtualNetworkRule_UpdateViaIdentityExpanded", SupportsShouldProcess = true)] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRule))] diff --git a/src/MariaDb/generated/runtime/BuildTime/Cmdlets/ExportPsd1.cs b/src/MariaDb/generated/runtime/BuildTime/Cmdlets/ExportPsd1.cs index 6d650afb13f3..4401f2ff95e7 100644 --- a/src/MariaDb/generated/runtime/BuildTime/Cmdlets/ExportPsd1.cs +++ b/src/MariaDb/generated/runtime/BuildTime/Cmdlets/ExportPsd1.cs @@ -49,7 +49,7 @@ protected override void ProcessRecord() throw new ArgumentException($"Custom folder '{CustomFolder}' does not exist"); } - string version = Convert.ToString(@"0.0.1"); + string version = Convert.ToString(@"0.1.0"); // Validate the module version should be semantic version // Following regex is official from https://semver.org/ Regex rx = new Regex(@"^(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)(?:-((?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?$", RegexOptions.Compiled); diff --git a/src/MariaDb/generated/runtime/BuildTime/MarkdownRenderer.cs b/src/MariaDb/generated/runtime/BuildTime/MarkdownRenderer.cs index 4dd989c2c64f..ea7a1ff17c2c 100644 --- a/src/MariaDb/generated/runtime/BuildTime/MarkdownRenderer.cs +++ b/src/MariaDb/generated/runtime/BuildTime/MarkdownRenderer.cs @@ -75,20 +75,19 @@ public static void WriteMarkdowns(IEnumerable variantGroups, PsMod sb.Append($"### {output}{Environment.NewLine}{Environment.NewLine}"); } - sb.Append($"## ALIASES{Environment.NewLine}{Environment.NewLine}"); + sb.Append($"## NOTES{Environment.NewLine}{Environment.NewLine}"); + sb.Append($"ALIASES{Environment.NewLine}{Environment.NewLine}"); foreach (var alias in markdownInfo.Aliases) { sb.Append($"### {alias}{Environment.NewLine}{Environment.NewLine}"); } - - sb.Append($"## NOTES{Environment.NewLine}{Environment.NewLine}"); if (markdownInfo.ComplexInterfaceInfos.Any()) { - sb.Append($"### {ComplexParameterHeader}"); + sb.Append($"{ComplexParameterHeader}{Environment.NewLine}"); } foreach (var complexInterfaceInfo in markdownInfo.ComplexInterfaceInfos) { - sb.Append($"#### {complexInterfaceInfo.ToNoteOutput(includeDashes: true, includeBackticks: true)}{Environment.NewLine}{Environment.NewLine}"); + sb.Append($"{complexInterfaceInfo.ToNoteOutput(includeDashes: true, includeBackticks: true)}{Environment.NewLine}{Environment.NewLine}"); } sb.Append($"## RELATED LINKS{Environment.NewLine}{Environment.NewLine}"); diff --git a/src/MariaDb/generated/runtime/BuildTime/Models/PsHelpMarkdownOutputs.cs b/src/MariaDb/generated/runtime/BuildTime/Models/PsHelpMarkdownOutputs.cs index 1952593b0cf4..10a9ae19e83f 100644 --- a/src/MariaDb/generated/runtime/BuildTime/Models/PsHelpMarkdownOutputs.cs +++ b/src/MariaDb/generated/runtime/BuildTime/Models/PsHelpMarkdownOutputs.cs @@ -103,7 +103,6 @@ public override string ToString() Default value: {ParameterInfo.DefaultValue} Accept pipeline input: {pipelineInput} Accept wildcard characters: {ParameterInfo.AcceptsWildcardCharacters} -Dynamic: {ParameterInfo.IsDynamic} ``` "; diff --git a/src/MariaDb/generated/runtime/BuildTime/Models/PsProxyOutputs.cs b/src/MariaDb/generated/runtime/BuildTime/Models/PsProxyOutputs.cs index 4ac931c75bcf..d3dc8ed576bf 100644 --- a/src/MariaDb/generated/runtime/BuildTime/Models/PsProxyOutputs.cs +++ b/src/MariaDb/generated/runtime/BuildTime/Models/PsProxyOutputs.cs @@ -271,7 +271,7 @@ public override string ToString() {CommentInfo.Synopsis.ToDescriptionFormat(false)} .Description {CommentInfo.Description.ToDescriptionFormat(false)} -{examples} +{examples}{inputsText}{outputsText}{notesText} .Link {CommentInfo.OnlineVersion}{relatedLinksText} #> @@ -415,7 +415,7 @@ internal static class PsProxyOutputExtensions public const string ItemSeparator = ", "; - public static readonly string ComplexParameterHeader = $"COMPLEX PARAMETER PROPERTIES{Environment.NewLine}To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables.{Environment.NewLine}{Environment.NewLine}"; + public static readonly string ComplexParameterHeader = $"COMPLEX PARAMETER PROPERTIES{Environment.NewLine}{Environment.NewLine}To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables.{Environment.NewLine}{Environment.NewLine}"; public static string ToPsBool(this bool value) => $"${value.ToString().ToLowerInvariant()}"; diff --git a/src/MariaDb/generated/runtime/HttpPipeline.cs b/src/MariaDb/generated/runtime/HttpPipeline.cs index 82ac8619cb0e..5b0dfd051ff1 100644 --- a/src/MariaDb/generated/runtime/HttpPipeline.cs +++ b/src/MariaDb/generated/runtime/HttpPipeline.cs @@ -47,7 +47,7 @@ public partial class SendAsyncFactory { /// /// This translates a generic-defined delegate for a listener into one that fits our ISendAsync pattern. - /// (Provided to support out-of-module delgation for Azure Cmdlets) + /// (Provided to support out-of-module delegation for Azure Cmdlets) /// /// The Pipeline Step as a delegate public SendAsyncFactory(SendAsyncStepDelegate step) => this.implementation = (request, listener, next) => @@ -85,4 +85,4 @@ public HttpPipeline Prepend(SendAsyncStepDelegate item) return this; } } -} \ No newline at end of file +} diff --git a/src/MariaDb/generated/runtime/HttpPipelineMocking.ps1 b/src/MariaDb/generated/runtime/HttpPipelineMocking.ps1 index f2233d4da507..b25e3fa0bd95 100644 --- a/src/MariaDb/generated/runtime/HttpPipelineMocking.ps1 +++ b/src/MariaDb/generated/runtime/HttpPipelineMocking.ps1 @@ -107,4 +107,4 @@ function It { } # set the HttpPipelineAppend for all the cmdlets -$PSDefaultParameterValues["*:HttpPipelineAppend"] = $Mock +$PSDefaultParameterValues["*:HttpPipelinePrepend"] = $Mock diff --git a/src/MariaDb/help/Az.MariaDb.md b/src/MariaDb/help/Az.MariaDb.md index da7fd096d02a..304dcaddd438 100644 --- a/src/MariaDb/help/Az.MariaDb.md +++ b/src/MariaDb/help/Az.MariaDb.md @@ -1,6 +1,6 @@ --- Module Name: Az.MariaDb -Module Guid: 95e6899e-a8a2-4071-afb8-6b33b6c15be0 +Module Guid: c3b6a676-7237-4989-99d0-9df520acda9f Download Help Link: https://docs.microsoft.com/en-us/powershell/module/az.mariadb Help Version: 1.0.0.0 Locale: en-US @@ -15,7 +15,7 @@ Microsoft Azure PowerShell: MariaDb cmdlets Gets information about a configuration of server. ### [Get-AzMariaDbConnectionString](Get-AzMariaDbConnectionString.md) -Get connection string of a MariaDb under a given framework. +Get connection string of a MariaDB under a given framework. ### [Get-AzMariaDbFirewallRule](Get-AzMariaDbFirewallRule.md) Gets information about a server firewall rule. @@ -32,11 +32,11 @@ Gets a virtual network rule. ### [New-AzMariaDbFirewallRule](New-AzMariaDbFirewallRule.md) Creates a new firewall rule or updates an existing firewall rule. -### [New-AzMariaDbServer](New-AzMariaDbServer.md) -Creates a new MariaDb. +### [New-AzMariaDbReplica](New-AzMariaDbReplica.md) +Creates a replica of a MariaDB server. -### [New-AzMariaDbServerReplica](New-AzMariaDbServerReplica.md) -Creates a replica of a MariaDb server. +### [New-AzMariaDbServer](New-AzMariaDbServer.md) +Creates a new MariaDB. ### [New-AzMariaDbVirtualNetworkRule](New-AzMariaDbVirtualNetworkRule.md) Creates or updates an existing virtual network rule. @@ -54,10 +54,11 @@ Deletes the virtual network rule with the given name. Restarts a server. ### [Restore-AzMariaDbServer](Restore-AzMariaDbServer.md) -Restore a MariaDb from a existing MariaDb. +Restore a MariaDB from a existing MariaDB. ### [Update-AzMariaDbConfiguration](Update-AzMariaDbConfiguration.md) Updates a configuration of a server. +Use Update-AzMariaDberver instead if you want update AdministratorLoginPassword, sku, etc. ### [Update-AzMariaDbFirewallRule](Update-AzMariaDbFirewallRule.md) Creates a new firewall rule or updates an existing firewall rule. @@ -65,6 +66,7 @@ Creates a new firewall rule or updates an existing firewall rule. ### [Update-AzMariaDbServer](Update-AzMariaDbServer.md) Updates an existing server. The request body can contain one to many of the properties present in the normal server definition. +Use Update-AzMariaDbConfiguration instead if you want update server parameters such as wait_timeout or net_retry_count. ### [Update-AzMariaDbVirtualNetworkRule](Update-AzMariaDbVirtualNetworkRule.md) Creates or updates an existing virtual network rule. diff --git a/src/MariaDb/help/Get-AzMariaDbConfiguration.md b/src/MariaDb/help/Get-AzMariaDbConfiguration.md index 8b6281ff8eaf..693779f88b77 100644 --- a/src/MariaDb/help/Get-AzMariaDbConfiguration.md +++ b/src/MariaDb/help/Get-AzMariaDbConfiguration.md @@ -320,6 +320,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ALIASES COMPLEX PARAMETER PROPERTIES + To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. diff --git a/src/MariaDb/help/Get-AzMariaDbConnectionString.md b/src/MariaDb/help/Get-AzMariaDbConnectionString.md index 361936adc73d..fc55a855ac66 100644 --- a/src/MariaDb/help/Get-AzMariaDbConnectionString.md +++ b/src/MariaDb/help/Get-AzMariaDbConnectionString.md @@ -8,7 +8,7 @@ schema: 2.0.0 # Get-AzMariaDbConnectionString ## SYNOPSIS -Get connection string of a MariaDb under a given framework. +Get connection string of a MariaDB under a given framework. ## SYNTAX @@ -25,7 +25,7 @@ Get-AzMariaDbConnectionString -Client -InputObject [-DefaultP ``` ## DESCRIPTION -Get connection string of a MariaDb under a given framework. +Get connection string of a MariaDB under a given framework. ## EXAMPLES @@ -157,6 +157,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ALIASES COMPLEX PARAMETER PROPERTIES + To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. diff --git a/src/MariaDb/help/Get-AzMariaDbFirewallRule.md b/src/MariaDb/help/Get-AzMariaDbFirewallRule.md index 1c872cd87401..b2ff3a78c00b 100644 --- a/src/MariaDb/help/Get-AzMariaDbFirewallRule.md +++ b/src/MariaDb/help/Get-AzMariaDbFirewallRule.md @@ -168,6 +168,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ALIASES COMPLEX PARAMETER PROPERTIES + To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. diff --git a/src/MariaDb/help/Get-AzMariaDbReplica.md b/src/MariaDb/help/Get-AzMariaDbReplica.md index 1a24e7d0ee04..2b5472b4e6b6 100644 --- a/src/MariaDb/help/Get-AzMariaDbReplica.md +++ b/src/MariaDb/help/Get-AzMariaDbReplica.md @@ -26,10 +26,10 @@ List all the replicas for a given server. ```powershell PS C:\> Get-AzMariaDbReplica -ServerName mariadb-test-szp6dt -ResourceGroupName mariadb-test-qu5ov0 -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mariadb-test-szp6dt-rep428 eastus zmoxhpgjqc 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled -mariadb-test-szp6dt-rep154 eastus zcsxhpasdc 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mariadb-test-szp6dt-rep428 eastus zmoxhpgjqc 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled +mariadb-test-szp6dt-rep154 eastus zcsxhpasdc 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled ``` This command lists all replica DB under a MariaDB. diff --git a/src/MariaDb/help/Get-AzMariaDbServer.md b/src/MariaDb/help/Get-AzMariaDbServer.md index 6cf1f6289442..d8cb45275e3f 100644 --- a/src/MariaDb/help/Get-AzMariaDbServer.md +++ b/src/MariaDb/help/Get-AzMariaDbServer.md @@ -43,22 +43,22 @@ Gets information about a server. ```powershell PS C:\> Get-AzMariaDbServer -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mrdb01 eastus dolauli 10.2 5120 B_Gen5_1 Basic Enabled -wyunchi-10 eastus wyunchi 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled -wyunchi eastus wyunchi 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled -wyunchi-eastus eastus wyunchi 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled -mariadb-test-h3pame eastus qiszomtkpf 10.2 5120 B_Gen5_1 Basic Enabled -mariadb-test-4rmtig eastus xofavpndqj 10.2 5120 B_Gen5_1 Basic Enabled -mariadb-test-szp6dt eastus zmoxhpgjqc 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled -mariadb-test-9pebvn eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled -mariadb-test-szp6dt-rep428 eastus zmoxhpgjqc 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled -mariadb-asd-01 eastus adminuser 10.2 5120 B_Gen5_1 Basic Enabled -rst-001 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled -rst-002 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled -rstrgp02-rep-003 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled -rstrgp02-rep-004 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mrdb01 eastus dolauli 10.2 5120 B_Gen5_1 Basic Enabled +wyunchi-10 eastus wyunchi 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled +wyunchi eastus wyunchi 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled +wyunchi-eastus eastus wyunchi 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled +mariadb-test-h3pame eastus qiszomtkpf 10.2 5120 B_Gen5_1 Basic Enabled +mariadb-test-4rmtig eastus xofavpndqj 10.2 5120 B_Gen5_1 Basic Enabled +mariadb-test-szp6dt eastus zmoxhpgjqc 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled +mariadb-test-9pebvn eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled +mariadb-test-szp6dt-rep428 eastus zmoxhpgjqc 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled +mariadb-asd-01 eastus adminuser 10.2 5120 B_Gen5_1 Basic Enabled +rst-001 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled +rst-002 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled +rstrgp02-rep-003 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled +rstrgp02-rep-004 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled ``` This command lists all MariaDB under a subscriptions. @@ -67,18 +67,18 @@ This command lists all MariaDB under a subscriptions. ```powershell PS C:\> Get-AzMariaDbServer -ResourceGroupName mariadb-test-qu5ov0 -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mariadb-test-h3pame eastus qiszomtkpf 10.2 5120 B_Gen5_1 Basic Enabled -mariadb-test-4rmtig eastus xofavpndqj 10.2 5120 B_Gen5_1 Basic Enabled -mariadb-test-szp6dt eastus zmoxhpgjqc 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled -mariadb-test-9pebvn eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled -mariadb-test-szp6dt-rep428 eastus zmoxhpgjqc 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled -mariadb-asd-01 eastus adminuser 10.2 5120 B_Gen5_1 Basic Enabled -rst-001 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled -rst-002 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled -rstrgp02-rep-003 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled -rstrgp02-rep-004 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mariadb-test-h3pame eastus qiszomtkpf 10.2 5120 B_Gen5_1 Basic Enabled +mariadb-test-4rmtig eastus xofavpndqj 10.2 5120 B_Gen5_1 Basic Enabled +mariadb-test-szp6dt eastus zmoxhpgjqc 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled +mariadb-test-9pebvn eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled +mariadb-test-szp6dt-rep428 eastus zmoxhpgjqc 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled +mariadb-asd-01 eastus adminuser 10.2 5120 B_Gen5_1 Basic Enabled +rst-001 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled +rst-002 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled +rstrgp02-rep-003 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled +rstrgp02-rep-004 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled ``` This command lists all MariaDB under a resource group. @@ -87,9 +87,9 @@ This command lists all MariaDB under a resource group. ```powershell PS C:\> Get-AzMariaDbServer -ResourceGroupName mariadb-test-qu5ov0 -Name mariadb-test-h3pame -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mariadb-test-h3pame eastus qiszomtkpf 10.2 5120 B_Gen5_1 Basic Enabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mariadb-test-h3pame eastus qiszomtkpf 10.2 5120 B_Gen5_1 Basic Enabled ``` This command gets a MariaDB. @@ -189,6 +189,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ALIASES COMPLEX PARAMETER PROPERTIES + To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. diff --git a/src/MariaDb/help/Get-AzMariaDbVirtualNetworkRule.md b/src/MariaDb/help/Get-AzMariaDbVirtualNetworkRule.md index cad32c78b54d..27b4c7e1faaa 100644 --- a/src/MariaDb/help/Get-AzMariaDbVirtualNetworkRule.md +++ b/src/MariaDb/help/Get-AzMariaDbVirtualNetworkRule.md @@ -183,6 +183,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ALIASES COMPLEX PARAMETER PROPERTIES + To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. diff --git a/src/MariaDb/help/New-AzMariaDbFirewallRule.md b/src/MariaDb/help/New-AzMariaDbFirewallRule.md index 69f73afcf993..473a6d5c95a6 100644 --- a/src/MariaDb/help/New-AzMariaDbFirewallRule.md +++ b/src/MariaDb/help/New-AzMariaDbFirewallRule.md @@ -12,10 +12,25 @@ Creates a new firewall rule or updates an existing firewall rule. ## SYNTAX +### CreateExpanded (Default) ``` -New-AzMariaDbFirewallRule -Name -ResourceGroupName -ServerName - -EndIPAddress -StartIPAddress [-SubscriptionId ] [-DefaultProfile ] - [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] +New-AzMariaDbFirewallRule -ResourceGroupName -ServerName -EndIPAddress + -StartIPAddress [-Name ] [-SubscriptionId ] [-DefaultProfile ] [-AsJob] + [-NoWait] [-Confirm] [-WhatIf] [] +``` + +### AllowAll +``` +New-AzMariaDbFirewallRule -ResourceGroupName -ServerName -AllowAll [-Name ] + [-SubscriptionId ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] + [] +``` + +### ClientIPAddress +``` +New-AzMariaDbFirewallRule -ResourceGroupName -ServerName -ClientIPAddress + [-Name ] [-SubscriptionId ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] + [-WhatIf] [] ``` ## DESCRIPTION @@ -27,15 +42,52 @@ Creates a new firewall rule or updates an existing firewall rule. ```powershell PS C:\> New-AzMariaDbFirewallRule -Name firewall-101 -ResourceGroupName mariadb-test-qu5ov0 -ServerName mariadb-asd-01 -EndIPAddress 0.0.2.255 -StartIPAddress 0.0.2.1 -Name Type ----- ---- -firewall-101 Microsoft.DBforMariaDB/servers/firewallRules +Name StartIPAddress EndIPAddress +---- -------------- ------------ +firewall-101 0.0.2.1 0.0.2.255 ``` This command creates a firewall rule under a MariaDB. +### Example 2: Create a new MariaDB Firewall Rule using -ClientIPAddress. +```powershell +PS C:\> New-AzMariaDbFirewallRule -ResourceGroupName mariadb-test-qu5ov0 -ServerName mariadb-asd-01 -ClientIPAddress 0.0.0.1 + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +ClientIPAddress_2020-08-11_18-19-27 0.0.0.1 0.0.0.1 +``` + +This cmdlets create a MariaDB Firewall Rule using -ClientIPAddress. + +### Example 3: Create a new MariaDB Firewall Rule to allow all IPs +```powershell +PS C:\> New-AzMariaDbFirewallRule -ResourceGroupName mariadb-test-qu5ov0 -ServerName mariadb-asd-01 -AllowAll + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +AllowAll_2020-08-11_18-19-27 0.0.0.0 255.255.255.255 +``` + +This cmdlets create a new MariaDB Firewall Rule to allow all IPs. + ## PARAMETERS +### -AllowAll +Present to allow all range IPs, from 0.0.0.0 to 255.255.255.255. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: AllowAll +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -AsJob Run the command as a job @@ -51,6 +103,22 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -ClientIPAddress +Client specified single IP of the server firewall rule. +Must be IPv4 format. + +```yaml +Type: System.String +Parameter Sets: ClientIPAddress +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. @@ -72,7 +140,7 @@ Must be IPv4 format. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: True @@ -84,13 +152,15 @@ Accept wildcard characters: False ### -Name The name of the server firewall rule. +If not specified, the default is undefined. +If AllowAll is present, the default name is AllowAll_yyyy-MM-dd_HH-mm-ss. ```yaml Type: System.String Parameter Sets: (All) Aliases: FirewallRuleName -Required: True +Required: False Position: Named Default value: None Accept pipeline input: False @@ -149,7 +219,7 @@ Must be IPv4 format. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: True diff --git a/src/MariaDb/help/New-AzMariaDbServerReplica.md b/src/MariaDb/help/New-AzMariaDbReplica.md similarity index 78% rename from src/MariaDb/help/New-AzMariaDbServerReplica.md rename to src/MariaDb/help/New-AzMariaDbReplica.md index 2840edde500d..2fcab2076aac 100644 --- a/src/MariaDb/help/New-AzMariaDbServerReplica.md +++ b/src/MariaDb/help/New-AzMariaDbReplica.md @@ -1,58 +1,70 @@ --- external help file: Module Name: Az.MariaDb -online version: https://docs.microsoft.com/en-us/powershell/module/az.mariadb/new-azmariadbserverreplica +online version: https://docs.microsoft.com/en-us/powershell/module/az.mariadb/new-azmariadbreplica schema: 2.0.0 --- -# New-AzMariaDbServerReplica +# New-AzMariaDbReplica ## SYNOPSIS -Creates a replica of a MariaDb server. +Creates a replica of a MariaDB server. ## SYNTAX ### ServerName (Default) ``` -New-AzMariaDbServerReplica -Name -ResourceGroupName -ServerName +New-AzMariaDbReplica -MasterName -ReplicaName -ResourceGroupName [-SubscriptionId ] [-Location ] [-Sku ] [-Tag ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] ``` ### ServerObject ``` -New-AzMariaDbServerReplica -InputObject -Name [-SubscriptionId ] - [-Location ] [-Sku ] [-Tag ] [-DefaultProfile ] [-AsJob] [-NoWait] - [-Confirm] [-WhatIf] [] +New-AzMariaDbReplica -Master -ReplicaName [-SubscriptionId ] [-Location ] + [-Sku ] [-Tag ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] + [] ``` ## DESCRIPTION -Creates a replica of a MariaDb server. +Creates a replica of a MariaDB server. ## EXAMPLES ### Example 1: Create a replica db for a MariaDB ```powershell -PS C:\> New-AzMariaDbServerReplica -ServerName mariadb-test-9pebvn -Name mariadb-test-9pebvn-rep01 -ResourceGroupName mariadb-test-qu5ov0 +PS C:\> New-AzMariaDbReplica -MasterName mariadb-test-9pebvn -ReplicaName mariadb-test-9pebvn-rep01 -ResourceGroupName mariadb-test-qu5ov0 -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mariadb-test-9pebvn-rep01 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mariadb-test-9pebvn-rep01 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled ``` This command creates a replica db for a MariaDB. ### Example 2: Create a replica db for a MariaDB ```powershell -PS C:\> Get-AzMariaDbServer -Name mariadb-test-9pebvn -ResourceGroupName mariadb-test-qu5ov0 | New-AzMariaDbServerReplica -Name mariadb-test-9pebvn-rep02 +PS C:\> Get-AzMariaDbServer -Name mariadb-test-9pebvn -ResourceGroupName mariadb-test-qu5ov0 | New-AzMariaDbReplica -ReplicaName mariadb-test-9pebvn-rep02 -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mariadb-test-9pebvn-rep02 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mariadb-test-9pebvn-rep02 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled ``` This command creates a replica db for a MariaDB. +### Example 3: Create a replica db for a MariaDB +```powershell +PS C:\> $mariaDb = Get-AzMariaDbServer -Name mariadb-test-9pebvn -ResourceGroupName mariadb-test-qu5ov0 +PS C:\> New-AzMariaDbReplica -Master $mariaDb -ReplicaName mariadb-test-9pebvn-rep03 + +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mariadb-test-9pebvn-rep03 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled +``` + +This command with parameter inputobject creates a replica db with parameter inputobject for a MariaDB. + ## PARAMETERS ### -AsJob @@ -86,44 +98,44 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -InputObject -The source server object to restore from. -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. +### -Location +The location the resource resides in. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer -Parameter Sets: ServerObject +Type: System.String +Parameter Sets: (All) Aliases: -Required: True +Required: False Position: Named Default value: None -Accept pipeline input: True (ByValue) +Accept pipeline input: False Accept wildcard characters: False ``` -### -Location -The location the resource resides in. +### -Master +The source server object to restore from. +To construct, see NOTES section for MASTER properties and create a hash table. ```yaml -Type: System.String -Parameter Sets: (All) -Aliases: +Type: Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer +Parameter Sets: ServerObject +Aliases: InputObject -Required: False +Required: True Position: Named Default value: None -Accept pipeline input: False +Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` -### -Name -Replica name. +### -MasterName +MariaDB server name. ```yaml Type: System.String -Parameter Sets: (All) -Aliases: ReplicaServerName +Parameter Sets: ServerName +Aliases: ServerName Required: True Position: Named @@ -147,13 +159,13 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -ResourceGroupName -You can obtain this value from the Azure Resource Manager API or the portal. +### -ReplicaName +Replica name. ```yaml Type: System.String -Parameter Sets: ServerName -Aliases: +Parameter Sets: (All) +Aliases: ReplicaServerName, Name Required: True Position: Named @@ -162,8 +174,8 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -ServerName -MariaDb server name. +### -ResourceGroupName +You can obtain this value from the Azure Resource Manager API or the portal. ```yaml Type: System.String @@ -270,10 +282,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ALIASES COMPLEX PARAMETER PROPERTIES + To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : The source server object to restore from. +MASTER : The source server object to restore from. - `Location `: The location the resource resides in. - `[Tag ]`: Application-specific metadata in the form of key-value pairs. - `[(Any) ]`: This indicates any property can be added to this object. diff --git a/src/MariaDb/help/New-AzMariaDbServer.md b/src/MariaDb/help/New-AzMariaDbServer.md index 1d154785a7bd..0e97218eb77a 100644 --- a/src/MariaDb/help/New-AzMariaDbServer.md +++ b/src/MariaDb/help/New-AzMariaDbServer.md @@ -8,7 +8,7 @@ schema: 2.0.0 # New-AzMariaDbServer ## SYNOPSIS -Creates a new MariaDb. +Creates a new MariaDB. ## SYNTAX @@ -22,7 +22,7 @@ New-AzMariaDbServer -Name -ResourceGroupName -AdministratorLog ``` ## DESCRIPTION -Creates a new MariaDb. +Creates a new MariaDB. ## EXAMPLES @@ -34,9 +34,9 @@ Supply values for the following parameters: AdministratorUsername: adminuser AdministratorLoginPassword: ************ -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mariadb-aassd-01 eastus adminuser 10.2 5120 B_Gen5_1 Basic Enabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mariadb-aassd-01 eastus adminuser 10.2 5120 B_Gen5_1 Basic Enabled ``` This command creates a new MariaDB. @@ -150,7 +150,7 @@ Accept wildcard characters: False ``` ### -Name -MariaDb server name. +MariaDB server name. ```yaml Type: System.String diff --git a/src/MariaDb/help/Remove-AzMariaDbFirewallRule.md b/src/MariaDb/help/Remove-AzMariaDbFirewallRule.md index 893bc04e5a84..b010123c263e 100644 --- a/src/MariaDb/help/Remove-AzMariaDbFirewallRule.md +++ b/src/MariaDb/help/Remove-AzMariaDbFirewallRule.md @@ -224,6 +224,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ALIASES COMPLEX PARAMETER PROPERTIES + To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. diff --git a/src/MariaDb/help/Remove-AzMariaDbServer.md b/src/MariaDb/help/Remove-AzMariaDbServer.md index 079bf0c177a6..69755d5fd315 100644 --- a/src/MariaDb/help/Remove-AzMariaDbServer.md +++ b/src/MariaDb/help/Remove-AzMariaDbServer.md @@ -216,6 +216,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ALIASES COMPLEX PARAMETER PROPERTIES + To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. diff --git a/src/MariaDb/help/Remove-AzMariaDbVirtualNetworkRule.md b/src/MariaDb/help/Remove-AzMariaDbVirtualNetworkRule.md index 291157481c56..1c876c0f64ea 100644 --- a/src/MariaDb/help/Remove-AzMariaDbVirtualNetworkRule.md +++ b/src/MariaDb/help/Remove-AzMariaDbVirtualNetworkRule.md @@ -224,6 +224,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ALIASES COMPLEX PARAMETER PROPERTIES + To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. diff --git a/src/MariaDb/help/Restart-AzMariaDbServer.md b/src/MariaDb/help/Restart-AzMariaDbServer.md index 5252ea9e724e..fef910276280 100644 --- a/src/MariaDb/help/Restart-AzMariaDbServer.md +++ b/src/MariaDb/help/Restart-AzMariaDbServer.md @@ -216,6 +216,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ALIASES COMPLEX PARAMETER PROPERTIES + To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. diff --git a/src/MariaDb/help/Restore-AzMariaDbServer.md b/src/MariaDb/help/Restore-AzMariaDbServer.md index 83fa3eb3ff29..7c6cc4754183 100644 --- a/src/MariaDb/help/Restore-AzMariaDbServer.md +++ b/src/MariaDb/help/Restore-AzMariaDbServer.md @@ -8,7 +8,7 @@ schema: 2.0.0 # Restore-AzMariaDbServer ## SYNOPSIS -Restore a MariaDb from a existing MariaDb. +Restore a MariaDB from a existing MariaDB. ## SYNTAX @@ -19,7 +19,7 @@ Restore-AzMariaDbServer -Name -RestorePointInTime [-InputObj ``` ## DESCRIPTION -Restore a MariaDb from a existing MariaDb. +Restore a MariaDB from a existing MariaDB. ## EXAMPLES @@ -27,9 +27,9 @@ Restore a MariaDb from a existing MariaDb. ```powershell PS C:\> Restore-AzMariaDbServer -Name restore-db01 -ServerName mariadb-test-usegeo -ResourceGroupName mariadb-test-4rih5z -UsePointInTimeRestore -RestorePointInTime $(Get-Date) -Location eastus -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -restore-db01 eastus adminuser 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +restore-db01 eastus adminuser 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled ``` This command restore a PointInTime MariaDB by server name. @@ -39,9 +39,9 @@ This command restore a PointInTime MariaDB by server name. PS C:\> $db = Get-AzMariaDbServer -Name mariadb-test-usegeo -ResourceGroupName mariadb-test-4rih5z PS C:\>Restore-AzMariaDbServer -Name restore-db02 -InputObject $db -UsePointInTimeRestore -RestorePointInTime $(Get-Date) -Location eastus -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -restore-db02 eastus adminuser 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +restore-db02 eastus adminuser 10.2 5120 GP_Gen5_4 GeneralPurpose Enabled ``` This command restore a PointInTime MariaDB by server object. @@ -265,6 +265,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ALIASES COMPLEX PARAMETER PROPERTIES + To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. diff --git a/src/MariaDb/help/Update-AzMariaDbConfiguration.md b/src/MariaDb/help/Update-AzMariaDbConfiguration.md index 7e85016ff2aa..700ee0e5db96 100644 --- a/src/MariaDb/help/Update-AzMariaDbConfiguration.md +++ b/src/MariaDb/help/Update-AzMariaDbConfiguration.md @@ -9,6 +9,7 @@ schema: 2.0.0 ## SYNOPSIS Updates a configuration of a server. +Use Update-AzMariaDbServer instead if you want update AdministratorLoginPassword, sku, etc. ## SYNTAX @@ -27,10 +28,11 @@ Update-AzMariaDbConfiguration -InputObject [-Source ] ## DESCRIPTION Updates a configuration of a server. +Use Update-AzMariaDberver instead if you want update AdministratorLoginPassword, sku, etc. ## EXAMPLES -### Example 1: Update MariaDb configuration +### Example 1: Update MariaDB configuration ```powershell PS C:\> Update-AzMariaDbConfiguration -Name delayed_insert_timeout -Value 200 -ServerName mariadb-test-h3pame -ResourceGroupName mariadb-test-qu5ov0 @@ -39,7 +41,7 @@ Name Type delayed_insert_timeout Microsoft.DBforMariaDB/servers/configurations ``` -This command updates a MariaDb configuration. +This command updates a MariaDB configuration. ## PARAMETERS @@ -242,6 +244,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ALIASES COMPLEX PARAMETER PROPERTIES + To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. diff --git a/src/MariaDb/help/Update-AzMariaDbFirewallRule.md b/src/MariaDb/help/Update-AzMariaDbFirewallRule.md index dce592b06856..3c3550463e7f 100644 --- a/src/MariaDb/help/Update-AzMariaDbFirewallRule.md +++ b/src/MariaDb/help/Update-AzMariaDbFirewallRule.md @@ -19,6 +19,19 @@ Update-AzMariaDbFirewallRule -Name -ResourceGroupName -ServerN [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] ``` +### ClientIPAddress +``` +Update-AzMariaDbFirewallRule -Name -ResourceGroupName -ServerName + -ClientIPAddress [-SubscriptionId ] [-DefaultProfile ] [-AsJob] [-NoWait] + [-Confirm] [-WhatIf] [] +``` + +### ClientIPAddressViaIdentity +``` +Update-AzMariaDbFirewallRule -InputObject -ClientIPAddress + [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] +``` + ### UpdateViaIdentityExpanded ``` Update-AzMariaDbFirewallRule -InputObject -EndIPAddress -StartIPAddress @@ -30,16 +43,40 @@ Creates a new firewall rule or updates an existing firewall rule. ## EXAMPLES -### Example 1: Update MariaDb firewall rule +### Example 1: Update MariaDB firewall rule ```powershell PS C:\> Update-AzMariaDbFirewallRule -Name fr-cfgl3y -ServerName mariadb-test-4rmtig -ResourceGroupName mariadb-test-qu5ov0 -StartIPAddress 0.0.3.1 -EndIPAddress 0.0.3.255 -Name Type ----- ---- -fr-cfgl3y Microsoft.DBforMariaDB/servers/firewallRules +Name StartIPAddress EndIPAddress +---- -------------- ------------ +fr-cfgl3y 0.0.3.1 0.0.3.255 +``` + +This command updates a MariaDB firewall rule. + +### Example 2: Update MariaDB Firewall Rule by identity. +```powershell +PS C:\> $ID = "/subscriptions//resourceGroups/mariadb-test-qu5ov0/providers/Microsoft.DBforMariaDB/servers/mariadb-test-4rmtig/firewallRules/fr-cfgl3y" +PS C:\> Update-AzMariaDbFirewallRule -InputObject $ID -EndIPAddress 0.0.0.3 -StartIPAddress 0.0.0.2 + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +fr-cfgl3y 0.0.0.2 0.0.0.3 +``` + +The cmdlet updates MariaDB Firewall Rule by identity. + +### Example 3: Update MariaDB Firewall Rule by -ClientIPAddress. +```powershell +PS C:\> $ID = "/subscriptions//resourceGroups/mariadb-test-qu5ov0/providers/Microsoft.DBforMariaDB/servers/mariadb-test-4rmtig/firewallRules/fr-cfgl3y" +PS C:\> Update-AzMariaDbFirewallRule -InputObject $ID --ClientIPAddress 0.0.0.2 + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +fr-cfgl3y 0.0.0.2 0.0.0.2 ``` -This command updates a MariaDb firewall rule. +The cmdlet updates MariaDB Firewall Rule by -ClientIPAddress. ## PARAMETERS @@ -58,6 +95,22 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -ClientIPAddress +Client specified single IP of the server firewall rule. +Must be IPv4 format. + +```yaml +Type: System.String +Parameter Sets: ClientIPAddress, ClientIPAddressViaIdentity +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. @@ -79,7 +132,7 @@ Must be IPv4 format. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: True @@ -95,7 +148,7 @@ To construct, see NOTES section for INPUTOBJECT properties and create a hash tab ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity -Parameter Sets: UpdateViaIdentityExpanded +Parameter Sets: ClientIPAddressViaIdentity, UpdateViaIdentityExpanded Aliases: Required: True @@ -110,7 +163,7 @@ The name of the server firewall rule. ```yaml Type: System.String -Parameter Sets: UpdateExpanded +Parameter Sets: ClientIPAddress, UpdateExpanded Aliases: FirewallRuleName Required: True @@ -141,7 +194,7 @@ You can obtain this value from the Azure Resource Manager API or the portal. ```yaml Type: System.String -Parameter Sets: UpdateExpanded +Parameter Sets: ClientIPAddress, UpdateExpanded Aliases: Required: True @@ -156,7 +209,7 @@ The name of the server. ```yaml Type: System.String -Parameter Sets: UpdateExpanded +Parameter Sets: ClientIPAddress, UpdateExpanded Aliases: Required: True @@ -172,7 +225,7 @@ Must be IPv4 format. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: True @@ -187,7 +240,7 @@ The subscription ID that identifies an Azure subscription. ```yaml Type: System.String -Parameter Sets: UpdateExpanded +Parameter Sets: ClientIPAddress, UpdateExpanded Aliases: Required: False @@ -244,6 +297,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ALIASES COMPLEX PARAMETER PROPERTIES + To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. diff --git a/src/MariaDb/help/Update-AzMariaDbServer.md b/src/MariaDb/help/Update-AzMariaDbServer.md index 60baae978424..c85238706207 100644 --- a/src/MariaDb/help/Update-AzMariaDbServer.md +++ b/src/MariaDb/help/Update-AzMariaDbServer.md @@ -10,6 +10,7 @@ schema: 2.0.0 ## SYNOPSIS Updates an existing server. The request body can contain one to many of the properties present in the normal server definition. +Use Update-AzMariaDbConfiguration instead if you want update server parameters such as wait_timeout or net_retry_count. ## SYNTAX @@ -34,30 +35,31 @@ Update-AzMariaDbServer -InputObject [-AdministratorLoginPassw ## DESCRIPTION Updates an existing server. The request body can contain one to many of the properties present in the normal server definition. +Use Update-AzMariaDbConfiguration instead if you want update server parameters such as wait_timeout or net_retry_count. ## EXAMPLES -### Example 1: Update MariaDb +### Example 1: Update MariaDB ```powershell PS C:\> Update-AzMariaDbServer -Name mariadb-test-4rmtig -ResourceGroupName mariadb-test-qu5ov0 -StorageInMb 8192 -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mariadb-test-4rmtig eastus xofavpndqj 10.2 8192 B_Gen5_1 Basic Enabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mariadb-test-4rmtig eastus xofavpndqj 10.2 8192 B_Gen5_1 Basic Enabled ``` -This command updates a MariaDb. +This command updates a MariaDB. -### Example 2: Update MariaDb +### Example 2: Update MariaDB ```powershell PS C:\> Get-AzMariaDbServer -Name mariadb-test-4rmtig -ResourceGroupName mariadb-test-qu5ov0 | Update-AzMariaDbServer -StorageInMb (8192+1024) -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mariadb-test-4rmtig eastus xofavpndqj 10.2 9216 B_Gen5_1 Basic Enabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mariadb-test-4rmtig eastus xofavpndqj 10.2 9216 B_Gen5_1 Basic Enabled ``` -This command updates a MariaDb. +This command updates a MariaDB. ## PARAMETERS @@ -154,7 +156,7 @@ Accept wildcard characters: False ``` ### -Name -MariaDb server name +MariaDB server name ```yaml Type: System.String @@ -351,6 +353,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ALIASES COMPLEX PARAMETER PROPERTIES + To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. diff --git a/src/MariaDb/help/Update-AzMariaDbVirtualNetworkRule.md b/src/MariaDb/help/Update-AzMariaDbVirtualNetworkRule.md index c602423d7814..e8afce62f8e2 100644 --- a/src/MariaDb/help/Update-AzMariaDbVirtualNetworkRule.md +++ b/src/MariaDb/help/Update-AzMariaDbVirtualNetworkRule.md @@ -31,7 +31,7 @@ Creates or updates an existing virtual network rule. ## EXAMPLES -### Example 1: Update MariaDb virtual network rule +### Example 1: Update MariaDB virtual network rule ```powershell PS C:\> $vnet = Get-AzVirtualNetwork -Name vnet -ResourceGroupName mariadb-test-qu5ov0 PS C:\> Update-AzMariaDbVirtualNetworkRule -ServerName mariadb-test-9pebvn -ResourceGroupName mariadb-test-qu5ov0 -Name vnetrule-QdMJpU -SubnetId $vnet.Subnets[0].Id -IgnoreMissingVnetServiceEndpoint @@ -259,6 +259,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ALIASES COMPLEX PARAMETER PROPERTIES + To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. diff --git a/src/MariaDb/internal/Az.MariaDb.internal.psm1 b/src/MariaDb/internal/Az.MariaDb.internal.psm1 index 637f301b0395..3fde036013e2 100644 --- a/src/MariaDb/internal/Az.MariaDb.internal.psm1 +++ b/src/MariaDb/internal/Az.MariaDb.internal.psm1 @@ -1,6 +1,6 @@ # region Generated # Load the private module dll - $null = Import-Module -PassThru -Name (Join-Path $PSScriptRoot '../bin/Az.MariaDb.private.dll') + $null = Import-Module -PassThru -Name (Join-Path $PSScriptRoot '..\bin\Az.MariaDb.private.dll') # Get the private module's instance $instance = [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Module]::Instance @@ -36,196 +36,3 @@ Export-ModuleMember -Function $cmdletNames -Alias (Get-ScriptCmdlet -ScriptFolder $exportsPath -AsAlias) } # endregion - -# SIG # Begin signature block -# MIIjhQYJKoZIhvcNAQcCoIIjdjCCI3ICAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCDtCgBuYWbtIoqY -# S1GLHSslAfcFzhmQgKorxbV7u5hvZaCCDYEwggX/MIID56ADAgECAhMzAAABUZ6N -# j0Bxow5BAAAAAAFRMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p -# bmcgUENBIDIwMTEwHhcNMTkwNTAyMjEzNzQ2WhcNMjAwNTAyMjEzNzQ2WjB0MQsw -# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u -# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB -# AQCVWsaGaUcdNB7xVcNmdfZiVBhYFGcn8KMqxgNIvOZWNH9JYQLuhHhmJ5RWISy1 -# oey3zTuxqLbkHAdmbeU8NFMo49Pv71MgIS9IG/EtqwOH7upan+lIq6NOcw5fO6Os -# +12R0Q28MzGn+3y7F2mKDnopVu0sEufy453gxz16M8bAw4+QXuv7+fR9WzRJ2CpU -# 62wQKYiFQMfew6Vh5fuPoXloN3k6+Qlz7zgcT4YRmxzx7jMVpP/uvK6sZcBxQ3Wg -# B/WkyXHgxaY19IAzLq2QiPiX2YryiR5EsYBq35BP7U15DlZtpSs2wIYTkkDBxhPJ -# IDJgowZu5GyhHdqrst3OjkSRAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE -# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUV4Iarkq57esagu6FUBb270Zijc8w -# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 -# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDU0MTM1MB8GA1UdIwQYMBaAFEhu -# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu -# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w -# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx -# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAWg+A -# rS4Anq7KrogslIQnoMHSXUPr/RqOIhJX+32ObuY3MFvdlRElbSsSJxrRy/OCCZdS -# se+f2AqQ+F/2aYwBDmUQbeMB8n0pYLZnOPifqe78RBH2fVZsvXxyfizbHubWWoUf -# NW/FJlZlLXwJmF3BoL8E2p09K3hagwz/otcKtQ1+Q4+DaOYXWleqJrJUsnHs9UiL -# crVF0leL/Q1V5bshob2OTlZq0qzSdrMDLWdhyrUOxnZ+ojZ7UdTY4VnCuogbZ9Zs -# 9syJbg7ZUS9SVgYkowRsWv5jV4lbqTD+tG4FzhOwcRQwdb6A8zp2Nnd+s7VdCuYF -# sGgI41ucD8oxVfcAMjF9YX5N2s4mltkqnUe3/htVrnxKKDAwSYliaux2L7gKw+bD -# 1kEZ/5ozLRnJ3jjDkomTrPctokY/KaZ1qub0NUnmOKH+3xUK/plWJK8BOQYuU7gK -# YH7Yy9WSKNlP7pKj6i417+3Na/frInjnBkKRCJ/eYTvBH+s5guezpfQWtU4bNo/j -# 8Qw2vpTQ9w7flhH78Rmwd319+YTmhv7TcxDbWlyteaj4RK2wk3pY1oSz2JPE5PNu -# Nmd9Gmf6oePZgy7Ii9JLLq8SnULV7b+IP0UXRY9q+GdRjM2AEX6msZvvPCIoG0aY -# HQu9wZsKEK2jqvWi8/xdeeeSI9FN6K1w4oVQM4Mwggd6MIIFYqADAgECAgphDpDS -# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 -# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla -# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS -# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT -# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB -# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG -# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S -# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz -# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 -# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u -# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 -# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl -# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP -# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB -# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF -# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM -# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ -# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud -# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO -# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 -# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p -# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB -# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw -# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA -# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY -# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj -# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd -# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ -# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf -# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ -# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j -# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B -# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 -# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 -# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I -# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIVWjCCFVYCAQEwgZUwfjELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z -# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAVGejY9AcaMOQQAAAAABUTAN -# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor -# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgT2hF8z77 -# i3coRc1/a+HMs37HMqTgylfQhp/maHCBaOowQgYKKwYBBAGCNwIBDDE0MDKgFIAS -# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN -# BgkqhkiG9w0BAQEFAASCAQAB+16Og73RKGlaZcFGa3xPrOuBXqRcmcLObUh9Lyyh -# AN+kf7yeazhec5QdNsk1dCIlTqonYrRLsiRjapPQ1untnJXHnYC9wvMPC7wshg/w -# uYzeaIo0merGWaQUYC5HWsTUcki40egpVD0fIVlGoM0Z+/M4b6RGqA18qwbjJjxA -# dboJArGxrCDHN6kY1bxNnIHMyXPv4gHtwM+ETYscccE4PvcpK6dSHAUkjan99miE -# Bhhv/YcCb9qzegkHxoy/W/A3+/vc3Y6c3iIiZHzv76AOjLGr9UR3Ln2cIA+ERjGY -# 5OJ0/m1YUP++ZnN12M28xfWbJMnvjsnlpbT80ZfNfFYJoYIS5DCCEuAGCisGAQQB -# gjcDAwExghLQMIISzAYJKoZIhvcNAQcCoIISvTCCErkCAQMxDzANBglghkgBZQME -# AgEFADCCAVAGCyqGSIb3DQEJEAEEoIIBPwSCATswggE3AgEBBgorBgEEAYRZCgMB -# MDEwDQYJYIZIAWUDBAIBBQAEIDg7mN2BNk62H6Vck0+kI52UyIqTzOqD99Ykvx32 -# whdtAgZegg4ZTpsYEjIwMjAwNDEwMDMxNjQ1LjI2WjAEgAIB9KCB0KSBzTCByjEL -# MAkGA1UEBhMCVVMxCzAJBgNVBAgTAldBMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYD -# VQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJ -# cmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBF -# U046QUI0MS00QjI3LUYwMjYxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1w -# IFNlcnZpY2Wggg48MIIE8TCCA9mgAwIBAgITMwAAAQ31M4fq0I449QAAAAABDTAN -# BgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3Rv -# bjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0 -# aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMDAeFw0x -# OTEwMjMyMzE5MTdaFw0yMTAxMjEyMzE5MTdaMIHKMQswCQYDVQQGEwJVUzELMAkG -# A1UECBMCV0ExEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBD -# b3Jwb3JhdGlvbjEtMCsGA1UECxMkTWljcm9zb2Z0IElyZWxhbmQgT3BlcmF0aW9u -# cyBMaW1pdGVkMSYwJAYDVQQLEx1UaGFsZXMgVFNTIEVTTjpBQjQxLTRCMjctRjAy -# NjElMCMGA1UEAxMcTWljcm9zb2Z0IFRpbWUtU3RhbXAgU2VydmljZTCCASIwDQYJ -# KoZIhvcNAQEBBQADggEPADCCAQoCggEBAMTeTgSHFYX73w76Ybuxkk3hzx4g7CB5 -# d7c86nTEHtvAFgKKszezfJv3CeFwYs+t52xmI0OFFMDOfrA5XVaYZ9xCRxktYhCU -# itSjYXrsW8eiCGw39r5F/Zw60g+tYBg4LcG7OoItCs109yKnALqwscEaHTYsxk9C -# IZJjXBhfcO7g7ekxnvBcIt39B5uViYvvoz9E84gX8b1RomhMzPr02Ke5Pmh5AcnV -# RV2G/vaexjcI8ZCMCc/WIWjcSuDZToxjQFyWnfAhr3IA9UIUUo1QHz9G3N3qYiBj -# RkNMgP/6lMr3TMH8/eoYatFUYFVWFOntb8W5MNvGWaGF+OkVFscUHb0CAwEAAaOC -# ARswggEXMB0GA1UdDgQWBBQvA/h3ghebILZOP5zcNu29wkJwnjAfBgNVHSMEGDAW -# gBTVYzpcijGQ80N7fEYbxTNoWoVtVTBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8v -# Y3JsLm1pY3Jvc29mdC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNUaW1TdGFQQ0Ff -# MjAxMC0wNy0wMS5jcmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRw -# Oi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1RpbVN0YVBDQV8yMDEw -# LTA3LTAxLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoGCCsGAQUFBwMIMA0G -# CSqGSIb3DQEBCwUAA4IBAQB+vXjgJ4jY2HondbMktBkJk+nZX/NME4KL213Y7ISg -# dwgPbC7JsB5+4tCh79Egob4JuqzzHbVIUiNk4ng66AryLJi6U88oR0wD0QgqyTJm -# QUOI/ICdcmc76bTtSYoB6jzpVuNGXHdbdeepP2O6Fm7npO+zP4HjbfI9444M9cz5 -# lYk9zbBsm8H8l6+w6B7CNsub2V2SvUwNOVRp9WLx5v/hZlYXxpdKGubXZmJiPyhI -# c9I2budzXQq8bNBVC+NJaUvXlzjlwI7EmYV0+su55+4UiTDeez12CAjjJqJCMm75 -# YzGaSPovBYvRbv/ljZFl1UVbOe4+hJmHLR1H+49OaWtuMIIGcTCCBFmgAwIBAgIK -# YQmBKgAAAAAAAjANBgkqhkiG9w0BAQsFADCBiDELMAkGA1UEBhMCVVMxEzARBgNV -# BAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jv -# c29mdCBDb3Jwb3JhdGlvbjEyMDAGA1UEAxMpTWljcm9zb2Z0IFJvb3QgQ2VydGlm -# aWNhdGUgQXV0aG9yaXR5IDIwMTAwHhcNMTAwNzAxMjEzNjU1WhcNMjUwNzAxMjE0 -# NjU1WjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD -# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMDCCASIwDQYJKoZIhvcN -# AQEBBQADggEPADCCAQoCggEBAKkdDbx3EYo6IOz8E5f1+n9plGt0VBDVpQoAgoX7 -# 7XxoSyxfxcPlYcJ2tz5mK1vwFVMnBDEfQRsalR3OCROOfGEwWbEwRA/xYIiEVEMM -# 1024OAizQt2TrNZzMFcmgqNFDdDq9UeBzb8kYDJYYEbyWEeGMoQedGFnkV+BVLHP -# k0ySwcSmXdFhE24oxhr5hoC732H8RsEnHSRnEnIaIYqvS2SJUGKxXf13Hz3wV3Ws -# vYpCTUBR0Q+cBj5nf/VmwAOWRH7v0Ev9buWayrGo8noqCjHw2k4GkbaICDXoeByw -# 6ZnNPOcvRLqn9NxkvaQBwSAJk3jN/LzAyURdXhacAQVPIk0CAwEAAaOCAeYwggHi -# MBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBTVYzpcijGQ80N7fEYbxTNoWoVt -# VTAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNVHQ8EBAMCAYYwDwYDVR0T -# AQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo0T2UkFvXzpoYxDBWBgNV -# HR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpL2NybC9w -# cm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5jcmwwWgYIKwYBBQUHAQEE -# TjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpL2Nl -# cnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDCBoAYDVR0gAQH/BIGVMIGS -# MIGPBgkrBgEEAYI3LgMwgYEwPQYIKwYBBQUHAgEWMWh0dHA6Ly93d3cubWljcm9z -# b2Z0LmNvbS9QS0kvZG9jcy9DUFMvZGVmYXVsdC5odG0wQAYIKwYBBQUHAgIwNB4y -# IB0ATABlAGcAYQBsAF8AUABvAGwAaQBjAHkAXwBTAHQAYQB0AGUAbQBlAG4AdAAu -# IB0wDQYJKoZIhvcNAQELBQADggIBAAfmiFEN4sbgmD+BcQM9naOhIW+z66bM9TG+ -# zwXiqf76V20ZMLPCxWbJat/15/B4vceoniXj+bzta1RXCCtRgkQS+7lTjMz0YBKK -# dsxAQEGb3FwX/1z5Xhc1mCRWS3TvQhDIr79/xn/yN31aPxzymXlKkVIArzgPF/Uv -# eYFl2am1a+THzvbKegBvSzBEJCI8z+0DpZaPWSm8tv0E4XCfMkon/VWvL/625Y4z -# u2JfmttXQOnxzplmkIz/amJ/3cVKC5Em4jnsGUpxY517IW3DnKOiPPp/fZZqkHim -# bdLhnPkd/DjYlPTGpQqWhqS9nhquBEKDuLWAmyI4ILUl5WTs9/S/fmNZJQ96LjlX -# dqJxqgaKD4kWumGnEcua2A5HmoDF0M2n0O99g/DhO3EJ3110mCIIYdqwUB5vvfHh -# AN/nMQekkzr3ZUd46PioSKv33nJ+YWtvd6mBy6cJrDm77MbL2IK0cs0d9LiFAR6A -# +xuJKlQ5slvayA1VmXqHczsI5pgt6o3gMy4SKfXAL1QnIffIrE7aKLixqduWsqdC -# osnPGUFN4Ib5KpqjEWYw07t0MkvfY3v1mYovG8chr1m1rtxEPJdQcdeh0sVV42ne -# V8HR3jDA/czmTfsNv11P6Z0eGTgvvM9YBS7vDaBQNdrvCScc1bN+NR4Iuto229Nf -# j950iEkSoYICzjCCAjcCAQEwgfihgdCkgc0wgcoxCzAJBgNVBAYTAlVTMQswCQYD -# VQQIEwJXQTEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENv -# cnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQgSXJlbGFuZCBPcGVyYXRpb25z -# IExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1MgRVNOOkFCNDEtNEIyNy1GMDI2 -# MSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFtcCBTZXJ2aWNloiMKAQEwBwYF -# Kw4DAhoDFQAAao1bAWa+Fr1uNPYsqHqgszW5SqCBgzCBgKR+MHwxCzAJBgNVBAYT -# AlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYD -# VQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBU -# aW1lLVN0YW1wIFBDQSAyMDEwMA0GCSqGSIb3DQEBBQUAAgUA4jm7aDAiGA8yMDIw -# MDQwOTIzMTkwNFoYDzIwMjAwNDEwMjMxOTA0WjB3MD0GCisGAQQBhFkKBAExLzAt -# MAoCBQDiObtoAgEAMAoCAQACAiEzAgH/MAcCAQACAhG8MAoCBQDiOwzoAgEAMDYG -# CisGAQQBhFkKBAIxKDAmMAwGCisGAQQBhFkKAwKgCjAIAgEAAgMHoSChCjAIAgEA -# AgMBhqAwDQYJKoZIhvcNAQEFBQADgYEAGWC2vQIxAohCLhXCPQ7gaMkFaLXEXckp -# s/fxF72rpMcG0NjBrSCY8gEiFp1OwanXvatCATcxk459CI2qIlEQQ2hbpHyjh23G -# K5n4QKU3KjGFCimPbka8C/C/O2v9tLfPUnjq/oaKyVI9da2jFuDp0FkSBvXhoqBn -# 7QaLRIP+GyMxggMNMIIDCQIBATCBkzB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg -# MjAxMAITMwAAAQ31M4fq0I449QAAAAABDTANBglghkgBZQMEAgEFAKCCAUowGgYJ -# KoZIhvcNAQkDMQ0GCyqGSIb3DQEJEAEEMC8GCSqGSIb3DQEJBDEiBCCCoEIh0pyd -# fEtxBhNzqT1WapT6GVIcVMgFgfrc1oMUDzCB+gYLKoZIhvcNAQkQAi8xgeowgecw -# geQwgb0EIGAUo2rnocVFrEK7TYP7yjShL1dF4kIhLeGNH/urWqQpMIGYMIGApH4w -# fDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1Jl -# ZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMd -# TWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTACEzMAAAEN9TOH6tCOOPUAAAAA -# AQ0wIgQgAX+w0D1bGGONP+VCvct5Xy5Ru7ukSOqPwEK3t6W4k2AwDQYJKoZIhvcN -# AQELBQAEggEApQyGFGvGrb+p88NQzZpCm2JfqfHcr1bQ24kVWkM5qbH3dkB7PvbU -# iqLeer2u+lKNbqBv+XxBgq27ffR/1sfCcSEB7eniC7JPOWDxb9/cxmEZMWjeFoef -# 6JdmAeJOStasCJTuC9k6PGe/JlP6FnTs4LjuQtaH+icZEu0prmg42/Ur8cHuzv9w -# AYQbN9H+arjkZEpFpzmzRZbIrgjalLIzh4OFhAs1W/3GG4OYsvAV4wtUYFFnPyeL -# 4umFLLqGirO/Yv8Jv7hns8asFBLfywL8mv7iGWjbeX8E4UtLQJ6kelAYz8RnhQvw -# atXZwW+Lwtxo2LwuNUQmKindrDAr/6ANKw== -# SIG # End signature block diff --git a/src/MariaDb/internal/Get-AzMariaDbDatabase.ps1 b/src/MariaDb/internal/Get-AzMariaDbDatabase.ps1 index 36b9cf6dcf79..151f9a6e4d44 100644 --- a/src/MariaDb/internal/Get-AzMariaDbDatabase.ps1 +++ b/src/MariaDb/internal/Get-AzMariaDbDatabase.ps1 @@ -27,6 +27,26 @@ PS C:\> {{ Add code here }} {{ Add output here }} +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IDatabase +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ConfigurationName ]: The name of the server configuration. + [DatabaseName ]: The name of the database. + [FirewallRuleName ]: The name of the server firewall rule. + [Id ]: Resource identity path + [LocationName ]: The name of the location. + [ResourceGroupName ]: The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. + [SecurityAlertPolicyName ]: The name of the security alert policy. + [ServerName ]: The name of the server. + [SubscriptionId ]: The subscription ID that identifies an Azure subscription. + [VirtualNetworkRuleName ]: The name of the virtual network rule. .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/get-azmariadbdatabase #> diff --git a/src/MariaDb/internal/Get-AzMariaDbLocationBasedPerformanceTier.ps1 b/src/MariaDb/internal/Get-AzMariaDbLocationBasedPerformanceTier.ps1 index 671b64154fba..e8c2759a2ff5 100644 --- a/src/MariaDb/internal/Get-AzMariaDbLocationBasedPerformanceTier.ps1 +++ b/src/MariaDb/internal/Get-AzMariaDbLocationBasedPerformanceTier.ps1 @@ -27,6 +27,8 @@ PS C:\> {{ Add code here }} {{ Add output here }} +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IPerformanceTierProperties .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/get-azmariadblocationbasedperformancetier #> diff --git a/src/MariaDb/internal/Get-AzMariaDbLogFile.ps1 b/src/MariaDb/internal/Get-AzMariaDbLogFile.ps1 index e9756eac8f87..ea66525d8c6c 100644 --- a/src/MariaDb/internal/Get-AzMariaDbLogFile.ps1 +++ b/src/MariaDb/internal/Get-AzMariaDbLogFile.ps1 @@ -27,6 +27,8 @@ PS C:\> {{ Add code here }} {{ Add output here }} +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFile .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/get-azmariadblogfile #> diff --git a/src/MariaDb/internal/Get-AzMariaDbOperation.ps1 b/src/MariaDb/internal/Get-AzMariaDbOperation.ps1 index 4f2c17427a6a..5396704ce6ff 100644 --- a/src/MariaDb/internal/Get-AzMariaDbOperation.ps1 +++ b/src/MariaDb/internal/Get-AzMariaDbOperation.ps1 @@ -27,6 +27,8 @@ PS C:\> {{ Add code here }} {{ Add output here }} +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperation .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/get-azmariadboperation #> diff --git a/src/MariaDb/internal/Get-AzMariaDbServerSecurityAlertPolicy.ps1 b/src/MariaDb/internal/Get-AzMariaDbServerSecurityAlertPolicy.ps1 index 8a8a3eb1d112..8b0d970dc427 100644 --- a/src/MariaDb/internal/Get-AzMariaDbServerSecurityAlertPolicy.ps1 +++ b/src/MariaDb/internal/Get-AzMariaDbServerSecurityAlertPolicy.ps1 @@ -27,6 +27,26 @@ PS C:\> {{ Add code here }} {{ Add output here }} +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicy +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ConfigurationName ]: The name of the server configuration. + [DatabaseName ]: The name of the database. + [FirewallRuleName ]: The name of the server firewall rule. + [Id ]: Resource identity path + [LocationName ]: The name of the location. + [ResourceGroupName ]: The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. + [SecurityAlertPolicyName ]: The name of the security alert policy. + [ServerName ]: The name of the server. + [SubscriptionId ]: The subscription ID that identifies an Azure subscription. + [VirtualNetworkRuleName ]: The name of the virtual network rule. .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/get-azmariadbserversecurityalertpolicy #> diff --git a/src/MariaDb/internal/Invoke-AzMariaDbExecuteCheckNameAvailability.ps1 b/src/MariaDb/internal/Invoke-AzMariaDbExecuteCheckNameAvailability.ps1 index 10c89827827b..9936c2c7f86c 100644 --- a/src/MariaDb/internal/Invoke-AzMariaDbExecuteCheckNameAvailability.ps1 +++ b/src/MariaDb/internal/Invoke-AzMariaDbExecuteCheckNameAvailability.ps1 @@ -27,6 +27,32 @@ PS C:\> {{ Add code here }} {{ Add output here }} +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.INameAvailabilityRequest +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.INameAvailability +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ConfigurationName ]: The name of the server configuration. + [DatabaseName ]: The name of the database. + [FirewallRuleName ]: The name of the server firewall rule. + [Id ]: Resource identity path + [LocationName ]: The name of the location. + [ResourceGroupName ]: The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. + [SecurityAlertPolicyName ]: The name of the security alert policy. + [ServerName ]: The name of the server. + [SubscriptionId ]: The subscription ID that identifies an Azure subscription. + [VirtualNetworkRuleName ]: The name of the virtual network rule. + +NAMEAVAILABILITYREQUEST : Request from client to check resource name availability. + Name : Resource name to verify. + [Type ]: Resource type used for verification. .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/invoke-azmariadbexecutechecknameavailability #> diff --git a/src/MariaDb/internal/New-AzMariaDbConfiguration.ps1 b/src/MariaDb/internal/New-AzMariaDbConfiguration.ps1 index 442bd8bf972d..318657835f86 100644 --- a/src/MariaDb/internal/New-AzMariaDbConfiguration.ps1 +++ b/src/MariaDb/internal/New-AzMariaDbConfiguration.ps1 @@ -27,6 +27,8 @@ PS C:\> {{ Add code here }} {{ Add output here }} +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfiguration .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/new-azmariadbconfiguration #> diff --git a/src/MariaDb/internal/New-AzMariaDbDatabase.ps1 b/src/MariaDb/internal/New-AzMariaDbDatabase.ps1 index 2b0beb5b9269..6b3800232645 100644 --- a/src/MariaDb/internal/New-AzMariaDbDatabase.ps1 +++ b/src/MariaDb/internal/New-AzMariaDbDatabase.ps1 @@ -27,6 +27,32 @@ PS C:\> {{ Add code here }} {{ Add output here }} +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IDatabase +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IDatabase +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ConfigurationName ]: The name of the server configuration. + [DatabaseName ]: The name of the database. + [FirewallRuleName ]: The name of the server firewall rule. + [Id ]: Resource identity path + [LocationName ]: The name of the location. + [ResourceGroupName ]: The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. + [SecurityAlertPolicyName ]: The name of the security alert policy. + [ServerName ]: The name of the server. + [SubscriptionId ]: The subscription ID that identifies an Azure subscription. + [VirtualNetworkRuleName ]: The name of the virtual network rule. + +PARAMETER : Represents a Database. + [Charset ]: The charset of the database. + [Collation ]: The collation of the database. .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/new-azmariadbdatabase #> diff --git a/src/MariaDb/exports/New-AzMariaDbServerReplica.ps1 b/src/MariaDb/internal/New-AzMariaDbFirewallRule.ps1 similarity index 60% rename from src/MariaDb/exports/New-AzMariaDbServerReplica.ps1 rename to src/MariaDb/internal/New-AzMariaDbFirewallRule.ps1 index 952e834c4537..b154054c3a5d 100644 --- a/src/MariaDb/exports/New-AzMariaDbServerReplica.ps1 +++ b/src/MariaDb/internal/New-AzMariaDbFirewallRule.ps1 @@ -15,130 +15,135 @@ <# .Synopsis - +Creates a new firewall rule or updates an existing firewall rule. .Description +Creates a new firewall rule or updates an existing firewall rule. +.Example +PS C:\> New-AzMariaDbFirewallRule -Name firewall-101 -ResourceGroupName mariadb-test-qu5ov0 -ServerName mariadb-asd-01 -EndIPAddress 0.0.2.255 -StartIPAddress 0.0.2.1 +Name StartIPAddress EndIPAddress +---- -------------- ------------ +firewall-101 0.0.2.1 0.0.2.255 .Example -PS C:\> New-AzMariaDbServerReplica -ServerName mariadb-test-9pebvn -Name mariadb-test-9pebvn-rep01 -ResourceGroupName mariadb-test-qu5ov0 +PS C:\> New-AzMariaDbFirewallRule -ResourceGroupName mariadb-test-qu5ov0 -ServerName mariadb-asd-01 -ClientIPAddress 0.0.0.1 -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mariadb-test-9pebvn-rep01 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled +Name StartIPAddress EndIPAddress +---- -------------- ------------ +ClientIPAddress_2020-08-11_18-19-27 0.0.0.1 0.0.0.1 .Example -PS C:\> Get-AzMariaDbServer -Name mariadb-test-9pebvn -ResourceGroupName mariadb-test-qu5ov0 | New-AzMariaDbServerReplica -Name mariadb-test-9pebvn-rep02 +PS C:\> New-AzMariaDbFirewallRule -ResourceGroupName mariadb-test-qu5ov0 -ServerName mariadb-asd-01 -AllowAll -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mariadb-test-9pebvn-rep02 eastus xpwjyfdgui 10.2 7168 GP_Gen5_4 GeneralPurpose Enabled +Name StartIPAddress EndIPAddress +---- -------------- ------------ +AllowAll_2020-08-11_18-19-27 0.0.0.0 255.255.255.255 +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRule .Link -https://docs.microsoft.com/en-us/powershell/module/az.mariadb/new-azmariadbserverreplica +https://docs.microsoft.com/en-us/powershell/module/az.mariadb/new-azmariadbfirewallrule #> -function New-AzMariaDbServerReplica { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer])] -[CmdletBinding(DefaultParameterSetName='ServerName', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +function New-AzMariaDbFirewallRule { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRule])] +[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] - [Alias('ReplicaServerName')] + [Alias('FirewallRuleName')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] [System.String] - # Replica name. + # The name of the server firewall rule. ${Name}, - [Parameter(ParameterSetName='ServerName', Mandatory)] + [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] [System.String] - # MariaDb server name. - ${ServerName}, + # The name of the resource group that contains the resource. + # You can obtain this value from the Azure Resource Manager API or the portal. + ${ResourceGroupName}, - [Parameter(ParameterSetName='ServerName', Mandatory)] + [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] [System.String] - # You can obtain this value from the Azure Resource Manager API or the portal. - ${ResourceGroupName}, + # The name of the server. + ${ServerName}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] - # The subscription ID is part of the URI for every service call. + # The subscription ID that identifies an Azure subscription. ${SubscriptionId}, - [Parameter(ParameterSetName='ServerObject', Mandatory, ValueFromPipeline)] - [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] - [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer] - # The source server object to restore from. - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter()] + [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] [System.String] - # The location the resource resides in. - ${Location}, + # The end IP address of the server firewall rule. + # Must be IPv4 format. + ${EndIPAddress}, - [Parameter()] + [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] [System.String] - # The name of the sku, typically, tier + family + cores, e.g. - # B_Gen4_1, GP_Gen5_8. - ${Sku}, - - [Parameter()] - [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParametersTags]))] - [System.Collections.Hashtable] - # Application-specific metadata in the form of key-value pairs. - ${Tag}, + # The start IP address of the server firewall rule. + # Must be IPv4 format. + ${StartIPAddress}, [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Azure')] [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.SwitchParameter] + # Run the command as a job ${AsJob}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.SwitchParameter] + # Run the command asynchronously ${NoWait}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Uri] + # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) @@ -150,10 +155,9 @@ begin { } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ - ServerName = 'Az.MariaDb.custom\New-AzMariaDbServerReplica'; - ServerObject = 'Az.MariaDb.custom\New-AzMariaDbServerReplica'; + CreateExpanded = 'Az.MariaDb.private\New-AzMariaDbFirewallRule_CreateExpanded'; } - if (('ServerName', 'ServerObject') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + if (('CreateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) diff --git a/src/MariaDb/internal/New-AzMariaDbServer.ps1 b/src/MariaDb/internal/New-AzMariaDbServer.ps1 index c9bc96af6a29..d0e0f0621fb1 100644 --- a/src/MariaDb/internal/New-AzMariaDbServer.ps1 +++ b/src/MariaDb/internal/New-AzMariaDbServer.ps1 @@ -27,10 +27,49 @@ Supply values for the following parameters: AdministratorUsername: adminuser AdministratorLoginPassword: ************ -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mariadb-aassd-01 eastus adminuser 10.2 5120 B_Gen5_1 Basic Enabled - +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mariadb-aassd-01 eastus adminuser 10.2 5120 B_Gen5_1 Basic Enabled + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreate +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ConfigurationName ]: The name of the server configuration. + [DatabaseName ]: The name of the database. + [FirewallRuleName ]: The name of the server firewall rule. + [Id ]: Resource identity path + [LocationName ]: The name of the location. + [ResourceGroupName ]: The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. + [SecurityAlertPolicyName ]: The name of the security alert policy. + [ServerName ]: The name of the server. + [SubscriptionId ]: The subscription ID that identifies an Azure subscription. + [VirtualNetworkRuleName ]: The name of the virtual network rule. + +PARAMETER : Represents a server to be created. + CreateMode : The mode to create a new server. + Location : The location the resource resides in. + [SkuCapacity ]: The scale up/out capacity, representing server's compute units. + [SkuFamily ]: The family of hardware. + [SkuName ]: The name of the sku, typically, tier + family + cores, e.g. B_Gen4_1, GP_Gen5_8. + [SkuSize ]: The size code, to be interpreted by resource as appropriate. + [SkuTier ]: The tier of the particular SKU, e.g. Basic. + [SslEnforcement ]: Enable ssl enforcement or not when connect to server. + [StorageProfileBackupRetentionDay ]: Backup retention days for the server. + [StorageProfileGeoRedundantBackup ]: Enable Geo-redundant or not for server backup. + [StorageProfileStorageAutogrow ]: Enable Storage Auto Grow. + [StorageProfileStorageMb ]: Max storage allowed for a server. + [Tag ]: Application-specific metadata in the form of key-value pairs. + [(Any) ]: This indicates any property can be added to this object. + [Version ]: Server version. .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/new-azmariadbserver #> diff --git a/src/MariaDb/internal/New-AzMariaDbServerSecurityAlertPolicy.ps1 b/src/MariaDb/internal/New-AzMariaDbServerSecurityAlertPolicy.ps1 index edee03ab7f07..968897b74f6a 100644 --- a/src/MariaDb/internal/New-AzMariaDbServerSecurityAlertPolicy.ps1 +++ b/src/MariaDb/internal/New-AzMariaDbServerSecurityAlertPolicy.ps1 @@ -27,6 +27,37 @@ PS C:\> {{ Add code here }} {{ Add output here }} +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicy +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicy +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ConfigurationName ]: The name of the server configuration. + [DatabaseName ]: The name of the database. + [FirewallRuleName ]: The name of the server firewall rule. + [Id ]: Resource identity path + [LocationName ]: The name of the location. + [ResourceGroupName ]: The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. + [SecurityAlertPolicyName ]: The name of the security alert policy. + [ServerName ]: The name of the server. + [SubscriptionId ]: The subscription ID that identifies an Azure subscription. + [VirtualNetworkRuleName ]: The name of the virtual network rule. + +PARAMETER : A server security alert policy. + State : Specifies the state of the policy, whether it is enabled or disabled. + [DisabledAlert ]: Specifies an array of alerts that are disabled. Allowed values are: Sql_Injection, Sql_Injection_Vulnerability, Access_Anomaly + [EmailAccountAdmin ]: Specifies that the alert is sent to the account administrators. + [EmailAddress ]: Specifies an array of e-mail addresses to which the alert is sent. + [RetentionDay ]: Specifies the number of days to keep in the Threat Detection audit logs. + [StorageAccountAccessKey ]: Specifies the identifier key of the Threat Detection audit storage account. + [StorageEndpoint ]: Specifies the blob storage endpoint (e.g. https://MyAccount.blob.core.windows.net). This blob storage will hold all Threat Detection audit logs. .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/new-azmariadbserversecurityalertpolicy #> diff --git a/src/MariaDb/internal/ProxyCmdletDefinitions.ps1 b/src/MariaDb/internal/ProxyCmdletDefinitions.ps1 index 94cdaa750ac7..af53e483e102 100644 --- a/src/MariaDb/internal/ProxyCmdletDefinitions.ps1 +++ b/src/MariaDb/internal/ProxyCmdletDefinitions.ps1 @@ -27,6 +27,26 @@ PS C:\> {{ Add code here }} {{ Add output here }} +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IDatabase +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ConfigurationName ]: The name of the server configuration. + [DatabaseName ]: The name of the database. + [FirewallRuleName ]: The name of the server firewall rule. + [Id ]: Resource identity path + [LocationName ]: The name of the location. + [ResourceGroupName ]: The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. + [SecurityAlertPolicyName ]: The name of the security alert policy. + [ServerName ]: The name of the server. + [SubscriptionId ]: The subscription ID that identifies an Azure subscription. + [VirtualNetworkRuleName ]: The name of the virtual network rule. .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/get-azmariadbdatabase #> @@ -188,6 +208,8 @@ PS C:\> {{ Add code here }} {{ Add output here }} +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IPerformanceTierProperties .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/get-azmariadblocationbasedperformancetier #> @@ -323,6 +345,8 @@ PS C:\> {{ Add code here }} {{ Add output here }} +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.ILogFile .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/get-azmariadblogfile #> @@ -465,6 +489,8 @@ PS C:\> {{ Add code here }} {{ Add output here }} +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IOperation .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/get-azmariadboperation #> @@ -584,6 +610,26 @@ PS C:\> {{ Add code here }} {{ Add output here }} +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicy +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ConfigurationName ]: The name of the server configuration. + [DatabaseName ]: The name of the database. + [FirewallRuleName ]: The name of the server firewall rule. + [Id ]: Resource identity path + [LocationName ]: The name of the location. + [ResourceGroupName ]: The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. + [SecurityAlertPolicyName ]: The name of the security alert policy. + [ServerName ]: The name of the server. + [SubscriptionId ]: The subscription ID that identifies an Azure subscription. + [VirtualNetworkRuleName ]: The name of the virtual network rule. .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/get-azmariadbserversecurityalertpolicy #> @@ -740,6 +786,32 @@ PS C:\> {{ Add code here }} {{ Add output here }} +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.INameAvailabilityRequest +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.INameAvailability +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ConfigurationName ]: The name of the server configuration. + [DatabaseName ]: The name of the database. + [FirewallRuleName ]: The name of the server firewall rule. + [Id ]: Resource identity path + [LocationName ]: The name of the location. + [ResourceGroupName ]: The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. + [SecurityAlertPolicyName ]: The name of the security alert policy. + [ServerName ]: The name of the server. + [SubscriptionId ]: The subscription ID that identifies an Azure subscription. + [VirtualNetworkRuleName ]: The name of the virtual network rule. + +NAMEAVAILABILITYREQUEST : Request from client to check resource name availability. + Name : Resource name to verify. + [Type ]: Resource type used for verification. .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/invoke-azmariadbexecutechecknameavailability #> @@ -903,6 +975,8 @@ PS C:\> {{ Add code here }} {{ Add output here }} +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfiguration .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/new-azmariadbconfiguration #> @@ -1076,6 +1150,32 @@ PS C:\> {{ Add code here }} {{ Add output here }} +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IDatabase +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IDatabase +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ConfigurationName ]: The name of the server configuration. + [DatabaseName ]: The name of the database. + [FirewallRuleName ]: The name of the server firewall rule. + [Id ]: Resource identity path + [LocationName ]: The name of the location. + [ResourceGroupName ]: The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. + [SecurityAlertPolicyName ]: The name of the security alert policy. + [ServerName ]: The name of the server. + [SubscriptionId ]: The subscription ID that identifies an Azure subscription. + [VirtualNetworkRuleName ]: The name of the virtual network rule. + +PARAMETER : Represents a Database. + [Charset ]: The charset of the database. + [Collation ]: The collation of the database. .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/new-azmariadbdatabase #> @@ -1260,6 +1360,193 @@ end { # limitations under the License. # ---------------------------------------------------------------------------------- +<# +.Synopsis +Creates a new firewall rule or updates an existing firewall rule. +.Description +Creates a new firewall rule or updates an existing firewall rule. +.Example +PS C:\> New-AzMariaDbFirewallRule -Name firewall-101 -ResourceGroupName mariadb-test-qu5ov0 -ServerName mariadb-asd-01 -EndIPAddress 0.0.2.255 -StartIPAddress 0.0.2.1 + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +firewall-101 0.0.2.1 0.0.2.255 +.Example +PS C:\> New-AzMariaDbFirewallRule -ResourceGroupName mariadb-test-qu5ov0 -ServerName mariadb-asd-01 -ClientIPAddress 0.0.0.1 + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +ClientIPAddress_2020-08-11_18-19-27 0.0.0.1 0.0.0.1 +.Example +PS C:\> New-AzMariaDbFirewallRule -ResourceGroupName mariadb-test-qu5ov0 -ServerName mariadb-asd-01 -AllowAll + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +AllowAll_2020-08-11_18-19-27 0.0.0.0 255.255.255.255 + +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRule +.Link +https://docs.microsoft.com/en-us/powershell/module/az.mariadb/new-azmariadbfirewallrule +#> +function New-AzMariaDbFirewallRule { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRule])] +[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(Mandatory)] + [Alias('FirewallRuleName')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] + [System.String] + # The name of the server firewall rule. + ${Name}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] + [System.String] + # The name of the resource group that contains the resource. + # You can obtain this value from the Azure Resource Manager API or the portal. + ${ResourceGroupName}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] + [System.String] + # The name of the server. + ${ServerName}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # The subscription ID that identifies an Azure subscription. + ${SubscriptionId}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] + [System.String] + # The end IP address of the server firewall rule. + # Must be IPv4 format. + ${EndIPAddress}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] + [System.String] + # The start IP address of the server firewall rule. + # Must be IPv4 format. + ${StartIPAddress}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + CreateExpanded = 'Az.MariaDb.private\New-AzMariaDbFirewallRule_CreateExpanded'; + } + if (('CreateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} + +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + <# .Synopsis Creates or updates a threat detection policy. @@ -1274,6 +1561,37 @@ PS C:\> {{ Add code here }} {{ Add output here }} +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicy +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicy +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ConfigurationName ]: The name of the server configuration. + [DatabaseName ]: The name of the database. + [FirewallRuleName ]: The name of the server firewall rule. + [Id ]: Resource identity path + [LocationName ]: The name of the location. + [ResourceGroupName ]: The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. + [SecurityAlertPolicyName ]: The name of the security alert policy. + [ServerName ]: The name of the server. + [SubscriptionId ]: The subscription ID that identifies an Azure subscription. + [VirtualNetworkRuleName ]: The name of the virtual network rule. + +PARAMETER : A server security alert policy. + State : Specifies the state of the policy, whether it is enabled or disabled. + [DisabledAlert ]: Specifies an array of alerts that are disabled. Allowed values are: Sql_Injection, Sql_Injection_Vulnerability, Access_Anomaly + [EmailAccountAdmin ]: Specifies that the alert is sent to the account administrators. + [EmailAddress ]: Specifies an array of e-mail addresses to which the alert is sent. + [RetentionDay ]: Specifies the number of days to keep in the Threat Detection audit logs. + [StorageAccountAccessKey ]: Specifies the identifier key of the Threat Detection audit storage account. + [StorageEndpoint ]: Specifies the blob storage endpoint (e.g. https://MyAccount.blob.core.windows.net). This blob storage will hold all Threat Detection audit logs. .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/new-azmariadbserversecurityalertpolicy #> @@ -1509,10 +1827,49 @@ Supply values for the following parameters: AdministratorUsername: adminuser AdministratorLoginPassword: ************ -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mariadb-aassd-01 eastus adminuser 10.2 5120 B_Gen5_1 Basic Enabled - +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mariadb-aassd-01 eastus adminuser 10.2 5120 B_Gen5_1 Basic Enabled + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerForCreate +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ConfigurationName ]: The name of the server configuration. + [DatabaseName ]: The name of the database. + [FirewallRuleName ]: The name of the server firewall rule. + [Id ]: Resource identity path + [LocationName ]: The name of the location. + [ResourceGroupName ]: The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. + [SecurityAlertPolicyName ]: The name of the security alert policy. + [ServerName ]: The name of the server. + [SubscriptionId ]: The subscription ID that identifies an Azure subscription. + [VirtualNetworkRuleName ]: The name of the virtual network rule. + +PARAMETER : Represents a server to be created. + CreateMode : The mode to create a new server. + Location : The location the resource resides in. + [SkuCapacity ]: The scale up/out capacity, representing server's compute units. + [SkuFamily ]: The family of hardware. + [SkuName ]: The name of the sku, typically, tier + family + cores, e.g. B_Gen4_1, GP_Gen5_8. + [SkuSize ]: The size code, to be interpreted by resource as appropriate. + [SkuTier ]: The tier of the particular SKU, e.g. Basic. + [SslEnforcement ]: Enable ssl enforcement or not when connect to server. + [StorageProfileBackupRetentionDay ]: Backup retention days for the server. + [StorageProfileGeoRedundantBackup ]: Enable Geo-redundant or not for server backup. + [StorageProfileStorageAutogrow ]: Enable Storage Auto Grow. + [StorageProfileStorageMb ]: Max storage allowed for a server. + [Tag ]: Application-specific metadata in the form of key-value pairs. + [(Any) ]: This indicates any property can be added to this object. + [Version ]: Server version. .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/new-azmariadbserver #> @@ -1798,6 +2155,26 @@ PS C:\> {{ Add code here }} {{ Add output here }} +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity +.Outputs +System.Boolean +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ConfigurationName ]: The name of the server configuration. + [DatabaseName ]: The name of the database. + [FirewallRuleName ]: The name of the server firewall rule. + [Id ]: Resource identity path + [LocationName ]: The name of the location. + [ResourceGroupName ]: The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. + [SecurityAlertPolicyName ]: The name of the security alert policy. + [ServerName ]: The name of the server. + [SubscriptionId ]: The subscription ID that identifies an Azure subscription. + [VirtualNetworkRuleName ]: The name of the virtual network rule. .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/remove-azmariadbdatabase #> @@ -1971,6 +2348,26 @@ PS C:\> Restart-AzMariaDbServer -Name mariadb-test-9pebvn -ResourceGroupName mar PS C:\> Get-AzMariaDbServer -Name mariadb-test-9pebvn -ResourceGroupName mariadb-test-qu5ov0 | Restart-AzMariaDbServer +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity +.Outputs +System.Boolean +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ConfigurationName ]: The name of the server configuration. + [DatabaseName ]: The name of the database. + [FirewallRuleName ]: The name of the server firewall rule. + [Id ]: Resource identity path + [LocationName ]: The name of the location. + [ResourceGroupName ]: The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. + [SecurityAlertPolicyName ]: The name of the security alert policy. + [ServerName ]: The name of the server. + [SubscriptionId ]: The subscription ID that identifies an Azure subscription. + [VirtualNetworkRuleName ]: The name of the virtual network rule. .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/restart-azmariadbserver #> @@ -2140,6 +2537,18 @@ PS C:\> {{ Add code here }} {{ Add output here }} +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IDatabase +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IDatabase +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +PARAMETER : Represents a Database. + [Charset ]: The charset of the database. + [Collation ]: The collation of the database. .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/set-azmariadbdatabase #> @@ -2321,6 +2730,23 @@ PS C:\> {{ Add code here }} {{ Add output here }} +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicy +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicy +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +PARAMETER : A server security alert policy. + State : Specifies the state of the policy, whether it is enabled or disabled. + [DisabledAlert ]: Specifies an array of alerts that are disabled. Allowed values are: Sql_Injection, Sql_Injection_Vulnerability, Access_Anomaly + [EmailAccountAdmin ]: Specifies that the alert is sent to the account administrators. + [EmailAddress ]: Specifies an array of e-mail addresses to which the alert is sent. + [RetentionDay ]: Specifies the number of days to keep in the Threat Detection audit logs. + [StorageAccountAccessKey ]: Specifies the identifier key of the Threat Detection audit storage account. + [StorageEndpoint ]: Specifies the blob storage endpoint (e.g. https://MyAccount.blob.core.windows.net). This blob storage will hold all Threat Detection audit logs. .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/set-azmariadbserversecurityalertpolicy #> @@ -2521,6 +2947,420 @@ end { # limitations under the License. # ---------------------------------------------------------------------------------- +<# +.Synopsis +Updates a configuration of a server. +.Description +Updates a configuration of a server. +.Example +PS C:\> Update-AzMariaDbConfiguration -Name delayed_insert_timeout -Value 200 -ServerName mariadb-test-h3pame -ResourceGroupName mariadb-test-qu5ov0 + +Name Type +---- ---- +delayed_insert_timeout Microsoft.DBforMariaDB/servers/configurations + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfiguration +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ConfigurationName ]: The name of the server configuration. + [DatabaseName ]: The name of the database. + [FirewallRuleName ]: The name of the server firewall rule. + [Id ]: Resource identity path + [LocationName ]: The name of the location. + [ResourceGroupName ]: The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. + [SecurityAlertPolicyName ]: The name of the security alert policy. + [ServerName ]: The name of the server. + [SubscriptionId ]: The subscription ID that identifies an Azure subscription. + [VirtualNetworkRuleName ]: The name of the virtual network rule. +.Link +https://docs.microsoft.com/en-us/powershell/module/az.mariadb/update-azmariadbconfiguration +#> +function Update-AzMariaDbConfiguration { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfiguration])] +[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Alias('ConfigurationName')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] + [System.String] + # The name of the server configuration. + ${Name}, + + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] + [System.String] + # The name of the resource group that contains the resource. + # You can obtain this value from the Azure Resource Manager API or the portal. + ${ResourceGroupName}, + + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] + [System.String] + # The name of the server. + ${ServerName}, + + [Parameter(ParameterSetName='UpdateExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # The subscription ID that identifies an Azure subscription. + ${SubscriptionId}, + + [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] + [System.String] + # Source of the configuration. + ${Source}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] + [System.String] + # Value of the configuration. + ${Value}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + UpdateExpanded = 'Az.MariaDb.private\Update-AzMariaDbConfiguration_UpdateExpanded'; + UpdateViaIdentityExpanded = 'Az.MariaDb.private\Update-AzMariaDbConfiguration_UpdateViaIdentityExpanded'; + } + if (('UpdateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} + +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.Synopsis +Creates a new firewall rule or updates an existing firewall rule. +.Description +Creates a new firewall rule or updates an existing firewall rule. +.Example +PS C:\> Update-AzMariaDbFirewallRule -Name fr-cfgl3y -ServerName mariadb-test-4rmtig -ResourceGroupName mariadb-test-qu5ov0 -StartIPAddress 0.0.3.1 -EndIPAddress 0.0.3.255 + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +fr-cfgl3y 0.0.3.1 0.0.3.255 +.Example +PS C:\> $ID = "/subscriptions//resourceGroups/mariadb-test-qu5ov0/providers/Microsoft.DBforMariaDB/servers/mariadb-test-4rmtig/firewallRules/fr-cfgl3y" +PS C:\> Update-AzMariaDbFirewallRule -InputObject $ID -EndIPAddress 0.0.0.3 -StartIPAddress 0.0.0.2 + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +fr-cfgl3y 0.0.0.2 0.0.0.3 +.Example +PS C:\> $ID = "/subscriptions//resourceGroups/mariadb-test-qu5ov0/providers/Microsoft.DBforMariaDB/servers/mariadb-test-4rmtig/firewallRules/fr-cfgl3y" +PS C:\> Update-AzMariaDbFirewallRule -InputObject $ID --ClientIPAddress 0.0.0.2 + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +fr-cfgl3y 0.0.0.2 0.0.0.2 + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRule +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ConfigurationName ]: The name of the server configuration. + [DatabaseName ]: The name of the database. + [FirewallRuleName ]: The name of the server firewall rule. + [Id ]: Resource identity path + [LocationName ]: The name of the location. + [ResourceGroupName ]: The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. + [SecurityAlertPolicyName ]: The name of the security alert policy. + [ServerName ]: The name of the server. + [SubscriptionId ]: The subscription ID that identifies an Azure subscription. + [VirtualNetworkRuleName ]: The name of the virtual network rule. +.Link +https://docs.microsoft.com/en-us/powershell/module/az.mariadb/update-azmariadbfirewallrule +#> +function Update-AzMariaDbFirewallRule { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRule])] +[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Alias('FirewallRuleName')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] + [System.String] + # The name of the server firewall rule. + ${Name}, + + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] + [System.String] + # The name of the resource group that contains the resource. + # You can obtain this value from the Azure Resource Manager API or the portal. + ${ResourceGroupName}, + + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] + [System.String] + # The name of the server. + ${ServerName}, + + [Parameter(ParameterSetName='UpdateExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # The subscription ID that identifies an Azure subscription. + ${SubscriptionId}, + + [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] + [System.String] + # The end IP address of the server firewall rule. + # Must be IPv4 format. + ${EndIPAddress}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] + [System.String] + # The start IP address of the server firewall rule. + # Must be IPv4 format. + ${StartIPAddress}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + UpdateExpanded = 'Az.MariaDb.private\Update-AzMariaDbFirewallRule_UpdateExpanded'; + UpdateViaIdentityExpanded = 'Az.MariaDb.private\Update-AzMariaDbFirewallRule_UpdateViaIdentityExpanded'; + } + if (('UpdateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} + +# ---------------------------------------------------------------------------------- +# +# 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 Updates an existing server. @@ -2531,16 +3371,55 @@ The request body can contain one to many of the properties present in the normal .Example PS C:\> Update-AzMariaDbServer -Name mariadb-test-4rmtig -ResourceGroupName mariadb-test-qu5ov0 -StorageInMb 8192 -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mariadb-test-4rmtig eastus xofavpndqj 10.2 8192 B_Gen5_1 Basic Enabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mariadb-test-4rmtig eastus xofavpndqj 10.2 8192 B_Gen5_1 Basic Enabled .Example PS C:\> Get-AzMariaDbServer -Name mariadb-test-4rmtig -ResourceGroupName mariadb-test-qu5ov0 | Update-AzMariaDbServer -StorageInMb (8192+1024) -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mariadb-test-4rmtig eastus xofavpndqj 10.2 9216 B_Gen5_1 Basic Enabled - +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mariadb-test-4rmtig eastus xofavpndqj 10.2 9216 B_Gen5_1 Basic Enabled + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParameters +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ConfigurationName ]: The name of the server configuration. + [DatabaseName ]: The name of the database. + [FirewallRuleName ]: The name of the server firewall rule. + [Id ]: Resource identity path + [LocationName ]: The name of the location. + [ResourceGroupName ]: The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. + [SecurityAlertPolicyName ]: The name of the security alert policy. + [ServerName ]: The name of the server. + [SubscriptionId ]: The subscription ID that identifies an Azure subscription. + [VirtualNetworkRuleName ]: The name of the virtual network rule. + +PARAMETER : Parameters allowed to update for a server. + [AdministratorLoginPassword ]: The password of the administrator login. + [ReplicationRole ]: The replication role of the server. + [SkuCapacity ]: The scale up/out capacity, representing server's compute units. + [SkuFamily ]: The family of hardware. + [SkuName ]: The name of the sku, typically, tier + family + cores, e.g. B_Gen4_1, GP_Gen5_8. + [SkuSize ]: The size code, to be interpreted by resource as appropriate. + [SkuTier ]: The tier of the particular SKU, e.g. Basic. + [SslEnforcement ]: Enable ssl enforcement or not when connect to server. + [StorageProfileBackupRetentionDay ]: Backup retention days for the server. + [StorageProfileGeoRedundantBackup ]: Enable Geo-redundant or not for server backup. + [StorageProfileStorageAutogrow ]: Enable Storage Auto Grow. + [StorageProfileStorageMb ]: Max storage allowed for a server. + [Tag ]: Application-specific metadata in the form of key-value pairs. + [(Any) ]: This indicates any property can be added to this object. + [Version ]: The version of a server. .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/update-azmariadbserver #> diff --git a/src/MariaDb/internal/Remove-AzMariaDbDatabase.ps1 b/src/MariaDb/internal/Remove-AzMariaDbDatabase.ps1 index 3f73a570d452..552780ca11f5 100644 --- a/src/MariaDb/internal/Remove-AzMariaDbDatabase.ps1 +++ b/src/MariaDb/internal/Remove-AzMariaDbDatabase.ps1 @@ -27,6 +27,26 @@ PS C:\> {{ Add code here }} {{ Add output here }} +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity +.Outputs +System.Boolean +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ConfigurationName ]: The name of the server configuration. + [DatabaseName ]: The name of the database. + [FirewallRuleName ]: The name of the server firewall rule. + [Id ]: Resource identity path + [LocationName ]: The name of the location. + [ResourceGroupName ]: The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. + [SecurityAlertPolicyName ]: The name of the security alert policy. + [ServerName ]: The name of the server. + [SubscriptionId ]: The subscription ID that identifies an Azure subscription. + [VirtualNetworkRuleName ]: The name of the virtual network rule. .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/remove-azmariadbdatabase #> diff --git a/src/MariaDb/internal/Restart-AzMariaDbServer.ps1 b/src/MariaDb/internal/Restart-AzMariaDbServer.ps1 index e3f7af2c1808..3b63a1a7f4f1 100644 --- a/src/MariaDb/internal/Restart-AzMariaDbServer.ps1 +++ b/src/MariaDb/internal/Restart-AzMariaDbServer.ps1 @@ -25,6 +25,26 @@ PS C:\> Restart-AzMariaDbServer -Name mariadb-test-9pebvn -ResourceGroupName mar PS C:\> Get-AzMariaDbServer -Name mariadb-test-9pebvn -ResourceGroupName mariadb-test-qu5ov0 | Restart-AzMariaDbServer +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity +.Outputs +System.Boolean +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ConfigurationName ]: The name of the server configuration. + [DatabaseName ]: The name of the database. + [FirewallRuleName ]: The name of the server firewall rule. + [Id ]: Resource identity path + [LocationName ]: The name of the location. + [ResourceGroupName ]: The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. + [SecurityAlertPolicyName ]: The name of the security alert policy. + [ServerName ]: The name of the server. + [SubscriptionId ]: The subscription ID that identifies an Azure subscription. + [VirtualNetworkRuleName ]: The name of the virtual network rule. .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/restart-azmariadbserver #> diff --git a/src/MariaDb/internal/Set-AzMariaDbDatabase.ps1 b/src/MariaDb/internal/Set-AzMariaDbDatabase.ps1 index 67137f1e8578..2e2f2df83fa4 100644 --- a/src/MariaDb/internal/Set-AzMariaDbDatabase.ps1 +++ b/src/MariaDb/internal/Set-AzMariaDbDatabase.ps1 @@ -27,6 +27,18 @@ PS C:\> {{ Add code here }} {{ Add output here }} +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IDatabase +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IDatabase +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +PARAMETER : Represents a Database. + [Charset ]: The charset of the database. + [Collation ]: The collation of the database. .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/set-azmariadbdatabase #> diff --git a/src/MariaDb/internal/Set-AzMariaDbServerSecurityAlertPolicy.ps1 b/src/MariaDb/internal/Set-AzMariaDbServerSecurityAlertPolicy.ps1 index 24c9cbb20ef9..65ffb45f44d7 100644 --- a/src/MariaDb/internal/Set-AzMariaDbServerSecurityAlertPolicy.ps1 +++ b/src/MariaDb/internal/Set-AzMariaDbServerSecurityAlertPolicy.ps1 @@ -27,6 +27,23 @@ PS C:\> {{ Add code here }} {{ Add output here }} +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicy +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerSecurityAlertPolicy +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +PARAMETER : A server security alert policy. + State : Specifies the state of the policy, whether it is enabled or disabled. + [DisabledAlert ]: Specifies an array of alerts that are disabled. Allowed values are: Sql_Injection, Sql_Injection_Vulnerability, Access_Anomaly + [EmailAccountAdmin ]: Specifies that the alert is sent to the account administrators. + [EmailAddress ]: Specifies an array of e-mail addresses to which the alert is sent. + [RetentionDay ]: Specifies the number of days to keep in the Threat Detection audit logs. + [StorageAccountAccessKey ]: Specifies the identifier key of the Threat Detection audit storage account. + [StorageEndpoint ]: Specifies the blob storage endpoint (e.g. https://MyAccount.blob.core.windows.net). This blob storage will hold all Threat Detection audit logs. .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/set-azmariadbserversecurityalertpolicy #> diff --git a/src/MariaDb/internal/Update-AzMariaDbConfiguration.ps1 b/src/MariaDb/internal/Update-AzMariaDbConfiguration.ps1 new file mode 100644 index 000000000000..501bd32875d5 --- /dev/null +++ b/src/MariaDb/internal/Update-AzMariaDbConfiguration.ps1 @@ -0,0 +1,199 @@ + +# ---------------------------------------------------------------------------------- +# +# 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 +Updates a configuration of a server. +.Description +Updates a configuration of a server. +.Example +PS C:\> Update-AzMariaDbConfiguration -Name delayed_insert_timeout -Value 200 -ServerName mariadb-test-h3pame -ResourceGroupName mariadb-test-qu5ov0 + +Name Type +---- ---- +delayed_insert_timeout Microsoft.DBforMariaDB/servers/configurations + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfiguration +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ConfigurationName ]: The name of the server configuration. + [DatabaseName ]: The name of the database. + [FirewallRuleName ]: The name of the server firewall rule. + [Id ]: Resource identity path + [LocationName ]: The name of the location. + [ResourceGroupName ]: The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. + [SecurityAlertPolicyName ]: The name of the security alert policy. + [ServerName ]: The name of the server. + [SubscriptionId ]: The subscription ID that identifies an Azure subscription. + [VirtualNetworkRuleName ]: The name of the virtual network rule. +.Link +https://docs.microsoft.com/en-us/powershell/module/az.mariadb/update-azmariadbconfiguration +#> +function Update-AzMariaDbConfiguration { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfiguration])] +[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Alias('ConfigurationName')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] + [System.String] + # The name of the server configuration. + ${Name}, + + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] + [System.String] + # The name of the resource group that contains the resource. + # You can obtain this value from the Azure Resource Manager API or the portal. + ${ResourceGroupName}, + + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] + [System.String] + # The name of the server. + ${ServerName}, + + [Parameter(ParameterSetName='UpdateExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # The subscription ID that identifies an Azure subscription. + ${SubscriptionId}, + + [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] + [System.String] + # Source of the configuration. + ${Source}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] + [System.String] + # Value of the configuration. + ${Value}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + UpdateExpanded = 'Az.MariaDb.private\Update-AzMariaDbConfiguration_UpdateExpanded'; + UpdateViaIdentityExpanded = 'Az.MariaDb.private\Update-AzMariaDbConfiguration_UpdateViaIdentityExpanded'; + } + if (('UpdateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} diff --git a/src/MariaDb/internal/Update-AzMariaDbFirewallRule.ps1 b/src/MariaDb/internal/Update-AzMariaDbFirewallRule.ps1 new file mode 100644 index 000000000000..0c6684511600 --- /dev/null +++ b/src/MariaDb/internal/Update-AzMariaDbFirewallRule.ps1 @@ -0,0 +1,215 @@ + +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.Synopsis +Creates a new firewall rule or updates an existing firewall rule. +.Description +Creates a new firewall rule or updates an existing firewall rule. +.Example +PS C:\> Update-AzMariaDbFirewallRule -Name fr-cfgl3y -ServerName mariadb-test-4rmtig -ResourceGroupName mariadb-test-qu5ov0 -StartIPAddress 0.0.3.1 -EndIPAddress 0.0.3.255 + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +fr-cfgl3y 0.0.3.1 0.0.3.255 +.Example +PS C:\> $ID = "/subscriptions//resourceGroups/mariadb-test-qu5ov0/providers/Microsoft.DBforMariaDB/servers/mariadb-test-4rmtig/firewallRules/fr-cfgl3y" +PS C:\> Update-AzMariaDbFirewallRule -InputObject $ID -EndIPAddress 0.0.0.3 -StartIPAddress 0.0.0.2 + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +fr-cfgl3y 0.0.0.2 0.0.0.3 +.Example +PS C:\> $ID = "/subscriptions//resourceGroups/mariadb-test-qu5ov0/providers/Microsoft.DBforMariaDB/servers/mariadb-test-4rmtig/firewallRules/fr-cfgl3y" +PS C:\> Update-AzMariaDbFirewallRule -InputObject $ID --ClientIPAddress 0.0.0.2 + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +fr-cfgl3y 0.0.0.2 0.0.0.2 + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRule +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ConfigurationName ]: The name of the server configuration. + [DatabaseName ]: The name of the database. + [FirewallRuleName ]: The name of the server firewall rule. + [Id ]: Resource identity path + [LocationName ]: The name of the location. + [ResourceGroupName ]: The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. + [SecurityAlertPolicyName ]: The name of the security alert policy. + [ServerName ]: The name of the server. + [SubscriptionId ]: The subscription ID that identifies an Azure subscription. + [VirtualNetworkRuleName ]: The name of the virtual network rule. +.Link +https://docs.microsoft.com/en-us/powershell/module/az.mariadb/update-azmariadbfirewallrule +#> +function Update-AzMariaDbFirewallRule { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRule])] +[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Alias('FirewallRuleName')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] + [System.String] + # The name of the server firewall rule. + ${Name}, + + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] + [System.String] + # The name of the resource group that contains the resource. + # You can obtain this value from the Azure Resource Manager API or the portal. + ${ResourceGroupName}, + + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] + [System.String] + # The name of the server. + ${ServerName}, + + [Parameter(ParameterSetName='UpdateExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # The subscription ID that identifies an Azure subscription. + ${SubscriptionId}, + + [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] + [System.String] + # The end IP address of the server firewall rule. + # Must be IPv4 format. + ${EndIPAddress}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Body')] + [System.String] + # The start IP address of the server firewall rule. + # Must be IPv4 format. + ${StartIPAddress}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + UpdateExpanded = 'Az.MariaDb.private\Update-AzMariaDbFirewallRule_UpdateExpanded'; + UpdateViaIdentityExpanded = 'Az.MariaDb.private\Update-AzMariaDbFirewallRule_UpdateViaIdentityExpanded'; + } + if (('UpdateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} diff --git a/src/MariaDb/internal/Update-AzMariaDbServer.ps1 b/src/MariaDb/internal/Update-AzMariaDbServer.ps1 index acb08f25be6d..90d94293c41a 100644 --- a/src/MariaDb/internal/Update-AzMariaDbServer.ps1 +++ b/src/MariaDb/internal/Update-AzMariaDbServer.ps1 @@ -23,16 +23,55 @@ The request body can contain one to many of the properties present in the normal .Example PS C:\> Update-AzMariaDbServer -Name mariadb-test-4rmtig -ResourceGroupName mariadb-test-qu5ov0 -StorageInMb 8192 -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mariadb-test-4rmtig eastus xofavpndqj 10.2 8192 B_Gen5_1 Basic Enabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mariadb-test-4rmtig eastus xofavpndqj 10.2 8192 B_Gen5_1 Basic Enabled .Example PS C:\> Get-AzMariaDbServer -Name mariadb-test-4rmtig -ResourceGroupName mariadb-test-qu5ov0 | Update-AzMariaDbServer -StorageInMb (8192+1024) -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mariadb-test-4rmtig eastus xofavpndqj 10.2 9216 B_Gen5_1 Basic Enabled - +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mariadb-test-4rmtig eastus xofavpndqj 10.2 9216 B_Gen5_1 Basic Enabled + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServerUpdateParameters +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ConfigurationName ]: The name of the server configuration. + [DatabaseName ]: The name of the database. + [FirewallRuleName ]: The name of the server firewall rule. + [Id ]: Resource identity path + [LocationName ]: The name of the location. + [ResourceGroupName ]: The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. + [SecurityAlertPolicyName ]: The name of the security alert policy. + [ServerName ]: The name of the server. + [SubscriptionId ]: The subscription ID that identifies an Azure subscription. + [VirtualNetworkRuleName ]: The name of the virtual network rule. + +PARAMETER : Parameters allowed to update for a server. + [AdministratorLoginPassword ]: The password of the administrator login. + [ReplicationRole ]: The replication role of the server. + [SkuCapacity ]: The scale up/out capacity, representing server's compute units. + [SkuFamily ]: The family of hardware. + [SkuName ]: The name of the sku, typically, tier + family + cores, e.g. B_Gen4_1, GP_Gen5_8. + [SkuSize ]: The size code, to be interpreted by resource as appropriate. + [SkuTier ]: The tier of the particular SKU, e.g. Basic. + [SslEnforcement ]: Enable ssl enforcement or not when connect to server. + [StorageProfileBackupRetentionDay ]: Backup retention days for the server. + [StorageProfileGeoRedundantBackup ]: Enable Geo-redundant or not for server backup. + [StorageProfileStorageAutogrow ]: Enable Storage Auto Grow. + [StorageProfileStorageMb ]: Max storage allowed for a server. + [Tag ]: Application-specific metadata in the form of key-value pairs. + [(Any) ]: This indicates any property can be added to this object. + [Version ]: The version of a server. .Link https://docs.microsoft.com/en-us/powershell/module/az.mariadb/update-azmariadbserver #> diff --git a/src/MariaDb/internal/readme.md b/src/MariaDb/internal/readme.md index 14766db37fbd..97fe0df79f79 100644 --- a/src/MariaDb/internal/readme.md +++ b/src/MariaDb/internal/readme.md @@ -1,5 +1,5 @@ # Internal -This directory contains a module to handle *internal only* cmdlets. Cmdlets that you **hide** in configuration are created here. For more information on hiding, see [cmdlet hiding](https://github.com/Azure/autorest/blob/master/docs/powershell/options.md#cmdlet-hiding-exportation-suppression). The cmdlets in this directory are generated at **build-time**. Do not put any custom code, files, cmdlets, etc. into this directory. Please use `../custom` for all custom implementation. +This directory contains a module to handle *internal only* cmdlets. Cmdlets that you **hide** in configuration are created here. For more information on hiding, see [cmdlet hiding](https://github.com/Azure/autorest/blob/master/docs/powershell/options.md#cmdlet-hiding-exportation-suppression). The cmdlets in this directory are generated at **build-time**. Do not put any custom code, files, cmdlets, etc. into this directory. Please use `..\custom` for all custom implementation. ## Info - Modifiable: no @@ -8,7 +8,7 @@ This directory contains a module to handle *internal only* cmdlets. Cmdlets that - Packaged: yes ## Details -The `Az.MariaDb.internal.psm1` file is generated to this folder. This module file handles the hidden cmdlets. These cmdlets will not be exported by `Az.MariaDb`. Instead, this sub-module is imported by the `../custom/Az.MariaDb.custom.psm1` module, allowing you to use hidden cmdlets in your custom, exposed cmdlets. To call these cmdlets in your custom scripts, simply use [module-qualified calls](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_command_precedence?view=powershell-6#qualified-names). For example, `Az.MariaDb.internal\Get-Example` would call an internal cmdlet named `Get-Example`. +The `Az.MariaDb.internal.psm1` file is generated to this folder. This module file handles the hidden cmdlets. These cmdlets will not be exported by `Az.MariaDb`. Instead, this sub-module is imported by the `..\custom\Az.MariaDb.custom.psm1` module, allowing you to use hidden cmdlets in your custom, exposed cmdlets. To call these cmdlets in your custom scripts, simply use [module-qualified calls](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_command_precedence?view=powershell-6#qualified-names). For example, `Az.MariaDb.internal\Get-Example` would call an internal cmdlet named `Get-Example`. ## Purpose This allows you to include REST specifications for services that you *do not wish to expose from your module*, but simply want to call within custom cmdlets. For example, if you want to make a custom cmdlet that uses `Storage` services, you could include a simplified `Storage` REST specification that has only the operations you need. When you run the generator and build this module, note the generated `Storage` cmdlets. Then, in your readme configuration, use [cmdlet hiding](https://github.com/Azure/autorest/blob/master/docs/powershell/options.md#cmdlet-hiding-exportation-suppression) on the `Storage` cmdlets and they will *only be exposed to the custom cmdlets* you want to write, and not be exported as part of `Az.MariaDb`. \ No newline at end of file diff --git a/src/MariaDb/readme.md b/src/MariaDb/readme.md index 05abacfd7ba4..2667ce7be481 100644 --- a/src/MariaDb/readme.md +++ b/src/MariaDb/readme.md @@ -47,13 +47,14 @@ In this directory, run AutoRest: > see https://aka.ms/autorest ``` yaml +branch: ae862b1c090b4c2c951ea46bf97ddbafd6f76d82 require: - $(this-folder)/../readme.azure.noprofile.md input-file: - $(repo)/specification/mariadb/resource-manager/Microsoft.DBforMariaDB/preview/2018-06-01-preview/mariadb.json title: MariaDB -module-version: 0.0.1 +module-version: 0.1.0 directive: - where: @@ -69,7 +70,10 @@ directive: variant: ^Create$|^CreateViaIdentity$|^CreateViaIdentityExpanded$|^Update$|^UpdateViaIdentity$ subject: Configuration$|FirewallRule$|VirtualNetworkRule$ remove: true - + - where: + verb: New$|Update$ + subject: Configuration$|FirewallRule$ + hide: true # Server - where: verb: New|Update|Restart @@ -104,25 +108,6 @@ directive: set: parameter-name: SubnetId -# FirewallRule - - where: - subject: FirewallRule - parameter-name: Parameter - set: - parameter-name: FirewallRule - -# MariaDBConfiguration - - where: - verb: New - subject: Configuration - hide: true - - where: - verb: Update - subject: Configuration - parameter-name: Parameter - set: - parameter-name: Configuration - - where: subject: LogFile|Database|LocationBasedPerformanceTier|CheckNameAvailability|ServerSecurityAlertPolicy hide: true @@ -131,10 +116,10 @@ directive: - from: source-file-csharp where: $ transform: $ = $.replace(/OperationOrigin System/, 'OperationOrigin System1'); - - from: ServerForCreate.cs + - from: source-file-csharp where: $ transform: $ = $.replace(/internal partial interface IServerForCreateInternal/, 'public partial interface IServerForCreateInternal'); - - from: (.*)AzMariaDbServer_(.*).cs + - from: source-file-csharp where: $ transform: $ = $.replace('public int StorageProfileBackupRetentionDay', '[System.Management.Automation.ValidateRangeAttribute(7,35)]\n public int StorageProfileBackupRetentionDay'); ``` diff --git a/src/MariaDb/run-module.ps1 b/src/MariaDb/run-module.ps1 index 63be2311e1fa..fd0701c225fb 100644 --- a/src/MariaDb/run-module.ps1 +++ b/src/MariaDb/run-module.ps1 @@ -26,7 +26,7 @@ if($isAzure) { . (Join-Path $PSScriptRoot 'check-dependencies.ps1') -Isolated -Accounts } -$localModulesPath = Join-Path $PSScriptRoot 'generated/modules' +$localModulesPath = Join-Path $PSScriptRoot 'generated\modules' if(Test-Path -Path $localModulesPath) { $env:PSModulePath = "$localModulesPath$([IO.Path]::PathSeparator)$env:PSModulePath" } diff --git a/src/MariaDb/test-module.ps1 b/src/MariaDb/test-module.ps1 index 771c6ec64f48..62032cbb2f4b 100644 --- a/src/MariaDb/test-module.ps1 +++ b/src/MariaDb/test-module.ps1 @@ -32,7 +32,7 @@ if ($requireResourceModule) { Import-Module -Name $resourceModulePSD.FullName } -$localModulesPath = Join-Path $PSScriptRoot 'generated/modules' +$localModulesPath = Join-Path $PSScriptRoot 'generated\modules' if(Test-Path -Path $localModulesPath) { $env:PSModulePath = "$localModulesPath$([IO.Path]::PathSeparator)$env:PSModulePath" } diff --git a/src/MariaDb/test/Az.MariaDb-TestResults.xml b/src/MariaDb/test/Az.MariaDb-TestResults.xml deleted file mode 100644 index 20a81fe90a9e..000000000000 --- a/src/MariaDb/test/Az.MariaDb-TestResults.xml +++ /dev/null @@ -1,193 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/MariaDb/test/Get-AzMariaDbConfiguration.Recording.json b/src/MariaDb/test/Get-AzMariaDbConfiguration.Recording.json index e9d0b428b138..b9694db92d5e 100644 --- a/src/MariaDb/test/Get-AzMariaDbConfiguration.Recording.json +++ b/src/MariaDb/test/Get-AzMariaDbConfiguration.Recording.json @@ -1,12 +1,12 @@ { - "Get-AzMariaDbConfiguration+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations?api-version=2018-06-01-preview+1": { + "Get-AzMariaDbConfiguration+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations?api-version=2018-06-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "94" ], - "x-ms-client-request-id": [ "b3bfed5a-2b88-4403-a801-50950053fd81" ], + "x-ms-unique-id": [ "62" ], + "x-ms-client-request-id": [ "8e1f4e6b-d65f-4765-a7c6-9fc0c9160a32" ], "CommandName": [ "Get-AzMariaDbConfiguration" ], "FullCommandName": [ "Get-AzMariaDbConfiguration_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -21,31 +21,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "82bf56ef-c2db-411c-b52b-f035993dbba8" ], + "x-ms-request-id": [ "300595a6-3f88-4ef5-af8c-f31c0a3f2b59" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11921" ], - "x-ms-correlation-request-id": [ "017c9fe4-5dea-449a-9ed2-f10079e2cfbf" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T022837Z:017c9fe4-5dea-449a-9ed2-f10079e2cfbf" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11951" ], + "x-ms-correlation-request-id": [ "578744c2-d74e-4d1e-805d-6f7e2b3a54f2" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T182638Z:578744c2-d74e-4d1e-805d-6f7e2b3a54f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:28:37 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:26:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "98521" ], + "Content-Length": [ "103787" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"properties\":{\"value\":\"OFF\",\"description\":\"Allow to audit the log.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/audit_log_enabled\",\"name\":\"audit_log_enabled\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"CONNECTION\",\"description\":\"Select the events to audit logs.\",\"defaultValue\":\"CONNECTION\",\"dataType\":\"Set\",\"allowedValues\":\"DDL,DML_SELECT,DML_NONSELECT,DCL,ADMIN,DML,GENERAL,CONNECTION\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/audit_log_events\",\"name\":\"audit_log_events\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"azure_superuser\",\"description\":\"The comma-separated user list whose commands will not be in the audit logs.\",\"defaultValue\":\"azure_superuser\",\"dataType\":\"String\",\"allowedValues\":\"\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/audit_log_exclude_users\",\"name\":\"audit_log_exclude_users\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"\",\"description\":\"The comma-separated user list whose commands will be in the audit logs. It takes higher priority if the same user name is found in audit_log_exclude_users.\",\"defaultValue\":\"\",\"dataType\":\"String\",\"allowedValues\":\"\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/audit_log_include_users\",\"name\":\"audit_log_include_users\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"MINIMAL\",\"description\":\"Controls whether rows should be logged in \u0027FULL\u0027, \u0027NOBLOB\u0027 or \u0027MINIMAL\u0027 formats. \u0027FULL\u0027, means that all columns in the before and after image are logged. \u0027NOBLOB\u0027, means that mysqld avoids logging blob columns whenever possible (eg, blob column was not changed or is not part of primary key). \u0027MINIMAL\u0027, means that a PK equivalent (PK columns or full row if there is no PK in the table) is logged in the before image, and only changed columns are logged in the after image. (Default: FULL).\",\"defaultValue\":\"MINIMAL\",\"dataType\":\"Enumeration\",\"allowedValues\":\"MINIMAL,NOBLOB,FULL\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/binlog_row_image\",\"name\":\"binlog_row_image\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"LATIN1\",\"description\":\"Use charset_name as the default server character set.\",\"defaultValue\":\"LATIN1\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ARMSCII8,ASCII,BIG5,BINARY,CP1250,CP1251,CP1256,CP1257,CP850,CP852,CP866,CP932,DEC8,EUCJPMS,EUCKR,GB2312,GBK,GEOSTD8,GREEK,HEBREW,HP8,KEYBCS2,KOI8R,KOI8U,LATIN1,LATIN2,LATIN5,LATIN7,MACCE,MACROMAN,SJIS,SWE7,TIS620,UCS2,UJIS,UTF16,UTF16LE,UTF32,UTF8,UTF8MB4\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/character_set_server\",\"name\":\"character_set_server\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"latin1_swedish_ci\",\"description\":\"The server\u0027s default collation.\",\"defaultValue\":\"latin1_swedish_ci\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ARMSCII8_BIN,ARMSCII8_GENERAL_CI,ARMSCII8_GENERAL_NOPAD_CI,ARMSCII8_NOPAD_BIN,ASCII_BIN,ASCII_GENERAL_CI,ASCII_GENERAL_NOPAD_CI,ASCII_NOPAD_BIN,BIG5_BIN,BIG5_CHINESE_CI,BIG5_CHINESE_NOPAD_CI,BIG5_NOPAD_BIN,BINARY,CP1250_BIN,CP1250_CROATIAN_CI,CP1250_CZECH_CS,CP1250_GENERAL_CI,CP1250_GENERAL_NOPAD_CI,CP1250_NOPAD_BIN,CP1250_POLISH_CI,CP1251_BIN,CP1251_BULGARIAN_CI,CP1251_GENERAL_CI,CP1251_GENERAL_CS,CP1251_GENERAL_NOPAD_CI,CP1251_NOPAD_BIN,CP1251_UKRAINIAN_CI,CP1256_BIN,CP1256_GENERAL_CI,CP1256_GENERAL_NOPAD_CI,CP1256_NOPAD_BIN,CP1257_BIN,CP1257_GENERAL_CI,CP1257_GENERAL_NOPAD_CI,CP1257_LITHUANIAN_CI,CP1257_NOPAD_BIN,CP850_BIN,CP850_GENERAL_CI,CP850_GENERAL_NOPAD_CI,CP850_NOPAD_BIN,CP852_BIN,CP852_GENERAL_CI,CP852_GENERAL_NOPAD_CI,CP852_NOPAD_BIN,CP866_BIN,CP866_GENERAL_CI,CP866_GENERAL_NOPAD_CI,CP866_NOPAD_BIN,CP932_BIN,CP932_JAPANESE_CI,CP932_JAPANESE_NOPAD_CI,CP932_NOPAD_BIN,DEC8_BIN,DEC8_NOPAD_BIN,DEC8_SWEDISH_CI,DEC8_SWEDISH_NOPAD_CI,EUCJPMS_BIN,EUCJPMS_JAPANESE_CI,EUCJPMS_JAPANESE_NOPAD_CI,EUCJPMS_NOPAD_BIN,EUCKR_BIN,EUCKR_KOREAN_CI,EUCKR_KOREAN_NOPAD_CI,EUCKR_NOPAD_BIN,GB2312_BIN,GB2312_CHINESE_CI,GB2312_CHINESE_NOPAD_CI,GB2312_NOPAD_BIN,GBK_BIN,GBK_CHINESE_CI,GBK_CHINESE_NOPAD_CI,GBK_NOPAD_BIN,GEOSTD8_BIN,GEOSTD8_GENERAL_CI,GEOSTD8_GENERAL_NOPAD_CI,GEOSTD8_NOPAD_BIN,GREEK_BIN,GREEK_GENERAL_CI,GREEK_GENERAL_NOPAD_CI,GREEK_NOPAD_BIN,HEBREW_BIN,HEBREW_GENERAL_CI,HEBREW_GENERAL_NOPAD_CI,HEBREW_NOPAD_BIN,HP8_BIN,HP8_ENGLISH_CI,HP8_ENGLISH_NOPAD_CI,HP8_NOPAD_BIN,KEYBCS2_BIN,KEYBCS2_GENERAL_CI,KEYBCS2_GENERAL_NOPAD_CI,KEYBCS2_NOPAD_BIN,KOI8R_BIN,KOI8R_GENERAL_CI,KOI8R_GENERAL_NOPAD_CI,KOI8R_NOPAD_BIN,KOI8U_BIN,KOI8U_GENERAL_CI,KOI8U_GENERAL_NOPAD_CI,KOI8U_NOPAD_BIN,LATIN1_BIN,LATIN1_DANISH_CI,LATIN1_GENERAL_CI,LATIN1_GENERAL_CS,LATIN1_GERMAN1_CI,LATIN1_GERMAN2_CI,LATIN1_NOPAD_BIN,LATIN1_SPANISH_CI,LATIN1_SWEDISH_CI,LATIN1_SWEDISH_NOPAD_CI,LATIN2_BIN,LATIN2_CROATIAN_CI,LATIN2_CZECH_CS,LATIN2_GENERAL_CI,LATIN2_GENERAL_NOPAD_CI,LATIN2_HUNGARIAN_CI,LATIN2_NOPAD_BIN,LATIN5_BIN,LATIN5_NOPAD_BIN,LATIN5_TURKISH_CI,LATIN5_TURKISH_NOPAD_CI,LATIN7_BIN,LATIN7_ESTONIAN_CS,LATIN7_GENERAL_CI,LATIN7_GENERAL_CS,LATIN7_GENERAL_NOPAD_CI,LATIN7_NOPAD_BIN,MACCE_BIN,MACCE_GENERAL_CI,MACCE_GENERAL_NOPAD_CI,MACCE_NOPAD_BIN,MACROMAN_BIN,MACROMAN_GENERAL_CI,MACROMAN_GENERAL_NOPAD_CI,MACROMAN_NOPAD_BIN,SJIS_BIN,SJIS_JAPANESE_CI,SJIS_JAPANESE_NOPAD_CI,SJIS_NOPAD_BIN,SWE7_BIN,SWE7_NOPAD_BIN,SWE7_SWEDISH_CI,SWE7_SWEDISH_NOPAD_CI,TIS620_BIN,TIS620_NOPAD_BIN,TIS620_THAI_CI,TIS620_THAI_NOPAD_CI,UCS2_BIN,UCS2_CROATIAN_CI,UCS2_CROATIAN_MYSQL561_CI,UCS2_CZECH_CI,UCS2_DANISH_CI,UCS2_ESPERANTO_CI,UCS2_ESTONIAN_CI,UCS2_GENERAL_CI,UCS2_GENERAL_MYSQL500_CI,UCS2_GENERAL_NOPAD_CI,UCS2_GERMAN2_CI,UCS2_HUNGARIAN_CI,UCS2_ICELANDIC_CI,UCS2_LATVIAN_CI,UCS2_LITHUANIAN_CI,UCS2_MYANMAR_CI,UCS2_NOPAD_BIN,UCS2_PERSIAN_CI,UCS2_POLISH_CI,UCS2_ROMAN_CI,UCS2_ROMANIAN_CI,UCS2_SINHALA_CI,UCS2_SLOVAK_CI,UCS2_SLOVENIAN_CI,UCS2_SPANISH_CI,UCS2_SPANISH2_CI,UCS2_SWEDISH_CI,UCS2_THAI_520_W2,UCS2_TURKISH_CI,UCS2_UNICODE_520_CI,UCS2_UNICODE_520_NOPAD_CI,UCS2_UNICODE_CI,UCS2_UNICODE_NOPAD_CI,UCS2_VIETNAMESE_CI,UJIS_BIN,UJIS_JAPANESE_CI,UJIS_JAPANESE_NOPAD_CI,UJIS_NOPAD_BIN,UTF16_BIN,UTF16_CROATIAN_CI,UTF16_CROATIAN_MYSQL561_CI,UTF16_CZECH_CI,UTF16_DANISH_CI,UTF16_ESPERANTO_CI,UTF16_ESTONIAN_CI,UTF16_GENERAL_CI,UTF16_GENERAL_NOPAD_CI,UTF16_GERMAN2_CI,UTF16_HUNGARIAN_CI,UTF16_ICELANDIC_CI,UTF16_LATVIAN_CI,UTF16_LITHUANIAN_CI,UTF16_MYANMAR_CI,UTF16_NOPAD_BIN,UTF16_PERSIAN_CI,UTF16_POLISH_CI,UTF16_ROMAN_CI,UTF16_ROMANIAN_CI,UTF16_SINHALA_CI,UTF16_SLOVAK_CI,UTF16_SLOVENIAN_CI,UTF16_SPANISH_CI,UTF16_SPANISH2_CI,UTF16_SWEDISH_CI,UTF16_THAI_520_W2,UTF16_TURKISH_CI,UTF16_UNICODE_520_CI,UTF16_UNICODE_520_NOPAD_CI,UTF16_UNICODE_CI,UTF16_UNICODE_NOPAD_CI,UTF16_VIETNAMESE_CI,UTF16LE_BIN,UTF16LE_GENERAL_CI,UTF16LE_GENERAL_NOPAD_CI,UTF16LE_NOPAD_BIN,UTF32_BIN,UTF32_CROATIAN_CI,UTF32_CROATIAN_MYSQL561_CI,UTF32_CZECH_CI,UTF32_DANISH_CI,UTF32_ESPERANTO_CI,UTF32_ESTONIAN_CI,UTF32_GENERAL_CI,UTF32_GENERAL_NOPAD_CI,UTF32_GERMAN2_CI,UTF32_HUNGARIAN_CI,UTF32_ICELANDIC_CI,UTF32_LATVIAN_CI,UTF32_LITHUANIAN_CI,UTF32_MYANMAR_CI,UTF32_NOPAD_BIN,UTF32_PERSIAN_CI,UTF32_POLISH_CI,UTF32_ROMAN_CI,UTF32_ROMANIAN_CI,UTF32_SINHALA_CI,UTF32_SLOVAK_CI,UTF32_SLOVENIAN_CI,UTF32_SPANISH_CI,UTF32_SPANISH2_CI,UTF32_SWEDISH_CI,UTF32_THAI_520_W2,UTF32_TURKISH_CI,UTF32_UNICODE_520_CI,UTF32_UNICODE_520_NOPAD_CI,UTF32_UNICODE_CI,UTF32_UNICODE_NOPAD_CI,UTF32_VIETNAMESE_CI,UTF8_BIN,UTF8_CROATIAN_CI,UTF8_CROATIAN_MYSQL561_CI,UTF8_CZECH_CI,UTF8_DANISH_CI,UTF8_ESPERANTO_CI,UTF8_ESTONIAN_CI,UTF8_GENERAL_CI,UTF8_GENERAL_MYSQL500_CI,UTF8_GENERAL_NOPAD_CI,UTF8_GERMAN2_CI,UTF8_HUNGARIAN_CI,UTF8_ICELANDIC_CI,UTF8_LATVIAN_CI,UTF8_LITHUANIAN_CI,UTF8_MYANMAR_CI,UTF8_NOPAD_BIN,UTF8_PERSIAN_CI,UTF8_POLISH_CI,UTF8_ROMAN_CI,UTF8_ROMANIAN_CI,UTF8_SINHALA_CI,UTF8_SLOVAK_CI,UTF8_SLOVENIAN_CI,UTF8_SPANISH_CI,UTF8_SPANISH2_CI,UTF8_SWEDISH_CI,UTF8_THAI_520_W2,UTF8_TURKISH_CI,UTF8_UNICODE_520_CI,UTF8_UNICODE_520_NOPAD_CI,UTF8_UNICODE_CI,UTF8_UNICODE_NOPAD_CI,UTF8_VIETNAMESE_CI,UTF8MB4_BIN,UTF8MB4_CROATIAN_CI,UTF8MB4_CROATIAN_MYSQL561_CI,UTF8MB4_CZECH_CI,UTF8MB4_DANISH_CI,UTF8MB4_ESPERANTO_CI,UTF8MB4_ESTONIAN_CI,UTF8MB4_GENERAL_CI,UTF8MB4_GENERAL_NOPAD_CI,UTF8MB4_GERMAN2_CI,UTF8MB4_HUNGARIAN_CI,UTF8MB4_ICELANDIC_CI,UTF8MB4_LATVIAN_CI,UTF8MB4_LITHUANIAN_CI,UTF8MB4_MYANMAR_CI,UTF8MB4_NOPAD_BIN,UTF8MB4_PERSIAN_CI,UTF8MB4_POLISH_CI,UTF8MB4_ROMAN_CI,UTF8MB4_ROMANIAN_CI,UTF8MB4_SINHALA_CI,UTF8MB4_SLOVAK_CI,UTF8MB4_SLOVENIAN_CI,UTF8MB4_SPANISH_CI,UTF8MB4_SPANISH2_CI,UTF8MB4_SWEDISH_CI,UTF8MB4_THAI_520_W2,UTF8MB4_TURKISH_CI,UTF8MB4_UNICODE_520_CI,UTF8MB4_UNICODE_520_NOPAD_CI,UTF8MB4_UNICODE_CI,UTF8MB4_UNICODE_NOPAD_CI,UTF8MB4_VIETNAMESE_CI\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/collation_server\",\"name\":\"collation_server\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"\",\"description\":\"Default flags for the regex library\",\"defaultValue\":\"\",\"dataType\":\"Set\",\"allowedValues\":\",DOTALL,DUPNAMES,EXTENDED,EXTRA,MULTILINE,UNGREEDY\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/default_regex_flags\",\"name\":\"default_regex_flags\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"The default week format used by WEEK() functions\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-7\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/default_week_format\",\"name\":\"default_week_format\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"100\",\"description\":\"After inserting delayed_insert_limit rows, the INSERT DELAYED handler will check if there are any SELECT statements pending. If so, it allows these to execute before continuing.\",\"defaultValue\":\"100\",\"dataType\":\"Integer\",\"allowedValues\":\"1-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/delayed_insert_limit\",\"name\":\"delayed_insert_limit\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"300\",\"description\":\"How long a INSERT DELAYED thread should wait for INSERT statements before terminating\",\"defaultValue\":\"300\",\"dataType\":\"Integer\",\"allowedValues\":\"1-31536000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/delayed_insert_timeout\",\"name\":\"delayed_insert_timeout\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"1000\",\"description\":\"What size queue (in rows) should be allocated for handling INSERT DELAYED. If the queue becomes full, any client that does INSERT DELAYED will wait until there is room in the queue again\",\"defaultValue\":\"1000\",\"dataType\":\"Integer\",\"allowedValues\":\"1-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/delayed_queue_size\",\"name\":\"delayed_queue_size\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"4\",\"description\":\"Number of digits by which to increase the scale of the result of division operations.\",\"defaultValue\":\"4\",\"dataType\":\"Integer\",\"allowedValues\":\"0-30\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/div_precision_increment\",\"name\":\"div_precision_increment\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"Indicates the status of the Event Scheduler. It is always OFF for a replica server to keep the replication consistency.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/event_scheduler\",\"name\":\"event_scheduler\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"100\",\"description\":\"The maximum number of rows a subquery may examine in order to be executed during optimization and used for constant optimization\",\"defaultValue\":\"100\",\"dataType\":\"Integer\",\"allowedValues\":\"0-18446744073709547520\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/expensive_subquery_limit\",\"name\":\"expensive_subquery_limit\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"ON\",\"description\":\"This option causes CREATE TABLE to create all TIMESTAMP columns as NULL with DEFAULT NULL attribute, Without this option, TIMESTAMP columns are NOT NULL and have implicit DEFAULT clauses. The old behavior is deprecated.\",\"defaultValue\":\"ON\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/explicit_defaults_for_timestamp\",\"name\":\"explicit_defaults_for_timestamp\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"1048576\",\"description\":\"Maximum allowed result length in bytes for the GROUP_CONCAT().\",\"defaultValue\":\"1048576\",\"dataType\":\"Integer\",\"allowedValues\":\"4-18446744073709547520\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/group_concat_max_len\",\"name\":\"group_concat_max_len\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"Number of bytes used for a histogram. If set to 0, no histograms are created by ANALYZE.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-255\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/histogram_size\",\"name\":\"histogram_size\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"SINGLE_PREC_HB\",\"description\":\"Specifies type of the histograms created by ANALYZE. Possible values are: SINGLE_PREC_HB - single precision height-balanced, DOUBLE_PREC_HB - double precision height-balanced.\",\"defaultValue\":\"SINGLE_PREC_HB\",\"dataType\":\"Enumeration\",\"allowedValues\":\"SINGLE_PREC_HB,DOUBLE_PREC_HB\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/histogram_type\",\"name\":\"histogram_type\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"128\",\"description\":\"How many host names should be cached to avoid resolving.\",\"defaultValue\":\"128\",\"dataType\":\"Integer\",\"allowedValues\":\"0-65536\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/host_cache_size\",\"name\":\"host_cache_size\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"\",\"description\":\"A string to be executed by the server for each client that connects.\",\"defaultValue\":\"\",\"dataType\":\"String\",\"allowedValues\":\"\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/init_connect\",\"name\":\"init_connect\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"ON\",\"description\":\"Attempt flushing dirty pages to avoid IO bursts at checkpoints.\",\"defaultValue\":\"ON\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_adaptive_flushing\",\"name\":\"innodb_adaptive_flushing\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"10\",\"description\":\"Percentage of log capacity below which no adaptive flushing happens.\",\"defaultValue\":\"10\",\"dataType\":\"Numeric\",\"allowedValues\":\"0-70\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_adaptive_flushing_lwm\",\"name\":\"innodb_adaptive_flushing_lwm\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"ON\",\"description\":\"Whether innodb adaptive hash indexes are enabled or disabled.\",\"defaultValue\":\"ON\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_adaptive_hash_index\",\"name\":\"innodb_adaptive_hash_index\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"8\",\"description\":\"It is an alias for innodb_adaptive_hash_index_parts; only exists to allow easier upgrade from earlier XtraDB versions.\",\"defaultValue\":\"8\",\"dataType\":\"Integer\",\"allowedValues\":\"1-64\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_adaptive_hash_index_partitions\",\"name\":\"innodb_adaptive_hash_index_partitions\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"8\",\"description\":\"Number of InnoDB Adaptive Hash Index Partitions (default 8)\",\"defaultValue\":\"8\",\"dataType\":\"Integer\",\"allowedValues\":\"1-512\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_adaptive_hash_index_parts\",\"name\":\"innodb_adaptive_hash_index_parts\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"150000\",\"description\":\"The upper limit of the sleep delay in usec. Value of 0 disables it.\",\"defaultValue\":\"150000\",\"dataType\":\"Integer\",\"allowedValues\":\"0-1000000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_adaptive_max_sleep_delay\",\"name\":\"innodb_adaptive_max_sleep_delay\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"64\",\"description\":\"Data file autoextend increment in megabytes\",\"defaultValue\":\"64\",\"dataType\":\"Integer\",\"allowedValues\":\"1-1000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_autoextend_increment\",\"name\":\"innodb_autoextend_increment\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"1\",\"description\":\"The lock mode to use for generating auto-increment values.\",\"defaultValue\":\"1\",\"dataType\":\"Integer\",\"allowedValues\":\"0-2\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_autoinc_lock_mode\",\"name\":\"innodb_autoinc_lock_mode\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"25\",\"description\":\"Dump only the hottest N% of each buffer pool, defaults to 25\",\"defaultValue\":\"25\",\"dataType\":\"Integer\",\"allowedValues\":\"1-100\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_buffer_pool_dump_pct\",\"name\":\"innodb_buffer_pool_dump_pct\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"872415232\",\"description\":\"The size in bytes of the buffer pool, the memory area where InnoDB caches table and index data.\",\"defaultValue\":\"872415232\",\"dataType\":\"Integer\",\"allowedValues\":\"134217728-872415232\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_buffer_pool_size\",\"name\":\"innodb_buffer_pool_size\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"25\",\"description\":\"Maximum on-disk size of change buffer in terms of percentage of the buffer pool.\",\"defaultValue\":\"25\",\"dataType\":\"Integer\",\"allowedValues\":\"0-50\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_change_buffer_max_size\",\"name\":\"innodb_change_buffer_max_size\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"all\",\"description\":\"Buffer changes to reduce random access: OFF, ON, inserting, deleting, changing, or purging.\",\"defaultValue\":\"all\",\"dataType\":\"Enumeration\",\"allowedValues\":\"inserts,deletes,purges,changes,all,none\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_change_buffering\",\"name\":\"innodb_change_buffering\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"Enable INFORMATION_SCHEMA.innodb_cmp_per_index, may have negative impact on performance (off by default)\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_cmp_per_index_enabled\",\"name\":\"innodb_cmp_per_index_enabled\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"5\",\"description\":\"If the compression failure rate of a table is greater than this number more padding is added to the pages to reduce the failures. A value of zero implies no padding\",\"defaultValue\":\"5\",\"dataType\":\"Integer\",\"allowedValues\":\"0-100\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_compression_failure_threshold_pct\",\"name\":\"innodb_compression_failure_threshold_pct\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"6\",\"description\":\"Compression level used for zlib compression. 0 is no compression, 1 is fastest, 9 is best compression and default is 6.\",\"defaultValue\":\"6\",\"dataType\":\"Integer\",\"allowedValues\":\"0-9\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_compression_level\",\"name\":\"innodb_compression_level\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"50\",\"description\":\"Percentage of empty space on a data page that can be reserved to make the page compressible.\",\"defaultValue\":\"50\",\"dataType\":\"Integer\",\"allowedValues\":\"0-75\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_compression_pad_pct_max\",\"name\":\"innodb_compression_pad_pct_max\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"5000\",\"description\":\"Determines the number of threads that can enter InnoDB concurrently.\",\"defaultValue\":\"5000\",\"dataType\":\"Integer\",\"allowedValues\":\"1-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_concurrency_tickets\",\"name\":\"innodb_concurrency_tickets\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"ON\",\"description\":\"Enable/disable InnoDB deadlock detector (default ON). if set to OFF, deadlock detection is skipped, and we rely on innodb_lock_wait_timeout in case of deadlock.\",\"defaultValue\":\"ON\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_deadlock_detect\",\"name\":\"innodb_deadlock_detect\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"dynamic\",\"description\":\"The default ROW FORMAT for all innodb tables created without explicit ROW_FORMAT. Possible values are REDUNDANT, COMPACT, and DYNAMIC. The ROW_FORMAT value COMPRESSED is not allowed\",\"defaultValue\":\"dynamic\",\"dataType\":\"Enumeration\",\"allowedValues\":\"redundant,compact,dynamic\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_default_row_format\",\"name\":\"innodb_default_row_format\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"100\",\"description\":\"Percentage of B-tree page filled during bulk insert\",\"defaultValue\":\"100\",\"dataType\":\"Integer\",\"allowedValues\":\"10-100\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_fill_factor\",\"name\":\"innodb_fill_factor\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"1\",\"description\":\"Write and flush logs every (n) second.\",\"defaultValue\":\"1\",\"dataType\":\"Integer\",\"allowedValues\":\"0-2700\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_flush_log_at_timeout\",\"name\":\"innodb_flush_log_at_timeout\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"ON\",\"description\":\"Create FTS index with stopword.\",\"defaultValue\":\"ON\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_ft_enable_stopword\",\"name\":\"innodb_ft_enable_stopword\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"2000\",\"description\":\"InnoDB Fulltext search number of words to optimize for each optimize table call \",\"defaultValue\":\"2000\",\"dataType\":\"Integer\",\"allowedValues\":\"1000-10000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_ft_num_word_optimize\",\"name\":\"innodb_ft_num_word_optimize\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"2000000000\",\"description\":\"InnoDB Fulltext search query result cache limit in bytes\",\"defaultValue\":\"2000000000\",\"dataType\":\"Integer\",\"allowedValues\":\"1000000-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_ft_result_cache_limit\",\"name\":\"innodb_ft_result_cache_limit\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"200\",\"description\":\"Sets an upper limit on I/O activity performed by InnoDB background tasks, such as flushing pages from the buffer pool and merging data from the change buffer.\",\"defaultValue\":\"200\",\"dataType\":\"Integer\",\"allowedValues\":\"100-1500\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_io_capacity\",\"name\":\"innodb_io_capacity\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"50\",\"description\":\"The length of time in seconds an InnoDB transaction waits for a row lock before giving up.\",\"defaultValue\":\"50\",\"dataType\":\"Integer\",\"allowedValues\":\"1-1073741824\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_lock_wait_timeout\",\"name\":\"innodb_lock_wait_timeout\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"ON\",\"description\":\"Enables/disables the logging of entire compressed page images. InnoDB logs the compressed pages to prevent corruption if the zlib compression algorithm changes. When turned OFF, InnoDB will assume that the zlib compression algorithm doesn\u0027t change.\",\"defaultValue\":\"ON\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_log_compressed_pages\",\"name\":\"innodb_log_compressed_pages\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"1024\",\"description\":\"How deep to scan LRU to keep it clean\",\"defaultValue\":\"1024\",\"dataType\":\"Integer\",\"allowedValues\":\"100-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_lru_scan_depth\",\"name\":\"innodb_lru_scan_depth\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"75\",\"description\":\"Percentage of dirty pages allowed in bufferpool.\",\"defaultValue\":\"75\",\"dataType\":\"Numeric\",\"allowedValues\":\"0-99\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_max_dirty_pages_pct\",\"name\":\"innodb_max_dirty_pages_pct\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"Percentage of dirty pages at which flushing kicks in.\",\"defaultValue\":\"0\",\"dataType\":\"Numeric\",\"allowedValues\":\"0-99\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_max_dirty_pages_pct_lwm\",\"name\":\"innodb_max_dirty_pages_pct_lwm\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"Desired maximum length of the purge queue (0 = no limit)\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_max_purge_lag\",\"name\":\"innodb_max_purge_lag\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"Maximum delay of user threads in micro-seconds\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-10000000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_max_purge_lag_delay\",\"name\":\"innodb_max_purge_lag_delay\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"10485760\",\"description\":\"Desired maximum UNDO tablespace size in bytes\",\"defaultValue\":\"10485760\",\"dataType\":\"Integer\",\"allowedValues\":\"10485760-281474976710656\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_max_undo_log_size\",\"name\":\"innodb_max_undo_log_size\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"37\",\"description\":\"Specifies the approximate percentage of the InnoDB buffer pool used for the old block sublist.\",\"defaultValue\":\"37\",\"dataType\":\"Integer\",\"allowedValues\":\"5-95\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_old_blocks_pct\",\"name\":\"innodb_old_blocks_pct\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"1000\",\"description\":\"Non-zero values protect against the buffer pool being filled by data that is referenced only for a brief period, such as during a full table scan.\",\"defaultValue\":\"1000\",\"dataType\":\"Integer\",\"allowedValues\":\"0-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_old_blocks_time\",\"name\":\"innodb_old_blocks_time\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"134217728\",\"description\":\"Specifies an upper limit on the size of the temporary log files used during online DDL operations for InnoDB tables.\",\"defaultValue\":\"134217728\",\"dataType\":\"Integer\",\"allowedValues\":\"65536-18446744073709547520\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_online_alter_log_max_size\",\"name\":\"innodb_online_alter_log_max_size\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"How many files at the maximum InnoDB keeps open at the same time.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-2147483647\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_open_files\",\"name\":\"innodb_open_files\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"Only optimize the Fulltext index of the table\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_optimize_fulltext_only\",\"name\":\"innodb_optimize_fulltext_only\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"4\",\"description\":\"Page cleaner threads can be from 1 to 64. Default is 4.\",\"defaultValue\":\"4\",\"dataType\":\"Integer\",\"allowedValues\":\"1-64\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_page_cleaners\",\"name\":\"innodb_page_cleaners\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"300\",\"description\":\"Number of UNDO log pages to purge in one batch from the history list.\",\"defaultValue\":\"300\",\"dataType\":\"Integer\",\"allowedValues\":\"1-5000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_purge_batch_size\",\"name\":\"innodb_purge_batch_size\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"128\",\"description\":\"Dictates rate at which UNDO records are purged. Value N means purge rollback segment(s) on every Nth iteration of purge invocation\",\"defaultValue\":\"128\",\"dataType\":\"Integer\",\"allowedValues\":\"1-128\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_purge_rseg_truncate_frequency\",\"name\":\"innodb_purge_rseg_truncate_frequency\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"Whether to use read ahead for random access within an extent.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_random_read_ahead\",\"name\":\"innodb_random_read_ahead\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"56\",\"description\":\"Controls the sensitivity of linear read-ahead that InnoDB uses to prefetch pages into the buffer pool.\",\"defaultValue\":\"56\",\"dataType\":\"Integer\",\"allowedValues\":\"0-64\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_read_ahead_threshold\",\"name\":\"innodb_read_ahead_threshold\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"4\",\"description\":\"The number of I/O threads for read operations in InnoDB.\",\"defaultValue\":\"4\",\"dataType\":\"Integer\",\"allowedValues\":\"1-64\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_read_io_threads\",\"name\":\"innodb_read_io_threads\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"ON\",\"description\":\"InnoDB automatic recalculation of persistent statistics enabled for all tables unless overridden at table level (automatic recalculation is only done when InnoDB decides that the table has changed too much and needs a new statistics)\",\"defaultValue\":\"ON\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_stats_auto_recalc\",\"name\":\"innodb_stats_auto_recalc\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"Include delete marked records when calculating persistent statistics\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_stats_include_delete_marked\",\"name\":\"innodb_stats_include_delete_marked\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"nulls_equal\",\"description\":\"Specifies how InnoDB index statistics collection code should treat NULLs. Possible values are NULLS_EQUAL (default), NULLS_UNEQUAL and NULLS_IGNORED\",\"defaultValue\":\"nulls_equal\",\"dataType\":\"Enumeration\",\"allowedValues\":\"nulls_equal,nulls_unequal,nulls_ignored\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_stats_method\",\"name\":\"innodb_stats_method\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"The number of rows modified before we calculate new statistics (default 0 = current limits)\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-18446744073709551615\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_stats_modified_counter\",\"name\":\"innodb_stats_modified_counter\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"Enable statistics gathering for metadata commands such as SHOW TABLE STATUS for tables that use transient statistics (off by default)\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_stats_on_metadata\",\"name\":\"innodb_stats_on_metadata\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"ON\",\"description\":\"InnoDB persistent statistics enabled for all tables unless overridden at table level\",\"defaultValue\":\"ON\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_stats_persistent\",\"name\":\"innodb_stats_persistent\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"20\",\"description\":\"The number of leaf index pages to sample when calculating persistent statistics (by ANALYZE, default 20)\",\"defaultValue\":\"20\",\"dataType\":\"Integer\",\"allowedValues\":\"1-18446744073709551615\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_stats_persistent_sample_pages\",\"name\":\"innodb_stats_persistent_sample_pages\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"ON\",\"description\":\"Enable traditional statistic calculation based on number of configured pages (default true)\",\"defaultValue\":\"ON\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_stats_traditional\",\"name\":\"innodb_stats_traditional\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"8\",\"description\":\"The number of leaf index pages to sample when calculating transient statistics (if persistent statistics are not used, default 8)\",\"defaultValue\":\"8\",\"dataType\":\"Integer\",\"allowedValues\":\"1-18446744073709551615\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_stats_transient_sample_pages\",\"name\":\"innodb_stats_transient_sample_pages\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"Enable InnoDB monitor output to the error log.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_status_output\",\"name\":\"innodb_status_output\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"Enable InnoDB lock monitor output to the error log. Requires innodb_status_output=ON.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_status_output_locks\",\"name\":\"innodb_status_output_locks\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"ON\",\"description\":\"Use strict mode when evaluating create options.\",\"defaultValue\":\"ON\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_strict_mode\",\"name\":\"innodb_strict_mode\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"1\",\"description\":\"Size of the mutex/lock wait array.\",\"defaultValue\":\"1\",\"dataType\":\"Integer\",\"allowedValues\":\"1-1024\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_sync_array_size\",\"name\":\"innodb_sync_array_size\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"ON\",\"description\":\"Enable InnoDB locking in LOCK TABLES\",\"defaultValue\":\"ON\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_table_locks\",\"name\":\"innodb_table_locks\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"InnoDB tries to keep the number of operating system threads concurrently inside InnoDB less than or equal to the limit given by this variable.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-1000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_thread_concurrency\",\"name\":\"innodb_thread_concurrency\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"10000\",\"description\":\"Defines how long InnoDB threads sleep before joining the InnoDB queue, in microseconds.\",\"defaultValue\":\"10000\",\"dataType\":\"Integer\",\"allowedValues\":\"0-1000000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_thread_sleep_delay\",\"name\":\"innodb_thread_sleep_delay\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"Enable or Disable Truncate of UNDO tablespace.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_undo_log_truncate\",\"name\":\"innodb_undo_log_truncate\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"4\",\"description\":\"The number of I/O threads for write operations in InnoDB.\",\"defaultValue\":\"4\",\"dataType\":\"Integer\",\"allowedValues\":\"1-64\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/innodb_write_io_threads\",\"name\":\"innodb_write_io_threads\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"1800\",\"description\":\"Number of seconds the server waits for activity on an interactive connection before closing it.\",\"defaultValue\":\"1800\",\"dataType\":\"Integer\",\"allowedValues\":\"1-31536000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/interactive_timeout\",\"name\":\"interactive_timeout\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"262144\",\"description\":\"The minimum size of the buffer that is used for plain index scans, range index scans, and joins that do not use indexes and thus perform full table scans.\",\"defaultValue\":\"262144\",\"dataType\":\"Integer\",\"allowedValues\":\"128-18446744073709547520\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/join_buffer_size\",\"name\":\"join_buffer_size\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"2\",\"description\":\"Controls what join operations can be executed with join buffers. Odd numbers are used for plain join buffers while even numbers are used for linked buffers\",\"defaultValue\":\"2\",\"dataType\":\"Integer\",\"allowedValues\":\"0-8\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/join_cache_level\",\"name\":\"join_cache_level\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"86400\",\"description\":\"This variable specifies the timeout in seconds for attempts to acquire metadata locks.\",\"defaultValue\":\"86400\",\"dataType\":\"Integer\",\"allowedValues\":\"1-31536000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/lock_wait_timeout\",\"name\":\"lock_wait_timeout\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"This variable applies when binary logging is enabled. It controls whether stored function creators can be trusted not to create stored functions that will cause unsafe events to be written to the binary log. It cannot be updated any more for a master/replica server to keep the replication consistency.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/log_bin_trust_function_creators\",\"name\":\"log_bin_trust_function_creators\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"FILE\",\"description\":\"The destination for general query log and slow query log output.\",\"defaultValue\":\"FILE\",\"dataType\":\"Set\",\"allowedValues\":\"FILE,NONE\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/log_output\",\"name\":\"log_output\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"Logs queries that are expected to retrieve all rows to slow query log.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/log_queries_not_using_indexes\",\"name\":\"log_queries_not_using_indexes\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"Include slow administrative statements in the statements written to the slow query log.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/log_slow_admin_statements\",\"name\":\"log_slow_admin_statements\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"admin,filesort,filesort_on_disk,full_join,full_scan,query_cache,query_cache_miss,tmp_table,tmp_table_on_disk\",\"description\":\"Log only certain types of queries\",\"defaultValue\":\"admin,filesort,filesort_on_disk,full_join,full_scan,query_cache,query_cache_miss,tmp_table,tmp_table_on_disk\",\"dataType\":\"Set\",\"allowedValues\":\",admin,filesort,filesort_on_disk,full_join,full_scan,query_cache,query_cache_miss,tmp_table,tmp_table_on_disk\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/log_slow_filter\",\"name\":\"log_slow_filter\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"1\",\"description\":\"Write to slow log every #th slow query. Set to 1 to log everything. Increase it to reduce the size of the slow or the performance impact of slow logging\",\"defaultValue\":\"1\",\"dataType\":\"Integer\",\"allowedValues\":\"1-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/log_slow_rate_limit\",\"name\":\"log_slow_rate_limit\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"\",\"description\":\"Verbosity level for the slow log\",\"defaultValue\":\"\",\"dataType\":\"Set\",\"allowedValues\":\",innodb,query_plan,explain\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/log_slow_verbosity\",\"name\":\"log_slow_verbosity\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"10\",\"description\":\"If a query takes longer than this many seconds, the server increments the Slow_queries status variable.\",\"defaultValue\":\"10\",\"dataType\":\"Numeric\",\"allowedValues\":\"0-31536000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/long_query_time\",\"name\":\"long_query_time\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"INSERT/DELETE/UPDATE has lower priority than selects\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/low_priority_updates\",\"name\":\"low_priority_updates\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"1\",\"description\":\"If set to 1, table names are stored in lowercase on disk and comparisons are not case sensitive. If set to 2, table names are stored as given but compared in lowercase.\",\"defaultValue\":\"1\",\"dataType\":\"Enumeration\",\"allowedValues\":\"1,2\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/lower_case_table_names\",\"name\":\"lower_case_table_names\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"536870912\",\"description\":\"The maximum size of one packet or any generated/intermediate string, or any parameter sent by the mysql_stmt_send_long_data() C API function.\",\"defaultValue\":\"536870912\",\"dataType\":\"Integer\",\"allowedValues\":\"1024-1073741824\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/max_allowed_packet\",\"name\":\"max_allowed_packet\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"100\",\"description\":\"If more than this many successive connection requests from a host are interrupted without a successful connection, the server blocks that host from further connections.\",\"defaultValue\":\"100\",\"dataType\":\"Integer\",\"allowedValues\":\"1-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/max_connect_errors\",\"name\":\"max_connect_errors\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"50\",\"description\":\"The maximum permitted number of simultaneous client connections.\",\"defaultValue\":\"50\",\"dataType\":\"Integer\",\"allowedValues\":\"10-50\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/max_connections\",\"name\":\"max_connections\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"20\",\"description\":\"Don\u0027t start more than this number of threads to handle INSERT DELAYED statements. If set to zero INSERT DELAYED will be not used\",\"defaultValue\":\"20\",\"dataType\":\"Integer\",\"allowedValues\":\"0-16384\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/max_delayed_threads\",\"name\":\"max_delayed_threads\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"1024\",\"description\":\"Maximum length considered for digest text.\",\"defaultValue\":\"1024\",\"dataType\":\"Integer\",\"allowedValues\":\"0-1048576\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/max_digest_length\",\"name\":\"max_digest_length\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"64\",\"description\":\"Max number of errors/warnings to store for a statement\",\"defaultValue\":\"64\",\"dataType\":\"Integer\",\"allowedValues\":\"0-65535\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/max_error_count\",\"name\":\"max_error_count\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"16777216\",\"description\":\"This variable sets the maximum size to which user-created MEMORY tables are permitted to grow.\",\"defaultValue\":\"16777216\",\"dataType\":\"Integer\",\"allowedValues\":\"1048576-18446744073709547520\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/max_heap_table_size\",\"name\":\"max_heap_table_size\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"18446744073709547520\",\"description\":\"Joins that are probably going to read more than max_join_size records return an error\",\"defaultValue\":\"18446744073709547520\",\"dataType\":\"Integer\",\"allowedValues\":\"1048576-18446744073709547520\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/max_join_size\",\"name\":\"max_join_size\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"1024\",\"description\":\"The cutoff on the size of index values that determines which filesort algorithm to use.\",\"defaultValue\":\"1024\",\"dataType\":\"Integer\",\"allowedValues\":\"4-8388608\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/max_length_for_sort_data\",\"name\":\"max_length_for_sort_data\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"16382\",\"description\":\"This variable limits the total number of prepared statements in the server.\",\"defaultValue\":\"16382\",\"dataType\":\"Integer\",\"allowedValues\":\"0-1048576\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/max_prepared_stmt_count\",\"name\":\"max_prepared_stmt_count\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"4294967295\",\"description\":\"Maximum number of iterations when executing recursive queries\",\"defaultValue\":\"4294967295\",\"dataType\":\"Integer\",\"allowedValues\":\"0-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/max_recursive_iterations\",\"name\":\"max_recursive_iterations\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"4294967295\",\"description\":\"Limit assumed max number of seeks when looking up rows based on a key\",\"defaultValue\":\"4294967295\",\"dataType\":\"Integer\",\"allowedValues\":\"1-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/max_seeks_for_key\",\"name\":\"max_seeks_for_key\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"9223372036854775807 \",\"description\":\"Amount of memory a single user session is allowed to allocate. This limits the value of the session variable MEM_USED\",\"defaultValue\":\"9223372036854775807 \",\"dataType\":\"Integer\",\"allowedValues\":\"1048576-9223372036854775807\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/max_session_mem_used\",\"name\":\"max_session_mem_used\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"1024\",\"description\":\"The number of bytes to use when sorting BLOB or TEXT values (only the first max_sort_length bytes of each value are used; the rest are ignored)\",\"defaultValue\":\"1024\",\"dataType\":\"Integer\",\"allowedValues\":\"4-8388608\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/max_sort_length\",\"name\":\"max_sort_length\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"Maximum stored procedure recursion depth\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-255\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/max_sp_recursion_depth\",\"name\":\"max_sp_recursion_depth\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"The maximum number of active connections for a single user (0 = no limit)\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-2147483647\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/max_user_connections\",\"name\":\"max_user_connections\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"4294967295\",\"description\":\"After this many write locks, allow some read locks to run in between\",\"defaultValue\":\"4294967295\",\"dataType\":\"Integer\",\"allowedValues\":\"1-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/max_write_lock_count\",\"name\":\"max_write_lock_count\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"Can be used to cause queries which examine fewer than the stated number of rows not to be logged.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/min_examined_row_limit\",\"name\":\"min_examined_row_limit\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"120\",\"description\":\"The number of seconds the server waits for network reading action, especially for LOAD DATA LOCAL FILE.\",\"defaultValue\":\"120\",\"dataType\":\"Integer\",\"allowedValues\":\"1-31536000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/net_read_timeout\",\"name\":\"net_read_timeout\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"10\",\"description\":\"If a read on a communication port is interrupted, retry this many times before giving up\",\"defaultValue\":\"10\",\"dataType\":\"Integer\",\"allowedValues\":\"1-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/net_retry_count\",\"name\":\"net_retry_count\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"240\",\"description\":\"The number of seconds the server waits for network writing action, especially for LOAD DATA LOCAL FILE.\",\"defaultValue\":\"240\",\"dataType\":\"Integer\",\"allowedValues\":\"1-31536000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/net_write_timeout\",\"name\":\"net_write_timeout\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"62\",\"description\":\"Maximum depth of search performed by the query optimizer. Values larger than the number of relations in a query result in better query plans, but take longer to compile a query. Values smaller than the number of tables in a relation result in faster optimization, but may produce very bad query plans. If set to 0, the system will automatically pick a reasonable value.\",\"defaultValue\":\"62\",\"dataType\":\"Integer\",\"allowedValues\":\"0-62\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/optimizer_search_depth\",\"name\":\"optimizer_search_depth\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"100\",\"description\":\"Controls number of record samples to check condition selectivity\",\"defaultValue\":\"100\",\"dataType\":\"Integer\",\"allowedValues\":\"10-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/optimizer_selectivity_sampling_limit\",\"name\":\"optimizer_selectivity_sampling_limit\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"1\",\"description\":\"Controls selectivity of which conditions the optimizer takes into account to calculate cardinality of a partial join when it searches for the best execution plan Meaning: 1 - use selectivity of index backed range conditions to calculate the cardinality of a partial join if the last joined table is accessed by full table scan or an index scan, 2 - use selectivity of index backed range conditions to calculate the cardinality of a partial join in any case, 3 - additionally always use selectivity of range conditions that are not backed by any index to calculate the cardinality of a partial join, 4 - use histograms to calculate selectivity of range conditions that are not backed by any index to calculate the cardinality of a partial join.5 - additionally use selectivity of certain non-range predicates calculated on record samples\",\"defaultValue\":\"1\",\"dataType\":\"Integer\",\"allowedValues\":\"1-5\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/optimizer_use_condition_selectivity\",\"name\":\"optimizer_use_condition_selectivity\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"32768\",\"description\":\"The size of the buffer that is allocated when preloading indexes\",\"defaultValue\":\"32768\",\"dataType\":\"Integer\",\"allowedValues\":\"1024-1073741824\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/preload_buffer_size\",\"name\":\"preload_buffer_size\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"15\",\"description\":\"The query store capture interval in minutes. Allows to specify the interval in which the query metrics are aggregated.\",\"defaultValue\":\"15\",\"dataType\":\"Integer\",\"allowedValues\":\"5-60\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/query_store_capture_interval\",\"name\":\"query_store_capture_interval\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"NONE\",\"description\":\"The query store capture mode, NONE means do not capture any statements. NOTE: If performance_schema is OFF, turning on query_store_capture_mode will turn on performance_schema and a subset of performance schema instruments required for this feature.\",\"defaultValue\":\"NONE\",\"dataType\":\"Enumeration\",\"allowedValues\":\"NONE,ALL\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/query_store_capture_mode\",\"name\":\"query_store_capture_mode\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"NO\",\"description\":\"Turning ON or OFF to capture all the utility queries that is executing in the system.\",\"defaultValue\":\"NO\",\"dataType\":\"Enumeration\",\"allowedValues\":\"YES,NO\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/query_store_capture_utility_queries\",\"name\":\"query_store_capture_utility_queries\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"7\",\"description\":\"The query store capture interval in minutes. Allows to specify the interval in which the query metrics are aggregated.\",\"defaultValue\":\"7\",\"dataType\":\"Integer\",\"allowedValues\":\"1-30\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/query_store_retention_period_in_days\",\"name\":\"query_store_retention_period_in_days\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"NONE\",\"description\":\"The query store wait event sampling capture mode, NONE means do not capture any wait events.\",\"defaultValue\":\"NONE\",\"dataType\":\"Enumeration\",\"allowedValues\":\"NONE,ALL\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/query_store_wait_sampling_capture_mode\",\"name\":\"query_store_wait_sampling_capture_mode\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"30\",\"description\":\"The query store wait event sampling frequency in seconds.\",\"defaultValue\":\"30\",\"dataType\":\"Integer\",\"allowedValues\":\"5-300\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/query_store_wait_sampling_frequency\",\"name\":\"query_store_wait_sampling_frequency\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"This parameter controls whetherthe server permits no client updates. When the server is read replica or server storage is full, this parameter will not take effect.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/read_only\",\"name\":\"read_only\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"371722008\",\"description\":\"The server ID, used in replication to give each master and slave a unique identity.\",\"defaultValue\":\"1000\",\"dataType\":\"Integer\",\"allowedValues\":\"1000-4294967295\",\"source\":\"user-override\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/server_id\",\"name\":\"server_id\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"ON\",\"description\":\"Track changes to the default schema.\",\"defaultValue\":\"ON\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/session_track_schema\",\"name\":\"session_track_schema\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"Track changes to the session state.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/session_track_state_change\",\"name\":\"session_track_state_change\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"Track changes to the transaction attributes. OFF to disable; STATE to track just transaction state (Is there an active transaction? Does it have any data? etc.); CHARACTERISTICS to track transaction state and report all statements needed to start a transaction withthe same characteristics (isolation level, read only/read write,snapshot - but not any work done / data modified within the transaction).\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"OFF,STATE,CHARACTERISTICS\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/session_track_transaction_info\",\"name\":\"session_track_transaction_info\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"Don\u0027t allow \u0027SHOW DATABASE\u0027 commands\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/skip_show_database\",\"name\":\"skip_show_database\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"If non-zero, number of threads to spawn to apply in parallel events on the slave that were group-committed on the master or were logged with GTID in different replication domains. Note that these threads are in addition to the IO and SQL threads, which are always created by a replication slave\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-16383\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/slave_parallel_threads\",\"name\":\"slave_parallel_threads\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"Enable or disable the slow query log\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/slow_query_log\",\"name\":\"slow_query_log\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"524288\",\"description\":\"Each thread that needs to do a sort allocates a buffer of this size\",\"defaultValue\":\"524288\",\"dataType\":\"Integer\",\"allowedValues\":\"1024-18446744073709551615\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/sort_buffer_size\",\"name\":\"sort_buffer_size\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"STRICT_TRANS_TABLES,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION\",\"description\":\"The current server SQL mode.\",\"defaultValue\":\"STRICT_TRANS_TABLES,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION\",\"dataType\":\"Set\",\"allowedValues\":\",ALLOW_INVALID_DATES,ANSI,ANSI_QUOTES,DB2,ERROR_FOR_DIVISION_BY_ZERO,HIGH_NOT_PRECEDENCE,IGNORE_BAD_TABLE_OPTIONS,IGNORE_SPACE,MAXDB,MSSQL,MYSQL323,MYSQL40,NO_AUTO_CREATE_USER,NO_AUTO_VALUE_ON_ZERO,NO_BACKSLASH_ESCAPES,NO_DIR_IN_CREATE,NO_ENGINE_SUBSTITUTION,NO_FIELD_OPTIONS,NO_KEY_OPTIONS,NO_TABLE_OPTIONS,NO_UNSIGNED_SUBTRACTION,NO_ZERO_DATE,NO_ZERO_IN_DATE,ONLY_FULL_GROUP_BY,ORACLE,PAD_CHAR_TO_FULL_LENGTH,PIPES_AS_CONCAT,POSTGRESQL,REAL_AS_FLOAT,STRICT_ALL_TABLES,STRICT_TRANS_TABLES,TRADITIONAL\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/sql_mode\",\"name\":\"sql_mode\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"ON\",\"description\":\"Allow only CTEs compliant to SQL standard\",\"defaultValue\":\"ON\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/standard_compliant_cte\",\"name\":\"standard_compliant_cte\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"256\",\"description\":\"The soft upper limit for number of cached stored routines for one connection.\",\"defaultValue\":\"256\",\"dataType\":\"Integer\",\"allowedValues\":\"0-524288\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/stored_program_cache\",\"name\":\"stored_program_cache\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"10000\",\"description\":\"A replication slave will synchronize its master.info file to disk after this many events.\",\"defaultValue\":\"10000\",\"dataType\":\"Integer\",\"allowedValues\":\"1-100000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/sync_master_info\",\"name\":\"sync_master_info\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"10000\",\"description\":\"A replication slave will synchronize its relay-log.info file to disk after this many transactions.\",\"defaultValue\":\"10000\",\"dataType\":\"Integer\",\"allowedValues\":\"1-100000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/sync_relay_log_info\",\"name\":\"sync_relay_log_info\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"400\",\"description\":\"The number of cached table definitions\",\"defaultValue\":\"400\",\"dataType\":\"Integer\",\"allowedValues\":\"400-524288\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/table_definition_cache\",\"name\":\"table_definition_cache\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"2000\",\"description\":\"The number of open tables for all threads.\",\"defaultValue\":\"2000\",\"dataType\":\"Integer\",\"allowedValues\":\"10-10000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/table_open_cache\",\"name\":\"table_open_cache\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"65536\",\"description\":\"Maximum allowed number of worker threads in the thread pool\",\"defaultValue\":\"65536\",\"dataType\":\"Integer\",\"allowedValues\":\"1-65536\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/thread_pool_max_threads\",\"name\":\"thread_pool_max_threads\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"1\",\"description\":\"Minimum number of threads in the thread pool.\",\"defaultValue\":\"1\",\"dataType\":\"Integer\",\"allowedValues\":\"1-256\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/thread_pool_min_threads\",\"name\":\"thread_pool_min_threads\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"1000\",\"description\":\"The number of milliseconds before a dequeued low-priority statement is moved to the high-priority queue\",\"defaultValue\":\"1000\",\"dataType\":\"Integer\",\"allowedValues\":\"0-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/thread_pool_prio_kickup_timer\",\"name\":\"thread_pool_prio_kickup_timer\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"auto\",\"description\":\"Threadpool priority. High priority connections usually start executing earlier than low priority.If priority set to \u0027auto\u0027, the the actual priority(low or high) is determined based on whether or not connection is inside transaction.\",\"defaultValue\":\"auto\",\"dataType\":\"Enumeration\",\"allowedValues\":\"high,low,auto\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/thread_pool_priority\",\"name\":\"thread_pool_priority\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"500\",\"description\":\"Maximum query execution time in milliseconds,before an executing non-yielding thread is considered stalled.If a worker thread is stalled, additional worker thread may be created to handle remaining clients.\",\"defaultValue\":\"500\",\"dataType\":\"Integer\",\"allowedValues\":\"10-600\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/thread_pool_stall_limit\",\"name\":\"thread_pool_stall_limit\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"SYSTEM\",\"description\":\"The server time zone\",\"defaultValue\":\"SYSTEM\",\"dataType\":\"String\",\"allowedValues\":\"\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/time_zone\",\"name\":\"time_zone\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"REPEATABLE-READ\",\"description\":\"The default transaction isolation level.\",\"defaultValue\":\"REPEATABLE-READ\",\"dataType\":\"Enumeration\",\"allowedValues\":\"READ-UNCOMMITTED,READ-COMMITTED,REPEATABLE-READ,SERIALIZABLE\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/tx_isolation\",\"name\":\"tx_isolation\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"YES\",\"description\":\"YES = Don\u0027t issue an error message (warning only) if a VIEW without presence of a key of the underlying table is used in queries with a LIMIT clause for updating. NO = Prohibit update of a VIEW, which does not contain a key of the underlying table and the query uses a LIMIT clause (usually get from GUI tools)\",\"defaultValue\":\"YES\",\"dataType\":\"Enumeration\",\"allowedValues\":\"NO,YES\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/updatable_views_with_limit\",\"name\":\"updatable_views_with_limit\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"NEVER\",\"description\":\"Specifies how to use system statistics tables\",\"defaultValue\":\"NEVER\",\"dataType\":\"Enumeration\",\"allowedValues\":\"NEVER,COMPLEMENTARY,PREFERABLY\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/use_stat_tables\",\"name\":\"use_stat_tables\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"Enables statistics gathering for USER_STATISTICS, CLIENT_STATISTICS, INDEX_STATISTICS and TABLE_STATISTICS tables in the INFORMATION_SCHEMA\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/userstat\",\"name\":\"userstat\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"120\",\"description\":\"The number of seconds the server waits for activity on a noninteractive connection before closing it.\",\"defaultValue\":\"120\",\"dataType\":\"Integer\",\"allowedValues\":\"60-86400\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/wait_timeout\",\"name\":\"wait_timeout\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"}]}" + "Content": "{\"value\":[{\"properties\":{\"value\":\"OFF\",\"description\":\"Allow to audit the log.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/audit_log_enabled\",\"name\":\"audit_log_enabled\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"CONNECTION\",\"description\":\"Select the events to audit logs.\",\"defaultValue\":\"CONNECTION\",\"dataType\":\"Set\",\"allowedValues\":\"DDL,DML_SELECT,DML_NONSELECT,DCL,ADMIN,DML,GENERAL,CONNECTION\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/audit_log_events\",\"name\":\"audit_log_events\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"azure_superuser\",\"description\":\"The comma-separated user list whose commands will not be in the audit logs.\",\"defaultValue\":\"azure_superuser\",\"dataType\":\"String\",\"allowedValues\":\"\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/audit_log_exclude_users\",\"name\":\"audit_log_exclude_users\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"\",\"description\":\"The comma-separated user list whose commands will be in the audit logs. It takes higher priority if the same user name is found in audit_log_exclude_users.\",\"defaultValue\":\"\",\"dataType\":\"String\",\"allowedValues\":\"\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/audit_log_include_users\",\"name\":\"audit_log_include_users\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"MINIMAL\",\"description\":\"Controls whether rows should be logged in \u0027FULL\u0027, \u0027NOBLOB\u0027 or \u0027MINIMAL\u0027 formats. \u0027FULL\u0027, means that all columns in the before and after image are logged. \u0027NOBLOB\u0027, means that mysqld avoids logging blob columns whenever possible (eg, blob column was not changed or is not part of primary key). \u0027MINIMAL\u0027, means that a PK equivalent (PK columns or full row if there is no PK in the table) is logged in the before image, and only changed columns are logged in the after image. (Default: FULL).\",\"defaultValue\":\"MINIMAL\",\"dataType\":\"Enumeration\",\"allowedValues\":\"MINIMAL,NOBLOB,FULL\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/binlog_row_image\",\"name\":\"binlog_row_image\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"30\",\"description\":\"The binlog max capacity for stop.\",\"defaultValue\":\"30\",\"dataType\":\"Integer\",\"allowedValues\":\"0-100\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/binlog_sum_size_for_stop_pct_max\",\"name\":\"binlog_sum_size_for_stop_pct_max\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"LATIN1\",\"description\":\"Use charset_name as the default server character set.\",\"defaultValue\":\"LATIN1\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ARMSCII8,ASCII,BIG5,BINARY,CP1250,CP1251,CP1256,CP1257,CP850,CP852,CP866,CP932,DEC8,EUCJPMS,EUCKR,GB2312,GBK,GEOSTD8,GREEK,HEBREW,HP8,KEYBCS2,KOI8R,KOI8U,LATIN1,LATIN2,LATIN5,LATIN7,MACCE,MACROMAN,SJIS,SWE7,TIS620,UCS2,UJIS,UTF16,UTF16LE,UTF32,UTF8,UTF8MB4\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/character_set_server\",\"name\":\"character_set_server\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"latin1_swedish_ci\",\"description\":\"The server\u0027s default collation.\",\"defaultValue\":\"latin1_swedish_ci\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ARMSCII8_BIN,ARMSCII8_GENERAL_CI,ARMSCII8_GENERAL_NOPAD_CI,ARMSCII8_NOPAD_BIN,ASCII_BIN,ASCII_GENERAL_CI,ASCII_GENERAL_NOPAD_CI,ASCII_NOPAD_BIN,BIG5_BIN,BIG5_CHINESE_CI,BIG5_CHINESE_NOPAD_CI,BIG5_NOPAD_BIN,BINARY,CP1250_BIN,CP1250_CROATIAN_CI,CP1250_CZECH_CS,CP1250_GENERAL_CI,CP1250_GENERAL_NOPAD_CI,CP1250_NOPAD_BIN,CP1250_POLISH_CI,CP1251_BIN,CP1251_BULGARIAN_CI,CP1251_GENERAL_CI,CP1251_GENERAL_CS,CP1251_GENERAL_NOPAD_CI,CP1251_NOPAD_BIN,CP1251_UKRAINIAN_CI,CP1256_BIN,CP1256_GENERAL_CI,CP1256_GENERAL_NOPAD_CI,CP1256_NOPAD_BIN,CP1257_BIN,CP1257_GENERAL_CI,CP1257_GENERAL_NOPAD_CI,CP1257_LITHUANIAN_CI,CP1257_NOPAD_BIN,CP850_BIN,CP850_GENERAL_CI,CP850_GENERAL_NOPAD_CI,CP850_NOPAD_BIN,CP852_BIN,CP852_GENERAL_CI,CP852_GENERAL_NOPAD_CI,CP852_NOPAD_BIN,CP866_BIN,CP866_GENERAL_CI,CP866_GENERAL_NOPAD_CI,CP866_NOPAD_BIN,CP932_BIN,CP932_JAPANESE_CI,CP932_JAPANESE_NOPAD_CI,CP932_NOPAD_BIN,DEC8_BIN,DEC8_NOPAD_BIN,DEC8_SWEDISH_CI,DEC8_SWEDISH_NOPAD_CI,EUCJPMS_BIN,EUCJPMS_JAPANESE_CI,EUCJPMS_JAPANESE_NOPAD_CI,EUCJPMS_NOPAD_BIN,EUCKR_BIN,EUCKR_KOREAN_CI,EUCKR_KOREAN_NOPAD_CI,EUCKR_NOPAD_BIN,GB2312_BIN,GB2312_CHINESE_CI,GB2312_CHINESE_NOPAD_CI,GB2312_NOPAD_BIN,GBK_BIN,GBK_CHINESE_CI,GBK_CHINESE_NOPAD_CI,GBK_NOPAD_BIN,GEOSTD8_BIN,GEOSTD8_GENERAL_CI,GEOSTD8_GENERAL_NOPAD_CI,GEOSTD8_NOPAD_BIN,GREEK_BIN,GREEK_GENERAL_CI,GREEK_GENERAL_NOPAD_CI,GREEK_NOPAD_BIN,HEBREW_BIN,HEBREW_GENERAL_CI,HEBREW_GENERAL_NOPAD_CI,HEBREW_NOPAD_BIN,HP8_BIN,HP8_ENGLISH_CI,HP8_ENGLISH_NOPAD_CI,HP8_NOPAD_BIN,KEYBCS2_BIN,KEYBCS2_GENERAL_CI,KEYBCS2_GENERAL_NOPAD_CI,KEYBCS2_NOPAD_BIN,KOI8R_BIN,KOI8R_GENERAL_CI,KOI8R_GENERAL_NOPAD_CI,KOI8R_NOPAD_BIN,KOI8U_BIN,KOI8U_GENERAL_CI,KOI8U_GENERAL_NOPAD_CI,KOI8U_NOPAD_BIN,LATIN1_BIN,LATIN1_DANISH_CI,LATIN1_GENERAL_CI,LATIN1_GENERAL_CS,LATIN1_GERMAN1_CI,LATIN1_GERMAN2_CI,LATIN1_NOPAD_BIN,LATIN1_SPANISH_CI,LATIN1_SWEDISH_CI,LATIN1_SWEDISH_NOPAD_CI,LATIN2_BIN,LATIN2_CROATIAN_CI,LATIN2_CZECH_CS,LATIN2_GENERAL_CI,LATIN2_GENERAL_NOPAD_CI,LATIN2_HUNGARIAN_CI,LATIN2_NOPAD_BIN,LATIN5_BIN,LATIN5_NOPAD_BIN,LATIN5_TURKISH_CI,LATIN5_TURKISH_NOPAD_CI,LATIN7_BIN,LATIN7_ESTONIAN_CS,LATIN7_GENERAL_CI,LATIN7_GENERAL_CS,LATIN7_GENERAL_NOPAD_CI,LATIN7_NOPAD_BIN,MACCE_BIN,MACCE_GENERAL_CI,MACCE_GENERAL_NOPAD_CI,MACCE_NOPAD_BIN,MACROMAN_BIN,MACROMAN_GENERAL_CI,MACROMAN_GENERAL_NOPAD_CI,MACROMAN_NOPAD_BIN,SJIS_BIN,SJIS_JAPANESE_CI,SJIS_JAPANESE_NOPAD_CI,SJIS_NOPAD_BIN,SWE7_BIN,SWE7_NOPAD_BIN,SWE7_SWEDISH_CI,SWE7_SWEDISH_NOPAD_CI,TIS620_BIN,TIS620_NOPAD_BIN,TIS620_THAI_CI,TIS620_THAI_NOPAD_CI,UCS2_BIN,UCS2_CROATIAN_CI,UCS2_CROATIAN_MYSQL561_CI,UCS2_CZECH_CI,UCS2_DANISH_CI,UCS2_ESPERANTO_CI,UCS2_ESTONIAN_CI,UCS2_GENERAL_CI,UCS2_GENERAL_MYSQL500_CI,UCS2_GENERAL_NOPAD_CI,UCS2_GERMAN2_CI,UCS2_HUNGARIAN_CI,UCS2_ICELANDIC_CI,UCS2_LATVIAN_CI,UCS2_LITHUANIAN_CI,UCS2_MYANMAR_CI,UCS2_NOPAD_BIN,UCS2_PERSIAN_CI,UCS2_POLISH_CI,UCS2_ROMAN_CI,UCS2_ROMANIAN_CI,UCS2_SINHALA_CI,UCS2_SLOVAK_CI,UCS2_SLOVENIAN_CI,UCS2_SPANISH_CI,UCS2_SPANISH2_CI,UCS2_SWEDISH_CI,UCS2_THAI_520_W2,UCS2_TURKISH_CI,UCS2_UNICODE_520_CI,UCS2_UNICODE_520_NOPAD_CI,UCS2_UNICODE_CI,UCS2_UNICODE_NOPAD_CI,UCS2_VIETNAMESE_CI,UJIS_BIN,UJIS_JAPANESE_CI,UJIS_JAPANESE_NOPAD_CI,UJIS_NOPAD_BIN,UTF16_BIN,UTF16_CROATIAN_CI,UTF16_CROATIAN_MYSQL561_CI,UTF16_CZECH_CI,UTF16_DANISH_CI,UTF16_ESPERANTO_CI,UTF16_ESTONIAN_CI,UTF16_GENERAL_CI,UTF16_GENERAL_NOPAD_CI,UTF16_GERMAN2_CI,UTF16_HUNGARIAN_CI,UTF16_ICELANDIC_CI,UTF16_LATVIAN_CI,UTF16_LITHUANIAN_CI,UTF16_MYANMAR_CI,UTF16_NOPAD_BIN,UTF16_PERSIAN_CI,UTF16_POLISH_CI,UTF16_ROMAN_CI,UTF16_ROMANIAN_CI,UTF16_SINHALA_CI,UTF16_SLOVAK_CI,UTF16_SLOVENIAN_CI,UTF16_SPANISH_CI,UTF16_SPANISH2_CI,UTF16_SWEDISH_CI,UTF16_THAI_520_W2,UTF16_TURKISH_CI,UTF16_UNICODE_520_CI,UTF16_UNICODE_520_NOPAD_CI,UTF16_UNICODE_CI,UTF16_UNICODE_NOPAD_CI,UTF16_VIETNAMESE_CI,UTF16LE_BIN,UTF16LE_GENERAL_CI,UTF16LE_GENERAL_NOPAD_CI,UTF16LE_NOPAD_BIN,UTF32_BIN,UTF32_CROATIAN_CI,UTF32_CROATIAN_MYSQL561_CI,UTF32_CZECH_CI,UTF32_DANISH_CI,UTF32_ESPERANTO_CI,UTF32_ESTONIAN_CI,UTF32_GENERAL_CI,UTF32_GENERAL_NOPAD_CI,UTF32_GERMAN2_CI,UTF32_HUNGARIAN_CI,UTF32_ICELANDIC_CI,UTF32_LATVIAN_CI,UTF32_LITHUANIAN_CI,UTF32_MYANMAR_CI,UTF32_NOPAD_BIN,UTF32_PERSIAN_CI,UTF32_POLISH_CI,UTF32_ROMAN_CI,UTF32_ROMANIAN_CI,UTF32_SINHALA_CI,UTF32_SLOVAK_CI,UTF32_SLOVENIAN_CI,UTF32_SPANISH_CI,UTF32_SPANISH2_CI,UTF32_SWEDISH_CI,UTF32_THAI_520_W2,UTF32_TURKISH_CI,UTF32_UNICODE_520_CI,UTF32_UNICODE_520_NOPAD_CI,UTF32_UNICODE_CI,UTF32_UNICODE_NOPAD_CI,UTF32_VIETNAMESE_CI,UTF8_BIN,UTF8_CROATIAN_CI,UTF8_CROATIAN_MYSQL561_CI,UTF8_CZECH_CI,UTF8_DANISH_CI,UTF8_ESPERANTO_CI,UTF8_ESTONIAN_CI,UTF8_GENERAL_CI,UTF8_GENERAL_MYSQL500_CI,UTF8_GENERAL_NOPAD_CI,UTF8_GERMAN2_CI,UTF8_HUNGARIAN_CI,UTF8_ICELANDIC_CI,UTF8_LATVIAN_CI,UTF8_LITHUANIAN_CI,UTF8_MYANMAR_CI,UTF8_NOPAD_BIN,UTF8_PERSIAN_CI,UTF8_POLISH_CI,UTF8_ROMAN_CI,UTF8_ROMANIAN_CI,UTF8_SINHALA_CI,UTF8_SLOVAK_CI,UTF8_SLOVENIAN_CI,UTF8_SPANISH_CI,UTF8_SPANISH2_CI,UTF8_SWEDISH_CI,UTF8_THAI_520_W2,UTF8_TURKISH_CI,UTF8_UNICODE_520_CI,UTF8_UNICODE_520_NOPAD_CI,UTF8_UNICODE_CI,UTF8_UNICODE_NOPAD_CI,UTF8_VIETNAMESE_CI,UTF8MB4_BIN,UTF8MB4_CROATIAN_CI,UTF8MB4_CROATIAN_MYSQL561_CI,UTF8MB4_CZECH_CI,UTF8MB4_DANISH_CI,UTF8MB4_ESPERANTO_CI,UTF8MB4_ESTONIAN_CI,UTF8MB4_GENERAL_CI,UTF8MB4_GENERAL_NOPAD_CI,UTF8MB4_GERMAN2_CI,UTF8MB4_HUNGARIAN_CI,UTF8MB4_ICELANDIC_CI,UTF8MB4_LATVIAN_CI,UTF8MB4_LITHUANIAN_CI,UTF8MB4_MYANMAR_CI,UTF8MB4_NOPAD_BIN,UTF8MB4_PERSIAN_CI,UTF8MB4_POLISH_CI,UTF8MB4_ROMAN_CI,UTF8MB4_ROMANIAN_CI,UTF8MB4_SINHALA_CI,UTF8MB4_SLOVAK_CI,UTF8MB4_SLOVENIAN_CI,UTF8MB4_SPANISH_CI,UTF8MB4_SPANISH2_CI,UTF8MB4_SWEDISH_CI,UTF8MB4_THAI_520_W2,UTF8MB4_TURKISH_CI,UTF8MB4_UNICODE_520_CI,UTF8MB4_UNICODE_520_NOPAD_CI,UTF8MB4_UNICODE_CI,UTF8MB4_UNICODE_NOPAD_CI,UTF8MB4_VIETNAMESE_CI\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/collation_server\",\"name\":\"collation_server\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"\",\"description\":\"Default flags for the regex library\",\"defaultValue\":\"\",\"dataType\":\"Set\",\"allowedValues\":\",DOTALL,DUPNAMES,EXTENDED,EXTRA,MULTILINE,UNGREEDY\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/default_regex_flags\",\"name\":\"default_regex_flags\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"The default week format used by WEEK() functions\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-7\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/default_week_format\",\"name\":\"default_week_format\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"100\",\"description\":\"After inserting delayed_insert_limit rows, the INSERT DELAYED handler will check if there are any SELECT statements pending. If so, it allows these to execute before continuing.\",\"defaultValue\":\"100\",\"dataType\":\"Integer\",\"allowedValues\":\"1-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/delayed_insert_limit\",\"name\":\"delayed_insert_limit\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"300\",\"description\":\"How long a INSERT DELAYED thread should wait for INSERT statements before terminating\",\"defaultValue\":\"300\",\"dataType\":\"Integer\",\"allowedValues\":\"1-31536000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/delayed_insert_timeout\",\"name\":\"delayed_insert_timeout\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"1000\",\"description\":\"What size queue (in rows) should be allocated for handling INSERT DELAYED. If the queue becomes full, any client that does INSERT DELAYED will wait until there is room in the queue again\",\"defaultValue\":\"1000\",\"dataType\":\"Integer\",\"allowedValues\":\"1-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/delayed_queue_size\",\"name\":\"delayed_queue_size\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"If this variable is enabled, MySQL will cache the name of files in the directories, to save time for SHOW TABLE / DATABASES like statements.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/dir_cache_enabled\",\"name\":\"dir_cache_enabled\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"4\",\"description\":\"Number of digits by which to increase the scale of the result of division operations.\",\"defaultValue\":\"4\",\"dataType\":\"Integer\",\"allowedValues\":\"0-30\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/div_precision_increment\",\"name\":\"div_precision_increment\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"Indicates the status of the Event Scheduler. It is always OFF for a replica server to keep the replication consistency.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/event_scheduler\",\"name\":\"event_scheduler\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"100\",\"description\":\"The maximum number of rows a subquery may examine in order to be executed during optimization and used for constant optimization\",\"defaultValue\":\"100\",\"dataType\":\"Integer\",\"allowedValues\":\"0-18446744073709547520\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/expensive_subquery_limit\",\"name\":\"expensive_subquery_limit\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"ON\",\"description\":\"This option causes CREATE TABLE to create all TIMESTAMP columns as NULL with DEFAULT NULL attribute, Without this option, TIMESTAMP columns are NOT NULL and have implicit DEFAULT clauses. The old behavior is deprecated.\",\"defaultValue\":\"ON\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/explicit_defaults_for_timestamp\",\"name\":\"explicit_defaults_for_timestamp\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"1048576\",\"description\":\"Maximum allowed result length in bytes for the GROUP_CONCAT().\",\"defaultValue\":\"1048576\",\"dataType\":\"Integer\",\"allowedValues\":\"4-18446744073709547520\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/group_concat_max_len\",\"name\":\"group_concat_max_len\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"Number of bytes used for a histogram. If set to 0, no histograms are created by ANALYZE.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-255\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/histogram_size\",\"name\":\"histogram_size\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"SINGLE_PREC_HB\",\"description\":\"Specifies type of the histograms created by ANALYZE. Possible values are: SINGLE_PREC_HB - single precision height-balanced, DOUBLE_PREC_HB - double precision height-balanced.\",\"defaultValue\":\"SINGLE_PREC_HB\",\"dataType\":\"Enumeration\",\"allowedValues\":\"SINGLE_PREC_HB,DOUBLE_PREC_HB\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/histogram_type\",\"name\":\"histogram_type\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"128\",\"description\":\"How many host names should be cached to avoid resolving.\",\"defaultValue\":\"128\",\"dataType\":\"Integer\",\"allowedValues\":\"0-65536\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/host_cache_size\",\"name\":\"host_cache_size\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"\",\"description\":\"A string to be executed by the server for each client that connects.\",\"defaultValue\":\"\",\"dataType\":\"String\",\"allowedValues\":\"\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/init_connect\",\"name\":\"init_connect\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"ON\",\"description\":\"Attempt flushing dirty pages to avoid IO bursts at checkpoints.\",\"defaultValue\":\"ON\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_adaptive_flushing\",\"name\":\"innodb_adaptive_flushing\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"10\",\"description\":\"Percentage of log capacity below which no adaptive flushing happens.\",\"defaultValue\":\"10\",\"dataType\":\"Numeric\",\"allowedValues\":\"0-70\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_adaptive_flushing_lwm\",\"name\":\"innodb_adaptive_flushing_lwm\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"ON\",\"description\":\"Whether innodb adaptive hash indexes are enabled or disabled.\",\"defaultValue\":\"ON\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_adaptive_hash_index\",\"name\":\"innodb_adaptive_hash_index\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"8\",\"description\":\"It is an alias for innodb_adaptive_hash_index_parts; only exists to allow easier upgrade from earlier XtraDB versions.\",\"defaultValue\":\"8\",\"dataType\":\"Integer\",\"allowedValues\":\"1-64\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_adaptive_hash_index_partitions\",\"name\":\"innodb_adaptive_hash_index_partitions\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"8\",\"description\":\"Number of InnoDB Adaptive Hash Index Partitions (default 8)\",\"defaultValue\":\"8\",\"dataType\":\"Integer\",\"allowedValues\":\"1-512\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_adaptive_hash_index_parts\",\"name\":\"innodb_adaptive_hash_index_parts\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"150000\",\"description\":\"The upper limit of the sleep delay in usec. Value of 0 disables it.\",\"defaultValue\":\"150000\",\"dataType\":\"Integer\",\"allowedValues\":\"0-1000000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_adaptive_max_sleep_delay\",\"name\":\"innodb_adaptive_max_sleep_delay\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"64\",\"description\":\"Data file autoextend increment in megabytes\",\"defaultValue\":\"64\",\"dataType\":\"Integer\",\"allowedValues\":\"1-1000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_autoextend_increment\",\"name\":\"innodb_autoextend_increment\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"1\",\"description\":\"The lock mode to use for generating auto-increment values.\",\"defaultValue\":\"1\",\"dataType\":\"Integer\",\"allowedValues\":\"0-2\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_autoinc_lock_mode\",\"name\":\"innodb_autoinc_lock_mode\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"25\",\"description\":\"Dump only the hottest N% of each buffer pool, defaults to 25\",\"defaultValue\":\"25\",\"dataType\":\"Integer\",\"allowedValues\":\"1-100\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_buffer_pool_dump_pct\",\"name\":\"innodb_buffer_pool_dump_pct\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"872415232\",\"description\":\"The size in bytes of the buffer pool, the memory area where InnoDB caches table and index data.\",\"defaultValue\":\"872415232\",\"dataType\":\"Integer\",\"allowedValues\":\"134217728-872415232\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_buffer_pool_size\",\"name\":\"innodb_buffer_pool_size\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"25\",\"description\":\"Maximum on-disk size of change buffer in terms of percentage of the buffer pool.\",\"defaultValue\":\"25\",\"dataType\":\"Integer\",\"allowedValues\":\"0-50\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_change_buffer_max_size\",\"name\":\"innodb_change_buffer_max_size\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"all\",\"description\":\"Buffer changes to reduce random access: OFF, ON, inserting, deleting, changing, or purging.\",\"defaultValue\":\"all\",\"dataType\":\"Enumeration\",\"allowedValues\":\"inserts,deletes,purges,changes,all,none\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_change_buffering\",\"name\":\"innodb_change_buffering\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"Enable INFORMATION_SCHEMA.innodb_cmp_per_index, may have negative impact on performance (off by default)\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_cmp_per_index_enabled\",\"name\":\"innodb_cmp_per_index_enabled\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"5\",\"description\":\"If the compression failure rate of a table is greater than this number more padding is added to the pages to reduce the failures. A value of zero implies no padding\",\"defaultValue\":\"5\",\"dataType\":\"Integer\",\"allowedValues\":\"0-100\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_compression_failure_threshold_pct\",\"name\":\"innodb_compression_failure_threshold_pct\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"6\",\"description\":\"Compression level used for zlib compression. 0 is no compression, 1 is fastest, 9 is best compression and default is 6.\",\"defaultValue\":\"6\",\"dataType\":\"Integer\",\"allowedValues\":\"0-9\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_compression_level\",\"name\":\"innodb_compression_level\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"50\",\"description\":\"Percentage of empty space on a data page that can be reserved to make the page compressible.\",\"defaultValue\":\"50\",\"dataType\":\"Integer\",\"allowedValues\":\"0-75\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_compression_pad_pct_max\",\"name\":\"innodb_compression_pad_pct_max\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"5000\",\"description\":\"Determines the number of threads that can enter InnoDB concurrently.\",\"defaultValue\":\"5000\",\"dataType\":\"Integer\",\"allowedValues\":\"1-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_concurrency_tickets\",\"name\":\"innodb_concurrency_tickets\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"ON\",\"description\":\"Enable/disable InnoDB deadlock detector (default ON). if set to OFF, deadlock detection is skipped, and we rely on innodb_lock_wait_timeout in case of deadlock.\",\"defaultValue\":\"ON\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_deadlock_detect\",\"name\":\"innodb_deadlock_detect\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"dynamic\",\"description\":\"The default ROW FORMAT for all innodb tables created without explicit ROW_FORMAT. Possible values are REDUNDANT, COMPACT, and DYNAMIC. The ROW_FORMAT value COMPRESSED is not allowed\",\"defaultValue\":\"dynamic\",\"dataType\":\"Enumeration\",\"allowedValues\":\"redundant,compact,dynamic\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_default_row_format\",\"name\":\"innodb_default_row_format\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"100\",\"description\":\"Percentage of B-tree page filled during bulk insert\",\"defaultValue\":\"100\",\"dataType\":\"Integer\",\"allowedValues\":\"10-100\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_fill_factor\",\"name\":\"innodb_fill_factor\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"1\",\"description\":\"Write and flush logs every (n) second.\",\"defaultValue\":\"1\",\"dataType\":\"Integer\",\"allowedValues\":\"0-2700\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_flush_log_at_timeout\",\"name\":\"innodb_flush_log_at_timeout\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"ON\",\"description\":\"Create FTS index with stopword.\",\"defaultValue\":\"ON\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_ft_enable_stopword\",\"name\":\"innodb_ft_enable_stopword\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"2000\",\"description\":\"InnoDB Fulltext search number of words to optimize for each optimize table call \",\"defaultValue\":\"2000\",\"dataType\":\"Integer\",\"allowedValues\":\"1000-10000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_ft_num_word_optimize\",\"name\":\"innodb_ft_num_word_optimize\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"2000000000\",\"description\":\"InnoDB Fulltext search query result cache limit in bytes\",\"defaultValue\":\"2000000000\",\"dataType\":\"Integer\",\"allowedValues\":\"1000000-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_ft_result_cache_limit\",\"name\":\"innodb_ft_result_cache_limit\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"200\",\"description\":\"Sets an upper limit on I/O activity performed by InnoDB background tasks, such as flushing pages from the buffer pool and merging data from the change buffer.\",\"defaultValue\":\"200\",\"dataType\":\"Integer\",\"allowedValues\":\"100-1500\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_io_capacity\",\"name\":\"innodb_io_capacity\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"50\",\"description\":\"The length of time in seconds an InnoDB transaction waits for a row lock before giving up.\",\"defaultValue\":\"50\",\"dataType\":\"Integer\",\"allowedValues\":\"1-1073741824\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_lock_wait_timeout\",\"name\":\"innodb_lock_wait_timeout\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"ON\",\"description\":\"Enables/disables the logging of entire compressed page images. InnoDB logs the compressed pages to prevent corruption if the zlib compression algorithm changes. When turned OFF, InnoDB will assume that the zlib compression algorithm doesn\u0027t change.\",\"defaultValue\":\"ON\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_log_compressed_pages\",\"name\":\"innodb_log_compressed_pages\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"1024\",\"description\":\"How deep to scan LRU to keep it clean\",\"defaultValue\":\"1024\",\"dataType\":\"Integer\",\"allowedValues\":\"100-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_lru_scan_depth\",\"name\":\"innodb_lru_scan_depth\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"75\",\"description\":\"Percentage of dirty pages allowed in bufferpool.\",\"defaultValue\":\"75\",\"dataType\":\"Numeric\",\"allowedValues\":\"0-99\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_max_dirty_pages_pct\",\"name\":\"innodb_max_dirty_pages_pct\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"Percentage of dirty pages at which flushing kicks in.\",\"defaultValue\":\"0\",\"dataType\":\"Numeric\",\"allowedValues\":\"0-99\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_max_dirty_pages_pct_lwm\",\"name\":\"innodb_max_dirty_pages_pct_lwm\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"Desired maximum length of the purge queue (0 = no limit)\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_max_purge_lag\",\"name\":\"innodb_max_purge_lag\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"Maximum delay of user threads in micro-seconds\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-10000000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_max_purge_lag_delay\",\"name\":\"innodb_max_purge_lag_delay\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"10485760\",\"description\":\"Desired maximum UNDO tablespace size in bytes\",\"defaultValue\":\"10485760\",\"dataType\":\"Integer\",\"allowedValues\":\"10485760-281474976710656\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_max_undo_log_size\",\"name\":\"innodb_max_undo_log_size\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"37\",\"description\":\"Specifies the approximate percentage of the InnoDB buffer pool used for the old block sublist.\",\"defaultValue\":\"37\",\"dataType\":\"Integer\",\"allowedValues\":\"5-95\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_old_blocks_pct\",\"name\":\"innodb_old_blocks_pct\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"1000\",\"description\":\"Non-zero values protect against the buffer pool being filled by data that is referenced only for a brief period, such as during a full table scan.\",\"defaultValue\":\"1000\",\"dataType\":\"Integer\",\"allowedValues\":\"0-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_old_blocks_time\",\"name\":\"innodb_old_blocks_time\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"134217728\",\"description\":\"Specifies an upper limit on the size of the temporary log files used during online DDL operations for InnoDB tables.\",\"defaultValue\":\"134217728\",\"dataType\":\"Integer\",\"allowedValues\":\"65536-18446744073709547520\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_online_alter_log_max_size\",\"name\":\"innodb_online_alter_log_max_size\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"How many files at the maximum InnoDB keeps open at the same time.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-2147483647\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_open_files\",\"name\":\"innodb_open_files\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"Only optimize the Fulltext index of the table\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_optimize_fulltext_only\",\"name\":\"innodb_optimize_fulltext_only\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"4\",\"description\":\"Page cleaner threads can be from 1 to 64. Default is 4.\",\"defaultValue\":\"4\",\"dataType\":\"Integer\",\"allowedValues\":\"1-64\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_page_cleaners\",\"name\":\"innodb_page_cleaners\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"300\",\"description\":\"Number of UNDO log pages to purge in one batch from the history list.\",\"defaultValue\":\"300\",\"dataType\":\"Integer\",\"allowedValues\":\"1-5000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_purge_batch_size\",\"name\":\"innodb_purge_batch_size\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"128\",\"description\":\"Dictates rate at which UNDO records are purged. Value N means purge rollback segment(s) on every Nth iteration of purge invocation\",\"defaultValue\":\"128\",\"dataType\":\"Integer\",\"allowedValues\":\"1-128\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_purge_rseg_truncate_frequency\",\"name\":\"innodb_purge_rseg_truncate_frequency\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"Whether to use read ahead for random access within an extent.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_random_read_ahead\",\"name\":\"innodb_random_read_ahead\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"56\",\"description\":\"Controls the sensitivity of linear read-ahead that InnoDB uses to prefetch pages into the buffer pool.\",\"defaultValue\":\"56\",\"dataType\":\"Integer\",\"allowedValues\":\"0-64\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_read_ahead_threshold\",\"name\":\"innodb_read_ahead_threshold\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"4\",\"description\":\"The number of I/O threads for read operations in InnoDB.\",\"defaultValue\":\"4\",\"dataType\":\"Integer\",\"allowedValues\":\"1-64\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_read_io_threads\",\"name\":\"innodb_read_io_threads\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"ON\",\"description\":\"InnoDB automatic recalculation of persistent statistics enabled for all tables unless overridden at table level (automatic recalculation is only done when InnoDB decides that the table has changed too much and needs a new statistics)\",\"defaultValue\":\"ON\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_stats_auto_recalc\",\"name\":\"innodb_stats_auto_recalc\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"Include delete marked records when calculating persistent statistics\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_stats_include_delete_marked\",\"name\":\"innodb_stats_include_delete_marked\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"nulls_equal\",\"description\":\"Specifies how InnoDB index statistics collection code should treat NULLs. Possible values are NULLS_EQUAL (default), NULLS_UNEQUAL and NULLS_IGNORED\",\"defaultValue\":\"nulls_equal\",\"dataType\":\"Enumeration\",\"allowedValues\":\"nulls_equal,nulls_unequal,nulls_ignored\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_stats_method\",\"name\":\"innodb_stats_method\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"The number of rows modified before we calculate new statistics (default 0 = current limits)\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-18446744073709551615\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_stats_modified_counter\",\"name\":\"innodb_stats_modified_counter\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"Enable statistics gathering for metadata commands such as SHOW TABLE STATUS for tables that use transient statistics (off by default)\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_stats_on_metadata\",\"name\":\"innodb_stats_on_metadata\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"ON\",\"description\":\"InnoDB persistent statistics enabled for all tables unless overridden at table level\",\"defaultValue\":\"ON\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_stats_persistent\",\"name\":\"innodb_stats_persistent\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"20\",\"description\":\"The number of leaf index pages to sample when calculating persistent statistics (by ANALYZE, default 20)\",\"defaultValue\":\"20\",\"dataType\":\"Integer\",\"allowedValues\":\"1-18446744073709551615\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_stats_persistent_sample_pages\",\"name\":\"innodb_stats_persistent_sample_pages\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"ON\",\"description\":\"Enable traditional statistic calculation based on number of configured pages (default true)\",\"defaultValue\":\"ON\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_stats_traditional\",\"name\":\"innodb_stats_traditional\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"8\",\"description\":\"The number of leaf index pages to sample when calculating transient statistics (if persistent statistics are not used, default 8)\",\"defaultValue\":\"8\",\"dataType\":\"Integer\",\"allowedValues\":\"1-18446744073709551615\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_stats_transient_sample_pages\",\"name\":\"innodb_stats_transient_sample_pages\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"Enable InnoDB monitor output to the error log.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_status_output\",\"name\":\"innodb_status_output\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"Enable InnoDB lock monitor output to the error log. Requires innodb_status_output=ON.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_status_output_locks\",\"name\":\"innodb_status_output_locks\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"ON\",\"description\":\"Use strict mode when evaluating create options.\",\"defaultValue\":\"ON\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_strict_mode\",\"name\":\"innodb_strict_mode\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"1\",\"description\":\"Size of the mutex/lock wait array.\",\"defaultValue\":\"1\",\"dataType\":\"Integer\",\"allowedValues\":\"1-1024\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_sync_array_size\",\"name\":\"innodb_sync_array_size\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"ON\",\"description\":\"Enable InnoDB locking in LOCK TABLES\",\"defaultValue\":\"ON\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_table_locks\",\"name\":\"innodb_table_locks\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"InnoDB tries to keep the number of operating system threads concurrently inside InnoDB less than or equal to the limit given by this variable.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-1000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_thread_concurrency\",\"name\":\"innodb_thread_concurrency\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"10000\",\"description\":\"Defines how long InnoDB threads sleep before joining the InnoDB queue, in microseconds.\",\"defaultValue\":\"10000\",\"dataType\":\"Integer\",\"allowedValues\":\"0-1000000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_thread_sleep_delay\",\"name\":\"innodb_thread_sleep_delay\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"Enable or Disable Truncate of UNDO tablespace.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_undo_log_truncate\",\"name\":\"innodb_undo_log_truncate\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"4\",\"description\":\"The number of I/O threads for write operations in InnoDB.\",\"defaultValue\":\"4\",\"dataType\":\"Integer\",\"allowedValues\":\"1-64\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/innodb_write_io_threads\",\"name\":\"innodb_write_io_threads\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"1800\",\"description\":\"Number of seconds the server waits for activity on an interactive connection before closing it.\",\"defaultValue\":\"1800\",\"dataType\":\"Integer\",\"allowedValues\":\"1-31536000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/interactive_timeout\",\"name\":\"interactive_timeout\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"262144\",\"description\":\"The minimum size of the buffer that is used for plain index scans, range index scans, and joins that do not use indexes and thus perform full table scans.\",\"defaultValue\":\"262144\",\"dataType\":\"Integer\",\"allowedValues\":\"128-524288\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/join_buffer_size\",\"name\":\"join_buffer_size\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"2\",\"description\":\"Controls what join operations can be executed with join buffers. Odd numbers are used for plain join buffers while even numbers are used for linked buffers\",\"defaultValue\":\"2\",\"dataType\":\"Integer\",\"allowedValues\":\"0-8\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/join_cache_level\",\"name\":\"join_cache_level\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"ON\",\"description\":\"Enable LOAD DATA LOCAL INFILE\",\"defaultValue\":\"ON\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/local_infile\",\"name\":\"local_infile\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"86400\",\"description\":\"This variable specifies the timeout in seconds for attempts to acquire metadata locks.\",\"defaultValue\":\"86400\",\"dataType\":\"Integer\",\"allowedValues\":\"1-31536000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/lock_wait_timeout\",\"name\":\"lock_wait_timeout\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"This variable applies when binary logging is enabled. It controls whether stored function creators can be trusted not to create stored functions that will cause unsafe events to be written to the binary log. It cannot be updated any more for a master/replica server to keep the replication consistency.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/log_bin_trust_function_creators\",\"name\":\"log_bin_trust_function_creators\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"FILE\",\"description\":\"The destination for general query log and slow query log output.\",\"defaultValue\":\"FILE\",\"dataType\":\"Set\",\"allowedValues\":\"FILE,NONE\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/log_output\",\"name\":\"log_output\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"Logs queries that are expected to retrieve all rows to slow query log.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/log_queries_not_using_indexes\",\"name\":\"log_queries_not_using_indexes\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"Include slow administrative statements in the statements written to the slow query log.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/log_slow_admin_statements\",\"name\":\"log_slow_admin_statements\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"admin,filesort,filesort_on_disk,full_join,full_scan,query_cache,query_cache_miss,tmp_table,tmp_table_on_disk\",\"description\":\"Log only certain types of queries\",\"defaultValue\":\"admin,filesort,filesort_on_disk,full_join,full_scan,query_cache,query_cache_miss,tmp_table,tmp_table_on_disk\",\"dataType\":\"Set\",\"allowedValues\":\",admin,filesort,filesort_on_disk,full_join,full_scan,query_cache,query_cache_miss,tmp_table,tmp_table_on_disk\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/log_slow_filter\",\"name\":\"log_slow_filter\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"1\",\"description\":\"Write to slow log every #th slow query. Set to 1 to log everything. Increase it to reduce the size of the slow or the performance impact of slow logging\",\"defaultValue\":\"1\",\"dataType\":\"Integer\",\"allowedValues\":\"1-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/log_slow_rate_limit\",\"name\":\"log_slow_rate_limit\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"\",\"description\":\"Verbosity level for the slow log\",\"defaultValue\":\"\",\"dataType\":\"Set\",\"allowedValues\":\",innodb,query_plan,explain\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/log_slow_verbosity\",\"name\":\"log_slow_verbosity\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"10\",\"description\":\"If a query takes longer than this many seconds, the server increments the Slow_queries status variable.\",\"defaultValue\":\"10\",\"dataType\":\"Numeric\",\"allowedValues\":\"0-31536000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/long_query_time\",\"name\":\"long_query_time\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"INSERT/DELETE/UPDATE has lower priority than selects\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/low_priority_updates\",\"name\":\"low_priority_updates\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"1\",\"description\":\"If set to 1, table names are stored in lowercase on disk and comparisons are not case sensitive. If set to 2, table names are stored as given but compared in lowercase.\",\"defaultValue\":\"1\",\"dataType\":\"Enumeration\",\"allowedValues\":\"1,2\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/lower_case_table_names\",\"name\":\"lower_case_table_names\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"536870912\",\"description\":\"The maximum size of one packet or any generated/intermediate string, or any parameter sent by the mysql_stmt_send_long_data() C API function.\",\"defaultValue\":\"536870912\",\"dataType\":\"Integer\",\"allowedValues\":\"1024-1073741824\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/max_allowed_packet\",\"name\":\"max_allowed_packet\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"100\",\"description\":\"If more than this many successive connection requests from a host are interrupted without a successful connection, the server blocks that host from further connections.\",\"defaultValue\":\"100\",\"dataType\":\"Integer\",\"allowedValues\":\"1-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/max_connect_errors\",\"name\":\"max_connect_errors\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"50\",\"description\":\"The maximum permitted number of simultaneous client connections.\",\"defaultValue\":\"50\",\"dataType\":\"Integer\",\"allowedValues\":\"10-50\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/max_connections\",\"name\":\"max_connections\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"20\",\"description\":\"Don\u0027t start more than this number of threads to handle INSERT DELAYED statements. If set to zero INSERT DELAYED will be not used\",\"defaultValue\":\"20\",\"dataType\":\"Integer\",\"allowedValues\":\"0-16384\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/max_delayed_threads\",\"name\":\"max_delayed_threads\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"1024\",\"description\":\"Maximum length considered for digest text.\",\"defaultValue\":\"1024\",\"dataType\":\"Integer\",\"allowedValues\":\"0-1048576\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/max_digest_length\",\"name\":\"max_digest_length\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"64\",\"description\":\"Max number of errors/warnings to store for a statement\",\"defaultValue\":\"64\",\"dataType\":\"Integer\",\"allowedValues\":\"0-65535\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/max_error_count\",\"name\":\"max_error_count\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"16777216\",\"description\":\"This variable sets the maximum size to which user-created MEMORY tables are permitted to grow.\",\"defaultValue\":\"16777216\",\"dataType\":\"Integer\",\"allowedValues\":\"16384-33554432\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/max_heap_table_size\",\"name\":\"max_heap_table_size\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"18446744073709547520\",\"description\":\"Joins that are probably going to read more than max_join_size records return an error\",\"defaultValue\":\"18446744073709547520\",\"dataType\":\"Integer\",\"allowedValues\":\"1048576-18446744073709547520\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/max_join_size\",\"name\":\"max_join_size\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"1024\",\"description\":\"The cutoff on the size of index values that determines which filesort algorithm to use.\",\"defaultValue\":\"1024\",\"dataType\":\"Integer\",\"allowedValues\":\"4-8388608\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/max_length_for_sort_data\",\"name\":\"max_length_for_sort_data\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"16382\",\"description\":\"This variable limits the total number of prepared statements in the server.\",\"defaultValue\":\"16382\",\"dataType\":\"Integer\",\"allowedValues\":\"0-1048576\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/max_prepared_stmt_count\",\"name\":\"max_prepared_stmt_count\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"4294967295\",\"description\":\"Maximum number of iterations when executing recursive queries\",\"defaultValue\":\"4294967295\",\"dataType\":\"Integer\",\"allowedValues\":\"0-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/max_recursive_iterations\",\"name\":\"max_recursive_iterations\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"4294967295\",\"description\":\"Limit assumed max number of seeks when looking up rows based on a key\",\"defaultValue\":\"4294967295\",\"dataType\":\"Integer\",\"allowedValues\":\"1-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/max_seeks_for_key\",\"name\":\"max_seeks_for_key\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"9223372036854775807 \",\"description\":\"Amount of memory a single user session is allowed to allocate. This limits the value of the session variable MEM_USED\",\"defaultValue\":\"9223372036854775807 \",\"dataType\":\"Integer\",\"allowedValues\":\"1048576-9223372036854775807\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/max_session_mem_used\",\"name\":\"max_session_mem_used\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"1024\",\"description\":\"The number of bytes to use when sorting BLOB or TEXT values (only the first max_sort_length bytes of each value are used; the rest are ignored)\",\"defaultValue\":\"1024\",\"dataType\":\"Integer\",\"allowedValues\":\"4-8388608\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/max_sort_length\",\"name\":\"max_sort_length\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"Maximum stored procedure recursion depth\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-255\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/max_sp_recursion_depth\",\"name\":\"max_sp_recursion_depth\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"The maximum number of active connections for a single user (0 = no limit)\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-2147483647\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/max_user_connections\",\"name\":\"max_user_connections\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"4294967295\",\"description\":\"After this many write locks, allow some read locks to run in between\",\"defaultValue\":\"4294967295\",\"dataType\":\"Integer\",\"allowedValues\":\"1-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/max_write_lock_count\",\"name\":\"max_write_lock_count\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"Can be used to cause queries which examine fewer than the stated number of rows not to be logged.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/min_examined_row_limit\",\"name\":\"min_examined_row_limit\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"120\",\"description\":\"The number of seconds the server waits for network reading action, especially for LOAD DATA LOCAL FILE.\",\"defaultValue\":\"120\",\"dataType\":\"Integer\",\"allowedValues\":\"1-31536000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/net_read_timeout\",\"name\":\"net_read_timeout\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"10\",\"description\":\"If a read on a communication port is interrupted, retry this many times before giving up\",\"defaultValue\":\"10\",\"dataType\":\"Integer\",\"allowedValues\":\"1-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/net_retry_count\",\"name\":\"net_retry_count\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"240\",\"description\":\"The number of seconds the server waits for network writing action, especially for LOAD DATA LOCAL FILE.\",\"defaultValue\":\"240\",\"dataType\":\"Integer\",\"allowedValues\":\"1-31536000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/net_write_timeout\",\"name\":\"net_write_timeout\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"62\",\"description\":\"Maximum depth of search performed by the query optimizer. Values larger than the number of relations in a query result in better query plans, but take longer to compile a query. Values smaller than the number of tables in a relation result in faster optimization, but may produce very bad query plans. If set to 0, the system will automatically pick a reasonable value.\",\"defaultValue\":\"62\",\"dataType\":\"Integer\",\"allowedValues\":\"0-62\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/optimizer_search_depth\",\"name\":\"optimizer_search_depth\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"100\",\"description\":\"Controls number of record samples to check condition selectivity\",\"defaultValue\":\"100\",\"dataType\":\"Integer\",\"allowedValues\":\"10-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/optimizer_selectivity_sampling_limit\",\"name\":\"optimizer_selectivity_sampling_limit\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"default\",\"description\":\"The value of this variable is a set of flags, each of which has a value of on or off to indicate whether the corresponding optimizer behavior is enabled or disabled.\",\"defaultValue\":\"default\",\"dataType\":\"Set\",\"allowedValues\":\"default,condition_pushdown_for_derived=on,condition_pushdown_for_derived=off,derived_merge=on,derived_merge=off,derived_with_keys=on,derived_with_keys=off,exists_to_in=on,exists_to_in=off,extended_keys=on,extended_keys=off,firstmatch=on,firstmatch=off,index_condition_pushdown=on,index_condition_pushdown=off,index_merge=on,index_merge=off,index_merge_intersection=on,index_merge_intersection=off,index_merge_sort_intersection=on,index_merge_sort_intersection=off,index_merge_sort_union=on,index_merge_sort_union=off,index_merge_union=on,index_merge_union=off,in_to_exists=on,in_to_exists=off,join_cache_bka=on,join_cache_bka=off,join_cache_hashed=on,join_cache_hashed=off,join_cache_incremental=on,join_cache_incremental=off,loosescan=on,loosescan=off,materialization=on,materialization=off,mrr=on,mrr=off,mrr_cost_based=on,mrr_cost_based=off,mrr_sort_keys=on,mrr_sort_keys=off,optimize_join_buffer_size=on,optimize_join_buffer_size=off,orderby_uses_equalities=on,orderby_uses_equalities=off,outer_join_with_cache=on,outer_join_with_cache=off,partial_match_rowid_merge=on,partial_match_rowid_merge=off,partial_match_table_scan=on,partial_match_table_scan=off,semijoin=on,semijoin=off,semijoin_with_cache=on,semijoin_with_cache=off,subquery_cache=on,subquery_cache=off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/optimizer_switch\",\"name\":\"optimizer_switch\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"1\",\"description\":\"Controls selectivity of which conditions the optimizer takes into account to calculate cardinality of a partial join when it searches for the best execution plan Meaning: 1 - use selectivity of index backed range conditions to calculate the cardinality of a partial join if the last joined table is accessed by full table scan or an index scan, 2 - use selectivity of index backed range conditions to calculate the cardinality of a partial join in any case, 3 - additionally always use selectivity of range conditions that are not backed by any index to calculate the cardinality of a partial join, 4 - use histograms to calculate selectivity of range conditions that are not backed by any index to calculate the cardinality of a partial join.5 - additionally use selectivity of certain non-range predicates calculated on record samples\",\"defaultValue\":\"1\",\"dataType\":\"Integer\",\"allowedValues\":\"1-5\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/optimizer_use_condition_selectivity\",\"name\":\"optimizer_use_condition_selectivity\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"32768\",\"description\":\"The size of the buffer that is allocated when preloading indexes\",\"defaultValue\":\"32768\",\"dataType\":\"Integer\",\"allowedValues\":\"1024-1073741824\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/preload_buffer_size\",\"name\":\"preload_buffer_size\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"15\",\"description\":\"The query store capture interval in minutes. Allows to specify the interval in which the query metrics are aggregated.\",\"defaultValue\":\"15\",\"dataType\":\"Integer\",\"allowedValues\":\"5-60\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/query_store_capture_interval\",\"name\":\"query_store_capture_interval\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"NONE\",\"description\":\"The query store capture mode, NONE means do not capture any statements. NOTE: If performance_schema is OFF, turning on query_store_capture_mode will turn on performance_schema and a subset of performance schema instruments required for this feature.\",\"defaultValue\":\"NONE\",\"dataType\":\"Enumeration\",\"allowedValues\":\"NONE,ALL\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/query_store_capture_mode\",\"name\":\"query_store_capture_mode\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"NO\",\"description\":\"Turning ON or OFF to capture all the utility queries that is executing in the system.\",\"defaultValue\":\"NO\",\"dataType\":\"Enumeration\",\"allowedValues\":\"YES,NO\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/query_store_capture_utility_queries\",\"name\":\"query_store_capture_utility_queries\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"7\",\"description\":\"The query store capture interval in minutes. Allows to specify the interval in which the query metrics are aggregated.\",\"defaultValue\":\"7\",\"dataType\":\"Integer\",\"allowedValues\":\"1-30\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/query_store_retention_period_in_days\",\"name\":\"query_store_retention_period_in_days\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"NONE\",\"description\":\"The query store wait event sampling capture mode, NONE means do not capture any wait events.\",\"defaultValue\":\"NONE\",\"dataType\":\"Enumeration\",\"allowedValues\":\"NONE,ALL\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/query_store_wait_sampling_capture_mode\",\"name\":\"query_store_wait_sampling_capture_mode\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"30\",\"description\":\"The query store wait event sampling frequency in seconds.\",\"defaultValue\":\"30\",\"dataType\":\"Integer\",\"allowedValues\":\"5-300\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/query_store_wait_sampling_frequency\",\"name\":\"query_store_wait_sampling_frequency\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"This parameter controls whetherthe server permits no client updates. When the server is read replica or server storage is full, this parameter will not take effect.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/read_only\",\"name\":\"read_only\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"Indicate server support redirection.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/redirect_enabled\",\"name\":\"redirect_enabled\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"mysql.%\",\"description\":\"Creates a replication filter which keeps the slave thread from replicating a statement in which any table matches the given wildcard pattern. To specify more than one table to ignore, use comma-separated list.\",\"defaultValue\":\"mysql.%\",\"dataType\":\"String\",\"allowedValues\":\"\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/replicate_wild_ignore_table\",\"name\":\"replicate_wild_ignore_table\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"2394047993\",\"description\":\"The server ID, used in replication to give each master and slave a unique identity.\",\"defaultValue\":\"1000\",\"dataType\":\"Integer\",\"allowedValues\":\"1000-4294967295\",\"source\":\"user-override\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/server_id\",\"name\":\"server_id\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"ON\",\"description\":\"Track changes to the default schema.\",\"defaultValue\":\"ON\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/session_track_schema\",\"name\":\"session_track_schema\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"Track changes to the session state.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/session_track_state_change\",\"name\":\"session_track_state_change\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"Track changes to the transaction attributes. OFF to disable; STATE to track just transaction state (Is there an active transaction? Does it have any data? etc.); CHARACTERISTICS to track transaction state and report all statements needed to start a transaction withthe same characteristics (isolation level, read only/read write,snapshot - but not any work done / data modified within the transaction).\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"OFF,STATE,CHARACTERISTICS\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/session_track_transaction_info\",\"name\":\"session_track_transaction_info\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"Don\u0027t allow \u0027SHOW DATABASE\u0027 commands\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/skip_show_database\",\"name\":\"skip_show_database\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"If non-zero, number of threads to spawn to apply in parallel events on the slave that were group-committed on the master or were logged with GTID in different replication domains. Note that these threads are in addition to the IO and SQL threads, which are always created by a replication slave\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-16383\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/slave_parallel_threads\",\"name\":\"slave_parallel_threads\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"Enable or disable the slow query log\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/slow_query_log\",\"name\":\"slow_query_log\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"524288\",\"description\":\"Each thread that needs to do a sort allocates a buffer of this size\",\"defaultValue\":\"524288\",\"dataType\":\"Integer\",\"allowedValues\":\"32768-1048576\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/sort_buffer_size\",\"name\":\"sort_buffer_size\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"STRICT_TRANS_TABLES,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION\",\"description\":\"The current server SQL mode.\",\"defaultValue\":\"STRICT_TRANS_TABLES,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION\",\"dataType\":\"Set\",\"allowedValues\":\",ALLOW_INVALID_DATES,ANSI,ANSI_QUOTES,DB2,ERROR_FOR_DIVISION_BY_ZERO,HIGH_NOT_PRECEDENCE,IGNORE_BAD_TABLE_OPTIONS,IGNORE_SPACE,MAXDB,MSSQL,MYSQL323,MYSQL40,NO_AUTO_CREATE_USER,NO_AUTO_VALUE_ON_ZERO,NO_BACKSLASH_ESCAPES,NO_DIR_IN_CREATE,NO_ENGINE_SUBSTITUTION,NO_FIELD_OPTIONS,NO_KEY_OPTIONS,NO_TABLE_OPTIONS,NO_UNSIGNED_SUBTRACTION,NO_ZERO_DATE,NO_ZERO_IN_DATE,ONLY_FULL_GROUP_BY,ORACLE,PAD_CHAR_TO_FULL_LENGTH,PIPES_AS_CONCAT,POSTGRESQL,REAL_AS_FLOAT,STRICT_ALL_TABLES,STRICT_TRANS_TABLES,TRADITIONAL\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/sql_mode\",\"name\":\"sql_mode\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"ON\",\"description\":\"Allow only CTEs compliant to SQL standard\",\"defaultValue\":\"ON\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/standard_compliant_cte\",\"name\":\"standard_compliant_cte\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"256\",\"description\":\"The soft upper limit for number of cached stored routines for one connection.\",\"defaultValue\":\"256\",\"dataType\":\"Integer\",\"allowedValues\":\"0-524288\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/stored_program_cache\",\"name\":\"stored_program_cache\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"10000\",\"description\":\"A replication slave will synchronize its master.info file to disk after this many events.\",\"defaultValue\":\"10000\",\"dataType\":\"Integer\",\"allowedValues\":\"1-100000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/sync_master_info\",\"name\":\"sync_master_info\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"10000\",\"description\":\"A replication slave will synchronize its relay-log.info file to disk after this many transactions.\",\"defaultValue\":\"10000\",\"dataType\":\"Integer\",\"allowedValues\":\"1-100000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/sync_relay_log_info\",\"name\":\"sync_relay_log_info\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"400\",\"description\":\"The number of cached table definitions\",\"defaultValue\":\"400\",\"dataType\":\"Integer\",\"allowedValues\":\"400-524288\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/table_definition_cache\",\"name\":\"table_definition_cache\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"2000\",\"description\":\"The number of open tables for all threads.\",\"defaultValue\":\"2000\",\"dataType\":\"Integer\",\"allowedValues\":\"10-10000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/table_open_cache\",\"name\":\"table_open_cache\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"256\",\"description\":\"How many threads we should keep in a cache for reuse. These are freed after 5 minutes of idle time\",\"defaultValue\":\"256\",\"dataType\":\"Integer\",\"allowedValues\":\"0-16384\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/thread_cache_size\",\"name\":\"thread_cache_size\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"65536\",\"description\":\"Maximum allowed number of worker threads in the thread pool\",\"defaultValue\":\"65536\",\"dataType\":\"Integer\",\"allowedValues\":\"1-65536\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/thread_pool_max_threads\",\"name\":\"thread_pool_max_threads\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"1\",\"description\":\"Minimum number of threads in the thread pool.\",\"defaultValue\":\"1\",\"dataType\":\"Integer\",\"allowedValues\":\"1-256\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/thread_pool_min_threads\",\"name\":\"thread_pool_min_threads\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"1000\",\"description\":\"The number of milliseconds before a dequeued low-priority statement is moved to the high-priority queue\",\"defaultValue\":\"1000\",\"dataType\":\"Integer\",\"allowedValues\":\"0-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/thread_pool_prio_kickup_timer\",\"name\":\"thread_pool_prio_kickup_timer\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"auto\",\"description\":\"Threadpool priority. High priority connections usually start executing earlier than low priority.If priority set to \u0027auto\u0027, the the actual priority(low or high) is determined based on whether or not connection is inside transaction.\",\"defaultValue\":\"auto\",\"dataType\":\"Enumeration\",\"allowedValues\":\"high,low,auto\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/thread_pool_priority\",\"name\":\"thread_pool_priority\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"500\",\"description\":\"Maximum query execution time in milliseconds,before an executing non-yielding thread is considered stalled.If a worker thread is stalled, additional worker thread may be created to handle remaining clients.\",\"defaultValue\":\"500\",\"dataType\":\"Integer\",\"allowedValues\":\"10-600\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/thread_pool_stall_limit\",\"name\":\"thread_pool_stall_limit\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"SYSTEM\",\"description\":\"The server time zone\",\"defaultValue\":\"SYSTEM\",\"dataType\":\"String\",\"allowedValues\":\"\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/time_zone\",\"name\":\"time_zone\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"REPEATABLE-READ\",\"description\":\"The default transaction isolation level.\",\"defaultValue\":\"REPEATABLE-READ\",\"dataType\":\"Enumeration\",\"allowedValues\":\"READ-UNCOMMITTED,READ-COMMITTED,REPEATABLE-READ,SERIALIZABLE\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/tx_isolation\",\"name\":\"tx_isolation\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"YES\",\"description\":\"YES = Don\u0027t issue an error message (warning only) if a VIEW without presence of a key of the underlying table is used in queries with a LIMIT clause for updating. NO = Prohibit update of a VIEW, which does not contain a key of the underlying table and the query uses a LIMIT clause (usually get from GUI tools)\",\"defaultValue\":\"YES\",\"dataType\":\"Enumeration\",\"allowedValues\":\"NO,YES\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/updatable_views_with_limit\",\"name\":\"updatable_views_with_limit\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"NEVER\",\"description\":\"Specifies how to use system statistics tables\",\"defaultValue\":\"NEVER\",\"dataType\":\"Enumeration\",\"allowedValues\":\"NEVER,COMPLEMENTARY,PREFERABLY\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/use_stat_tables\",\"name\":\"use_stat_tables\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"Enables statistics gathering for USER_STATISTICS, CLIENT_STATISTICS, INDEX_STATISTICS and TABLE_STATISTICS tables in the INFORMATION_SCHEMA\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/userstat\",\"name\":\"userstat\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"},{\"properties\":{\"value\":\"120\",\"description\":\"The number of seconds the server waits for activity on a noninteractive connection before closing it.\",\"defaultValue\":\"120\",\"dataType\":\"Integer\",\"allowedValues\":\"60-86400\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/wait_timeout\",\"name\":\"wait_timeout\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"}]}" } }, - "Get-AzMariaDbConfiguration+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/max_connections?api-version=2018-06-01-preview+1": { + "Get-AzMariaDbConfiguration+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/max_connections?api-version=2018-06-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/max_connections?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/max_connections?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "95" ], - "x-ms-client-request-id": [ "8b9bce78-7842-4d24-8086-6207250d6a09" ], + "x-ms-unique-id": [ "63" ], + "x-ms-client-request-id": [ "009c0362-3259-48e5-a8ac-bfc68dcaad59" ], "CommandName": [ "Get-AzMariaDbConfiguration" ], "FullCommandName": [ "Get-AzMariaDbConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -60,21 +60,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "b939eeb8-8198-4659-8420-717c16fcae57" ], + "x-ms-request-id": [ "fc7dc846-e900-4042-9e4a-d6c611f5697d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11920" ], - "x-ms-correlation-request-id": [ "fec6e48c-0204-4cb5-a9af-c8b428c8fd47" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T022838Z:fec6e48c-0204-4cb5-a9af-c8b428c8fd47" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11950" ], + "x-ms-correlation-request-id": [ "f71a0964-0c0e-4306-a829-414c5dc0799b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T182639Z:f71a0964-0c0e-4306-a829-414c5dc0799b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:28:38 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:26:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "526" ], + "Content-Length": [ "525" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"properties\":{\"value\":\"50\",\"description\":\"The maximum permitted number of simultaneous client connections.\",\"defaultValue\":\"50\",\"dataType\":\"Integer\",\"allowedValues\":\"10-50\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/max_connections\",\"name\":\"max_connections\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"}" + "Content": "{\"properties\":{\"value\":\"50\",\"description\":\"The maximum permitted number of simultaneous client connections.\",\"defaultValue\":\"50\",\"dataType\":\"Integer\",\"allowedValues\":\"10-50\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/max_connections\",\"name\":\"max_connections\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"}" } } } \ No newline at end of file diff --git a/src/MariaDb/test/Get-AzMariaDbConnectionString.Recording.json b/src/MariaDb/test/Get-AzMariaDbConnectionString.Recording.json index 07835226f654..6e5b36306120 100644 --- a/src/MariaDb/test/Get-AzMariaDbConnectionString.Recording.json +++ b/src/MariaDb/test/Get-AzMariaDbConnectionString.Recording.json @@ -1,12 +1,12 @@ { - "Get-AzMariaDbConnectionString+[NoContext]+ServerName+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh?api-version=2018-06-01-preview+1": { + "Get-AzMariaDbConnectionString+[NoContext]+ServerName+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq?api-version=2018-06-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "96" ], - "x-ms-client-request-id": [ "31830541-c934-4f9c-8bbf-56eebd67a8d7" ], + "x-ms-unique-id": [ "64" ], + "x-ms-client-request-id": [ "dca1226e-0cd4-4822-912b-f40736fda79d" ], "CommandName": [ "Get-AzMariaDbServer" ], "FullCommandName": [ "Get-AzMariaDbServer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -21,31 +21,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "22e5e9d3-f5fd-4bc8-ba8c-b9d467186964" ], + "x-ms-request-id": [ "458fbc0d-dbfc-4efc-9300-4b716ba1af31" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11919" ], - "x-ms-correlation-request-id": [ "879df94b-b537-4fcd-883e-49620e270508" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T022839Z:879df94b-b537-4fcd-883e-49620e270508" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11949" ], + "x-ms-correlation-request-id": [ "6e275a1e-f5a0-44c4-94f9-ddb3b2c4c7d3" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T182640Z:6e275a1e-f5a0-44c4-94f9-ddb3b2c4c7d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:28:39 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:26:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "925" ], + "Content-Length": [ "926" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-l8ukfh.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:00:29.09+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh\",\"name\":\"mariadb-test-l8ukfh\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" + "Content": "{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-1imnpq.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:13:20.857+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq\",\"name\":\"mariadb-test-1imnpq\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" } }, - "Get-AzMariaDbConnectionString+[NoContext]+ServerName+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh?api-version=2018-06-01-preview+2": { + "Get-AzMariaDbConnectionString+[NoContext]+ServerName+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq?api-version=2018-06-01-preview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "97" ], - "x-ms-client-request-id": [ "1d387495-20ac-45a2-babb-abce1b570eb3" ], + "x-ms-unique-id": [ "65" ], + "x-ms-client-request-id": [ "9d61b729-e484-4fcc-bdec-478d7031f1ef" ], "CommandName": [ "Get-AzMariaDbServer" ], "FullCommandName": [ "Get-AzMariaDbServer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -60,31 +60,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "099b4f52-ce68-4250-b266-4d8e5357405b" ], + "x-ms-request-id": [ "eadd27c1-d301-413f-ad66-c93a5f7c1c39" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11918" ], - "x-ms-correlation-request-id": [ "d3d8af78-98c7-48a9-96cb-c215e7e7c253" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T022839Z:d3d8af78-98c7-48a9-96cb-c215e7e7c253" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11948" ], + "x-ms-correlation-request-id": [ "16b2e8eb-adc3-4203-b451-7f4377156a04" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T182641Z:16b2e8eb-adc3-4203-b451-7f4377156a04" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:28:39 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:26:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "925" ], + "Content-Length": [ "926" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-l8ukfh.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:00:29.09+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh\",\"name\":\"mariadb-test-l8ukfh\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" + "Content": "{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-1imnpq.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:13:20.857+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq\",\"name\":\"mariadb-test-1imnpq\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" } }, - "Get-AzMariaDbConnectionString+[NoContext]+ServerName+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh?api-version=2018-06-01-preview+3": { + "Get-AzMariaDbConnectionString+[NoContext]+ServerName+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq?api-version=2018-06-01-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "98" ], - "x-ms-client-request-id": [ "19d20700-a6be-4db4-a41a-6830bce3dcbc" ], + "x-ms-unique-id": [ "66" ], + "x-ms-client-request-id": [ "1c2bf2e9-f52f-4862-9c3e-e4cbcd15f0ad" ], "CommandName": [ "Get-AzMariaDbServer" ], "FullCommandName": [ "Get-AzMariaDbServer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -99,31 +99,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "07e03aad-32a0-4b50-82b0-da33440373ce" ], + "x-ms-request-id": [ "e921ea6d-3142-49d7-b183-9091fd8c946d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11917" ], - "x-ms-correlation-request-id": [ "0de4e202-d152-4fab-8d42-5598428e1afb" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T022839Z:0de4e202-d152-4fab-8d42-5598428e1afb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11947" ], + "x-ms-correlation-request-id": [ "83c6f6ac-a583-4619-a9ab-d891104e7d01" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T182641Z:83c6f6ac-a583-4619-a9ab-d891104e7d01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:28:39 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:26:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "925" ], + "Content-Length": [ "926" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-l8ukfh.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:00:29.09+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh\",\"name\":\"mariadb-test-l8ukfh\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" + "Content": "{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-1imnpq.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:13:20.857+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq\",\"name\":\"mariadb-test-1imnpq\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" } }, - "Get-AzMariaDbConnectionString+[NoContext]+ServerName+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh?api-version=2018-06-01-preview+4": { + "Get-AzMariaDbConnectionString+[NoContext]+ServerName+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq?api-version=2018-06-01-preview+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "99" ], - "x-ms-client-request-id": [ "44f03693-97f1-4adf-9460-ce625ea1075f" ], + "x-ms-unique-id": [ "67" ], + "x-ms-client-request-id": [ "54fe3e46-c28c-455a-8eac-fa909826ffb6" ], "CommandName": [ "Get-AzMariaDbServer" ], "FullCommandName": [ "Get-AzMariaDbServer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -138,31 +138,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "089e6415-1daa-4898-808c-e0db85230ac3" ], + "x-ms-request-id": [ "6610b076-f8a5-4147-80b5-12ef0bae9157" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11916" ], - "x-ms-correlation-request-id": [ "126338d1-1043-49b8-b21d-e1550d703bc2" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T022840Z:126338d1-1043-49b8-b21d-e1550d703bc2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11946" ], + "x-ms-correlation-request-id": [ "73469860-6760-424c-9986-1779f9f026cc" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T182642Z:73469860-6760-424c-9986-1779f9f026cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:28:40 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:26:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "925" ], + "Content-Length": [ "926" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-l8ukfh.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:00:29.09+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh\",\"name\":\"mariadb-test-l8ukfh\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" + "Content": "{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-1imnpq.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:13:20.857+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq\",\"name\":\"mariadb-test-1imnpq\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" } }, - "Get-AzMariaDbConnectionString+[NoContext]+ServerName+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh?api-version=2018-06-01-preview+5": { + "Get-AzMariaDbConnectionString+[NoContext]+ServerName+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq?api-version=2018-06-01-preview+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "100" ], - "x-ms-client-request-id": [ "705428cd-0f4a-448b-a75e-31f24a2ca231" ], + "x-ms-unique-id": [ "68" ], + "x-ms-client-request-id": [ "f0e590b0-d143-4060-ab35-f75ea02c7da9" ], "CommandName": [ "Get-AzMariaDbServer" ], "FullCommandName": [ "Get-AzMariaDbServer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -177,31 +177,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "5ebecde4-8ebf-4b34-a086-9aa50c5e31f1" ], + "x-ms-request-id": [ "f2348433-ba4e-4995-9753-026ec4a06242" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11915" ], - "x-ms-correlation-request-id": [ "585c906f-298d-427a-9696-a8f5751a62d4" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T022840Z:585c906f-298d-427a-9696-a8f5751a62d4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11945" ], + "x-ms-correlation-request-id": [ "a730be98-b83a-49a7-9b06-6bb316acc9f9" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T182642Z:a730be98-b83a-49a7-9b06-6bb316acc9f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:28:40 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:26:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "925" ], + "Content-Length": [ "926" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-l8ukfh.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:00:29.09+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh\",\"name\":\"mariadb-test-l8ukfh\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" + "Content": "{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-1imnpq.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:13:20.857+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq\",\"name\":\"mariadb-test-1imnpq\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" } }, - "Get-AzMariaDbConnectionString+[NoContext]+ServerName+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh?api-version=2018-06-01-preview+6": { + "Get-AzMariaDbConnectionString+[NoContext]+ServerName+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq?api-version=2018-06-01-preview+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "101" ], - "x-ms-client-request-id": [ "6a2b9e6a-6e3e-467b-9275-fe178c2a3e22" ], + "x-ms-unique-id": [ "69" ], + "x-ms-client-request-id": [ "fea9f280-492a-43b5-8c27-e77618f4dfe2" ], "CommandName": [ "Get-AzMariaDbServer" ], "FullCommandName": [ "Get-AzMariaDbServer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -216,31 +216,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "928713eb-ed94-4c25-b856-4ed426ec8a9e" ], + "x-ms-request-id": [ "68864de9-8a17-4d58-9d1e-38b7485975da" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11914" ], - "x-ms-correlation-request-id": [ "849854a0-48c8-4728-84d8-e5ec0744084b" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T022841Z:849854a0-48c8-4728-84d8-e5ec0744084b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11944" ], + "x-ms-correlation-request-id": [ "acff8433-3d9e-4730-81fd-f9e7486e44b3" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T182642Z:acff8433-3d9e-4730-81fd-f9e7486e44b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:28:41 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:26:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "925" ], + "Content-Length": [ "926" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-l8ukfh.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:00:29.09+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh\",\"name\":\"mariadb-test-l8ukfh\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" + "Content": "{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-1imnpq.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:13:20.857+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq\",\"name\":\"mariadb-test-1imnpq\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" } }, - "Get-AzMariaDbConnectionString+[NoContext]+ServerName+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh?api-version=2018-06-01-preview+7": { + "Get-AzMariaDbConnectionString+[NoContext]+ServerName+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq?api-version=2018-06-01-preview+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "102" ], - "x-ms-client-request-id": [ "77a276c0-96bc-4c95-b443-e0422a235f0b" ], + "x-ms-unique-id": [ "70" ], + "x-ms-client-request-id": [ "415ee70e-c8b8-4a8e-9ddd-1b79a474d298" ], "CommandName": [ "Get-AzMariaDbServer" ], "FullCommandName": [ "Get-AzMariaDbServer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -255,31 +255,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "8a68603d-9d05-4985-b164-034c4bda1474" ], + "x-ms-request-id": [ "a6ca0cc9-1251-4ce5-8b59-740c8cddeecb" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11913" ], - "x-ms-correlation-request-id": [ "800c535e-7d85-4ce0-b9c9-40109f293776" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T022841Z:800c535e-7d85-4ce0-b9c9-40109f293776" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11943" ], + "x-ms-correlation-request-id": [ "d879e594-6715-4d02-bad3-8c2d78808dfb" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T182643Z:d879e594-6715-4d02-bad3-8c2d78808dfb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:28:41 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:26:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "925" ], + "Content-Length": [ "926" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-l8ukfh.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:00:29.09+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh\",\"name\":\"mariadb-test-l8ukfh\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" + "Content": "{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-1imnpq.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:13:20.857+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq\",\"name\":\"mariadb-test-1imnpq\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" } }, - "Get-AzMariaDbConnectionString+[NoContext]+ServerNameObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh?api-version=2018-06-01-preview+1": { + "Get-AzMariaDbConnectionString+[NoContext]+ServerNameObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq?api-version=2018-06-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "103" ], - "x-ms-client-request-id": [ "494a2b0a-e3e3-49e3-86e8-17442be991f2" ], + "x-ms-unique-id": [ "71" ], + "x-ms-client-request-id": [ "896b4863-439a-41dd-a676-0cabcd89e1b1" ], "CommandName": [ "Get-AzMariaDbServer" ], "FullCommandName": [ "Get-AzMariaDbServer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -294,31 +294,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "0215e0de-c10d-4331-8aa1-a102bb70731c" ], + "x-ms-request-id": [ "4801a42e-bdb7-4708-a560-9376b8d0debe" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11912" ], - "x-ms-correlation-request-id": [ "32acb215-d6ad-44f3-9925-75a5a1c86da3" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T022841Z:32acb215-d6ad-44f3-9925-75a5a1c86da3" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11942" ], + "x-ms-correlation-request-id": [ "bc2f506b-0040-44c3-95ec-497f3e0dd2d2" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T182643Z:bc2f506b-0040-44c3-95ec-497f3e0dd2d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:28:41 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:26:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "925" ], + "Content-Length": [ "926" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-l8ukfh.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:00:29.09+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh\",\"name\":\"mariadb-test-l8ukfh\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" + "Content": "{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-1imnpq.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:13:20.857+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq\",\"name\":\"mariadb-test-1imnpq\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" } }, - "Get-AzMariaDbConnectionString+[NoContext]+ServerNameObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh?api-version=2018-06-01-preview+2": { + "Get-AzMariaDbConnectionString+[NoContext]+ServerNameObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq?api-version=2018-06-01-preview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "104" ], - "x-ms-client-request-id": [ "4330effd-d683-46eb-b3b2-68df226cb039" ], + "x-ms-unique-id": [ "72" ], + "x-ms-client-request-id": [ "23f42c92-eda2-4520-acbd-1cab149661f9" ], "CommandName": [ "Get-AzMariaDbServer" ], "FullCommandName": [ "Get-AzMariaDbServer_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -333,31 +333,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "97c7c3b8-85da-48b5-8570-1f318240d53f" ], + "x-ms-request-id": [ "b534ba00-5bec-46bb-aff2-540d8988fdf5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11911" ], - "x-ms-correlation-request-id": [ "141403ce-0bb6-46e3-8120-4c298791df9f" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T022842Z:141403ce-0bb6-46e3-8120-4c298791df9f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11941" ], + "x-ms-correlation-request-id": [ "518d7022-79cc-4d52-8570-bac5ca9562fc" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T182643Z:518d7022-79cc-4d52-8570-bac5ca9562fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:28:42 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:26:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "925" ], + "Content-Length": [ "926" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-l8ukfh.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:00:29.09+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh\",\"name\":\"mariadb-test-l8ukfh\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" + "Content": "{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-1imnpq.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:13:20.857+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq\",\"name\":\"mariadb-test-1imnpq\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" } }, - "Get-AzMariaDbConnectionString+[NoContext]+ServerNameObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh?api-version=2018-06-01-preview+3": { + "Get-AzMariaDbConnectionString+[NoContext]+ServerNameObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq?api-version=2018-06-01-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "105" ], - "x-ms-client-request-id": [ "3b625425-18fa-4b93-ad7f-9f11a1ab9b94" ], + "x-ms-unique-id": [ "73" ], + "x-ms-client-request-id": [ "3f0f4330-cd6f-437d-85b0-b7cca20e5d98" ], "CommandName": [ "Get-AzMariaDbServer" ], "FullCommandName": [ "Get-AzMariaDbServer_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -372,31 +372,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "fd858195-f356-4d7b-a98e-bc588f8525a1" ], + "x-ms-request-id": [ "414fc843-0bb8-4543-afc9-770c51f31eff" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11910" ], - "x-ms-correlation-request-id": [ "fd7d5f53-afad-452e-bea0-888a025de2b9" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T022842Z:fd7d5f53-afad-452e-bea0-888a025de2b9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11940" ], + "x-ms-correlation-request-id": [ "81eff553-65f9-4ab1-8793-0e82feee5645" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T182644Z:81eff553-65f9-4ab1-8793-0e82feee5645" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:28:42 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:26:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "925" ], + "Content-Length": [ "926" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-l8ukfh.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:00:29.09+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh\",\"name\":\"mariadb-test-l8ukfh\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" + "Content": "{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-1imnpq.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:13:20.857+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq\",\"name\":\"mariadb-test-1imnpq\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" } }, - "Get-AzMariaDbConnectionString+[NoContext]+ServerNameObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh?api-version=2018-06-01-preview+4": { + "Get-AzMariaDbConnectionString+[NoContext]+ServerNameObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq?api-version=2018-06-01-preview+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "106" ], - "x-ms-client-request-id": [ "b30c4908-0ab3-4545-b4cb-01418b017fdb" ], + "x-ms-unique-id": [ "74" ], + "x-ms-client-request-id": [ "53056a6e-db41-4630-a2ee-e4ea27ad0087" ], "CommandName": [ "Get-AzMariaDbServer" ], "FullCommandName": [ "Get-AzMariaDbServer_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -411,31 +411,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "9ef7291d-7258-41bd-b778-620c1a64a919" ], + "x-ms-request-id": [ "cd481ad8-6892-4177-8511-728a8bb0803b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11909" ], - "x-ms-correlation-request-id": [ "0f97e97b-be04-4ce5-916f-db5ae8b21c07" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T022842Z:0f97e97b-be04-4ce5-916f-db5ae8b21c07" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11939" ], + "x-ms-correlation-request-id": [ "dd7941a4-bace-4660-98e2-58df2650c4f7" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T182644Z:dd7941a4-bace-4660-98e2-58df2650c4f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:28:42 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:26:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "925" ], + "Content-Length": [ "926" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-l8ukfh.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:00:29.09+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh\",\"name\":\"mariadb-test-l8ukfh\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" + "Content": "{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-1imnpq.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:13:20.857+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq\",\"name\":\"mariadb-test-1imnpq\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" } }, - "Get-AzMariaDbConnectionString+[NoContext]+ServerNameObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh?api-version=2018-06-01-preview+5": { + "Get-AzMariaDbConnectionString+[NoContext]+ServerNameObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq?api-version=2018-06-01-preview+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "107" ], - "x-ms-client-request-id": [ "59f1ece1-ce2f-4cfc-950b-178f1461920d" ], + "x-ms-unique-id": [ "75" ], + "x-ms-client-request-id": [ "8ac6e60a-ed6d-4df9-9b56-21fe8feeab88" ], "CommandName": [ "Get-AzMariaDbServer" ], "FullCommandName": [ "Get-AzMariaDbServer_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -450,31 +450,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "6a6e05d3-bb72-451e-a7f3-8854dff9c5f5" ], + "x-ms-request-id": [ "a0c5327b-7957-4903-bfd2-6079917d9e71" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11908" ], - "x-ms-correlation-request-id": [ "6ea56d93-1cb0-4697-ab65-bbe099f80fdb" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T022843Z:6ea56d93-1cb0-4697-ab65-bbe099f80fdb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11938" ], + "x-ms-correlation-request-id": [ "932a15dc-7053-4441-aadf-b3cccd700d2f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T182645Z:932a15dc-7053-4441-aadf-b3cccd700d2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:28:43 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:26:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "925" ], + "Content-Length": [ "926" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-l8ukfh.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:00:29.09+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh\",\"name\":\"mariadb-test-l8ukfh\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" + "Content": "{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-1imnpq.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:13:20.857+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq\",\"name\":\"mariadb-test-1imnpq\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" } }, - "Get-AzMariaDbConnectionString+[NoContext]+ServerNameObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh?api-version=2018-06-01-preview+6": { + "Get-AzMariaDbConnectionString+[NoContext]+ServerNameObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq?api-version=2018-06-01-preview+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "108" ], - "x-ms-client-request-id": [ "d567d9d6-67a8-46fd-bc1f-036825d4d7ac" ], + "x-ms-unique-id": [ "76" ], + "x-ms-client-request-id": [ "b64146bd-1969-4948-b49b-4c266faee101" ], "CommandName": [ "Get-AzMariaDbServer" ], "FullCommandName": [ "Get-AzMariaDbServer_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -489,31 +489,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "64f5f8ce-ed2e-4ec8-b6ca-55d3bc64389b" ], + "x-ms-request-id": [ "83202caf-c4ef-42f7-9a79-a9b030695ca2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11907" ], - "x-ms-correlation-request-id": [ "058a15dd-fb55-4305-a973-60944ca3fa18" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T022843Z:058a15dd-fb55-4305-a973-60944ca3fa18" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11937" ], + "x-ms-correlation-request-id": [ "576d8e55-2dc9-45e5-a060-77b7d57c4445" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T182645Z:576d8e55-2dc9-45e5-a060-77b7d57c4445" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:28:43 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:26:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "925" ], + "Content-Length": [ "926" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-l8ukfh.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:00:29.09+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh\",\"name\":\"mariadb-test-l8ukfh\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" + "Content": "{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-1imnpq.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:13:20.857+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq\",\"name\":\"mariadb-test-1imnpq\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" } }, - "Get-AzMariaDbConnectionString+[NoContext]+ServerNameObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh?api-version=2018-06-01-preview+7": { + "Get-AzMariaDbConnectionString+[NoContext]+ServerNameObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq?api-version=2018-06-01-preview+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "109" ], - "x-ms-client-request-id": [ "ea8f4b2e-dcea-47b1-91ad-5223bd293cb9" ], + "x-ms-unique-id": [ "77" ], + "x-ms-client-request-id": [ "483366e4-5fc5-4a3d-8b5c-84f9a4a8b7b5" ], "CommandName": [ "Get-AzMariaDbServer" ], "FullCommandName": [ "Get-AzMariaDbServer_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -528,31 +528,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "26861a00-c55c-4456-8eb5-464d7908f11a" ], + "x-ms-request-id": [ "d116c52b-6bcc-4f22-b137-0c614d95d99a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11906" ], - "x-ms-correlation-request-id": [ "58979734-04d5-482a-80e6-dd3a1ceee2ab" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T022844Z:58979734-04d5-482a-80e6-dd3a1ceee2ab" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11936" ], + "x-ms-correlation-request-id": [ "3d72f5c1-8164-4d5e-9845-03a42fd83252" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T182645Z:3d72f5c1-8164-4d5e-9845-03a42fd83252" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:28:44 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:26:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "925" ], + "Content-Length": [ "926" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-l8ukfh.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:00:29.09+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh\",\"name\":\"mariadb-test-l8ukfh\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" + "Content": "{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-1imnpq.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:13:20.857+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq\",\"name\":\"mariadb-test-1imnpq\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" } }, - "Get-AzMariaDbConnectionString+[NoContext]+ServerNameObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh?api-version=2018-06-01-preview+8": { + "Get-AzMariaDbConnectionString+[NoContext]+ServerNameObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq?api-version=2018-06-01-preview+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "110" ], - "x-ms-client-request-id": [ "90f5164f-1374-4c3c-a347-243c17b90039" ], + "x-ms-unique-id": [ "78" ], + "x-ms-client-request-id": [ "94f28343-e615-431a-bff9-ecbb1ec2a638" ], "CommandName": [ "Get-AzMariaDbServer" ], "FullCommandName": [ "Get-AzMariaDbServer_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -567,21 +567,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "cfea4c3b-8478-4114-95cd-1154bc280a0a" ], + "x-ms-request-id": [ "c2ed0008-c617-4a8a-b731-96e3a0fc95f6" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11905" ], - "x-ms-correlation-request-id": [ "172b260f-8b20-4a28-871a-b4796731b57a" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T022844Z:172b260f-8b20-4a28-871a-b4796731b57a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11935" ], + "x-ms-correlation-request-id": [ "a9f31ff0-39f6-4c1b-a3ac-4d78d79f07ce" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T182646Z:a9f31ff0-39f6-4c1b-a3ac-4d78d79f07ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:28:44 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:26:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "925" ], + "Content-Length": [ "926" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-l8ukfh.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:00:29.09+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh\",\"name\":\"mariadb-test-l8ukfh\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" + "Content": "{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-1imnpq.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:13:20.857+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq\",\"name\":\"mariadb-test-1imnpq\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" } } } \ No newline at end of file diff --git a/src/MariaDb/test/Get-AzMariaDbFirewallRule.Recording.json b/src/MariaDb/test/Get-AzMariaDbFirewallRule.Recording.json index 0210396e5a39..4cd814c7fbe1 100644 --- a/src/MariaDb/test/Get-AzMariaDbFirewallRule.Recording.json +++ b/src/MariaDb/test/Get-AzMariaDbFirewallRule.Recording.json @@ -1,12 +1,12 @@ { - "Get-AzMariaDbFirewallRule+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y/firewallRules?api-version=2018-06-01-preview+1": { + "Get-AzMariaDbFirewallRule+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz/firewallRules?api-version=2018-06-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y/firewallRules?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz/firewallRules?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "111" ], - "x-ms-client-request-id": [ "16f64dff-36dd-4927-90e8-91f4c7185555" ], + "x-ms-unique-id": [ "79" ], + "x-ms-client-request-id": [ "19c6f4ab-b7ca-4fd0-a972-8297c7f99df8" ], "CommandName": [ "Get-AzMariaDbFirewallRule" ], "FullCommandName": [ "Get-AzMariaDbFirewallRule_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -21,31 +21,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "688c93e7-bd25-496c-ae7c-a2c916b420e5" ], + "x-ms-request-id": [ "433b20a7-75f6-4e2e-a3ea-e3629259aac7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11904" ], - "x-ms-correlation-request-id": [ "b9d072ce-94fd-415c-a912-14f277da1ad1" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T022845Z:b9d072ce-94fd-415c-a912-14f277da1ad1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11934" ], + "x-ms-correlation-request-id": [ "1ca7c11b-502d-440d-b076-ea759640c5e5" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T182646Z:1ca7c11b-502d-440d-b076-ea759640c5e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:28:45 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:26:45 GMT" ] }, "ContentHeaders": { "Content-Length": [ "657" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"properties\":{\"startIpAddress\":\"0.0.0.1\",\"endIpAddress\":\"0.0.0.125\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y/firewallRules/fr-0aojzg\",\"name\":\"fr-0aojzg\",\"type\":\"Microsoft.DBforMariaDB/servers/firewallRules\"},{\"properties\":{\"startIpAddress\":\"0.0.0.1\",\"endIpAddress\":\"0.0.0.125\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y/firewallRules/fr-b1rws0\",\"name\":\"fr-b1rws0\",\"type\":\"Microsoft.DBforMariaDB/servers/firewallRules\"}]}" + "Content": "{\"value\":[{\"properties\":{\"startIpAddress\":\"0.0.0.1\",\"endIpAddress\":\"0.0.0.125\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz/firewallRules/fr-taijos\",\"name\":\"fr-taijos\",\"type\":\"Microsoft.DBforMariaDB/servers/firewallRules\"},{\"properties\":{\"startIpAddress\":\"0.0.0.1\",\"endIpAddress\":\"0.0.0.125\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz/firewallRules/fr-zy7auw\",\"name\":\"fr-zy7auw\",\"type\":\"Microsoft.DBforMariaDB/servers/firewallRules\"}]}" } }, - "Get-AzMariaDbFirewallRule+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y/firewallRules/fr-0aojzg?api-version=2018-06-01-preview+1": { + "Get-AzMariaDbFirewallRule+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz/firewallRules/fr-taijos?api-version=2018-06-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y/firewallRules/fr-0aojzg?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz/firewallRules/fr-taijos?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "112" ], - "x-ms-client-request-id": [ "cfcb6180-0dc7-4919-8a58-62f770f5150d" ], + "x-ms-unique-id": [ "80" ], + "x-ms-client-request-id": [ "8d1f531e-cd80-46c7-8ad0-1d610158b82c" ], "CommandName": [ "Get-AzMariaDbFirewallRule" ], "FullCommandName": [ "Get-AzMariaDbFirewallRule_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -60,21 +60,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "7bd65640-8314-4975-bcd6-785b554cf7af" ], + "x-ms-request-id": [ "d83e407c-850f-46b7-8090-8ac6e06fffe5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11903" ], - "x-ms-correlation-request-id": [ "f09e9f3a-3929-4c7e-9951-8d2823e915f4" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T022845Z:f09e9f3a-3929-4c7e-9951-8d2823e915f4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11933" ], + "x-ms-correlation-request-id": [ "cfead18e-621b-44e6-a73c-cf9edc3a930a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T182647Z:cfead18e-621b-44e6-a73c-cf9edc3a930a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:28:45 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:26:46 GMT" ] }, "ContentHeaders": { "Content-Length": [ "322" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"properties\":{\"startIpAddress\":\"0.0.0.1\",\"endIpAddress\":\"0.0.0.125\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y/firewallRules/fr-0aojzg\",\"name\":\"fr-0aojzg\",\"type\":\"Microsoft.DBforMariaDB/servers/firewallRules\"}" + "Content": "{\"properties\":{\"startIpAddress\":\"0.0.0.1\",\"endIpAddress\":\"0.0.0.125\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz/firewallRules/fr-taijos\",\"name\":\"fr-taijos\",\"type\":\"Microsoft.DBforMariaDB/servers/firewallRules\"}" } } } \ No newline at end of file diff --git a/src/MariaDb/test/Get-AzMariaDbReplica.Recording.json b/src/MariaDb/test/Get-AzMariaDbReplica.Recording.json index 88e9e88dcd42..e19cb576b0a8 100644 --- a/src/MariaDb/test/Get-AzMariaDbReplica.Recording.json +++ b/src/MariaDb/test/Get-AzMariaDbReplica.Recording.json @@ -1,12 +1,12 @@ { - "Get-AzMariaDbReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-rteafu/replicas?api-version=2018-06-01-preview+1": { + "Get-AzMariaDbReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-jtnizx/replicas?api-version=2018-06-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-rteafu/replicas?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-jtnizx/replicas?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "113" ], - "x-ms-client-request-id": [ "857ad83c-693d-4ed5-ba58-8d6353607e6a" ], + "x-ms-unique-id": [ "81" ], + "x-ms-client-request-id": [ "74e39ea2-4ec9-4483-964d-cd9c717bbff4" ], "CommandName": [ "Get-AzMariaDbReplica" ], "FullCommandName": [ "Get-AzMariaDbReplica_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -21,21 +21,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "159042b9-c434-4ba1-827f-b6961d368f6e" ], + "x-ms-request-id": [ "d027d475-21f4-404b-a507-7f5e9728127d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11902" ], - "x-ms-correlation-request-id": [ "9f79714e-6a06-432e-b1a2-f5b28a9ebdbb" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T022846Z:9f79714e-6a06-432e-b1a2-f5b28a9ebdbb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11932" ], + "x-ms-correlation-request-id": [ "68d9562a-da88-4bca-bcf0-25faec361bfb" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T182648Z:68d9562a-da88-4bca-bcf0-25faec361bfb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:28:46 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:26:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1118" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Enabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-rteafu-rep783.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:30:09.347+00:00\",\"replicationRole\":\"Replica\",\"masterServerId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-rteafu\",\"replicaCapacity\":0,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-rteafu-rep783\",\"name\":\"mariadb-test-rteafu-rep783\",\"type\":\"Microsoft.DBforMariaDB/servers\"}]}" + "Content": "{\"value\":[{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Enabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-jtnizx-rep015.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:26:07.807+00:00\",\"replicationRole\":\"Replica\",\"masterServerId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-jtnizx\",\"replicaCapacity\":0,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-jtnizx-rep015\",\"name\":\"mariadb-test-jtnizx-rep015\",\"type\":\"Microsoft.DBforMariaDB/servers\"}]}" } } } \ No newline at end of file diff --git a/src/MariaDb/test/Get-AzMariaDbServer.Recording.json b/src/MariaDb/test/Get-AzMariaDbServer.Recording.json index 422f1363f990..cbdedc3fc0b3 100644 --- a/src/MariaDb/test/Get-AzMariaDbServer.Recording.json +++ b/src/MariaDb/test/Get-AzMariaDbServer.Recording.json @@ -5,8 +5,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/servers?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "114" ], - "x-ms-client-request-id": [ "e533eb50-0a35-4d79-9756-af96ccd11aeb" ], + "x-ms-unique-id": [ "82" ], + "x-ms-client-request-id": [ "88af3b28-88f5-4236-a93b-4280e0b60b82" ], "CommandName": [ "Get-AzMariaDbServer" ], "FullCommandName": [ "Get-AzMariaDbServer_List1" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -21,31 +21,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "d838046a-fb9b-495d-a2f8-e73cd8f42933" ], + "x-ms-request-id": [ "6535f662-3647-4ae4-8266-20ba2d4bfc43" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11901" ], - "x-ms-correlation-request-id": [ "856e05d4-530f-4062-a399-dcf9eeee2f85" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T022846Z:856e05d4-530f-4062-a399-dcf9eeee2f85" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11931" ], + "x-ms-correlation-request-id": [ "f55448b3-20a6-4a20-8acc-b03e34c096be" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T182648Z:f55448b3-20a6-4a20-8acc-b03e34c096be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:28:46 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:26:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8133" ], + "Content-Length": [ "8226" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"wyunchi\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"wyunchi-0.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-10T03:53:02.013+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/wyunchi-mariadb/providers/Microsoft.DBforMariaDB/servers/wyunchi-0\",\"name\":\"wyunchi-0\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"wyunchi\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Enabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"wyunchi-1.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-14T10:10:26.097+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/wyunchi-mariadb/providers/Microsoft.DBforMariaDB/servers/wyunchi-1\",\"name\":\"wyunchi-1\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-l8ukfh.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:00:29.09+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh\",\"name\":\"mariadb-test-l8ukfh\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-zh5l7y.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:02:29.737+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y\",\"name\":\"mariadb-test-zh5l7y\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-rteafu.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:04:29.25+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-rteafu\",\"name\":\"mariadb-test-rteafu\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-plo24t.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:06:29.943+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24t\",\"name\":\"mariadb-test-plo24t\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-fluhs9.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:08:29.517+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-fluhs9\",\"name\":\"mariadb-test-fluhs9\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-l34i9w.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:10:30.867+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l34i9w\",\"name\":\"mariadb-test-l34i9w\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Enabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-rteafu-rep783.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:30:09.347+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-rteafu-rep783\",\"name\":\"mariadb-test-rteafu-rep783\",\"type\":\"Microsoft.DBforMariaDB/servers\"}]}" + "Content": "{\"value\":[{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-dbg2vt.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T10:41:23.467+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-othmdg/providers/Microsoft.DBforMariaDB/servers/mariadb-test-dbg2vt\",\"name\":\"mariadb-test-dbg2vt\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Enabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-dbg2vt-rep510.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T11:21:28.803+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-othmdg/providers/Microsoft.DBforMariaDB/servers/mariadb-test-dbg2vt-rep510\",\"name\":\"mariadb-test-dbg2vt-rep510\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-1imnpq.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:13:20.857+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq\",\"name\":\"mariadb-test-1imnpq\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-hqv3fz.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:15:28.063+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz\",\"name\":\"mariadb-test-hqv3fz\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-jtnizx.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:17:37.21+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-jtnizx\",\"name\":\"mariadb-test-jtnizx\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-mqe08f.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:18:43.773+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08f\",\"name\":\"mariadb-test-mqe08f\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-6pxo10.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:19:50.537+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-6pxo10\",\"name\":\"mariadb-test-6pxo10\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-tqye9g.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:21:57.79+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-tqye9g\",\"name\":\"mariadb-test-tqye9g\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Enabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-jtnizx-rep015.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:26:07.807+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-jtnizx-rep015\",\"name\":\"mariadb-test-jtnizx-rep015\",\"type\":\"Microsoft.DBforMariaDB/servers\"}]}" } }, - "Get-AzMariaDbServer+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh?api-version=2018-06-01-preview+1": { + "Get-AzMariaDbServer+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq?api-version=2018-06-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "115" ], - "x-ms-client-request-id": [ "49d92931-8d47-4beb-8577-e77c0814c754" ], + "x-ms-unique-id": [ "83" ], + "x-ms-client-request-id": [ "e34ba8fc-b4f6-4eec-bc4a-4e79cb5d369a" ], "CommandName": [ "Get-AzMariaDbServer" ], "FullCommandName": [ "Get-AzMariaDbServer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -60,31 +60,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "73cdfac0-5a9e-45fe-9cb5-28b9a9de6f6c" ], + "x-ms-request-id": [ "8ea24c54-bbf1-4350-bf5f-de70098f066d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11900" ], - "x-ms-correlation-request-id": [ "238bcbd8-f775-4f28-ac8c-e5f0b7d9b9d2" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T022847Z:238bcbd8-f775-4f28-ac8c-e5f0b7d9b9d2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11930" ], + "x-ms-correlation-request-id": [ "957b1110-fcde-4af9-a967-175bdd9eb22a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T182649Z:957b1110-fcde-4af9-a967-175bdd9eb22a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:28:47 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:26:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "925" ], + "Content-Length": [ "926" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-l8ukfh.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:00:29.09+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh\",\"name\":\"mariadb-test-l8ukfh\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" + "Content": "{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-1imnpq.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:13:20.857+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq\",\"name\":\"mariadb-test-1imnpq\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" } }, - "Get-AzMariaDbServer+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers?api-version=2018-06-01-preview+1": { + "Get-AzMariaDbServer+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers?api-version=2018-06-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "116" ], - "x-ms-client-request-id": [ "cda70b9d-ad15-4cc5-8bd0-2fa798da417a" ], + "x-ms-unique-id": [ "84" ], + "x-ms-client-request-id": [ "eedbc655-330c-4b7d-aca0-9d2fec3d4c1e" ], "CommandName": [ "Get-AzMariaDbServer" ], "FullCommandName": [ "Get-AzMariaDbServer_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -99,21 +99,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "a47da9bf-0c02-4c34-b7de-2c60706b4cc4" ], + "x-ms-request-id": [ "17831beb-c976-49cc-a060-f073cb463628" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11899" ], - "x-ms-correlation-request-id": [ "9fc0b5ee-876a-4f13-bd3a-4c04a8f2417f" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T022847Z:9fc0b5ee-876a-4f13-bd3a-4c04a8f2417f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11929" ], + "x-ms-correlation-request-id": [ "9f4e624c-5917-40ba-8570-f7d9acee904b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T182649Z:9f4e624c-5917-40ba-8570-f7d9acee904b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:28:47 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:26:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "6380" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-l8ukfh.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:00:29.09+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh\",\"name\":\"mariadb-test-l8ukfh\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-zh5l7y.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:02:29.737+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y\",\"name\":\"mariadb-test-zh5l7y\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-rteafu.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:04:29.25+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-rteafu\",\"name\":\"mariadb-test-rteafu\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-plo24t.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:06:29.943+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24t\",\"name\":\"mariadb-test-plo24t\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-fluhs9.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:08:29.517+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-fluhs9\",\"name\":\"mariadb-test-fluhs9\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-l34i9w.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:10:30.867+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l34i9w\",\"name\":\"mariadb-test-l34i9w\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Enabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-rteafu-rep783.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:30:09.347+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-rteafu-rep783\",\"name\":\"mariadb-test-rteafu-rep783\",\"type\":\"Microsoft.DBforMariaDB/servers\"}]}" + "Content": "{\"value\":[{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-1imnpq.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:13:20.857+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq\",\"name\":\"mariadb-test-1imnpq\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-hqv3fz.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:15:28.063+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz\",\"name\":\"mariadb-test-hqv3fz\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-jtnizx.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:17:37.21+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-jtnizx\",\"name\":\"mariadb-test-jtnizx\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-mqe08f.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:18:43.773+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08f\",\"name\":\"mariadb-test-mqe08f\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-6pxo10.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:19:50.537+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-6pxo10\",\"name\":\"mariadb-test-6pxo10\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-tqye9g.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:21:57.79+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-tqye9g\",\"name\":\"mariadb-test-tqye9g\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Enabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-jtnizx-rep015.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:26:07.807+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-jtnizx-rep015\",\"name\":\"mariadb-test-jtnizx-rep015\",\"type\":\"Microsoft.DBforMariaDB/servers\"}]}" } } } \ No newline at end of file diff --git a/src/MariaDb/test/Get-AzMariaDbVirtualNetworkRule.Recording.json b/src/MariaDb/test/Get-AzMariaDbVirtualNetworkRule.Recording.json index bea2098c2975..d7cb35362e08 100644 --- a/src/MariaDb/test/Get-AzMariaDbVirtualNetworkRule.Recording.json +++ b/src/MariaDb/test/Get-AzMariaDbVirtualNetworkRule.Recording.json @@ -1,12 +1,12 @@ { - "Get-AzMariaDbVirtualNetworkRule+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24t/virtualNetworkRules?api-version=2018-06-01-preview+1": { + "Get-AzMariaDbVirtualNetworkRule+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08f/virtualNetworkRules?api-version=2018-06-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24t/virtualNetworkRules?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08f/virtualNetworkRules?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "117" ], - "x-ms-client-request-id": [ "c18af0ff-7d3f-499e-a486-3b6bca974016" ], + "x-ms-unique-id": [ "85" ], + "x-ms-client-request-id": [ "b4346457-1bcb-4b0f-9356-6c0f1c2afd8e" ], "CommandName": [ "Get-AzMariaDbVirtualNetworkRule" ], "FullCommandName": [ "Get-AzMariaDbVirtualNetworkRule_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -21,31 +21,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "db098cfa-4381-423d-afec-f4cd07e5cd55" ], + "x-ms-request-id": [ "77a51219-cd3a-4be0-83ec-10bec02ac301" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11898" ], - "x-ms-correlation-request-id": [ "1ac26180-e840-4eaa-87f6-450bb5dbd27b" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T022848Z:1ac26180-e840-4eaa-87f6-450bb5dbd27b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11928" ], + "x-ms-correlation-request-id": [ "98f9131b-824b-4a95-9c6e-4e38c62a909e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T182650Z:98f9131b-824b-4a95-9c6e-4e38c62a909e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:28:48 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:26:49 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1073" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"properties\":{\"virtualNetworkSubnetId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subvnet-02\",\"ignoreMissingVnetServiceEndpoint\":true,\"state\":\"Ready\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24t/virtualNetworkRules/vnetrule-ETLsVU\",\"name\":\"vnetrule-ETLsVU\",\"type\":\"Microsoft.DBforMariaDB/servers/virtualNetworkRules\"},{\"properties\":{\"virtualNetworkSubnetId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subvnet-01\",\"ignoreMissingVnetServiceEndpoint\":true,\"state\":\"Ready\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24t/virtualNetworkRules/vnetrule-mTJnQk\",\"name\":\"vnetrule-mTJnQk\",\"type\":\"Microsoft.DBforMariaDB/servers/virtualNetworkRules\"}]}" + "Content": "{\"value\":[{\"properties\":{\"virtualNetworkSubnetId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subvnet-02\",\"ignoreMissingVnetServiceEndpoint\":true,\"state\":\"Ready\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08f/virtualNetworkRules/vnetrule-hocaiu\",\"name\":\"vnetrule-hocaiu\",\"type\":\"Microsoft.DBforMariaDB/servers/virtualNetworkRules\"},{\"properties\":{\"virtualNetworkSubnetId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subvnet-01\",\"ignoreMissingVnetServiceEndpoint\":true,\"state\":\"Ready\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08f/virtualNetworkRules/vnetrule-zXBYZU\",\"name\":\"vnetrule-zXBYZU\",\"type\":\"Microsoft.DBforMariaDB/servers/virtualNetworkRules\"}]}" } }, - "Get-AzMariaDbVirtualNetworkRule+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24t/virtualNetworkRules/vnetrule-mTJnQk?api-version=2018-06-01-preview+1": { + "Get-AzMariaDbVirtualNetworkRule+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08f/virtualNetworkRules/vnetrule-zXBYZU?api-version=2018-06-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24t/virtualNetworkRules/vnetrule-mTJnQk?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08f/virtualNetworkRules/vnetrule-zXBYZU?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "118" ], - "x-ms-client-request-id": [ "72e41a26-1cb5-497d-a2ea-fd2559f1e624" ], + "x-ms-unique-id": [ "86" ], + "x-ms-client-request-id": [ "0b700f1a-cb4a-4787-95f5-5378453c6c84" ], "CommandName": [ "Get-AzMariaDbVirtualNetworkRule" ], "FullCommandName": [ "Get-AzMariaDbVirtualNetworkRule_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -60,21 +60,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "9fa5afec-670e-403a-b596-3d951f5cc271" ], + "x-ms-request-id": [ "9e633d99-9398-48e9-9d3f-ab9e8bf0e95a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11897" ], - "x-ms-correlation-request-id": [ "d01307ad-94b3-466c-8f12-141af9b1f2ea" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T022848Z:d01307ad-94b3-466c-8f12-141af9b1f2ea" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11927" ], + "x-ms-correlation-request-id": [ "1452a22b-1725-4c5d-91e1-968ef5800143" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T182650Z:1452a22b-1725-4c5d-91e1-968ef5800143" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:28:48 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:26:49 GMT" ] }, "ContentHeaders": { "Content-Length": [ "530" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"properties\":{\"virtualNetworkSubnetId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subvnet-01\",\"ignoreMissingVnetServiceEndpoint\":true,\"state\":\"Ready\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24t/virtualNetworkRules/vnetrule-mTJnQk\",\"name\":\"vnetrule-mTJnQk\",\"type\":\"Microsoft.DBforMariaDB/servers/virtualNetworkRules\"}" + "Content": "{\"properties\":{\"virtualNetworkSubnetId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subvnet-01\",\"ignoreMissingVnetServiceEndpoint\":true,\"state\":\"Ready\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08f/virtualNetworkRules/vnetrule-zXBYZU\",\"name\":\"vnetrule-zXBYZU\",\"type\":\"Microsoft.DBforMariaDB/servers/virtualNetworkRules\"}" } } } \ No newline at end of file diff --git a/src/MariaDb/test/New-AzMariaDbFirewallRule.Recording.json b/src/MariaDb/test/New-AzMariaDbFirewallRule.Recording.json index 87ce97eb6d69..53889d828cf7 100644 --- a/src/MariaDb/test/New-AzMariaDbFirewallRule.Recording.json +++ b/src/MariaDb/test/New-AzMariaDbFirewallRule.Recording.json @@ -1,14 +1,14 @@ { - "New-AzMariaDbFirewallRule+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y/firewallRules/frname-001?api-version=2018-06-01-preview+1": { + "New-AzMariaDbFirewallRule+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz/firewallRules/frname-001?api-version=2018-06-01-preview+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y/firewallRules/frname-001?api-version=2018-06-01-preview", - "Content": "{\n \"properties\": {\n \"endIpAddress\": \"0.0.2.125\",\n \"startIpAddress\": \"0.0.2.1\"\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz/firewallRules/frname-001?api-version=2018-06-01-preview", + "Content": "{\r\n \"properties\": {\r\n \"endIpAddress\": \"0.0.2.125\",\r\n \"startIpAddress\": \"0.0.2.1\"\r\n }\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "90" ] + "Content-Length": [ "95" ] } }, "Response": { @@ -16,39 +16,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/9189e5b3-5958-4cb8-a6a5-3d271c65b01e?api-version=2018-06-01-preview" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/3543549b-1d19-4799-a927-9bc66cb43668?api-version=2018-06-01-preview" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/9189e5b3-5958-4cb8-a6a5-3d271c65b01e?api-version=2018-06-01-preview" ], - "x-ms-request-id": [ "9189e5b3-5958-4cb8-a6a5-3d271c65b01e" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/3543549b-1d19-4799-a927-9bc66cb43668?api-version=2018-06-01-preview" ], + "x-ms-request-id": [ "3543549b-1d19-4799-a927-9bc66cb43668" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1188" ], - "x-ms-correlation-request-id": [ "f4db4f25-a646-4e8f-ac10-3aaaa4462469" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T022850Z:f4db4f25-a646-4e8f-ac10-3aaaa4462469" ], + "x-ms-correlation-request-id": [ "d81a36fc-e587-4bcd-9f59-618706dac906" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T182652Z:d81a36fc-e587-4bcd-9f59-618706dac906" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:28:50 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:26:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "87" ], + "Content-Length": [ "86" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServerFirewallRules\",\"startTime\":\"2020-04-15T02:28:49.273Z\"}" + "Content": "{\"operation\":\"UpsertElasticServerFirewallRules\",\"startTime\":\"2020-09-23T18:26:51.13Z\"}" } }, - "New-AzMariaDbFirewallRule+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/9189e5b3-5958-4cb8-a6a5-3d271c65b01e?api-version=2018-06-01-preview+2": { + "New-AzMariaDbFirewallRule+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/3543549b-1d19-4799-a927-9bc66cb43668?api-version=2018-06-01-preview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/9189e5b3-5958-4cb8-a6a5-3d271c65b01e?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/3543549b-1d19-4799-a927-9bc66cb43668?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "119", "120" ], - "x-ms-client-request-id": [ "adba4223-8c75-4b3d-b60f-13c8a9784ae4", "adba4223-8c75-4b3d-b60f-13c8a9784ae4" ], - "CommandName": [ "New-AzMariaDbFirewallRule", "New-AzMariaDbFirewallRule" ], - "FullCommandName": [ "New-AzMariaDbFirewallRule_CreateExpanded", "New-AzMariaDbFirewallRule_CreateExpanded" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "88" ], + "x-ms-client-request-id": [ "936c70f2-6e9c-4c0d-be60-a1e6187f8128" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbFirewallRule" ], + "FullCommandName": [ "New-AzMariaDbFirewallRule_CreateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -59,36 +59,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "760c92f6-5e21-451e-9902-eaa7eeada2b2" ], + "x-ms-request-id": [ "3e6b29f2-f35c-4472-b033-e5bbfae21255" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11896" ], - "x-ms-correlation-request-id": [ "ac6a9d02-2328-4ea7-800f-3990d68f85df" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T022904Z:ac6a9d02-2328-4ea7-800f-3990d68f85df" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11926" ], + "x-ms-correlation-request-id": [ "2a42f1b6-4231-4849-b129-f52fbe71f42e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T182707Z:2a42f1b6-4231-4849-b129-f52fbe71f42e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:29:04 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:27:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "106" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"9189e5b3-5958-4cb8-a6a5-3d271c65b01e\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-15T02:28:49.273Z\"}" + "Content": "{\"name\":\"3543549b-1d19-4799-a927-9bc66cb43668\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-23T18:26:51.13Z\"}" } }, - "New-AzMariaDbFirewallRule+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y/firewallRules/frname-001?api-version=2018-06-01-preview+3": { + "New-AzMariaDbFirewallRule+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz/firewallRules/frname-001?api-version=2018-06-01-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y/firewallRules/frname-001?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz/firewallRules/frname-001?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "119", "120", "121" ], - "x-ms-client-request-id": [ "adba4223-8c75-4b3d-b60f-13c8a9784ae4", "adba4223-8c75-4b3d-b60f-13c8a9784ae4", "adba4223-8c75-4b3d-b60f-13c8a9784ae4" ], - "CommandName": [ "New-AzMariaDbFirewallRule", "New-AzMariaDbFirewallRule", "New-AzMariaDbFirewallRule" ], - "FullCommandName": [ "New-AzMariaDbFirewallRule_CreateExpanded", "New-AzMariaDbFirewallRule_CreateExpanded", "New-AzMariaDbFirewallRule_CreateExpanded" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "89" ], + "x-ms-client-request-id": [ "936c70f2-6e9c-4c0d-be60-a1e6187f8128" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbFirewallRule" ], + "FullCommandName": [ "New-AzMariaDbFirewallRule_CreateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -98,31 +98,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "b62dfb8b-8403-49f9-9de3-4cc69bd72b8f" ], + "x-ms-request-id": [ "e73ae7c6-1287-4396-876b-c02d7f903269" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11895" ], - "x-ms-correlation-request-id": [ "def3afab-6716-4d49-9aaf-b688bb271205" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T022905Z:def3afab-6716-4d49-9aaf-b688bb271205" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11925" ], + "x-ms-correlation-request-id": [ "2ed03955-35ca-4ff2-a470-5097ca8f3c20" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T182708Z:2ed03955-35ca-4ff2-a470-5097ca8f3c20" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:29:04 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:27:08 GMT" ] }, "ContentHeaders": { "Content-Length": [ "324" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"properties\":{\"startIpAddress\":\"0.0.2.1\",\"endIpAddress\":\"0.0.2.125\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y/firewallRules/frname-001\",\"name\":\"frname-001\",\"type\":\"Microsoft.DBforMariaDB/servers/firewallRules\"}" + "Content": "{\"properties\":{\"startIpAddress\":\"0.0.2.1\",\"endIpAddress\":\"0.0.2.125\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz/firewallRules/frname-001\",\"name\":\"frname-001\",\"type\":\"Microsoft.DBforMariaDB/servers/firewallRules\"}" } }, - "New-AzMariaDbFirewallRule+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y/firewallRules/frname-001?api-version=2018-06-01-preview+4": { + "New-AzMariaDbFirewallRule+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz/firewallRules/frname-001?api-version=2018-06-01-preview+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y/firewallRules/frname-001?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz/firewallRules/frname-001?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "122" ], - "x-ms-client-request-id": [ "83f087b1-3e31-4cdb-9bc7-4fb311fc7e2e" ], + "x-ms-unique-id": [ "90" ], + "x-ms-client-request-id": [ "83817801-fb61-4180-a60b-cd4ec066134a" ], "CommandName": [ "Get-AzMariaDbFirewallRule" ], "FullCommandName": [ "Get-AzMariaDbFirewallRule_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -137,21 +137,493 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "891c986d-2298-44d8-b928-67c0801eeaed" ], + "x-ms-request-id": [ "dac271da-2572-4a33-b260-dd58d5c1b24a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11894" ], - "x-ms-correlation-request-id": [ "8ea3df3f-9da9-4002-bd5b-21c13f936869" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T022905Z:8ea3df3f-9da9-4002-bd5b-21c13f936869" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11924" ], + "x-ms-correlation-request-id": [ "4f41c7fd-00ba-4f15-aba2-1efb4eb360a7" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T182708Z:4f41c7fd-00ba-4f15-aba2-1efb4eb360a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:29:05 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:27:08 GMT" ] }, "ContentHeaders": { "Content-Length": [ "324" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"properties\":{\"startIpAddress\":\"0.0.2.1\",\"endIpAddress\":\"0.0.2.125\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y/firewallRules/frname-001\",\"name\":\"frname-001\",\"type\":\"Microsoft.DBforMariaDB/servers/firewallRules\"}" + "Content": "{\"properties\":{\"startIpAddress\":\"0.0.2.1\",\"endIpAddress\":\"0.0.2.125\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz/firewallRules/frname-001\",\"name\":\"frname-001\",\"type\":\"Microsoft.DBforMariaDB/servers/firewallRules\"}" + } + }, + "New-AzMariaDbFirewallRule+[NoContext]+ClientIPAddress+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz/firewallRules/frname-002?api-version=2018-06-01-preview+1": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz/firewallRules/frname-002?api-version=2018-06-01-preview", + "Content": "{\r\n \"properties\": {\r\n \"endIpAddress\": \"0.0.0.1\",\r\n \"startIpAddress\": \"0.0.0.1\"\r\n }\r\n}", + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "93" ] + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/504cf1e8-7bf4-4f57-96ba-4fdb8ad02157?api-version=2018-06-01-preview" ], + "Retry-After": [ "15" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/504cf1e8-7bf4-4f57-96ba-4fdb8ad02157?api-version=2018-06-01-preview" ], + "x-ms-request-id": [ "504cf1e8-7bf4-4f57-96ba-4fdb8ad02157" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1187" ], + "x-ms-correlation-request-id": [ "ba716c75-d694-4d3b-ba4a-2294d0ba039c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T182710Z:ba716c75-d694-4d3b-ba4a-2294d0ba039c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:27:10 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "87" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"operation\":\"UpsertElasticServerFirewallRules\",\"startTime\":\"2020-09-23T18:27:08.987Z\"}" + } + }, + "New-AzMariaDbFirewallRule+[NoContext]+ClientIPAddress+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/504cf1e8-7bf4-4f57-96ba-4fdb8ad02157?api-version=2018-06-01-preview+2": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/504cf1e8-7bf4-4f57-96ba-4fdb8ad02157?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "92" ], + "x-ms-client-request-id": [ "070c2e10-01d4-4475-a12d-6a77e14c22e3" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbFirewallRule" ], + "FullCommandName": [ "New-AzMariaDbFirewallRule_CreateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "15" ], + "x-ms-request-id": [ "93de8029-e90f-4f6f-be8a-78da73dfc726" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11923" ], + "x-ms-correlation-request-id": [ "7223ebbb-793c-49fc-8ad2-f74bd1bc6da0" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T182725Z:7223ebbb-793c-49fc-8ad2-f74bd1bc6da0" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:27:25 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "107" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"504cf1e8-7bf4-4f57-96ba-4fdb8ad02157\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-23T18:27:08.987Z\"}" + } + }, + "New-AzMariaDbFirewallRule+[NoContext]+ClientIPAddress+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz/firewallRules/frname-002?api-version=2018-06-01-preview+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz/firewallRules/frname-002?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "93" ], + "x-ms-client-request-id": [ "070c2e10-01d4-4475-a12d-6a77e14c22e3" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbFirewallRule" ], + "FullCommandName": [ "New-AzMariaDbFirewallRule_CreateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "5deb3d02-44a4-42ec-8d3a-1531d6c084a0" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11922" ], + "x-ms-correlation-request-id": [ "458d4f31-55f5-49b9-8c3b-44552c75178f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T182726Z:458d4f31-55f5-49b9-8c3b-44552c75178f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:27:25 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "322" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"properties\":{\"startIpAddress\":\"0.0.0.1\",\"endIpAddress\":\"0.0.0.1\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz/firewallRules/frname-002\",\"name\":\"frname-002\",\"type\":\"Microsoft.DBforMariaDB/servers/firewallRules\"}" + } + }, + "New-AzMariaDbFirewallRule+[NoContext]+ClientIPAddress+$DELETE+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz/firewallRules/frname-002?api-version=2018-06-01-preview+4": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz/firewallRules/frname-002?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "94" ], + "x-ms-client-request-id": [ "dfecb0fd-0ba4-4c26-bfa5-3d6f54b4fd81" ], + "CommandName": [ "Remove-AzMariaDbFirewallRule" ], + "FullCommandName": [ "Remove-AzMariaDbFirewallRule_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/8b89c44b-db82-42b3-b384-d08a3f53f950?api-version=2018-06-01-preview" ], + "Retry-After": [ "15" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8b89c44b-db82-42b3-b384-d08a3f53f950?api-version=2018-06-01-preview" ], + "x-ms-request-id": [ "8b89c44b-db82-42b3-b384-d08a3f53f950" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], + "x-ms-correlation-request-id": [ "c1f7f5a5-d1d6-48cb-8660-a326fd5d6d2a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T182727Z:c1f7f5a5-d1d6-48cb-8660-a326fd5d6d2a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:27:27 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "84" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"operation\":\"DropElasticServerFirewallRule\",\"startTime\":\"2020-09-23T18:27:26.317Z\"}" + } + }, + "New-AzMariaDbFirewallRule+[NoContext]+ClientIPAddress+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8b89c44b-db82-42b3-b384-d08a3f53f950?api-version=2018-06-01-preview+5": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8b89c44b-db82-42b3-b384-d08a3f53f950?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "95" ], + "x-ms-client-request-id": [ "dfecb0fd-0ba4-4c26-bfa5-3d6f54b4fd81" ], + "CommandName": [ "Remove-AzMariaDbFirewallRule" ], + "FullCommandName": [ "Remove-AzMariaDbFirewallRule_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "15" ], + "x-ms-request-id": [ "52288d6c-173b-496f-b785-f94444a0a796" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11921" ], + "x-ms-correlation-request-id": [ "b040ff96-2cba-4561-8f00-054dcd771cc9" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T182742Z:b040ff96-2cba-4561-8f00-054dcd771cc9" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:27:42 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "107" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"8b89c44b-db82-42b3-b384-d08a3f53f950\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-23T18:27:26.317Z\"}" + } + }, + "New-AzMariaDbFirewallRule+[NoContext]+ClientIPAddress+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/8b89c44b-db82-42b3-b384-d08a3f53f950?api-version=2018-06-01-preview+6": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/8b89c44b-db82-42b3-b384-d08a3f53f950?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "96" ], + "x-ms-client-request-id": [ "dfecb0fd-0ba4-4c26-bfa5-3d6f54b4fd81" ], + "CommandName": [ "Remove-AzMariaDbFirewallRule" ], + "FullCommandName": [ "Remove-AzMariaDbFirewallRule_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "4b6e264d-5461-47ba-9ec1-8735619812ee" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11920" ], + "x-ms-correlation-request-id": [ "adeb1d0e-0dea-41a0-a1c6-504911b121c7" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T182743Z:adeb1d0e-0dea-41a0-a1c6-504911b121c7" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:27:42 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "New-AzMariaDbFirewallRule+[NoContext]+AllowAll+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz/firewallRules/AllowAll_2020-08-11_21-28-19?api-version=2018-06-01-preview+1": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz/firewallRules/AllowAll_2020-08-11_21-28-19?api-version=2018-06-01-preview", + "Content": "{\r\n \"properties\": {\r\n \"endIpAddress\": \"255.255.255.255\",\r\n \"startIpAddress\": \"0.0.0.0\"\r\n }\r\n}", + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "101" ] + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/c364cf96-db5f-4502-981e-50b782a1366a?api-version=2018-06-01-preview" ], + "Retry-After": [ "15" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/c364cf96-db5f-4502-981e-50b782a1366a?api-version=2018-06-01-preview" ], + "x-ms-request-id": [ "c364cf96-db5f-4502-981e-50b782a1366a" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1186" ], + "x-ms-correlation-request-id": [ "58082248-43d9-4436-a76d-ca94c224fd46" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T182744Z:58082248-43d9-4436-a76d-ca94c224fd46" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:27:44 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "86" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"operation\":\"UpsertElasticServerFirewallRules\",\"startTime\":\"2020-09-23T18:27:43.49Z\"}" + } + }, + "New-AzMariaDbFirewallRule+[NoContext]+AllowAll+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/c364cf96-db5f-4502-981e-50b782a1366a?api-version=2018-06-01-preview+2": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/c364cf96-db5f-4502-981e-50b782a1366a?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "98" ], + "x-ms-client-request-id": [ "3d9971cf-2a57-4b03-a0bb-99c717266172" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbFirewallRule" ], + "FullCommandName": [ "New-AzMariaDbFirewallRule_CreateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "15" ], + "x-ms-request-id": [ "e7cf5d0e-6e2d-47c4-ab41-582f9b7a2fad" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11919" ], + "x-ms-correlation-request-id": [ "bcb07fe9-9393-4fbd-954f-5a833811294c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T182800Z:bcb07fe9-9393-4fbd-954f-5a833811294c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:27:59 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "106" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"c364cf96-db5f-4502-981e-50b782a1366a\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-23T18:27:43.49Z\"}" + } + }, + "New-AzMariaDbFirewallRule+[NoContext]+AllowAll+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz/firewallRules/AllowAll_2020-08-11_21-28-19?api-version=2018-06-01-preview+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz/firewallRules/AllowAll_2020-08-11_21-28-19?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "99" ], + "x-ms-client-request-id": [ "3d9971cf-2a57-4b03-a0bb-99c717266172" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbFirewallRule" ], + "FullCommandName": [ "New-AzMariaDbFirewallRule_CreateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "6b4268f6-8af2-4e6d-b623-e0552020951b" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11918" ], + "x-ms-correlation-request-id": [ "296340c5-2c69-4819-a244-4a7303e0022d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T182800Z:296340c5-2c69-4819-a244-4a7303e0022d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:28:00 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "366" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"properties\":{\"startIpAddress\":\"0.0.0.0\",\"endIpAddress\":\"255.255.255.255\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz/firewallRules/AllowAll_2020-08-11_21-28-19\",\"name\":\"AllowAll_2020-08-11_21-28-19\",\"type\":\"Microsoft.DBforMariaDB/servers/firewallRules\"}" + } + }, + "New-AzMariaDbFirewallRule+[NoContext]+AllowAll+$DELETE+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz/firewallRules/AllowAll_2020-08-11_21-28-19?api-version=2018-06-01-preview+4": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz/firewallRules/AllowAll_2020-08-11_21-28-19?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "100" ], + "x-ms-client-request-id": [ "d19f4ff3-f188-4ebf-85d0-69b5e80c5ae0" ], + "CommandName": [ "Remove-AzMariaDbFirewallRule" ], + "FullCommandName": [ "Remove-AzMariaDbFirewallRule_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/b0aa1c7d-55d0-4105-83dd-f41e23d1cdb3?api-version=2018-06-01-preview" ], + "Retry-After": [ "15" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/b0aa1c7d-55d0-4105-83dd-f41e23d1cdb3?api-version=2018-06-01-preview" ], + "x-ms-request-id": [ "b0aa1c7d-55d0-4105-83dd-f41e23d1cdb3" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], + "x-ms-correlation-request-id": [ "20acc2f4-0907-47fe-af69-3d977305c03c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T182801Z:20acc2f4-0907-47fe-af69-3d977305c03c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:28:01 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "84" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"operation\":\"DropElasticServerFirewallRule\",\"startTime\":\"2020-09-23T18:28:00.787Z\"}" + } + }, + "New-AzMariaDbFirewallRule+[NoContext]+AllowAll+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/b0aa1c7d-55d0-4105-83dd-f41e23d1cdb3?api-version=2018-06-01-preview+5": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/b0aa1c7d-55d0-4105-83dd-f41e23d1cdb3?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "101" ], + "x-ms-client-request-id": [ "d19f4ff3-f188-4ebf-85d0-69b5e80c5ae0" ], + "CommandName": [ "Remove-AzMariaDbFirewallRule" ], + "FullCommandName": [ "Remove-AzMariaDbFirewallRule_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "15" ], + "x-ms-request-id": [ "a34296bd-4a0b-466b-a6b3-cdf27f3ec6cc" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11917" ], + "x-ms-correlation-request-id": [ "c14c3552-f8ce-4418-9f14-6eb5612c8c81" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T182817Z:c14c3552-f8ce-4418-9f14-6eb5612c8c81" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:28:16 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "107" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"b0aa1c7d-55d0-4105-83dd-f41e23d1cdb3\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-23T18:28:00.787Z\"}" + } + }, + "New-AzMariaDbFirewallRule+[NoContext]+AllowAll+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/b0aa1c7d-55d0-4105-83dd-f41e23d1cdb3?api-version=2018-06-01-preview+6": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/b0aa1c7d-55d0-4105-83dd-f41e23d1cdb3?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "102" ], + "x-ms-client-request-id": [ "d19f4ff3-f188-4ebf-85d0-69b5e80c5ae0" ], + "CommandName": [ "Remove-AzMariaDbFirewallRule" ], + "FullCommandName": [ "Remove-AzMariaDbFirewallRule_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "3f35381e-5d9d-49b4-b601-a9f43a27e63c" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11916" ], + "x-ms-correlation-request-id": [ "34494ecf-63a9-40e2-a0f9-9345d87a7549" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T182817Z:34494ecf-63a9-40e2-a0f9-9345d87a7549" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:28:17 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null } } } \ No newline at end of file diff --git a/src/MariaDb/test/New-AzMariaDbFirewallRule.Tests.ps1 b/src/MariaDb/test/New-AzMariaDbFirewallRule.Tests.ps1 index c6302ea68064..10474b60a444 100644 --- a/src/MariaDb/test/New-AzMariaDbFirewallRule.Tests.ps1 +++ b/src/MariaDb/test/New-AzMariaDbFirewallRule.Tests.ps1 @@ -21,4 +21,22 @@ Describe 'New-AzMariaDbFirewallRule' { $mariaDbFirewall = Get-AzMariaDbFirewallRule -Name $firewallName -ResourceGroupName $env.ResourceGroup -ServerName $env.rstrbc02 $mariaDbFirewall.Name | Should -Be $firewallName } + + It 'ClientIPAddress' { + $firewallName = 'frname-002' + $rule = New-AzMariaDbFirewallRule -Name $firewallName -ResourceGroupName $env.resourceGroup -ServerName $env.rstrbc02 -ClientIPAddress 0.0.0.1 + $rule.Name | Should -Be $firewallName + $rule.StartIPAddress | Should -Be 0.0.0.1 + $rule.EndIPAddress | Should -Be 0.0.0.1 + Remove-AzMariaDbFirewallRule -Name $firewallName -ResourceGroupName $env.resourceGroup -ServerName $env.rstrbc02 + } + + It 'AllowAll' { + $allowAllName = 'AllowAll_2020-08-11_21-28-19' + $rule = New-AzMariaDbFirewallRule -Name $allowAllName -ResourceGroupName $env.resourceGroup -ServerName $env.rstrbc02 -AllowAll + $rule.Name | Should -Be $allowAllName + $rule.StartIPAddress | Should -Be 0.0.0.0 + $rule.EndIPAddress | Should -Be 255.255.255.255 + Remove-AzMariaDbFirewallRule -Name $rule.Name -ResourceGroupName $env.resourceGroup -ServerName $env.rstrbc02 + } } diff --git a/src/MariaDb/test/New-AzMariaDbReplica.Recording.json b/src/MariaDb/test/New-AzMariaDbReplica.Recording.json new file mode 100644 index 000000000000..0300d4721e2e --- /dev/null +++ b/src/MariaDb/test/New-AzMariaDbReplica.Recording.json @@ -0,0 +1,1910 @@ +{ + "New-AzMariaDbReplica+[NoContext]+ServerName+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08f?api-version=2018-06-01-preview+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08f?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "103" ], + "x-ms-client-request-id": [ "caea28e0-7de9-445a-9cde-9641ddd5d11e" ], + "CommandName": [ "Get-AzMariaDbServer" ], + "FullCommandName": [ "Get-AzMariaDbServer_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "474c7ce1-525d-4c55-ae45-794fe9b16013" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11915" ], + "x-ms-correlation-request-id": [ "c8522531-20f6-46b3-ac70-2b6dde2ce758" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T182818Z:c8522531-20f6-46b3-ac70-2b6dde2ce758" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:28:17 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "936" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-mqe08f.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:18:43.773+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08f\",\"name\":\"mariadb-test-mqe08f\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" + } + }, + "New-AzMariaDbReplica+[NoContext]+ServerName+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-8ce260?api-version=2018-06-01-preview+2": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-8ce260?api-version=2018-06-01-preview", + "Content": "{\r\n \"properties\": {\r\n \"createMode\": \"Replica\",\r\n \"sourceServerId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08f\"\r\n },\r\n \"location\": \"eastus\"\r\n}", + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "256" ] + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/e72f4db7-b47a-4264-8e59-8bd4b35c65ce?api-version=2018-06-01-preview" ], + "Retry-After": [ "30" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e72f4db7-b47a-4264-8e59-8bd4b35c65ce?api-version=2018-06-01-preview" ], + "x-ms-request-id": [ "e72f4db7-b47a-4264-8e59-8bd4b35c65ce" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1185" ], + "x-ms-correlation-request-id": [ "fa8904a6-31a7-40a2-8d5d-28c0b18dd20f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T182824Z:fa8904a6-31a7-40a2-8d5d-28c0b18dd20f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:28:23 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "88" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"operation\":\"CreateElasticServerContinuousCopy\",\"startTime\":\"2020-09-23T18:28:24.253Z\"}" + } + }, + "New-AzMariaDbReplica+[NoContext]+ServerName+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e72f4db7-b47a-4264-8e59-8bd4b35c65ce?api-version=2018-06-01-preview+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e72f4db7-b47a-4264-8e59-8bd4b35c65ce?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "105" ], + "x-ms-client-request-id": [ "d0cf8103-4571-4a17-98bb-0c16f2e7c570" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "d6457352-e826-4ea1-8b0d-c2154aafd63e" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11914" ], + "x-ms-correlation-request-id": [ "9b07171e-9816-4417-b021-4bcd29089fc3" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T182854Z:9b07171e-9816-4417-b021-4bcd29089fc3" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:28:54 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"e72f4db7-b47a-4264-8e59-8bd4b35c65ce\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:28:24.253Z\"}" + } + }, + "New-AzMariaDbReplica+[NoContext]+ServerName+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e72f4db7-b47a-4264-8e59-8bd4b35c65ce?api-version=2018-06-01-preview+4": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e72f4db7-b47a-4264-8e59-8bd4b35c65ce?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "106" ], + "x-ms-client-request-id": [ "d0cf8103-4571-4a17-98bb-0c16f2e7c570" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "ef0432c9-3343-4cbe-a7c0-1da69ca5653c" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11913" ], + "x-ms-correlation-request-id": [ "1a579c33-b16e-4ab5-a718-de8a659b85d7" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T182925Z:1a579c33-b16e-4ab5-a718-de8a659b85d7" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:29:24 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"e72f4db7-b47a-4264-8e59-8bd4b35c65ce\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:28:24.253Z\"}" + } + }, + "New-AzMariaDbReplica+[NoContext]+ServerName+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e72f4db7-b47a-4264-8e59-8bd4b35c65ce?api-version=2018-06-01-preview+5": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e72f4db7-b47a-4264-8e59-8bd4b35c65ce?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "107" ], + "x-ms-client-request-id": [ "d0cf8103-4571-4a17-98bb-0c16f2e7c570" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "d07ab451-201f-4baf-b455-6ea3c5b169c7" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11912" ], + "x-ms-correlation-request-id": [ "50b66b98-a809-490a-8091-bc42a5723ac0" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T182955Z:50b66b98-a809-490a-8091-bc42a5723ac0" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:29:55 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"e72f4db7-b47a-4264-8e59-8bd4b35c65ce\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:28:24.253Z\"}" + } + }, + "New-AzMariaDbReplica+[NoContext]+ServerName+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e72f4db7-b47a-4264-8e59-8bd4b35c65ce?api-version=2018-06-01-preview+6": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e72f4db7-b47a-4264-8e59-8bd4b35c65ce?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "108" ], + "x-ms-client-request-id": [ "d0cf8103-4571-4a17-98bb-0c16f2e7c570" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "eadc6b15-9a0f-4102-b463-5534f006f5bd" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11911" ], + "x-ms-correlation-request-id": [ "3bb95abc-3709-430a-8a58-2f52d8b8e11d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T183025Z:3bb95abc-3709-430a-8a58-2f52d8b8e11d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:30:25 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"e72f4db7-b47a-4264-8e59-8bd4b35c65ce\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:28:24.253Z\"}" + } + }, + "New-AzMariaDbReplica+[NoContext]+ServerName+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e72f4db7-b47a-4264-8e59-8bd4b35c65ce?api-version=2018-06-01-preview+7": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e72f4db7-b47a-4264-8e59-8bd4b35c65ce?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "109" ], + "x-ms-client-request-id": [ "d0cf8103-4571-4a17-98bb-0c16f2e7c570" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "fbf77de0-562c-4e87-a2a4-b05fad426443" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11910" ], + "x-ms-correlation-request-id": [ "9f20948e-a564-48f5-9680-6f1398509654" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T183056Z:9f20948e-a564-48f5-9680-6f1398509654" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:30:56 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"e72f4db7-b47a-4264-8e59-8bd4b35c65ce\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:28:24.253Z\"}" + } + }, + "New-AzMariaDbReplica+[NoContext]+ServerName+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e72f4db7-b47a-4264-8e59-8bd4b35c65ce?api-version=2018-06-01-preview+8": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e72f4db7-b47a-4264-8e59-8bd4b35c65ce?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "110" ], + "x-ms-client-request-id": [ "d0cf8103-4571-4a17-98bb-0c16f2e7c570" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "9460c2cd-1d21-4eea-8834-13bc975d4a87" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11909" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-correlation-request-id": [ "23fa4081-6764-429b-b9fe-eefb90799729" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T183128Z:23fa4081-6764-429b-b9fe-eefb90799729" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:31:27 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"e72f4db7-b47a-4264-8e59-8bd4b35c65ce\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:28:24.253Z\"}" + } + }, + "New-AzMariaDbReplica+[NoContext]+ServerName+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e72f4db7-b47a-4264-8e59-8bd4b35c65ce?api-version=2018-06-01-preview+9": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e72f4db7-b47a-4264-8e59-8bd4b35c65ce?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "111" ], + "x-ms-client-request-id": [ "d0cf8103-4571-4a17-98bb-0c16f2e7c570" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "9af7c41b-4549-4e97-ba21-c29e7083c50b" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11908" ], + "x-ms-correlation-request-id": [ "a633997d-38dc-4ad2-b6c5-49d2a5729164" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T183159Z:a633997d-38dc-4ad2-b6c5-49d2a5729164" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:31:58 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"e72f4db7-b47a-4264-8e59-8bd4b35c65ce\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:28:24.253Z\"}" + } + }, + "New-AzMariaDbReplica+[NoContext]+ServerName+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e72f4db7-b47a-4264-8e59-8bd4b35c65ce?api-version=2018-06-01-preview+10": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e72f4db7-b47a-4264-8e59-8bd4b35c65ce?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "112" ], + "x-ms-client-request-id": [ "d0cf8103-4571-4a17-98bb-0c16f2e7c570" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "d3d92aa3-51ad-4fa7-a5df-c267f1d73e81" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11907" ], + "x-ms-correlation-request-id": [ "40f14f71-bf4a-4af7-8aff-9d8e8183bfe4" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T183229Z:40f14f71-bf4a-4af7-8aff-9d8e8183bfe4" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:32:28 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"e72f4db7-b47a-4264-8e59-8bd4b35c65ce\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:28:24.253Z\"}" + } + }, + "New-AzMariaDbReplica+[NoContext]+ServerName+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e72f4db7-b47a-4264-8e59-8bd4b35c65ce?api-version=2018-06-01-preview+11": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e72f4db7-b47a-4264-8e59-8bd4b35c65ce?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "113" ], + "x-ms-client-request-id": [ "d0cf8103-4571-4a17-98bb-0c16f2e7c570" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "3db72810-46e8-427f-bd8f-466581a354a5" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11906" ], + "x-ms-correlation-request-id": [ "eba589d8-971f-47f6-8667-314e12da5233" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T183259Z:eba589d8-971f-47f6-8667-314e12da5233" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:32:58 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"e72f4db7-b47a-4264-8e59-8bd4b35c65ce\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:28:24.253Z\"}" + } + }, + "New-AzMariaDbReplica+[NoContext]+ServerName+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e72f4db7-b47a-4264-8e59-8bd4b35c65ce?api-version=2018-06-01-preview+12": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e72f4db7-b47a-4264-8e59-8bd4b35c65ce?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "114" ], + "x-ms-client-request-id": [ "d0cf8103-4571-4a17-98bb-0c16f2e7c570" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "c1a3c945-32ce-4365-9894-33719b5d6248" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11905" ], + "x-ms-correlation-request-id": [ "20c66d63-7e87-4283-bf7d-b78ff9d4ab6d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T183330Z:20c66d63-7e87-4283-bf7d-b78ff9d4ab6d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:33:30 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"e72f4db7-b47a-4264-8e59-8bd4b35c65ce\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:28:24.253Z\"}" + } + }, + "New-AzMariaDbReplica+[NoContext]+ServerName+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e72f4db7-b47a-4264-8e59-8bd4b35c65ce?api-version=2018-06-01-preview+13": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e72f4db7-b47a-4264-8e59-8bd4b35c65ce?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "115" ], + "x-ms-client-request-id": [ "d0cf8103-4571-4a17-98bb-0c16f2e7c570" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "2f04eb8a-651b-4d30-a194-dad8ce174aab" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11904" ], + "x-ms-correlation-request-id": [ "07593127-7ed8-43a8-ab19-20e321055209" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T183400Z:07593127-7ed8-43a8-ab19-20e321055209" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:34:00 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"e72f4db7-b47a-4264-8e59-8bd4b35c65ce\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:28:24.253Z\"}" + } + }, + "New-AzMariaDbReplica+[NoContext]+ServerName+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e72f4db7-b47a-4264-8e59-8bd4b35c65ce?api-version=2018-06-01-preview+14": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e72f4db7-b47a-4264-8e59-8bd4b35c65ce?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "116" ], + "x-ms-client-request-id": [ "d0cf8103-4571-4a17-98bb-0c16f2e7c570" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "e3673780-8fb9-43f5-a71c-2ea592240012" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11903" ], + "x-ms-correlation-request-id": [ "bd6ac483-6ad4-45e1-ad7a-0489610d9745" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T183430Z:bd6ac483-6ad4-45e1-ad7a-0489610d9745" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:34:30 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"e72f4db7-b47a-4264-8e59-8bd4b35c65ce\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:28:24.253Z\"}" + } + }, + "New-AzMariaDbReplica+[NoContext]+ServerName+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e72f4db7-b47a-4264-8e59-8bd4b35c65ce?api-version=2018-06-01-preview+15": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e72f4db7-b47a-4264-8e59-8bd4b35c65ce?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "117" ], + "x-ms-client-request-id": [ "d0cf8103-4571-4a17-98bb-0c16f2e7c570" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "282e27ca-2615-42b9-a1b0-eec441c0c557" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11902" ], + "x-ms-correlation-request-id": [ "b6b75b10-2295-438e-87d6-c9a43ced8cda" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T183501Z:b6b75b10-2295-438e-87d6-c9a43ced8cda" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:35:00 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"e72f4db7-b47a-4264-8e59-8bd4b35c65ce\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:28:24.253Z\"}" + } + }, + "New-AzMariaDbReplica+[NoContext]+ServerName+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e72f4db7-b47a-4264-8e59-8bd4b35c65ce?api-version=2018-06-01-preview+16": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e72f4db7-b47a-4264-8e59-8bd4b35c65ce?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "118" ], + "x-ms-client-request-id": [ "d0cf8103-4571-4a17-98bb-0c16f2e7c570" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "259eddda-33fd-4a9b-a1dc-11677946222f" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11901" ], + "x-ms-correlation-request-id": [ "264bd8f3-eb42-4cb5-8811-23c72969542e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T183531Z:264bd8f3-eb42-4cb5-8811-23c72969542e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:35:31 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"e72f4db7-b47a-4264-8e59-8bd4b35c65ce\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:28:24.253Z\"}" + } + }, + "New-AzMariaDbReplica+[NoContext]+ServerName+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e72f4db7-b47a-4264-8e59-8bd4b35c65ce?api-version=2018-06-01-preview+17": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e72f4db7-b47a-4264-8e59-8bd4b35c65ce?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "119" ], + "x-ms-client-request-id": [ "d0cf8103-4571-4a17-98bb-0c16f2e7c570" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "c5da9b70-a859-430f-9baa-bf7374097861" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11900" ], + "x-ms-correlation-request-id": [ "29145911-12d4-445d-83ae-e0433cc8bb5b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T183601Z:29145911-12d4-445d-83ae-e0433cc8bb5b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:36:01 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"e72f4db7-b47a-4264-8e59-8bd4b35c65ce\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:28:24.253Z\"}" + } + }, + "New-AzMariaDbReplica+[NoContext]+ServerName+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e72f4db7-b47a-4264-8e59-8bd4b35c65ce?api-version=2018-06-01-preview+18": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e72f4db7-b47a-4264-8e59-8bd4b35c65ce?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "120" ], + "x-ms-client-request-id": [ "d0cf8103-4571-4a17-98bb-0c16f2e7c570" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "09c36813-343e-4112-815e-9b0dec281ab7" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11899" ], + "x-ms-correlation-request-id": [ "1fe5a058-aeda-4916-8652-b9f5f156ee74" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T183632Z:1fe5a058-aeda-4916-8652-b9f5f156ee74" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:36:32 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"e72f4db7-b47a-4264-8e59-8bd4b35c65ce\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:28:24.253Z\"}" + } + }, + "New-AzMariaDbReplica+[NoContext]+ServerName+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e72f4db7-b47a-4264-8e59-8bd4b35c65ce?api-version=2018-06-01-preview+19": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e72f4db7-b47a-4264-8e59-8bd4b35c65ce?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "121" ], + "x-ms-client-request-id": [ "d0cf8103-4571-4a17-98bb-0c16f2e7c570" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "bf2d9d54-214c-4461-9d7b-cab45d5eb7a6" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11898" ], + "x-ms-correlation-request-id": [ "3dc853d3-8a1f-4701-bcf1-0001de7d4d38" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T183703Z:3dc853d3-8a1f-4701-bcf1-0001de7d4d38" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:37:02 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"e72f4db7-b47a-4264-8e59-8bd4b35c65ce\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:28:24.253Z\"}" + } + }, + "New-AzMariaDbReplica+[NoContext]+ServerName+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e72f4db7-b47a-4264-8e59-8bd4b35c65ce?api-version=2018-06-01-preview+20": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e72f4db7-b47a-4264-8e59-8bd4b35c65ce?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "122" ], + "x-ms-client-request-id": [ "d0cf8103-4571-4a17-98bb-0c16f2e7c570" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "c2898d60-c03e-48e5-83d5-ea040f2db358" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11897" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-correlation-request-id": [ "43404bdd-170f-4111-8b54-5141ce4a5af4" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T183733Z:43404bdd-170f-4111-8b54-5141ce4a5af4" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:37:33 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"e72f4db7-b47a-4264-8e59-8bd4b35c65ce\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:28:24.253Z\"}" + } + }, + "New-AzMariaDbReplica+[NoContext]+ServerName+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e72f4db7-b47a-4264-8e59-8bd4b35c65ce?api-version=2018-06-01-preview+21": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e72f4db7-b47a-4264-8e59-8bd4b35c65ce?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "123" ], + "x-ms-client-request-id": [ "d0cf8103-4571-4a17-98bb-0c16f2e7c570" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "cb0d0548-64ef-4c16-b306-61ada4555951" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11896" ], + "x-ms-correlation-request-id": [ "dd9fa634-7991-4680-a508-aecec9d3ae98" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T183803Z:dd9fa634-7991-4680-a508-aecec9d3ae98" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:38:03 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"e72f4db7-b47a-4264-8e59-8bd4b35c65ce\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:28:24.253Z\"}" + } + }, + "New-AzMariaDbReplica+[NoContext]+ServerName+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e72f4db7-b47a-4264-8e59-8bd4b35c65ce?api-version=2018-06-01-preview+22": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e72f4db7-b47a-4264-8e59-8bd4b35c65ce?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "124" ], + "x-ms-client-request-id": [ "d0cf8103-4571-4a17-98bb-0c16f2e7c570" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "5ab55fdf-f7ec-4e33-affe-bb400e552144" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11895" ], + "x-ms-correlation-request-id": [ "31cb74e0-b022-4eff-b422-8df2fcd4f95e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T183834Z:31cb74e0-b022-4eff-b422-8df2fcd4f95e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:38:33 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "107" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"e72f4db7-b47a-4264-8e59-8bd4b35c65ce\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-23T18:28:24.253Z\"}" + } + }, + "New-AzMariaDbReplica+[NoContext]+ServerName+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-8ce260?api-version=2018-06-01-preview+23": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-8ce260?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "125" ], + "x-ms-client-request-id": [ "d0cf8103-4571-4a17-98bb-0c16f2e7c570" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "4681bc77-dccb-40ab-9422-f1df7c612db7" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11894" ], + "x-ms-correlation-request-id": [ "dd363471-ba98-4d4b-b32d-e9f037713d65" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T183834Z:dd363471-ba98-4d4b-b32d-e9f037713d65" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:38:34 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1084" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Enabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-8ce260.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:40:25.13+00:00\",\"replicationRole\":\"Replica\",\"masterServerId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08f\",\"replicaCapacity\":0,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-8ce260\",\"name\":\"mariadb-test-8ce260\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" + } + }, + "New-AzMariaDbReplica+[NoContext]+ServerName+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-8ce260?api-version=2018-06-01-preview+24": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-8ce260?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "126" ], + "x-ms-client-request-id": [ "7bf9ef9f-c49a-4a98-b9e0-bc705a86056c" ], + "CommandName": [ "Get-AzMariaDBServer" ], + "FullCommandName": [ "Get-AzMariaDbServer_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "2b3a7f9c-db46-4425-ba9c-da85cf984227" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11893" ], + "x-ms-correlation-request-id": [ "729cd65c-aa9c-40a1-b51d-0d1a020d03ed" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T183834Z:729cd65c-aa9c-40a1-b51d-0d1a020d03ed" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:38:34 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1084" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Enabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-8ce260.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:40:25.13+00:00\",\"replicationRole\":\"Replica\",\"masterServerId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08f\",\"replicaCapacity\":0,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-8ce260\",\"name\":\"mariadb-test-8ce260\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" + } + }, + "New-AzMariaDbReplica+[NoContext]+ServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08f?api-version=2018-06-01-preview+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08f?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "127" ], + "x-ms-client-request-id": [ "34efdf98-114e-49d3-90fd-be01a5e3aaed" ], + "CommandName": [ "Get-AzMariaDBServer" ], + "FullCommandName": [ "Get-AzMariaDbServer_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "0544b595-d223-4d2a-ad46-e36d8f4f0611" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11892" ], + "x-ms-correlation-request-id": [ "7cefea48-2ad7-464f-8057-65943891228f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T183835Z:7cefea48-2ad7-464f-8057-65943891228f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:38:34 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "938" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-mqe08f.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:18:43.773+00:00\",\"replicationRole\":\"Master\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08f\",\"name\":\"mariadb-test-mqe08f\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" + } + }, + "New-AzMariaDbReplica+[NoContext]+ServerObject+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-oxbjcp?api-version=2018-06-01-preview+2": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-oxbjcp?api-version=2018-06-01-preview", + "Content": "{\r\n \"properties\": {\r\n \"createMode\": \"Replica\",\r\n \"sourceServerId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08f\"\r\n },\r\n \"location\": \"eastus\"\r\n}", + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "256" ] + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/a674167b-0d09-42fb-bf2f-420b2e791f34?api-version=2018-06-01-preview" ], + "Retry-After": [ "30" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/a674167b-0d09-42fb-bf2f-420b2e791f34?api-version=2018-06-01-preview" ], + "x-ms-request-id": [ "a674167b-0d09-42fb-bf2f-420b2e791f34" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1184" ], + "x-ms-correlation-request-id": [ "4940caab-62b0-4ea7-9d7a-e4c85598328f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T183841Z:4940caab-62b0-4ea7-9d7a-e4c85598328f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:38:40 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "88" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"operation\":\"CreateElasticServerContinuousCopy\",\"startTime\":\"2020-09-23T18:38:41.047Z\"}" + } + }, + "New-AzMariaDbReplica+[NoContext]+ServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/a674167b-0d09-42fb-bf2f-420b2e791f34?api-version=2018-06-01-preview+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/a674167b-0d09-42fb-bf2f-420b2e791f34?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "129" ], + "x-ms-client-request-id": [ "520a1054-d69d-49b4-bc7d-db0512f7a70d" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "014382a4-6744-4ca7-a84f-400abc9a10af" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11891" ], + "x-ms-correlation-request-id": [ "053ade46-e215-4e6c-8bea-d4e4a20fd33d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T183911Z:053ade46-e215-4e6c-8bea-d4e4a20fd33d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:39:10 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"a674167b-0d09-42fb-bf2f-420b2e791f34\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:38:41.047Z\"}" + } + }, + "New-AzMariaDbReplica+[NoContext]+ServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/a674167b-0d09-42fb-bf2f-420b2e791f34?api-version=2018-06-01-preview+4": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/a674167b-0d09-42fb-bf2f-420b2e791f34?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "130" ], + "x-ms-client-request-id": [ "520a1054-d69d-49b4-bc7d-db0512f7a70d" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "36f1634c-12bc-40c1-87bb-90d3df91c8c0" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11890" ], + "x-ms-correlation-request-id": [ "ce49c1c5-958e-446f-aa73-36c664d1a029" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T183941Z:ce49c1c5-958e-446f-aa73-36c664d1a029" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:39:41 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"a674167b-0d09-42fb-bf2f-420b2e791f34\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:38:41.047Z\"}" + } + }, + "New-AzMariaDbReplica+[NoContext]+ServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/a674167b-0d09-42fb-bf2f-420b2e791f34?api-version=2018-06-01-preview+5": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/a674167b-0d09-42fb-bf2f-420b2e791f34?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "131" ], + "x-ms-client-request-id": [ "520a1054-d69d-49b4-bc7d-db0512f7a70d" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "5aa7ad85-3f07-4ce0-944a-e9c992dd7f9d" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11890" ], + "x-ms-correlation-request-id": [ "605a22b4-7e88-46f7-b596-a7efe3b29058" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T184014Z:605a22b4-7e88-46f7-b596-a7efe3b29058" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:40:13 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"a674167b-0d09-42fb-bf2f-420b2e791f34\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:38:41.047Z\"}" + } + }, + "New-AzMariaDbReplica+[NoContext]+ServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/a674167b-0d09-42fb-bf2f-420b2e791f34?api-version=2018-06-01-preview+6": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/a674167b-0d09-42fb-bf2f-420b2e791f34?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "132" ], + "x-ms-client-request-id": [ "520a1054-d69d-49b4-bc7d-db0512f7a70d" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "9a569a30-ccf6-45d1-b5aa-096c55011292" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11889" ], + "x-ms-correlation-request-id": [ "4a72c6fa-9bd9-4e92-bb94-056d21bf4d48" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T184044Z:4a72c6fa-9bd9-4e92-bb94-056d21bf4d48" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:40:43 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"a674167b-0d09-42fb-bf2f-420b2e791f34\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:38:41.047Z\"}" + } + }, + "New-AzMariaDbReplica+[NoContext]+ServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/a674167b-0d09-42fb-bf2f-420b2e791f34?api-version=2018-06-01-preview+7": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/a674167b-0d09-42fb-bf2f-420b2e791f34?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "133" ], + "x-ms-client-request-id": [ "520a1054-d69d-49b4-bc7d-db0512f7a70d" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "b376268e-1f15-4f54-ba8b-a20bb61af5e4" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11888" ], + "x-ms-correlation-request-id": [ "a2e6867a-88eb-48f7-a254-a79144282f77" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T184115Z:a2e6867a-88eb-48f7-a254-a79144282f77" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:41:15 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"a674167b-0d09-42fb-bf2f-420b2e791f34\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:38:41.047Z\"}" + } + }, + "New-AzMariaDbReplica+[NoContext]+ServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/a674167b-0d09-42fb-bf2f-420b2e791f34?api-version=2018-06-01-preview+8": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/a674167b-0d09-42fb-bf2f-420b2e791f34?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "134" ], + "x-ms-client-request-id": [ "520a1054-d69d-49b4-bc7d-db0512f7a70d" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "8d846821-9b0c-4660-9ab1-949ba2994645" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11887" ], + "x-ms-correlation-request-id": [ "a41bd8f7-fb96-48bf-b76a-dd6338ad9dd3" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T184145Z:a41bd8f7-fb96-48bf-b76a-dd6338ad9dd3" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:41:45 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"a674167b-0d09-42fb-bf2f-420b2e791f34\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:38:41.047Z\"}" + } + }, + "New-AzMariaDbReplica+[NoContext]+ServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/a674167b-0d09-42fb-bf2f-420b2e791f34?api-version=2018-06-01-preview+9": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/a674167b-0d09-42fb-bf2f-420b2e791f34?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "135" ], + "x-ms-client-request-id": [ "520a1054-d69d-49b4-bc7d-db0512f7a70d" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "e02c282e-3ad2-4ec2-bc74-23be2cf7393f" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11886" ], + "x-ms-correlation-request-id": [ "63cbc881-cbf1-4728-b1cf-175498c5252f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T184215Z:63cbc881-cbf1-4728-b1cf-175498c5252f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:42:15 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"a674167b-0d09-42fb-bf2f-420b2e791f34\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:38:41.047Z\"}" + } + }, + "New-AzMariaDbReplica+[NoContext]+ServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/a674167b-0d09-42fb-bf2f-420b2e791f34?api-version=2018-06-01-preview+10": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/a674167b-0d09-42fb-bf2f-420b2e791f34?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "136" ], + "x-ms-client-request-id": [ "520a1054-d69d-49b4-bc7d-db0512f7a70d" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "c4e20cd5-2369-43a2-9e89-4451a6f785ec" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11885" ], + "x-ms-correlation-request-id": [ "beceacfa-3973-49e8-adef-69250738168a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T184246Z:beceacfa-3973-49e8-adef-69250738168a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:42:45 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"a674167b-0d09-42fb-bf2f-420b2e791f34\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:38:41.047Z\"}" + } + }, + "New-AzMariaDbReplica+[NoContext]+ServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/a674167b-0d09-42fb-bf2f-420b2e791f34?api-version=2018-06-01-preview+11": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/a674167b-0d09-42fb-bf2f-420b2e791f34?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "137" ], + "x-ms-client-request-id": [ "520a1054-d69d-49b4-bc7d-db0512f7a70d" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "59e1d80e-59a2-4708-9d9c-80521c8b5761" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11884" ], + "x-ms-correlation-request-id": [ "27b1eb9b-0cbd-497b-b509-8a18a8e9ccdd" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T184316Z:27b1eb9b-0cbd-497b-b509-8a18a8e9ccdd" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:43:16 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"a674167b-0d09-42fb-bf2f-420b2e791f34\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:38:41.047Z\"}" + } + }, + "New-AzMariaDbReplica+[NoContext]+ServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/a674167b-0d09-42fb-bf2f-420b2e791f34?api-version=2018-06-01-preview+12": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/a674167b-0d09-42fb-bf2f-420b2e791f34?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "138" ], + "x-ms-client-request-id": [ "520a1054-d69d-49b4-bc7d-db0512f7a70d" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "2236c88d-2100-4037-8aee-b50f614a9605" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11883" ], + "x-ms-correlation-request-id": [ "18418393-3d85-4db4-a6a4-0128b726406d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T184346Z:18418393-3d85-4db4-a6a4-0128b726406d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:43:46 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"a674167b-0d09-42fb-bf2f-420b2e791f34\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:38:41.047Z\"}" + } + }, + "New-AzMariaDbReplica+[NoContext]+ServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/a674167b-0d09-42fb-bf2f-420b2e791f34?api-version=2018-06-01-preview+13": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/a674167b-0d09-42fb-bf2f-420b2e791f34?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "139" ], + "x-ms-client-request-id": [ "520a1054-d69d-49b4-bc7d-db0512f7a70d" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "9debff44-873e-44f4-b50d-d58d704c1b67" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11882" ], + "x-ms-correlation-request-id": [ "d81a2883-54b6-4f62-baaa-2e94ce471e2a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T184417Z:d81a2883-54b6-4f62-baaa-2e94ce471e2a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:44:16 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"a674167b-0d09-42fb-bf2f-420b2e791f34\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:38:41.047Z\"}" + } + }, + "New-AzMariaDbReplica+[NoContext]+ServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/a674167b-0d09-42fb-bf2f-420b2e791f34?api-version=2018-06-01-preview+14": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/a674167b-0d09-42fb-bf2f-420b2e791f34?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "140" ], + "x-ms-client-request-id": [ "520a1054-d69d-49b4-bc7d-db0512f7a70d" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "bee92c29-4684-451e-ab02-f02ef5809334" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11881" ], + "x-ms-correlation-request-id": [ "e1f1dc88-c92a-4704-a366-3031c874050f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T184447Z:e1f1dc88-c92a-4704-a366-3031c874050f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:44:46 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"a674167b-0d09-42fb-bf2f-420b2e791f34\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:38:41.047Z\"}" + } + }, + "New-AzMariaDbReplica+[NoContext]+ServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/a674167b-0d09-42fb-bf2f-420b2e791f34?api-version=2018-06-01-preview+15": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/a674167b-0d09-42fb-bf2f-420b2e791f34?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "141" ], + "x-ms-client-request-id": [ "520a1054-d69d-49b4-bc7d-db0512f7a70d" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "38d1281d-d644-4806-bcaa-039e2a22b99d" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11880" ], + "x-ms-correlation-request-id": [ "de9b8d5d-3fc3-4df0-ade1-e2095be3be94" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T184517Z:de9b8d5d-3fc3-4df0-ade1-e2095be3be94" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:45:17 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"a674167b-0d09-42fb-bf2f-420b2e791f34\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:38:41.047Z\"}" + } + }, + "New-AzMariaDbReplica+[NoContext]+ServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/a674167b-0d09-42fb-bf2f-420b2e791f34?api-version=2018-06-01-preview+16": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/a674167b-0d09-42fb-bf2f-420b2e791f34?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "142" ], + "x-ms-client-request-id": [ "520a1054-d69d-49b4-bc7d-db0512f7a70d" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "b06251d3-90eb-4698-b4f9-1ad71aa487b4" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11879" ], + "x-ms-correlation-request-id": [ "7da9d9c2-3313-4c7a-b251-41c510df13f0" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T184548Z:7da9d9c2-3313-4c7a-b251-41c510df13f0" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:45:47 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"a674167b-0d09-42fb-bf2f-420b2e791f34\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:38:41.047Z\"}" + } + }, + "New-AzMariaDbReplica+[NoContext]+ServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/a674167b-0d09-42fb-bf2f-420b2e791f34?api-version=2018-06-01-preview+17": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/a674167b-0d09-42fb-bf2f-420b2e791f34?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "143" ], + "x-ms-client-request-id": [ "520a1054-d69d-49b4-bc7d-db0512f7a70d" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "b93c24fe-2c15-43c2-a7f7-80676583efe0" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11878" ], + "x-ms-correlation-request-id": [ "564ccfdc-39a9-4227-928f-468a645b4ad7" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T184618Z:564ccfdc-39a9-4227-928f-468a645b4ad7" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:46:17 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"a674167b-0d09-42fb-bf2f-420b2e791f34\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:38:41.047Z\"}" + } + }, + "New-AzMariaDbReplica+[NoContext]+ServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/a674167b-0d09-42fb-bf2f-420b2e791f34?api-version=2018-06-01-preview+18": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/a674167b-0d09-42fb-bf2f-420b2e791f34?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "144" ], + "x-ms-client-request-id": [ "520a1054-d69d-49b4-bc7d-db0512f7a70d" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "8a9adfca-c998-4d5e-a61d-cd4c45f4a146" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11877" ], + "x-ms-correlation-request-id": [ "89517e54-9546-4fb9-9f61-d494f933705b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T184648Z:89517e54-9546-4fb9-9f61-d494f933705b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:46:48 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"a674167b-0d09-42fb-bf2f-420b2e791f34\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:38:41.047Z\"}" + } + }, + "New-AzMariaDbReplica+[NoContext]+ServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/a674167b-0d09-42fb-bf2f-420b2e791f34?api-version=2018-06-01-preview+19": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/a674167b-0d09-42fb-bf2f-420b2e791f34?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "145" ], + "x-ms-client-request-id": [ "520a1054-d69d-49b4-bc7d-db0512f7a70d" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "979abd4f-c685-47f3-960e-3fb741166005" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11876" ], + "x-ms-correlation-request-id": [ "ca7d12ff-569f-496d-ae9e-d40ffa1f07fd" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T184719Z:ca7d12ff-569f-496d-ae9e-d40ffa1f07fd" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:47:18 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"a674167b-0d09-42fb-bf2f-420b2e791f34\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:38:41.047Z\"}" + } + }, + "New-AzMariaDbReplica+[NoContext]+ServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/a674167b-0d09-42fb-bf2f-420b2e791f34?api-version=2018-06-01-preview+20": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/a674167b-0d09-42fb-bf2f-420b2e791f34?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "146" ], + "x-ms-client-request-id": [ "520a1054-d69d-49b4-bc7d-db0512f7a70d" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "5073fb00-78bc-4675-beed-dc9d577262d3" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11875" ], + "x-ms-correlation-request-id": [ "5948426f-e802-448d-8104-0fb93fd69e5a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T184750Z:5948426f-e802-448d-8104-0fb93fd69e5a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:47:49 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"a674167b-0d09-42fb-bf2f-420b2e791f34\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:38:41.047Z\"}" + } + }, + "New-AzMariaDbReplica+[NoContext]+ServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/a674167b-0d09-42fb-bf2f-420b2e791f34?api-version=2018-06-01-preview+21": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/a674167b-0d09-42fb-bf2f-420b2e791f34?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "147" ], + "x-ms-client-request-id": [ "520a1054-d69d-49b4-bc7d-db0512f7a70d" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "112b9f9d-95fd-4e61-893c-b76db47a51ed" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11874" ], + "x-ms-correlation-request-id": [ "2516834d-49f0-4735-93bc-578ad77e5e4e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T184820Z:2516834d-49f0-4735-93bc-578ad77e5e4e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:48:20 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"a674167b-0d09-42fb-bf2f-420b2e791f34\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:38:41.047Z\"}" + } + }, + "New-AzMariaDbReplica+[NoContext]+ServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/a674167b-0d09-42fb-bf2f-420b2e791f34?api-version=2018-06-01-preview+22": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/a674167b-0d09-42fb-bf2f-420b2e791f34?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "148" ], + "x-ms-client-request-id": [ "520a1054-d69d-49b4-bc7d-db0512f7a70d" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "b0954b25-f3d6-48ff-b8f9-f0bb533fecab" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11873" ], + "x-ms-correlation-request-id": [ "e3b45c04-bebe-41a9-834d-424296cf5860" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T184851Z:e3b45c04-bebe-41a9-834d-424296cf5860" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:48:50 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "107" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"a674167b-0d09-42fb-bf2f-420b2e791f34\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-23T18:38:41.047Z\"}" + } + }, + "New-AzMariaDbReplica+[NoContext]+ServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-oxbjcp?api-version=2018-06-01-preview+23": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-oxbjcp?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "149" ], + "x-ms-client-request-id": [ "520a1054-d69d-49b4-bc7d-db0512f7a70d" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "d69f5c67-42c0-426b-9fe7-911d2f73c978" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11872" ], + "x-ms-correlation-request-id": [ "51ba7c94-7f3e-40c7-adae-335a43235f91" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T184851Z:51ba7c94-7f3e-40c7-adae-335a43235f91" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:48:50 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1085" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Enabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-oxbjcp.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:50:41.893+00:00\",\"replicationRole\":\"Replica\",\"masterServerId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08f\",\"replicaCapacity\":0,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-oxbjcp\",\"name\":\"mariadb-test-oxbjcp\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" + } + }, + "New-AzMariaDbReplica+[NoContext]+ServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-oxbjcp?api-version=2018-06-01-preview+24": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-oxbjcp?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "150" ], + "x-ms-client-request-id": [ "03cbd258-7528-4e52-a2d7-a0b9c16a5022" ], + "CommandName": [ "Get-AzMariaDBServer" ], + "FullCommandName": [ "Get-AzMariaDbServer_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "2a8d4544-fadd-4596-bbe1-f3904ce1a836" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11871" ], + "x-ms-correlation-request-id": [ "a144c116-7fae-4872-9b8e-c3310bf63652" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T184851Z:a144c116-7fae-4872-9b8e-c3310bf63652" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:48:51 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1085" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Enabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-oxbjcp.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:50:41.893+00:00\",\"replicationRole\":\"Replica\",\"masterServerId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08f\",\"replicaCapacity\":0,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-oxbjcp\",\"name\":\"mariadb-test-oxbjcp\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" + } + } +} \ No newline at end of file diff --git a/src/MariaDb/test/New-AzMariaDbServerReplica.Tests.ps1 b/src/MariaDb/test/New-AzMariaDbReplica.Tests.ps1 similarity index 74% rename from src/MariaDb/test/New-AzMariaDbServerReplica.Tests.ps1 rename to src/MariaDb/test/New-AzMariaDbReplica.Tests.ps1 index da7e3f843046..8f6be8769b37 100644 --- a/src/MariaDb/test/New-AzMariaDbServerReplica.Tests.ps1 +++ b/src/MariaDb/test/New-AzMariaDbReplica.Tests.ps1 @@ -4,7 +4,7 @@ if (-Not (Test-Path -Path $loadEnvPath)) { } . ($loadEnvPath) -$TestRecordingFile = Join-Path $PSScriptRoot 'New-AzMariaDbServerReplica.Recording.json' +$TestRecordingFile = Join-Path $PSScriptRoot 'New-AzMariaDbReplica.Recording.json' $currentPath = $PSScriptRoot while(-not $mockingPath) { $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File @@ -12,10 +12,10 @@ while(-not $mockingPath) { } . ($mockingPath | Select-Object -First 1).FullName -Describe 'New-AzMariaDbServerReplica' { +Describe 'New-AzMariaDbReplica' { It 'ServerName' { $repMariaDbName = $env.rstr02 - New-AzMariaDbServerReplica -Name $repMariaDbName -ServerName $env.rstrgp02 -ResourceGroupName $env.ResourceGroup + New-AzMariaDbReplica -Name $repMariaDbName -ServerName $env.rstrgp02 -ResourceGroupName $env.ResourceGroup $repMariaDb = Get-AzMariaDBServer -Name $repMariaDbName -ResourceGroup $env.ResourceGroup $repMariaDb.Name | Should -Be $repMariaDbName } @@ -23,7 +23,7 @@ Describe 'New-AzMariaDbServerReplica' { It 'ServerObject' { $repMariaDbName = $env.rstr03 $mariadb = Get-AzMariaDBServer -Name $env.rstrgp02 -ResourceGroup $env.ResourceGroup - New-AzMariaDbServerReplica -Name $repMariaDbName -InputObject $mariadb + New-AzMariaDbReplica -Name $repMariaDbName -InputObject $mariadb $repMariaDb = Get-AzMariaDBServer -Name $repMariaDbName -ResourceGroup $env.ResourceGroup $repMariaDb.Name | Should -Be $repMariaDbName } diff --git a/src/MariaDb/test/New-AzMariaDbServer.Recording.json b/src/MariaDb/test/New-AzMariaDbServer.Recording.json index 3763df218f84..1fb65b2c5c83 100644 --- a/src/MariaDb/test/New-AzMariaDbServer.Recording.json +++ b/src/MariaDb/test/New-AzMariaDbServer.Recording.json @@ -1,14 +1,14 @@ { - "New-AzMariaDbServer+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-ybj8li?api-version=2018-06-01-preview+1": { + "New-AzMariaDbServer+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-6s3vad?api-version=2018-06-01-preview+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-ybj8li?api-version=2018-06-01-preview", - "Content": "{\n \"properties\": {\n \"createMode\": \"Default\",\n \"administratorLogin\": \"adminuser\",\n \"administratorLoginPassword\": \"Passw0rd01!!\"\n },\n \"sku\": {\n \"name\": \"B_Gen5_1\"\n },\n \"location\": \"eastus\"\n}", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-6s3vad?api-version=2018-06-01-preview", + "Content": "{\r\n \"properties\": {\r\n \"createMode\": \"Default\",\r\n \"administratorLogin\": \"adminuser\",\r\n \"administratorLoginPassword\": \"Passw0rd01!!\"\r\n },\r\n \"sku\": {\r\n \"name\": \"B_Gen5_1\"\r\n },\r\n \"location\": \"eastus\"\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "205" ] + "Content-Length": [ "215" ] } }, "Response": { @@ -16,39 +16,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/860341ef-54e5-4fc7-a9f3-d5d861676aa7?api-version=2018-06-01-preview" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/0a59f8d2-5ee1-423a-8675-1eb58e4f2af0?api-version=2018-06-01-preview" ], "Retry-After": [ "60" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/860341ef-54e5-4fc7-a9f3-d5d861676aa7?api-version=2018-06-01-preview" ], - "x-ms-request-id": [ "860341ef-54e5-4fc7-a9f3-d5d861676aa7" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/0a59f8d2-5ee1-423a-8675-1eb58e4f2af0?api-version=2018-06-01-preview" ], + "x-ms-request-id": [ "0a59f8d2-5ee1-423a-8675-1eb58e4f2af0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1187" ], - "x-ms-correlation-request-id": [ "fe5ce542-bd2c-4e94-a9df-f8be80ab9c0f" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T022911Z:fe5ce542-bd2c-4e94-a9df-f8be80ab9c0f" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1183" ], + "x-ms-correlation-request-id": [ "a0772b90-f2a2-4aa2-a13e-cd83b49730a4" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T184859Z:a0772b90-f2a2-4aa2-a13e-cd83b49730a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:29:11 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:48:58 GMT" ] }, "ContentHeaders": { "Content-Length": [ "74" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServer\",\"startTime\":\"2020-04-15T02:29:10.333Z\"}" + "Content": "{\"operation\":\"UpsertElasticServer\",\"startTime\":\"2020-09-23T18:48:57.767Z\"}" } }, - "New-AzMariaDbServer+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/860341ef-54e5-4fc7-a9f3-d5d861676aa7?api-version=2018-06-01-preview+2": { + "New-AzMariaDbServer+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/0a59f8d2-5ee1-423a-8675-1eb58e4f2af0?api-version=2018-06-01-preview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/860341ef-54e5-4fc7-a9f3-d5d861676aa7?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/0a59f8d2-5ee1-423a-8675-1eb58e4f2af0?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "123", "124" ], - "x-ms-client-request-id": [ "e4f0e178-8193-4556-9fca-68cc57a497b5", "e4f0e178-8193-4556-9fca-68cc57a497b5" ], - "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer" ], - "FullCommandName": [ "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "152" ], + "x-ms-client-request-id": [ "c40d7dcd-84a7-49a0-998e-aae2604dddef" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -59,36 +59,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "60" ], - "x-ms-request-id": [ "b1864b5c-1e1b-470f-a6b1-dcc5f81b9e52" ], + "x-ms-request-id": [ "b0e37fc7-3268-47ce-bafb-9bd84786280a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11893" ], - "x-ms-correlation-request-id": [ "bff059cf-e400-4810-8766-5290c7cab363" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T023007Z:bff059cf-e400-4810-8766-5290c7cab363" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11870" ], + "x-ms-correlation-request-id": [ "994c03b3-affe-48c1-8bc7-754f9c286514" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T184959Z:994c03b3-affe-48c1-8bc7-754f9c286514" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:30:07 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:49:59 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"860341ef-54e5-4fc7-a9f3-d5d861676aa7\",\"status\":\"InProgress\",\"startTime\":\"2020-04-15T02:29:10.333Z\"}" + "Content": "{\"name\":\"0a59f8d2-5ee1-423a-8675-1eb58e4f2af0\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:48:57.767Z\"}" } }, - "New-AzMariaDbServer+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/860341ef-54e5-4fc7-a9f3-d5d861676aa7?api-version=2018-06-01-preview+3": { + "New-AzMariaDbServer+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/0a59f8d2-5ee1-423a-8675-1eb58e4f2af0?api-version=2018-06-01-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/860341ef-54e5-4fc7-a9f3-d5d861676aa7?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/0a59f8d2-5ee1-423a-8675-1eb58e4f2af0?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "123", "124", "125" ], - "x-ms-client-request-id": [ "e4f0e178-8193-4556-9fca-68cc57a497b5", "e4f0e178-8193-4556-9fca-68cc57a497b5", "e4f0e178-8193-4556-9fca-68cc57a497b5" ], - "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer" ], - "FullCommandName": [ "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "153" ], + "x-ms-client-request-id": [ "c40d7dcd-84a7-49a0-998e-aae2604dddef" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -99,36 +99,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "60" ], - "x-ms-request-id": [ "577b6820-8e8f-419a-bc4a-c124a1d3474a" ], + "x-ms-request-id": [ "2687fc59-f538-45f9-adb8-ea85d97a68fd" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11892" ], - "x-ms-correlation-request-id": [ "d9f7cb68-ee39-4490-bfdf-75702fc98722" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T023104Z:d9f7cb68-ee39-4490-bfdf-75702fc98722" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11870" ], + "x-ms-correlation-request-id": [ "1b4c4f30-fb54-4ffa-8eab-fdae78839796" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185059Z:1b4c4f30-fb54-4ffa-8eab-fdae78839796" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:31:03 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:50:58 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"860341ef-54e5-4fc7-a9f3-d5d861676aa7\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-15T02:29:10.333Z\"}" + "Content": "{\"name\":\"0a59f8d2-5ee1-423a-8675-1eb58e4f2af0\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-23T18:48:57.767Z\"}" } }, - "New-AzMariaDbServer+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-ybj8li?api-version=2018-06-01-preview+4": { + "New-AzMariaDbServer+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-6s3vad?api-version=2018-06-01-preview+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-ybj8li?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-6s3vad?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "123", "124", "125", "126" ], - "x-ms-client-request-id": [ "e4f0e178-8193-4556-9fca-68cc57a497b5", "e4f0e178-8193-4556-9fca-68cc57a497b5", "e4f0e178-8193-4556-9fca-68cc57a497b5", "e4f0e178-8193-4556-9fca-68cc57a497b5" ], - "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer" ], - "FullCommandName": [ "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "154" ], + "x-ms-client-request-id": [ "c40d7dcd-84a7-49a0-998e-aae2604dddef" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -138,21 +138,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "4a203651-25e1-4576-b3fe-d4f7bd11db00" ], + "x-ms-request-id": [ "525eaff2-3109-4e8c-88cf-c81cfc261300" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11891" ], - "x-ms-correlation-request-id": [ "637d1eba-10ca-4feb-b2a4-a9cca15c7df1" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T023104Z:637d1eba-10ca-4feb-b2a4-a9cca15c7df1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11869" ], + "x-ms-correlation-request-id": [ "7062ed7a-f472-4288-b5a4-805a8d3efa63" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185100Z:7062ed7a-f472-4288-b5a4-805a8d3efa63" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:31:04 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:50:59 GMT" ] }, "ContentHeaders": { "Content-Length": [ "926" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-ybj8li.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:39:10.647+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-ybj8li\",\"name\":\"mariadb-test-ybj8li\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" + "Content": "{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-6s3vad.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:58:58.127+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-6s3vad\",\"name\":\"mariadb-test-6s3vad\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" } } } \ No newline at end of file diff --git a/src/MariaDb/test/New-AzMariaDbServerReplica.Recording.json b/src/MariaDb/test/New-AzMariaDbServerReplica.Recording.json deleted file mode 100644 index a8a9d829ac2d..000000000000 --- a/src/MariaDb/test/New-AzMariaDbServerReplica.Recording.json +++ /dev/null @@ -1,550 +0,0 @@ -{ - "New-AzMariaDbServerReplica+[NoContext]+ServerName+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24t?api-version=2018-06-01-preview+1": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24t?api-version=2018-06-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "1" ], - "x-ms-client-request-id": [ "13886c8d-8cff-4378-8a67-4ebcd9aaacee" ], - "CommandName": [ "Get-AzMariaDbServer" ], - "FullCommandName": [ "Get-AzMariaDbServer_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "81c754b6-4538-4c22-8450-0617b6e93259" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], - "x-ms-correlation-request-id": [ "37438802-32c5-4530-9aa6-237226d3903f" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T054115Z:37438802-32c5-4530-9aa6-237226d3903f" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 05:41:14 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "938" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-plo24t.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:06:29.943+00:00\",\"replicationRole\":\"Master\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24t\",\"name\":\"mariadb-test-plo24t\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" - } - }, - "New-AzMariaDbServerReplica+[NoContext]+ServerName+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-vn5aic?api-version=2018-06-01-preview+2": { - "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-vn5aic?api-version=2018-06-01-preview", - "Content": "{\n \"properties\": {\n \"createMode\": \"Replica\",\n \"sourceServerId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24t\"\n },\n \"location\": \"eastus\"\n}", - "Headers": { - }, - "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "250" ] - } - }, - "Response": { - "StatusCode": 202, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/0af04bf3-24c3-47c8-b49c-a569b9bc6d7e?api-version=2018-06-01-preview" ], - "Retry-After": [ "30" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/0af04bf3-24c3-47c8-b49c-a569b9bc6d7e?api-version=2018-06-01-preview" ], - "x-ms-request-id": [ "0af04bf3-24c3-47c8-b49c-a569b9bc6d7e" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-correlation-request-id": [ "c6c5dcc0-b12e-40cd-ae23-154653388f3a" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T054117Z:c6c5dcc0-b12e-40cd-ae23-154653388f3a" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 05:41:16 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "87" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"operation\":\"CreateElasticServerContinuousCopy\",\"startTime\":\"2020-04-15T05:41:17.03Z\"}" - } - }, - "New-AzMariaDbServerReplica+[NoContext]+ServerName+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/0af04bf3-24c3-47c8-b49c-a569b9bc6d7e?api-version=2018-06-01-preview+3": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/0af04bf3-24c3-47c8-b49c-a569b9bc6d7e?api-version=2018-06-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "2", "3" ], - "x-ms-client-request-id": [ "348ed098-1589-4122-96c1-dfeb2c5b43e0", "348ed098-1589-4122-96c1-dfeb2c5b43e0" ], - "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer" ], - "FullCommandName": [ "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Retry-After": [ "30" ], - "x-ms-request-id": [ "34e3838d-43e0-4532-b23a-f745050bb350" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "70e24cb9-ffb4-4bbe-b190-2130b6999bc1" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T054145Z:70e24cb9-ffb4-4bbe-b190-2130b6999bc1" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 05:41:45 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "107" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"name\":\"0af04bf3-24c3-47c8-b49c-a569b9bc6d7e\",\"status\":\"InProgress\",\"startTime\":\"2020-04-15T05:41:17.03Z\"}" - } - }, - "New-AzMariaDbServerReplica+[NoContext]+ServerName+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/0af04bf3-24c3-47c8-b49c-a569b9bc6d7e?api-version=2018-06-01-preview+4": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/0af04bf3-24c3-47c8-b49c-a569b9bc6d7e?api-version=2018-06-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "2", "3", "4" ], - "x-ms-client-request-id": [ "348ed098-1589-4122-96c1-dfeb2c5b43e0", "348ed098-1589-4122-96c1-dfeb2c5b43e0", "348ed098-1589-4122-96c1-dfeb2c5b43e0" ], - "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer" ], - "FullCommandName": [ "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Retry-After": [ "30" ], - "x-ms-request-id": [ "f219765c-e83e-4728-9d88-60b9498065a5" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "539b6f27-08d0-4bb4-b1fb-35954a66f492" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T054213Z:539b6f27-08d0-4bb4-b1fb-35954a66f492" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 05:42:13 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "107" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"name\":\"0af04bf3-24c3-47c8-b49c-a569b9bc6d7e\",\"status\":\"InProgress\",\"startTime\":\"2020-04-15T05:41:17.03Z\"}" - } - }, - "New-AzMariaDbServerReplica+[NoContext]+ServerName+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/0af04bf3-24c3-47c8-b49c-a569b9bc6d7e?api-version=2018-06-01-preview+5": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/0af04bf3-24c3-47c8-b49c-a569b9bc6d7e?api-version=2018-06-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "2", "3", "4", "5" ], - "x-ms-client-request-id": [ "348ed098-1589-4122-96c1-dfeb2c5b43e0", "348ed098-1589-4122-96c1-dfeb2c5b43e0", "348ed098-1589-4122-96c1-dfeb2c5b43e0", "348ed098-1589-4122-96c1-dfeb2c5b43e0" ], - "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer" ], - "FullCommandName": [ "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Retry-After": [ "30" ], - "x-ms-request-id": [ "1ceab27e-b75e-47e9-ac10-14b39bf2fc0a" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "b5824b28-aac6-421c-9c48-68e8120f88e1" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T054242Z:b5824b28-aac6-421c-9c48-68e8120f88e1" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 05:42:42 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "246" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"name\":\"0af04bf3-24c3-47c8-b49c-a569b9bc6d7e\",\"status\":\"Failed\",\"startTime\":\"2020-04-15T05:41:17.03Z\",\"error\":{\"code\":\"ServerNameAlreadyExists\",\"message\":\"Specified server name \u0027{0}\u0027 is already used. Please use a different name and try again.\"}}" - } - }, - "New-AzMariaDbServerReplica+[NoContext]+ServerName+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-vn5aic?api-version=2018-06-01-preview+6": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-vn5aic?api-version=2018-06-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "2", "3", "4", "5", "6" ], - "x-ms-client-request-id": [ "348ed098-1589-4122-96c1-dfeb2c5b43e0", "348ed098-1589-4122-96c1-dfeb2c5b43e0", "348ed098-1589-4122-96c1-dfeb2c5b43e0", "348ed098-1589-4122-96c1-dfeb2c5b43e0", "348ed098-1589-4122-96c1-dfeb2c5b43e0" ], - "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer" ], - "FullCommandName": [ "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "0c1c87a9-5bf7-4347-966c-eb97eaff2f6a" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "ff4cc5ba-74f2-480d-88b0-69cb8ef4a0c3" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T054242Z:ff4cc5ba-74f2-480d-88b0-69cb8ef4a0c3" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 05:42:42 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "1085" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Enabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-vn5aic.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:45:12.597+00:00\",\"replicationRole\":\"Replica\",\"masterServerId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24t\",\"replicaCapacity\":0,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-vn5aic\",\"name\":\"mariadb-test-vn5aic\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" - } - }, - "New-AzMariaDbServerReplica+[NoContext]+ServerName+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-vn5aic?api-version=2018-06-01-preview+7": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-vn5aic?api-version=2018-06-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "7" ], - "x-ms-client-request-id": [ "1334a968-8fc8-40ab-b285-960faf44eaac" ], - "CommandName": [ "Get-AzMariaDBServer" ], - "FullCommandName": [ "Get-AzMariaDbServer_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "0f893c54-7bc0-4f4e-a42c-474b8c18f708" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-correlation-request-id": [ "c9d0bbff-e19d-4915-8074-f50f0d5f4253" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T054243Z:c9d0bbff-e19d-4915-8074-f50f0d5f4253" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 05:42:42 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "1085" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Enabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-vn5aic.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:45:12.597+00:00\",\"replicationRole\":\"Replica\",\"masterServerId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24t\",\"replicaCapacity\":0,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-vn5aic\",\"name\":\"mariadb-test-vn5aic\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" - } - }, - "New-AzMariaDbServerReplica+[NoContext]+ServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24t?api-version=2018-06-01-preview+1": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24t?api-version=2018-06-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "8" ], - "x-ms-client-request-id": [ "9a308952-78e1-42e3-92b3-fde895cb9580" ], - "CommandName": [ "Get-AzMariaDBServer" ], - "FullCommandName": [ "Get-AzMariaDbServer_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "5e58ab7a-6c20-4592-b6d0-42c0d4c2918d" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], - "x-ms-correlation-request-id": [ "7df75a96-2706-4d1f-a479-5bcb599c28ed" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T054243Z:7df75a96-2706-4d1f-a479-5bcb599c28ed" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 05:42:43 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "938" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-plo24t.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:06:29.943+00:00\",\"replicationRole\":\"Master\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24t\",\"name\":\"mariadb-test-plo24t\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" - } - }, - "New-AzMariaDbServerReplica+[NoContext]+ServerObject+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-iynv8e?api-version=2018-06-01-preview+2": { - "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-iynv8e?api-version=2018-06-01-preview", - "Content": "{\n \"properties\": {\n \"createMode\": \"Replica\",\n \"sourceServerId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24t\"\n },\n \"location\": \"eastus\"\n}", - "Headers": { - }, - "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "250" ] - } - }, - "Response": { - "StatusCode": 202, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/3034fffb-0866-4323-b8a9-75fbf556e763?api-version=2018-06-01-preview" ], - "Retry-After": [ "30" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/3034fffb-0866-4323-b8a9-75fbf556e763?api-version=2018-06-01-preview" ], - "x-ms-request-id": [ "3034fffb-0866-4323-b8a9-75fbf556e763" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], - "x-ms-correlation-request-id": [ "f14fd061-ddfa-4eab-9a69-3e4f11db98e5" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T054245Z:f14fd061-ddfa-4eab-9a69-3e4f11db98e5" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 05:42:45 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "87" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"operation\":\"CreateElasticServerContinuousCopy\",\"startTime\":\"2020-04-15T05:42:45.26Z\"}" - } - }, - "New-AzMariaDbServerReplica+[NoContext]+ServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/3034fffb-0866-4323-b8a9-75fbf556e763?api-version=2018-06-01-preview+3": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/3034fffb-0866-4323-b8a9-75fbf556e763?api-version=2018-06-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "9", "10" ], - "x-ms-client-request-id": [ "c08cbfab-e851-4907-b2b0-aafc8fbf6d20", "c08cbfab-e851-4907-b2b0-aafc8fbf6d20" ], - "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer" ], - "FullCommandName": [ "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Retry-After": [ "30" ], - "x-ms-request-id": [ "989500e6-aab4-49a6-82f0-ad0f9b65074b" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], - "x-ms-correlation-request-id": [ "9357ecf0-6713-4299-b56c-b071b4f80d3b" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T054313Z:9357ecf0-6713-4299-b56c-b071b4f80d3b" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 05:43:12 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "107" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"name\":\"3034fffb-0866-4323-b8a9-75fbf556e763\",\"status\":\"InProgress\",\"startTime\":\"2020-04-15T05:42:45.26Z\"}" - } - }, - "New-AzMariaDbServerReplica+[NoContext]+ServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/3034fffb-0866-4323-b8a9-75fbf556e763?api-version=2018-06-01-preview+4": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/3034fffb-0866-4323-b8a9-75fbf556e763?api-version=2018-06-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "9", "10", "11" ], - "x-ms-client-request-id": [ "c08cbfab-e851-4907-b2b0-aafc8fbf6d20", "c08cbfab-e851-4907-b2b0-aafc8fbf6d20", "c08cbfab-e851-4907-b2b0-aafc8fbf6d20" ], - "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer" ], - "FullCommandName": [ "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Retry-After": [ "30" ], - "x-ms-request-id": [ "34b7d085-52f0-4147-81f1-062b628a21b5" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "84267f1a-359d-4314-984a-31307484af65" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T054341Z:84267f1a-359d-4314-984a-31307484af65" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 05:43:40 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "107" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"name\":\"3034fffb-0866-4323-b8a9-75fbf556e763\",\"status\":\"InProgress\",\"startTime\":\"2020-04-15T05:42:45.26Z\"}" - } - }, - "New-AzMariaDbServerReplica+[NoContext]+ServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/3034fffb-0866-4323-b8a9-75fbf556e763?api-version=2018-06-01-preview+5": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/3034fffb-0866-4323-b8a9-75fbf556e763?api-version=2018-06-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "9", "10", "11", "12" ], - "x-ms-client-request-id": [ "c08cbfab-e851-4907-b2b0-aafc8fbf6d20", "c08cbfab-e851-4907-b2b0-aafc8fbf6d20", "c08cbfab-e851-4907-b2b0-aafc8fbf6d20", "c08cbfab-e851-4907-b2b0-aafc8fbf6d20" ], - "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer" ], - "FullCommandName": [ "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Retry-After": [ "30" ], - "x-ms-request-id": [ "6a5da968-e28c-493e-a30a-bcbb6e0cb1c7" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11989" ], - "x-ms-correlation-request-id": [ "786cf05d-d1f5-44e0-aada-cbbd683d01db" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T054410Z:786cf05d-d1f5-44e0-aada-cbbd683d01db" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 05:44:09 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "246" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"name\":\"3034fffb-0866-4323-b8a9-75fbf556e763\",\"status\":\"Failed\",\"startTime\":\"2020-04-15T05:42:45.26Z\",\"error\":{\"code\":\"ServerNameAlreadyExists\",\"message\":\"Specified server name \u0027{0}\u0027 is already used. Please use a different name and try again.\"}}" - } - }, - "New-AzMariaDbServerReplica+[NoContext]+ServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-iynv8e?api-version=2018-06-01-preview+6": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-iynv8e?api-version=2018-06-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "9", "10", "11", "12", "13" ], - "x-ms-client-request-id": [ "c08cbfab-e851-4907-b2b0-aafc8fbf6d20", "c08cbfab-e851-4907-b2b0-aafc8fbf6d20", "c08cbfab-e851-4907-b2b0-aafc8fbf6d20", "c08cbfab-e851-4907-b2b0-aafc8fbf6d20", "c08cbfab-e851-4907-b2b0-aafc8fbf6d20" ], - "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer" ], - "FullCommandName": [ "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "af23baa6-42c7-407f-9e70-47b9dce54d76" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11988" ], - "x-ms-correlation-request-id": [ "ae750194-89ed-4b9f-9c60-65214b68f8a9" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T054410Z:ae750194-89ed-4b9f-9c60-65214b68f8a9" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 05:44:09 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "1084" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Enabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-iynv8e.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:54:44.05+00:00\",\"replicationRole\":\"Replica\",\"masterServerId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24t\",\"replicaCapacity\":0,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-iynv8e\",\"name\":\"mariadb-test-iynv8e\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" - } - }, - "New-AzMariaDbServerReplica+[NoContext]+ServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-iynv8e?api-version=2018-06-01-preview+7": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-iynv8e?api-version=2018-06-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "14" ], - "x-ms-client-request-id": [ "e6035904-a07e-49a1-8b69-bca95c6275da" ], - "CommandName": [ "Get-AzMariaDBServer" ], - "FullCommandName": [ "Get-AzMariaDbServer_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "f7a2ba5c-3aed-4d21-890f-0dc38a73dd2d" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11987" ], - "x-ms-correlation-request-id": [ "0303f4bf-a6c7-48ce-9705-bbc8c8c8ba10" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T054411Z:0303f4bf-a6c7-48ce-9705-bbc8c8c8ba10" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 05:44:10 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "1084" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Enabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-iynv8e.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:54:44.05+00:00\",\"replicationRole\":\"Replica\",\"masterServerId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24t\",\"replicaCapacity\":0,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-iynv8e\",\"name\":\"mariadb-test-iynv8e\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" - } - } -} \ No newline at end of file diff --git a/src/MariaDb/test/New-AzMariaDbVirtualNetworkRule.Recording.json b/src/MariaDb/test/New-AzMariaDbVirtualNetworkRule.Recording.json index 7b145979b72e..643592c6f769 100644 --- a/src/MariaDb/test/New-AzMariaDbVirtualNetworkRule.Recording.json +++ b/src/MariaDb/test/New-AzMariaDbVirtualNetworkRule.Recording.json @@ -1,14 +1,14 @@ { - "New-AzMariaDbVirtualNetworkRule+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-rteafu/virtualNetworkRules/vnetrule-001?api-version=2018-06-01-preview+1": { + "New-AzMariaDbVirtualNetworkRule+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-jtnizx/virtualNetworkRules/vnetrule-001?api-version=2018-06-01-preview+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-rteafu/virtualNetworkRules/vnetrule-001?api-version=2018-06-01-preview", - "Content": "{\n \"properties\": {\n \"ignoreMissingVnetServiceEndpoint\": true,\n \"virtualNetworkSubnetId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subvnet-01\"\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-jtnizx/virtualNetworkRules/vnetrule-001?api-version=2018-06-01-preview", + "Content": "{\r\n \"properties\": {\r\n \"ignoreMissingVnetServiceEndpoint\": true,\r\n \"virtualNetworkSubnetId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subvnet-01\"\r\n }\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "258" ] + "Content-Length": [ "263" ] } }, "Response": { @@ -16,39 +16,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/a7f9d1d5-3972-4e86-a776-2cd220816cd2?api-version=2018-06-01-preview" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/885e7136-f9b8-4a68-a481-05c3a073966e?api-version=2018-06-01-preview" ], "Retry-After": [ "30" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/a7f9d1d5-3972-4e86-a776-2cd220816cd2?api-version=2018-06-01-preview" ], - "x-ms-request-id": [ "a7f9d1d5-3972-4e86-a776-2cd220816cd2" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/885e7136-f9b8-4a68-a481-05c3a073966e?api-version=2018-06-01-preview" ], + "x-ms-request-id": [ "885e7136-f9b8-4a68-a481-05c3a073966e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1184" ], - "x-ms-correlation-request-id": [ "55194a7b-e965-4d19-8db6-79eb05395658" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T025334Z:55194a7b-e965-4d19-8db6-79eb05395658" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1182" ], + "x-ms-correlation-request-id": [ "56e54c80-db58-414d-8bfc-fef1925a75cd" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185101Z:56e54c80-db58-414d-8bfc-fef1925a75cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:53:33 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:51:01 GMT" ] }, "ContentHeaders": { "Content-Length": [ "90" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServerVnetFirewallRule\",\"startTime\":\"2020-04-15T02:53:33.077Z\"}" + "Content": "{\"operation\":\"UpsertElasticServerVnetFirewallRule\",\"startTime\":\"2020-09-23T18:51:00.653Z\"}" } }, - "New-AzMariaDbVirtualNetworkRule+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/a7f9d1d5-3972-4e86-a776-2cd220816cd2?api-version=2018-06-01-preview+2": { + "New-AzMariaDbVirtualNetworkRule+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/885e7136-f9b8-4a68-a481-05c3a073966e?api-version=2018-06-01-preview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/a7f9d1d5-3972-4e86-a776-2cd220816cd2?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/885e7136-f9b8-4a68-a481-05c3a073966e?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "182", "183" ], - "x-ms-client-request-id": [ "fc4f9325-b2d3-4db3-b88b-1fb38ee51232", "fc4f9325-b2d3-4db3-b88b-1fb38ee51232" ], - "CommandName": [ "New-AzMariaDbVirtualNetworkRule", "New-AzMariaDbVirtualNetworkRule" ], - "FullCommandName": [ "New-AzMariaDbVirtualNetworkRule_CreateExpanded", "New-AzMariaDbVirtualNetworkRule_CreateExpanded" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "156" ], + "x-ms-client-request-id": [ "6b2b9bdf-1200-4829-908d-6f455588bcf1" ], + "CommandName": [ "New-AzMariaDbVirtualNetworkRule" ], + "FullCommandName": [ "New-AzMariaDbVirtualNetworkRule_CreateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -59,36 +59,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "7b1b9df7-7cee-47a4-8f9a-94464a8817a2" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11837" ], + "x-ms-request-id": [ "072cba4d-30b7-479e-879c-a7fab56b96db" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "4621e25f-c1db-446f-a310-a07fc9095cf8" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T025402Z:4621e25f-c1db-446f-a310-a07fc9095cf8" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11868" ], + "x-ms-correlation-request-id": [ "879cee23-1c40-419c-8ec2-a64a51c83204" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185132Z:879cee23-1c40-419c-8ec2-a64a51c83204" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:54:01 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:51:32 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"a7f9d1d5-3972-4e86-a776-2cd220816cd2\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-15T02:53:33.077Z\"}" + "Content": "{\"name\":\"885e7136-f9b8-4a68-a481-05c3a073966e\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-23T18:51:00.653Z\"}" } }, - "New-AzMariaDbVirtualNetworkRule+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-rteafu/virtualNetworkRules/vnetrule-001?api-version=2018-06-01-preview+3": { + "New-AzMariaDbVirtualNetworkRule+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-jtnizx/virtualNetworkRules/vnetrule-001?api-version=2018-06-01-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-rteafu/virtualNetworkRules/vnetrule-001?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-jtnizx/virtualNetworkRules/vnetrule-001?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "182", "183", "184" ], - "x-ms-client-request-id": [ "fc4f9325-b2d3-4db3-b88b-1fb38ee51232", "fc4f9325-b2d3-4db3-b88b-1fb38ee51232", "fc4f9325-b2d3-4db3-b88b-1fb38ee51232" ], - "CommandName": [ "New-AzMariaDbVirtualNetworkRule", "New-AzMariaDbVirtualNetworkRule", "New-AzMariaDbVirtualNetworkRule" ], - "FullCommandName": [ "New-AzMariaDbVirtualNetworkRule_CreateExpanded", "New-AzMariaDbVirtualNetworkRule_CreateExpanded", "New-AzMariaDbVirtualNetworkRule_CreateExpanded" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "157" ], + "x-ms-client-request-id": [ "6b2b9bdf-1200-4829-908d-6f455588bcf1" ], + "CommandName": [ "New-AzMariaDbVirtualNetworkRule" ], + "FullCommandName": [ "New-AzMariaDbVirtualNetworkRule_CreateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -98,31 +98,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "30515e25-49a1-4626-8444-3a996141063e" ], + "x-ms-request-id": [ "016c802d-945a-4bb9-973f-f13849292545" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11836" ], - "x-ms-correlation-request-id": [ "ac33502f-5aff-473f-9fcc-52810b8fe7a0" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T025403Z:ac33502f-5aff-473f-9fcc-52810b8fe7a0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11867" ], + "x-ms-correlation-request-id": [ "1690de59-22da-42a5-89ff-52a7b883c065" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185132Z:1690de59-22da-42a5-89ff-52a7b883c065" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:54:02 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:51:32 GMT" ] }, "ContentHeaders": { "Content-Length": [ "524" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"properties\":{\"virtualNetworkSubnetId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subvnet-01\",\"ignoreMissingVnetServiceEndpoint\":true,\"state\":\"Ready\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-rteafu/virtualNetworkRules/vnetrule-001\",\"name\":\"vnetrule-001\",\"type\":\"Microsoft.DBforMariaDB/servers/virtualNetworkRules\"}" + "Content": "{\"properties\":{\"virtualNetworkSubnetId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subvnet-01\",\"ignoreMissingVnetServiceEndpoint\":true,\"state\":\"Ready\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-jtnizx/virtualNetworkRules/vnetrule-001\",\"name\":\"vnetrule-001\",\"type\":\"Microsoft.DBforMariaDB/servers/virtualNetworkRules\"}" } }, - "New-AzMariaDbVirtualNetworkRule+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-rteafu/virtualNetworkRules/vnetrule-001?api-version=2018-06-01-preview+4": { + "New-AzMariaDbVirtualNetworkRule+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-jtnizx/virtualNetworkRules/vnetrule-001?api-version=2018-06-01-preview+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-rteafu/virtualNetworkRules/vnetrule-001?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-jtnizx/virtualNetworkRules/vnetrule-001?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "185" ], - "x-ms-client-request-id": [ "8c52b08e-b18a-4075-97be-d1d7027e1671" ], + "x-ms-unique-id": [ "158" ], + "x-ms-client-request-id": [ "d8708850-6ae5-48e1-a0ab-b95bb02ee712" ], "CommandName": [ "Get-AzMariaDbVirtualNetworkRule" ], "FullCommandName": [ "Get-AzMariaDbVirtualNetworkRule_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -137,21 +137,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "586bed1b-ad68-43dc-b182-f6ea7d5badfe" ], + "x-ms-request-id": [ "9771cf00-ab7e-4c2c-b492-9afb175c1651" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11835" ], - "x-ms-correlation-request-id": [ "0b12d4df-3cbe-4475-8b0f-9cc8a3642337" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T025403Z:0b12d4df-3cbe-4475-8b0f-9cc8a3642337" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11866" ], + "x-ms-correlation-request-id": [ "6abd129e-bad2-450d-8114-5bae7cce9c83" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185132Z:6abd129e-bad2-450d-8114-5bae7cce9c83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:54:02 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:51:32 GMT" ] }, "ContentHeaders": { "Content-Length": [ "524" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"properties\":{\"virtualNetworkSubnetId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subvnet-01\",\"ignoreMissingVnetServiceEndpoint\":true,\"state\":\"Ready\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-rteafu/virtualNetworkRules/vnetrule-001\",\"name\":\"vnetrule-001\",\"type\":\"Microsoft.DBforMariaDB/servers/virtualNetworkRules\"}" + "Content": "{\"properties\":{\"virtualNetworkSubnetId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subvnet-01\",\"ignoreMissingVnetServiceEndpoint\":true,\"state\":\"Ready\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-jtnizx/virtualNetworkRules/vnetrule-001\",\"name\":\"vnetrule-001\",\"type\":\"Microsoft.DBforMariaDB/servers/virtualNetworkRules\"}" } } } \ No newline at end of file diff --git a/src/MariaDb/test/Remove-AzMariaDbFirewallRule.Recording.json b/src/MariaDb/test/Remove-AzMariaDbFirewallRule.Recording.json index 67e325dc5390..3a3d233d07d3 100644 --- a/src/MariaDb/test/Remove-AzMariaDbFirewallRule.Recording.json +++ b/src/MariaDb/test/Remove-AzMariaDbFirewallRule.Recording.json @@ -1,12 +1,12 @@ { - "Remove-AzMariaDbFirewallRule+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y/firewallRules/fr-0aojzg?api-version=2018-06-01-preview+1": { + "Remove-AzMariaDbFirewallRule+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz/firewallRules/fr-taijos?api-version=2018-06-01-preview+1": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y/firewallRules/fr-0aojzg?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz/firewallRules/fr-taijos?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "186" ], - "x-ms-client-request-id": [ "57cee3ee-5cc0-433b-89f9-8c829f6483cb" ], + "x-ms-unique-id": [ "159" ], + "x-ms-client-request-id": [ "27309756-f6f3-423f-a336-b7c5313c6f8a" ], "CommandName": [ "Remove-AzMariaDBFirewallRule" ], "FullCommandName": [ "Remove-AzMariaDbFirewallRule_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -21,39 +21,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/be1d8eaf-3886-4ce4-aaa3-fbba00bafb7d?api-version=2018-06-01-preview" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/6168700b-5434-4a8c-94c5-00e8b914fab0?api-version=2018-06-01-preview" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/be1d8eaf-3886-4ce4-aaa3-fbba00bafb7d?api-version=2018-06-01-preview" ], - "x-ms-request-id": [ "be1d8eaf-3886-4ce4-aaa3-fbba00bafb7d" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/6168700b-5434-4a8c-94c5-00e8b914fab0?api-version=2018-06-01-preview" ], + "x-ms-request-id": [ "6168700b-5434-4a8c-94c5-00e8b914fab0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], - "x-ms-correlation-request-id": [ "442f190e-c65c-4e31-b361-2d843574e5ef" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T025405Z:442f190e-c65c-4e31-b361-2d843574e5ef" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], + "x-ms-correlation-request-id": [ "ae443ded-6f9f-44d3-b76d-2dc6f8841090" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185134Z:ae443ded-6f9f-44d3-b76d-2dc6f8841090" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:54:04 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:51:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "84" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"DropElasticServerFirewallRule\",\"startTime\":\"2020-04-15T02:54:04.153Z\"}" + "Content": "{\"operation\":\"DropElasticServerFirewallRule\",\"startTime\":\"2020-09-23T18:51:33.497Z\"}" } }, - "Remove-AzMariaDbFirewallRule+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/be1d8eaf-3886-4ce4-aaa3-fbba00bafb7d?api-version=2018-06-01-preview+2": { + "Remove-AzMariaDbFirewallRule+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/6168700b-5434-4a8c-94c5-00e8b914fab0?api-version=2018-06-01-preview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/be1d8eaf-3886-4ce4-aaa3-fbba00bafb7d?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/6168700b-5434-4a8c-94c5-00e8b914fab0?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "186", "187" ], - "x-ms-client-request-id": [ "57cee3ee-5cc0-433b-89f9-8c829f6483cb", "57cee3ee-5cc0-433b-89f9-8c829f6483cb" ], - "CommandName": [ "Remove-AzMariaDBFirewallRule", "Remove-AzMariaDBFirewallRule" ], - "FullCommandName": [ "Remove-AzMariaDbFirewallRule_Delete", "Remove-AzMariaDbFirewallRule_Delete" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "160" ], + "x-ms-client-request-id": [ "27309756-f6f3-423f-a336-b7c5313c6f8a" ], + "CommandName": [ "Remove-AzMariaDBFirewallRule" ], + "FullCommandName": [ "Remove-AzMariaDbFirewallRule_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -64,36 +64,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "8bd59801-628c-454b-b357-3b9b498eee74" ], + "x-ms-request-id": [ "ba58b2b2-1b46-453f-afd4-b87a88a3ab5d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11833" ], - "x-ms-correlation-request-id": [ "eaad2b1a-3ce4-4f95-a5c8-d20418840198" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T025419Z:eaad2b1a-3ce4-4f95-a5c8-d20418840198" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11865" ], + "x-ms-correlation-request-id": [ "31aa2a0f-b212-4474-9058-9b10c0ddeb6f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185150Z:31aa2a0f-b212-4474-9058-9b10c0ddeb6f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:54:19 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:51:49 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"be1d8eaf-3886-4ce4-aaa3-fbba00bafb7d\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-15T02:54:04.153Z\"}" + "Content": "{\"name\":\"6168700b-5434-4a8c-94c5-00e8b914fab0\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-23T18:51:33.497Z\"}" } }, - "Remove-AzMariaDbFirewallRule+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/be1d8eaf-3886-4ce4-aaa3-fbba00bafb7d?api-version=2018-06-01-preview+3": { + "Remove-AzMariaDbFirewallRule+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/6168700b-5434-4a8c-94c5-00e8b914fab0?api-version=2018-06-01-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/be1d8eaf-3886-4ce4-aaa3-fbba00bafb7d?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/6168700b-5434-4a8c-94c5-00e8b914fab0?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "186", "187", "188" ], - "x-ms-client-request-id": [ "57cee3ee-5cc0-433b-89f9-8c829f6483cb", "57cee3ee-5cc0-433b-89f9-8c829f6483cb", "57cee3ee-5cc0-433b-89f9-8c829f6483cb" ], - "CommandName": [ "Remove-AzMariaDBFirewallRule", "Remove-AzMariaDBFirewallRule", "Remove-AzMariaDBFirewallRule" ], - "FullCommandName": [ "Remove-AzMariaDbFirewallRule_Delete", "Remove-AzMariaDbFirewallRule_Delete", "Remove-AzMariaDbFirewallRule_Delete" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "161" ], + "x-ms-client-request-id": [ "27309756-f6f3-423f-a336-b7c5313c6f8a" ], + "CommandName": [ "Remove-AzMariaDBFirewallRule" ], + "FullCommandName": [ "Remove-AzMariaDbFirewallRule_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -103,14 +103,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "cb3ebedf-56ff-49bf-a707-95811a399a10" ], + "x-ms-request-id": [ "e38b63d4-4d35-4cbb-9250-8a4be81eab6b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11832" ], - "x-ms-correlation-request-id": [ "6ef66005-2dc0-46f9-ae1d-8af3d92628b1" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T025419Z:6ef66005-2dc0-46f9-ae1d-8af3d92628b1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11864" ], + "x-ms-correlation-request-id": [ "8a64885a-6c68-44b7-96f6-1b23ff9c34e2" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185150Z:8a64885a-6c68-44b7-96f6-1b23ff9c34e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:54:19 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:51:49 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -119,14 +119,14 @@ "Content": null } }, - "Remove-AzMariaDbFirewallRule+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y/firewallRules?api-version=2018-06-01-preview+4": { + "Remove-AzMariaDbFirewallRule+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz/firewallRules?api-version=2018-06-01-preview+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y/firewallRules?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz/firewallRules?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "189" ], - "x-ms-client-request-id": [ "65255734-5995-45b2-b7b6-56d3f2c9a1bc" ], + "x-ms-unique-id": [ "162" ], + "x-ms-client-request-id": [ "70d67e65-b8c7-4f2c-bb3e-1bb845d91306" ], "CommandName": [ "Get-AzMariaDbFirewallRule" ], "FullCommandName": [ "Get-AzMariaDbFirewallRule_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -141,21 +141,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "9c25356e-42d2-4dfe-8a88-b8c28668e998" ], + "x-ms-request-id": [ "2ac00583-9481-4cc7-b028-5b6387cf82eb" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11831" ], - "x-ms-correlation-request-id": [ "400affcc-4a6f-4c73-aaf2-1cc05416347d" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T025420Z:400affcc-4a6f-4c73-aaf2-1cc05416347d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11863" ], + "x-ms-correlation-request-id": [ "f9e3117a-f385-433e-877f-4ffacd7e3a45" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185150Z:f9e3117a-f385-433e-877f-4ffacd7e3a45" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:54:20 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:51:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "659" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"properties\":{\"startIpAddress\":\"0.0.0.1\",\"endIpAddress\":\"0.0.0.125\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y/firewallRules/fr-b1rws0\",\"name\":\"fr-b1rws0\",\"type\":\"Microsoft.DBforMariaDB/servers/firewallRules\"},{\"properties\":{\"startIpAddress\":\"0.0.2.1\",\"endIpAddress\":\"0.0.2.125\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y/firewallRules/frname-001\",\"name\":\"frname-001\",\"type\":\"Microsoft.DBforMariaDB/servers/firewallRules\"}]}" + "Content": "{\"value\":[{\"properties\":{\"startIpAddress\":\"0.0.0.1\",\"endIpAddress\":\"0.0.0.125\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz/firewallRules/fr-zy7auw\",\"name\":\"fr-zy7auw\",\"type\":\"Microsoft.DBforMariaDB/servers/firewallRules\"},{\"properties\":{\"startIpAddress\":\"0.0.2.1\",\"endIpAddress\":\"0.0.2.125\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz/firewallRules/frname-001\",\"name\":\"frname-001\",\"type\":\"Microsoft.DBforMariaDB/servers/firewallRules\"}]}" } } } \ No newline at end of file diff --git a/src/MariaDb/test/Remove-AzMariaDbServer.Recording.json b/src/MariaDb/test/Remove-AzMariaDbServer.Recording.json index 4bb239417552..f0a56b223555 100644 --- a/src/MariaDb/test/Remove-AzMariaDbServer.Recording.json +++ b/src/MariaDb/test/Remove-AzMariaDbServer.Recording.json @@ -1,12 +1,12 @@ { - "Remove-AzMariaDbServer+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-fluhs9?api-version=2018-06-01-preview+1": { + "Remove-AzMariaDbServer+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-6pxo10?api-version=2018-06-01-preview+1": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-fluhs9?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-6pxo10?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "190" ], - "x-ms-client-request-id": [ "adb8bdc7-6035-48b3-ab18-d777e825f84d" ], + "x-ms-unique-id": [ "163" ], + "x-ms-client-request-id": [ "b9c34c5b-eb5f-4e51-8754-2c7e56cb98c0" ], "CommandName": [ "Remove-AzMariaDbServer" ], "FullCommandName": [ "Remove-AzMariaDbServer_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -21,39 +21,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/10be2a1c-85c8-4591-890a-83119d8e2db8?api-version=2018-06-01-preview" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/b3cb74d2-79d5-4532-9bea-9a7efcb87a49?api-version=2018-06-01-preview" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/10be2a1c-85c8-4591-890a-83119d8e2db8?api-version=2018-06-01-preview" ], - "x-ms-request-id": [ "10be2a1c-85c8-4591-890a-83119d8e2db8" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/b3cb74d2-79d5-4532-9bea-9a7efcb87a49?api-version=2018-06-01-preview" ], + "x-ms-request-id": [ "b3cb74d2-79d5-4532-9bea-9a7efcb87a49" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], - "x-ms-correlation-request-id": [ "ba515b4c-41ee-496c-b3c0-acf8abbb26e8" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T025421Z:ba515b4c-41ee-496c-b3c0-acf8abbb26e8" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14996" ], + "x-ms-correlation-request-id": [ "2391b117-db82-4d48-afe6-357269f123f8" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185151Z:2391b117-db82-4d48-afe6-357269f123f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:54:21 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:51:51 GMT" ] }, "ContentHeaders": { "Content-Length": [ "72" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"DropElasticServer\",\"startTime\":\"2020-04-15T02:54:20.967Z\"}" + "Content": "{\"operation\":\"DropElasticServer\",\"startTime\":\"2020-09-23T18:51:51.577Z\"}" } }, - "Remove-AzMariaDbServer+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/10be2a1c-85c8-4591-890a-83119d8e2db8?api-version=2018-06-01-preview+2": { + "Remove-AzMariaDbServer+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/b3cb74d2-79d5-4532-9bea-9a7efcb87a49?api-version=2018-06-01-preview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/10be2a1c-85c8-4591-890a-83119d8e2db8?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/b3cb74d2-79d5-4532-9bea-9a7efcb87a49?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "190", "191" ], - "x-ms-client-request-id": [ "adb8bdc7-6035-48b3-ab18-d777e825f84d", "adb8bdc7-6035-48b3-ab18-d777e825f84d" ], - "CommandName": [ "Remove-AzMariaDbServer", "Remove-AzMariaDbServer" ], - "FullCommandName": [ "Remove-AzMariaDbServer_Delete", "Remove-AzMariaDbServer_Delete" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "164" ], + "x-ms-client-request-id": [ "b9c34c5b-eb5f-4e51-8754-2c7e56cb98c0" ], + "CommandName": [ "Remove-AzMariaDbServer" ], + "FullCommandName": [ "Remove-AzMariaDbServer_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -64,36 +64,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "a608fef0-de3c-4f59-8643-4d930aba57b1" ], + "x-ms-request-id": [ "55ef20d6-bacf-47d9-aa0d-2a7c2a272c37" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11830" ], - "x-ms-correlation-request-id": [ "e171780a-8d80-4081-94fb-6c72841ca917" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T025435Z:e171780a-8d80-4081-94fb-6c72841ca917" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11862" ], + "x-ms-correlation-request-id": [ "a9d83644-ec2a-4531-b131-e7c43748ab08" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185207Z:a9d83644-ec2a-4531-b131-e7c43748ab08" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:54:35 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:52:06 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"10be2a1c-85c8-4591-890a-83119d8e2db8\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-15T02:54:20.967Z\"}" + "Content": "{\"name\":\"b3cb74d2-79d5-4532-9bea-9a7efcb87a49\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-23T18:51:51.577Z\"}" } }, - "Remove-AzMariaDbServer+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/10be2a1c-85c8-4591-890a-83119d8e2db8?api-version=2018-06-01-preview+3": { + "Remove-AzMariaDbServer+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/b3cb74d2-79d5-4532-9bea-9a7efcb87a49?api-version=2018-06-01-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/10be2a1c-85c8-4591-890a-83119d8e2db8?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/b3cb74d2-79d5-4532-9bea-9a7efcb87a49?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "190", "191", "192" ], - "x-ms-client-request-id": [ "adb8bdc7-6035-48b3-ab18-d777e825f84d", "adb8bdc7-6035-48b3-ab18-d777e825f84d", "adb8bdc7-6035-48b3-ab18-d777e825f84d" ], - "CommandName": [ "Remove-AzMariaDbServer", "Remove-AzMariaDbServer", "Remove-AzMariaDbServer" ], - "FullCommandName": [ "Remove-AzMariaDbServer_Delete", "Remove-AzMariaDbServer_Delete", "Remove-AzMariaDbServer_Delete" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "165" ], + "x-ms-client-request-id": [ "b9c34c5b-eb5f-4e51-8754-2c7e56cb98c0" ], + "CommandName": [ "Remove-AzMariaDbServer" ], + "FullCommandName": [ "Remove-AzMariaDbServer_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -103,14 +103,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "8b542ece-b7e9-40ec-ba79-fe3d62a18314" ], + "x-ms-request-id": [ "d33d2cdf-9683-4c85-8a59-4c3294dd985e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11829" ], - "x-ms-correlation-request-id": [ "175fef0f-860b-4525-a4d8-ffe1d859cd55" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T025435Z:175fef0f-860b-4525-a4d8-ffe1d859cd55" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11861" ], + "x-ms-correlation-request-id": [ "36697dc0-105c-4834-9ef0-7049b887a692" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185207Z:36697dc0-105c-4834-9ef0-7049b887a692" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:54:35 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:52:06 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -119,14 +119,14 @@ "Content": null } }, - "Remove-AzMariaDbServer+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers?api-version=2018-06-01-preview+4": { + "Remove-AzMariaDbServer+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers?api-version=2018-06-01-preview+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "193" ], - "x-ms-client-request-id": [ "4c384db5-2050-4d5a-b97e-db2c6c225433" ], + "x-ms-unique-id": [ "166" ], + "x-ms-client-request-id": [ "5d5b51c7-8393-4b5e-83c3-871ae6041c26" ], "CommandName": [ "Get-AzMariaDbServer" ], "FullCommandName": [ "Get-AzMariaDbServer_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -141,31 +141,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "7929f293-2129-4b40-b38b-fde0303b1b06" ], + "x-ms-request-id": [ "4c8cfb2f-3153-44b9-a8fd-c7206b06c55a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11828" ], - "x-ms-correlation-request-id": [ "fafb7df2-1168-47d3-8dbe-7c8fb99f6b9a" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T025436Z:fafb7df2-1168-47d3-8dbe-7c8fb99f6b9a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11860" ], + "x-ms-correlation-request-id": [ "661b5657-4581-4673-8175-76d00edbacfd" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185207Z:661b5657-4581-4673-8175-76d00edbacfd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:54:35 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:52:07 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8203" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-l8ukfh.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:00:29.09+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh\",\"name\":\"mariadb-test-l8ukfh\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-zh5l7y.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:02:29.737+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y\",\"name\":\"mariadb-test-zh5l7y\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-rteafu.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:04:29.25+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-rteafu\",\"name\":\"mariadb-test-rteafu\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-plo24t.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:06:29.943+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24t\",\"name\":\"mariadb-test-plo24t\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-l34i9w.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:10:30.867+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l34i9w\",\"name\":\"mariadb-test-l34i9w\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Enabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-rteafu-rep783.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:30:09.347+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-rteafu-rep783\",\"name\":\"mariadb-test-rteafu-rep783\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-ybj8li.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:39:10.647+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-ybj8li\",\"name\":\"mariadb-test-ybj8li\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Enabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-vn5aic.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:45:12.597+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-vn5aic\",\"name\":\"mariadb-test-vn5aic\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Enabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-iynv8e.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:54:44.05+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-iynv8e\",\"name\":\"mariadb-test-iynv8e\",\"type\":\"Microsoft.DBforMariaDB/servers\"}]}" + "Content": "{\"value\":[{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-1imnpq.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:13:20.857+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq\",\"name\":\"mariadb-test-1imnpq\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-hqv3fz.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:15:28.063+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz\",\"name\":\"mariadb-test-hqv3fz\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-jtnizx.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:17:37.21+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-jtnizx\",\"name\":\"mariadb-test-jtnizx\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-mqe08f.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:18:43.773+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08f\",\"name\":\"mariadb-test-mqe08f\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-tqye9g.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:21:57.79+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-tqye9g\",\"name\":\"mariadb-test-tqye9g\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Enabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-jtnizx-rep015.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:26:07.807+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-jtnizx-rep015\",\"name\":\"mariadb-test-jtnizx-rep015\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Enabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-8ce260.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:40:25.13+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-8ce260\",\"name\":\"mariadb-test-8ce260\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Enabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-oxbjcp.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:50:41.893+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-oxbjcp\",\"name\":\"mariadb-test-oxbjcp\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-6s3vad.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:58:58.127+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-6s3vad\",\"name\":\"mariadb-test-6s3vad\",\"type\":\"Microsoft.DBforMariaDB/servers\"}]}" } }, - "Remove-AzMariaDbServer+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l34i9w?api-version=2018-06-01-preview+1": { + "Remove-AzMariaDbServer+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-tqye9g?api-version=2018-06-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l34i9w?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-tqye9g?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "194" ], - "x-ms-client-request-id": [ "01645993-6135-484b-bc4f-92fc560362a6" ], + "x-ms-unique-id": [ "167" ], + "x-ms-client-request-id": [ "52d614a0-a253-45a0-8c5d-b97e07fcbe5d" ], "CommandName": [ "Get-AzMariaDbServer" ], "FullCommandName": [ "Get-AzMariaDbServer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -180,31 +180,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "7549353b-2e37-4013-b53c-13b988abdc9c" ], + "x-ms-request-id": [ "a0f5e439-2242-47e3-888b-23af007533ab" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11827" ], - "x-ms-correlation-request-id": [ "49e2e3e4-59b4-4833-9348-2c26200b8b31" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T025436Z:49e2e3e4-59b4-4833-9348-2c26200b8b31" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11859" ], + "x-ms-correlation-request-id": [ "981ff4b6-e5a8-45ff-9fa5-258deda45280" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185208Z:981ff4b6-e5a8-45ff-9fa5-258deda45280" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:54:36 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:52:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "926" ], + "Content-Length": [ "925" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-l34i9w.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:10:30.867+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l34i9w\",\"name\":\"mariadb-test-l34i9w\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" + "Content": "{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-tqye9g.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:21:57.79+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-tqye9g\",\"name\":\"mariadb-test-tqye9g\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" } }, - "Remove-AzMariaDbServer+[NoContext]+DeleteViaIdentity+$DELETE+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l34i9w?api-version=2018-06-01-preview+2": { + "Remove-AzMariaDbServer+[NoContext]+DeleteViaIdentity+$DELETE+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-tqye9g?api-version=2018-06-01-preview+2": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l34i9w?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-tqye9g?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "195" ], - "x-ms-client-request-id": [ "55638b1b-c3a6-4808-a0cf-195b61a302a1" ], + "x-ms-unique-id": [ "168" ], + "x-ms-client-request-id": [ "feec0215-e090-403c-bbce-6527991edd9f" ], "CommandName": [ "Remove-AzMariaDbServer" ], "FullCommandName": [ "Remove-AzMariaDbServer_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -219,39 +219,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/4c2919f4-1769-4375-8cc9-e386567a2e96?api-version=2018-06-01-preview" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/9bbfc8f7-43dc-4ed8-89a4-f609c5e4594a?api-version=2018-06-01-preview" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/4c2919f4-1769-4375-8cc9-e386567a2e96?api-version=2018-06-01-preview" ], - "x-ms-request-id": [ "4c2919f4-1769-4375-8cc9-e386567a2e96" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/9bbfc8f7-43dc-4ed8-89a4-f609c5e4594a?api-version=2018-06-01-preview" ], + "x-ms-request-id": [ "9bbfc8f7-43dc-4ed8-89a4-f609c5e4594a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], - "x-ms-correlation-request-id": [ "d2380183-45be-4f27-a726-3e548e899259" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T025449Z:d2380183-45be-4f27-a726-3e548e899259" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14995" ], + "x-ms-correlation-request-id": [ "89ce2e85-db83-4b18-a6eb-c84f3488a8ad" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185208Z:89ce2e85-db83-4b18-a6eb-c84f3488a8ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:54:49 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:52:08 GMT" ] }, "ContentHeaders": { "Content-Length": [ "72" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"DropElasticServer\",\"startTime\":\"2020-04-15T02:54:49.687Z\"}" + "Content": "{\"operation\":\"DropElasticServer\",\"startTime\":\"2020-09-23T18:52:08.593Z\"}" } }, - "Remove-AzMariaDbServer+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/4c2919f4-1769-4375-8cc9-e386567a2e96?api-version=2018-06-01-preview+3": { + "Remove-AzMariaDbServer+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/9bbfc8f7-43dc-4ed8-89a4-f609c5e4594a?api-version=2018-06-01-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/4c2919f4-1769-4375-8cc9-e386567a2e96?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/9bbfc8f7-43dc-4ed8-89a4-f609c5e4594a?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "195", "196" ], - "x-ms-client-request-id": [ "55638b1b-c3a6-4808-a0cf-195b61a302a1", "55638b1b-c3a6-4808-a0cf-195b61a302a1" ], - "CommandName": [ "Remove-AzMariaDbServer", "Remove-AzMariaDbServer" ], - "FullCommandName": [ "Remove-AzMariaDbServer_DeleteViaIdentity", "Remove-AzMariaDbServer_DeleteViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "169" ], + "x-ms-client-request-id": [ "feec0215-e090-403c-bbce-6527991edd9f" ], + "CommandName": [ "Remove-AzMariaDbServer" ], + "FullCommandName": [ "Remove-AzMariaDbServer_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -262,36 +262,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "9c283c2d-6162-46ad-bd1d-48edebe07db2" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11832" ], + "x-ms-request-id": [ "95157f7e-a8e6-47d3-ae17-a8b4e3b8b425" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "1f8eb392-7551-4e9c-9489-0012b31bfa29" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T025504Z:1f8eb392-7551-4e9c-9489-0012b31bfa29" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11858" ], + "x-ms-correlation-request-id": [ "d2c162b8-6602-45a0-b0cb-00b5035fbd68" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185224Z:d2c162b8-6602-45a0-b0cb-00b5035fbd68" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:55:03 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:52:23 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"4c2919f4-1769-4375-8cc9-e386567a2e96\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-15T02:54:49.687Z\"}" + "Content": "{\"name\":\"9bbfc8f7-43dc-4ed8-89a4-f609c5e4594a\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-23T18:52:08.593Z\"}" } }, - "Remove-AzMariaDbServer+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/4c2919f4-1769-4375-8cc9-e386567a2e96?api-version=2018-06-01-preview+4": { + "Remove-AzMariaDbServer+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/9bbfc8f7-43dc-4ed8-89a4-f609c5e4594a?api-version=2018-06-01-preview+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/4c2919f4-1769-4375-8cc9-e386567a2e96?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/9bbfc8f7-43dc-4ed8-89a4-f609c5e4594a?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "195", "196", "197" ], - "x-ms-client-request-id": [ "55638b1b-c3a6-4808-a0cf-195b61a302a1", "55638b1b-c3a6-4808-a0cf-195b61a302a1", "55638b1b-c3a6-4808-a0cf-195b61a302a1" ], - "CommandName": [ "Remove-AzMariaDbServer", "Remove-AzMariaDbServer", "Remove-AzMariaDbServer" ], - "FullCommandName": [ "Remove-AzMariaDbServer_DeleteViaIdentity", "Remove-AzMariaDbServer_DeleteViaIdentity", "Remove-AzMariaDbServer_DeleteViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "170" ], + "x-ms-client-request-id": [ "feec0215-e090-403c-bbce-6527991edd9f" ], + "CommandName": [ "Remove-AzMariaDbServer" ], + "FullCommandName": [ "Remove-AzMariaDbServer_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -301,14 +301,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "76cdb29e-a153-42af-8923-7a6689c42e9a" ], + "x-ms-request-id": [ "3828e244-6f9d-4066-a058-09ba5a0be2f8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11831" ], - "x-ms-correlation-request-id": [ "82bad5c7-1cd3-45ed-a296-cd48cd3cce3c" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T025505Z:82bad5c7-1cd3-45ed-a296-cd48cd3cce3c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11857" ], + "x-ms-correlation-request-id": [ "31ee36b3-12f3-4ba8-9f32-8dacd809aa9d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185224Z:31ee36b3-12f3-4ba8-9f32-8dacd809aa9d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:55:04 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:52:23 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -317,14 +317,14 @@ "Content": null } }, - "Remove-AzMariaDbServer+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers?api-version=2018-06-01-preview+5": { + "Remove-AzMariaDbServer+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers?api-version=2018-06-01-preview+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "198" ], - "x-ms-client-request-id": [ "05c8da68-acea-4fed-a30b-36c34b884f0d" ], + "x-ms-unique-id": [ "171" ], + "x-ms-client-request-id": [ "3b5504bd-7ddc-43b2-b4b3-8dcf1685319c" ], "CommandName": [ "Get-AzMariaDbServer" ], "FullCommandName": [ "Get-AzMariaDbServer_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -339,21 +339,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "c1194911-fc69-4682-9318-37c5f28195c5" ], + "x-ms-request-id": [ "553ed9c4-78e5-4cdd-b8cb-b21cdf381590" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11830" ], - "x-ms-correlation-request-id": [ "eee0cb02-17ad-445b-8748-b8aa6aa20673" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T025505Z:eee0cb02-17ad-445b-8748-b8aa6aa20673" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11856" ], + "x-ms-correlation-request-id": [ "721dd2e2-b3ed-4b24-96a3-d3d39830d2a9" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185224Z:721dd2e2-b3ed-4b24-96a3-d3d39830d2a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:55:04 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:52:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7300" ], + "Content-Length": [ "7301" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-l8ukfh.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:00:29.09+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh\",\"name\":\"mariadb-test-l8ukfh\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-zh5l7y.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:02:29.737+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y\",\"name\":\"mariadb-test-zh5l7y\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-rteafu.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:04:29.25+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-rteafu\",\"name\":\"mariadb-test-rteafu\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-plo24t.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:06:29.943+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24t\",\"name\":\"mariadb-test-plo24t\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Enabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-rteafu-rep783.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:30:09.347+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-rteafu-rep783\",\"name\":\"mariadb-test-rteafu-rep783\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-ybj8li.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:39:10.647+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-ybj8li\",\"name\":\"mariadb-test-ybj8li\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Enabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-vn5aic.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:45:12.597+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-vn5aic\",\"name\":\"mariadb-test-vn5aic\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Enabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-iynv8e.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:54:44.05+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-iynv8e\",\"name\":\"mariadb-test-iynv8e\",\"type\":\"Microsoft.DBforMariaDB/servers\"}]}" + "Content": "{\"value\":[{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-1imnpq.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:13:20.857+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq\",\"name\":\"mariadb-test-1imnpq\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-hqv3fz.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:15:28.063+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz\",\"name\":\"mariadb-test-hqv3fz\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-jtnizx.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:17:37.21+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-jtnizx\",\"name\":\"mariadb-test-jtnizx\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-mqe08f.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:18:43.773+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08f\",\"name\":\"mariadb-test-mqe08f\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Enabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-jtnizx-rep015.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:26:07.807+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-jtnizx-rep015\",\"name\":\"mariadb-test-jtnizx-rep015\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Enabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-8ce260.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:40:25.13+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-8ce260\",\"name\":\"mariadb-test-8ce260\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Enabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-oxbjcp.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:50:41.893+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-oxbjcp\",\"name\":\"mariadb-test-oxbjcp\",\"type\":\"Microsoft.DBforMariaDB/servers\"},{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-6s3vad.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:58:58.127+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-6s3vad\",\"name\":\"mariadb-test-6s3vad\",\"type\":\"Microsoft.DBforMariaDB/servers\"}]}" } } } \ No newline at end of file diff --git a/src/MariaDb/test/Remove-AzMariaDbVirtualNetworkRule.Recording.json b/src/MariaDb/test/Remove-AzMariaDbVirtualNetworkRule.Recording.json index 63dbddf5a12f..31336e3a04ec 100644 --- a/src/MariaDb/test/Remove-AzMariaDbVirtualNetworkRule.Recording.json +++ b/src/MariaDb/test/Remove-AzMariaDbVirtualNetworkRule.Recording.json @@ -1,12 +1,12 @@ { - "Remove-AzMariaDbVirtualNetworkRule+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24t/virtualNetworkRules/vnetrule-mTJnQk?api-version=2018-06-01-preview+1": { + "Remove-AzMariaDbVirtualNetworkRule+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08f/virtualNetworkRules/vnetrule-zXBYZU?api-version=2018-06-01-preview+1": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24t/virtualNetworkRules/vnetrule-mTJnQk?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08f/virtualNetworkRules/vnetrule-zXBYZU?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "199" ], - "x-ms-client-request-id": [ "bb236771-08e0-410b-ab1f-54946f3a3643" ], + "x-ms-unique-id": [ "172" ], + "x-ms-client-request-id": [ "f706f423-c5dc-4703-be83-e1cd426a477e" ], "CommandName": [ "Remove-AzMariaDbVirtualNetworkRule" ], "FullCommandName": [ "Remove-AzMariaDbVirtualNetworkRule_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -21,39 +21,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/8fe15b75-012b-4d03-81f8-c86cfc570670?api-version=2018-06-01-preview" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/e0f177cc-c497-41cd-b923-8a816cbc73f3?api-version=2018-06-01-preview" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8fe15b75-012b-4d03-81f8-c86cfc570670?api-version=2018-06-01-preview" ], - "x-ms-request-id": [ "8fe15b75-012b-4d03-81f8-c86cfc570670" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e0f177cc-c497-41cd-b923-8a816cbc73f3?api-version=2018-06-01-preview" ], + "x-ms-request-id": [ "e0f177cc-c497-41cd-b923-8a816cbc73f3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14996" ], - "x-ms-correlation-request-id": [ "78f80f9d-72b8-44a8-bf19-3556562f9259" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T025507Z:78f80f9d-72b8-44a8-bf19-3556562f9259" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14994" ], + "x-ms-correlation-request-id": [ "b03421cf-a646-470c-ae6e-dcc0999ea3f2" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185226Z:b03421cf-a646-470c-ae6e-dcc0999ea3f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:55:06 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:52:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "88" ], + "Content-Length": [ "87" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"DropElasticServerVnetFirewallRule\",\"startTime\":\"2020-04-15T02:55:06.003Z\"}" + "Content": "{\"operation\":\"DropElasticServerVnetFirewallRule\",\"startTime\":\"2020-09-23T18:52:25.31Z\"}" } }, - "Remove-AzMariaDbVirtualNetworkRule+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8fe15b75-012b-4d03-81f8-c86cfc570670?api-version=2018-06-01-preview+2": { + "Remove-AzMariaDbVirtualNetworkRule+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e0f177cc-c497-41cd-b923-8a816cbc73f3?api-version=2018-06-01-preview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8fe15b75-012b-4d03-81f8-c86cfc570670?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e0f177cc-c497-41cd-b923-8a816cbc73f3?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "199", "200" ], - "x-ms-client-request-id": [ "bb236771-08e0-410b-ab1f-54946f3a3643", "bb236771-08e0-410b-ab1f-54946f3a3643" ], - "CommandName": [ "Remove-AzMariaDbVirtualNetworkRule", "Remove-AzMariaDbVirtualNetworkRule" ], - "FullCommandName": [ "Remove-AzMariaDbVirtualNetworkRule_Delete", "Remove-AzMariaDbVirtualNetworkRule_Delete" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "173" ], + "x-ms-client-request-id": [ "f706f423-c5dc-4703-be83-e1cd426a477e" ], + "CommandName": [ "Remove-AzMariaDbVirtualNetworkRule" ], + "FullCommandName": [ "Remove-AzMariaDbVirtualNetworkRule_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -64,36 +64,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "e822c897-eebe-46b7-9dbf-3510192ca55d" ], + "x-ms-request-id": [ "333a8d86-2f54-4024-8906-67dd1badf725" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11829" ], - "x-ms-correlation-request-id": [ "cc620b45-d933-4d85-ae50-13db9bac7962" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T025521Z:cc620b45-d933-4d85-ae50-13db9bac7962" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11855" ], + "x-ms-correlation-request-id": [ "43c9e222-ee46-4b14-a01f-43736120aff0" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185241Z:43c9e222-ee46-4b14-a01f-43736120aff0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:55:20 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:52:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "106" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"8fe15b75-012b-4d03-81f8-c86cfc570670\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-15T02:55:06.003Z\"}" + "Content": "{\"name\":\"e0f177cc-c497-41cd-b923-8a816cbc73f3\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-23T18:52:25.31Z\"}" } }, - "Remove-AzMariaDbVirtualNetworkRule+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/8fe15b75-012b-4d03-81f8-c86cfc570670?api-version=2018-06-01-preview+3": { + "Remove-AzMariaDbVirtualNetworkRule+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/e0f177cc-c497-41cd-b923-8a816cbc73f3?api-version=2018-06-01-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/8fe15b75-012b-4d03-81f8-c86cfc570670?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/e0f177cc-c497-41cd-b923-8a816cbc73f3?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "199", "200", "201" ], - "x-ms-client-request-id": [ "bb236771-08e0-410b-ab1f-54946f3a3643", "bb236771-08e0-410b-ab1f-54946f3a3643", "bb236771-08e0-410b-ab1f-54946f3a3643" ], - "CommandName": [ "Remove-AzMariaDbVirtualNetworkRule", "Remove-AzMariaDbVirtualNetworkRule", "Remove-AzMariaDbVirtualNetworkRule" ], - "FullCommandName": [ "Remove-AzMariaDbVirtualNetworkRule_Delete", "Remove-AzMariaDbVirtualNetworkRule_Delete", "Remove-AzMariaDbVirtualNetworkRule_Delete" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "174" ], + "x-ms-client-request-id": [ "f706f423-c5dc-4703-be83-e1cd426a477e" ], + "CommandName": [ "Remove-AzMariaDbVirtualNetworkRule" ], + "FullCommandName": [ "Remove-AzMariaDbVirtualNetworkRule_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -103,14 +103,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "901e623c-6227-4edc-b9db-d60b9b497887" ], + "x-ms-request-id": [ "6a928139-1679-476d-a943-def5f5733b25" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11828" ], - "x-ms-correlation-request-id": [ "42a49151-8774-4aa1-9620-88aa8180ad6e" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T025521Z:42a49151-8774-4aa1-9620-88aa8180ad6e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11854" ], + "x-ms-correlation-request-id": [ "74126ddf-1d10-4d42-bb2d-eda8d3f5280b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185242Z:74126ddf-1d10-4d42-bb2d-eda8d3f5280b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:55:20 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:52:41 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -119,14 +119,14 @@ "Content": null } }, - "Remove-AzMariaDbVirtualNetworkRule+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24t/virtualNetworkRules?api-version=2018-06-01-preview+4": { + "Remove-AzMariaDbVirtualNetworkRule+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08f/virtualNetworkRules?api-version=2018-06-01-preview+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24t/virtualNetworkRules?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08f/virtualNetworkRules?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "202" ], - "x-ms-client-request-id": [ "28c965ac-1fb1-4fd8-aca1-cbcf124bec06" ], + "x-ms-unique-id": [ "175" ], + "x-ms-client-request-id": [ "a25f5495-9f13-40cc-88c6-c1430d637f55" ], "CommandName": [ "Get-AzMariaDbVirtualNetworkRule" ], "FullCommandName": [ "Get-AzMariaDbVirtualNetworkRule_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -141,21 +141,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "385eaae0-70fd-4b64-bfbf-a4a03f074962" ], + "x-ms-request-id": [ "0388cb96-8c75-4844-b201-c2a799c7e93c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11827" ], - "x-ms-correlation-request-id": [ "2129d27e-3329-44b9-9397-666b62006e75" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T025522Z:2129d27e-3329-44b9-9397-666b62006e75" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11853" ], + "x-ms-correlation-request-id": [ "730cfec5-aaac-4047-8582-90c5ccf9e1cb" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185242Z:730cfec5-aaac-4047-8582-90c5ccf9e1cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:55:21 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:52:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "542" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"properties\":{\"virtualNetworkSubnetId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subvnet-02\",\"ignoreMissingVnetServiceEndpoint\":true,\"state\":\"Ready\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24t/virtualNetworkRules/vnetrule-ETLsVU\",\"name\":\"vnetrule-ETLsVU\",\"type\":\"Microsoft.DBforMariaDB/servers/virtualNetworkRules\"}]}" + "Content": "{\"value\":[{\"properties\":{\"virtualNetworkSubnetId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subvnet-02\",\"ignoreMissingVnetServiceEndpoint\":true,\"state\":\"Ready\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08f/virtualNetworkRules/vnetrule-hocaiu\",\"name\":\"vnetrule-hocaiu\",\"type\":\"Microsoft.DBforMariaDB/servers/virtualNetworkRules\"}]}" } } } \ No newline at end of file diff --git a/src/MariaDb/test/Restart-AzMariaDbServer.Recording.json b/src/MariaDb/test/Restart-AzMariaDbServer.Recording.json index 400ec4ca5443..5a86c7fc2bac 100644 --- a/src/MariaDb/test/Restart-AzMariaDbServer.Recording.json +++ b/src/MariaDb/test/Restart-AzMariaDbServer.Recording.json @@ -1,12 +1,12 @@ { - "Restart-AzMariaDbServer+[NoContext]+Restart+$POST+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/restart?api-version=2018-06-01-preview+1": { + "Restart-AzMariaDbServer+[NoContext]+Restart+$POST+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/restart?api-version=2018-06-01-preview+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/restart?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/restart?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "203" ], - "x-ms-client-request-id": [ "f9e1df36-1574-4d68-a827-431718a946e3" ], + "x-ms-unique-id": [ "176" ], + "x-ms-client-request-id": [ "0ec6a64f-d661-4038-a899-4913a54e8e5e" ], "CommandName": [ "Az.MariaDb.internal\\Restart-AzMariaDbServer" ], "FullCommandName": [ "Restart-AzMariaDbServer_Restart" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -21,79 +21,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/419ed145-0302-4c78-8cab-2c6ca556b7a3?api-version=2018-06-01-preview" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/f3876145-6af3-4174-8358-d3cad3de0c5d?api-version=2018-06-01-preview" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/419ed145-0302-4c78-8cab-2c6ca556b7a3?api-version=2018-06-01-preview" ], - "x-ms-request-id": [ "419ed145-0302-4c78-8cab-2c6ca556b7a3" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/f3876145-6af3-4174-8358-d3cad3de0c5d?api-version=2018-06-01-preview" ], + "x-ms-request-id": [ "f3876145-6af3-4174-8358-d3cad3de0c5d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-correlation-request-id": [ "918ea888-328b-4cb9-99bd-aab96284189a" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T025522Z:918ea888-328b-4cb9-99bd-aab96284189a" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:55:21 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "75" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"operation\":\"RestartElasticServer\",\"startTime\":\"2020-04-15T02:55:22.597Z\"}" - } - }, - "Restart-AzMariaDbServer+[NoContext]+Restart+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/419ed145-0302-4c78-8cab-2c6ca556b7a3?api-version=2018-06-01-preview+2": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/419ed145-0302-4c78-8cab-2c6ca556b7a3?api-version=2018-06-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "203", "204" ], - "x-ms-client-request-id": [ "f9e1df36-1574-4d68-a827-431718a946e3", "f9e1df36-1574-4d68-a827-431718a946e3" ], - "CommandName": [ "Az.MariaDb.internal\\Restart-AzMariaDbServer", "Az.MariaDb.internal\\Restart-AzMariaDbServer" ], - "FullCommandName": [ "Restart-AzMariaDbServer_Restart", "Restart-AzMariaDbServer_Restart" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Retry-After": [ "15" ], - "x-ms-request-id": [ "cd377956-172b-4505-bd47-cc3be63a866b" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11826" ], - "x-ms-correlation-request-id": [ "cc192952-29ae-4858-9028-4eb39ef3811a" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T025536Z:cc192952-29ae-4858-9028-4eb39ef3811a" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], + "x-ms-correlation-request-id": [ "f026ed8a-f418-439d-95ed-cc0f7cca9bc0" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185243Z:f026ed8a-f418-439d-95ed-cc0f7cca9bc0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:55:36 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:52:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "108" ], + "Content-Length": [ "74" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"419ed145-0302-4c78-8cab-2c6ca556b7a3\",\"status\":\"InProgress\",\"startTime\":\"2020-04-15T02:55:22.597Z\"}" + "Content": "{\"operation\":\"RestartElasticServer\",\"startTime\":\"2020-09-23T18:52:43.03Z\"}" } }, - "Restart-AzMariaDbServer+[NoContext]+Restart+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/419ed145-0302-4c78-8cab-2c6ca556b7a3?api-version=2018-06-01-preview+3": { + "Restart-AzMariaDbServer+[NoContext]+Restart+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/f3876145-6af3-4174-8358-d3cad3de0c5d?api-version=2018-06-01-preview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/419ed145-0302-4c78-8cab-2c6ca556b7a3?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/f3876145-6af3-4174-8358-d3cad3de0c5d?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "203", "204", "205" ], - "x-ms-client-request-id": [ "f9e1df36-1574-4d68-a827-431718a946e3", "f9e1df36-1574-4d68-a827-431718a946e3", "f9e1df36-1574-4d68-a827-431718a946e3" ], - "CommandName": [ "Az.MariaDb.internal\\Restart-AzMariaDbServer", "Az.MariaDb.internal\\Restart-AzMariaDbServer", "Az.MariaDb.internal\\Restart-AzMariaDbServer" ], - "FullCommandName": [ "Restart-AzMariaDbServer_Restart", "Restart-AzMariaDbServer_Restart", "Restart-AzMariaDbServer_Restart" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "177" ], + "x-ms-client-request-id": [ "0ec6a64f-d661-4038-a899-4913a54e8e5e" ], + "CommandName": [ "Az.MariaDb.internal\\Restart-AzMariaDbServer" ], + "FullCommandName": [ "Restart-AzMariaDbServer_Restart" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -104,36 +64,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "849eed86-4a23-40f7-8c39-014a1d0ba0dc" ], + "x-ms-request-id": [ "7efe7c64-037e-4ff9-883d-35de2ea0081e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11825" ], - "x-ms-correlation-request-id": [ "d85e3b80-51c7-490d-82ac-69f441922bda" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T025551Z:d85e3b80-51c7-490d-82ac-69f441922bda" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11852" ], + "x-ms-correlation-request-id": [ "daf6484c-471a-4790-b848-8c598bc904ff" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185258Z:daf6484c-471a-4790-b848-8c598bc904ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:55:50 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:52:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "108" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"419ed145-0302-4c78-8cab-2c6ca556b7a3\",\"status\":\"InProgress\",\"startTime\":\"2020-04-15T02:55:22.597Z\"}" + "Content": "{\"name\":\"f3876145-6af3-4174-8358-d3cad3de0c5d\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:52:43.03Z\"}" } }, - "Restart-AzMariaDbServer+[NoContext]+Restart+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/419ed145-0302-4c78-8cab-2c6ca556b7a3?api-version=2018-06-01-preview+4": { + "Restart-AzMariaDbServer+[NoContext]+Restart+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/f3876145-6af3-4174-8358-d3cad3de0c5d?api-version=2018-06-01-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/419ed145-0302-4c78-8cab-2c6ca556b7a3?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/f3876145-6af3-4174-8358-d3cad3de0c5d?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "203", "204", "205", "206" ], - "x-ms-client-request-id": [ "f9e1df36-1574-4d68-a827-431718a946e3", "f9e1df36-1574-4d68-a827-431718a946e3", "f9e1df36-1574-4d68-a827-431718a946e3", "f9e1df36-1574-4d68-a827-431718a946e3" ], - "CommandName": [ "Az.MariaDb.internal\\Restart-AzMariaDbServer", "Az.MariaDb.internal\\Restart-AzMariaDbServer", "Az.MariaDb.internal\\Restart-AzMariaDbServer", "Az.MariaDb.internal\\Restart-AzMariaDbServer" ], - "FullCommandName": [ "Restart-AzMariaDbServer_Restart", "Restart-AzMariaDbServer_Restart", "Restart-AzMariaDbServer_Restart", "Restart-AzMariaDbServer_Restart" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "178" ], + "x-ms-client-request-id": [ "0ec6a64f-d661-4038-a899-4913a54e8e5e" ], + "CommandName": [ "Az.MariaDb.internal\\Restart-AzMariaDbServer" ], + "FullCommandName": [ "Restart-AzMariaDbServer_Restart" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -144,36 +104,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "5e9171a2-050c-4c47-ba23-dd2e196bf805" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11824" ], + "x-ms-request-id": [ "77d9e94c-ed29-476c-9c12-acee5aaee9a7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "4afd08d6-02df-415e-afa1-545019dbaa6c" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T025605Z:4afd08d6-02df-415e-afa1-545019dbaa6c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11851" ], + "x-ms-correlation-request-id": [ "268402bc-4778-4a85-9ba3-90f973c1957e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185313Z:268402bc-4778-4a85-9ba3-90f973c1957e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:56:05 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:53:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "108" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"419ed145-0302-4c78-8cab-2c6ca556b7a3\",\"status\":\"InProgress\",\"startTime\":\"2020-04-15T02:55:22.597Z\"}" + "Content": "{\"name\":\"f3876145-6af3-4174-8358-d3cad3de0c5d\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:52:43.03Z\"}" } }, - "Restart-AzMariaDbServer+[NoContext]+Restart+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/419ed145-0302-4c78-8cab-2c6ca556b7a3?api-version=2018-06-01-preview+5": { + "Restart-AzMariaDbServer+[NoContext]+Restart+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/f3876145-6af3-4174-8358-d3cad3de0c5d?api-version=2018-06-01-preview+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/419ed145-0302-4c78-8cab-2c6ca556b7a3?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/f3876145-6af3-4174-8358-d3cad3de0c5d?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "203", "204", "205", "206", "207" ], - "x-ms-client-request-id": [ "f9e1df36-1574-4d68-a827-431718a946e3", "f9e1df36-1574-4d68-a827-431718a946e3", "f9e1df36-1574-4d68-a827-431718a946e3", "f9e1df36-1574-4d68-a827-431718a946e3", "f9e1df36-1574-4d68-a827-431718a946e3" ], - "CommandName": [ "Az.MariaDb.internal\\Restart-AzMariaDbServer", "Az.MariaDb.internal\\Restart-AzMariaDbServer", "Az.MariaDb.internal\\Restart-AzMariaDbServer", "Az.MariaDb.internal\\Restart-AzMariaDbServer", "Az.MariaDb.internal\\Restart-AzMariaDbServer" ], - "FullCommandName": [ "Restart-AzMariaDbServer_Restart", "Restart-AzMariaDbServer_Restart", "Restart-AzMariaDbServer_Restart", "Restart-AzMariaDbServer_Restart", "Restart-AzMariaDbServer_Restart" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "179" ], + "x-ms-client-request-id": [ "0ec6a64f-d661-4038-a899-4913a54e8e5e" ], + "CommandName": [ "Az.MariaDb.internal\\Restart-AzMariaDbServer" ], + "FullCommandName": [ "Restart-AzMariaDbServer_Restart" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -184,36 +144,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "6cba52f7-0584-47f6-aa3f-9ca40388105b" ], + "x-ms-request-id": [ "495aef89-2e78-45cb-8c6c-e200afc5beee" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11823" ], - "x-ms-correlation-request-id": [ "6d543bbf-0cd2-4849-b8ef-04486b167418" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T025620Z:6d543bbf-0cd2-4849-b8ef-04486b167418" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11850" ], + "x-ms-correlation-request-id": [ "6a8b746b-4565-47e1-9b01-a7410b9751a6" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185329Z:6a8b746b-4565-47e1-9b01-a7410b9751a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:56:19 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:53:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "108" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"419ed145-0302-4c78-8cab-2c6ca556b7a3\",\"status\":\"InProgress\",\"startTime\":\"2020-04-15T02:55:22.597Z\"}" + "Content": "{\"name\":\"f3876145-6af3-4174-8358-d3cad3de0c5d\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:52:43.03Z\"}" } }, - "Restart-AzMariaDbServer+[NoContext]+Restart+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/419ed145-0302-4c78-8cab-2c6ca556b7a3?api-version=2018-06-01-preview+6": { + "Restart-AzMariaDbServer+[NoContext]+Restart+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/f3876145-6af3-4174-8358-d3cad3de0c5d?api-version=2018-06-01-preview+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/419ed145-0302-4c78-8cab-2c6ca556b7a3?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/f3876145-6af3-4174-8358-d3cad3de0c5d?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "203", "204", "205", "206", "207", "208" ], - "x-ms-client-request-id": [ "f9e1df36-1574-4d68-a827-431718a946e3", "f9e1df36-1574-4d68-a827-431718a946e3", "f9e1df36-1574-4d68-a827-431718a946e3", "f9e1df36-1574-4d68-a827-431718a946e3", "f9e1df36-1574-4d68-a827-431718a946e3", "f9e1df36-1574-4d68-a827-431718a946e3" ], - "CommandName": [ "Az.MariaDb.internal\\Restart-AzMariaDbServer", "Az.MariaDb.internal\\Restart-AzMariaDbServer", "Az.MariaDb.internal\\Restart-AzMariaDbServer", "Az.MariaDb.internal\\Restart-AzMariaDbServer", "Az.MariaDb.internal\\Restart-AzMariaDbServer", "Az.MariaDb.internal\\Restart-AzMariaDbServer" ], - "FullCommandName": [ "Restart-AzMariaDbServer_Restart", "Restart-AzMariaDbServer_Restart", "Restart-AzMariaDbServer_Restart", "Restart-AzMariaDbServer_Restart", "Restart-AzMariaDbServer_Restart", "Restart-AzMariaDbServer_Restart" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "180" ], + "x-ms-client-request-id": [ "0ec6a64f-d661-4038-a899-4913a54e8e5e" ], + "CommandName": [ "Az.MariaDb.internal\\Restart-AzMariaDbServer" ], + "FullCommandName": [ "Restart-AzMariaDbServer_Restart" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -224,36 +184,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "8aa8ab2f-8ebd-4ea3-8cfb-d1392fecdf8f" ], + "x-ms-request-id": [ "97f8b2e7-f144-4af7-87a9-95c0466c5bde" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11822" ], - "x-ms-correlation-request-id": [ "695104a4-0bcb-459c-b5ec-c041946dbfcc" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T025634Z:695104a4-0bcb-459c-b5ec-c041946dbfcc" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11849" ], + "x-ms-correlation-request-id": [ "b2e4d6c1-d77d-45f9-8d68-91d78ea22596" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185344Z:b2e4d6c1-d77d-45f9-8d68-91d78ea22596" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:56:33 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:53:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "106" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"419ed145-0302-4c78-8cab-2c6ca556b7a3\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-15T02:55:22.597Z\"}" + "Content": "{\"name\":\"f3876145-6af3-4174-8358-d3cad3de0c5d\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-23T18:52:43.03Z\"}" } }, - "Restart-AzMariaDbServer+[NoContext]+Restart+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/419ed145-0302-4c78-8cab-2c6ca556b7a3?api-version=2018-06-01-preview+7": { + "Restart-AzMariaDbServer+[NoContext]+Restart+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/f3876145-6af3-4174-8358-d3cad3de0c5d?api-version=2018-06-01-preview+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/419ed145-0302-4c78-8cab-2c6ca556b7a3?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/f3876145-6af3-4174-8358-d3cad3de0c5d?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "203", "204", "205", "206", "207", "208", "209" ], - "x-ms-client-request-id": [ "f9e1df36-1574-4d68-a827-431718a946e3", "f9e1df36-1574-4d68-a827-431718a946e3", "f9e1df36-1574-4d68-a827-431718a946e3", "f9e1df36-1574-4d68-a827-431718a946e3", "f9e1df36-1574-4d68-a827-431718a946e3", "f9e1df36-1574-4d68-a827-431718a946e3", "f9e1df36-1574-4d68-a827-431718a946e3" ], - "CommandName": [ "Az.MariaDb.internal\\Restart-AzMariaDbServer", "Az.MariaDb.internal\\Restart-AzMariaDbServer", "Az.MariaDb.internal\\Restart-AzMariaDbServer", "Az.MariaDb.internal\\Restart-AzMariaDbServer", "Az.MariaDb.internal\\Restart-AzMariaDbServer", "Az.MariaDb.internal\\Restart-AzMariaDbServer", "Az.MariaDb.internal\\Restart-AzMariaDbServer" ], - "FullCommandName": [ "Restart-AzMariaDbServer_Restart", "Restart-AzMariaDbServer_Restart", "Restart-AzMariaDbServer_Restart", "Restart-AzMariaDbServer_Restart", "Restart-AzMariaDbServer_Restart", "Restart-AzMariaDbServer_Restart", "Restart-AzMariaDbServer_Restart" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "181" ], + "x-ms-client-request-id": [ "0ec6a64f-d661-4038-a899-4913a54e8e5e" ], + "CommandName": [ "Az.MariaDb.internal\\Restart-AzMariaDbServer" ], + "FullCommandName": [ "Restart-AzMariaDbServer_Restart" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -263,14 +223,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "fac240fa-78a1-4fe3-a45d-5e0ed7a20c03" ], + "x-ms-request-id": [ "c72e1cf2-75b5-4893-bf6b-b7529c491a11" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11821" ], - "x-ms-correlation-request-id": [ "5d57711f-c1f2-44fd-afa2-17d6062fa448" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T025634Z:5d57711f-c1f2-44fd-afa2-17d6062fa448" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11848" ], + "x-ms-correlation-request-id": [ "baf14a4c-0a4a-43b9-908e-75683a3212e1" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185344Z:baf14a4c-0a4a-43b9-908e-75683a3212e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:56:34 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:53:44 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -279,14 +239,14 @@ "Content": null } }, - "Restart-AzMariaDbServer+[NoContext]+Restart+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh?api-version=2018-06-01-preview+8": { + "Restart-AzMariaDbServer+[NoContext]+Restart+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq?api-version=2018-06-01-preview+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "210" ], - "x-ms-client-request-id": [ "3a11f1e4-598d-44c8-8de9-4380b1c724bb" ], + "x-ms-unique-id": [ "182" ], + "x-ms-client-request-id": [ "44fd89e7-7b80-4c86-a62e-0fc4285bcee5" ], "CommandName": [ "Get-AzMariaDbServer" ], "FullCommandName": [ "Get-AzMariaDbServer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -301,31 +261,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "7504fd08-169a-4ffd-bbfc-e5842fb8247f" ], + "x-ms-request-id": [ "8b52076f-0e19-4204-9ae5-a121c6b34882" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11820" ], - "x-ms-correlation-request-id": [ "fbddadb8-dbb1-4abe-96e3-9ad2412d64b6" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T025635Z:fbddadb8-dbb1-4abe-96e3-9ad2412d64b6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11847" ], + "x-ms-correlation-request-id": [ "572e731f-e1e7-4788-9471-e1aa9239092a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185345Z:572e731f-e1e7-4788-9471-e1aa9239092a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:56:34 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:53:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "925" ], + "Content-Length": [ "926" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-l8ukfh.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:00:29.09+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh\",\"name\":\"mariadb-test-l8ukfh\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" + "Content": "{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-1imnpq.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:13:20.857+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq\",\"name\":\"mariadb-test-1imnpq\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" } }, - "Restart-AzMariaDbServer+[NoContext]+RestartViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y?api-version=2018-06-01-preview+1": { + "Restart-AzMariaDbServer+[NoContext]+RestartViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz?api-version=2018-06-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "211" ], - "x-ms-client-request-id": [ "00d82c06-cb94-4c3a-9779-98c6fd8e37d7" ], + "x-ms-unique-id": [ "183" ], + "x-ms-client-request-id": [ "2d01d996-397f-4081-b704-f4ff653fe0a0" ], "CommandName": [ "Get-AzMariaDbServer" ], "FullCommandName": [ "Get-AzMariaDbServer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -340,31 +300,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "fbc03f0b-eade-401c-acf8-ccc553132b29" ], + "x-ms-request-id": [ "dbdf5a7c-7a31-4503-abef-2fff1516bd34" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11819" ], - "x-ms-correlation-request-id": [ "e4e7824b-0973-42ed-a273-dd0e59066a5c" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T025635Z:e4e7824b-0973-42ed-a273-dd0e59066a5c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11846" ], + "x-ms-correlation-request-id": [ "25c56489-1586-405c-8191-5ea2111bec27" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185345Z:25c56489-1586-405c-8191-5ea2111bec27" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:56:34 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:53:45 GMT" ] }, "ContentHeaders": { "Content-Length": [ "926" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-zh5l7y.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:02:29.737+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y\",\"name\":\"mariadb-test-zh5l7y\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" + "Content": "{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-hqv3fz.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:15:28.063+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz\",\"name\":\"mariadb-test-hqv3fz\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" } }, - "Restart-AzMariaDbServer+[NoContext]+RestartViaIdentity+$POST+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y/restart?api-version=2018-06-01-preview+2": { + "Restart-AzMariaDbServer+[NoContext]+RestartViaIdentity+$POST+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz/restart?api-version=2018-06-01-preview+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y/restart?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz/restart?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "212" ], - "x-ms-client-request-id": [ "07ddadc8-2e9e-4b12-ad93-542916ef2b02" ], + "x-ms-unique-id": [ "184" ], + "x-ms-client-request-id": [ "68a76d98-2de6-41f1-ae32-2914ad713c78" ], "CommandName": [ "Az.MariaDb.internal\\Restart-AzMariaDbServer" ], "FullCommandName": [ "Restart-AzMariaDbServer_Restart" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -379,79 +339,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/46d24b03-5172-46dc-8d6e-1cbd7a6a8004?api-version=2018-06-01-preview" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/8cbf9bcd-2a3a-44aa-be74-c4b08cf00509?api-version=2018-06-01-preview" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/46d24b03-5172-46dc-8d6e-1cbd7a6a8004?api-version=2018-06-01-preview" ], - "x-ms-request-id": [ "46d24b03-5172-46dc-8d6e-1cbd7a6a8004" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8cbf9bcd-2a3a-44aa-be74-c4b08cf00509?api-version=2018-06-01-preview" ], + "x-ms-request-id": [ "8cbf9bcd-2a3a-44aa-be74-c4b08cf00509" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], - "x-ms-correlation-request-id": [ "0976f175-18c3-4f2f-b403-eefcce8f5004" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T025635Z:0976f175-18c3-4f2f-b403-eefcce8f5004" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], + "x-ms-correlation-request-id": [ "ab20d9ae-e877-42d2-abf9-b6a15a86c5cb" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185346Z:ab20d9ae-e877-42d2-abf9-b6a15a86c5cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:56:35 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:53:45 GMT" ] }, "ContentHeaders": { "Content-Length": [ "75" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"RestartElasticServer\",\"startTime\":\"2020-04-15T02:56:35.787Z\"}" + "Content": "{\"operation\":\"RestartElasticServer\",\"startTime\":\"2020-09-23T18:53:45.953Z\"}" } }, - "Restart-AzMariaDbServer+[NoContext]+RestartViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/46d24b03-5172-46dc-8d6e-1cbd7a6a8004?api-version=2018-06-01-preview+3": { + "Restart-AzMariaDbServer+[NoContext]+RestartViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8cbf9bcd-2a3a-44aa-be74-c4b08cf00509?api-version=2018-06-01-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/46d24b03-5172-46dc-8d6e-1cbd7a6a8004?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8cbf9bcd-2a3a-44aa-be74-c4b08cf00509?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "212", "213" ], - "x-ms-client-request-id": [ "07ddadc8-2e9e-4b12-ad93-542916ef2b02", "07ddadc8-2e9e-4b12-ad93-542916ef2b02" ], - "CommandName": [ "Az.MariaDb.internal\\Restart-AzMariaDbServer", "Az.MariaDb.internal\\Restart-AzMariaDbServer" ], - "FullCommandName": [ "Restart-AzMariaDbServer_Restart", "Restart-AzMariaDbServer_Restart" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Retry-After": [ "15" ], - "x-ms-request-id": [ "b73bdff0-424f-4749-8edb-cd3182f264d6" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11818" ], - "x-ms-correlation-request-id": [ "d2a79071-0104-4767-9601-403f18be2cc7" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T025650Z:d2a79071-0104-4767-9601-403f18be2cc7" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:56:49 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "108" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"name\":\"46d24b03-5172-46dc-8d6e-1cbd7a6a8004\",\"status\":\"InProgress\",\"startTime\":\"2020-04-15T02:56:35.787Z\"}" - } - }, - "Restart-AzMariaDbServer+[NoContext]+RestartViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/46d24b03-5172-46dc-8d6e-1cbd7a6a8004?api-version=2018-06-01-preview+4": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/46d24b03-5172-46dc-8d6e-1cbd7a6a8004?api-version=2018-06-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "212", "213", "214" ], - "x-ms-client-request-id": [ "07ddadc8-2e9e-4b12-ad93-542916ef2b02", "07ddadc8-2e9e-4b12-ad93-542916ef2b02", "07ddadc8-2e9e-4b12-ad93-542916ef2b02" ], - "CommandName": [ "Az.MariaDb.internal\\Restart-AzMariaDbServer", "Az.MariaDb.internal\\Restart-AzMariaDbServer", "Az.MariaDb.internal\\Restart-AzMariaDbServer" ], - "FullCommandName": [ "Restart-AzMariaDbServer_Restart", "Restart-AzMariaDbServer_Restart", "Restart-AzMariaDbServer_Restart" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "185" ], + "x-ms-client-request-id": [ "68a76d98-2de6-41f1-ae32-2914ad713c78" ], + "CommandName": [ "Az.MariaDb.internal\\Restart-AzMariaDbServer" ], + "FullCommandName": [ "Restart-AzMariaDbServer_Restart" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -462,36 +382,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "f421b3cb-6278-4bd8-a9f3-e96e3fcd73c0" ], + "x-ms-request-id": [ "fa4ad7ef-d7bf-4dcd-b987-dada01a5479e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11817" ], - "x-ms-correlation-request-id": [ "c24a1765-9953-4d1f-adbe-04eb7046a874" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T025704Z:c24a1765-9953-4d1f-adbe-04eb7046a874" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11845" ], + "x-ms-correlation-request-id": [ "9d3610dc-c9a6-4948-ab9f-04b1ac73c58d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185401Z:9d3610dc-c9a6-4948-ab9f-04b1ac73c58d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:57:03 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:54:00 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"46d24b03-5172-46dc-8d6e-1cbd7a6a8004\",\"status\":\"InProgress\",\"startTime\":\"2020-04-15T02:56:35.787Z\"}" + "Content": "{\"name\":\"8cbf9bcd-2a3a-44aa-be74-c4b08cf00509\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:53:45.953Z\"}" } }, - "Restart-AzMariaDbServer+[NoContext]+RestartViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/46d24b03-5172-46dc-8d6e-1cbd7a6a8004?api-version=2018-06-01-preview+5": { + "Restart-AzMariaDbServer+[NoContext]+RestartViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8cbf9bcd-2a3a-44aa-be74-c4b08cf00509?api-version=2018-06-01-preview+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/46d24b03-5172-46dc-8d6e-1cbd7a6a8004?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8cbf9bcd-2a3a-44aa-be74-c4b08cf00509?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "212", "213", "214", "215" ], - "x-ms-client-request-id": [ "07ddadc8-2e9e-4b12-ad93-542916ef2b02", "07ddadc8-2e9e-4b12-ad93-542916ef2b02", "07ddadc8-2e9e-4b12-ad93-542916ef2b02", "07ddadc8-2e9e-4b12-ad93-542916ef2b02" ], - "CommandName": [ "Az.MariaDb.internal\\Restart-AzMariaDbServer", "Az.MariaDb.internal\\Restart-AzMariaDbServer", "Az.MariaDb.internal\\Restart-AzMariaDbServer", "Az.MariaDb.internal\\Restart-AzMariaDbServer" ], - "FullCommandName": [ "Restart-AzMariaDbServer_Restart", "Restart-AzMariaDbServer_Restart", "Restart-AzMariaDbServer_Restart", "Restart-AzMariaDbServer_Restart" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "186" ], + "x-ms-client-request-id": [ "68a76d98-2de6-41f1-ae32-2914ad713c78" ], + "CommandName": [ "Az.MariaDb.internal\\Restart-AzMariaDbServer" ], + "FullCommandName": [ "Restart-AzMariaDbServer_Restart" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -502,36 +422,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "eee34d4e-d753-4e39-9b64-7170e8a16ffa" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11816" ], + "x-ms-request-id": [ "098dbd19-ea46-4b61-adb5-e06854ac8faa" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "81f8adff-dfee-4713-a9b6-d3d76c6a1d92" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T025718Z:81f8adff-dfee-4713-a9b6-d3d76c6a1d92" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11844" ], + "x-ms-correlation-request-id": [ "19d77757-996c-469e-ac2e-cd54b08cc59f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185416Z:19d77757-996c-469e-ac2e-cd54b08cc59f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:57:18 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:54:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"46d24b03-5172-46dc-8d6e-1cbd7a6a8004\",\"status\":\"InProgress\",\"startTime\":\"2020-04-15T02:56:35.787Z\"}" + "Content": "{\"name\":\"8cbf9bcd-2a3a-44aa-be74-c4b08cf00509\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:53:45.953Z\"}" } }, - "Restart-AzMariaDbServer+[NoContext]+RestartViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/46d24b03-5172-46dc-8d6e-1cbd7a6a8004?api-version=2018-06-01-preview+6": { + "Restart-AzMariaDbServer+[NoContext]+RestartViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8cbf9bcd-2a3a-44aa-be74-c4b08cf00509?api-version=2018-06-01-preview+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/46d24b03-5172-46dc-8d6e-1cbd7a6a8004?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8cbf9bcd-2a3a-44aa-be74-c4b08cf00509?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "212", "213", "214", "215", "216" ], - "x-ms-client-request-id": [ "07ddadc8-2e9e-4b12-ad93-542916ef2b02", "07ddadc8-2e9e-4b12-ad93-542916ef2b02", "07ddadc8-2e9e-4b12-ad93-542916ef2b02", "07ddadc8-2e9e-4b12-ad93-542916ef2b02", "07ddadc8-2e9e-4b12-ad93-542916ef2b02" ], - "CommandName": [ "Az.MariaDb.internal\\Restart-AzMariaDbServer", "Az.MariaDb.internal\\Restart-AzMariaDbServer", "Az.MariaDb.internal\\Restart-AzMariaDbServer", "Az.MariaDb.internal\\Restart-AzMariaDbServer", "Az.MariaDb.internal\\Restart-AzMariaDbServer" ], - "FullCommandName": [ "Restart-AzMariaDbServer_Restart", "Restart-AzMariaDbServer_Restart", "Restart-AzMariaDbServer_Restart", "Restart-AzMariaDbServer_Restart", "Restart-AzMariaDbServer_Restart" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "187" ], + "x-ms-client-request-id": [ "68a76d98-2de6-41f1-ae32-2914ad713c78" ], + "CommandName": [ "Az.MariaDb.internal\\Restart-AzMariaDbServer" ], + "FullCommandName": [ "Restart-AzMariaDbServer_Restart" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -542,36 +462,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "47650397-0b88-4e4c-b089-07d5d172fe29" ], + "x-ms-request-id": [ "cbfaf56e-a614-4491-b9b2-14587e69b215" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11815" ], - "x-ms-correlation-request-id": [ "0b85481c-b25d-427f-89b8-3994089a34e7" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T025733Z:0b85481c-b25d-427f-89b8-3994089a34e7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11843" ], + "x-ms-correlation-request-id": [ "d8551627-00f3-428f-80e2-2331ce4076a9" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185432Z:d8551627-00f3-428f-80e2-2331ce4076a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:57:33 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:54:32 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"46d24b03-5172-46dc-8d6e-1cbd7a6a8004\",\"status\":\"InProgress\",\"startTime\":\"2020-04-15T02:56:35.787Z\"}" + "Content": "{\"name\":\"8cbf9bcd-2a3a-44aa-be74-c4b08cf00509\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:53:45.953Z\"}" } }, - "Restart-AzMariaDbServer+[NoContext]+RestartViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/46d24b03-5172-46dc-8d6e-1cbd7a6a8004?api-version=2018-06-01-preview+7": { + "Restart-AzMariaDbServer+[NoContext]+RestartViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8cbf9bcd-2a3a-44aa-be74-c4b08cf00509?api-version=2018-06-01-preview+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/46d24b03-5172-46dc-8d6e-1cbd7a6a8004?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8cbf9bcd-2a3a-44aa-be74-c4b08cf00509?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "212", "213", "214", "215", "216", "217" ], - "x-ms-client-request-id": [ "07ddadc8-2e9e-4b12-ad93-542916ef2b02", "07ddadc8-2e9e-4b12-ad93-542916ef2b02", "07ddadc8-2e9e-4b12-ad93-542916ef2b02", "07ddadc8-2e9e-4b12-ad93-542916ef2b02", "07ddadc8-2e9e-4b12-ad93-542916ef2b02", "07ddadc8-2e9e-4b12-ad93-542916ef2b02" ], - "CommandName": [ "Az.MariaDb.internal\\Restart-AzMariaDbServer", "Az.MariaDb.internal\\Restart-AzMariaDbServer", "Az.MariaDb.internal\\Restart-AzMariaDbServer", "Az.MariaDb.internal\\Restart-AzMariaDbServer", "Az.MariaDb.internal\\Restart-AzMariaDbServer", "Az.MariaDb.internal\\Restart-AzMariaDbServer" ], - "FullCommandName": [ "Restart-AzMariaDbServer_Restart", "Restart-AzMariaDbServer_Restart", "Restart-AzMariaDbServer_Restart", "Restart-AzMariaDbServer_Restart", "Restart-AzMariaDbServer_Restart", "Restart-AzMariaDbServer_Restart" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "188" ], + "x-ms-client-request-id": [ "68a76d98-2de6-41f1-ae32-2914ad713c78" ], + "CommandName": [ "Az.MariaDb.internal\\Restart-AzMariaDbServer" ], + "FullCommandName": [ "Restart-AzMariaDbServer_Restart" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -582,36 +502,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "54a47dd5-a865-41b7-90ee-f09e887cc595" ], + "x-ms-request-id": [ "9bbd7fb3-8a98-4b16-9ae0-e822d6a3e2e3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11814" ], - "x-ms-correlation-request-id": [ "a75bcbef-1771-48e6-836c-865ea1fe5c9d" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T025747Z:a75bcbef-1771-48e6-836c-865ea1fe5c9d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11842" ], + "x-ms-correlation-request-id": [ "3633361e-c90a-4b0f-bb2e-2eff0b0a9875" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185447Z:3633361e-c90a-4b0f-bb2e-2eff0b0a9875" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:57:47 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:54:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"46d24b03-5172-46dc-8d6e-1cbd7a6a8004\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-15T02:56:35.787Z\"}" + "Content": "{\"name\":\"8cbf9bcd-2a3a-44aa-be74-c4b08cf00509\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-23T18:53:45.953Z\"}" } }, - "Restart-AzMariaDbServer+[NoContext]+RestartViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/46d24b03-5172-46dc-8d6e-1cbd7a6a8004?api-version=2018-06-01-preview+8": { + "Restart-AzMariaDbServer+[NoContext]+RestartViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/8cbf9bcd-2a3a-44aa-be74-c4b08cf00509?api-version=2018-06-01-preview+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/46d24b03-5172-46dc-8d6e-1cbd7a6a8004?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/8cbf9bcd-2a3a-44aa-be74-c4b08cf00509?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "212", "213", "214", "215", "216", "217", "218" ], - "x-ms-client-request-id": [ "07ddadc8-2e9e-4b12-ad93-542916ef2b02", "07ddadc8-2e9e-4b12-ad93-542916ef2b02", "07ddadc8-2e9e-4b12-ad93-542916ef2b02", "07ddadc8-2e9e-4b12-ad93-542916ef2b02", "07ddadc8-2e9e-4b12-ad93-542916ef2b02", "07ddadc8-2e9e-4b12-ad93-542916ef2b02", "07ddadc8-2e9e-4b12-ad93-542916ef2b02" ], - "CommandName": [ "Az.MariaDb.internal\\Restart-AzMariaDbServer", "Az.MariaDb.internal\\Restart-AzMariaDbServer", "Az.MariaDb.internal\\Restart-AzMariaDbServer", "Az.MariaDb.internal\\Restart-AzMariaDbServer", "Az.MariaDb.internal\\Restart-AzMariaDbServer", "Az.MariaDb.internal\\Restart-AzMariaDbServer", "Az.MariaDb.internal\\Restart-AzMariaDbServer" ], - "FullCommandName": [ "Restart-AzMariaDbServer_Restart", "Restart-AzMariaDbServer_Restart", "Restart-AzMariaDbServer_Restart", "Restart-AzMariaDbServer_Restart", "Restart-AzMariaDbServer_Restart", "Restart-AzMariaDbServer_Restart", "Restart-AzMariaDbServer_Restart" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "189" ], + "x-ms-client-request-id": [ "68a76d98-2de6-41f1-ae32-2914ad713c78" ], + "CommandName": [ "Az.MariaDb.internal\\Restart-AzMariaDbServer" ], + "FullCommandName": [ "Restart-AzMariaDbServer_Restart" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -621,14 +541,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "f6efd339-8608-4c8b-a740-00836747abc2" ], + "x-ms-request-id": [ "70bbf4c2-4b59-42bf-ae1a-c954adaf4c1c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11813" ], - "x-ms-correlation-request-id": [ "e868be69-e1e8-4dfc-8b38-8e532a63eb1f" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T025748Z:e868be69-e1e8-4dfc-8b38-8e532a63eb1f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11841" ], + "x-ms-correlation-request-id": [ "753c744e-4a3e-4bbb-8ccb-0286a7bbe207" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185447Z:753c744e-4a3e-4bbb-8ccb-0286a7bbe207" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:57:47 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:54:47 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -637,14 +557,14 @@ "Content": null } }, - "Restart-AzMariaDbServer+[NoContext]+RestartViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y?api-version=2018-06-01-preview+9": { + "Restart-AzMariaDbServer+[NoContext]+RestartViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz?api-version=2018-06-01-preview+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "219" ], - "x-ms-client-request-id": [ "6fcfa24a-0364-49dc-bde1-d46fe452e68b" ], + "x-ms-unique-id": [ "190" ], + "x-ms-client-request-id": [ "f58d8818-fc7f-4e12-a3b7-dc9c5e531f72" ], "CommandName": [ "Get-AzMariaDbServer" ], "FullCommandName": [ "Get-AzMariaDbServer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -659,21 +579,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "48fd90f3-6d99-43cf-907a-880bda1bf158" ], + "x-ms-request-id": [ "2d07ede4-ef5d-4bec-96dc-2e78ff7d313d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11812" ], - "x-ms-correlation-request-id": [ "3599fe36-6cb5-4835-b24d-6733a8429f2a" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T025748Z:3599fe36-6cb5-4835-b24d-6733a8429f2a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11840" ], + "x-ms-correlation-request-id": [ "30b1c139-20b9-4bf0-8238-56557416bfad" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185448Z:30b1c139-20b9-4bf0-8238-56557416bfad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:57:48 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:54:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "926" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-zh5l7y.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:02:29.737+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y\",\"name\":\"mariadb-test-zh5l7y\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" + "Content": "{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-hqv3fz.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:15:28.063+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz\",\"name\":\"mariadb-test-hqv3fz\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" } } } \ No newline at end of file diff --git a/src/MariaDb/test/Restore-AzMariaDbServer.Recording.json b/src/MariaDb/test/Restore-AzMariaDbServer.Recording.json index 748a200120ef..057468caa5a5 100644 --- a/src/MariaDb/test/Restore-AzMariaDbServer.Recording.json +++ b/src/MariaDb/test/Restore-AzMariaDbServer.Recording.json @@ -1,12 +1,12 @@ { - "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24t?api-version=2018-06-01-preview+1": { + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08f?api-version=2018-06-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24t?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08f?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "1" ], - "x-ms-client-request-id": [ "ab393409-0977-460c-98c9-e122429cb2fa" ], + "x-ms-unique-id": [ "191" ], + "x-ms-client-request-id": [ "a537c569-5593-415a-b55c-cc4e71d34c45" ], "CommandName": [ "Get-AzMariaDbServer" ], "FullCommandName": [ "Get-AzMariaDbServer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -21,33 +21,33 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "398a7757-3174-42ab-8c31-c0bb334fdfb8" ], + "x-ms-request-id": [ "802cde61-ddbc-41b7-b6a4-5f50e12f751b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "d8b08504-ab24-4d84-beca-2af3895e755f" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T060756Z:d8b08504-ab24-4d84-beca-2af3895e755f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11839" ], + "x-ms-correlation-request-id": [ "f511f60c-03c1-49cb-b7eb-880ca1a92f82" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185448Z:f511f60c-03c1-49cb-b7eb-880ca1a92f82" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 06:07:56 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:54:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "938" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-plo24t.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:06:29.943+00:00\",\"replicationRole\":\"Master\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24t\",\"name\":\"mariadb-test-plo24t\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-mqe08f.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:18:43.773+00:00\",\"replicationRole\":\"Master\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08f\",\"name\":\"mariadb-test-mqe08f\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" } }, - "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestore+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24trst01?api-version=2018-06-01-preview+2": { + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestore+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08frst01?api-version=2018-06-01-preview+2": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24trst01?api-version=2018-06-01-preview", - "Content": "{\n \"properties\": {\n \"createMode\": \"PointInTimeRestore\",\n \"restorePointInTime\": \"2020-04-15T03:39:46.0000000\",\n \"sourceServerId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24t\"\n },\n \"location\": \"eastus\"\n}", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08frst01?api-version=2018-06-01-preview", + "Content": "{\r\n \"properties\": {\r\n \"createMode\": \"PointInTimeRestore\",\r\n \"restorePointInTime\": \"2020-09-24T02:53:48.5578171+08:00\",\r\n \"sourceServerId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08f\"\r\n },\r\n \"location\": \"eastus\"\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "318" ] + "Content-Length": [ "331" ] } }, "Response": { @@ -55,79 +55,1313 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/00e90949-4437-43af-a957-c9406e9fe1c4?api-version=2018-06-01-preview" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview" ], "Retry-After": [ "10" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/00e90949-4437-43af-a957-c9406e9fe1c4?api-version=2018-06-01-preview" ], - "x-ms-request-id": [ "00e90949-4437-43af-a957-c9406e9fe1c4" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview" ], + "x-ms-request-id": [ "776aec87-2430-4926-a490-f3bd76a28619" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-correlation-request-id": [ "b5fd21e5-cd6a-4911-92e6-a9a59c4ec998" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T060758Z:b5fd21e5-cd6a-4911-92e6-a9a59c4ec998" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1181" ], + "x-ms-correlation-request-id": [ "2049ffd0-9285-42a4-b032-994ed1fd7466" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185454Z:2049ffd0-9285-42a4-b032-994ed1fd7466" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 06:07:58 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:54:54 GMT" ] }, "ContentHeaders": { "Content-Length": [ "75" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"RestoreElasticServer\",\"startTime\":\"2020-04-15T06:07:58.617Z\"}" + "Content": "{\"operation\":\"RestoreElasticServer\",\"startTime\":\"2020-09-23T18:54:54.683Z\"}" } }, - "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/00e90949-4437-43af-a957-c9406e9fe1c4?api-version=2018-06-01-preview+3": { + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/00e90949-4437-43af-a957-c9406e9fe1c4?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "2", "3" ], - "x-ms-client-request-id": [ "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a" ], - "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer" ], - "FullCommandName": [ "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "193" ], + "x-ms-client-request-id": [ "ab7ddaa3-4f30-40f2-8124-9f7e0772fa13" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-request-id": [ "07516b45-952f-417f-b4ca-22081cdc67bc" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11838" ], + "x-ms-correlation-request-id": [ "ec308953-8bd9-4919-af6d-b518c8720885" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185505Z:ec308953-8bd9-4919-af6d-b518c8720885" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:55:04 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"776aec87-2430-4926-a490-f3bd76a28619\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:54:54.683Z\"}" + } + }, + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview+4": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "194" ], + "x-ms-client-request-id": [ "ab7ddaa3-4f30-40f2-8124-9f7e0772fa13" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-request-id": [ "16c4877e-56e3-4d83-b88d-672669795845" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11837" ], + "x-ms-correlation-request-id": [ "4ec8e6fd-8b6f-40cc-a6bd-a47e581b2fff" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185515Z:4ec8e6fd-8b6f-40cc-a6bd-a47e581b2fff" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:55:15 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"776aec87-2430-4926-a490-f3bd76a28619\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:54:54.683Z\"}" + } + }, + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview+5": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "195" ], + "x-ms-client-request-id": [ "ab7ddaa3-4f30-40f2-8124-9f7e0772fa13" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-request-id": [ "139bccd4-699d-4ce8-a525-2a12231cdb9c" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11836" ], + "x-ms-correlation-request-id": [ "18af97f7-a011-4809-9887-0641d1114f42" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185525Z:18af97f7-a011-4809-9887-0641d1114f42" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:55:25 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"776aec87-2430-4926-a490-f3bd76a28619\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:54:54.683Z\"}" + } + }, + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview+6": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "196" ], + "x-ms-client-request-id": [ "ab7ddaa3-4f30-40f2-8124-9f7e0772fa13" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-request-id": [ "9696222f-134e-4888-8ed3-d8d3480a629d" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11835" ], + "x-ms-correlation-request-id": [ "bf8e8442-3a55-4b80-86d8-46c47a1c0da9" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185536Z:bf8e8442-3a55-4b80-86d8-46c47a1c0da9" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:55:35 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"776aec87-2430-4926-a490-f3bd76a28619\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:54:54.683Z\"}" + } + }, + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview+7": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "197" ], + "x-ms-client-request-id": [ "ab7ddaa3-4f30-40f2-8124-9f7e0772fa13" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-request-id": [ "4a3f455a-1c89-45df-a0a9-81c1baf02d04" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11834" ], + "x-ms-correlation-request-id": [ "99d8375f-2662-429f-a46e-64544d0397b4" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185546Z:99d8375f-2662-429f-a46e-64544d0397b4" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:55:45 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"776aec87-2430-4926-a490-f3bd76a28619\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:54:54.683Z\"}" + } + }, + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview+8": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "198" ], + "x-ms-client-request-id": [ "ab7ddaa3-4f30-40f2-8124-9f7e0772fa13" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-request-id": [ "d85c6e92-8b13-418c-acec-6a154865c2f2" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11833" ], + "x-ms-correlation-request-id": [ "22b32678-a1ad-43c9-9c19-b5bd7ac662f3" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185556Z:22b32678-a1ad-43c9-9c19-b5bd7ac662f3" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:55:56 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"776aec87-2430-4926-a490-f3bd76a28619\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:54:54.683Z\"}" + } + }, + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview+9": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "199" ], + "x-ms-client-request-id": [ "ab7ddaa3-4f30-40f2-8124-9f7e0772fa13" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-request-id": [ "73ec3fe9-9503-44f0-9fe3-bc48a54b145e" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11832" ], + "x-ms-correlation-request-id": [ "cc9f5fb7-95ce-49bc-94ed-c78e45894a09" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185607Z:cc9f5fb7-95ce-49bc-94ed-c78e45894a09" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:56:07 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"776aec87-2430-4926-a490-f3bd76a28619\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:54:54.683Z\"}" + } + }, + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview+10": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "200" ], + "x-ms-client-request-id": [ "ab7ddaa3-4f30-40f2-8124-9f7e0772fa13" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-request-id": [ "9f0c2295-cbbe-4326-ba75-4f80bcca0ec9" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11831" ], + "x-ms-correlation-request-id": [ "c4403848-2545-40e1-b349-c1632c504d7a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185617Z:c4403848-2545-40e1-b349-c1632c504d7a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:56:17 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"776aec87-2430-4926-a490-f3bd76a28619\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:54:54.683Z\"}" + } + }, + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview+11": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "201" ], + "x-ms-client-request-id": [ "ab7ddaa3-4f30-40f2-8124-9f7e0772fa13" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-request-id": [ "dfb02adc-3a9a-412d-9532-b49c14c55013" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11830" ], + "x-ms-correlation-request-id": [ "e8f5c659-d061-44c9-8b7d-9d0a648f2876" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185627Z:e8f5c659-d061-44c9-8b7d-9d0a648f2876" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:56:27 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"776aec87-2430-4926-a490-f3bd76a28619\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:54:54.683Z\"}" + } + }, + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview+12": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "202" ], + "x-ms-client-request-id": [ "ab7ddaa3-4f30-40f2-8124-9f7e0772fa13" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-request-id": [ "a1c05fc4-21bb-4ca3-9e8e-138c5d3c8cb2" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11829" ], + "x-ms-correlation-request-id": [ "4153fb3f-74f3-465e-904d-8588edade51f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185638Z:4153fb3f-74f3-465e-904d-8588edade51f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:56:38 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"776aec87-2430-4926-a490-f3bd76a28619\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:54:54.683Z\"}" + } + }, + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview+13": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "203" ], + "x-ms-client-request-id": [ "ab7ddaa3-4f30-40f2-8124-9f7e0772fa13" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-request-id": [ "362ced96-d3da-40bb-970b-f60ab2dd30b9" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11828" ], + "x-ms-correlation-request-id": [ "1b56389a-8651-411d-af33-759a1118c3bc" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185648Z:1b56389a-8651-411d-af33-759a1118c3bc" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:56:48 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"776aec87-2430-4926-a490-f3bd76a28619\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:54:54.683Z\"}" + } + }, + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview+14": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "204" ], + "x-ms-client-request-id": [ "ab7ddaa3-4f30-40f2-8124-9f7e0772fa13" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-request-id": [ "f577bfb0-eab4-4643-96f0-7197073253b5" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11827" ], + "x-ms-correlation-request-id": [ "f303d35d-3bcf-4397-92e5-fc035424e811" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185659Z:f303d35d-3bcf-4397-92e5-fc035424e811" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:56:58 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"776aec87-2430-4926-a490-f3bd76a28619\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:54:54.683Z\"}" + } + }, + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview+15": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "205" ], + "x-ms-client-request-id": [ "ab7ddaa3-4f30-40f2-8124-9f7e0772fa13" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-request-id": [ "88e553ea-65ff-4970-91a0-e64dfd5315c0" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11826" ], + "x-ms-correlation-request-id": [ "4420b15d-f944-4222-b3f5-b2108eabe0f9" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185709Z:4420b15d-f944-4222-b3f5-b2108eabe0f9" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:57:08 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"776aec87-2430-4926-a490-f3bd76a28619\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:54:54.683Z\"}" + } + }, + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview+16": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "206" ], + "x-ms-client-request-id": [ "ab7ddaa3-4f30-40f2-8124-9f7e0772fa13" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-request-id": [ "9747e8e9-228e-4c01-b3a2-41b4dd33d462" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11825" ], + "x-ms-correlation-request-id": [ "43411e81-a352-42b1-be4a-49eb5ce70251" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185719Z:43411e81-a352-42b1-be4a-49eb5ce70251" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:57:19 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"776aec87-2430-4926-a490-f3bd76a28619\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:54:54.683Z\"}" + } + }, + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview+17": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "207" ], + "x-ms-client-request-id": [ "ab7ddaa3-4f30-40f2-8124-9f7e0772fa13" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-request-id": [ "cef5d283-42cb-4e27-833c-df539d3d66fe" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11824" ], + "x-ms-correlation-request-id": [ "0f3db9b9-dc21-479d-8c02-a135f28214ea" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185730Z:0f3db9b9-dc21-479d-8c02-a135f28214ea" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:57:29 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"776aec87-2430-4926-a490-f3bd76a28619\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:54:54.683Z\"}" + } + }, + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview+18": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "208" ], + "x-ms-client-request-id": [ "ab7ddaa3-4f30-40f2-8124-9f7e0772fa13" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-request-id": [ "6eb31a08-a373-4e96-a4ca-b7d0e11c5daa" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11823" ], + "x-ms-correlation-request-id": [ "c5e0f2c7-38d6-4757-b4aa-d3f2596240a0" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185740Z:c5e0f2c7-38d6-4757-b4aa-d3f2596240a0" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:57:39 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"776aec87-2430-4926-a490-f3bd76a28619\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:54:54.683Z\"}" + } + }, + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview+19": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "209" ], + "x-ms-client-request-id": [ "ab7ddaa3-4f30-40f2-8124-9f7e0772fa13" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-request-id": [ "924f1ac3-5e9d-49d9-990e-1163c94bf0f5" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11822" ], + "x-ms-correlation-request-id": [ "8f5c9ba3-b996-4f95-aee3-8bfcceebe567" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185750Z:8f5c9ba3-b996-4f95-aee3-8bfcceebe567" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:57:50 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"776aec87-2430-4926-a490-f3bd76a28619\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:54:54.683Z\"}" + } + }, + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview+20": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "210" ], + "x-ms-client-request-id": [ "ab7ddaa3-4f30-40f2-8124-9f7e0772fa13" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-request-id": [ "1cd083ea-e167-457a-934a-13bff56bd5fd" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11821" ], + "x-ms-correlation-request-id": [ "e9ab24cc-978d-4112-81da-8d6afb78e344" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185801Z:e9ab24cc-978d-4112-81da-8d6afb78e344" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:58:00 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"776aec87-2430-4926-a490-f3bd76a28619\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:54:54.683Z\"}" + } + }, + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview+21": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "211" ], + "x-ms-client-request-id": [ "ab7ddaa3-4f30-40f2-8124-9f7e0772fa13" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-request-id": [ "bdf60543-bd53-4eeb-a009-a8b67bfc8236" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11820" ], + "x-ms-correlation-request-id": [ "7ccf3af8-1fd9-4a5f-880e-dc4d490c9eed" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185811Z:7ccf3af8-1fd9-4a5f-880e-dc4d490c9eed" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:58:10 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"776aec87-2430-4926-a490-f3bd76a28619\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:54:54.683Z\"}" + } + }, + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview+22": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "212" ], + "x-ms-client-request-id": [ "ab7ddaa3-4f30-40f2-8124-9f7e0772fa13" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-request-id": [ "4c6d4439-a3f1-488c-bd07-bb1dd7da6fe8" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11819" ], + "x-ms-correlation-request-id": [ "c62c9744-d84b-488c-b219-358a979dfb2b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185822Z:c62c9744-d84b-488c-b219-358a979dfb2b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:58:21 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"776aec87-2430-4926-a490-f3bd76a28619\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:54:54.683Z\"}" + } + }, + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview+23": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "213" ], + "x-ms-client-request-id": [ "ab7ddaa3-4f30-40f2-8124-9f7e0772fa13" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-request-id": [ "73549f9c-4ea5-4ad5-a35f-65e7a9f11131" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11818" ], + "x-ms-correlation-request-id": [ "6b0442a9-b233-4c3d-ada8-94655b31ea17" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185832Z:6b0442a9-b233-4c3d-ada8-94655b31ea17" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:58:32 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"776aec87-2430-4926-a490-f3bd76a28619\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:54:54.683Z\"}" + } + }, + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview+24": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "214" ], + "x-ms-client-request-id": [ "ab7ddaa3-4f30-40f2-8124-9f7e0772fa13" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-request-id": [ "c11b58a1-f73e-47f4-bf01-dff2e6cb508b" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11817" ], + "x-ms-correlation-request-id": [ "46a5c3dc-ef04-470b-8c90-64877a3f05a9" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185843Z:46a5c3dc-ef04-470b-8c90-64877a3f05a9" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:58:42 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"776aec87-2430-4926-a490-f3bd76a28619\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:54:54.683Z\"}" + } + }, + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview+25": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "215" ], + "x-ms-client-request-id": [ "ab7ddaa3-4f30-40f2-8124-9f7e0772fa13" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-request-id": [ "414177a0-6e46-49c5-b53a-614b84b7dfd9" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11816" ], + "x-ms-correlation-request-id": [ "80dab6fc-aa0b-4931-b921-a889b28a8c34" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185853Z:80dab6fc-aa0b-4931-b921-a889b28a8c34" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:58:53 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"776aec87-2430-4926-a490-f3bd76a28619\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:54:54.683Z\"}" + } + }, + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview+26": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "216" ], + "x-ms-client-request-id": [ "ab7ddaa3-4f30-40f2-8124-9f7e0772fa13" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-request-id": [ "93b8e5fc-4ff6-4c40-8d27-c4a7e2f96fb1" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11815" ], + "x-ms-correlation-request-id": [ "299acc3e-93dd-4ff3-88e2-8e06b5ffaf38" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185903Z:299acc3e-93dd-4ff3-88e2-8e06b5ffaf38" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:59:03 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"776aec87-2430-4926-a490-f3bd76a28619\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:54:54.683Z\"}" + } + }, + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview+27": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "217" ], + "x-ms-client-request-id": [ "ab7ddaa3-4f30-40f2-8124-9f7e0772fa13" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-request-id": [ "b0229997-099f-42f6-a85f-332674b18af0" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11814" ], + "x-ms-correlation-request-id": [ "9af4c555-5a66-42eb-94c6-9922dcbd4f4c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185914Z:9af4c555-5a66-42eb-94c6-9922dcbd4f4c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:59:13 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"776aec87-2430-4926-a490-f3bd76a28619\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:54:54.683Z\"}" + } + }, + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview+28": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "218" ], + "x-ms-client-request-id": [ "ab7ddaa3-4f30-40f2-8124-9f7e0772fa13" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-request-id": [ "35cd24d3-a548-4c94-b090-28f00da5a30a" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11813" ], + "x-ms-correlation-request-id": [ "582d8a62-e531-48ae-b870-f2bba5776158" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185924Z:582d8a62-e531-48ae-b870-f2bba5776158" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:59:23 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"776aec87-2430-4926-a490-f3bd76a28619\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:54:54.683Z\"}" + } + }, + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview+29": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/776aec87-2430-4926-a490-f3bd76a28619?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "219" ], + "x-ms-client-request-id": [ "ab7ddaa3-4f30-40f2-8124-9f7e0772fa13" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-request-id": [ "1a0ff7fb-1da8-48b3-9f97-a7c9f542f1b4" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11812" ], + "x-ms-correlation-request-id": [ "3d61dc69-90be-4d58-ab56-8bcc6bc627f3" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185934Z:3d61dc69-90be-4d58-ab56-8bcc6bc627f3" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:59:34 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "107" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"776aec87-2430-4926-a490-f3bd76a28619\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-23T18:54:54.683Z\"}" + } + }, + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08frst01?api-version=2018-06-01-preview+30": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08frst01?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "220" ], + "x-ms-client-request-id": [ "ab7ddaa3-4f30-40f2-8124-9f7e0772fa13" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "38fb3a81-69c0-4cdd-9787-9cb4864b2017" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11811" ], + "x-ms-correlation-request-id": [ "c20d74d8-6095-4de0-90b5-2796e4c09a1a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185935Z:c20d74d8-6095-4de0-90b5-2796e4c09a1a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:59:34 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "951" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-mqe08frst01.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T19:04:54.997+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08frst01\",\"name\":\"mariadb-test-mqe08frst01\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" + } + }, + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08frst01?api-version=2018-06-01-preview+31": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08frst01?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "221" ], + "x-ms-client-request-id": [ "a07fa096-0b64-43b5-8819-4746ed4e9268" ], + "CommandName": [ "Get-AzMariaDBServer" ], + "FullCommandName": [ "Get-AzMariaDbServer_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "c4b8a6d9-6684-41ed-9ae8-737f241a5201" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11810" ], + "x-ms-correlation-request-id": [ "72d87001-f6e4-4b70-9377-3a542904565f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185935Z:72d87001-f6e4-4b70-9377-3a542904565f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:59:34 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "951" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-mqe08frst01.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T19:04:54.997+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08frst01\",\"name\":\"mariadb-test-mqe08frst01\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" + } + }, + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestoreServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08f?api-version=2018-06-01-preview+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08f?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "222" ], + "x-ms-client-request-id": [ "855f65a7-d986-490f-a2f5-3431240b7754" ], + "CommandName": [ "Get-AzMariaDbServer" ], + "FullCommandName": [ "Get-AzMariaDbServer_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "52a3d736-2ae0-49d5-a420-f298c7974e72" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11809" ], + "x-ms-correlation-request-id": [ "6c78b91b-e7ee-46ed-9020-b5e45dd14083" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185935Z:6c78b91b-e7ee-46ed-9020-b5e45dd14083" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:59:35 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "938" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-mqe08f.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:18:43.773+00:00\",\"replicationRole\":\"Master\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08f\",\"name\":\"mariadb-test-mqe08f\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" + } + }, + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestoreServerObject+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08frst12?api-version=2018-06-01-preview+2": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08frst12?api-version=2018-06-01-preview", + "Content": "{\r\n \"properties\": {\r\n \"createMode\": \"PointInTimeRestore\",\r\n \"restorePointInTime\": \"2020-09-24T02:58:35.7005262+08:00\",\r\n \"sourceServerId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08f\"\r\n },\r\n \"location\": \"eastus\"\r\n}", + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "331" ] + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview" ], + "Retry-After": [ "10" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview" ], + "x-ms-request-id": [ "8d89f7b4-a356-43e7-9f22-84d6c55ad28e" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1180" ], + "x-ms-correlation-request-id": [ "aa2c35c7-2689-4352-9ce1-be65ee1f39b5" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185942Z:aa2c35c7-2689-4352-9ce1-be65ee1f39b5" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 18:59:41 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "75" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"operation\":\"RestoreElasticServer\",\"startTime\":\"2020-09-23T18:59:41.867Z\"}" + } + }, + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestoreServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "224" ], + "x-ms-client-request-id": [ "957b7a82-763a-4ee9-8b07-1061f07e6041" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, "Response": { "StatusCode": 200, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "6efbb93c-a8df-4925-9c12-4aa0bd088967" ], + "x-ms-request-id": [ "6cfdbaf7-e942-4a2b-b16d-4e594cb7a82d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "7af71d11-f9cc-4620-a8de-f86c3e1e110e" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T060808Z:7af71d11-f9cc-4620-a8de-f86c3e1e110e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11808" ], + "x-ms-correlation-request-id": [ "d8c70539-1eb1-468a-8b8a-246e93a1b626" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T185952Z:d8c70539-1eb1-468a-8b8a-246e93a1b626" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 06:08:07 GMT" ] + "Date": [ "Wed, 23 Sep 2020 18:59:51 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"00e90949-4437-43af-a957-c9406e9fe1c4\",\"status\":\"InProgress\",\"startTime\":\"2020-04-15T06:07:58.617Z\"}" + "Content": "{\"name\":\"8d89f7b4-a356-43e7-9f22-84d6c55ad28e\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:59:41.867Z\"}" } }, - "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/00e90949-4437-43af-a957-c9406e9fe1c4?api-version=2018-06-01-preview+4": { + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestoreServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/00e90949-4437-43af-a957-c9406e9fe1c4?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "2", "3", "4" ], - "x-ms-client-request-id": [ "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a" ], - "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer" ], - "FullCommandName": [ "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "225" ], + "x-ms-client-request-id": [ "957b7a82-763a-4ee9-8b07-1061f07e6041" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -138,36 +1372,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "88c5c58b-55ab-479b-b26b-1568719ed522" ], + "x-ms-request-id": [ "cb3d074d-9711-4b01-8faa-fc8c114e4225" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "eadea7ab-3e69-4499-adf1-f1e19084e8c7" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T060818Z:eadea7ab-3e69-4499-adf1-f1e19084e8c7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11807" ], + "x-ms-correlation-request-id": [ "6ef66114-ed09-4849-9496-8aed781d2f4c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T190002Z:6ef66114-ed09-4849-9496-8aed781d2f4c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 06:08:17 GMT" ] + "Date": [ "Wed, 23 Sep 2020 19:00:02 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"00e90949-4437-43af-a957-c9406e9fe1c4\",\"status\":\"InProgress\",\"startTime\":\"2020-04-15T06:07:58.617Z\"}" + "Content": "{\"name\":\"8d89f7b4-a356-43e7-9f22-84d6c55ad28e\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:59:41.867Z\"}" } }, - "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/00e90949-4437-43af-a957-c9406e9fe1c4?api-version=2018-06-01-preview+5": { + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestoreServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/00e90949-4437-43af-a957-c9406e9fe1c4?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "2", "3", "4", "5" ], - "x-ms-client-request-id": [ "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a" ], - "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer" ], - "FullCommandName": [ "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "226" ], + "x-ms-client-request-id": [ "957b7a82-763a-4ee9-8b07-1061f07e6041" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -178,36 +1412,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "f67ce20e-48de-4cce-8e65-a107bc53ab3b" ], + "x-ms-request-id": [ "257b49c2-0221-4d1d-a8c1-3bf18da7b618" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-correlation-request-id": [ "87ac2d35-62b4-44cf-a1e4-f95d107379db" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T060827Z:87ac2d35-62b4-44cf-a1e4-f95d107379db" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11806" ], + "x-ms-correlation-request-id": [ "9025955f-97de-4fe9-aff8-794bc2b39be4" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T190013Z:9025955f-97de-4fe9-aff8-794bc2b39be4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 06:08:26 GMT" ] + "Date": [ "Wed, 23 Sep 2020 19:00:13 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"00e90949-4437-43af-a957-c9406e9fe1c4\",\"status\":\"InProgress\",\"startTime\":\"2020-04-15T06:07:58.617Z\"}" + "Content": "{\"name\":\"8d89f7b4-a356-43e7-9f22-84d6c55ad28e\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:59:41.867Z\"}" } }, - "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/00e90949-4437-43af-a957-c9406e9fe1c4?api-version=2018-06-01-preview+6": { + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestoreServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/00e90949-4437-43af-a957-c9406e9fe1c4?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "2", "3", "4", "5", "6" ], - "x-ms-client-request-id": [ "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a" ], - "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer" ], - "FullCommandName": [ "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "227" ], + "x-ms-client-request-id": [ "957b7a82-763a-4ee9-8b07-1061f07e6041" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -218,36 +1452,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "d0ee2765-46d1-49a6-bb97-89b07cc2f382" ], + "x-ms-request-id": [ "54deef4d-4a4b-4000-aa9a-b645e81b4130" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], - "x-ms-correlation-request-id": [ "a1a1d147-dd49-41c8-97c5-26034c5ede71" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T060837Z:a1a1d147-dd49-41c8-97c5-26034c5ede71" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11805" ], + "x-ms-correlation-request-id": [ "d4182daa-394b-433b-8b16-e1b126131162" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T190023Z:d4182daa-394b-433b-8b16-e1b126131162" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 06:08:37 GMT" ] + "Date": [ "Wed, 23 Sep 2020 19:00:23 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"00e90949-4437-43af-a957-c9406e9fe1c4\",\"status\":\"InProgress\",\"startTime\":\"2020-04-15T06:07:58.617Z\"}" + "Content": "{\"name\":\"8d89f7b4-a356-43e7-9f22-84d6c55ad28e\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:59:41.867Z\"}" } }, - "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/00e90949-4437-43af-a957-c9406e9fe1c4?api-version=2018-06-01-preview+7": { + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestoreServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/00e90949-4437-43af-a957-c9406e9fe1c4?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "2", "3", "4", "5", "6", "7" ], - "x-ms-client-request-id": [ "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a" ], - "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer" ], - "FullCommandName": [ "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "228" ], + "x-ms-client-request-id": [ "957b7a82-763a-4ee9-8b07-1061f07e6041" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -258,36 +1492,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "b055e2d8-0eb6-4144-95f4-40c2ba9fecd8" ], + "x-ms-request-id": [ "e9e90004-c43d-4244-8668-30df763d55aa" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], - "x-ms-correlation-request-id": [ "295271fe-1222-42eb-8737-103280ee63ab" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T060846Z:295271fe-1222-42eb-8737-103280ee63ab" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11804" ], + "x-ms-correlation-request-id": [ "fd3ea390-1e4b-43ec-b81d-eee822c8f4e5" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T190034Z:fd3ea390-1e4b-43ec-b81d-eee822c8f4e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 06:08:46 GMT" ] + "Date": [ "Wed, 23 Sep 2020 19:00:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"00e90949-4437-43af-a957-c9406e9fe1c4\",\"status\":\"InProgress\",\"startTime\":\"2020-04-15T06:07:58.617Z\"}" + "Content": "{\"name\":\"8d89f7b4-a356-43e7-9f22-84d6c55ad28e\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:59:41.867Z\"}" } }, - "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/00e90949-4437-43af-a957-c9406e9fe1c4?api-version=2018-06-01-preview+8": { + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestoreServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/00e90949-4437-43af-a957-c9406e9fe1c4?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "2", "3", "4", "5", "6", "7", "8" ], - "x-ms-client-request-id": [ "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a" ], - "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer" ], - "FullCommandName": [ "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "229" ], + "x-ms-client-request-id": [ "957b7a82-763a-4ee9-8b07-1061f07e6041" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -298,36 +1532,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "f0064e81-721f-4b91-8eee-035ef22ecd48" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], + "x-ms-request-id": [ "e66e2fe6-e581-40cd-9910-e572629e40ef" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "b533d447-7e91-4fa3-80a9-a88927278197" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T060856Z:b533d447-7e91-4fa3-80a9-a88927278197" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11803" ], + "x-ms-correlation-request-id": [ "028e2cf3-90aa-43b0-baf0-ddcec8ad73cb" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T190044Z:028e2cf3-90aa-43b0-baf0-ddcec8ad73cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 06:08:55 GMT" ] + "Date": [ "Wed, 23 Sep 2020 19:00:44 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"00e90949-4437-43af-a957-c9406e9fe1c4\",\"status\":\"InProgress\",\"startTime\":\"2020-04-15T06:07:58.617Z\"}" + "Content": "{\"name\":\"8d89f7b4-a356-43e7-9f22-84d6c55ad28e\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:59:41.867Z\"}" } }, - "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/00e90949-4437-43af-a957-c9406e9fe1c4?api-version=2018-06-01-preview+9": { + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestoreServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/00e90949-4437-43af-a957-c9406e9fe1c4?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "2", "3", "4", "5", "6", "7", "8", "9" ], - "x-ms-client-request-id": [ "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a" ], - "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer" ], - "FullCommandName": [ "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "230" ], + "x-ms-client-request-id": [ "957b7a82-763a-4ee9-8b07-1061f07e6041" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -338,36 +1572,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "73411d2c-56e0-4b2e-a2df-7e606e9576e5" ], + "x-ms-request-id": [ "5b5132fc-e0be-4d7e-b148-3627b9bc2bcd" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11989" ], - "x-ms-correlation-request-id": [ "dd4de9ab-4d7b-41da-aaf1-4f125fd849ca" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T060906Z:dd4de9ab-4d7b-41da-aaf1-4f125fd849ca" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11802" ], + "x-ms-correlation-request-id": [ "1b378ff6-c95a-4e9c-8c90-cda760d17286" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T190054Z:1b378ff6-c95a-4e9c-8c90-cda760d17286" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 06:09:06 GMT" ] + "Date": [ "Wed, 23 Sep 2020 19:00:54 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"00e90949-4437-43af-a957-c9406e9fe1c4\",\"status\":\"InProgress\",\"startTime\":\"2020-04-15T06:07:58.617Z\"}" + "Content": "{\"name\":\"8d89f7b4-a356-43e7-9f22-84d6c55ad28e\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:59:41.867Z\"}" } }, - "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/00e90949-4437-43af-a957-c9406e9fe1c4?api-version=2018-06-01-preview+10": { + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestoreServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/00e90949-4437-43af-a957-c9406e9fe1c4?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "2", "3", "4", "5", "6", "7", "8", "9", "10" ], - "x-ms-client-request-id": [ "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a" ], - "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer" ], - "FullCommandName": [ "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "231" ], + "x-ms-client-request-id": [ "957b7a82-763a-4ee9-8b07-1061f07e6041" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -378,36 +1612,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "0a915cbf-db92-4105-bcf0-4b4bc383e965" ], + "x-ms-request-id": [ "0d5958d0-212e-4c13-9ceb-7366a0be648d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11988" ], - "x-ms-correlation-request-id": [ "7d633474-7087-45da-89bb-7155340d5384" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T060916Z:7d633474-7087-45da-89bb-7155340d5384" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11801" ], + "x-ms-correlation-request-id": [ "16e14809-b7be-4c7b-b6cd-19649527276b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T190105Z:16e14809-b7be-4c7b-b6cd-19649527276b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 06:09:15 GMT" ] + "Date": [ "Wed, 23 Sep 2020 19:01:04 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"00e90949-4437-43af-a957-c9406e9fe1c4\",\"status\":\"InProgress\",\"startTime\":\"2020-04-15T06:07:58.617Z\"}" + "Content": "{\"name\":\"8d89f7b4-a356-43e7-9f22-84d6c55ad28e\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:59:41.867Z\"}" } }, - "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/00e90949-4437-43af-a957-c9406e9fe1c4?api-version=2018-06-01-preview+11": { + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestoreServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/00e90949-4437-43af-a957-c9406e9fe1c4?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "2", "3", "4", "5", "6", "7", "8", "9", "10", "11" ], - "x-ms-client-request-id": [ "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a" ], - "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer" ], - "FullCommandName": [ "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "232" ], + "x-ms-client-request-id": [ "957b7a82-763a-4ee9-8b07-1061f07e6041" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -418,36 +1652,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "17a68db5-aa57-444b-9bb8-5ee32b5192d5" ], + "x-ms-request-id": [ "4f797aa1-83c3-4f9a-aade-1a6f65208504" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11987" ], - "x-ms-correlation-request-id": [ "19d3407c-d4b0-49b5-886b-55056efcbd39" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T060925Z:19d3407c-d4b0-49b5-886b-55056efcbd39" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11800" ], + "x-ms-correlation-request-id": [ "5b5364a3-5b2c-4af0-908b-56d2222b094e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T190115Z:5b5364a3-5b2c-4af0-908b-56d2222b094e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 06:09:25 GMT" ] + "Date": [ "Wed, 23 Sep 2020 19:01:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"00e90949-4437-43af-a957-c9406e9fe1c4\",\"status\":\"InProgress\",\"startTime\":\"2020-04-15T06:07:58.617Z\"}" + "Content": "{\"name\":\"8d89f7b4-a356-43e7-9f22-84d6c55ad28e\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:59:41.867Z\"}" } }, - "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/00e90949-4437-43af-a957-c9406e9fe1c4?api-version=2018-06-01-preview+12": { + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestoreServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/00e90949-4437-43af-a957-c9406e9fe1c4?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12" ], - "x-ms-client-request-id": [ "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a" ], - "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer" ], - "FullCommandName": [ "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "233" ], + "x-ms-client-request-id": [ "957b7a82-763a-4ee9-8b07-1061f07e6041" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -458,36 +1692,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "eef32dbe-ba45-4062-be48-a1aefe8e9035" ], + "x-ms-request-id": [ "ddd1410d-965f-473c-ad2a-a1da0eb97130" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11986" ], - "x-ms-correlation-request-id": [ "f8cfb3f1-9901-4f20-a161-a52a9290935d" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T060935Z:f8cfb3f1-9901-4f20-a161-a52a9290935d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11799" ], + "x-ms-correlation-request-id": [ "631f76fb-0690-4470-83c5-27f21f644956" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T190125Z:631f76fb-0690-4470-83c5-27f21f644956" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 06:09:34 GMT" ] + "Date": [ "Wed, 23 Sep 2020 19:01:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"00e90949-4437-43af-a957-c9406e9fe1c4\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-15T06:07:58.617Z\"}" + "Content": "{\"name\":\"8d89f7b4-a356-43e7-9f22-84d6c55ad28e\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:59:41.867Z\"}" } }, - "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24trst01?api-version=2018-06-01-preview+13": { + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestoreServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24trst01?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13" ], - "x-ms-client-request-id": [ "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a", "52793dd3-f0b8-45e4-8b4a-d2ca22fb664a" ], - "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer" ], - "FullCommandName": [ "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "234" ], + "x-ms-client-request-id": [ "957b7a82-763a-4ee9-8b07-1061f07e6041" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -497,36 +1731,37 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "9ef21ca9-0ef2-4af0-9b91-471dc0d6157c" ], + "Retry-After": [ "10" ], + "x-ms-request-id": [ "1925d4e0-67f5-453a-bd48-46acd5dfe630" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11985" ], - "x-ms-correlation-request-id": [ "c05b4fdf-eb74-43a1-942b-7166db55350a" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T060935Z:c05b4fdf-eb74-43a1-942b-7166db55350a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11798" ], + "x-ms-correlation-request-id": [ "814be209-d6b0-4aaf-baf2-98a7080232ce" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T190136Z:814be209-d6b0-4aaf-baf2-98a7080232ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 06:09:35 GMT" ] + "Date": [ "Wed, 23 Sep 2020 19:01:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "951" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-plo24trst01.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T06:17:58.897+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24trst01\",\"name\":\"mariadb-test-plo24trst01\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" + "Content": "{\"name\":\"8d89f7b4-a356-43e7-9f22-84d6c55ad28e\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:59:41.867Z\"}" } }, - "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24trst01?api-version=2018-06-01-preview+14": { + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestoreServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24trst01?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "14" ], - "x-ms-client-request-id": [ "a8a62662-f9c1-477d-b53a-b16e87214db3" ], - "CommandName": [ "Get-AzMariaDBServer" ], - "FullCommandName": [ "Get-AzMariaDbServer_Get" ], + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "235" ], + "x-ms-client-request-id": [ "957b7a82-763a-4ee9-8b07-1061f07e6041" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -536,36 +1771,37 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "bbe38ea5-2d0b-4cc5-8c97-a3324f9813f9" ], + "Retry-After": [ "10" ], + "x-ms-request-id": [ "9df6b739-ffc9-4402-b5f0-f98c4ba4b8f3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11984" ], - "x-ms-correlation-request-id": [ "de6ae070-3fd5-4a9f-afe4-babedf003c63" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T060936Z:de6ae070-3fd5-4a9f-afe4-babedf003c63" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11797" ], + "x-ms-correlation-request-id": [ "c3f89b17-849b-44aa-9895-2e5828483f0a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T190146Z:c3f89b17-849b-44aa-9895-2e5828483f0a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 06:09:35 GMT" ] + "Date": [ "Wed, 23 Sep 2020 19:01:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "951" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-plo24trst01.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T06:17:58.897+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24trst01\",\"name\":\"mariadb-test-plo24trst01\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" + "Content": "{\"name\":\"8d89f7b4-a356-43e7-9f22-84d6c55ad28e\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:59:41.867Z\"}" } }, - "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestoreServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24t?api-version=2018-06-01-preview+1": { + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestoreServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24t?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "15" ], - "x-ms-client-request-id": [ "954552df-372b-4bdc-8496-b94affd05365" ], - "CommandName": [ "Get-AzMariaDbServer" ], - "FullCommandName": [ "Get-AzMariaDbServer_Get" ], + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "236" ], + "x-ms-client-request-id": [ "957b7a82-763a-4ee9-8b07-1061f07e6041" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -575,73 +1811,77 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "3a87b71b-49ec-4488-8968-d1d061e7fc27" ], + "Retry-After": [ "10" ], + "x-ms-request-id": [ "a2e5c311-d2b0-4037-aac9-a4f7c8375d21" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11983" ], - "x-ms-correlation-request-id": [ "cffe471e-30a8-43d5-8ef9-bf507e5892fe" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T060936Z:cffe471e-30a8-43d5-8ef9-bf507e5892fe" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11796" ], + "x-ms-correlation-request-id": [ "99c1101e-170d-4477-8e53-d075d8bb4331" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T190157Z:99c1101e-170d-4477-8e53-d075d8bb4331" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 06:09:35 GMT" ] + "Date": [ "Wed, 23 Sep 2020 19:01:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "938" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-plo24t.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:06:29.943+00:00\",\"replicationRole\":\"Master\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24t\",\"name\":\"mariadb-test-plo24t\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" + "Content": "{\"name\":\"8d89f7b4-a356-43e7-9f22-84d6c55ad28e\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:59:41.867Z\"}" } }, - "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestoreServerObject+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24trst12?api-version=2018-06-01-preview+2": { + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestoreServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview+16": { "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24trst12?api-version=2018-06-01-preview", - "Content": "{\n \"properties\": {\n \"createMode\": \"PointInTimeRestore\",\n \"restorePointInTime\": \"2020-04-15T03:39:46.0000000\",\n \"sourceServerId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24t\"\n },\n \"location\": \"eastus\"\n}", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview", + "Content": null, "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "237" ], + "x-ms-client-request-id": [ "957b7a82-763a-4ee9-8b07-1061f07e6041" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "318" ] } }, "Response": { - "StatusCode": 202, + "StatusCode": 200, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/9030bd92-6c79-4f1f-b48e-fd9db8f8fa6d?api-version=2018-06-01-preview" ], "Retry-After": [ "10" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/9030bd92-6c79-4f1f-b48e-fd9db8f8fa6d?api-version=2018-06-01-preview" ], - "x-ms-request-id": [ "9030bd92-6c79-4f1f-b48e-fd9db8f8fa6d" ], + "x-ms-request-id": [ "162b03ea-7be7-4dba-a697-c22743859ad3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], - "x-ms-correlation-request-id": [ "251f47c3-1e69-4339-a5e3-4b4eaa736c62" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T060938Z:251f47c3-1e69-4339-a5e3-4b4eaa736c62" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11795" ], + "x-ms-correlation-request-id": [ "269c3317-ba64-49ba-a224-5182c0b4338a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T190207Z:269c3317-ba64-49ba-a224-5182c0b4338a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 06:09:37 GMT" ] + "Date": [ "Wed, 23 Sep 2020 19:02:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "75" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"RestoreElasticServer\",\"startTime\":\"2020-04-15T06:09:38.207Z\"}" + "Content": "{\"name\":\"8d89f7b4-a356-43e7-9f22-84d6c55ad28e\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:59:41.867Z\"}" } }, - "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestoreServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/9030bd92-6c79-4f1f-b48e-fd9db8f8fa6d?api-version=2018-06-01-preview+3": { + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestoreServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/9030bd92-6c79-4f1f-b48e-fd9db8f8fa6d?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "16", "17" ], - "x-ms-client-request-id": [ "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640" ], - "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer" ], - "FullCommandName": [ "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "238" ], + "x-ms-client-request-id": [ "957b7a82-763a-4ee9-8b07-1061f07e6041" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -652,36 +1892,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "0d45b63d-9eae-41e0-bbbc-0733ca992ec2" ], + "x-ms-request-id": [ "037c3e26-df90-4191-95c5-120db79d734a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11982" ], - "x-ms-correlation-request-id": [ "3c5979d1-92ad-4e31-afdf-853e5debbe56" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T060948Z:3c5979d1-92ad-4e31-afdf-853e5debbe56" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11794" ], + "x-ms-correlation-request-id": [ "ccd5317f-90e8-4e5e-982d-2bc3e7adbefd" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T190217Z:ccd5317f-90e8-4e5e-982d-2bc3e7adbefd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 06:09:47 GMT" ] + "Date": [ "Wed, 23 Sep 2020 19:02:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"9030bd92-6c79-4f1f-b48e-fd9db8f8fa6d\",\"status\":\"InProgress\",\"startTime\":\"2020-04-15T06:09:38.207Z\"}" + "Content": "{\"name\":\"8d89f7b4-a356-43e7-9f22-84d6c55ad28e\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:59:41.867Z\"}" } }, - "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestoreServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/9030bd92-6c79-4f1f-b48e-fd9db8f8fa6d?api-version=2018-06-01-preview+4": { + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestoreServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/9030bd92-6c79-4f1f-b48e-fd9db8f8fa6d?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "16", "17", "18" ], - "x-ms-client-request-id": [ "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640" ], - "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer" ], - "FullCommandName": [ "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "239" ], + "x-ms-client-request-id": [ "957b7a82-763a-4ee9-8b07-1061f07e6041" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -692,36 +1932,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "d2be5542-51c0-4834-9655-ac35303409fe" ], + "x-ms-request-id": [ "5031d332-4b30-4c8f-b1c4-0db905337c9b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11981" ], - "x-ms-correlation-request-id": [ "68ff815b-e753-456e-b368-885f43400ade" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T060957Z:68ff815b-e753-456e-b368-885f43400ade" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11793" ], + "x-ms-correlation-request-id": [ "5358ce4b-12ab-4a45-82c5-82e949fb6f8e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T190228Z:5358ce4b-12ab-4a45-82c5-82e949fb6f8e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 06:09:56 GMT" ] + "Date": [ "Wed, 23 Sep 2020 19:02:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"9030bd92-6c79-4f1f-b48e-fd9db8f8fa6d\",\"status\":\"InProgress\",\"startTime\":\"2020-04-15T06:09:38.207Z\"}" + "Content": "{\"name\":\"8d89f7b4-a356-43e7-9f22-84d6c55ad28e\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:59:41.867Z\"}" } }, - "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestoreServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/9030bd92-6c79-4f1f-b48e-fd9db8f8fa6d?api-version=2018-06-01-preview+5": { + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestoreServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/9030bd92-6c79-4f1f-b48e-fd9db8f8fa6d?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "16", "17", "18", "19" ], - "x-ms-client-request-id": [ "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640" ], - "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer" ], - "FullCommandName": [ "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "240" ], + "x-ms-client-request-id": [ "957b7a82-763a-4ee9-8b07-1061f07e6041" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -732,36 +1972,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "035bf45f-8758-4996-a1d1-9f074c620386" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11980" ], + "x-ms-request-id": [ "c8c103ec-4a5f-40ec-9343-cfd1f1db0119" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "98087917-08b0-4e94-bdff-1fc33d72ffbd" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T061007Z:98087917-08b0-4e94-bdff-1fc33d72ffbd" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11792" ], + "x-ms-correlation-request-id": [ "93052682-d670-42b8-ba11-2fb4d0517dee" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T190238Z:93052682-d670-42b8-ba11-2fb4d0517dee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 06:10:07 GMT" ] + "Date": [ "Wed, 23 Sep 2020 19:02:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"9030bd92-6c79-4f1f-b48e-fd9db8f8fa6d\",\"status\":\"InProgress\",\"startTime\":\"2020-04-15T06:09:38.207Z\"}" + "Content": "{\"name\":\"8d89f7b4-a356-43e7-9f22-84d6c55ad28e\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:59:41.867Z\"}" } }, - "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestoreServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/9030bd92-6c79-4f1f-b48e-fd9db8f8fa6d?api-version=2018-06-01-preview+6": { + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestoreServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/9030bd92-6c79-4f1f-b48e-fd9db8f8fa6d?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "16", "17", "18", "19", "20" ], - "x-ms-client-request-id": [ "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640" ], - "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer" ], - "FullCommandName": [ "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "241" ], + "x-ms-client-request-id": [ "957b7a82-763a-4ee9-8b07-1061f07e6041" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -772,36 +2012,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "8e32b9b2-d59e-4b6c-855c-1b6519c790b3" ], + "x-ms-request-id": [ "97cf3951-81f9-496f-a8fd-f3d9af5f66cc" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11979" ], - "x-ms-correlation-request-id": [ "5ea12f2a-9432-4df8-a2b4-19e38c831224" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T061017Z:5ea12f2a-9432-4df8-a2b4-19e38c831224" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11791" ], + "x-ms-correlation-request-id": [ "5149bbe9-f738-4ea3-8fd7-eb3651ff79bf" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T190249Z:5149bbe9-f738-4ea3-8fd7-eb3651ff79bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 06:10:17 GMT" ] + "Date": [ "Wed, 23 Sep 2020 19:02:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"9030bd92-6c79-4f1f-b48e-fd9db8f8fa6d\",\"status\":\"InProgress\",\"startTime\":\"2020-04-15T06:09:38.207Z\"}" + "Content": "{\"name\":\"8d89f7b4-a356-43e7-9f22-84d6c55ad28e\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:59:41.867Z\"}" } }, - "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestoreServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/9030bd92-6c79-4f1f-b48e-fd9db8f8fa6d?api-version=2018-06-01-preview+7": { + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestoreServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/9030bd92-6c79-4f1f-b48e-fd9db8f8fa6d?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "16", "17", "18", "19", "20", "21" ], - "x-ms-client-request-id": [ "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640" ], - "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer" ], - "FullCommandName": [ "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "242" ], + "x-ms-client-request-id": [ "957b7a82-763a-4ee9-8b07-1061f07e6041" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -812,36 +2052,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "d179c803-782d-4bdc-b791-d3e7103f8892" ], + "x-ms-request-id": [ "ad9748c2-27ec-4980-bdbf-7ee0bd00b9eb" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11978" ], - "x-ms-correlation-request-id": [ "4317cce8-eb56-44c9-b1d8-3aa607dae63a" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T061027Z:4317cce8-eb56-44c9-b1d8-3aa607dae63a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11790" ], + "x-ms-correlation-request-id": [ "3e2e016d-9d01-4874-876a-15f787f8b100" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T190300Z:3e2e016d-9d01-4874-876a-15f787f8b100" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 06:10:26 GMT" ] + "Date": [ "Wed, 23 Sep 2020 19:03:00 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"9030bd92-6c79-4f1f-b48e-fd9db8f8fa6d\",\"status\":\"InProgress\",\"startTime\":\"2020-04-15T06:09:38.207Z\"}" + "Content": "{\"name\":\"8d89f7b4-a356-43e7-9f22-84d6c55ad28e\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:59:41.867Z\"}" } }, - "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestoreServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/9030bd92-6c79-4f1f-b48e-fd9db8f8fa6d?api-version=2018-06-01-preview+8": { + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestoreServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview+22": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/9030bd92-6c79-4f1f-b48e-fd9db8f8fa6d?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "16", "17", "18", "19", "20", "21", "22" ], - "x-ms-client-request-id": [ "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640" ], - "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer" ], - "FullCommandName": [ "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "243" ], + "x-ms-client-request-id": [ "957b7a82-763a-4ee9-8b07-1061f07e6041" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -852,36 +2092,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "6fc88899-ae97-4506-9902-a7e78c0dd49a" ], + "x-ms-request-id": [ "607ecdfb-c86a-4855-a7a3-1a7306e53a6f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11977" ], - "x-ms-correlation-request-id": [ "712738d9-9e76-4be4-b328-531ab5859588" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T061036Z:712738d9-9e76-4be4-b328-531ab5859588" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11789" ], + "x-ms-correlation-request-id": [ "79d7ccf0-37c5-4676-8b9a-f6f3c0262aa9" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T190311Z:79d7ccf0-37c5-4676-8b9a-f6f3c0262aa9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 06:10:36 GMT" ] + "Date": [ "Wed, 23 Sep 2020 19:03:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"9030bd92-6c79-4f1f-b48e-fd9db8f8fa6d\",\"status\":\"InProgress\",\"startTime\":\"2020-04-15T06:09:38.207Z\"}" + "Content": "{\"name\":\"8d89f7b4-a356-43e7-9f22-84d6c55ad28e\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:59:41.867Z\"}" } }, - "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestoreServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/9030bd92-6c79-4f1f-b48e-fd9db8f8fa6d?api-version=2018-06-01-preview+9": { + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestoreServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/9030bd92-6c79-4f1f-b48e-fd9db8f8fa6d?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "16", "17", "18", "19", "20", "21", "22", "23" ], - "x-ms-client-request-id": [ "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640" ], - "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer" ], - "FullCommandName": [ "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "244" ], + "x-ms-client-request-id": [ "957b7a82-763a-4ee9-8b07-1061f07e6041" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -892,36 +2132,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "7fbfcaa2-4f72-4222-8b9b-0d8c0b9550e3" ], + "x-ms-request-id": [ "6dc9e9b1-8a9a-4137-8e54-2c325d2ac4fc" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11976" ], - "x-ms-correlation-request-id": [ "62fe629b-6e8c-45c0-9325-250f99f83bdb" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T061046Z:62fe629b-6e8c-45c0-9325-250f99f83bdb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11788" ], + "x-ms-correlation-request-id": [ "506c1581-c7a5-4729-9e76-cd603a4069e6" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T190321Z:506c1581-c7a5-4729-9e76-cd603a4069e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 06:10:45 GMT" ] + "Date": [ "Wed, 23 Sep 2020 19:03:20 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"9030bd92-6c79-4f1f-b48e-fd9db8f8fa6d\",\"status\":\"InProgress\",\"startTime\":\"2020-04-15T06:09:38.207Z\"}" + "Content": "{\"name\":\"8d89f7b4-a356-43e7-9f22-84d6c55ad28e\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:59:41.867Z\"}" } }, - "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestoreServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/9030bd92-6c79-4f1f-b48e-fd9db8f8fa6d?api-version=2018-06-01-preview+10": { + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestoreServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview+24": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/9030bd92-6c79-4f1f-b48e-fd9db8f8fa6d?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "16", "17", "18", "19", "20", "21", "22", "23", "24" ], - "x-ms-client-request-id": [ "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640" ], - "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer" ], - "FullCommandName": [ "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "245" ], + "x-ms-client-request-id": [ "957b7a82-763a-4ee9-8b07-1061f07e6041" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -932,36 +2172,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "d686848a-10be-487d-9268-9ef5966aca37" ], + "x-ms-request-id": [ "bc4a3109-6d1e-405a-9ac4-4323075bb35c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11975" ], - "x-ms-correlation-request-id": [ "a85e2e20-a5eb-4042-bcfd-2f612e3da06d" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T061055Z:a85e2e20-a5eb-4042-bcfd-2f612e3da06d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11787" ], + "x-ms-correlation-request-id": [ "504b1a09-791a-4b93-b2dd-7880ced3ee65" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T190331Z:504b1a09-791a-4b93-b2dd-7880ced3ee65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 06:10:55 GMT" ] + "Date": [ "Wed, 23 Sep 2020 19:03:31 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"9030bd92-6c79-4f1f-b48e-fd9db8f8fa6d\",\"status\":\"InProgress\",\"startTime\":\"2020-04-15T06:09:38.207Z\"}" + "Content": "{\"name\":\"8d89f7b4-a356-43e7-9f22-84d6c55ad28e\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:59:41.867Z\"}" } }, - "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestoreServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/9030bd92-6c79-4f1f-b48e-fd9db8f8fa6d?api-version=2018-06-01-preview+11": { + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestoreServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview+25": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/9030bd92-6c79-4f1f-b48e-fd9db8f8fa6d?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "16", "17", "18", "19", "20", "21", "22", "23", "24", "25" ], - "x-ms-client-request-id": [ "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640" ], - "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer" ], - "FullCommandName": [ "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "246" ], + "x-ms-client-request-id": [ "957b7a82-763a-4ee9-8b07-1061f07e6041" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -972,36 +2212,156 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "459a5d46-a4a8-4fbf-beb2-c6569c1199dd" ], + "x-ms-request-id": [ "37280282-585f-4fde-b6a4-980e519ab9eb" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11974" ], - "x-ms-correlation-request-id": [ "539316ee-df88-4085-9bc0-d1292803afee" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T061105Z:539316ee-df88-4085-9bc0-d1292803afee" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11786" ], + "x-ms-correlation-request-id": [ "33c45517-a469-43f5-8161-e979df1c326b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T190342Z:33c45517-a469-43f5-8161-e979df1c326b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 06:11:04 GMT" ] + "Date": [ "Wed, 23 Sep 2020 19:03:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"9030bd92-6c79-4f1f-b48e-fd9db8f8fa6d\",\"status\":\"InProgress\",\"startTime\":\"2020-04-15T06:09:38.207Z\"}" + "Content": "{\"name\":\"8d89f7b4-a356-43e7-9f22-84d6c55ad28e\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:59:41.867Z\"}" } }, - "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestoreServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/9030bd92-6c79-4f1f-b48e-fd9db8f8fa6d?api-version=2018-06-01-preview+12": { + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestoreServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview+26": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/9030bd92-6c79-4f1f-b48e-fd9db8f8fa6d?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26" ], - "x-ms-client-request-id": [ "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640" ], - "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer" ], - "FullCommandName": [ "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "247" ], + "x-ms-client-request-id": [ "957b7a82-763a-4ee9-8b07-1061f07e6041" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-request-id": [ "80b3ead9-0f80-403f-ad95-6cf47614fe15" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11785" ], + "x-ms-correlation-request-id": [ "6814a837-6f34-4889-85e0-80f5deace85f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T190352Z:6814a837-6f34-4889-85e0-80f5deace85f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 19:03:51 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"8d89f7b4-a356-43e7-9f22-84d6c55ad28e\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:59:41.867Z\"}" + } + }, + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestoreServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview+27": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "248" ], + "x-ms-client-request-id": [ "957b7a82-763a-4ee9-8b07-1061f07e6041" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-request-id": [ "1832c751-8bae-494b-982f-858eb50a36a5" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11784" ], + "x-ms-correlation-request-id": [ "ed4bd72a-483e-4a0e-80a7-4a60eafb55e9" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T190403Z:ed4bd72a-483e-4a0e-80a7-4a60eafb55e9" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 19:04:03 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"8d89f7b4-a356-43e7-9f22-84d6c55ad28e\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:59:41.867Z\"}" + } + }, + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestoreServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview+28": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "249" ], + "x-ms-client-request-id": [ "957b7a82-763a-4ee9-8b07-1061f07e6041" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-request-id": [ "1348fc30-c2d0-4d1a-9dcb-d784cec1d23d" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11783" ], + "x-ms-correlation-request-id": [ "0b88ea06-1991-461c-a158-30e63e03dc39" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T190413Z:0b88ea06-1991-461c-a158-30e63e03dc39" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 19:04:13 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"8d89f7b4-a356-43e7-9f22-84d6c55ad28e\",\"status\":\"InProgress\",\"startTime\":\"2020-09-23T18:59:41.867Z\"}" + } + }, + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestoreServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview+29": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/8d89f7b4-a356-43e7-9f22-84d6c55ad28e?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "250" ], + "x-ms-client-request-id": [ "957b7a82-763a-4ee9-8b07-1061f07e6041" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -1012,36 +2372,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "bde7636b-353c-4d5f-878d-b4b48e267dbc" ], + "x-ms-request-id": [ "6f915e77-1f84-48c9-94d5-4ecab7412ec5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11973" ], - "x-ms-correlation-request-id": [ "0bcd9d99-1cf4-4d21-8d53-917a13e407d9" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T061115Z:0bcd9d99-1cf4-4d21-8d53-917a13e407d9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11782" ], + "x-ms-correlation-request-id": [ "c99f4d25-a7fc-4eb3-99bc-94f5d7f0acbe" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T190423Z:c99f4d25-a7fc-4eb3-99bc-94f5d7f0acbe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 06:11:14 GMT" ] + "Date": [ "Wed, 23 Sep 2020 19:04:23 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"9030bd92-6c79-4f1f-b48e-fd9db8f8fa6d\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-15T06:09:38.207Z\"}" + "Content": "{\"name\":\"8d89f7b4-a356-43e7-9f22-84d6c55ad28e\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-23T18:59:41.867Z\"}" } }, - "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestoreServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24trst12?api-version=2018-06-01-preview+13": { + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestoreServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08frst12?api-version=2018-06-01-preview+30": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24trst12?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08frst12?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27" ], - "x-ms-client-request-id": [ "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640", "2c25f549-706c-46cc-ac14-16662e277640" ], - "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer", "Az.MariaDb.internal\\New-AzMariaDbServer" ], - "FullCommandName": [ "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create", "New-AzMariaDbServer_Create" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "251" ], + "x-ms-client-request-id": [ "957b7a82-763a-4ee9-8b07-1061f07e6041" ], + "CommandName": [ "Az.MariaDb.internal\\New-AzMariaDbServer" ], + "FullCommandName": [ "New-AzMariaDbServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -1051,31 +2411,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "5c3e747e-2b49-4c2e-82cd-3b71a72eefc6" ], + "x-ms-request-id": [ "2628c6ab-37b6-4bdb-9ea5-40bcc4f61b62" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11972" ], - "x-ms-correlation-request-id": [ "629566e9-f41e-499e-b745-1927b7966f0f" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T061115Z:629566e9-f41e-499e-b745-1927b7966f0f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11781" ], + "x-ms-correlation-request-id": [ "8a2a6e20-4b58-4369-ae2b-b2dab93cd493" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T190424Z:8a2a6e20-4b58-4369-ae2b-b2dab93cd493" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 06:11:14 GMT" ] + "Date": [ "Wed, 23 Sep 2020 19:04:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "949" ], + "Content-Length": [ "951" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-plo24trst12.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T06:19:38.6+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24trst12\",\"name\":\"mariadb-test-plo24trst12\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-mqe08frst12.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T19:09:42.147+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08frst12\",\"name\":\"mariadb-test-mqe08frst12\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" } }, - "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestoreServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24trst12?api-version=2018-06-01-preview+14": { + "Restore-AzMariaDbServer+[NoContext]+PointInTimeRestoreServerObject+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08frst12?api-version=2018-06-01-preview+31": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24trst12?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08frst12?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "28" ], - "x-ms-client-request-id": [ "39d7f76c-d6b1-47fc-8d87-7e3cd0064f33" ], + "x-ms-unique-id": [ "252" ], + "x-ms-client-request-id": [ "fbfe761a-3664-4caa-ba89-f1ff3ad35c49" ], "CommandName": [ "Get-AzMariaDBServer" ], "FullCommandName": [ "Get-AzMariaDbServer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1090,21 +2450,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "20061887-605a-4a31-ac80-0ae1ea6a2220" ], + "x-ms-request-id": [ "f59559f2-cd1c-4294-b458-23a8286d49b3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11971" ], - "x-ms-correlation-request-id": [ "ed424572-5dba-463c-8191-9397a17221b9" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T061116Z:ed424572-5dba-463c-8191-9397a17221b9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11780" ], + "x-ms-correlation-request-id": [ "0ec8410a-96d0-46dc-b321-072c163b7b54" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T190424Z:0ec8410a-96d0-46dc-b321-072c163b7b54" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 06:11:15 GMT" ] + "Date": [ "Wed, 23 Sep 2020 19:04:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "949" ], + "Content-Length": [ "951" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-plo24trst12.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T06:19:38.6+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24trst12\",\"name\":\"mariadb-test-plo24trst12\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-mqe08frst12.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T19:09:42.147+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08frst12\",\"name\":\"mariadb-test-mqe08frst12\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" } } } \ No newline at end of file diff --git a/src/MariaDb/test/Restore-AzMariaDbServer.Tests.ps1 b/src/MariaDb/test/Restore-AzMariaDbServer.Tests.ps1 index 808711ff4a16..4c1bb3f15bb3 100644 --- a/src/MariaDb/test/Restore-AzMariaDbServer.Tests.ps1 +++ b/src/MariaDb/test/Restore-AzMariaDbServer.Tests.ps1 @@ -15,7 +15,7 @@ while(-not $mockingPath) { Describe 'Restore-AzMariaDbServer' { It 'PointInTimeRestore' { $restoreMariaDbName = $env.rstrgp02 + 'rst01' - $restorePointInTime = [datetime]::parse($env.restorePointInTime) + $restorePointInTime = (Get-Date).AddMinutes(-1) #-UsePointInTimeRestore Restore-AzMariaDBServer -Name $restoreMariaDbName -ServerName $env.rstrgp02 -ResourceGroupName $env.ResourceGroup -RestorePointInTime $restorePointInTime -Location $env.Location $restoreMariaDb = Get-AzMariaDBServer -Name $restoreMariaDbName -ResourceGroup $env.ResourceGroup @@ -23,7 +23,7 @@ Describe 'Restore-AzMariaDbServer' { } It 'PointInTimeRestoreServerObject' { $restoreMariaDbName = $env.rstrgp02 +'rst12' - $restorePointInTime = [datetime]::parse($env.restorePointInTime) + $restorePointInTime = (Get-Date).AddMinutes(-1) $mariadb = Get-AzMariaDbServer -ResourceGroupName $env.ResourceGroup -Name $env.rstrgp02 #-UsePointInTimeRestore Restore-AzMariaDBServer -Name $restoreMariaDbName -InputObject $mariadb -RestorePointInTime $restorePointInTime -Location $env.Location @@ -37,7 +37,7 @@ Describe 'Restore-AzMariaDbServer' { $geoMariaDbName = $dbname + '-geo01' $repMariaDbName = $dbname + '-geo01rep01' $location = 'eastus2' - New-AzMariaDbServerReplica -Name $repMariaDbName -ServerName $dbname -ResourceGroupName $env.ResourceGroup + New-AzMariaDbReplica -Name $repMariaDbName -ServerName $dbname -ResourceGroupName $env.ResourceGroup Restore-AzMariaDBServer -Name $geoMariaDbName -ServerName $repMariaDbName -ResourceGroupName $env.ResourceGroup -UseGeoRetore -Location $location $geoMariaDb = Get-AzMariaDBServer -Name $geoMariaDbName -ResourceGroupName $env.ResourceGroup $geoMariaDb.Name | Should -Be $geoMariaDbName @@ -49,7 +49,7 @@ Describe 'Restore-AzMariaDbServer' { $geoMariaDbName = $dbname + '-geo02' $repMariaDbName = $dbname + '-geo02rep01' $location = 'eastus2' - New-AzMariaDbServerReplica -Name $repMariaDbName -ServerName $dbname -ResourceGroupName $env.ResourceGroup + New-AzMariaDbReplica -Name $repMariaDbName -ServerName $dbname -ResourceGroupName $env.ResourceGroup $mariadb = Get-AzMariaDbServer -ResourceGroupName $env.ResourceGroup -Name $repMariaDbName Restore-AzMariaDBServer -Name $geoMariaDbName -InputObject $mariadb -UseGeoRetore -Location $location $geoMariaDb = Get-AzMariaDBServer -Name $geoMariaDbName -ResourceGroupName $env.ResourceGroup diff --git a/src/MariaDb/test/Update-AzMariaDbConfiguration.Recording.json b/src/MariaDb/test/Update-AzMariaDbConfiguration.Recording.json index 64310201b399..f1bebdd4b352 100644 --- a/src/MariaDb/test/Update-AzMariaDbConfiguration.Recording.json +++ b/src/MariaDb/test/Update-AzMariaDbConfiguration.Recording.json @@ -1,12 +1,12 @@ { - "Update-AzMariaDbConfiguration+[NoContext]+ServerName+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/delayed_insert_timeout?api-version=2018-06-01-preview+1": { + "Update-AzMariaDbConfiguration+[NoContext]+ServerName+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/delayed_insert_timeout?api-version=2018-06-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/delayed_insert_timeout?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/delayed_insert_timeout?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "228" ], - "x-ms-client-request-id": [ "ba2c7ebb-93bf-4b86-a1bc-22b2ab2dca76" ], + "x-ms-unique-id": [ "253" ], + "x-ms-client-request-id": [ "e639a08c-006e-4e6e-8d50-891d687f6aa0" ], "CommandName": [ "Get-AzMariaDbConfiguration" ], "FullCommandName": [ "Get-AzMariaDbConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -21,33 +21,33 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "32f4081f-3d7c-434a-8e1a-205b93e183e3" ], + "x-ms-request-id": [ "d4d101ec-9c34-4e74-bc80-da926995f46a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11805" ], - "x-ms-correlation-request-id": [ "19f4afb2-5f40-4f92-a198-3c92b98e646a" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T025818Z:19f4afb2-5f40-4f92-a198-3c92b98e646a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11779" ], + "x-ms-correlation-request-id": [ "9aaa5b5d-2a1c-40f2-9cb2-a56b3fd8cf5c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T190425Z:9aaa5b5d-2a1c-40f2-9cb2-a56b3fd8cf5c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:58:18 GMT" ] + "Date": [ "Wed, 23 Sep 2020 19:04:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "567" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"properties\":{\"value\":\"300\",\"description\":\"How long a INSERT DELAYED thread should wait for INSERT statements before terminating\",\"defaultValue\":\"300\",\"dataType\":\"Integer\",\"allowedValues\":\"1-31536000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/delayed_insert_timeout\",\"name\":\"delayed_insert_timeout\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"}" + "Content": "{\"properties\":{\"value\":\"300\",\"description\":\"How long a INSERT DELAYED thread should wait for INSERT statements before terminating\",\"defaultValue\":\"300\",\"dataType\":\"Integer\",\"allowedValues\":\"1-31536000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/delayed_insert_timeout\",\"name\":\"delayed_insert_timeout\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"}" } }, - "Update-AzMariaDbConfiguration+[NoContext]+ServerName+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/delayed_insert_timeout?api-version=2018-06-01-preview+2": { + "Update-AzMariaDbConfiguration+[NoContext]+ServerName+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/delayed_insert_timeout?api-version=2018-06-01-preview+2": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/delayed_insert_timeout?api-version=2018-06-01-preview", - "Content": "{\n \"properties\": {\n \"value\": \"250\"\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/delayed_insert_timeout?api-version=2018-06-01-preview", + "Content": "{\r\n \"properties\": {\r\n \"value\": \"250\"\r\n }\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "44" ] + "Content-Length": [ "48" ] } }, "Response": { @@ -55,39 +55,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/599f4672-89ac-40dd-aae8-6d07f3b5f3d8?api-version=2018-06-01-preview" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/06c1ac9b-81ef-4066-a3e5-8bc24443a157?api-version=2018-06-01-preview" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/599f4672-89ac-40dd-aae8-6d07f3b5f3d8?api-version=2018-06-01-preview" ], - "x-ms-request-id": [ "599f4672-89ac-40dd-aae8-6d07f3b5f3d8" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/06c1ac9b-81ef-4066-a3e5-8bc24443a157?api-version=2018-06-01-preview" ], + "x-ms-request-id": [ "06c1ac9b-81ef-4066-a3e5-8bc24443a157" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1184" ], - "x-ms-correlation-request-id": [ "7bcb2092-a2f8-4299-a8c0-bec4af0dbced" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T025819Z:7bcb2092-a2f8-4299-a8c0-bec4af0dbced" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1179" ], + "x-ms-correlation-request-id": [ "e6d989fb-1528-4212-9a8b-49104fd1a942" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T190426Z:e6d989fb-1528-4212-9a8b-49104fd1a942" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:58:18 GMT" ] + "Date": [ "Wed, 23 Sep 2020 19:04:26 GMT" ] }, "ContentHeaders": { "Content-Length": [ "80" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpdateElasticServerConfig\",\"startTime\":\"2020-04-15T02:58:19.303Z\"}" + "Content": "{\"operation\":\"UpdateElasticServerConfig\",\"startTime\":\"2020-09-23T19:04:25.977Z\"}" } }, - "Update-AzMariaDbConfiguration+[NoContext]+ServerName+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/599f4672-89ac-40dd-aae8-6d07f3b5f3d8?api-version=2018-06-01-preview+3": { + "Update-AzMariaDbConfiguration+[NoContext]+ServerName+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/06c1ac9b-81ef-4066-a3e5-8bc24443a157?api-version=2018-06-01-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/599f4672-89ac-40dd-aae8-6d07f3b5f3d8?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/06c1ac9b-81ef-4066-a3e5-8bc24443a157?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "229", "230" ], - "x-ms-client-request-id": [ "1504a585-7785-460a-ad13-d68099420bee", "1504a585-7785-460a-ad13-d68099420bee" ], - "CommandName": [ "Update-AzMariaDbConfiguration", "Update-AzMariaDbConfiguration" ], - "FullCommandName": [ "Update-AzMariaDbConfiguration_UpdateExpanded", "Update-AzMariaDbConfiguration_UpdateExpanded" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "255" ], + "x-ms-client-request-id": [ "4a73d39b-892c-49a4-8b12-4d3026218e03" ], + "CommandName": [ "Az.MariaDb.internal\\Set-AzMariaDbConfiguration" ], + "FullCommandName": [ "Set-AzMariaDbConfiguration_UpdateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -98,36 +98,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "2aeb9339-a7fa-4b56-8d0b-f63273fdf8e8" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11804" ], + "x-ms-request-id": [ "d21614ac-13d9-49d8-a67b-65136d9af1ac" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "0bb3e5f0-c3b4-4714-81e4-e1672c8c6fe9" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T025833Z:0bb3e5f0-c3b4-4714-81e4-e1672c8c6fe9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11778" ], + "x-ms-correlation-request-id": [ "ab9f4b69-ea5a-41be-a7d9-0a658d13f706" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T190441Z:ab9f4b69-ea5a-41be-a7d9-0a658d13f706" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:58:33 GMT" ] + "Date": [ "Wed, 23 Sep 2020 19:04:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"599f4672-89ac-40dd-aae8-6d07f3b5f3d8\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-15T02:58:19.303Z\"}" + "Content": "{\"name\":\"06c1ac9b-81ef-4066-a3e5-8bc24443a157\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-23T19:04:25.977Z\"}" } }, - "Update-AzMariaDbConfiguration+[NoContext]+ServerName+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/delayed_insert_timeout?api-version=2018-06-01-preview+4": { + "Update-AzMariaDbConfiguration+[NoContext]+ServerName+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/delayed_insert_timeout?api-version=2018-06-01-preview+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/delayed_insert_timeout?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/delayed_insert_timeout?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "229", "230", "231" ], - "x-ms-client-request-id": [ "1504a585-7785-460a-ad13-d68099420bee", "1504a585-7785-460a-ad13-d68099420bee", "1504a585-7785-460a-ad13-d68099420bee" ], - "CommandName": [ "Update-AzMariaDbConfiguration", "Update-AzMariaDbConfiguration", "Update-AzMariaDbConfiguration" ], - "FullCommandName": [ "Update-AzMariaDbConfiguration_UpdateExpanded", "Update-AzMariaDbConfiguration_UpdateExpanded", "Update-AzMariaDbConfiguration_UpdateExpanded" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "256" ], + "x-ms-client-request-id": [ "4a73d39b-892c-49a4-8b12-4d3026218e03" ], + "CommandName": [ "Az.MariaDb.internal\\Set-AzMariaDbConfiguration" ], + "FullCommandName": [ "Set-AzMariaDbConfiguration_UpdateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -137,21 +137,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "0cc0b171-91f3-4643-a12e-958cc5fb95ef" ], + "x-ms-request-id": [ "390c170b-d744-40f5-9a4b-0515dd737ce2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11803" ], - "x-ms-correlation-request-id": [ "595427eb-d1be-4665-9ef5-4928880bdebb" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T025834Z:595427eb-d1be-4665-9ef5-4928880bdebb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11777" ], + "x-ms-correlation-request-id": [ "818c1056-2caf-41d9-8700-ca5d228a65c9" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T190442Z:818c1056-2caf-41d9-8700-ca5d228a65c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:58:34 GMT" ] + "Date": [ "Wed, 23 Sep 2020 19:04:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "566" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"properties\":{\"value\":\"250\",\"description\":\"How long a INSERT DELAYED thread should wait for INSERT statements before terminating\",\"defaultValue\":\"300\",\"dataType\":\"Integer\",\"allowedValues\":\"1-31536000\",\"source\":\"user-override\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-l8ukfh/configurations/delayed_insert_timeout\",\"name\":\"delayed_insert_timeout\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"}" + "Content": "{\"properties\":{\"value\":\"250\",\"description\":\"How long a INSERT DELAYED thread should wait for INSERT statements before terminating\",\"defaultValue\":\"300\",\"dataType\":\"Integer\",\"allowedValues\":\"1-31536000\",\"source\":\"user-override\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-1imnpq/configurations/delayed_insert_timeout\",\"name\":\"delayed_insert_timeout\",\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"}" } } } \ No newline at end of file diff --git a/src/MariaDb/test/Update-AzMariaDbFirewallRule.Recording.json b/src/MariaDb/test/Update-AzMariaDbFirewallRule.Recording.json index 0511e3cd877d..21e71085df70 100644 --- a/src/MariaDb/test/Update-AzMariaDbFirewallRule.Recording.json +++ b/src/MariaDb/test/Update-AzMariaDbFirewallRule.Recording.json @@ -1,14 +1,14 @@ { - "Update-AzMariaDbFirewallRule+[NoContext]+UpdateExpanded+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y/firewallRules/fr-0aojzg?api-version=2018-06-01-preview+1": { + "Update-AzMariaDbFirewallRule+[NoContext]+ClientIPAddress+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz/firewallRules/fr-taijos?api-version=2018-06-01-preview+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y/firewallRules/fr-0aojzg?api-version=2018-06-01-preview", - "Content": "{\n \"properties\": {\n \"endIpAddress\": \"0.0.255.125\",\n \"startIpAddress\": \"0.0.255.1\"\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz/firewallRules/fr-taijos?api-version=2018-06-01-preview", + "Content": "{\r\n \"properties\": {\r\n \"endIpAddress\": \"0.0.0.2\",\r\n \"startIpAddress\": \"0.0.0.2\"\r\n }\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "94" ] + "Content-Length": [ "93" ] } }, "Response": { @@ -16,39 +16,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/e3456390-2891-4844-9221-b212e14f661f?api-version=2018-06-01-preview" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/b6928fe2-f103-475a-8797-cd824b33539c?api-version=2018-06-01-preview" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e3456390-2891-4844-9221-b212e14f661f?api-version=2018-06-01-preview" ], - "x-ms-request-id": [ "e3456390-2891-4844-9221-b212e14f661f" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/b6928fe2-f103-475a-8797-cd824b33539c?api-version=2018-06-01-preview" ], + "x-ms-request-id": [ "b6928fe2-f103-475a-8797-cd824b33539c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1183" ], - "x-ms-correlation-request-id": [ "e30ffb15-9cbb-42d6-affb-3d6de3af736b" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T025837Z:e30ffb15-9cbb-42d6-affb-3d6de3af736b" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1178" ], + "x-ms-correlation-request-id": [ "22df9516-3b69-4f44-a01b-242ff988fc8f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T190446Z:22df9516-3b69-4f44-a01b-242ff988fc8f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:58:37 GMT" ] + "Date": [ "Wed, 23 Sep 2020 19:04:45 GMT" ] }, "ContentHeaders": { "Content-Length": [ "87" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServerFirewallRules\",\"startTime\":\"2020-04-15T02:58:35.367Z\"}" + "Content": "{\"operation\":\"UpsertElasticServerFirewallRules\",\"startTime\":\"2020-09-23T19:04:42.717Z\"}" } }, - "Update-AzMariaDbFirewallRule+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e3456390-2891-4844-9221-b212e14f661f?api-version=2018-06-01-preview+2": { + "Update-AzMariaDbFirewallRule+[NoContext]+ClientIPAddress+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/b6928fe2-f103-475a-8797-cd824b33539c?api-version=2018-06-01-preview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e3456390-2891-4844-9221-b212e14f661f?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/b6928fe2-f103-475a-8797-cd824b33539c?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "232", "233" ], - "x-ms-client-request-id": [ "01cf3832-f9d9-44da-bfde-ea0d3fce1413", "01cf3832-f9d9-44da-bfde-ea0d3fce1413" ], - "CommandName": [ "Update-AzMariaDbFirewallRule", "Update-AzMariaDbFirewallRule" ], - "FullCommandName": [ "Update-AzMariaDbFirewallRule_UpdateExpanded", "Update-AzMariaDbFirewallRule_UpdateExpanded" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "258" ], + "x-ms-client-request-id": [ "5051a714-508c-450a-aac5-a1ac9f23e480" ], + "CommandName": [ "Az.MariaDb.internal\\Set-AzMariaDbFirewallRule" ], + "FullCommandName": [ "Set-AzMariaDbFirewallRule_UpdateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -59,36 +59,152 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "bf07ba3b-1604-48ba-b4f4-32e1050dd455" ], + "x-ms-request-id": [ "f0a6fe14-bbf5-4a5d-9a09-9ea352ffeace" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11802" ], - "x-ms-correlation-request-id": [ "c6012d16-0bf4-4458-8cc6-82fbe5e84434" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T025851Z:c6012d16-0bf4-4458-8cc6-82fbe5e84434" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11777" ], + "x-ms-correlation-request-id": [ "2d1b8158-cb12-4f80-bf56-78d196d5cfe4" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T190501Z:2d1b8158-cb12-4f80-bf56-78d196d5cfe4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:58:51 GMT" ] + "Date": [ "Wed, 23 Sep 2020 19:05:00 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"e3456390-2891-4844-9221-b212e14f661f\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-15T02:58:35.367Z\"}" + "Content": "{\"name\":\"b6928fe2-f103-475a-8797-cd824b33539c\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-23T19:04:42.717Z\"}" } }, - "Update-AzMariaDbFirewallRule+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y/firewallRules/fr-0aojzg?api-version=2018-06-01-preview+3": { + "Update-AzMariaDbFirewallRule+[NoContext]+ClientIPAddress+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz/firewallRules/fr-taijos?api-version=2018-06-01-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y/firewallRules/fr-0aojzg?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz/firewallRules/fr-taijos?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "232", "233", "234" ], - "x-ms-client-request-id": [ "01cf3832-f9d9-44da-bfde-ea0d3fce1413", "01cf3832-f9d9-44da-bfde-ea0d3fce1413", "01cf3832-f9d9-44da-bfde-ea0d3fce1413" ], - "CommandName": [ "Update-AzMariaDbFirewallRule", "Update-AzMariaDbFirewallRule", "Update-AzMariaDbFirewallRule" ], - "FullCommandName": [ "Update-AzMariaDbFirewallRule_UpdateExpanded", "Update-AzMariaDbFirewallRule_UpdateExpanded", "Update-AzMariaDbFirewallRule_UpdateExpanded" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "259" ], + "x-ms-client-request-id": [ "5051a714-508c-450a-aac5-a1ac9f23e480" ], + "CommandName": [ "Az.MariaDb.internal\\Set-AzMariaDbFirewallRule" ], + "FullCommandName": [ "Set-AzMariaDbFirewallRule_UpdateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "13f32b1b-2ed4-416e-8b58-4b9f81e087e4" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11776" ], + "x-ms-correlation-request-id": [ "9bc15be6-8c9e-41f5-baa5-6a51d6a3247a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T190501Z:9bc15be6-8c9e-41f5-baa5-6a51d6a3247a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 19:05:01 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "320" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"properties\":{\"startIpAddress\":\"0.0.0.2\",\"endIpAddress\":\"0.0.0.2\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz/firewallRules/fr-taijos\",\"name\":\"fr-taijos\",\"type\":\"Microsoft.DBforMariaDB/servers/firewallRules\"}" + } + }, + "Update-AzMariaDbFirewallRule+[NoContext]+UpdateExpanded+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz/firewallRules/fr-taijos?api-version=2018-06-01-preview+1": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz/firewallRules/fr-taijos?api-version=2018-06-01-preview", + "Content": "{\r\n \"properties\": {\r\n \"endIpAddress\": \"0.0.255.125\",\r\n \"startIpAddress\": \"0.0.255.1\"\r\n }\r\n}", + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "99" ] + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/c75f95ec-c2c7-4ec1-8812-2ba6ba71dca0?api-version=2018-06-01-preview" ], + "Retry-After": [ "15" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/c75f95ec-c2c7-4ec1-8812-2ba6ba71dca0?api-version=2018-06-01-preview" ], + "x-ms-request-id": [ "c75f95ec-c2c7-4ec1-8812-2ba6ba71dca0" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1178" ], + "x-ms-correlation-request-id": [ "3c4eb15c-7198-457a-b015-6d831ce1af32" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T190503Z:3c4eb15c-7198-457a-b015-6d831ce1af32" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 19:05:03 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "87" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"operation\":\"UpsertElasticServerFirewallRules\",\"startTime\":\"2020-09-23T19:05:02.203Z\"}" + } + }, + "Update-AzMariaDbFirewallRule+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/c75f95ec-c2c7-4ec1-8812-2ba6ba71dca0?api-version=2018-06-01-preview+2": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/c75f95ec-c2c7-4ec1-8812-2ba6ba71dca0?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "261" ], + "x-ms-client-request-id": [ "286006fc-b2dd-44d7-89ee-c4fa156bd6f1" ], + "CommandName": [ "Az.MariaDb.internal\\Set-AzMariaDbFirewallRule" ], + "FullCommandName": [ "Set-AzMariaDbFirewallRule_UpdateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "15" ], + "x-ms-request-id": [ "34bd9b2e-25c0-4aa6-af77-e5af8965e621" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11775" ], + "x-ms-correlation-request-id": [ "5d49d528-b086-478e-a224-89497c5ea186" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T190518Z:5d49d528-b086-478e-a224-89497c5ea186" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 23 Sep 2020 19:05:18 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "107" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"c75f95ec-c2c7-4ec1-8812-2ba6ba71dca0\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-23T19:05:02.203Z\"}" + } + }, + "Update-AzMariaDbFirewallRule+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz/firewallRules/fr-taijos?api-version=2018-06-01-preview+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz/firewallRules/fr-taijos?api-version=2018-06-01-preview", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "262" ], + "x-ms-client-request-id": [ "286006fc-b2dd-44d7-89ee-c4fa156bd6f1" ], + "CommandName": [ "Az.MariaDb.internal\\Set-AzMariaDbFirewallRule" ], + "FullCommandName": [ "Set-AzMariaDbFirewallRule_UpdateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -98,31 +214,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "7ba33119-34ac-4dd9-a06f-f3e50e55ab4c" ], + "x-ms-request-id": [ "e71aad8e-a035-46e3-a537-a7abdf0d3793" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11801" ], - "x-ms-correlation-request-id": [ "3c6f7123-6f4a-41a8-9bee-081a952b5f87" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T025852Z:3c6f7123-6f4a-41a8-9bee-081a952b5f87" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11774" ], + "x-ms-correlation-request-id": [ "8221a01b-af12-4854-a0b7-5fcf1d10ede9" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T190519Z:8221a01b-af12-4854-a0b7-5fcf1d10ede9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:58:52 GMT" ] + "Date": [ "Wed, 23 Sep 2020 19:05:18 GMT" ] }, "ContentHeaders": { "Content-Length": [ "326" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"properties\":{\"startIpAddress\":\"0.0.255.1\",\"endIpAddress\":\"0.0.255.125\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y/firewallRules/fr-0aojzg\",\"name\":\"fr-0aojzg\",\"type\":\"Microsoft.DBforMariaDB/servers/firewallRules\"}" + "Content": "{\"properties\":{\"startIpAddress\":\"0.0.255.1\",\"endIpAddress\":\"0.0.255.125\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz/firewallRules/fr-taijos\",\"name\":\"fr-taijos\",\"type\":\"Microsoft.DBforMariaDB/servers/firewallRules\"}" } }, - "Update-AzMariaDbFirewallRule+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y/firewallRules/fr-0aojzg?api-version=2018-06-01-preview+4": { + "Update-AzMariaDbFirewallRule+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz/firewallRules/fr-taijos?api-version=2018-06-01-preview+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y/firewallRules/fr-0aojzg?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz/firewallRules/fr-taijos?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "235" ], - "x-ms-client-request-id": [ "3f1a798b-4221-4946-878c-01e5b56d7d6a" ], + "x-ms-unique-id": [ "263" ], + "x-ms-client-request-id": [ "9dd37f6a-7d56-4957-be65-d9c796bbe3c7" ], "CommandName": [ "Get-AzMariaDbFirewallRule" ], "FullCommandName": [ "Get-AzMariaDbFirewallRule_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -137,21 +253,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "fd6f56fd-bd1d-46f9-8b34-95e41415d187" ], + "x-ms-request-id": [ "3ab928c9-d41f-4e75-9b50-5a008c1c91c5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11800" ], - "x-ms-correlation-request-id": [ "55725863-dc8d-4e68-b245-f864322b3787" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T025852Z:55725863-dc8d-4e68-b245-f864322b3787" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11773" ], + "x-ms-correlation-request-id": [ "c6a231a4-ac37-434d-9ee9-239fd1814b2c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T190519Z:c6a231a4-ac37-434d-9ee9-239fd1814b2c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:58:52 GMT" ] + "Date": [ "Wed, 23 Sep 2020 19:05:19 GMT" ] }, "ContentHeaders": { "Content-Length": [ "326" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"properties\":{\"startIpAddress\":\"0.0.255.1\",\"endIpAddress\":\"0.0.255.125\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y/firewallRules/fr-0aojzg\",\"name\":\"fr-0aojzg\",\"type\":\"Microsoft.DBforMariaDB/servers/firewallRules\"}" + "Content": "{\"properties\":{\"startIpAddress\":\"0.0.255.1\",\"endIpAddress\":\"0.0.255.125\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz/firewallRules/fr-taijos\",\"name\":\"fr-taijos\",\"type\":\"Microsoft.DBforMariaDB/servers/firewallRules\"}" } } } \ No newline at end of file diff --git a/src/MariaDb/test/Update-AzMariaDbFirewallRule.Tests.ps1 b/src/MariaDb/test/Update-AzMariaDbFirewallRule.Tests.ps1 index a0f89088592a..01041a284bce 100644 --- a/src/MariaDb/test/Update-AzMariaDbFirewallRule.Tests.ps1 +++ b/src/MariaDb/test/Update-AzMariaDbFirewallRule.Tests.ps1 @@ -13,6 +13,12 @@ while(-not $mockingPath) { . ($mockingPath | Select-Object -First 1).FullName Describe 'Update-AzMariaDbFirewallRule' { + It 'ClientIPAddress' { + $rule = Update-AzMariaDbFirewallRule -Name $env.firewallName01 -ResourceGroupName $env.resourceGroup -ServerName $env.rstrbc02 -ClientIPAddress 0.0.0.2 + $rule.StartIPAddress | Should -Be 0.0.0.2 + $rule.EndIPAddress | Should -Be 0.0.0.2 + } + It 'UpdateExpanded' { $newEndIPAddress = '0.0.255.125' $newStartIPAddress = '0.0.255.1' diff --git a/src/MariaDb/test/Update-AzMariaDbServer.Recording.json b/src/MariaDb/test/Update-AzMariaDbServer.Recording.json index 900986829603..8429d10bac80 100644 --- a/src/MariaDb/test/Update-AzMariaDbServer.Recording.json +++ b/src/MariaDb/test/Update-AzMariaDbServer.Recording.json @@ -1,12 +1,12 @@ { - "Update-AzMariaDbServer+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y?api-version=2018-06-01-preview+1": { + "Update-AzMariaDbServer+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz?api-version=2018-06-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "236" ], - "x-ms-client-request-id": [ "007123a4-31a6-439d-b561-d22d2a05bbc8" ], + "x-ms-unique-id": [ "264" ], + "x-ms-client-request-id": [ "81b64f7a-41d2-408f-b74d-5fc6311ac083" ], "CommandName": [ "Get-AzMariaDbServer" ], "FullCommandName": [ "Get-AzMariaDbServer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -21,33 +21,33 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "8b2462e0-8997-43b3-8201-214e841c8db7" ], + "x-ms-request-id": [ "12c7660f-7e67-445a-a268-dfdb8b97f08b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11799" ], - "x-ms-correlation-request-id": [ "95adc615-42dc-4e50-b311-8395e94dd44b" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T025853Z:95adc615-42dc-4e50-b311-8395e94dd44b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11772" ], + "x-ms-correlation-request-id": [ "612f4441-9249-43e4-881a-5373211dd91e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T190520Z:612f4441-9249-43e4-881a-5373211dd91e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:58:53 GMT" ] + "Date": [ "Wed, 23 Sep 2020 19:05:19 GMT" ] }, "ContentHeaders": { "Content-Length": [ "926" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-zh5l7y.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:02:29.737+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y\",\"name\":\"mariadb-test-zh5l7y\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" + "Content": "{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-hqv3fz.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:15:28.063+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz\",\"name\":\"mariadb-test-hqv3fz\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" } }, - "Update-AzMariaDbServer+[NoContext]+UpdateExpanded+$PATCH+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y?api-version=2018-06-01-preview+2": { + "Update-AzMariaDbServer+[NoContext]+UpdateExpanded+$PATCH+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz?api-version=2018-06-01-preview+2": { "Request": { "Method": "PATCH", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y?api-version=2018-06-01-preview", - "Content": "{\n \"properties\": {\n \"storageProfile\": {\n \"storageMB\": 6144\n }\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz?api-version=2018-06-01-preview", + "Content": "{\r\n \"properties\": {\r\n \"storageProfile\": {\r\n \"storageMB\": 6144\r\n }\r\n }\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "79" ] + "Content-Length": [ "85" ] } }, "Response": { @@ -55,39 +55,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/2ad6a9e4-9753-42c0-b79c-4f32e3900c88?api-version=2018-06-01-preview" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/590e5967-84d7-4d10-b5ff-177c987e52d0?api-version=2018-06-01-preview" ], "Retry-After": [ "60" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/2ad6a9e4-9753-42c0-b79c-4f32e3900c88?api-version=2018-06-01-preview" ], - "x-ms-request-id": [ "2ad6a9e4-9753-42c0-b79c-4f32e3900c88" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/590e5967-84d7-4d10-b5ff-177c987e52d0?api-version=2018-06-01-preview" ], + "x-ms-request-id": [ "590e5967-84d7-4d10-b5ff-177c987e52d0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1182" ], - "x-ms-correlation-request-id": [ "6524f1f2-3c20-4f62-a474-de68cbebff3d" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T025854Z:6524f1f2-3c20-4f62-a474-de68cbebff3d" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1177" ], + "x-ms-correlation-request-id": [ "a1d8b2de-a4b4-44a3-b184-b3c357dc65db" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T190522Z:a1d8b2de-a4b4-44a3-b184-b3c357dc65db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:58:54 GMT" ] + "Date": [ "Wed, 23 Sep 2020 19:05:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "74" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServer\",\"startTime\":\"2020-04-15T02:58:53.647Z\"}" + "Content": "{\"operation\":\"UpsertElasticServer\",\"startTime\":\"2020-09-23T19:05:20.907Z\"}" } }, - "Update-AzMariaDbServer+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/2ad6a9e4-9753-42c0-b79c-4f32e3900c88?api-version=2018-06-01-preview+3": { + "Update-AzMariaDbServer+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/590e5967-84d7-4d10-b5ff-177c987e52d0?api-version=2018-06-01-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/2ad6a9e4-9753-42c0-b79c-4f32e3900c88?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/590e5967-84d7-4d10-b5ff-177c987e52d0?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "237", "238" ], - "x-ms-client-request-id": [ "e87b141f-1469-4b0d-9fc8-f5909f026626", "e87b141f-1469-4b0d-9fc8-f5909f026626" ], - "CommandName": [ "Az.MariaDb.internal\\Update-AzMariaDbServer", "Az.MariaDb.internal\\Update-AzMariaDbServer" ], - "FullCommandName": [ "Update-AzMariaDbServer_UpdateExpanded", "Update-AzMariaDbServer_UpdateExpanded" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "266" ], + "x-ms-client-request-id": [ "611f351c-f48e-4cce-bd0f-86f9f630343f" ], + "CommandName": [ "Az.MariaDb.internal\\Update-AzMariaDbServer" ], + "FullCommandName": [ "Update-AzMariaDbServer_UpdateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -98,36 +98,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "60" ], - "x-ms-request-id": [ "84070f3a-01bf-44e5-b4f3-ba278c53e7c8" ], + "x-ms-request-id": [ "81204066-9f52-464e-b629-d4df6364565c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11798" ], - "x-ms-correlation-request-id": [ "f016d4aa-6462-4f9b-b1c0-4ab2827468f1" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T025951Z:f016d4aa-6462-4f9b-b1c0-4ab2827468f1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11771" ], + "x-ms-correlation-request-id": [ "329dec76-5f6d-4b3b-a8fc-373b08c60f38" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T190622Z:329dec76-5f6d-4b3b-a8fc-373b08c60f38" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:59:50 GMT" ] + "Date": [ "Wed, 23 Sep 2020 19:06:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"2ad6a9e4-9753-42c0-b79c-4f32e3900c88\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-15T02:58:53.647Z\"}" + "Content": "{\"name\":\"590e5967-84d7-4d10-b5ff-177c987e52d0\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-23T19:05:20.907Z\"}" } }, - "Update-AzMariaDbServer+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y?api-version=2018-06-01-preview+4": { + "Update-AzMariaDbServer+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz?api-version=2018-06-01-preview+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "237", "238", "239" ], - "x-ms-client-request-id": [ "e87b141f-1469-4b0d-9fc8-f5909f026626", "e87b141f-1469-4b0d-9fc8-f5909f026626", "e87b141f-1469-4b0d-9fc8-f5909f026626" ], - "CommandName": [ "Az.MariaDb.internal\\Update-AzMariaDbServer", "Az.MariaDb.internal\\Update-AzMariaDbServer", "Az.MariaDb.internal\\Update-AzMariaDbServer" ], - "FullCommandName": [ "Update-AzMariaDbServer_UpdateExpanded", "Update-AzMariaDbServer_UpdateExpanded", "Update-AzMariaDbServer_UpdateExpanded" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "267" ], + "x-ms-client-request-id": [ "611f351c-f48e-4cce-bd0f-86f9f630343f" ], + "CommandName": [ "Az.MariaDb.internal\\Update-AzMariaDbServer" ], + "FullCommandName": [ "Update-AzMariaDbServer_UpdateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -137,31 +137,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "9d7dec54-9fa1-4b27-92f1-75d542f4b6f9" ], + "x-ms-request-id": [ "8b950fb2-9be3-46d1-bcd7-dc4673364dde" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11797" ], - "x-ms-correlation-request-id": [ "3a0727f6-fe10-4abe-99c3-e8c0f6c65953" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T025951Z:3a0727f6-fe10-4abe-99c3-e8c0f6c65953" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11770" ], + "x-ms-correlation-request-id": [ "9dd0f13e-f32a-4ead-8426-431b61873e21" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T190622Z:9dd0f13e-f32a-4ead-8426-431b61873e21" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:59:50 GMT" ] + "Date": [ "Wed, 23 Sep 2020 19:06:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "926" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":6144,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-zh5l7y.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:02:29.737+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y\",\"name\":\"mariadb-test-zh5l7y\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" + "Content": "{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":6144,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-hqv3fz.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:15:28.063+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz\",\"name\":\"mariadb-test-hqv3fz\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" } }, - "Update-AzMariaDbServer+[NoContext]+UpdateViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y?api-version=2018-06-01-preview+1": { + "Update-AzMariaDbServer+[NoContext]+UpdateViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz?api-version=2018-06-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "240" ], - "x-ms-client-request-id": [ "aeffb21b-7e5e-4089-8c37-d695c8ab9d6a" ], + "x-ms-unique-id": [ "268" ], + "x-ms-client-request-id": [ "e705bbb5-a790-4a3e-848b-da903d81d71e" ], "CommandName": [ "Get-AzMariaDbServer" ], "FullCommandName": [ "Get-AzMariaDbServer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -176,33 +176,33 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "265eaf81-0e18-4b35-a21b-8fd7e11e5e20" ], + "x-ms-request-id": [ "14ea497d-c81b-475d-8db1-ef1d4b81a2f0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11796" ], - "x-ms-correlation-request-id": [ "979767e9-d2b4-4eca-ae44-498fb6d7b43c" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T025952Z:979767e9-d2b4-4eca-ae44-498fb6d7b43c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11769" ], + "x-ms-correlation-request-id": [ "e4216db3-62c8-4456-8156-27dfb74db3f1" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T190623Z:e4216db3-62c8-4456-8156-27dfb74db3f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:59:51 GMT" ] + "Date": [ "Wed, 23 Sep 2020 19:06:23 GMT" ] }, "ContentHeaders": { "Content-Length": [ "926" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":6144,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-zh5l7y.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:02:29.737+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y\",\"name\":\"mariadb-test-zh5l7y\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" + "Content": "{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":6144,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-hqv3fz.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:15:28.063+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz\",\"name\":\"mariadb-test-hqv3fz\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" } }, - "Update-AzMariaDbServer+[NoContext]+UpdateViaIdentity+$PATCH+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y?api-version=2018-06-01-preview+2": { + "Update-AzMariaDbServer+[NoContext]+UpdateViaIdentity+$PATCH+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz?api-version=2018-06-01-preview+2": { "Request": { "Method": "PATCH", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y?api-version=2018-06-01-preview", - "Content": "{\n \"properties\": {\n \"storageProfile\": {\n \"storageMB\": 7168\n }\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz?api-version=2018-06-01-preview", + "Content": "{\r\n \"properties\": {\r\n \"storageProfile\": {\r\n \"storageMB\": 7168\r\n }\r\n }\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "79" ] + "Content-Length": [ "85" ] } }, "Response": { @@ -210,39 +210,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/5f2111f5-2ff5-4b86-9743-2d4307802a4b?api-version=2018-06-01-preview" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/d6edf4cf-441f-43f8-9757-0529da8d8198?api-version=2018-06-01-preview" ], "Retry-After": [ "60" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/5f2111f5-2ff5-4b86-9743-2d4307802a4b?api-version=2018-06-01-preview" ], - "x-ms-request-id": [ "5f2111f5-2ff5-4b86-9743-2d4307802a4b" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/d6edf4cf-441f-43f8-9757-0529da8d8198?api-version=2018-06-01-preview" ], + "x-ms-request-id": [ "d6edf4cf-441f-43f8-9757-0529da8d8198" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1181" ], - "x-ms-correlation-request-id": [ "57480a04-43bb-419d-afd3-3f42b692f7d0" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T025954Z:57480a04-43bb-419d-afd3-3f42b692f7d0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1176" ], + "x-ms-correlation-request-id": [ "94cca101-c353-40e0-995d-f7603fb217ea" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T190625Z:94cca101-c353-40e0-995d-f7603fb217ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 02:59:53 GMT" ] + "Date": [ "Wed, 23 Sep 2020 19:06:24 GMT" ] }, "ContentHeaders": { "Content-Length": [ "73" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServer\",\"startTime\":\"2020-04-15T02:59:52.88Z\"}" + "Content": "{\"operation\":\"UpsertElasticServer\",\"startTime\":\"2020-09-23T19:06:23.92Z\"}" } }, - "Update-AzMariaDbServer+[NoContext]+UpdateViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/5f2111f5-2ff5-4b86-9743-2d4307802a4b?api-version=2018-06-01-preview+3": { + "Update-AzMariaDbServer+[NoContext]+UpdateViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/d6edf4cf-441f-43f8-9757-0529da8d8198?api-version=2018-06-01-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/5f2111f5-2ff5-4b86-9743-2d4307802a4b?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/d6edf4cf-441f-43f8-9757-0529da8d8198?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "241", "242" ], - "x-ms-client-request-id": [ "eed15ec1-055a-4460-b28f-7273c9f57021", "eed15ec1-055a-4460-b28f-7273c9f57021" ], - "CommandName": [ "Az.MariaDb.internal\\Update-AzMariaDbServer", "Az.MariaDb.internal\\Update-AzMariaDbServer" ], - "FullCommandName": [ "Update-AzMariaDbServer_UpdateViaIdentityExpanded", "Update-AzMariaDbServer_UpdateViaIdentityExpanded" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "270" ], + "x-ms-client-request-id": [ "608bd1e6-e4e4-4649-a5ed-1b1c83910621" ], + "CommandName": [ "Az.MariaDb.internal\\Update-AzMariaDbServer" ], + "FullCommandName": [ "Update-AzMariaDbServer_UpdateViaIdentityExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -253,36 +253,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "60" ], - "x-ms-request-id": [ "3dc5601b-d6e7-4152-b7de-70932e0010a4" ], + "x-ms-request-id": [ "6779242c-1383-4d95-993e-806a3e518810" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11802" ], - "x-ms-correlation-request-id": [ "0e32c32b-4f95-4998-a6d2-dbe95feeb643" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T030050Z:0e32c32b-4f95-4998-a6d2-dbe95feeb643" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11768" ], + "x-ms-correlation-request-id": [ "74d922a8-b109-4845-b165-de0431ef39cf" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T190726Z:74d922a8-b109-4845-b165-de0431ef39cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 03:00:50 GMT" ] + "Date": [ "Wed, 23 Sep 2020 19:07:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "106" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"5f2111f5-2ff5-4b86-9743-2d4307802a4b\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-15T02:59:52.88Z\"}" + "Content": "{\"name\":\"d6edf4cf-441f-43f8-9757-0529da8d8198\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-23T19:06:23.92Z\"}" } }, - "Update-AzMariaDbServer+[NoContext]+UpdateViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y?api-version=2018-06-01-preview+4": { + "Update-AzMariaDbServer+[NoContext]+UpdateViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz?api-version=2018-06-01-preview+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "241", "242", "243" ], - "x-ms-client-request-id": [ "eed15ec1-055a-4460-b28f-7273c9f57021", "eed15ec1-055a-4460-b28f-7273c9f57021", "eed15ec1-055a-4460-b28f-7273c9f57021" ], - "CommandName": [ "Az.MariaDb.internal\\Update-AzMariaDbServer", "Az.MariaDb.internal\\Update-AzMariaDbServer", "Az.MariaDb.internal\\Update-AzMariaDbServer" ], - "FullCommandName": [ "Update-AzMariaDbServer_UpdateViaIdentityExpanded", "Update-AzMariaDbServer_UpdateViaIdentityExpanded", "Update-AzMariaDbServer_UpdateViaIdentityExpanded" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "271" ], + "x-ms-client-request-id": [ "608bd1e6-e4e4-4649-a5ed-1b1c83910621" ], + "CommandName": [ "Az.MariaDb.internal\\Update-AzMariaDbServer" ], + "FullCommandName": [ "Update-AzMariaDbServer_UpdateViaIdentityExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -292,21 +292,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "636722b1-1981-43cf-a0fb-1a3ff17c375d" ], + "x-ms-request-id": [ "010a255f-ed10-41a0-8e9a-9183774ca1fa" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11801" ], - "x-ms-correlation-request-id": [ "3ab51f07-483a-47b7-9972-b4915b20282f" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T030051Z:3ab51f07-483a-47b7-9972-b4915b20282f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11767" ], + "x-ms-correlation-request-id": [ "a85f1c55-5477-4de6-9375-ddc2709680d4" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T190726Z:a85f1c55-5477-4de6-9375-ddc2709680d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 03:00:51 GMT" ] + "Date": [ "Wed, 23 Sep 2020 19:07:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "926" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":7168,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-zh5l7y.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-04-15T02:02:29.737+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-zh5l7y\",\"name\":\"mariadb-test-zh5l7y\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" + "Content": "{\"sku\":{\"name\":\"B_Gen5_1\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":1},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":7168,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"10.2\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mariadb-test-hqv3fz.mariadb.database.azure.com\",\"earliestRestoreDate\":\"2020-09-23T18:15:28.063+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"infrastructureEncryption\":\"Disabled\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-hqv3fz\",\"name\":\"mariadb-test-hqv3fz\",\"type\":\"Microsoft.DBforMariaDB/servers\"}" } } } \ No newline at end of file diff --git a/src/MariaDb/test/Update-AzMariaDbVirtualNetworkRule.Recording.json b/src/MariaDb/test/Update-AzMariaDbVirtualNetworkRule.Recording.json index 48989fed47a0..0986d6493b8a 100644 --- a/src/MariaDb/test/Update-AzMariaDbVirtualNetworkRule.Recording.json +++ b/src/MariaDb/test/Update-AzMariaDbVirtualNetworkRule.Recording.json @@ -1,14 +1,14 @@ { - "Update-AzMariaDbVirtualNetworkRule+[NoContext]+UpdateExpanded+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24t/virtualNetworkRules/vnetrule-ETLsVU?api-version=2018-06-01-preview+1": { + "Update-AzMariaDbVirtualNetworkRule+[NoContext]+UpdateExpanded+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08f/virtualNetworkRules/vnetrule-hocaiu?api-version=2018-06-01-preview+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24t/virtualNetworkRules/vnetrule-ETLsVU?api-version=2018-06-01-preview", - "Content": "{\n \"properties\": {\n \"ignoreMissingVnetServiceEndpoint\": true,\n \"virtualNetworkSubnetId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subvnet-03\"\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08f/virtualNetworkRules/vnetrule-hocaiu?api-version=2018-06-01-preview", + "Content": "{\r\n \"properties\": {\r\n \"ignoreMissingVnetServiceEndpoint\": true,\r\n \"virtualNetworkSubnetId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subvnet-03\"\r\n }\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "258" ] + "Content-Length": [ "263" ] } }, "Response": { @@ -16,39 +16,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/f9dc71da-ad65-47fd-a955-1cc3bc7a82c5?api-version=2018-06-01-preview" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/b13be173-ecf4-487d-9177-166583448203?api-version=2018-06-01-preview" ], "Retry-After": [ "30" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/f9dc71da-ad65-47fd-a955-1cc3bc7a82c5?api-version=2018-06-01-preview" ], - "x-ms-request-id": [ "f9dc71da-ad65-47fd-a955-1cc3bc7a82c5" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/b13be173-ecf4-487d-9177-166583448203?api-version=2018-06-01-preview" ], + "x-ms-request-id": [ "b13be173-ecf4-487d-9177-166583448203" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1182" ], - "x-ms-correlation-request-id": [ "060a1d5f-c876-4735-970d-1bdc08bdf30f" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T030053Z:060a1d5f-c876-4735-970d-1bdc08bdf30f" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1175" ], + "x-ms-correlation-request-id": [ "5f8b0fce-2189-4435-bb40-28e2a204d695" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T190728Z:5f8b0fce-2189-4435-bb40-28e2a204d695" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 03:00:53 GMT" ] + "Date": [ "Wed, 23 Sep 2020 19:07:27 GMT" ] }, "ContentHeaders": { "Content-Length": [ "90" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServerVnetFirewallRule\",\"startTime\":\"2020-04-15T03:00:52.163Z\"}" + "Content": "{\"operation\":\"UpsertElasticServerVnetFirewallRule\",\"startTime\":\"2020-09-23T19:07:27.273Z\"}" } }, - "Update-AzMariaDbVirtualNetworkRule+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/f9dc71da-ad65-47fd-a955-1cc3bc7a82c5?api-version=2018-06-01-preview+2": { + "Update-AzMariaDbVirtualNetworkRule+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/b13be173-ecf4-487d-9177-166583448203?api-version=2018-06-01-preview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/f9dc71da-ad65-47fd-a955-1cc3bc7a82c5?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/b13be173-ecf4-487d-9177-166583448203?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "244", "245" ], - "x-ms-client-request-id": [ "b7d2afae-be29-4660-a385-b908afaf18fb", "b7d2afae-be29-4660-a385-b908afaf18fb" ], - "CommandName": [ "Update-AzMariaDbVirtualNetworkRule", "Update-AzMariaDbVirtualNetworkRule" ], - "FullCommandName": [ "Update-AzMariaDbVirtualNetworkRule_UpdateExpanded", "Update-AzMariaDbVirtualNetworkRule_UpdateExpanded" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "273" ], + "x-ms-client-request-id": [ "a8b7dfde-c280-4e88-8143-eef3c4e1ab66" ], + "CommandName": [ "Update-AzMariaDbVirtualNetworkRule" ], + "FullCommandName": [ "Update-AzMariaDbVirtualNetworkRule_UpdateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -59,36 +59,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "7f7ce2cf-d23e-46be-a492-2bf7ff40d83f" ], + "x-ms-request-id": [ "6ab2c7a2-2b0b-4f87-b137-66a11b631d5b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11800" ], - "x-ms-correlation-request-id": [ "db992095-0029-446b-b48e-109fc41eaf51" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T030121Z:db992095-0029-446b-b48e-109fc41eaf51" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11766" ], + "x-ms-correlation-request-id": [ "9856ffda-b03f-4e25-b9d2-607c3e1aeca1" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T190758Z:9856ffda-b03f-4e25-b9d2-607c3e1aeca1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 03:01:20 GMT" ] + "Date": [ "Wed, 23 Sep 2020 19:07:58 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"f9dc71da-ad65-47fd-a955-1cc3bc7a82c5\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-15T03:00:52.163Z\"}" + "Content": "{\"name\":\"b13be173-ecf4-487d-9177-166583448203\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-23T19:07:27.273Z\"}" } }, - "Update-AzMariaDbVirtualNetworkRule+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24t/virtualNetworkRules/vnetrule-ETLsVU?api-version=2018-06-01-preview+3": { + "Update-AzMariaDbVirtualNetworkRule+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08f/virtualNetworkRules/vnetrule-hocaiu?api-version=2018-06-01-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24t/virtualNetworkRules/vnetrule-ETLsVU?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08f/virtualNetworkRules/vnetrule-hocaiu?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "244", "245", "246" ], - "x-ms-client-request-id": [ "b7d2afae-be29-4660-a385-b908afaf18fb", "b7d2afae-be29-4660-a385-b908afaf18fb", "b7d2afae-be29-4660-a385-b908afaf18fb" ], - "CommandName": [ "Update-AzMariaDbVirtualNetworkRule", "Update-AzMariaDbVirtualNetworkRule", "Update-AzMariaDbVirtualNetworkRule" ], - "FullCommandName": [ "Update-AzMariaDbVirtualNetworkRule_UpdateExpanded", "Update-AzMariaDbVirtualNetworkRule_UpdateExpanded", "Update-AzMariaDbVirtualNetworkRule_UpdateExpanded" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "274" ], + "x-ms-client-request-id": [ "a8b7dfde-c280-4e88-8143-eef3c4e1ab66" ], + "CommandName": [ "Update-AzMariaDbVirtualNetworkRule" ], + "FullCommandName": [ "Update-AzMariaDbVirtualNetworkRule_UpdateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -98,31 +98,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "32818dec-a11e-4d74-a425-303487df68a3" ], + "x-ms-request-id": [ "bf8a42d8-edd0-4761-9af4-f33b78deff1c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11799" ], - "x-ms-correlation-request-id": [ "88f5d334-3e95-4bd8-ba65-8ab41de1f01d" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T030121Z:88f5d334-3e95-4bd8-ba65-8ab41de1f01d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11765" ], + "x-ms-correlation-request-id": [ "9dba47c7-7de2-4461-8630-84e5ec131c10" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T190759Z:9dba47c7-7de2-4461-8630-84e5ec131c10" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 03:01:21 GMT" ] + "Date": [ "Wed, 23 Sep 2020 19:07:59 GMT" ] }, "ContentHeaders": { "Content-Length": [ "530" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"properties\":{\"virtualNetworkSubnetId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subvnet-03\",\"ignoreMissingVnetServiceEndpoint\":true,\"state\":\"Ready\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24t/virtualNetworkRules/vnetrule-ETLsVU\",\"name\":\"vnetrule-ETLsVU\",\"type\":\"Microsoft.DBforMariaDB/servers/virtualNetworkRules\"}" + "Content": "{\"properties\":{\"virtualNetworkSubnetId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subvnet-03\",\"ignoreMissingVnetServiceEndpoint\":true,\"state\":\"Ready\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08f/virtualNetworkRules/vnetrule-hocaiu\",\"name\":\"vnetrule-hocaiu\",\"type\":\"Microsoft.DBforMariaDB/servers/virtualNetworkRules\"}" } }, - "Update-AzMariaDbVirtualNetworkRule+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24t/virtualNetworkRules/vnetrule-ETLsVU?api-version=2018-06-01-preview+4": { + "Update-AzMariaDbVirtualNetworkRule+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08f/virtualNetworkRules/vnetrule-hocaiu?api-version=2018-06-01-preview+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24t/virtualNetworkRules/vnetrule-ETLsVU?api-version=2018-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08f/virtualNetworkRules/vnetrule-hocaiu?api-version=2018-06-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "247" ], - "x-ms-client-request-id": [ "70c28d9e-92ed-4026-b8f4-83ea029e162e" ], + "x-ms-unique-id": [ "275" ], + "x-ms-client-request-id": [ "9ad5543b-a812-471d-941a-4a52668559df" ], "CommandName": [ "Get-AzMariaDbVirtualNetworkRule" ], "FullCommandName": [ "Get-AzMariaDbVirtualNetworkRule_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -137,21 +137,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "dfe2a195-7f10-413e-9eb7-22ebf6eeeee6" ], + "x-ms-request-id": [ "eb904b25-9266-4d6d-95b8-57d244b79fd3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11798" ], - "x-ms-correlation-request-id": [ "4ddf35df-562f-4584-8e16-9f464dbcf3cb" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200415T030122Z:4ddf35df-562f-4584-8e16-9f464dbcf3cb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11764" ], + "x-ms-correlation-request-id": [ "d2406e07-aed9-4069-a921-eb54d402f75b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200923T190759Z:d2406e07-aed9-4069-a921-eb54d402f75b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 15 Apr 2020 03:01:21 GMT" ] + "Date": [ "Wed, 23 Sep 2020 19:07:59 GMT" ] }, "ContentHeaders": { "Content-Length": [ "530" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"properties\":{\"virtualNetworkSubnetId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subvnet-03\",\"ignoreMissingVnetServiceEndpoint\":true,\"state\":\"Ready\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.DBforMariaDB/servers/mariadb-test-plo24t/virtualNetworkRules/vnetrule-ETLsVU\",\"name\":\"vnetrule-ETLsVU\",\"type\":\"Microsoft.DBforMariaDB/servers/virtualNetworkRules\"}" + "Content": "{\"properties\":{\"virtualNetworkSubnetId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subvnet-03\",\"ignoreMissingVnetServiceEndpoint\":true,\"state\":\"Ready\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.DBforMariaDB/servers/mariadb-test-mqe08f/virtualNetworkRules/vnetrule-hocaiu\",\"name\":\"vnetrule-hocaiu\",\"type\":\"Microsoft.DBforMariaDB/servers/virtualNetworkRules\"}" } } } \ No newline at end of file diff --git a/src/MariaDb/test/env.json b/src/MariaDb/test/env.json index 2b107782fde6..4c548fae1870 100644 --- a/src/MariaDb/test/env.json +++ b/src/MariaDb/test/env.json @@ -1,32 +1,32 @@ { - "subnet01": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subvnet-01", - "rstrgp02": "mariadb-test-plo24t", - "subnet03": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subvnet-03", - "restorePointInTime": "2020-04-15T03:39:46.7762829+00:00", - "rstrbc01": "mariadb-test-l8ukfh", - "rstrgp01": "mariadb-test-rteafu", + "subnet01": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subvnet-01", "AdminLogin": "adminuser", - "firewallName01": "fr-0aojzg", + "subnet03": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subvnet-03", + "restorePointInTime": "2020-09-24T02:24:52.204282+08:00", + "subnet02": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-vomqla/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subvnet-02", + "rstr02": "mariadb-test-8ce260", + "Location": "eastus", + "rstr05": "mariadb-test-g3eib5", + "firewallName01": "fr-taijos", + "rstrgp02": "mariadb-test-mqe08f", + "rstrbc02": "mariadb-test-hqv3fz", + "rstr06": "mariadb-test-k57vte", + "firewallName02": "fr-zy7auw", + "rstrrep01": "mariadb-test-jtnizx-rep015", + "ResourceGroup": "mariadb-test-vomqla", "SubscriptionId": "9e223dbe-3399-4e19-88eb-0975f02ac87f", - "rstr03": "mariadb-test-iynv8e", - "rstr05": "mariadb-test-43vhr1", - "vnetRuleName02": "vnetrule-ETLsVU", "AdminLoginPassword": "Passw0rd01!!", - "rstrbc02": "mariadb-test-zh5l7y", + "rstr07": "mariadb-test-z4pwm6", + "vnetRuleName02": "vnetrule-hocaiu", "Tenant": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "rstr01": "mariadb-test-ybj8li", - "rstrdel02": "mariadb-test-l34i9w", + "rstr01": "mariadb-test-6s3vad", + "rstrbc01": "mariadb-test-1imnpq", + "rstrgp01": "mariadb-test-jtnizx", "RepLocation": "eastus2", - "vnetRuleName01": "vnetrule-mTJnQk", - "rstr02": "mariadb-test-vn5aic", - "rstr06": "mariadb-test-q9mgsy", - "rstrrep01": "mariadb-test-rteafu-rep783", - "rstrdel01": "mariadb-test-fluhs9", - "rstr08": "mariadb-test-u5diwf", - "firewallName02": "fr-b1rws0", - "rstr07": "mariadb-test-6cgqxp", - "Location": "eastus", - "subnet02": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mariadb-test-9cgsan/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subvnet-02", - "rstr04": "mariadb-test-nv7mig", - "ResourceGroup": "mariadb-test-9cgsan" + "vnetRuleName01": "vnetrule-zXBYZU", + "rstr03": "mariadb-test-oxbjcp", + "rstr04": "mariadb-test-3uy56x", + "rstr08": "mariadb-test-2869ec", + "rstrdel02": "mariadb-test-tqye9g", + "rstrdel01": "mariadb-test-6pxo10" } diff --git a/src/MariaDb/test/readme.md b/src/MariaDb/test/readme.md index 1969200c6a09..7c752b4c8c43 100644 --- a/src/MariaDb/test/readme.md +++ b/src/MariaDb/test/readme.md @@ -1,5 +1,5 @@ # Test -This directory contains the [Pester](https://www.powershellgallery.com/packages/Pester) tests to run for the module. We use Pester as it is the unofficial standard for PowerShell unit testing. Test stubs for custom cmdlets (created in `../custom`) will be generated into this folder when `build-module.ps1` is ran. These test stubs will fail automatically, to indicate that tests should be written for custom cmdlets. +This directory contains the [Pester](https://www.powershellgallery.com/packages/Pester) tests to run for the module. We use Pester as it is the unofficial standard for PowerShell unit testing. Test stubs for custom cmdlets (created in `..\custom`) will be generated into this folder when `build-module.ps1` is ran. These test stubs will fail automatically, to indicate that tests should be written for custom cmdlets. ## Info - Modifiable: yes diff --git a/src/MariaDb/test/utils.ps1 b/src/MariaDb/test/utils.ps1 index 6a33fe71c76f..277516a91294 100644 --- a/src/MariaDb/test/utils.ps1 +++ b/src/MariaDb/test/utils.ps1 @@ -77,7 +77,7 @@ function setupEnv() { Write-Host -ForegroundColor Green "Start to creating replica mariadb for test..." $rstrrep01 = $rstrgp01 + '-rep' + (RandomNumber -len 3) - New-AzMariaDbServerReplica -Name $rstrrep01 -ServerName $rstrgp01 -ResourceGroupName $resourceGroup + New-AzMariaDbReplica -Name $rstrrep01 -ServerName $rstrgp01 -ResourceGroupName $resourceGroup $null = $env.add('rstrrep01', $rstrrep01) Write-Host -ForegroundColor Green "Replica mariaDB created successfully." diff --git a/src/MariaDb/utils/Unprotect-SecureString.ps1 b/src/MariaDb/utils/Unprotect-SecureString.ps1 new file mode 100644 index 000000000000..cb05b51a6220 --- /dev/null +++ b/src/MariaDb/utils/Unprotect-SecureString.ps1 @@ -0,0 +1,16 @@ +#This script converts securestring to plaintext + +param( + [Parameter(Mandatory, ValueFromPipeline)] + [System.Security.SecureString] + ${SecureString} +) + +$ssPtr = [System.Runtime.InteropServices.Marshal]::SecureStringToBSTR($SecureString) +try { + $plaintext = [System.Runtime.InteropServices.Marshal]::PtrToStringBSTR($ssPtr) +} finally { + [System.Runtime.InteropServices.Marshal]::ZeroFreeBSTR($ssPtr) +} + +return $plaintext \ No newline at end of file diff --git a/src/Monitor/Monitor.Test/Alerts/NewAzureRmMetricAlertRuleV2CriteriaTests.cs b/src/Monitor/Monitor.Test/Alerts/NewAzureRmMetricAlertRuleV2CriteriaTests.cs index b2d6768b91a5..8ae6b511a71f 100644 --- a/src/Monitor/Monitor.Test/Alerts/NewAzureRmMetricAlertRuleV2CriteriaTests.cs +++ b/src/Monitor/Monitor.Test/Alerts/NewAzureRmMetricAlertRuleV2CriteriaTests.cs @@ -45,6 +45,7 @@ public void NewMetricAlertRuleV2CriteriaParametersProcessing() cmdlet.Operator = "GreaterThan"; cmdlet.Threshold = 2; cmdlet.TimeAggregation = "Total"; + cmdlet.SkipMetricValidation = true; cmdlet.ExecuteCmdlet(); Func verify = crit => @@ -54,6 +55,7 @@ public void NewMetricAlertRuleV2CriteriaParametersProcessing() Assert.Equal("GreaterThan", r.OperatorProperty); Assert.Equal(2, r.Threshold); Assert.Equal("Total", r.TimeAggregation); + Assert.Equal(true, r.SkipMetricValidation); return true; }; @@ -73,6 +75,7 @@ public void NewDynamicMetricAlertRuleV2CriteriaParametersProcessing() cmdlet.ExaminedAggregatedPointCount= 4; cmdlet.IgnoreDataBefore = new DateTime(1,1,1); cmdlet.DynamicThreshold = new SwitchParameter(true); + cmdlet.SkipMetricValidation = true; cmdlet.ExecuteCmdlet(); Func verify = crit => @@ -84,6 +87,7 @@ public void NewDynamicMetricAlertRuleV2CriteriaParametersProcessing() Assert.Equal("High", r.AlertSensitivity); Assert.Equal(2, r.FailingPeriods.MinFailingPeriodsToAlert); Assert.Equal(4, r.FailingPeriods.NumberOfEvaluationPeriods); + Assert.Equal(true, r.SkipMetricValidation); return true; }; diff --git a/src/Monitor/Monitor.Test/Monitor.Test.csproj b/src/Monitor/Monitor.Test/Monitor.Test.csproj index 96cd4c8dc86e..2edcd4f04784 100644 --- a/src/Monitor/Monitor.Test/Monitor.Test.csproj +++ b/src/Monitor/Monitor.Test/Monitor.Test.csproj @@ -11,7 +11,7 @@ - + diff --git a/src/Monitor/Monitor.Test/ScenarioTests/AlertsTests.cs b/src/Monitor/Monitor.Test/ScenarioTests/AlertsTests.cs index e5320be26226..ed2c273dbc04 100644 --- a/src/Monitor/Monitor.Test/ScenarioTests/AlertsTests.cs +++ b/src/Monitor/Monitor.Test/ScenarioTests/AlertsTests.cs @@ -120,6 +120,13 @@ public void TestAddAzureRmMetricAlertRuleV2WithActionGroupId() TestsController.NewInstance.RunPsTest(_logger, "Test-AddAzureRmMetricAlertRuleV2-ActionGroupId"); } + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestAddAzureRmMetricAlertRuleV2WithSkipMetricValidation() + { + TestsController.NewInstance.RunPsTest(_logger, "Test-AddAzureRmMetricAlertRuleV2-SkipMetricValidation"); + } + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestDisableAzureRmMetricAlertRuleV2WithActionGroups() diff --git a/src/Monitor/Monitor.Test/ScenarioTests/AlertsTests.ps1 b/src/Monitor/Monitor.Test/ScenarioTests/AlertsTests.ps1 index 663c69b8e1f0..db8857da342b 100644 --- a/src/Monitor/Monitor.Test/ScenarioTests/AlertsTests.ps1 +++ b/src/Monitor/Monitor.Test/ScenarioTests/AlertsTests.ps1 @@ -406,6 +406,40 @@ function Test-AddAzureRmMetricAlertRuleV2-ActionGroupId } } + <# +.SYNOPSIS +Tests adding a GenV2 metric alert rule with skipMetricValidation = true. +#> +function Test-AddAzureRmMetricAlertRuleV2-skipMetricValidation +{ + # Setup + $sub = Get-AzContext + $subscription = $sub.subscription.subscriptionId + $rgname = Get-ResourceGroupName + $location =Get-ProviderLocation ResourceManagement + $resourceName = Get-ResourceName + $ruleName = Get-ResourceName + $targetResourceId = '/subscriptions/'+$subscription+'/resourceGroups/'+$rgname+'/providers/Microsoft.Storage/storageAccounts/'+$resourceName + New-AzResourceGroup -Name $rgname -Location $location -Force + New-AzStorageAccount -ResourceGroupName $rgname -Name $resourceName -Location $location -Type Standard_GRS + $condition = New-AzMetricAlertRuleV2Criteria -MetricName "UsedCapacityCustom" -Operator GreaterThan -Threshold 8 -TimeAggregation Average -MetricNamespace "customNamespace" -SkipMetricValidation $true + Start-TestSleep 30000 + try + { + # Test - create metric alert with SkipMetricValidation = true + $actual = Add-AzMetricAlertRuleV2 -Name $ruleName -ResourceGroupName $rgname -WindowSize 01:00:00 -Frequency 00:05:00 -TargetResourceId $targetResourceId -Condition $condition -Severity 3 + Assert-AreEqual $actual.Name $ruleName + } + finally + { + # Cleanup + Remove-AzMetricAlertRuleV2 -ResourceGroupName $rgname -Name $ruleName + Remove-AzureRmStorageAccount -ResourceGroupName $rgName -Name $resourceName + Remove-AzResourceGroup -Name $rgname -Force + } +} + + <# .SYNOPSIS Tests disabling a GenV2 metric alert rule with action groups. diff --git a/src/Monitor/Monitor.Test/SessionRecords/Microsoft.Azure.Commands.Insights.Test.ScenarioTests.AlertsTests/TestAddAzureRmMetricAlertRuleV2WithSkipMetricValidation.json b/src/Monitor/Monitor.Test/SessionRecords/Microsoft.Azure.Commands.Insights.Test.ScenarioTests.AlertsTests/TestAddAzureRmMetricAlertRuleV2WithSkipMetricValidation.json new file mode 100644 index 000000000000..905eadb21846 --- /dev/null +++ b/src/Monitor/Monitor.Test/SessionRecords/Microsoft.Azure.Commands.Insights.Test.ScenarioTests.AlertsTests/TestAddAzureRmMetricAlertRuleV2WithSkipMetricValidation.json @@ -0,0 +1,703 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourcegroups/ps5834?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlZ3JvdXBzL3BzNTgzND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a80ee84f-1eb0-442f-8cc4-52029d8bcb2a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "4f3d0519-d774-4f57-9aec-0ee8cf5bdc78" + ], + "x-ms-correlation-request-id": [ + "4f3d0519-d774-4f57-9aec-0ee8cf5bdc78" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20200917T132327Z:4f3d0519-d774-4f57-9aec-0ee8cf5bdc78" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 17 Sep 2020 13:23:26 GMT" + ], + "Content-Length": [ + "165" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps5834\",\r\n \"name\": \"ps5834\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps5834/providers/Microsoft.Storage/storageAccounts/ps5816?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlR3JvdXBzL3BzNTgzNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3BzNTgxNj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4ab022f3-622d-4bc8-a2e5-f5b9f73a1c98" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "99" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/providers/Microsoft.Storage/locations/westus/asyncoperations/1480fee9-16a9-4c59-a5bd-8a5add527761?monitor=true&api-version=2017-10-01" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "1480fee9-16a9-4c59-a5bd-8a5add527761" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "9226f327-7d6d-43a3-868e-a2d15b8dc290" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20200917T132332Z:9226f327-7d6d-43a3-868e-a2d15b8dc290" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 17 Sep 2020 13:23:31 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/providers/Microsoft.Storage/locations/westus/asyncoperations/1480fee9-16a9-4c59-a5bd-8a5add527761?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdHVzL2FzeW5jb3BlcmF0aW9ucy8xNDgwZmVlOS0xNmE5LTRjNTktYTViZC04YTVhZGQ1Mjc3NjE/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2f8d52ba-6b25-4696-84e5-4d1b947505da" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "f18c5044-b34a-409f-b0e5-131df732b556" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20200917T132349Z:f18c5044-b34a-409f-b0e5-131df732b556" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 17 Sep 2020 13:23:49 GMT" + ], + "Content-Length": [ + "1074" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps5834/providers/Microsoft.Storage/storageAccounts/ps5816\",\r\n \"name\": \"ps5816\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-09-17T13:23:31.5497414Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-09-17T13:23:31.5497414Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-09-17T13:23:31.4559607Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ps5816.blob.core.windows.net/\",\r\n \"queue\": \"https://ps5816.queue.core.windows.net/\",\r\n \"table\": \"https://ps5816.table.core.windows.net/\",\r\n \"file\": \"https://ps5816.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps5834/providers/Microsoft.Insights/metricAlerts/ps2783?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlR3JvdXBzL3BzNTgzNC9wcm92aWRlcnMvTWljcm9zb2Z0Lkluc2lnaHRzL21ldHJpY0FsZXJ0cy9wczI3ODM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This new Metric alert rule was created from Powershell version: 2.1.0\",\r\n \"severity\": 3,\r\n \"enabled\": true,\r\n \"scopes\": [\r\n \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps5834/providers/Microsoft.Storage/storageAccounts/ps5816\"\r\n ],\r\n \"evaluationFrequency\": \"PT5M\",\r\n \"windowSize\": \"PT1H\",\r\n \"criteria\": {\r\n \"odata.type\": \"Microsoft.Azure.Monitor.SingleResourceMultipleMetricCriteria\",\r\n \"allOf\": [\r\n {\r\n \"criterionType\": \"StaticThresholdCriterion\",\r\n \"operator\": \"GreaterThan\",\r\n \"threshold\": 8.0,\r\n \"name\": \"metric1\",\r\n \"metricName\": \"UsedCapacityCustom\",\r\n \"metricNamespace\": \"customNamespace\",\r\n \"timeAggregation\": \"Average\",\r\n \"skipMetricValidation\": true\r\n }\r\n ]\r\n },\r\n \"actions\": []\r\n },\r\n \"location\": \"global\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b68986ee-6113-4ecd-9c7b-977548eb59fd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Monitor.MonitorManagementClient/0.25.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "920" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "60e3967d-31dd-4776-a372-4a46ac6ac46e", + "60e3967d-31dd-4776-a372-4a46ac6ac46e" + ], + "api-supported-versions": [ + "1.0, 2.0, 2017-09-01-preview, 2018-03-01" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "299" + ], + "x-ms-correlation-request-id": [ + "60e3967d-31dd-4776-a372-4a46ac6ac46e" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20200917T132429Z:60e3967d-31dd-4776-a372-4a46ac6ac46e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 17 Sep 2020 13:24:28 GMT" + ], + "Content-Length": [ + "1169" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"global\",\r\n \"type\": \"Microsoft.Insights/metricAlerts\",\r\n \"name\": \"ps2783\",\r\n \"id\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps5834/providers/Microsoft.Insights/metricAlerts/ps2783\",\r\n \"properties\": {\r\n \"description\": \"This new Metric alert rule was created from Powershell version: 2.1.0\",\r\n \"severity\": 3,\r\n \"enabled\": true,\r\n \"scopes\": [\r\n \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps5834/providers/Microsoft.Storage/storageAccounts/ps5816\"\r\n ],\r\n \"evaluationFrequency\": \"PT5M\",\r\n \"windowSize\": \"PT1H\",\r\n \"templateType\": 8,\r\n \"criteria\": {\r\n \"allOf\": [\r\n {\r\n \"threshold\": 8.0,\r\n \"name\": \"metric1\",\r\n \"metricNamespace\": \"customNamespace\",\r\n \"metricName\": \"UsedCapacityCustom\",\r\n \"operator\": \"GreaterThan\",\r\n \"timeAggregation\": \"Average\",\r\n \"criterionType\": \"StaticThresholdCriterion\"\r\n }\r\n ],\r\n \"odata.type\": \"Microsoft.Azure.Monitor.SingleResourceMultipleMetricCriteria\"\r\n },\r\n \"targetResourceType\": \"microsoft.storage/storageaccounts\",\r\n \"actions\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps5834/providers/Microsoft.Insights/metricAlerts/ps2783?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlR3JvdXBzL3BzNTgzNC9wcm92aWRlcnMvTWljcm9zb2Z0Lkluc2lnaHRzL21ldHJpY0FsZXJ0cy9wczI3ODM/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "93d0f0ef-b06e-4d65-9fa9-c656a0bfab7b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Monitor.MonitorManagementClient/0.25.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d96167ac-90b3-4495-a28f-cd3e97fda300", + "d96167ac-90b3-4495-a28f-cd3e97fda300" + ], + "api-supported-versions": [ + "1.0, 2.0, 2017-09-01-preview, 2018-03-01" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "d96167ac-90b3-4495-a28f-cd3e97fda300" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20200917T132433Z:d96167ac-90b3-4495-a28f-cd3e97fda300" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 17 Sep 2020 13:24:32 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps5834/providers/Microsoft.Storage/storageAccounts/ps5816?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlR3JvdXBzL3BzNTgzNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3BzNTgxNj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0c89303a-5c60-4832-92c0-24171acb827b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "345985b4-b93c-4ecd-bd65-cbb6c6095a37" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "478bb292-eb7e-43b0-bf79-92bc0d36a720" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20200917T132437Z:478bb292-eb7e-43b0-bf79-92bc0d36a720" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 17 Sep 2020 13:24:37 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourcegroups/ps5834?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlZ3JvdXBzL3BzNTgzND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "33225850-0db4-447f-809e-32adfdb8b9e9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU4MzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14997" + ], + "x-ms-request-id": [ + "bea417d2-3b6d-4942-892b-eb31b16fa2f2" + ], + "x-ms-correlation-request-id": [ + "bea417d2-3b6d-4942-892b-eb31b16fa2f2" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20200917T132439Z:bea417d2-3b6d-4942-892b-eb31b16fa2f2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 17 Sep 2020 13:24:39 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU4MzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNE16UXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU4MzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "e59a5596-89a9-4c67-a79c-91d0d95f022f" + ], + "x-ms-correlation-request-id": [ + "e59a5596-89a9-4c67-a79c-91d0d95f022f" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20200917T132454Z:e59a5596-89a9-4c67-a79c-91d0d95f022f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 17 Sep 2020 13:24:54 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU4MzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNE16UXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU4MzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "3a1554b9-1c96-4b9a-8b84-6c359371e3c1" + ], + "x-ms-correlation-request-id": [ + "3a1554b9-1c96-4b9a-8b84-6c359371e3c1" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20200917T132510Z:3a1554b9-1c96-4b9a-8b84-6c359371e3c1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 17 Sep 2020 13:25:09 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU4MzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNE16UXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "5cdcf35b-3e3a-4dc6-90b6-2869681e1505" + ], + "x-ms-correlation-request-id": [ + "5cdcf35b-3e3a-4dc6-90b6-2869681e1505" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20200917T132525Z:5cdcf35b-3e3a-4dc6-90b6-2869681e1505" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 17 Sep 2020 13:25:24 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU4MzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNE16UXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "bb4edaee-7ac9-4ea2-a4d2-3a44559b6f57" + ], + "x-ms-correlation-request-id": [ + "bb4edaee-7ac9-4ea2-a4d2-3a44559b6f57" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20200917T132526Z:bb4edaee-7ac9-4ea2-a4d2-3a44559b6f57" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 17 Sep 2020 13:25:25 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-AddAzureRmMetricAlertRuleV2-skipMetricValidation": [ + "ps5834", + "ps5816", + "ps2783" + ] + }, + "Variables": { + "SubscriptionId": "11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3" + } +} \ No newline at end of file diff --git a/src/Monitor/Monitor/Alerts/AddAzureRmMetricAlertRuleV2Command.cs b/src/Monitor/Monitor/Alerts/AddAzureRmMetricAlertRuleV2Command.cs index 7ac74166c099..f9f4b208d76d 100644 --- a/src/Monitor/Monitor/Alerts/AddAzureRmMetricAlertRuleV2Command.cs +++ b/src/Monitor/Monitor/Alerts/AddAzureRmMetricAlertRuleV2Command.cs @@ -182,7 +182,7 @@ protected override void ProcessRecordInternal() foreach (var metricCondition in this.Condition) { var condition = metricCondition as PSMetricCriteria; - metricCriteria.Add(new MetricCriteria(name: condition.Name, metricName: condition.MetricName, operatorProperty: condition.OperatorProperty.ToString(), timeAggregation: condition.TimeAggregation.ToString(), threshold: condition.Threshold, metricNamespace: condition.MetricNamespace, dimensions: condition.Dimensions)); + metricCriteria.Add(new MetricCriteria(name: condition.Name, metricName: condition.MetricName, operatorProperty: condition.OperatorProperty.ToString(), timeAggregation: condition.TimeAggregation.ToString(), threshold: condition.Threshold, metricNamespace: condition.MetricNamespace, dimensions: condition.Dimensions, skipMetricValidation: condition.SkipMetricValidation)); } criteria = new MetricAlertSingleResourceMultipleMetricCriteria( allOf: metricCriteria @@ -217,12 +217,12 @@ protected override void ProcessRecordInternal() if (condition is PSMetricCriteria) { var psStaticMetricCriteria = condition as PSMetricCriteria; - multiMetricCriteria.Add(new MetricCriteria(name: psStaticMetricCriteria.Name, metricName: psStaticMetricCriteria.MetricName, operatorProperty: psStaticMetricCriteria.OperatorProperty.ToString(), timeAggregation: psStaticMetricCriteria.TimeAggregation.ToString(), threshold: psStaticMetricCriteria.Threshold, metricNamespace: psStaticMetricCriteria.MetricNamespace, dimensions: psStaticMetricCriteria.Dimensions)); + multiMetricCriteria.Add(new MetricCriteria(name: psStaticMetricCriteria.Name, metricName: psStaticMetricCriteria.MetricName, operatorProperty: psStaticMetricCriteria.OperatorProperty.ToString(), timeAggregation: psStaticMetricCriteria.TimeAggregation.ToString(), threshold: psStaticMetricCriteria.Threshold, metricNamespace: psStaticMetricCriteria.MetricNamespace, dimensions: psStaticMetricCriteria.Dimensions, skipMetricValidation: psStaticMetricCriteria.SkipMetricValidation)); } else { var psDynamicMetricCriteria = condition as PSDynamicMetricCriteria; - multiMetricCriteria.Add(new DynamicMetricCriteria(name: psDynamicMetricCriteria.Name, metricName: psDynamicMetricCriteria.MetricName, operatorProperty: psDynamicMetricCriteria.OperatorProperty.ToString(), timeAggregation: psDynamicMetricCriteria.TimeAggregation.ToString(), metricNamespace: psDynamicMetricCriteria.MetricNamespace, dimensions: psDynamicMetricCriteria.Dimensions, alertSensitivity: psDynamicMetricCriteria.AlertSensitivity, failingPeriods: psDynamicMetricCriteria.FailingPeriods, ignoreDataBefore: psDynamicMetricCriteria.IgnoreDataBefore)); + multiMetricCriteria.Add(new DynamicMetricCriteria(name: psDynamicMetricCriteria.Name, metricName: psDynamicMetricCriteria.MetricName, operatorProperty: psDynamicMetricCriteria.OperatorProperty.ToString(), timeAggregation: psDynamicMetricCriteria.TimeAggregation.ToString(), metricNamespace: psDynamicMetricCriteria.MetricNamespace, dimensions: psDynamicMetricCriteria.Dimensions, alertSensitivity: psDynamicMetricCriteria.AlertSensitivity, failingPeriods: psDynamicMetricCriteria.FailingPeriods, ignoreDataBefore: psDynamicMetricCriteria.IgnoreDataBefore, skipMetricValidation: psDynamicMetricCriteria.SkipMetricValidation)); } } diff --git a/src/Monitor/Monitor/Alerts/NewAzureRmMetricAlertRuleV2CriteriaCommand.cs b/src/Monitor/Monitor/Alerts/NewAzureRmMetricAlertRuleV2CriteriaCommand.cs index fb7262ba088c..3f93801fc034 100644 --- a/src/Monitor/Monitor/Alerts/NewAzureRmMetricAlertRuleV2CriteriaCommand.cs +++ b/src/Monitor/Monitor/Alerts/NewAzureRmMetricAlertRuleV2CriteriaCommand.cs @@ -69,6 +69,13 @@ public class NewAzureRmMetricAlertRuleV2CriteriaCommand : MonitorCmdletBase [Parameter(ParameterSetName = DynamicThresholdParameterSet, Mandatory = false, HelpMessage = "The Namespace of the metric")] public String MetricNamespace { get; set; } + /// + /// Gets or sets SkipMetricValidation parameter of the cmdlet + /// + [Parameter(ParameterSetName = StaticThresholdParameterSet, Mandatory = false, HelpMessage = "Allows creating an alert rule on a custom metric that isn't yet emitted, by causing the metric validation to be skipped")] + [Parameter(ParameterSetName = DynamicThresholdParameterSet, Mandatory = false, HelpMessage = "Allows creating an alert rule on a custom metric that isn't yet emitted, by causing the metric validation to be skipped")] + public Boolean SkipMetricValidation { get; set; } + /// /// Gets or sets Dimensions of the cmdlet /// @@ -186,12 +193,14 @@ protected override void ProcessRecordInternal() dimensions: metricDimensions, failingPeriods: failingPeriods, alertSensitivity: this.ThresholdSensitivity, - ignoreDataBefore: this.IsParameterBound(c => c.IgnoreDataBefore) ? (DateTime?) this.IgnoreDataBefore : null); + ignoreDataBefore: this.IsParameterBound(c => c.IgnoreDataBefore) ? (DateTime?) this.IgnoreDataBefore : null, + skipMetricValidation: this.SkipMetricValidation + ); result = new PSDynamicMetricCriteria(dynamicMetricCriteria); } else { - MetricCriteria metricCriteria = new MetricCriteria(name: "metric1", metricName: this.MetricName, operatorProperty: this.Operator, timeAggregation: this.TimeAggregation, threshold: this.Threshold, metricNamespace: this.MetricNamespace, dimensions: metricDimensions); + MetricCriteria metricCriteria = new MetricCriteria(name: "metric1", metricName: this.MetricName, operatorProperty: this.Operator, timeAggregation: this.TimeAggregation, threshold: this.Threshold, metricNamespace: this.MetricNamespace, dimensions: metricDimensions, skipMetricValidation: this.SkipMetricValidation); result = new PSMetricCriteria(metricCriteria); } diff --git a/src/Monitor/Monitor/ChangeLog.md b/src/Monitor/Monitor/ChangeLog.md index db5a3e322c04..b39077b9257a 100644 --- a/src/Monitor/Monitor/ChangeLog.md +++ b/src/Monitor/Monitor/ChangeLog.md @@ -20,6 +20,7 @@ ## Upcoming Release * Fixed the bug that warning message cannot be suppressed. [#12889] +* Supported `SkipMetricValiation` parameter in alert rule criteria. Allows creating an alert rule on a custom metric that isn't yet emitted, by causing the metric validation to be skipped. ## Version 2.1.0 * Extended the parameter set in `Set-AzDiagnosticSetting` for separation of Logs and Metrics enablement [#12482] diff --git a/src/Monitor/Monitor/Monitor.csproj b/src/Monitor/Monitor/Monitor.csproj index 07c831fb8c7d..bbdee4258f84 100644 --- a/src/Monitor/Monitor/Monitor.csproj +++ b/src/Monitor/Monitor/Monitor.csproj @@ -11,7 +11,7 @@ - + diff --git a/src/Monitor/Monitor/OutputClasses/PSDynamicMetricCriteria.cs b/src/Monitor/Monitor/OutputClasses/PSDynamicMetricCriteria.cs index 77fc13a1df07..6a17bbebd29a 100644 --- a/src/Monitor/Monitor/OutputClasses/PSDynamicMetricCriteria.cs +++ b/src/Monitor/Monitor/OutputClasses/PSDynamicMetricCriteria.cs @@ -39,7 +39,8 @@ public PSDynamicMetricCriteria(DynamicMetricCriteria dynamicMetricCriteria): dimensions: dynamicMetricCriteria.Dimensions, alertSensitivity: dynamicMetricCriteria.AlertSensitivity, failingPeriods: dynamicMetricCriteria.FailingPeriods, - ignoreDataBefore: dynamicMetricCriteria.IgnoreDataBefore) + ignoreDataBefore: dynamicMetricCriteria.IgnoreDataBefore, + skipMetricValidation: dynamicMetricCriteria.SkipMetricValidation) { } diff --git a/src/Monitor/Monitor/OutputClasses/PSMetricCriteria.cs b/src/Monitor/Monitor/OutputClasses/PSMetricCriteria.cs index 9dcc46c841f4..911b12d2253f 100644 --- a/src/Monitor/Monitor/OutputClasses/PSMetricCriteria.cs +++ b/src/Monitor/Monitor/OutputClasses/PSMetricCriteria.cs @@ -37,7 +37,8 @@ public PSMetricCriteria(MetricCriteria metricCriteria) timeAggregation: metricCriteria.TimeAggregation, threshold: metricCriteria.Threshold, metricNamespace: metricCriteria.MetricNamespace, - dimensions: metricCriteria.Dimensions) + dimensions: metricCriteria.Dimensions, + skipMetricValidation: metricCriteria.SkipMetricValidation) { } } diff --git a/src/Monitor/Monitor/help/New-AzMetricAlertRuleV2Criteria.md b/src/Monitor/Monitor/help/New-AzMetricAlertRuleV2Criteria.md index 50ca98799122..afb534101bf4 100644 --- a/src/Monitor/Monitor/help/New-AzMetricAlertRuleV2Criteria.md +++ b/src/Monitor/Monitor/help/New-AzMetricAlertRuleV2Criteria.md @@ -15,16 +15,17 @@ Creates a local criteria object that can be used to create a new metric alert ### StaticThresholdParameterSet (Default) ``` New-AzMetricAlertRuleV2Criteria -MetricName [-MetricNamespace ] - [-DimensionSelection ] -TimeAggregation -Operator -Threshold - [-DefaultProfile ] [] + [-SkipMetricValidation ] [-DimensionSelection ] -TimeAggregation + -Operator -Threshold [-DefaultProfile ] [] ``` ### DynamicThresholdParameterSet ``` New-AzMetricAlertRuleV2Criteria [-DynamicThreshold] -MetricName [-MetricNamespace ] - [-DimensionSelection ] -TimeAggregation -Operator - [-ThresholdSensitivity ] [-ViolationCount ] [-ExaminedAggregatedPointCount ] - [-IgnoreDataBefore ] [-DefaultProfile ] [] + [-SkipMetricValidation ] [-DimensionSelection ] -TimeAggregation + -Operator [-ThresholdSensitivity ] [-ViolationCount ] + [-ExaminedAggregatedPointCount ] [-IgnoreDataBefore ] + [-DefaultProfile ] [] ``` ### WebtestParameterSet @@ -257,6 +258,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -SkipMetricValidation +Allows creating an alert rule on a custom metric that isn't yet emitted, by causing the metric validation to be skipped + +```yaml +Type: System.Boolean +Parameter Sets: StaticThresholdParameterSet, DynamicThresholdParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Threshold The threshold for rule condition diff --git a/src/Network/Network.Test/Network.Test.csproj b/src/Network/Network.Test/Network.Test.csproj index fda71167535f..80e429af60dc 100644 --- a/src/Network/Network.Test/Network.Test.csproj +++ b/src/Network/Network.Test/Network.Test.csproj @@ -1,4 +1,4 @@ - + Network diff --git a/src/Network/Network/Az.Network.psd1 b/src/Network/Network/Az.Network.psd1 index 2c9534421d13..59f29f894160 100644 --- a/src/Network/Network/Az.Network.psd1 +++ b/src/Network/Network/Az.Network.psd1 @@ -502,7 +502,8 @@ CmdletsToExport = 'Add-AzApplicationGatewayAuthenticationCertificate', 'Get-AzNetworkVirtualApplianceSku', 'New-AzVirtualApplianceSkuProperty', 'New-AzCustomIpPrefix', 'Update-AzCustomIpPrefix', 'Get-AzCustomIpPrefix', - 'Remove-AzCustomIpPrefix', 'New-AzExpressRoutePortLOA' + 'Remove-AzCustomIpPrefix', 'New-AzExpressRoutePortLOA', + 'New-AzO365PolicyProperty' # Variables to export from this module # VariablesToExport = @() diff --git a/src/Network/Network/ChangeLog.md b/src/Network/Network/ChangeLog.md index 5dda76bd7c1e..48b6450a83c6 100644 --- a/src/Network/Network/ChangeLog.md +++ b/src/Network/Network/ChangeLog.md @@ -19,7 +19,9 @@ ---> ## Upcoming Release - +* Added Office365 Policy to VPNSite Resource + - `New-AzO365PolicyProperty` + ## Version 3.4.0 * [Breaking Change] Updated below cmdlets to align resource virtual router and virtual hub - `New-AzVirtualRouter`: diff --git a/src/Network/Network/Cortex/VpnSite/NewAzureRmVpnSiteCommand.cs b/src/Network/Network/Cortex/VpnSite/NewAzureRmVpnSiteCommand.cs index 2a0a30da1350..8b4c4f0bba96 100644 --- a/src/Network/Network/Cortex/VpnSite/NewAzureRmVpnSiteCommand.cs +++ b/src/Network/Network/Cortex/VpnSite/NewAzureRmVpnSiteCommand.cs @@ -181,6 +181,12 @@ public class NewAzureRmVpnSiteCommand : VpnSiteBaseCmdlet [ValidateNotNullOrEmpty] public PSVpnSiteLink[] VpnSiteLink { get; set; } + [Parameter( + Mandatory = false, + HelpMessage = "The office 365 traffic breakout policy for this VpnSite.")] + [ValidateNotNullOrEmpty] + public PSO365PolicyProperties O365Policy { get; set; } + [Parameter( Mandatory = false, HelpMessage = "A hashtable which represents resource tags.")] @@ -274,6 +280,11 @@ public override void Execute() vpnSiteToCreate.VpnSiteLinks.AddRange(this.VpnSiteLink); } + if (this.O365Policy != null ) + { + vpnSiteToCreate.O365Policy = this.O365Policy; + } + ConfirmAction( Properties.Resources.CreatingResourceMessage, this.Name, diff --git a/src/Network/Network/Cortex/VpnSite/O365Policy/NewAzureRmO365PolicyPropertyCommand.cs b/src/Network/Network/Cortex/VpnSite/O365Policy/NewAzureRmO365PolicyPropertyCommand.cs new file mode 100644 index 000000000000..aaf2a44c7357 --- /dev/null +++ b/src/Network/Network/Cortex/VpnSite/O365Policy/NewAzureRmO365PolicyPropertyCommand.cs @@ -0,0 +1,55 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.Network.Models; +using System; +using System.Collections.Generic; +using System.Management.Automation; +using System.Text; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "O365PolicyProperty"), OutputType(typeof(PSO365PolicyProperties))] + public class NewAzureRmO365PolicyPropertyCommand : NetworkBaseCmdlet + { + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = false, + HelpMessage = "Breakout the allow category traffic.")] + public SwitchParameter Allow { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = false, + HelpMessage = "Breakout the optimize category traffic.")] + public SwitchParameter Optimize { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = false, + HelpMessage = "Breakout the default category traffic.")] + public SwitchParameter Default { get; set; } + + public override void Execute() + { + base.Execute(); + var o365Policy = new PSO365PolicyProperties(); + o365Policy.BreakOutCategories = new PSO365BreakOutCategoryPolicies(); + o365Policy.BreakOutCategories.Allow = this.Allow; + o365Policy.BreakOutCategories.Optimize = this.Optimize; + o365Policy.BreakOutCategories.DefaultProperty = this.Default; + WriteObject(o365Policy); + } + } +} diff --git a/src/Network/Network/Cortex/VpnSite/UpdateAzureRmVpnSiteCommand.cs b/src/Network/Network/Cortex/VpnSite/UpdateAzureRmVpnSiteCommand.cs index 941bd81da2eb..6c4b1b9debfa 100644 --- a/src/Network/Network/Cortex/VpnSite/UpdateAzureRmVpnSiteCommand.cs +++ b/src/Network/Network/Cortex/VpnSite/UpdateAzureRmVpnSiteCommand.cs @@ -229,6 +229,12 @@ public class UpdateAzureRmVpnSiteCommand : VpnSiteBaseCmdlet HelpMessage = "The list of VpnSiteLinks that this VpnSite have.")] public PSVpnSiteLink[] VpnSiteLink { get; set; } + [Parameter( + Mandatory = false, + HelpMessage = "The office 365 traffic breakout policy for this VpnSite.")] + [ValidateNotNullOrEmpty] + public PSO365PolicyProperties O365Policy { get; set; } + [Parameter( Mandatory = false, HelpMessage = "A hashtable which represents resource tags.")] @@ -372,6 +378,11 @@ public override void Execute() vpnSiteToUpdate.VpnSiteLinks.AddRange(this.VpnSiteLink); } + if (this.O365Policy != null) + { + vpnSiteToUpdate.O365Policy = this.O365Policy; + } + ConfirmAction( Properties.Resources.SettingResourceMessage, this.Name, diff --git a/src/Network/Network/Models/Cortex/PSO365BreakOutCategoryPolicies.cs b/src/Network/Network/Models/Cortex/PSO365BreakOutCategoryPolicies.cs new file mode 100644 index 000000000000..79b8c6b3f9c4 --- /dev/null +++ b/src/Network/Network/Models/Cortex/PSO365BreakOutCategoryPolicies.cs @@ -0,0 +1,13 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Microsoft.Azure.Commands.Network.Models +{ + public class PSO365BreakOutCategoryPolicies + { + public bool? Allow { get; set; } + public bool? Optimize { get; set; } + public bool? DefaultProperty { get; set; } + } +} diff --git a/src/Network/Network/Models/Cortex/PSO365PolicyProperties.cs b/src/Network/Network/Models/Cortex/PSO365PolicyProperties.cs new file mode 100644 index 000000000000..ca51b6b36a2b --- /dev/null +++ b/src/Network/Network/Models/Cortex/PSO365PolicyProperties.cs @@ -0,0 +1,11 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Microsoft.Azure.Commands.Network.Models +{ + public class PSO365PolicyProperties + { + public PSO365BreakOutCategoryPolicies BreakOutCategories { get; set; } + } +} diff --git a/src/Network/Network/Models/Cortex/PSVpnSite.cs b/src/Network/Network/Models/Cortex/PSVpnSite.cs index ebb5408b5f3d..a13df7429f65 100644 --- a/src/Network/Network/Models/Cortex/PSVpnSite.cs +++ b/src/Network/Network/Models/Cortex/PSVpnSite.cs @@ -36,5 +36,8 @@ public class PSVpnSite : PSTopLevelResource public string ProvisioningState { get; set; } public List VpnSiteLinks { get; set; } + + public PSO365PolicyProperties O365Policy { get; set; } + } } diff --git a/src/Network/Network/help/New-AzO365PolicyProperty.md b/src/Network/Network/help/New-AzO365PolicyProperty.md new file mode 100644 index 000000000000..a329caeb431d --- /dev/null +++ b/src/Network/Network/help/New-AzO365PolicyProperty.md @@ -0,0 +1,106 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml +Module Name: Az.Network +online version: https://docs.microsoft.com/en-us/powershell/module/az.network/new-azo365policyproperty +schema: 2.0.0 +--- + +# New-AzO365PolicyProperty + +## SYNOPSIS +Create an office 365 traffic breakout policy object. + +## SYNTAX + +``` +New-AzO365PolicyProperty [-Allow] [-Optimize] [-Default] [-DefaultProfile ] + [] +``` + +## DESCRIPTION +Create an office 365 breakout policy to be used with New-AzVpnSite and Update-AzVpnSite cmdlets. +## EXAMPLES + +### Example 1 +```powershell +PS C:\> $policy = New-AzO365PolicyProperty -Allow -Optimize +``` + +Create an office 365 traffic breakout policy with breakout allowed for allow and optimize category of traffic. + +## PARAMETERS + +### -Allow +Breakout the allow category traffic. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Default +Breakout the default category traffic. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Optimize +Breakout the optimize category traffic. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None + +## OUTPUTS + +### Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties + +## NOTES + +## RELATED LINKS diff --git a/src/Network/Network/help/New-AzPublicIpAddress.md b/src/Network/Network/help/New-AzPublicIpAddress.md index 47c4babe3af7..c24db448e250 100644 --- a/src/Network/Network/help/New-AzPublicIpAddress.md +++ b/src/Network/Network/help/New-AzPublicIpAddress.md @@ -51,7 +51,7 @@ $dnsPrefix.$location.cloudapp.azure.com. ### Example 3: Create a new public IP address with IpTag ```powershell $ipTag = New-AzPublicIpTag -IpTagType "FirstPartyUsage" -Tag "/Sql" -$publicIp = New-AzPublicIpAddress -Name $publicIpName -ResourceGroupName $rgName -AllocationMethod Static -DomainNameLabel $dnsPrefix -Location $location -IpTags ipTag +$publicIp = New-AzPublicIpAddress -Name $publicIpName -ResourceGroupName $rgName -AllocationMethod Static -DomainNameLabel $dnsPrefix -Location $location -IpTags $ipTag ``` This command creates a new public IP address resource.A DNS record is created for diff --git a/src/Network/Network/help/New-AzVpnSite.md b/src/Network/Network/help/New-AzVpnSite.md index 2eb60cb78c84..0534b6b48049 100644 --- a/src/Network/Network/help/New-AzVpnSite.md +++ b/src/Network/Network/help/New-AzVpnSite.md @@ -306,6 +306,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -O365Policy +The office 365 traffic breakout policy for this VpnSite. + +```yaml +Type: Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ResourceGroupName The resource name. diff --git a/src/Network/Network/help/Remove-AzExpressRouteCircuitConnectionConfig.md b/src/Network/Network/help/Remove-AzExpressRouteCircuitConnectionConfig.md index 983d8c34edf1..0c360ae4cb26 100644 --- a/src/Network/Network/help/Remove-AzExpressRouteCircuitConnectionConfig.md +++ b/src/Network/Network/help/Remove-AzExpressRouteCircuitConnectionConfig.md @@ -101,11 +101,11 @@ Specifies the address family that needs to be removed from the config Type: System.String Parameter Sets: (All) Aliases: -Accepted values: IPv4, IPv6 +Accepted values: IPv4, IPv6, All Required: False Position: Named -Default value: None +Default value: IPv4 Accept pipeline input: False Accept wildcard characters: False ``` diff --git a/src/Network/Network/help/Set-AzLoadBalancerFrontendIpConfig.md b/src/Network/Network/help/Set-AzLoadBalancerFrontendIpConfig.md index 7ae162c31118..b3cc781d0dc1 100644 --- a/src/Network/Network/help/Set-AzLoadBalancerFrontendIpConfig.md +++ b/src/Network/Network/help/Set-AzLoadBalancerFrontendIpConfig.md @@ -52,6 +52,7 @@ PS C:\>$Subnet = Get-AzVirtualNetwork -Name "MyVnet" -ResourceGroupName "MyResou PS C:\> $slb = Get-AzLoadBalancer -Name "MyLoadBalancer" -ResourceGroupName "MyResourceGroup" PS C:\> $slb | Add-AzLoadBalancerFrontendIpConfig -Name "NewFrontend" -Subnet $Subnet PS C:\> $slb | Set-AzLoadBalancerFrontendIpConfig -Name "NewFrontend" -Subnet $Subnet +PS C:\> $slb | Set-AzLoadBalancer ``` The first command gets the virtual subnet named Subnet, and then stores it in the $Subnet variable. diff --git a/src/Network/Network/help/Set-AzLoadBalancerInboundNatPoolConfig.md b/src/Network/Network/help/Set-AzLoadBalancerInboundNatPoolConfig.md index 1f90397d74f3..0b787e7a80d1 100644 --- a/src/Network/Network/help/Set-AzLoadBalancerInboundNatPoolConfig.md +++ b/src/Network/Network/help/Set-AzLoadBalancerInboundNatPoolConfig.md @@ -40,6 +40,7 @@ The **Set-AzLoadBalancerInboundNatPoolConfig** cmdlet sets an inbound NAT pool c PS C:\> $slb = Get-AzLoadBalancer -Name "MyLoadBalancer" -ResourceGroupName "MyResourceGroup" PS C:\> $feIpConfig = Get-AzLoadBalancerFrontendIpConfig -Name "FrontendName" -LoadBalancer $slb PS C:\> Set-AzLoadBalancerInboundNatPoolConfig -Name "myInboundNatPool" -LoadBalancer $slb -FrontendIpConfigurationId $inboundNatPoolConfig.FrontendIPConfiguration -Protocol TCP -FrontendPortRangeStart 2001 -FrontendPortRangeEnd 3000 -BackendPort 2001 +PS C:\> $slb | Set-AzLoadBalancer ``` ## PARAMETERS diff --git a/src/Network/Network/help/Update-AzVpnSite.md b/src/Network/Network/help/Update-AzVpnSite.md index 71270dd25d38..d374cb764099 100644 --- a/src/Network/Network/help/Update-AzVpnSite.md +++ b/src/Network/Network/help/Update-AzVpnSite.md @@ -333,6 +333,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -O365Policy +The office 365 traffic breakout policy for this VpnSite. + +```yaml +Type: Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ResourceGroupName The resource group name. diff --git a/src/OperationalInsights/OperationalInsights/Properties/Resources.resx b/src/OperationalInsights/OperationalInsights/Properties/Resources.resx index e2824a939ee3..d9469c19f99c 100644 --- a/src/OperationalInsights/OperationalInsights/Properties/Resources.resx +++ b/src/OperationalInsights/OperationalInsights/Properties/Resources.resx @@ -137,7 +137,7 @@ A dataSource with name '{0}' in workspace '{1}' exists. -Continuing execution may overwrite the exisiting one. +Continuing execution may overwrite the existing one. Are you sure you want to continue? @@ -187,7 +187,7 @@ Timestamp (Utc):{3} A saved search with the id '{0}' in workspace '{1}' exists. -Continuing execution may overwrite the exisiting one. +Continuing execution may overwrite the existing one. Are you sure you want to continue? @@ -216,7 +216,7 @@ Are you sure you want to continue? A storage insight with name '{0}' in workspace '{1}' exists. -Continuing execution may overwrite the exisiting one. +Continuing execution may overwrite the existing one. Are you sure you want to continue? @@ -236,7 +236,7 @@ Are you sure you want to continue? A workspace with name '{0}' in resource group '{1}' exists. -Continuing execution may overwrite the exisiting one. +Continuing execution may overwrite the existing one. Are you sure you want to continue? @@ -248,4 +248,4 @@ Are you sure you want to continue? Removing workspace '{0}' in resource group '{1}'. - \ No newline at end of file + diff --git a/src/PostgreSql/Az.PostgreSql.psd1 b/src/PostgreSql/Az.PostgreSql.psd1 index 2798cfdffc3c..dd73c57ab8f4 100644 --- a/src/PostgreSql/Az.PostgreSql.psd1 +++ b/src/PostgreSql/Az.PostgreSql.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 5/13/2020 +# Generated on: 9/28/2020 # @{ @@ -18,7 +18,7 @@ ModuleVersion = '0.1.0' CompatiblePSEditions = 'Core', 'Desktop' # ID used to uniquely identify this module -GUID = '7f2a6534-0c75-4f29-98d2-d54e4a8a1e5f' +GUID = 'b09b1b72-75a0-43a4-a342-b69a27eb64b5' # Author of this module Author = 'Microsoft Corporation' @@ -45,13 +45,13 @@ PowerShellVersion = '5.1' DotNetFrameworkVersion = '4.7.2' # Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only. -# CLRVersion = '' +# ClrVersion = '' # Processor architecture (None, X86, Amd64) required by this module # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.9.4'; }) +# RequiredModules = @() # Assemblies that must be loaded prior to importing this module RequiredAssemblies = './bin/Az.PostgreSql.private.dll' @@ -117,7 +117,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* the first preview release' + # ReleaseNotes = '' # Prerelease string of this module # Prerelease = '' diff --git a/src/PostgreSql/Az.PostgreSql.psm1 b/src/PostgreSql/Az.PostgreSql.psm1 index 8840dd2bee5e..b47b3b9a653f 100644 --- a/src/PostgreSql/Az.PostgreSql.psm1 +++ b/src/PostgreSql/Az.PostgreSql.psm1 @@ -16,7 +16,7 @@ $accountsName = 'Az.Accounts' $accountsModule = Get-Module -Name $accountsName if(-not $accountsModule) { - $localAccountsPath = Join-Path $PSScriptRoot 'generated/modules' + $localAccountsPath = Join-Path $PSScriptRoot 'generated\modules' if(Test-Path -Path $localAccountsPath) { $localAccounts = Get-ChildItem -Path $localAccountsPath -Recurse -Include 'Az.Accounts.psd1' | Select-Object -Last 1 if($localAccounts) { @@ -24,17 +24,17 @@ } } if(-not $accountsModule) { - $hasAdequateVersion = (Get-Module -Name $accountsName -ListAvailable | Where-Object { $_.Version -ge [System.Version]'1.7.4' } | Measure-Object).Count -gt 0 + $hasAdequateVersion = (Get-Module -Name $accountsName -ListAvailable | Where-Object { $_.Version -ge [System.Version]'1.8.1' } | Measure-Object).Count -gt 0 if($hasAdequateVersion) { - $accountsModule = Import-Module -Name $accountsName -MinimumVersion 1.7.4 -Scope Global -PassThru + $accountsModule = Import-Module -Name $accountsName -MinimumVersion 1.8.1 -Scope Global -PassThru } } } if(-not $accountsModule) { - Write-Error "`nThis module requires $accountsName version 1.7.4 or greater. For installation instructions, please see: https://docs.microsoft.com/en-us/powershell/azure/install-az-ps" -ErrorAction Stop - } elseif (($accountsModule.Version -lt [System.Version]'1.7.4') -and (-not $localAccounts)) { - Write-Error "`nThis module requires $accountsName version 1.7.4 or greater. An earlier version of Az.Accounts is imported in the current PowerShell session. If you are running test, please try to remove '.PSSharedModules' in your home directory. Otherwise please open a new PowerShell session and import this module again.`nAdditionally, this error could indicate that multiple incompatible versions of Azure PowerShell modules are installed on your system. For troubleshooting information, please see: https://aka.ms/azps-version-error" -ErrorAction Stop + Write-Error "`nThis module requires $accountsName version 1.8.1 or greater. For installation instructions, please see: https://docs.microsoft.com/en-us/powershell/azure/install-az-ps" -ErrorAction Stop + } elseif (($accountsModule.Version -lt [System.Version]'1.8.1') -and (-not $localAccounts)) { + Write-Error "`nThis module requires $accountsName version 1.8.1 or greater. An earlier version of Az.Accounts is imported in the current PowerShell session. If you are running test, please try to remove '.PSSharedModules' in your home directory. Otherwise please open a new PowerShell session and import this module again.`nAdditionally, this error could indicate that multiple incompatible versions of Azure PowerShell modules are installed on your system. For troubleshooting information, please see: https://aka.ms/azps-version-error" -ErrorAction Stop } Write-Information "Loaded Module '$($accountsModule.Name)'" diff --git a/src/PostgreSql/ChangeLog.md b/src/PostgreSql/ChangeLog.md index b76ecb79cf4a..dc076fc8e0e4 100644 --- a/src/PostgreSql/ChangeLog.md +++ b/src/PostgreSql/ChangeLog.md @@ -18,6 +18,11 @@ - Additional information about change #1 --> ## Upcoming Release +* New/Update-AzPostgreSqlFirewallRule create a default name with time stamp when no name is passed (#12738) +* Added validateset for parameter StorageAutogrow (#12736) +* Used 'master' and 'replica' to avoid confusion when created postgresql replica server (#12743) +* Provided hint in doc to use Update-AzPostgreSqlServer & Update-AzPostgreSqlServerConfiguration as a candidate for each other (#12745) +* Fix secure string decrytion issue in PowerShell 7 (#12956) ## Version 0.1.0 * the first preview release diff --git a/src/PostgreSql/build-module.ps1 b/src/PostgreSql/build-module.ps1 index c9495b87b5ae..a53ef31d62dc 100644 --- a/src/PostgreSql/build-module.ps1 +++ b/src/PostgreSql/build-module.ps1 @@ -88,7 +88,7 @@ if(-not $Debugger) { $null = Remove-Item -Recurse -ErrorAction SilentlyContinue -Path (Join-Path $binFolder 'Debug'), (Join-Path $binFolder 'Release') } -$dll = Join-Path $PSScriptRoot 'bin/Az.PostgreSql.private.dll' +$dll = Join-Path $PSScriptRoot 'bin\Az.PostgreSql.private.dll' if(-not (Test-Path $dll)) { Write-Error "Unable to find output assembly in '$binFolder'." } @@ -97,7 +97,7 @@ if(-not (Test-Path $dll)) { $null = Import-Module -Name $dll $modulePaths = $dll -$customPsm1 = Join-Path $PSScriptRoot 'custom/Az.PostgreSql.custom.psm1' +$customPsm1 = Join-Path $PSScriptRoot 'custom\Az.PostgreSql.custom.psm1' if(Test-Path $customPsm1) { $modulePaths = @($dll, $customPsm1) } diff --git a/src/PostgreSql/check-dependencies.ps1 b/src/PostgreSql/check-dependencies.ps1 index 30af57603366..513c52ca2fb5 100644 --- a/src/PostgreSql/check-dependencies.ps1 +++ b/src/PostgreSql/check-dependencies.ps1 @@ -21,13 +21,15 @@ if(-not $Isolated) { return } -function DownloadModule ([bool]$predicate, [string]$path, [string]$moduleName, [string]$versionMinimum) { +function DownloadModule ([bool]$predicate, [string]$path, [string]$moduleName, [string]$versionMinimum, [string]$requiredVersion) { if($predicate) { $module = Get-Module -ListAvailable -Name $moduleName if((-not $module) -or ($versionMinimum -and ($module | ForEach-Object { $_.Version } | Where-Object { $_ -ge [System.Version]$versionMinimum } | Measure-Object).Count -eq 0)) { $null = New-Item -ItemType Directory -Force -Path $path Write-Host -ForegroundColor Green "Installing local $moduleName module into '$path'..." - if($versionMinimum) { + if ($requiredVersion) { + Find-Module -Name $moduleName -RequiredVersion $requiredVersion -Repository PSGallery | Save-Module -Path $path + }elseif($versionMinimum) { Find-Module -Name $moduleName -MinimumVersion $versionMinimum -Repository PSGallery | Save-Module -Path $path } else { Find-Module -Name $moduleName -Repository PSGallery | Save-Module -Path $path @@ -39,13 +41,13 @@ function DownloadModule ([bool]$predicate, [string]$path, [string]$moduleName, [ $ProgressPreference = 'SilentlyContinue' $all = (@($Accounts.IsPresent, $Pester.IsPresent) | Select-Object -Unique | Measure-Object).Count -eq 1 -$localModulesPath = Join-Path $PSScriptRoot 'generated/modules' +$localModulesPath = Join-Path $PSScriptRoot 'generated\modules' if(Test-Path -Path $localModulesPath) { $env:PSModulePath = "$localModulesPath$([IO.Path]::PathSeparator)$env:PSModulePath" } -DownloadModule -predicate ($all -or $Accounts) -path $localModulesPath -moduleName 'Az.Accounts' -versionMinimum '1.7.4' -DownloadModule -predicate ($all -or $Pester) -path $localModulesPath -moduleName 'Pester' -versionMinimum '' +DownloadModule -predicate ($all -or $Accounts) -path $localModulesPath -moduleName 'Az.Accounts' -versionMinimum '1.8.1' +DownloadModule -predicate ($all -or $Pester) -path $localModulesPath -moduleName 'Pester' -requiredVersion '4.10.1' $tools = Join-Path $PSScriptRoot 'tools' $resourceDir = Join-Path $tools 'Resources' diff --git a/src/PostgreSql/custom/Az.PostgreSql.custom.psm1 b/src/PostgreSql/custom/Az.PostgreSql.custom.psm1 index c5c0cf903e53..638c9dbd7ca3 100644 --- a/src/PostgreSql/custom/Az.PostgreSql.custom.psm1 +++ b/src/PostgreSql/custom/Az.PostgreSql.custom.psm1 @@ -1,9 +1,9 @@ # region Generated # Load the private module dll - $null = Import-Module -PassThru -Name (Join-Path $PSScriptRoot '../bin/Az.PostgreSql.private.dll') + $null = Import-Module -PassThru -Name (Join-Path $PSScriptRoot '..\bin\Az.PostgreSql.private.dll') # Load the internal module - $internalModulePath = Join-Path $PSScriptRoot '../internal/Az.PostgreSql.internal.psm1' + $internalModulePath = Join-Path $PSScriptRoot '..\internal\Az.PostgreSql.internal.psm1' if(Test-Path $internalModulePath) { $null = Import-Module -Name $internalModulePath } diff --git a/src/PostgreSql/custom/New-AzPostgreSqlFirewallRule.ps1 b/src/PostgreSql/custom/New-AzPostgreSqlFirewallRule.ps1 new file mode 100644 index 000000000000..93f6f8b0ed6e --- /dev/null +++ b/src/PostgreSql/custom/New-AzPostgreSqlFirewallRule.ps1 @@ -0,0 +1,178 @@ + +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.Synopsis +Creates a new firewall rule or updates an existing firewall rule. +.Description +Creates a new firewall rule or updates an existing firewall rule. +#> +function New-AzPostgreSqlFirewallRule { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IFirewallRule])] +[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter()] + [Alias('FirewallRuleName')] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] + [System.String] + # The name of the server firewall rule. + ${Name}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] + [System.String] + # The name of the resource group. + # The name is case insensitive. + ${ResourceGroupName}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] + [System.String] + # The name of the server. + ${ServerName}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # The ID of the target subscription. + ${SubscriptionId}, + + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] + [System.String] + # The end IP address of the server firewall rule. + # Must be IPv4 format. + ${EndIPAddress}, + + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] + [System.String] + # The start IP address of the server firewall rule. + # Must be IPv4 format. + ${StartIPAddress}, + + [Parameter(ParameterSetName='ClientIPAddress', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] + [System.String] + # Client specified single IP of the server firewall rule. + # Must be IPv4 format. + ${ClientIPAddress}, + + [Parameter(ParameterSetName='AllowAll', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] + [System.Management.Automation.SwitchParameter] + # Present to allow all range IPs, from 0.0.0.0 to 255.255.255.255. + ${AllowAll}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +process { + try { + if($PSBoundParameters.ContainsKey('AllowAll')) + { + if(!$PSBoundParameters.ContainsKey('Name')) + { + $PSBoundParameters['Name'] = Get-Date -Format "AllowAll_yyyy-MM-dd_HH-mm-ss" + } + $PSBoundParameters['StartIPAddress'] = "0.0.0.0" + $PSBoundParameters['EndIPAddress'] = "255.255.255.255" + + $null = $PSBoundParameters.Remove('AllowAll') + } + elseif($PSBoundParameters.ContainsKey('ClientIPAddress')) + { + $PSBoundParameters['StartIPAddress'] = $PSBoundParameters['ClientIPAddress'] + $PSBoundParameters['EndIPAddress'] = $PSBoundParameters['ClientIPAddress'] + + if(!$PSBoundParameters.ContainsKey('Name')) + { + $PSBoundParameters['Name'] = "ClientIPAddress_" + (Get-Date -Format "yyyy-MM-dd_HH-mm-ss") + } + + $null = $PSBoundParameters.Remove('ClientIPAddress') + } + else + { + if(!$PSBoundParameters.ContainsKey('Name')) + { + $PSBoundParameters['Name'] = "undefined" + } + } + + Az.PostgreSql.internal\New-AzPostgreSqlFirewallRule @PSBoundParameters + } catch { + throw + } +} +} \ No newline at end of file diff --git a/src/PostgreSql/custom/New-AzPostgreSqlReplica.ps1 b/src/PostgreSql/custom/New-AzPostgreSqlReplica.ps1 index f0cd3ea14931..99bac188c309 100644 --- a/src/PostgreSql/custom/New-AzPostgreSqlReplica.ps1 +++ b/src/PostgreSql/custom/New-AzPostgreSqlReplica.ps1 @@ -19,10 +19,10 @@ function New-AzPostgreSqlReplica { [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Description('Creates a new replica from an existing database.')] param( [Parameter(Mandatory, HelpMessage = 'The name of the server.')] - [Alias('ReplicaServerName')] + [Alias('ReplicaServerName', 'Name')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] [System.String] - ${Name}, + ${ReplicaName}, [Parameter(Mandatory, HelpMessage = 'The name of the resource group that contains the resource, You can obtain this value from the Azure Resource Manager API or the portal.')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] @@ -36,9 +36,10 @@ function New-AzPostgreSqlReplica { ${SubscriptionId}, [Parameter(Mandatory, ValueFromPipeline, HelpMessage = 'The source server object to create replica from.')] + [Alias('InputObject')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer] - ${InputObject}, + ${Master}, [Parameter(HelpMessage = 'The location the resource resides in.')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] @@ -112,10 +113,10 @@ function New-AzPostgreSqlReplica { $Parameter.Property = [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.ServerPropertiesForReplica]::new() $Parameter.CreateMode = [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.CreateMode]::Replica - $server = $PSBoundParameters['InputObject'] + $server = $PSBoundParameters['Master'] $Parameter.Property.SourceServerId = $server.Id $Parameter.Location = $server.Location - $null = $PSBoundParameters.Remove('InputObject') + $null = $PSBoundParameters.Remove('Master') if ($PSBoundParameters.ContainsKey('Location')) { $Parameter.Location = $PSBoundParameters['Location'] @@ -127,6 +128,12 @@ function New-AzPostgreSqlReplica { $null = $PSBoundParameters.Remove('Sku') } + if ($PSBoundParameters.ContainsKey('ReplicaName')) + { + $PSBoundParameters['Name'] = $PSBoundParameters['ReplicaName'] + $null = $PSBoundParameters.Remove('ReplicaName') + } + $PSBoundParameters.Add('Parameter', $Parameter) Az.PostgreSql.internal\New-AzPostgreSqlServer @PSBoundParameters diff --git a/src/PostgreSql/custom/New-AzPostgreSqlServer.ps1 b/src/PostgreSql/custom/New-AzPostgreSqlServer.ps1 index c56c4d7c7f28..a50aac928c0c 100644 --- a/src/PostgreSql/custom/New-AzPostgreSqlServer.ps1 +++ b/src/PostgreSql/custom/New-AzPostgreSqlServer.ps1 @@ -75,6 +75,7 @@ function New-AzPostgreSqlServer { [Parameter(HelpMessage = 'Enable Storage Auto Grow.')] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.StorageAutogrow])] + [Validateset('Enabled', 'Disabled')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.StorageAutogrow] ${StorageAutogrow}, @@ -211,7 +212,7 @@ function New-AzPostgreSqlServer { $Parameter.Property.AdministratorLogin = $PSBoundParameters['AdministratorUserName'] $null = $PSBoundParameters.Remove('AdministratorUserName') - $Parameter.Property.AdministratorLoginPassword = [System.Runtime.InteropServices.marshal]::PtrToStringAuto([System.Runtime.InteropServices.marshal]::SecureStringToBSTR($PSBoundParameters['AdministratorLoginPassword'])) + $Parameter.Property.AdministratorLoginPassword = . "$PSScriptRoot/../utils/Unprotect-SecureString.ps1" $PSBoundParameters['AdministratorLoginPassword'] $null = $PSBoundParameters.Remove('AdministratorLoginPassword') $PSBoundParameters.Add('Parameter', $Parameter) diff --git a/src/PostgreSql/custom/Update-AzPostgreSqlConfiguration.ps1 b/src/PostgreSql/custom/Update-AzPostgreSqlConfiguration.ps1 new file mode 100644 index 000000000000..73ebc4615705 --- /dev/null +++ b/src/PostgreSql/custom/Update-AzPostgreSqlConfiguration.ps1 @@ -0,0 +1,143 @@ + +# ---------------------------------------------------------------------------------- +# +# 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 +Updates a configuration of a server. +Use Update-AzPostgreSqlServer instead if you want update AdministratorLoginPassword, sku, etc. +.Description +Updates a configuration of a server. +Use Update-AzPostgreSqlServer instead if you want update AdministratorLoginPassword, sku, etc. +#> +function Update-AzPostgreSqlConfiguration { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IConfiguration])] +[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Alias('ConfigurationName')] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] + [System.String] + # The name of the server configuration. + ${Name}, + + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] + [System.String] + # The name of the resource group. + # The name is case insensitive. + ${ResourceGroupName}, + + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] + [System.String] + # The name of the server. + ${ServerName}, + + [Parameter(ParameterSetName='UpdateExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # The ID of the target subscription. + ${SubscriptionId}, + + [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter(ParameterSetName='UpdateExpanded')] + [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] + [System.String] + # Source of the configuration. + ${Source}, + + [Parameter(ParameterSetName='UpdateExpanded')] + [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] + [System.String] + # Value of the configuration. + ${Value}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +process { + try { + Az.PostgreSql.internal\Update-AzPostgreSqlConfiguration @PSBoundParameters + } catch { + throw + } +} +} \ No newline at end of file diff --git a/src/PostgreSql/custom/Update-AzPostgreSqlFirewallRule.ps1 b/src/PostgreSql/custom/Update-AzPostgreSqlFirewallRule.ps1 new file mode 100644 index 000000000000..4b6dcfb82a2d --- /dev/null +++ b/src/PostgreSql/custom/Update-AzPostgreSqlFirewallRule.ps1 @@ -0,0 +1,162 @@ + +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.Synopsis +Creates a new firewall rule or updates an existing firewall rule. +.Description +Creates a new firewall rule or updates an existing firewall rule. +#> +function Update-AzPostgreSqlFirewallRule { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IFirewallRule])] +[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(ParameterSetName='ClientIPAddress', Mandatory)] + [Alias('FirewallRuleName')] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] + [System.String] + # The name of the server firewall rule. + ${Name}, + + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(ParameterSetName='ClientIPAddress', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] + [System.String] + # The name of the resource group. + # The name is case insensitive. + ${ResourceGroupName}, + + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(ParameterSetName='ClientIPAddress', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] + [System.String] + # The name of the server. + ${ServerName}, + + [Parameter(ParameterSetName='UpdateExpanded')] + [Parameter(ParameterSetName='ClientIPAddress')] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # The ID of the target subscription. + ${SubscriptionId}, + + [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] + [Parameter(ParameterSetName='ClientIPAddressViaIdentity', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] + [System.String] + # The end IP address of the server firewall rule. + # Must be IPv4 format. + ${EndIPAddress}, + + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] + [System.String] + # The start IP address of the server firewall rule. + # Must be IPv4 format. + ${StartIPAddress}, + + [Parameter(ParameterSetName='ClientIPAddress', Mandatory)] + [Parameter(ParameterSetName='ClientIPAddressViaIdentity', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] + [System.String] + # Client specified single IP of the server firewall rule. + # Must be IPv4 format. + ${ClientIPAddress}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +process { + try { + if($PSBoundParameters.ContainsKey('ClientIPAddress')) + { + $PSBoundParameters['StartIPAddress'] = $PSBoundParameters['ClientIPAddress'] + $PSBoundParameters['EndIPAddress'] = $PSBoundParameters['ClientIPAddress'] + $null = $PSBoundParameters.Remove('ClientIPAddress') + } + Az.PostgreSql.internal\Update-AzPostgreSqlFirewallRule @PSBoundParameters + } catch { + throw + } +} +} diff --git a/src/PostgreSql/custom/Update-AzPostgreSqlServer.ps1 b/src/PostgreSql/custom/Update-AzPostgreSqlServer.ps1 index 115a2e9b5ed1..d9567d61c3fc 100644 --- a/src/PostgreSql/custom/Update-AzPostgreSqlServer.ps1 +++ b/src/PostgreSql/custom/Update-AzPostgreSqlServer.ps1 @@ -13,10 +13,15 @@ # limitations under the License. # ---------------------------------------------------------------------------------- +<# +.Synopsis +Updates an existing server. The request body can contain one to many of the properties present in the normal server definition. Use Update-AzPostSqlConfiguration instead if you want update server parameters such as wait_timeout or net_retry_count. +.Description +Updates an existing server. The request body can contain one to many of the properties present in the normal server definition. Use Update-AzPostSqlConfiguration instead if you want update server parameters such as wait_timeout or net_retry_count. +#> function Update-AzPostgreSqlServer { [OutputType([Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer])] [CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] - [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Description('Updates an existing server. The request body can contain one to many of the properties present in the normal server definition.')] param( [Parameter(ParameterSetName='UpdateExpanded', Mandatory, HelpMessage='The name of the server.')] [Alias('ServerName')] @@ -84,6 +89,7 @@ function Update-AzPostgreSqlServer { [Parameter(HelpMessage='Enable Storage Auto Grow.')] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.StorageAutogrow])] + [Validateset('Enabled', 'Disabled')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.StorageAutogrow] ${StorageAutogrow}, @@ -158,7 +164,7 @@ function Update-AzPostgreSqlServer { process { try { if ($PSBoundParameters.ContainsKey('AdministratorLoginPassword')) { - $bStr = [System.Runtime.InteropServices.marshal]::SecureStringToBSTR($PSBoundParameters['AdministratorLoginPassword']) + $bStr = . "$PSScriptRoot/../utils/Unprotect-SecureString.ps1" $PSBoundParameters['AdministratorLoginPassword'] $null = $PSBoundParameters.Remove('AdministratorLoginPassword') $PSBoundParameters.Add('AdministratorLoginPassword', [System.Runtime.InteropServices.marshal]::PtrToStringAuto($bStr)) } diff --git a/src/PostgreSql/custom/readme.md b/src/PostgreSql/custom/readme.md index 187fa086a412..99c7a6ee1b64 100644 --- a/src/PostgreSql/custom/readme.md +++ b/src/PostgreSql/custom/readme.md @@ -1,5 +1,5 @@ # Custom -This directory contains custom implementation for non-generated cmdlets for the `Az.PostgreSql` module. Both scripts (`.ps1`) and C# files (`.cs`) can be implemented here. They will be used during the build process in `build-module.ps1`, and create cmdlets into the `../exports` folder. The only generated file into this folder is the `Az.PostgreSql.custom.psm1`. This file should not be modified. +This directory contains custom implementation for non-generated cmdlets for the `Az.PostgreSql` module. Both scripts (`.ps1`) and C# files (`.cs`) can be implemented here. They will be used during the build process in `build-module.ps1`, and create cmdlets into the `..\exports` folder. The only generated file into this folder is the `Az.PostgreSql.custom.psm1`. This file should not be modified. ## Info - Modifiable: yes @@ -15,10 +15,10 @@ For C# cmdlets, they are compiled with the rest of the generated low-level cmdle For script cmdlets, these are loaded via the `Az.PostgreSql.custom.psm1`. Then, during the build process, this module is loaded and processed in the same manner as the C# cmdlets. The fundemental difference is the script cmdlets use the `ParameterSetName` attribute and C# cmdlets do not. To create a script cmdlet variant of a generated cmdlet, simply decorate all parameters in the script with the new `ParameterSetName` in the `Parameter` attribute. This will appropriately treat each parameter set as a separate variant when processed to be exported during the build. ## Purpose -This allows the modules to have cmdlets that were not defined in the REST specification. It also allows combining logic using generated cmdlets. This is a level of customization beyond what can be done using the [readme configuration options](https://github.com/Azure/autorest/blob/master/docs/powershell/options.md) that are currently available. These custom cmdlets are then referenced by the cmdlets created at build-time in the `../exports` folder. +This allows the modules to have cmdlets that were not defined in the REST specification. It also allows combining logic using generated cmdlets. This is a level of customization beyond what can be done using the [readme configuration options](https://github.com/Azure/autorest/blob/master/docs/powershell/options.md) that are currently available. These custom cmdlets are then referenced by the cmdlets created at build-time in the `..\exports` folder. ## Usage -The easiest way currently to start developing custom cmdlets is to copy an existing cmdlet. For C# cmdlets, copy one from the `generated/cmdlets` folder. For script cmdlets, build the project using `build-module.ps1` and copy one of the scripts from the `../exports` folder. After that, if you want to add new parameter sets, follow the guidelines in the `Details` section above. For implementing a new cmdlets, at minimum, please keep these parameters: +The easiest way currently to start developing custom cmdlets is to copy an existing cmdlet. For C# cmdlets, copy one from the `generated/cmdlets` folder. For script cmdlets, build the project using `build-module.ps1` and copy one of the scripts from the `..\exports` folder. After that, if you want to add new parameter sets, follow the guidelines in the `Details` section above. For implementing a new cmdlets, at minimum, please keep these parameters: - Break - DefaultProfile - HttpPipelineAppend @@ -36,6 +36,6 @@ For processing the cmdlets, we've created some additional attributes: - `Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.DoNotExportAttribute` - Used in C# and script cmdlets to suppress creating an exported cmdlet at build-time. These cmdlets will *not be exposed* by `Az.PostgreSql`. - `Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.InternalExportAttribute` - - Used in C# cmdlets to route exported cmdlets to the `../internal`, which are *not exposed* by `Az.PostgreSql`. For more information, see [readme.md](../internal/readme.md) in the `../internal` folder. + - Used in C# cmdlets to route exported cmdlets to the `..\internal`, which are *not exposed* by `Az.PostgreSql`. For more information, see [readme.md](..\internal/readme.md) in the `..\internal` folder. - `Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.ProfileAttribute` - Used in C# and script cmdlets to define which Azure profiles the cmdlet supports. This is only supported for Azure (`--azure`) modules. \ No newline at end of file diff --git a/src/PostgreSql/examples/Get-AzPostgreSqlConfiguration.md b/src/PostgreSql/examples/Get-AzPostgreSqlConfiguration.md index 01f89f40021f..64a5fd787b94 100644 --- a/src/PostgreSql/examples/Get-AzPostgreSqlConfiguration.md +++ b/src/PostgreSql/examples/Get-AzPostgreSqlConfiguration.md @@ -1,4 +1,4 @@ -### Example 1: List all configurations in PostgreSql MySql server +### Example 1: List all configurations in PostgreSql server ```powershell PS C:\> Get-AzPostgreSqlConfiguration -ResourceGroupName PostgreSqlTestRG -ServerName PostgreSqlTestServer diff --git a/src/PostgreSql/examples/New-AzPostgreSqlFirewallRule.md b/src/PostgreSql/examples/New-AzPostgreSqlFirewallRule.md index d439708618b0..2bf4fcf56d98 100644 --- a/src/PostgreSql/examples/New-AzPostgreSqlFirewallRule.md +++ b/src/PostgreSql/examples/New-AzPostgreSqlFirewallRule.md @@ -9,4 +9,25 @@ rule 0.0.0.0 0.0.0.1 This cmdlets create a PostgreSql server Firewall Rule. +### Example 2: Create a new PostgreSql Firewall Rule using -ClientIPAddress. +```powershell +PS C:\> New-AzPostgreSqlFirewallRule -ResourceGroupName PostgreSqlTestRG -ServerName PostgreSqlTestServer -ClientIPAddress 0.0.0.1 + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +ClientIPAddress_2020-08-11_18-19-27 0.0.0.1 0.0.0.1 +``` + +This cmdlets create a PostgreSql Firewall Rule using -ClientIPAddress. + +### Example 3: Create a new PostgreSql Firewall Rule to allow all IPs +```powershell +PS C:\> New-AzPostgreSqlFirewallRule -ResourceGroupName PostgreSqlTestRG -ServerName PostgreSqlTestServer -AllowAll + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +AllowAll_2020-08-11_18-19-27 0.0.0.0 255.255.255.255 +``` + +This cmdlets create a new PostgreSql Firewall Rule to allow all IPs. diff --git a/src/PostgreSql/examples/New-AzPostgreSqlReplica.md b/src/PostgreSql/examples/New-AzPostgreSqlReplica.md index 651cd3dc441d..94d2388199a5 100644 --- a/src/PostgreSql/examples/New-AzPostgreSqlReplica.md +++ b/src/PostgreSql/examples/New-AzPostgreSqlReplica.md @@ -1,6 +1,18 @@ ### Example 1: Create a new PostgreSql server replica ```powershell -PS C:\> Get-AzPostgreSqlServer -ResourceGroupName PostgreSqlTestRG -ServerName PostgreSqlTestServer | New-AzPostgreSqReplica -Name PostgreSqlTestServerReplica -ResourceGroupName PostgreSqlTestRG +PS C:\> Get-AzPostgreSqlServer -ResourceGroupName PostgreSqlTestRG -ServerName PostgreSqlTestServer | New-AzPostgreSqlReplica -ReplicaName PostgreSqlTestServerReplica -ResourceGroupName PostgreSqlTestRG + +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +postgresqltestserverreplica eastus pwsh 9.6 5120 GP_Gen5_4 GeneralPurpose Enabled +``` + +This cmdlet creates a new PostgreSql server replica. + +### Example 2: Create a new PostgreSql server replica +```powershell +PS C:\> $pgDb = Get-AzPostgreSqlServer -ResourceGroupName PostgreSqlTestRG -ServerName PostgreSqlTestServer +PS C:\> New-AzPostgreSqlReplica -Master $pgDb -ReplicaName PostgreSqlTestServerReplica -ResourceGroupName PostgreSqlTestRG Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement ---- -------- ------------------ ------- ----------------------- ------- ------- -------------- diff --git a/src/PostgreSql/examples/Remove-AzPostgreSqlServer.md b/src/PostgreSql/examples/Remove-AzPostgreSqlServer.md index fd546c6471b2..44b9eee62f73 100644 --- a/src/PostgreSql/examples/Remove-AzPostgreSqlServer.md +++ b/src/PostgreSql/examples/Remove-AzPostgreSqlServer.md @@ -8,7 +8,7 @@ This cmdlet removes PostgreSql server by resourceGroup and server name. ### Example 2: Remove PostgreSql server by identity ```powershell -PS C:\> $ID = "/subscriptions//resourceGroups/PostgreSqlTestRG/providers/Microsoft.DBforMySQL/servers/PostgreSqlTestServer" +PS C:\> $ID = "/subscriptions//resourceGroups/PostgreSqlTestRG/providers/Microsoft.DBforPostgreSQL/servers/PostgreSqlTestServer" PS C:\> Remove-AzPostgreSqlServer -InputObject $ID ``` diff --git a/src/PostgreSql/examples/Update-AzPostgreSqlFirewallRule.md b/src/PostgreSql/examples/Update-AzPostgreSqlFirewallRule.md index d84097e8ac63..238f5d13bed6 100644 --- a/src/PostgreSql/examples/Update-AzPostgreSqlFirewallRule.md +++ b/src/PostgreSql/examples/Update-AzPostgreSqlFirewallRule.md @@ -19,4 +19,16 @@ Name StartIPAddress EndIPAddress rule 0.0.0.0 0.0.0.1 ``` -These cmdlets update PostgreSql Firewall Rule by identity. \ No newline at end of file +These cmdlets update PostgreSql Firewall Rule by identity. + +### Example 3: Update PostgreSql Firewall Rule by -ClientIPAddress. +```powershell +PS C:\> $ID = "/subscriptions//resourceGroups/PowershellPostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/PostgreSqlTestServer/firewallRules/rule" +PS C:\> Update-AzPostgreSqlFirewallRule -InputObject $ID --ClientIPAddress 0.0.0.2 + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +rule 0.0.0.2 0.0.0.2 +``` + +These cmdlets update PostgreSql Firewall Rule by -ClientIPAddress. \ No newline at end of file diff --git a/src/PostgreSql/export-surface.ps1 b/src/PostgreSql/export-surface.ps1 index 4640941e5152..aaccc65ee302 100644 --- a/src/PostgreSql/export-surface.ps1 +++ b/src/PostgreSql/export-surface.ps1 @@ -21,7 +21,7 @@ if(-not $Isolated) { return } -$dll = Join-Path $PSScriptRoot 'bin/Az.PostgreSql.private.dll' +$dll = Join-Path $PSScriptRoot 'bin\Az.PostgreSql.private.dll' if(-not (Test-Path $dll)) { Write-Error "Unable to find output assembly in '$binFolder'." } diff --git a/src/PostgreSql/exports/New-AzPostgreSqlFirewallRule.ps1 b/src/PostgreSql/exports/New-AzPostgreSqlFirewallRule.ps1 index b64e67935669..e723b3f72e03 100644 --- a/src/PostgreSql/exports/New-AzPostgreSqlFirewallRule.ps1 +++ b/src/PostgreSql/exports/New-AzPostgreSqlFirewallRule.ps1 @@ -24,6 +24,18 @@ PS C:\> New-AzPostgreSqlFirewallRule -Name rule -ResourceGroupName PostgreSqlTes Name StartIPAddress EndIPAddress ---- -------------- ------------ rule 0.0.0.0 0.0.0.1 +.Example +PS C:\> New-AzPostgreSqlFirewallRule -ResourceGroupName PostgreSqlTestRG -ServerName PostgreSqlTestServer -ClientIPAddress 0.0.0.1 + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +ClientIPAddress_2020-08-11_18-19-27 0.0.0.1 0.0.0.1 +.Example +PS C:\> New-AzPostgreSqlFirewallRule -ResourceGroupName PostgreSqlTestRG -ServerName PostgreSqlTestServer -AllowAll + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +AllowAll_2020-08-11_18-19-27 0.0.0.0 255.255.255.255 .Outputs Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IFirewallRule @@ -34,13 +46,6 @@ function New-AzPostgreSqlFirewallRule { [OutputType([Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IFirewallRule])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( - [Parameter(Mandatory)] - [Alias('FirewallRuleName')] - [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] - [System.String] - # The name of the server firewall rule. - ${Name}, - [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] [System.String] @@ -54,6 +59,13 @@ param( # The name of the server. ${ServerName}, + [Parameter()] + [Alias('FirewallRuleName')] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] + [System.String] + # The name of the server firewall rule. + ${Name}, + [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] @@ -61,20 +73,33 @@ param( # The ID of the target subscription. ${SubscriptionId}, - [Parameter(Mandatory)] + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] [System.String] # The end IP address of the server firewall rule. # Must be IPv4 format. ${EndIPAddress}, - [Parameter(Mandatory)] + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] [System.String] # The start IP address of the server firewall rule. # Must be IPv4 format. ${StartIPAddress}, + [Parameter(ParameterSetName='ClientIPAddress', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] + [System.String] + # Client specified single IP of the server firewall rule. + # Must be IPv4 format. + ${ClientIPAddress}, + + [Parameter(ParameterSetName='AllowAll', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] + [System.Management.Automation.SwitchParameter] + # Present to allow all range IPs, from 0.0.0.0 to 255.255.255.255. + ${AllowAll}, + [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] @@ -143,9 +168,11 @@ begin { } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ - CreateExpanded = 'Az.PostgreSql.private\New-AzPostgreSqlFirewallRule_CreateExpanded'; + CreateExpanded = 'Az.PostgreSql.custom\New-AzPostgreSqlFirewallRule'; + ClientIPAddress = 'Az.PostgreSql.custom\New-AzPostgreSqlFirewallRule'; + AllowAll = 'Az.PostgreSql.custom\New-AzPostgreSqlFirewallRule'; } - if (('CreateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + if (('CreateExpanded', 'ClientIPAddress', 'AllowAll') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) diff --git a/src/PostgreSql/exports/New-AzPostgreSqlReplica.ps1 b/src/PostgreSql/exports/New-AzPostgreSqlReplica.ps1 index f26d44beb37a..6be59d7c0d8f 100644 --- a/src/PostgreSql/exports/New-AzPostgreSqlReplica.ps1 +++ b/src/PostgreSql/exports/New-AzPostgreSqlReplica.ps1 @@ -19,7 +19,14 @@ Creates a new replica from an existing database. .Description Creates a new replica from an existing database. .Example -PS C:\> Get-AzPostgreSqlServer -ResourceGroupName PostgreSqlTestRG -ServerName PostgreSqlTestServer | New-AzPostgreSqReplica -Name PostgreSqlTestServerReplica -ResourceGroupName PostgreSqlTestRG +PS C:\> Get-AzPostgreSqlServer -ResourceGroupName PostgreSqlTestRG -ServerName PostgreSqlTestServer | New-AzPostgreSqlReplica -ReplicaName PostgreSqlTestServerReplica -ResourceGroupName PostgreSqlTestRG + +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +postgresqltestserverreplica eastus pwsh 9.6 5120 GP_Gen5_4 GeneralPurpose Enabled +.Example +PS C:\> $pgDb = Get-AzPostgreSqlServer -ResourceGroupName PostgreSqlTestRG -ServerName PostgreSqlTestServer +PS C:\> New-AzPostgreSqlReplica -Master $pgDb -ReplicaName PostgreSqlTestServerReplica -ResourceGroupName PostgreSqlTestRG Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement ---- -------- ------------------ ------- ----------------------- ------- ------- -------------- @@ -34,7 +41,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : The source server object to create replica from. +MASTER : The source server object to create replica from. Location : The location the resource resides in. [Tag ]: Application-specific metadata in the form of key-value pairs. [(Any) ]: This indicates any property can be added to this object. @@ -68,11 +75,11 @@ function New-AzPostgreSqlReplica { [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] - [Alias('ReplicaServerName')] + [Alias('ReplicaServerName', 'Name')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] [System.String] # The name of the server. - ${Name}, + ${ReplicaName}, [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] @@ -88,11 +95,12 @@ param( ${SubscriptionId}, [Parameter(Mandatory, ValueFromPipeline)] + [Alias('InputObject')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer] # The source server object to create replica from. - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, + # To construct, see NOTES section for MASTER properties and create a hash table. + ${Master}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] diff --git a/src/PostgreSql/exports/ProxyCmdletDefinitions.ps1 b/src/PostgreSql/exports/ProxyCmdletDefinitions.ps1 index 7898711a38ac..610d3e51c00a 100644 --- a/src/PostgreSql/exports/ProxyCmdletDefinitions.ps1 +++ b/src/PostgreSql/exports/ProxyCmdletDefinitions.ps1 @@ -933,181 +933,6 @@ end { # limitations under the License. # ---------------------------------------------------------------------------------- -<# -.Synopsis -Creates a new firewall rule or updates an existing firewall rule. -.Description -Creates a new firewall rule or updates an existing firewall rule. -.Example -PS C:\> New-AzPostgreSqlFirewallRule -Name rule -ResourceGroupName PostgreSqlTestRG -ServerName PostgreSqlTestServer -EndIPAddress 0.0.0.1 -StartIPAddress 0.0.0.0 - -Name StartIPAddress EndIPAddress ----- -------------- ------------ -rule 0.0.0.0 0.0.0.1 - -.Outputs -Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IFirewallRule -.Link -https://docs.microsoft.com/en-us/powershell/module/az.postgresql/new-azpostgresqlfirewallrule -#> -function New-AzPostgreSqlFirewallRule { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IFirewallRule])] -[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Mandatory)] - [Alias('FirewallRuleName')] - [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] - [System.String] - # The name of the server firewall rule. - ${Name}, - - [Parameter(Mandatory)] - [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] - [System.String] - # The name of the resource group. - # The name is case insensitive. - ${ResourceGroupName}, - - [Parameter(Mandatory)] - [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] - [System.String] - # The name of the server. - ${ServerName}, - - [Parameter()] - [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] - [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] - [System.String] - # The ID of the target subscription. - ${SubscriptionId}, - - [Parameter(Mandatory)] - [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] - [System.String] - # The end IP address of the server firewall rule. - # Must be IPv4 format. - ${EndIPAddress}, - - [Parameter(Mandatory)] - [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] - [System.String] - # The start IP address of the server firewall rule. - # Must be IPv4 format. - ${StartIPAddress}, - - [Parameter()] - [Alias('AzureRMContext', 'AzureCredential')] - [ValidateNotNull()] - [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Azure')] - [System.Management.Automation.PSObject] - # The credentials, account, tenant, and subscription used for communication with Azure. - ${DefaultProfile}, - - [Parameter()] - [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Run the command as a job - ${AsJob}, - - [Parameter(DontShow)] - [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] - [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] - [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Run the command asynchronously - ${NoWait}, - - [Parameter(DontShow)] - [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - $mapping = @{ - CreateExpanded = 'Az.PostgreSql.private\New-AzPostgreSqlFirewallRule_CreateExpanded'; - } - if (('CreateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { - $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id - } - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - throw - } -} - -end { - try { - $steppablePipeline.End() - } catch { - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - <# .Synopsis Creates or updates an existing virtual network rule. @@ -1491,7 +1316,7 @@ Deletes a server. PS C:\> Remove-AzPostgreSqlServer -ResourceGroupName PostgreSqlTestRG -Name PostgreSqlTestServer .Example -PS C:\> $ID = "/subscriptions//resourceGroups/PostgreSqlTestRG/providers/Microsoft.DBforMySQL/servers/PostgreSqlTestServer" +PS C:\> $ID = "/subscriptions//resourceGroups/PostgreSqlTestRG/providers/Microsoft.DBforPostgreSQL/servers/PostgreSqlTestServer" PS C:\> Remove-AzPostgreSqlServer -InputObject $ID @@ -2054,27 +1879,29 @@ end { <# .Synopsis -Updates a configuration of a server. +Creates or updates an existing virtual network rule. .Description -Updates a configuration of a server. +Creates or updates an existing virtual network rule. .Example -PS C:\> Update-AzPostgreSqlConfiguration -Name intervalstyle -ResourceGroupName PostgreSqlTestRG -ServerName PostgreSqlTestServer -Value SQL_STANDARD +PS C:\> $ID = "/subscriptions//resourceGroups/PostgreSqlTestRG/providers/Microsoft.Network/virtualNetworks/PostgreSqlVNet/subnets/default2" +PS C:\> Update-AzPostgreSqlVirtualNetworkRule -Name vnet -ResourceGroupName PostgreSqlTestRG -ServerName PostgreSqlTestServer -SubnetId $ID -Name Value ----- ----- -intervalstyle SQL_STANDARD +Name Type +---- ---- +vnet Microsoft.DBforPostgreSQL/servers/virtualNetworkRules .Example -PS C:\> $ID = "/subscriptions//resourceGroups/PostgreSqlTestRG/providers/Microsoft.DBforPostgreSQL/servers/PostgreSqlTestServer/configurations/deadlock_timeout" -PS C:\> Update-AzPostgreSqlConfiguration -InputObject $ID -Value 2000 +PS C:\> $SubnetID = "/subscriptions//resourceGroups/PostgreSqlTestRG/providers/Microsoft.Network/virtualNetworks/PostgreSqlVNet/subnets/default" +PS C:\> $VNetID = "/subscriptions//resourceGroups/PostgreSqlTestRG/providers/Microsoft.DBforPostgreSQL/servers/PostgreSqlTestServer/virtualNetworkRules/vnet" +PS C:\> Update-AzPostgreSqlVirtualNetworkRule -InputObject $VNetID -SubnetId $SubnetID -Name Value ----- ----- -deadlock_timeout 2000 +Name Type +---- ---- +vnet Microsoft.DBforPostgreSQL/servers/virtualNetworkRules .Inputs Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IConfiguration +Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IVirtualNetworkRule .Notes COMPLEX PARAMETER PROPERTIES @@ -2092,17 +1919,17 @@ INPUTOBJECT : Identity Parameter [SubscriptionId ]: The ID of the target subscription. [VirtualNetworkRuleName ]: The name of the virtual network rule. .Link -https://docs.microsoft.com/en-us/powershell/module/az.postgresql/update-azpostgresqlconfiguration +https://docs.microsoft.com/en-us/powershell/module/az.postgresql/update-azpostgresqlvirtualnetworkrule #> -function Update-AzPostgreSqlConfiguration { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IConfiguration])] +function Update-AzPostgreSqlVirtualNetworkRule { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IVirtualNetworkRule])] [CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] - [Alias('ConfigurationName')] + [Alias('VirtualNetworkRuleName')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] [System.String] - # The name of the server configuration. + # The name of the virtual network rule. ${Name}, [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] @@ -2132,17 +1959,17 @@ param( # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, - [Parameter()] + [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] [System.String] - # Source of the configuration. - ${Source}, + # The ARM resource id of the virtual network subnet. + ${SubnetId}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] - [System.String] - # Value of the configuration. - ${Value}, + [System.Management.Automation.SwitchParameter] + # Create firewall rule before the virtual network has vnet service endpoint enabled. + ${IgnoreMissingVnetServiceEndpoint}, [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] @@ -2184,6 +2011,12 @@ param( # Run the command asynchronously ${NoWait}, + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Returns true when the command succeeds + ${PassThru}, + [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] [System.Uri] @@ -2212,8 +2045,8 @@ begin { } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ - UpdateExpanded = 'Az.PostgreSql.private\Update-AzPostgreSqlConfiguration_UpdateExpanded'; - UpdateViaIdentityExpanded = 'Az.PostgreSql.private\Update-AzPostgreSqlConfiguration_UpdateViaIdentityExpanded'; + UpdateExpanded = 'Az.PostgreSql.private\Update-AzPostgreSqlVirtualNetworkRule_UpdateExpanded'; + UpdateViaIdentityExpanded = 'Az.PostgreSql.private\Update-AzPostgreSqlVirtualNetworkRule_UpdateViaIdentityExpanded'; } if (('UpdateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id @@ -2260,98 +2093,93 @@ end { <# .Synopsis -Creates a new firewall rule or updates an existing firewall rule. +Get the connection string according to client connection provider. .Description -Creates a new firewall rule or updates an existing firewall rule. +Get the connection string according to client connection provider. .Example -PS C:\> Update-AzPostgreSqlFirewallRule -Name rule -ResourceGroupName PostgreSqlTestRG -ServerName PostgreSqlTestServer -EndIPAddress 0.0.0.3 -StartIPAddress 0.0.0.2 +PS C:\> Get-AzPostgreSqlConnectionString -Client ADO.NET -Name PostgreSqlTestServer -ResourceGroupName PostgreSqlTestRG -Name StartIPAddress EndIPAddress ----- -------------- ------------ -rule 0.0.0.2 0.0.0.3 +Server=postgresqltestserver.postgres.database.azure.com;Database={your_database};Port=5432;User Id=pwsh@postgresqltestserver;Password={your_password};Ssl Mode=Require; .Example -PS C:\> $ID = "/subscriptions//resourceGroups/PostgreSqlTestRG/providers/Microsoft.DBforPostgreSQL/servers/PostgreSqlTestServer/firewallRules/rule" -PS C:\> Update-AzPostgreSqlFirewallRule -InputObject $ID -EndIPAddress 0.0.0.1 -StartIPAddress 0.0.0.0 +PS C:\> Get-AzPostgreSqlServer -ResourceGroupName PostgreSqlTestRG -ServerName PostgreSqlTestServer | Get-AzPostgreSqlConnectionString -Client PHP -Name StartIPAddress EndIPAddress ----- -------------- ------------ -rule 0.0.0.0 0.0.0.1 +host=postgresqltestserver.postgres.database.azure.com port=5432 dbname={your_database} user=pwsh@postgresqltestserver password={your_password} sslmode=require .Inputs -Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity +Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer .Outputs -Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IFirewallRule +System.String .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter - [ConfigurationName ]: The name of the server configuration. - [DatabaseName ]: The name of the database. - [FirewallRuleName ]: The name of the server firewall rule. - [Id ]: Resource identity path - [LocationName ]: The name of the location. - [ResourceGroupName ]: The name of the resource group. The name is case insensitive. - [SecurityAlertPolicyName ]: The name of the security alert policy. - [ServerName ]: The name of the server. - [SubscriptionId ]: The ID of the target subscription. - [VirtualNetworkRuleName ]: The name of the virtual network rule. +INPUTOBJECT : The source server object to create replica from. + Location : The location the resource resides in. + [Tag ]: Application-specific metadata in the form of key-value pairs. + [(Any) ]: This indicates any property can be added to this object. + [AdministratorLogin ]: The administrator's login name of a server. Can only be specified when the server is being created (and is required for creation). + [EarliestRestoreDate ]: Earliest restore point creation time (ISO8601 format) + [FullyQualifiedDomainName ]: The fully qualified domain name of a server. + [IdentityType ]: The identity type. Set this to 'SystemAssigned' in order to automatically create and assign an Azure Active Directory principal for the resource. + [InfrastructureEncryption ]: Status showing whether the server enabled infrastructure encryption. + [MasterServerId ]: The master server id of a replica server. + [MinimalTlsVersion ]: Enforce a minimal Tls version for the server. + [PublicNetworkAccess ]: Whether or not public network access is allowed for this server. Value is optional but if passed in, must be 'Enabled' or 'Disabled' + [ReplicaCapacity ]: The maximum number of replicas that a master server can have. + [ReplicationRole ]: The replication role of the server. + [SkuCapacity ]: The scale up/out capacity, representing server's compute units. + [SkuFamily ]: The family of hardware. + [SkuName ]: The name of the sku, typically, tier + family + cores, e.g. B_Gen4_1, GP_Gen5_8. + [SkuSize ]: The size code, to be interpreted by resource as appropriate. + [SkuTier ]: The tier of the particular SKU, e.g. Basic. + [SslEnforcement ]: Enable ssl enforcement or not when connect to server. + [StorageProfileBackupRetentionDay ]: Backup retention days for the server. + [StorageProfileGeoRedundantBackup ]: Enable Geo-redundant or not for server backup. + [StorageProfileStorageAutogrow ]: Enable Storage Auto Grow. + [StorageProfileStorageMb ]: Max storage allowed for a server. + [UserVisibleState ]: A state of a server that is visible to user. + [Version ]: Server version. .Link -https://docs.microsoft.com/en-us/powershell/module/az.postgresql/update-azpostgresqlfirewallrule +https://docs.microsoft.com/en-us/powershell/module/az.postgresql/get-azpostgresqlconnectionstring #> -function Update-AzPostgreSqlFirewallRule { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IFirewallRule])] -[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +function Get-AzPostgreSqlConnectionString { +[OutputType([System.String])] +[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] param( - [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] - [Alias('FirewallRuleName')] + [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] [System.String] - # The name of the server firewall rule. - ${Name}, + # Client connection provider. + ${Client}, - [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(ParameterSetName='Get', Mandatory)] + [Alias('ServerName')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] [System.String] - # The name of the resource group. - # The name is case insensitive. - ${ResourceGroupName}, + # The name of the server. + ${Name}, - [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(ParameterSetName='Get', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] [System.String] - # The name of the server. - ${ServerName}, + # The name of the resource group that contains the resource, You can obtain this value from the Azure Resource Manager API or the portal. + ${ResourceGroupName}, - [Parameter(ParameterSetName='UpdateExpanded')] + [Parameter(ParameterSetName='Get')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] - # The ID of the target subscription. + # The subscription ID that identifies an Azure subscription. ${SubscriptionId}, - [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] - [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity] - # Identity Parameter + [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer] + # The source server object to create replica from. # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, - [Parameter(Mandatory)] - [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] - [System.String] - # The end IP address of the server firewall rule. - # Must be IPv4 format. - ${EndIPAddress}, - - [Parameter(Mandatory)] - [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] - [System.String] - # The start IP address of the server firewall rule. - # Must be IPv4 format. - ${StartIPAddress}, - [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] @@ -2360,55 +2188,38 @@ param( # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, - [Parameter()] - [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Run the command as a job - ${AsJob}, - [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach + # Wait for .NET debugger to attach. ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, - [Parameter()] - [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Run the command asynchronously - ${NoWait}, - [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] [System.Uri] - # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) @@ -2420,10 +2231,10 @@ begin { } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ - UpdateExpanded = 'Az.PostgreSql.private\Update-AzPostgreSqlFirewallRule_UpdateExpanded'; - UpdateViaIdentityExpanded = 'Az.PostgreSql.private\Update-AzPostgreSqlFirewallRule_UpdateViaIdentityExpanded'; + Get = 'Az.PostgreSql.custom\Get-AzPostgreSqlConnectionString'; + GetViaIdentity = 'Az.PostgreSql.custom\Get-AzPostgreSqlConnectionString'; } - if (('UpdateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + if (('Get') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) @@ -2468,97 +2279,90 @@ end { <# .Synopsis -Creates or updates an existing virtual network rule. +Creates a new firewall rule or updates an existing firewall rule. .Description -Creates or updates an existing virtual network rule. +Creates a new firewall rule or updates an existing firewall rule. .Example -PS C:\> $ID = "/subscriptions//resourceGroups/PostgreSqlTestRG/providers/Microsoft.Network/virtualNetworks/PostgreSqlVNet/subnets/default2" -PS C:\> Update-AzPostgreSqlVirtualNetworkRule -Name vnet -ResourceGroupName PostgreSqlTestRG -ServerName PostgreSqlTestServer -SubnetId $ID +PS C:\> New-AzPostgreSqlFirewallRule -Name rule -ResourceGroupName PostgreSqlTestRG -ServerName PostgreSqlTestServer -EndIPAddress 0.0.0.1 -StartIPAddress 0.0.0.0 -Name Type ----- ---- -vnet Microsoft.DBforPostgreSQL/servers/virtualNetworkRules +Name StartIPAddress EndIPAddress +---- -------------- ------------ +rule 0.0.0.0 0.0.0.1 .Example -PS C:\> $SubnetID = "/subscriptions//resourceGroups/PostgreSqlTestRG/providers/Microsoft.Network/virtualNetworks/PostgreSqlVNet/subnets/default" -PS C:\> $VNetID = "/subscriptions//resourceGroups/PostgreSqlTestRG/providers/Microsoft.DBforPostgreSQL/servers/PostgreSqlTestServer/virtualNetworkRules/vnet" -PS C:\> Update-AzPostgreSqlVirtualNetworkRule -InputObject $VNetID -SubnetId $SubnetID - -Name Type ----- ---- -vnet Microsoft.DBforPostgreSQL/servers/virtualNetworkRules +PS C:\> New-AzPostgreSqlFirewallRule -ResourceGroupName PostgreSqlTestRG -ServerName PostgreSqlTestServer -ClientIPAddress 0.0.0.1 -.Inputs -Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity -.Outputs -Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IVirtualNetworkRule -.Notes -COMPLEX PARAMETER PROPERTIES +Name StartIPAddress EndIPAddress +---- -------------- ------------ +ClientIPAddress_2020-08-11_18-19-27 0.0.0.1 0.0.0.1 +.Example +PS C:\> New-AzPostgreSqlFirewallRule -ResourceGroupName PostgreSqlTestRG -ServerName PostgreSqlTestServer -AllowAll -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. +Name StartIPAddress EndIPAddress +---- -------------- ------------ +AllowAll_2020-08-11_18-19-27 0.0.0.0 255.255.255.255 -INPUTOBJECT : Identity Parameter - [ConfigurationName ]: The name of the server configuration. - [DatabaseName ]: The name of the database. - [FirewallRuleName ]: The name of the server firewall rule. - [Id ]: Resource identity path - [LocationName ]: The name of the location. - [ResourceGroupName ]: The name of the resource group. The name is case insensitive. - [SecurityAlertPolicyName ]: The name of the security alert policy. - [ServerName ]: The name of the server. - [SubscriptionId ]: The ID of the target subscription. - [VirtualNetworkRuleName ]: The name of the virtual network rule. +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IFirewallRule .Link -https://docs.microsoft.com/en-us/powershell/module/az.postgresql/update-azpostgresqlvirtualnetworkrule +https://docs.microsoft.com/en-us/powershell/module/az.postgresql/new-azpostgresqlfirewallrule #> -function Update-AzPostgreSqlVirtualNetworkRule { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IVirtualNetworkRule])] -[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +function New-AzPostgreSqlFirewallRule { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IFirewallRule])] +[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( - [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] - [Alias('VirtualNetworkRuleName')] - [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] - [System.String] - # The name of the virtual network rule. - ${Name}, - - [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] [System.String] # The name of the resource group. # The name is case insensitive. ${ResourceGroupName}, - [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] [System.String] # The name of the server. ${ServerName}, - [Parameter(ParameterSetName='UpdateExpanded')] + [Parameter()] + [Alias('FirewallRuleName')] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] + [System.String] + # The name of the server firewall rule. + ${Name}, + + [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] # The ID of the target subscription. ${SubscriptionId}, - [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] - [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] + [System.String] + # The end IP address of the server firewall rule. + # Must be IPv4 format. + ${EndIPAddress}, - [Parameter(Mandatory)] + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] [System.String] - # The ARM resource id of the virtual network subnet. - ${SubnetId}, + # The start IP address of the server firewall rule. + # Must be IPv4 format. + ${StartIPAddress}, - [Parameter()] + [Parameter(ParameterSetName='ClientIPAddress', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] + [System.String] + # Client specified single IP of the server firewall rule. + # Must be IPv4 format. + ${ClientIPAddress}, + + [Parameter(ParameterSetName='AllowAll', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] [System.Management.Automation.SwitchParameter] - # Create firewall rule before the virtual network has vnet service endpoint enabled. - ${IgnoreMissingVnetServiceEndpoint}, + # Present to allow all range IPs, from 0.0.0.0 to 255.255.255.255. + ${AllowAll}, [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] @@ -2600,12 +2404,6 @@ param( # Run the command asynchronously ${NoWait}, - [Parameter()] - [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] [System.Uri] @@ -2634,10 +2432,11 @@ begin { } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ - UpdateExpanded = 'Az.PostgreSql.private\Update-AzPostgreSqlVirtualNetworkRule_UpdateExpanded'; - UpdateViaIdentityExpanded = 'Az.PostgreSql.private\Update-AzPostgreSqlVirtualNetworkRule_UpdateViaIdentityExpanded'; + CreateExpanded = 'Az.PostgreSql.custom\New-AzPostgreSqlFirewallRule'; + ClientIPAddress = 'Az.PostgreSql.custom\New-AzPostgreSqlFirewallRule'; + AllowAll = 'Az.PostgreSql.custom\New-AzPostgreSqlFirewallRule'; } - if (('UpdateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + if (('CreateExpanded', 'ClientIPAddress', 'AllowAll') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) @@ -2682,28 +2481,33 @@ end { <# .Synopsis -Get the connection string according to client connection provider. +Creates a new replica from an existing database. .Description -Get the connection string according to client connection provider. +Creates a new replica from an existing database. .Example -PS C:\> Get-AzPostgreSqlConnectionString -Client ADO.NET -Name PostgreSqlTestServer -ResourceGroupName PostgreSqlTestRG +PS C:\> Get-AzPostgreSqlServer -ResourceGroupName PostgreSqlTestRG -ServerName PostgreSqlTestServer | New-AzPostgreSqlReplica -ReplicaName PostgreSqlTestServerReplica -ResourceGroupName PostgreSqlTestRG -Server=postgresqltestserver.postgres.database.azure.com;Database={your_database};Port=5432;User Id=pwsh@postgresqltestserver;Password={your_password};Ssl Mode=Require; +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +postgresqltestserverreplica eastus pwsh 9.6 5120 GP_Gen5_4 GeneralPurpose Enabled .Example -PS C:\> Get-AzPostgreSqlServer -ResourceGroupName PostgreSqlTestRG -ServerName PostgreSqlTestServer | Get-AzPostgreSqlConnectionString -Client PHP +PS C:\> $pgDb = Get-AzPostgreSqlServer -ResourceGroupName PostgreSqlTestRG -ServerName PostgreSqlTestServer +PS C:\> New-AzPostgreSqlReplica -Master $pgDb -ReplicaName PostgreSqlTestServerReplica -ResourceGroupName PostgreSqlTestRG -host=postgresqltestserver.postgres.database.azure.com port=5432 dbname={your_database} user=pwsh@postgresqltestserver password={your_password} sslmode=require +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +postgresqltestserverreplica eastus pwsh 9.6 5120 GP_Gen5_4 GeneralPurpose Enabled .Inputs Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer .Outputs -System.String +Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : The source server object to create replica from. +MASTER : The source server object to create replica from. Location : The location the resource resides in. [Tag ]: Application-specific metadata in the form of key-value pairs. [(Any) ]: This indicates any property can be added to this object. @@ -2730,222 +2534,39 @@ INPUTOBJECT : The source server object to create replica from. [UserVisibleState ]: A state of a server that is visible to user. [Version ]: Server version. .Link -https://docs.microsoft.com/en-us/powershell/module/az.postgresql/get-azpostgresqlconnectionstring +https://docs.microsoft.com/en-us/powershell/module/az.postgresql/new-azpostgresqlreplica #> -function Get-AzPostgreSqlConnectionString { -[OutputType([System.String])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] +function New-AzPostgreSqlReplica { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer])] +[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] - [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] - [System.String] - # Client connection provider. - ${Client}, - - [Parameter(ParameterSetName='Get', Mandatory)] - [Alias('ServerName')] + [Alias('ReplicaServerName', 'Name')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] [System.String] # The name of the server. - ${Name}, + ${ReplicaName}, - [Parameter(ParameterSetName='Get', Mandatory)] + [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] [System.String] # The name of the resource group that contains the resource, You can obtain this value from the Azure Resource Manager API or the portal. ${ResourceGroupName}, - [Parameter(ParameterSetName='Get')] + [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] # The subscription ID that identifies an Azure subscription. ${SubscriptionId}, - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] + [Parameter(Mandatory, ValueFromPipeline)] + [Alias('InputObject')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer] # The source server object to create replica from. - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter()] - [Alias('AzureRMContext', 'AzureCredential')] - [ValidateNotNull()] - [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Azure')] - [System.Management.Automation.PSObject] - # The credentials, account, tenant, and subscription used for communication with Azure. - ${DefaultProfile}, - - [Parameter(DontShow)] - [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach. - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] - [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]] - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] - [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]] - ${HttpPipelinePrepend}, - - [Parameter(DontShow)] - [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] - [System.Uri] - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] - [System.Management.Automation.PSCredential] - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - $mapping = @{ - Get = 'Az.PostgreSql.custom\Get-AzPostgreSqlConnectionString'; - GetViaIdentity = 'Az.PostgreSql.custom\Get-AzPostgreSqlConnectionString'; - } - if (('Get') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { - $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id - } - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - throw - } -} - -end { - try { - $steppablePipeline.End() - } catch { - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -<# -.Synopsis -Creates a new replica from an existing database. -.Description -Creates a new replica from an existing database. -.Example -PS C:\> Get-AzPostgreSqlServer -ResourceGroupName PostgreSqlTestRG -ServerName PostgreSqlTestServer | New-AzPostgreSqReplica -Name PostgreSqlTestServerReplica -ResourceGroupName PostgreSqlTestRG - -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- -------------- -postgresqltestserverreplica eastus pwsh 9.6 5120 GP_Gen5_4 GeneralPurpose Enabled - -.Inputs -Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer -.Outputs -Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer -.Notes -COMPLEX PARAMETER PROPERTIES - -To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. - -INPUTOBJECT : The source server object to create replica from. - Location : The location the resource resides in. - [Tag ]: Application-specific metadata in the form of key-value pairs. - [(Any) ]: This indicates any property can be added to this object. - [AdministratorLogin ]: The administrator's login name of a server. Can only be specified when the server is being created (and is required for creation). - [EarliestRestoreDate ]: Earliest restore point creation time (ISO8601 format) - [FullyQualifiedDomainName ]: The fully qualified domain name of a server. - [IdentityType ]: The identity type. Set this to 'SystemAssigned' in order to automatically create and assign an Azure Active Directory principal for the resource. - [InfrastructureEncryption ]: Status showing whether the server enabled infrastructure encryption. - [MasterServerId ]: The master server id of a replica server. - [MinimalTlsVersion ]: Enforce a minimal Tls version for the server. - [PublicNetworkAccess ]: Whether or not public network access is allowed for this server. Value is optional but if passed in, must be 'Enabled' or 'Disabled' - [ReplicaCapacity ]: The maximum number of replicas that a master server can have. - [ReplicationRole ]: The replication role of the server. - [SkuCapacity ]: The scale up/out capacity, representing server's compute units. - [SkuFamily ]: The family of hardware. - [SkuName ]: The name of the sku, typically, tier + family + cores, e.g. B_Gen4_1, GP_Gen5_8. - [SkuSize ]: The size code, to be interpreted by resource as appropriate. - [SkuTier ]: The tier of the particular SKU, e.g. Basic. - [SslEnforcement ]: Enable ssl enforcement or not when connect to server. - [StorageProfileBackupRetentionDay ]: Backup retention days for the server. - [StorageProfileGeoRedundantBackup ]: Enable Geo-redundant or not for server backup. - [StorageProfileStorageAutogrow ]: Enable Storage Auto Grow. - [StorageProfileStorageMb ]: Max storage allowed for a server. - [UserVisibleState ]: A state of a server that is visible to user. - [Version ]: Server version. -.Link -https://docs.microsoft.com/en-us/powershell/module/az.postgresql/new-azpostgresqlreplica -#> -function New-AzPostgreSqlReplica { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer])] -[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Mandatory)] - [Alias('ReplicaServerName')] - [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] - [System.String] - # The name of the server. - ${Name}, - - [Parameter(Mandatory)] - [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] - [System.String] - # The name of the resource group that contains the resource, You can obtain this value from the Azure Resource Manager API or the portal. - ${ResourceGroupName}, - - [Parameter()] - [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] - [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] - [System.String] - # The subscription ID that identifies an Azure subscription. - ${SubscriptionId}, - - [Parameter(Mandatory, ValueFromPipeline)] - [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer] - # The source server object to create replica from. - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, + # To construct, see NOTES section for MASTER properties and create a hash table. + ${Master}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] @@ -3525,13 +3146,455 @@ end { # limitations under the License. # ---------------------------------------------------------------------------------- +<# +.Synopsis +Updates a configuration of a server. +Use Update-AzPostgreSqlServer instead if you want update AdministratorLoginPassword, sku, etc. +.Description +Updates a configuration of a server. +Use Update-AzPostgreSqlServer instead if you want update AdministratorLoginPassword, sku, etc. +.Example +PS C:\> Update-AzPostgreSqlConfiguration -Name intervalstyle -ResourceGroupName PostgreSqlTestRG -ServerName PostgreSqlTestServer -Value SQL_STANDARD + +Name Value +---- ----- +intervalstyle SQL_STANDARD +.Example +PS C:\> $ID = "/subscriptions//resourceGroups/PostgreSqlTestRG/providers/Microsoft.DBforPostgreSQL/servers/PostgreSqlTestServer/configurations/deadlock_timeout" +PS C:\> Update-AzPostgreSqlConfiguration -InputObject $ID -Value 2000 + +Name Value +---- ----- +deadlock_timeout 2000 + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IConfiguration +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ConfigurationName ]: The name of the server configuration. + [DatabaseName ]: The name of the database. + [FirewallRuleName ]: The name of the server firewall rule. + [Id ]: Resource identity path + [LocationName ]: The name of the location. + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. + [SecurityAlertPolicyName ]: The name of the security alert policy. + [ServerName ]: The name of the server. + [SubscriptionId ]: The ID of the target subscription. + [VirtualNetworkRuleName ]: The name of the virtual network rule. +.Link +https://docs.microsoft.com/en-us/powershell/module/az.postgresql/update-azpostgresqlconfiguration +#> +function Update-AzPostgreSqlConfiguration { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IConfiguration])] +[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Alias('ConfigurationName')] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] + [System.String] + # The name of the server configuration. + ${Name}, + + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] + [System.String] + # The name of the resource group. + # The name is case insensitive. + ${ResourceGroupName}, + + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] + [System.String] + # The name of the server. + ${ServerName}, + + [Parameter(ParameterSetName='UpdateExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # The ID of the target subscription. + ${SubscriptionId}, + + [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] + [System.String] + # Source of the configuration. + ${Source}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] + [System.String] + # Value of the configuration. + ${Value}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + UpdateExpanded = 'Az.PostgreSql.custom\Update-AzPostgreSqlConfiguration'; + UpdateViaIdentityExpanded = 'Az.PostgreSql.custom\Update-AzPostgreSqlConfiguration'; + } + if (('UpdateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} + +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.Synopsis +Creates a new firewall rule or updates an existing firewall rule. +.Description +Creates a new firewall rule or updates an existing firewall rule. +.Example +PS C:\> Update-AzPostgreSqlFirewallRule -Name rule -ResourceGroupName PostgreSqlTestRG -ServerName PostgreSqlTestServer -EndIPAddress 0.0.0.3 -StartIPAddress 0.0.0.2 + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +rule 0.0.0.2 0.0.0.3 +.Example +PS C:\> $ID = "/subscriptions//resourceGroups/PostgreSqlTestRG/providers/Microsoft.DBforPostgreSQL/servers/PostgreSqlTestServer/firewallRules/rule" +PS C:\> Update-AzPostgreSqlFirewallRule -InputObject $ID -EndIPAddress 0.0.0.1 -StartIPAddress 0.0.0.0 + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +rule 0.0.0.0 0.0.0.1 +.Example +PS C:\> $ID = "/subscriptions//resourceGroups/PowershellPostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/PostgreSqlTestServer/firewallRules/rule" +PS C:\> Update-AzPostgreSqlFirewallRule -InputObject $ID --ClientIPAddress 0.0.0.2 + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +rule 0.0.0.2 0.0.0.2 + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IFirewallRule +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ConfigurationName ]: The name of the server configuration. + [DatabaseName ]: The name of the database. + [FirewallRuleName ]: The name of the server firewall rule. + [Id ]: Resource identity path + [LocationName ]: The name of the location. + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. + [SecurityAlertPolicyName ]: The name of the security alert policy. + [ServerName ]: The name of the server. + [SubscriptionId ]: The ID of the target subscription. + [VirtualNetworkRuleName ]: The name of the virtual network rule. +.Link +https://docs.microsoft.com/en-us/powershell/module/az.postgresql/update-azpostgresqlfirewallrule +#> +function Update-AzPostgreSqlFirewallRule { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IFirewallRule])] +[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(ParameterSetName='ClientIPAddress', Mandatory)] + [Alias('FirewallRuleName')] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] + [System.String] + # The name of the server firewall rule. + ${Name}, + + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(ParameterSetName='ClientIPAddress', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] + [System.String] + # The name of the resource group. + # The name is case insensitive. + ${ResourceGroupName}, + + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(ParameterSetName='ClientIPAddress', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] + [System.String] + # The name of the server. + ${ServerName}, + + [Parameter(ParameterSetName='UpdateExpanded')] + [Parameter(ParameterSetName='ClientIPAddress')] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # The ID of the target subscription. + ${SubscriptionId}, + + [Parameter(ParameterSetName='ClientIPAddressViaIdentity', Mandatory, ValueFromPipeline)] + [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] + [System.String] + # The end IP address of the server firewall rule. + # Must be IPv4 format. + ${EndIPAddress}, + + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] + [System.String] + # The start IP address of the server firewall rule. + # Must be IPv4 format. + ${StartIPAddress}, + + [Parameter(ParameterSetName='ClientIPAddress', Mandatory)] + [Parameter(ParameterSetName='ClientIPAddressViaIdentity', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] + [System.String] + # Client specified single IP of the server firewall rule. + # Must be IPv4 format. + ${ClientIPAddress}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + UpdateExpanded = 'Az.PostgreSql.custom\Update-AzPostgreSqlFirewallRule'; + ClientIPAddress = 'Az.PostgreSql.custom\Update-AzPostgreSqlFirewallRule'; + ClientIPAddressViaIdentity = 'Az.PostgreSql.custom\Update-AzPostgreSqlFirewallRule'; + UpdateViaIdentityExpanded = 'Az.PostgreSql.custom\Update-AzPostgreSqlFirewallRule'; + } + if (('UpdateExpanded', 'ClientIPAddress') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} + +# ---------------------------------------------------------------------------------- +# +# 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 Updates an existing server. The request body can contain one to many of the properties present in the normal server definition. +Use Update-AzPostSqlConfiguration instead if you want update server parameters such as wait_timeout or net_retry_count. .Description Updates an existing server. The request body can contain one to many of the properties present in the normal server definition. +Use Update-AzPostSqlConfiguration instead if you want update server parameters such as wait_timeout or net_retry_count. .Example PS C:\> Update-AzPostgreSqlServer -ResourceGroupName PostgreSqlTestRG -ServerName PostgreSqlTestServer -SslEnforcement Disabled @@ -3697,12 +3760,14 @@ param( [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline. ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline. ${HttpPipelinePrepend}, [Parameter()] @@ -3714,17 +3779,20 @@ param( [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] [System.Uri] + # The URI for the proxy server to use. ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call. ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy. ${ProxyUseDefaultCredentials} ) diff --git a/src/PostgreSql/exports/Remove-AzPostgreSqlServer.ps1 b/src/PostgreSql/exports/Remove-AzPostgreSqlServer.ps1 index 526b42041285..1b04193186dd 100644 --- a/src/PostgreSql/exports/Remove-AzPostgreSqlServer.ps1 +++ b/src/PostgreSql/exports/Remove-AzPostgreSqlServer.ps1 @@ -22,7 +22,7 @@ Deletes a server. PS C:\> Remove-AzPostgreSqlServer -ResourceGroupName PostgreSqlTestRG -Name PostgreSqlTestServer .Example -PS C:\> $ID = "/subscriptions//resourceGroups/PostgreSqlTestRG/providers/Microsoft.DBforMySQL/servers/PostgreSqlTestServer" +PS C:\> $ID = "/subscriptions//resourceGroups/PostgreSqlTestRG/providers/Microsoft.DBforPostgreSQL/servers/PostgreSqlTestServer" PS C:\> Remove-AzPostgreSqlServer -InputObject $ID diff --git a/src/PostgreSql/exports/Update-AzPostgreSqlConfiguration.ps1 b/src/PostgreSql/exports/Update-AzPostgreSqlConfiguration.ps1 index b19a680ff1a3..3e75e74d33e9 100644 --- a/src/PostgreSql/exports/Update-AzPostgreSqlConfiguration.ps1 +++ b/src/PostgreSql/exports/Update-AzPostgreSqlConfiguration.ps1 @@ -16,8 +16,10 @@ <# .Synopsis Updates a configuration of a server. +Use Update-AzPostgreSqlServer instead if you want update AdministratorLoginPassword, sku, etc. .Description Updates a configuration of a server. +Use Update-AzPostgreSqlServer instead if you want update AdministratorLoginPassword, sku, etc. .Example PS C:\> Update-AzPostgreSqlConfiguration -Name intervalstyle -ResourceGroupName PostgreSqlTestRG -ServerName PostgreSqlTestServer -Value SQL_STANDARD @@ -173,8 +175,8 @@ begin { } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ - UpdateExpanded = 'Az.PostgreSql.private\Update-AzPostgreSqlConfiguration_UpdateExpanded'; - UpdateViaIdentityExpanded = 'Az.PostgreSql.private\Update-AzPostgreSqlConfiguration_UpdateViaIdentityExpanded'; + UpdateExpanded = 'Az.PostgreSql.custom\Update-AzPostgreSqlConfiguration'; + UpdateViaIdentityExpanded = 'Az.PostgreSql.custom\Update-AzPostgreSqlConfiguration'; } if (('UpdateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id diff --git a/src/PostgreSql/exports/Update-AzPostgreSqlFirewallRule.ps1 b/src/PostgreSql/exports/Update-AzPostgreSqlFirewallRule.ps1 index bcf5fd0f38ac..8e489ca5abe1 100644 --- a/src/PostgreSql/exports/Update-AzPostgreSqlFirewallRule.ps1 +++ b/src/PostgreSql/exports/Update-AzPostgreSqlFirewallRule.ps1 @@ -31,6 +31,13 @@ PS C:\> Update-AzPostgreSqlFirewallRule -InputObject $ID -EndIPAddress 0.0.0.1 - Name StartIPAddress EndIPAddress ---- -------------- ------------ rule 0.0.0.0 0.0.0.1 +.Example +PS C:\> $ID = "/subscriptions//resourceGroups/PowershellPostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/PostgreSqlTestServer/firewallRules/rule" +PS C:\> Update-AzPostgreSqlFirewallRule -InputObject $ID --ClientIPAddress 0.0.0.2 + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +rule 0.0.0.2 0.0.0.2 .Inputs Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity @@ -60,6 +67,7 @@ function Update-AzPostgreSqlFirewallRule { [CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(ParameterSetName='ClientIPAddress', Mandatory)] [Alias('FirewallRuleName')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] [System.String] @@ -67,6 +75,7 @@ param( ${Name}, [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(ParameterSetName='ClientIPAddress', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] [System.String] # The name of the resource group. @@ -74,18 +83,21 @@ param( ${ResourceGroupName}, [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(ParameterSetName='ClientIPAddress', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] [System.String] # The name of the server. ${ServerName}, [Parameter(ParameterSetName='UpdateExpanded')] + [Parameter(ParameterSetName='ClientIPAddress')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] # The ID of the target subscription. ${SubscriptionId}, + [Parameter(ParameterSetName='ClientIPAddressViaIdentity', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity] @@ -93,20 +105,30 @@ param( # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, - [Parameter(Mandatory)] + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] [System.String] # The end IP address of the server firewall rule. # Must be IPv4 format. ${EndIPAddress}, - [Parameter(Mandatory)] + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] [System.String] # The start IP address of the server firewall rule. # Must be IPv4 format. ${StartIPAddress}, + [Parameter(ParameterSetName='ClientIPAddress', Mandatory)] + [Parameter(ParameterSetName='ClientIPAddressViaIdentity', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] + [System.String] + # Client specified single IP of the server firewall rule. + # Must be IPv4 format. + ${ClientIPAddress}, + [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] @@ -175,10 +197,12 @@ begin { } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ - UpdateExpanded = 'Az.PostgreSql.private\Update-AzPostgreSqlFirewallRule_UpdateExpanded'; - UpdateViaIdentityExpanded = 'Az.PostgreSql.private\Update-AzPostgreSqlFirewallRule_UpdateViaIdentityExpanded'; + UpdateExpanded = 'Az.PostgreSql.custom\Update-AzPostgreSqlFirewallRule'; + ClientIPAddress = 'Az.PostgreSql.custom\Update-AzPostgreSqlFirewallRule'; + ClientIPAddressViaIdentity = 'Az.PostgreSql.custom\Update-AzPostgreSqlFirewallRule'; + UpdateViaIdentityExpanded = 'Az.PostgreSql.custom\Update-AzPostgreSqlFirewallRule'; } - if (('UpdateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + if (('UpdateExpanded', 'ClientIPAddress') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) diff --git a/src/PostgreSql/exports/Update-AzPostgreSqlServer.ps1 b/src/PostgreSql/exports/Update-AzPostgreSqlServer.ps1 index 626455d58d2b..88d08a9c52fd 100644 --- a/src/PostgreSql/exports/Update-AzPostgreSqlServer.ps1 +++ b/src/PostgreSql/exports/Update-AzPostgreSqlServer.ps1 @@ -17,9 +17,11 @@ .Synopsis Updates an existing server. The request body can contain one to many of the properties present in the normal server definition. +Use Update-AzPostSqlConfiguration instead if you want update server parameters such as wait_timeout or net_retry_count. .Description Updates an existing server. The request body can contain one to many of the properties present in the normal server definition. +Use Update-AzPostSqlConfiguration instead if you want update server parameters such as wait_timeout or net_retry_count. .Example PS C:\> Update-AzPostgreSqlServer -ResourceGroupName PostgreSqlTestRG -ServerName PostgreSqlTestServer -SslEnforcement Disabled @@ -185,12 +187,14 @@ param( [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline. ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline. ${HttpPipelinePrepend}, [Parameter()] @@ -202,17 +206,20 @@ param( [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] [System.Uri] + # The URI for the proxy server to use. ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call. ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Runtime')] [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy. ${ProxyUseDefaultCredentials} ) diff --git a/src/PostgreSql/exports/readme.md b/src/PostgreSql/exports/readme.md index c00fe8841f24..6649e452372e 100644 --- a/src/PostgreSql/exports/readme.md +++ b/src/PostgreSql/exports/readme.md @@ -1,5 +1,5 @@ # Exports -This directory contains the cmdlets *exported by* `Az.PostgreSql`. No other cmdlets in this repository are directly exported. What that means is the `Az.PostgreSql` module will run [Export-ModuleMember](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/export-modulemember) on the cmldets in this directory. The cmdlets in this directory are generated at **build-time**. Do not put any custom code, files, cmdlets, etc. into this directory. Please use `../custom` for all custom implementation. +This directory contains the cmdlets *exported by* `Az.PostgreSql`. No other cmdlets in this repository are directly exported. What that means is the `Az.PostgreSql` module will run [Export-ModuleMember](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/export-modulemember) on the cmldets in this directory. The cmdlets in this directory are generated at **build-time**. Do not put any custom code, files, cmdlets, etc. into this directory. Please use `..\custom` for all custom implementation. ## Info - Modifiable: no @@ -8,7 +8,7 @@ This directory contains the cmdlets *exported by* `Az.PostgreSql`. No other cmdl - Packaged: yes ## Details -The cmdlets generated here are created every time you run `build-module.ps1`. These cmdlets are a merge of all (excluding `InternalExport`) cmdlets from the private binary (`../bin/Az.PostgreSql.private.dll`) and from the `../custom/Az.PostgreSql.custom.psm1` module. Cmdlets that are *not merged* from those directories are decorated with the `InternalExport` attribute. This happens when you set the cmdlet to **hide** from configuration. For more information on hiding, see [cmdlet hiding](https://github.com/Azure/autorest/blob/master/docs/powershell/options.md#cmdlet-hiding-exportation-suppression) or the [readme.md](../internal/readme.md) in the `../internal` folder. +The cmdlets generated here are created every time you run `build-module.ps1`. These cmdlets are a merge of all (excluding `InternalExport`) cmdlets from the private binary (`..\bin\Az.PostgreSql.private.dll`) and from the `..\custom\Az.PostgreSql.custom.psm1` module. Cmdlets that are *not merged* from those directories are decorated with the `InternalExport` attribute. This happens when you set the cmdlet to **hide** from configuration. For more information on hiding, see [cmdlet hiding](https://github.com/Azure/autorest/blob/master/docs/powershell/options.md#cmdlet-hiding-exportation-suppression) or the [readme.md](..\internal/readme.md) in the `..\internal` folder. ## Purpose We generate script cmdlets out of the binary cmdlets and custom cmdlets. The format of script cmdlets are simplistic; thus, easier to generate at build time. Generating the cmdlets is required as to allow merging of generated binary, hand-written binary, and hand-written custom cmdlets. For Azure cmdlets, having script cmdlets simplifies the mechanism for exporting Azure profiles. diff --git a/src/PostgreSql/generate-info.json b/src/PostgreSql/generate-info.json new file mode 100644 index 000000000000..732188381c3c --- /dev/null +++ b/src/PostgreSql/generate-info.json @@ -0,0 +1,8 @@ +{ + "autorest_powershell": "2.1.400", + "autorest_core": "3.0.6320", + "node": "v10.16.0", + "autorest": "3.0.6187", + "autorest_remodeler": "2.1.27", + "swagger_commit": "25e3eaa8dd29c201625aebc33762ef9ab021eb9e" +} diff --git a/src/PostgreSql/generated/api/Support/InfrastructureEncryption.cs b/src/PostgreSql/generated/api/Support/InfrastructureEncryption.cs index baa6401fc4fe..b9654e52d4c5 100644 --- a/src/PostgreSql/generated/api/Support/InfrastructureEncryption.cs +++ b/src/PostgreSql/generated/api/Support/InfrastructureEncryption.cs @@ -9,8 +9,10 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support public partial struct InfrastructureEncryption : System.IEquatable { + /// Additional (2nd) layer of encryption for data at rest public static Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.InfrastructureEncryption Disabled = @"Disabled"; + /// Default value for single layer of encryption for data at rest. public static Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Support.InfrastructureEncryption Enabled = @"Enabled"; /// the value for an instance of the Enum. diff --git a/src/PostgreSql/generated/cmdlets/NewAzPostgreSqlFirewallRule_CreateExpanded.cs b/src/PostgreSql/generated/cmdlets/NewAzPostgreSqlFirewallRule_CreateExpanded.cs index 677d1ca650b2..daa7f636ab11 100644 --- a/src/PostgreSql/generated/cmdlets/NewAzPostgreSqlFirewallRule_CreateExpanded.cs +++ b/src/PostgreSql/generated/cmdlets/NewAzPostgreSqlFirewallRule_CreateExpanded.cs @@ -11,6 +11,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Cmdlets /// /// [OpenAPI] FirewallRules_CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforPostgreSQL/servers/{serverName}/firewallRules/{firewallRuleName}" /// + [global::Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzPostgreSqlFirewallRule_CreateExpanded", SupportsShouldProcess = true)] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IFirewallRule))] [global::Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Description(@"Creates a new firewall rule or updates an existing firewall rule.")] diff --git a/src/PostgreSql/generated/cmdlets/UpdateAzPostgreSqlConfiguration_UpdateExpanded.cs b/src/PostgreSql/generated/cmdlets/UpdateAzPostgreSqlConfiguration_UpdateExpanded.cs index 02cf1fecc564..18b64cd78a01 100644 --- a/src/PostgreSql/generated/cmdlets/UpdateAzPostgreSqlConfiguration_UpdateExpanded.cs +++ b/src/PostgreSql/generated/cmdlets/UpdateAzPostgreSqlConfiguration_UpdateExpanded.cs @@ -11,6 +11,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Cmdlets /// /// [OpenAPI] Configurations_CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforPostgreSQL/servers/{serverName}/configurations/{configurationName}" /// + [global::Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzPostgreSqlConfiguration_UpdateExpanded", SupportsShouldProcess = true)] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IConfiguration))] [global::Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Description(@"Updates a configuration of a server.")] diff --git a/src/PostgreSql/generated/cmdlets/UpdateAzPostgreSqlConfiguration_UpdateViaIdentityExpanded.cs b/src/PostgreSql/generated/cmdlets/UpdateAzPostgreSqlConfiguration_UpdateViaIdentityExpanded.cs index 7e898ca6aaf1..d74b8b043ddc 100644 --- a/src/PostgreSql/generated/cmdlets/UpdateAzPostgreSqlConfiguration_UpdateViaIdentityExpanded.cs +++ b/src/PostgreSql/generated/cmdlets/UpdateAzPostgreSqlConfiguration_UpdateViaIdentityExpanded.cs @@ -11,6 +11,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Cmdlets /// /// [OpenAPI] Configurations_CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforPostgreSQL/servers/{serverName}/configurations/{configurationName}" /// + [global::Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzPostgreSqlConfiguration_UpdateViaIdentityExpanded", SupportsShouldProcess = true)] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IConfiguration))] [global::Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Description(@"Updates a configuration of a server.")] diff --git a/src/PostgreSql/generated/cmdlets/UpdateAzPostgreSqlFirewallRule_UpdateExpanded.cs b/src/PostgreSql/generated/cmdlets/UpdateAzPostgreSqlFirewallRule_UpdateExpanded.cs index b0ee7cc83282..aa6a065bb3e0 100644 --- a/src/PostgreSql/generated/cmdlets/UpdateAzPostgreSqlFirewallRule_UpdateExpanded.cs +++ b/src/PostgreSql/generated/cmdlets/UpdateAzPostgreSqlFirewallRule_UpdateExpanded.cs @@ -11,6 +11,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Cmdlets /// /// [OpenAPI] FirewallRules_CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforPostgreSQL/servers/{serverName}/firewallRules/{firewallRuleName}" /// + [global::Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzPostgreSqlFirewallRule_UpdateExpanded", SupportsShouldProcess = true)] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IFirewallRule))] [global::Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Description(@"Creates a new firewall rule or updates an existing firewall rule.")] diff --git a/src/PostgreSql/generated/cmdlets/UpdateAzPostgreSqlFirewallRule_UpdateViaIdentityExpanded.cs b/src/PostgreSql/generated/cmdlets/UpdateAzPostgreSqlFirewallRule_UpdateViaIdentityExpanded.cs index e43ae8ecec25..929b1d62801d 100644 --- a/src/PostgreSql/generated/cmdlets/UpdateAzPostgreSqlFirewallRule_UpdateViaIdentityExpanded.cs +++ b/src/PostgreSql/generated/cmdlets/UpdateAzPostgreSqlFirewallRule_UpdateViaIdentityExpanded.cs @@ -11,6 +11,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Cmdlets /// /// [OpenAPI] FirewallRules_CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforPostgreSQL/servers/{serverName}/firewallRules/{firewallRuleName}" /// + [global::Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzPostgreSqlFirewallRule_UpdateViaIdentityExpanded", SupportsShouldProcess = true)] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IFirewallRule))] [global::Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Description(@"Creates a new firewall rule or updates an existing firewall rule.")] diff --git a/src/PostgreSql/generated/runtime/HttpPipeline.cs b/src/PostgreSql/generated/runtime/HttpPipeline.cs index e0dff843bcd2..bc866472ce3f 100644 --- a/src/PostgreSql/generated/runtime/HttpPipeline.cs +++ b/src/PostgreSql/generated/runtime/HttpPipeline.cs @@ -47,7 +47,7 @@ public partial class SendAsyncFactory { /// /// This translates a generic-defined delegate for a listener into one that fits our ISendAsync pattern. - /// (Provided to support out-of-module delgation for Azure Cmdlets) + /// (Provided to support out-of-module delegation for Azure Cmdlets) /// /// The Pipeline Step as a delegate public SendAsyncFactory(SendAsyncStepDelegate step) => this.implementation = (request, listener, next) => @@ -85,4 +85,4 @@ public HttpPipeline Prepend(SendAsyncStepDelegate item) return this; } } -} \ No newline at end of file +} diff --git a/src/PostgreSql/generated/runtime/ISendAsync.cs b/src/PostgreSql/generated/runtime/ISendAsync.cs index 58a397ba954c..2a6c944d8744 100644 --- a/src/PostgreSql/generated/runtime/ISendAsync.cs +++ b/src/PostgreSql/generated/runtime/ISendAsync.cs @@ -252,12 +252,19 @@ internal static HttpRequestMessage Clone(this HttpRequestMessage original, Syste { clone.Properties.Add(prop); } - + foreach (KeyValuePair> header in original.Headers) - { + { + /* + **temporarily skip cloning telemetry related headers** clone.Headers.TryAddWithoutValidation(header.Key, header.Value); + */ + if (!"x-ms-unique-id".Equals(header.Key) && !"x-ms-client-request-id".Equals(header.Key) && !"CommandName".Equals(header.Key) && !"FullCommandName".Equals(header.Key) && !"ParameterSetName".Equals(header.Key) && !"User-Agent".Equals(header.Key)) + { + clone.Headers.TryAddWithoutValidation(header.Key, header.Value); + } } - + return clone; } @@ -286,4 +293,4 @@ internal static async Task CloneWithContent(this HttpRequest return clone; } } -} \ No newline at end of file +} diff --git a/src/PostgreSql/help/Az.PostgreSql.md b/src/PostgreSql/help/Az.PostgreSql.md index bfd46c292912..c31c2c2fc047 100644 --- a/src/PostgreSql/help/Az.PostgreSql.md +++ b/src/PostgreSql/help/Az.PostgreSql.md @@ -1,6 +1,6 @@ --- Module Name: Az.PostgreSql -Module Guid: 0ff92658-648d-4ca5-b190-a4b45bc2c323 +Module Guid: b09b1b72-75a0-43a4-a342-b69a27eb64b5 Download Help Link: https://docs.microsoft.com/en-us/powershell/module/az.postgresql Help Version: 1.0.0.0 Locale: en-US @@ -58,6 +58,7 @@ Restore a server from an existing backup ### [Update-AzPostgreSqlConfiguration](Update-AzPostgreSqlConfiguration.md) Updates a configuration of a server. +Use Update-AzPostgreSqlServer instead if you want update AdministratorLoginPassword, sku, etc. ### [Update-AzPostgreSqlFirewallRule](Update-AzPostgreSqlFirewallRule.md) Creates a new firewall rule or updates an existing firewall rule. @@ -65,6 +66,7 @@ Creates a new firewall rule or updates an existing firewall rule. ### [Update-AzPostgreSqlServer](Update-AzPostgreSqlServer.md) Updates an existing server. The request body can contain one to many of the properties present in the normal server definition. +Use Update-AzPostSqlConfiguration instead if you want update server parameters such as wait_timeout or net_retry_count. ### [Update-AzPostgreSqlVirtualNetworkRule](Update-AzPostgreSqlVirtualNetworkRule.md) Creates or updates an existing virtual network rule. diff --git a/src/PostgreSql/help/Get-AzPostgreSqlConfiguration.md b/src/PostgreSql/help/Get-AzPostgreSqlConfiguration.md index baf0f606d8b9..e40f9620671b 100644 --- a/src/PostgreSql/help/Get-AzPostgreSqlConfiguration.md +++ b/src/PostgreSql/help/Get-AzPostgreSqlConfiguration.md @@ -35,7 +35,7 @@ Gets information about a configuration of server. ## EXAMPLES -### Example 1: List all configurations in PostgreSql MySql server +### Example 1: List all configurations in PostgreSql server ```powershell PS C:\> Get-AzPostgreSqlConfiguration -ResourceGroupName PostgreSqlTestRG -ServerName PostgreSqlTestServer diff --git a/src/PostgreSql/help/New-AzPostgreSqlFirewallRule.md b/src/PostgreSql/help/New-AzPostgreSqlFirewallRule.md index 08974d9873d0..3cdde983906d 100644 --- a/src/PostgreSql/help/New-AzPostgreSqlFirewallRule.md +++ b/src/PostgreSql/help/New-AzPostgreSqlFirewallRule.md @@ -12,10 +12,25 @@ Creates a new firewall rule or updates an existing firewall rule. ## SYNTAX +### CreateExpanded (Default) ``` -New-AzPostgreSqlFirewallRule -Name -ResourceGroupName -ServerName - -EndIPAddress -StartIPAddress [-SubscriptionId ] [-DefaultProfile ] - [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] +New-AzPostgreSqlFirewallRule -ResourceGroupName -ServerName -EndIPAddress + -StartIPAddress [-Name ] [-SubscriptionId ] [-DefaultProfile ] [-AsJob] + [-NoWait] [-Confirm] [-WhatIf] [] +``` + +### AllowAll +``` +New-AzPostgreSqlFirewallRule -ResourceGroupName -ServerName -AllowAll [-Name ] + [-SubscriptionId ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] + [] +``` + +### ClientIPAddress +``` +New-AzPostgreSqlFirewallRule -ResourceGroupName -ServerName -ClientIPAddress + [-Name ] [-SubscriptionId ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] + [-WhatIf] [] ``` ## DESCRIPTION @@ -34,8 +49,45 @@ rule 0.0.0.0 0.0.0.1 This cmdlets create a PostgreSql server Firewall Rule. +### Example 2: Create a new PostgreSql Firewall Rule using -ClientIPAddress. +```powershell +PS C:\> New-AzPostgreSqlFirewallRule -ResourceGroupName PostgreSqlTestRG -ServerName PostgreSqlTestServer -ClientIPAddress 0.0.0.1 + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +ClientIPAddress_2020-08-11_18-19-27 0.0.0.1 0.0.0.1 +``` + +This cmdlets create a PostgreSql Firewall Rule using -ClientIPAddress. + +### Example 3: Create a new PostgreSql Firewall Rule to allow all IPs +```powershell +PS C:\> New-AzPostgreSqlFirewallRule -ResourceGroupName PostgreSqlTestRG -ServerName PostgreSqlTestServer -AllowAll + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +AllowAll_2020-08-11_18-19-27 0.0.0.0 255.255.255.255 +``` + +This cmdlets create a new PostgreSql Firewall Rule to allow all IPs. + ## PARAMETERS +### -AllowAll +Present to allow all range IPs, from 0.0.0.0 to 255.255.255.255. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: AllowAll +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -AsJob Run the command as a job @@ -51,6 +103,22 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -ClientIPAddress +Client specified single IP of the server firewall rule. +Must be IPv4 format. + +```yaml +Type: System.String +Parameter Sets: ClientIPAddress +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. @@ -72,7 +140,7 @@ Must be IPv4 format. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: True @@ -90,7 +158,7 @@ Type: System.String Parameter Sets: (All) Aliases: FirewallRuleName -Required: True +Required: False Position: Named Default value: None Accept pipeline input: False @@ -149,7 +217,7 @@ Must be IPv4 format. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: True diff --git a/src/PostgreSql/help/New-AzPostgreSqlReplica.md b/src/PostgreSql/help/New-AzPostgreSqlReplica.md index b819679fa43e..6c50ab6d579d 100644 --- a/src/PostgreSql/help/New-AzPostgreSqlReplica.md +++ b/src/PostgreSql/help/New-AzPostgreSqlReplica.md @@ -13,7 +13,7 @@ Creates a new replica from an existing database. ## SYNTAX ``` -New-AzPostgreSqlReplica -Name -ResourceGroupName -InputObject +New-AzPostgreSqlReplica -ReplicaName -ResourceGroupName -Master [-SubscriptionId ] [-Location ] [-Sku ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] ``` @@ -25,7 +25,19 @@ Creates a new replica from an existing database. ### Example 1: Create a new PostgreSql server replica ```powershell -PS C:\> Get-AzPostgreSqlServer -ResourceGroupName PostgreSqlTestRG -ServerName PostgreSqlTestServer | New-AzPostgreSqReplica -Name PostgreSqlTestServerReplica -ResourceGroupName PostgreSqlTestRG +PS C:\> Get-AzPostgreSqlServer -ResourceGroupName PostgreSqlTestRG -ServerName PostgreSqlTestServer | New-AzPostgreSqlReplica -ReplicaName PostgreSqlTestServerReplica -ResourceGroupName PostgreSqlTestRG + +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +postgresqltestserverreplica eastus pwsh 9.6 5120 GP_Gen5_4 GeneralPurpose Enabled +``` + +This cmdlet creates a new PostgreSql server replica. + +### Example 2: Create a new PostgreSql server replica +```powershell +PS C:\> $pgDb = Get-AzPostgreSqlServer -ResourceGroupName PostgreSqlTestRG -ServerName PostgreSqlTestServer +PS C:\> New-AzPostgreSqlReplica -Master $pgDb -ReplicaName PostgreSqlTestServerReplica -ResourceGroupName PostgreSqlTestRG Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement ---- -------- ------------------ ------- ----------------------- ------- ------- -------------- @@ -66,22 +78,6 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -InputObject -The source server object to create replica from. -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - -```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer -Parameter Sets: (All) -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: True (ByValue) -Accept wildcard characters: False -``` - ### -Location The location the resource resides in. @@ -97,18 +93,19 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -Name -The name of the server. +### -Master +The source server object to create replica from. +To construct, see NOTES section for MASTER properties and create a hash table. ```yaml -Type: System.String +Type: Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IServer Parameter Sets: (All) -Aliases: ReplicaServerName +Aliases: InputObject Required: True Position: Named Default value: None -Accept pipeline input: False +Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` @@ -127,6 +124,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -ReplicaName +The name of the server. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: ReplicaServerName, Name + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ResourceGroupName The name of the resource group that contains the resource, You can obtain this value from the Azure Resource Manager API or the portal. @@ -224,7 +236,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : The source server object to create replica from. +MASTER : The source server object to create replica from. - `Location `: The location the resource resides in. - `[Tag ]`: Application-specific metadata in the form of key-value pairs. - `[(Any) ]`: This indicates any property can be added to this object. diff --git a/src/PostgreSql/help/Remove-AzPostgreSqlServer.md b/src/PostgreSql/help/Remove-AzPostgreSqlServer.md index 99e634cedb19..d9b991bf5921 100644 --- a/src/PostgreSql/help/Remove-AzPostgreSqlServer.md +++ b/src/PostgreSql/help/Remove-AzPostgreSqlServer.md @@ -39,7 +39,7 @@ This cmdlet removes PostgreSql server by resourceGroup and server name. ### Example 2: Remove PostgreSql server by identity ```powershell -PS C:\> $ID = "/subscriptions//resourceGroups/PostgreSqlTestRG/providers/Microsoft.DBforMySQL/servers/PostgreSqlTestServer" +PS C:\> $ID = "/subscriptions//resourceGroups/PostgreSqlTestRG/providers/Microsoft.DBforPostgreSQL/servers/PostgreSqlTestServer" PS C:\> Remove-AzPostgreSqlServer -InputObject $ID ``` diff --git a/src/PostgreSql/help/Update-AzPostgreSqlConfiguration.md b/src/PostgreSql/help/Update-AzPostgreSqlConfiguration.md index 9d12cc33c877..80e91a69e955 100644 --- a/src/PostgreSql/help/Update-AzPostgreSqlConfiguration.md +++ b/src/PostgreSql/help/Update-AzPostgreSqlConfiguration.md @@ -9,6 +9,7 @@ schema: 2.0.0 ## SYNOPSIS Updates a configuration of a server. +Use Update-AzPostgreSqlServer instead if you want update AdministratorLoginPassword, sku, etc. ## SYNTAX @@ -27,6 +28,7 @@ Update-AzPostgreSqlConfiguration -InputObject [-Source -ResourceGroupName -Serv [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] ``` +### ClientIPAddress +``` +Update-AzPostgreSqlFirewallRule -Name -ResourceGroupName -ServerName + -ClientIPAddress [-SubscriptionId ] [-DefaultProfile ] [-AsJob] [-NoWait] + [-Confirm] [-WhatIf] [] +``` + +### ClientIPAddressViaIdentity +``` +Update-AzPostgreSqlFirewallRule -InputObject -ClientIPAddress + [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] +``` + ### UpdateViaIdentityExpanded ``` Update-AzPostgreSqlFirewallRule -InputObject -EndIPAddress @@ -54,6 +67,18 @@ rule 0.0.0.0 0.0.0.1 These cmdlets update PostgreSql Firewall Rule by identity. +### Example 3: Update PostgreSql Firewall Rule by -ClientIPAddress. +```powershell +PS C:\> $ID = "/subscriptions//resourceGroups/PowershellPostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/PostgreSqlTestServer/firewallRules/rule" +PS C:\> Update-AzPostgreSqlFirewallRule -InputObject $ID --ClientIPAddress 0.0.0.2 + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +rule 0.0.0.2 0.0.0.2 +``` + +These cmdlets update PostgreSql Firewall Rule by -ClientIPAddress. + ## PARAMETERS ### -AsJob @@ -71,6 +96,22 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -ClientIPAddress +Client specified single IP of the server firewall rule. +Must be IPv4 format. + +```yaml +Type: System.String +Parameter Sets: ClientIPAddress, ClientIPAddressViaIdentity +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. @@ -92,7 +133,7 @@ Must be IPv4 format. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: True @@ -108,7 +149,7 @@ To construct, see NOTES section for INPUTOBJECT properties and create a hash tab ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity -Parameter Sets: UpdateViaIdentityExpanded +Parameter Sets: ClientIPAddressViaIdentity, UpdateViaIdentityExpanded Aliases: Required: True @@ -123,7 +164,7 @@ The name of the server firewall rule. ```yaml Type: System.String -Parameter Sets: UpdateExpanded +Parameter Sets: ClientIPAddress, UpdateExpanded Aliases: FirewallRuleName Required: True @@ -154,7 +195,7 @@ The name is case insensitive. ```yaml Type: System.String -Parameter Sets: UpdateExpanded +Parameter Sets: ClientIPAddress, UpdateExpanded Aliases: Required: True @@ -169,7 +210,7 @@ The name of the server. ```yaml Type: System.String -Parameter Sets: UpdateExpanded +Parameter Sets: ClientIPAddress, UpdateExpanded Aliases: Required: True @@ -185,7 +226,7 @@ Must be IPv4 format. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: True @@ -200,7 +241,7 @@ The ID of the target subscription. ```yaml Type: System.String -Parameter Sets: UpdateExpanded +Parameter Sets: ClientIPAddress, UpdateExpanded Aliases: Required: False diff --git a/src/PostgreSql/help/Update-AzPostgreSqlServer.md b/src/PostgreSql/help/Update-AzPostgreSqlServer.md index 1509355c34fa..ce51eef2ef0c 100644 --- a/src/PostgreSql/help/Update-AzPostgreSqlServer.md +++ b/src/PostgreSql/help/Update-AzPostgreSqlServer.md @@ -10,6 +10,7 @@ schema: 2.0.0 ## SYNOPSIS Updates an existing server. The request body can contain one to many of the properties present in the normal server definition. +Use Update-AzPostSqlConfiguration instead if you want update server parameters such as wait_timeout or net_retry_count. ## SYNTAX @@ -34,6 +35,7 @@ Update-AzPostgreSqlServer -InputObject [-AdministratorLogi ## DESCRIPTION Updates an existing server. The request body can contain one to many of the properties present in the normal server definition. +Use Update-AzPostSqlConfiguration instead if you want update server parameters such as wait_timeout or net_retry_count. ## EXAMPLES diff --git a/src/PostgreSql/internal/Az.PostgreSql.internal.psm1 b/src/PostgreSql/internal/Az.PostgreSql.internal.psm1 index 6e0eb8a65872..a04277c72e61 100644 --- a/src/PostgreSql/internal/Az.PostgreSql.internal.psm1 +++ b/src/PostgreSql/internal/Az.PostgreSql.internal.psm1 @@ -1,6 +1,6 @@ # region Generated # Load the private module dll - $null = Import-Module -PassThru -Name (Join-Path $PSScriptRoot '../bin/Az.PostgreSql.private.dll') + $null = Import-Module -PassThru -Name (Join-Path $PSScriptRoot '..\bin\Az.PostgreSql.private.dll') # Get the private module's instance $instance = [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Module]::Instance diff --git a/src/PostgreSql/internal/New-AzPostgreSqlFirewallRule.ps1 b/src/PostgreSql/internal/New-AzPostgreSqlFirewallRule.ps1 index 54a0a8980482..69cb9e263ce2 100644 --- a/src/PostgreSql/internal/New-AzPostgreSqlFirewallRule.ps1 +++ b/src/PostgreSql/internal/New-AzPostgreSqlFirewallRule.ps1 @@ -24,6 +24,18 @@ PS C:\> New-AzPostgreSqlFirewallRule -Name rule -ResourceGroupName PostgreSqlTes Name StartIPAddress EndIPAddress ---- -------------- ------------ rule 0.0.0.0 0.0.0.1 +.Example +PS C:\> New-AzPostgreSqlFirewallRule -ResourceGroupName PostgreSqlTestRG -ServerName PostgreSqlTestServer -ClientIPAddress 0.0.0.1 + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +ClientIPAddress_2020-08-11_18-19-27 0.0.0.1 0.0.0.1 +.Example +PS C:\> New-AzPostgreSqlFirewallRule -ResourceGroupName PostgreSqlTestRG -ServerName PostgreSqlTestServer -AllowAll + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +AllowAll_2020-08-11_18-19-27 0.0.0.0 255.255.255.255 .Inputs Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IFirewallRule @@ -56,9 +68,10 @@ https://docs.microsoft.com/en-us/powershell/module/az.postgresql/new-azpostgresq #> function New-AzPostgreSqlFirewallRule { [OutputType([Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IFirewallRule])] -[CmdletBinding(DefaultParameterSetName='CreateViaIdentity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Create', Mandatory)] + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] [Alias('FirewallRuleName')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] [System.String] @@ -66,6 +79,7 @@ param( ${Name}, [Parameter(ParameterSetName='Create', Mandatory)] + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] [System.String] # The name of the resource group. @@ -73,12 +87,14 @@ param( ${ResourceGroupName}, [Parameter(ParameterSetName='Create', Mandatory)] + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] [System.String] # The name of the server. ${ServerName}, [Parameter(ParameterSetName='Create')] + [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] @@ -101,6 +117,7 @@ param( # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] [Parameter(ParameterSetName='CreateViaIdentityExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] [System.String] @@ -108,6 +125,7 @@ param( # Must be IPv4 format. ${EndIPAddress}, + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] [Parameter(ParameterSetName='CreateViaIdentityExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] [System.String] @@ -184,10 +202,11 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Create = 'Az.PostgreSql.private\New-AzPostgreSqlFirewallRule_Create'; + CreateExpanded = 'Az.PostgreSql.private\New-AzPostgreSqlFirewallRule_CreateExpanded'; CreateViaIdentity = 'Az.PostgreSql.private\New-AzPostgreSqlFirewallRule_CreateViaIdentity'; CreateViaIdentityExpanded = 'Az.PostgreSql.private\New-AzPostgreSqlFirewallRule_CreateViaIdentityExpanded'; } - if (('Create') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + if (('Create', 'CreateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) diff --git a/src/PostgreSql/internal/ProxyCmdletDefinitions.ps1 b/src/PostgreSql/internal/ProxyCmdletDefinitions.ps1 index 0b25230efa15..90519affce4d 100644 --- a/src/PostgreSql/internal/ProxyCmdletDefinitions.ps1 +++ b/src/PostgreSql/internal/ProxyCmdletDefinitions.ps1 @@ -1594,6 +1594,18 @@ PS C:\> New-AzPostgreSqlFirewallRule -Name rule -ResourceGroupName PostgreSqlTes Name StartIPAddress EndIPAddress ---- -------------- ------------ rule 0.0.0.0 0.0.0.1 +.Example +PS C:\> New-AzPostgreSqlFirewallRule -ResourceGroupName PostgreSqlTestRG -ServerName PostgreSqlTestServer -ClientIPAddress 0.0.0.1 + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +ClientIPAddress_2020-08-11_18-19-27 0.0.0.1 0.0.0.1 +.Example +PS C:\> New-AzPostgreSqlFirewallRule -ResourceGroupName PostgreSqlTestRG -ServerName PostgreSqlTestServer -AllowAll + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +AllowAll_2020-08-11_18-19-27 0.0.0.0 255.255.255.255 .Inputs Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IFirewallRule @@ -1626,9 +1638,10 @@ https://docs.microsoft.com/en-us/powershell/module/az.postgresql/new-azpostgresq #> function New-AzPostgreSqlFirewallRule { [OutputType([Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IFirewallRule])] -[CmdletBinding(DefaultParameterSetName='CreateViaIdentity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Create', Mandatory)] + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] [Alias('FirewallRuleName')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] [System.String] @@ -1636,6 +1649,7 @@ param( ${Name}, [Parameter(ParameterSetName='Create', Mandatory)] + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] [System.String] # The name of the resource group. @@ -1643,12 +1657,14 @@ param( ${ResourceGroupName}, [Parameter(ParameterSetName='Create', Mandatory)] + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] [System.String] # The name of the server. ${ServerName}, [Parameter(ParameterSetName='Create')] + [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] @@ -1671,6 +1687,7 @@ param( # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] [Parameter(ParameterSetName='CreateViaIdentityExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] [System.String] @@ -1678,6 +1695,7 @@ param( # Must be IPv4 format. ${EndIPAddress}, + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] [Parameter(ParameterSetName='CreateViaIdentityExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] [System.String] @@ -1754,10 +1772,11 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Create = 'Az.PostgreSql.private\New-AzPostgreSqlFirewallRule_Create'; + CreateExpanded = 'Az.PostgreSql.private\New-AzPostgreSqlFirewallRule_CreateExpanded'; CreateViaIdentity = 'Az.PostgreSql.private\New-AzPostgreSqlFirewallRule_CreateViaIdentity'; CreateViaIdentityExpanded = 'Az.PostgreSql.private\New-AzPostgreSqlFirewallRule_CreateViaIdentityExpanded'; } - if (('Create') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + if (('Create', 'CreateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) @@ -3926,9 +3945,10 @@ https://docs.microsoft.com/en-us/powershell/module/az.postgresql/update-azpostgr #> function Update-AzPostgreSqlConfiguration { [OutputType([Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IConfiguration])] -[CmdletBinding(DefaultParameterSetName='UpdateViaIdentity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Update', Mandatory)] + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] [Alias('ConfigurationName')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] [System.String] @@ -3936,6 +3956,7 @@ param( ${Name}, [Parameter(ParameterSetName='Update', Mandatory)] + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] [System.String] # The name of the resource group. @@ -3943,12 +3964,14 @@ param( ${ResourceGroupName}, [Parameter(ParameterSetName='Update', Mandatory)] + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] [System.String] # The name of the server. ${ServerName}, [Parameter(ParameterSetName='Update')] + [Parameter(ParameterSetName='UpdateExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] @@ -3956,19 +3979,35 @@ param( ${SubscriptionId}, [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] + [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity] # Identity Parameter # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, - [Parameter(Mandatory, ValueFromPipeline)] + [Parameter(ParameterSetName='Update', Mandatory, ValueFromPipeline)] + [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IConfiguration] # Represents a Configuration. # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, + [Parameter(ParameterSetName='UpdateExpanded')] + [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] + [System.String] + # Source of the configuration. + ${Source}, + + [Parameter(ParameterSetName='UpdateExpanded')] + [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] + [System.String] + # Value of the configuration. + ${Value}, + [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] @@ -4038,9 +4077,11 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Update = 'Az.PostgreSql.private\Update-AzPostgreSqlConfiguration_Update'; + UpdateExpanded = 'Az.PostgreSql.private\Update-AzPostgreSqlConfiguration_UpdateExpanded'; UpdateViaIdentity = 'Az.PostgreSql.private\Update-AzPostgreSqlConfiguration_UpdateViaIdentity'; + UpdateViaIdentityExpanded = 'Az.PostgreSql.private\Update-AzPostgreSqlConfiguration_UpdateViaIdentityExpanded'; } - if (('Update') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + if (('Update', 'UpdateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) @@ -4101,6 +4142,13 @@ PS C:\> Update-AzPostgreSqlFirewallRule -InputObject $ID -EndIPAddress 0.0.0.1 - Name StartIPAddress EndIPAddress ---- -------------- ------------ rule 0.0.0.0 0.0.0.1 +.Example +PS C:\> $ID = "/subscriptions//resourceGroups/PowershellPostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/PostgreSqlTestServer/firewallRules/rule" +PS C:\> Update-AzPostgreSqlFirewallRule -InputObject $ID --ClientIPAddress 0.0.0.2 + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +rule 0.0.0.2 0.0.0.2 .Inputs Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IFirewallRule @@ -4133,9 +4181,10 @@ https://docs.microsoft.com/en-us/powershell/module/az.postgresql/update-azpostgr #> function Update-AzPostgreSqlFirewallRule { [OutputType([Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IFirewallRule])] -[CmdletBinding(DefaultParameterSetName='UpdateViaIdentity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Update', Mandatory)] + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] [Alias('FirewallRuleName')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] [System.String] @@ -4143,6 +4192,7 @@ param( ${Name}, [Parameter(ParameterSetName='Update', Mandatory)] + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] [System.String] # The name of the resource group. @@ -4150,12 +4200,14 @@ param( ${ResourceGroupName}, [Parameter(ParameterSetName='Update', Mandatory)] + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] [System.String] # The name of the server. ${ServerName}, [Parameter(ParameterSetName='Update')] + [Parameter(ParameterSetName='UpdateExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] @@ -4163,19 +4215,37 @@ param( ${SubscriptionId}, [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] + [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity] # Identity Parameter # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, - [Parameter(Mandatory, ValueFromPipeline)] + [Parameter(ParameterSetName='Update', Mandatory, ValueFromPipeline)] + [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IFirewallRule] # Represents a server firewall rule. # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] + [System.String] + # The end IP address of the server firewall rule. + # Must be IPv4 format. + ${EndIPAddress}, + + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] + [System.String] + # The start IP address of the server firewall rule. + # Must be IPv4 format. + ${StartIPAddress}, + [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] @@ -4245,9 +4315,11 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Update = 'Az.PostgreSql.private\Update-AzPostgreSqlFirewallRule_Update'; + UpdateExpanded = 'Az.PostgreSql.private\Update-AzPostgreSqlFirewallRule_UpdateExpanded'; UpdateViaIdentity = 'Az.PostgreSql.private\Update-AzPostgreSqlFirewallRule_UpdateViaIdentity'; + UpdateViaIdentityExpanded = 'Az.PostgreSql.private\Update-AzPostgreSqlFirewallRule_UpdateViaIdentityExpanded'; } - if (('Update') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + if (('Update', 'UpdateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) diff --git a/src/PostgreSql/internal/Update-AzPostgreSqlConfiguration.ps1 b/src/PostgreSql/internal/Update-AzPostgreSqlConfiguration.ps1 index 21068568a1b8..47a42183d29e 100644 --- a/src/PostgreSql/internal/Update-AzPostgreSqlConfiguration.ps1 +++ b/src/PostgreSql/internal/Update-AzPostgreSqlConfiguration.ps1 @@ -63,9 +63,10 @@ https://docs.microsoft.com/en-us/powershell/module/az.postgresql/update-azpostgr #> function Update-AzPostgreSqlConfiguration { [OutputType([Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IConfiguration])] -[CmdletBinding(DefaultParameterSetName='UpdateViaIdentity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Update', Mandatory)] + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] [Alias('ConfigurationName')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] [System.String] @@ -73,6 +74,7 @@ param( ${Name}, [Parameter(ParameterSetName='Update', Mandatory)] + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] [System.String] # The name of the resource group. @@ -80,12 +82,14 @@ param( ${ResourceGroupName}, [Parameter(ParameterSetName='Update', Mandatory)] + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] [System.String] # The name of the server. ${ServerName}, [Parameter(ParameterSetName='Update')] + [Parameter(ParameterSetName='UpdateExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] @@ -93,19 +97,35 @@ param( ${SubscriptionId}, [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] + [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity] # Identity Parameter # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, - [Parameter(Mandatory, ValueFromPipeline)] + [Parameter(ParameterSetName='Update', Mandatory, ValueFromPipeline)] + [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IConfiguration] # Represents a Configuration. # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, + [Parameter(ParameterSetName='UpdateExpanded')] + [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] + [System.String] + # Source of the configuration. + ${Source}, + + [Parameter(ParameterSetName='UpdateExpanded')] + [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] + [System.String] + # Value of the configuration. + ${Value}, + [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] @@ -175,9 +195,11 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Update = 'Az.PostgreSql.private\Update-AzPostgreSqlConfiguration_Update'; + UpdateExpanded = 'Az.PostgreSql.private\Update-AzPostgreSqlConfiguration_UpdateExpanded'; UpdateViaIdentity = 'Az.PostgreSql.private\Update-AzPostgreSqlConfiguration_UpdateViaIdentity'; + UpdateViaIdentityExpanded = 'Az.PostgreSql.private\Update-AzPostgreSqlConfiguration_UpdateViaIdentityExpanded'; } - if (('Update') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + if (('Update', 'UpdateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) diff --git a/src/PostgreSql/internal/Update-AzPostgreSqlFirewallRule.ps1 b/src/PostgreSql/internal/Update-AzPostgreSqlFirewallRule.ps1 index 23a87f96081f..c4cc81f93565 100644 --- a/src/PostgreSql/internal/Update-AzPostgreSqlFirewallRule.ps1 +++ b/src/PostgreSql/internal/Update-AzPostgreSqlFirewallRule.ps1 @@ -31,6 +31,13 @@ PS C:\> Update-AzPostgreSqlFirewallRule -InputObject $ID -EndIPAddress 0.0.0.1 - Name StartIPAddress EndIPAddress ---- -------------- ------------ rule 0.0.0.0 0.0.0.1 +.Example +PS C:\> $ID = "/subscriptions//resourceGroups/PowershellPostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/PostgreSqlTestServer/firewallRules/rule" +PS C:\> Update-AzPostgreSqlFirewallRule -InputObject $ID --ClientIPAddress 0.0.0.2 + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +rule 0.0.0.2 0.0.0.2 .Inputs Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IFirewallRule @@ -63,9 +70,10 @@ https://docs.microsoft.com/en-us/powershell/module/az.postgresql/update-azpostgr #> function Update-AzPostgreSqlFirewallRule { [OutputType([Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IFirewallRule])] -[CmdletBinding(DefaultParameterSetName='UpdateViaIdentity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Update', Mandatory)] + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] [Alias('FirewallRuleName')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] [System.String] @@ -73,6 +81,7 @@ param( ${Name}, [Parameter(ParameterSetName='Update', Mandatory)] + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] [System.String] # The name of the resource group. @@ -80,12 +89,14 @@ param( ${ResourceGroupName}, [Parameter(ParameterSetName='Update', Mandatory)] + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] [System.String] # The name of the server. ${ServerName}, [Parameter(ParameterSetName='Update')] + [Parameter(ParameterSetName='UpdateExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] @@ -93,19 +104,37 @@ param( ${SubscriptionId}, [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] + [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.IPostgreSqlIdentity] # Identity Parameter # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, - [Parameter(Mandatory, ValueFromPipeline)] + [Parameter(ParameterSetName='Update', Mandatory, ValueFromPipeline)] + [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20171201.IFirewallRule] # Represents a server firewall rule. # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] + [System.String] + # The end IP address of the server firewall rule. + # Must be IPv4 format. + ${EndIPAddress}, + + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Category('Body')] + [System.String] + # The start IP address of the server firewall rule. + # Must be IPv4 format. + ${StartIPAddress}, + [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] @@ -175,9 +204,11 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Update = 'Az.PostgreSql.private\Update-AzPostgreSqlFirewallRule_Update'; + UpdateExpanded = 'Az.PostgreSql.private\Update-AzPostgreSqlFirewallRule_UpdateExpanded'; UpdateViaIdentity = 'Az.PostgreSql.private\Update-AzPostgreSqlFirewallRule_UpdateViaIdentity'; + UpdateViaIdentityExpanded = 'Az.PostgreSql.private\Update-AzPostgreSqlFirewallRule_UpdateViaIdentityExpanded'; } - if (('Update') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + if (('Update', 'UpdateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) diff --git a/src/PostgreSql/internal/readme.md b/src/PostgreSql/internal/readme.md index 80eae67ee67f..02d564d068f1 100644 --- a/src/PostgreSql/internal/readme.md +++ b/src/PostgreSql/internal/readme.md @@ -1,5 +1,5 @@ # Internal -This directory contains a module to handle *internal only* cmdlets. Cmdlets that you **hide** in configuration are created here. For more information on hiding, see [cmdlet hiding](https://github.com/Azure/autorest/blob/master/docs/powershell/options.md#cmdlet-hiding-exportation-suppression). The cmdlets in this directory are generated at **build-time**. Do not put any custom code, files, cmdlets, etc. into this directory. Please use `../custom` for all custom implementation. +This directory contains a module to handle *internal only* cmdlets. Cmdlets that you **hide** in configuration are created here. For more information on hiding, see [cmdlet hiding](https://github.com/Azure/autorest/blob/master/docs/powershell/options.md#cmdlet-hiding-exportation-suppression). The cmdlets in this directory are generated at **build-time**. Do not put any custom code, files, cmdlets, etc. into this directory. Please use `..\custom` for all custom implementation. ## Info - Modifiable: no @@ -8,7 +8,7 @@ This directory contains a module to handle *internal only* cmdlets. Cmdlets that - Packaged: yes ## Details -The `Az.PostgreSql.internal.psm1` file is generated to this folder. This module file handles the hidden cmdlets. These cmdlets will not be exported by `Az.PostgreSql`. Instead, this sub-module is imported by the `../custom/Az.PostgreSql.custom.psm1` module, allowing you to use hidden cmdlets in your custom, exposed cmdlets. To call these cmdlets in your custom scripts, simply use [module-qualified calls](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_command_precedence?view=powershell-6#qualified-names). For example, `Az.PostgreSql.internal\Get-Example` would call an internal cmdlet named `Get-Example`. +The `Az.PostgreSql.internal.psm1` file is generated to this folder. This module file handles the hidden cmdlets. These cmdlets will not be exported by `Az.PostgreSql`. Instead, this sub-module is imported by the `..\custom\Az.PostgreSql.custom.psm1` module, allowing you to use hidden cmdlets in your custom, exposed cmdlets. To call these cmdlets in your custom scripts, simply use [module-qualified calls](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_command_precedence?view=powershell-6#qualified-names). For example, `Az.PostgreSql.internal\Get-Example` would call an internal cmdlet named `Get-Example`. ## Purpose This allows you to include REST specifications for services that you *do not wish to expose from your module*, but simply want to call within custom cmdlets. For example, if you want to make a custom cmdlet that uses `Storage` services, you could include a simplified `Storage` REST specification that has only the operations you need. When you run the generator and build this module, note the generated `Storage` cmdlets. Then, in your readme configuration, use [cmdlet hiding](https://github.com/Azure/autorest/blob/master/docs/powershell/options.md#cmdlet-hiding-exportation-suppression) on the `Storage` cmdlets and they will *only be exposed to the custom cmdlets* you want to write, and not be exported as part of `Az.PostgreSql`. \ No newline at end of file diff --git a/src/PostgreSql/readme.md b/src/PostgreSql/readme.md index 5f61da90d361..ea702efd02e9 100644 --- a/src/PostgreSql/readme.md +++ b/src/PostgreSql/readme.md @@ -17,7 +17,7 @@ This directory contains the PowerShell module for the PostgreSql service. This module was primarily generated via [AutoRest](https://github.com/Azure/autorest) using the [PowerShell](https://github.com/Azure/autorest.powershell) extension. ## Module Requirements -- [Az.Accounts module](https://www.powershellgallery.com/packages/Az.Accounts/), version 1.7.4 or greater +- [Az.Accounts module](https://www.powershellgallery.com/packages/Az.Accounts/), version 1.8.1 or greater ## Authentication AutoRest does not generate authentication code for the module. Authentication is handled via Az.Accounts by altering the HTTP payload before it is sent. @@ -47,10 +47,12 @@ In this directory, run AutoRest: > see https://aka.ms/autorest ``` yaml +branch: ae862b1c090b4c2c951ea46bf97ddbafd6f76d82 require: - $(this-folder)/../readme.azure.noprofile.md input-file: - $(repo)/specification/postgresql/resource-manager/Microsoft.DBforPostgreSQL/stable/2017-12-01/postgresql.json + - $(repo)/specification/postgresql/resource-manager/Microsoft.DBforPostgreSQL/stable/2017-12-01/ServerSecurityAlertPolicies.json module-version: 0.1.0 title: PostgreSQL subject-prefix: 'PostgreSQL' @@ -65,29 +67,20 @@ directive: set: verb: Update - where: - verb: ^New$|^Set$|^Remove$|^Get|^Update$|^Invoke$ subject: Database$|SecurityAlertPolicy$|Administrator$|LocationBasedPerformanceTier$|LogFile$|ExecuteCheckNameAvailability$ hide: true - where: verb: New$|Update$ - subject: Server$ + subject: Server$|Configuration$|FirewallRule$ hide: true - where: verb: New$ - variant: ^Create$ - hide: true - - where: - verb: New$ - variant: ^CreateViaIdentity + variant: ^Create$|^CreateViaIdentity hide: true - where: verb: New$|Update$ variant: ^(?!.*?Expanded) hide: true - - where: - verb: New - subject: Configuration - hide: true - where: parameter-name: VirtualNetworkSubnetId subject: VirtualNetworkRule diff --git a/src/PostgreSql/run-module.ps1 b/src/PostgreSql/run-module.ps1 index b810c454d1c2..d9f249e9f4d7 100644 --- a/src/PostgreSql/run-module.ps1 +++ b/src/PostgreSql/run-module.ps1 @@ -26,7 +26,7 @@ if($isAzure) { . (Join-Path $PSScriptRoot 'check-dependencies.ps1') -Isolated -Accounts } -$localModulesPath = Join-Path $PSScriptRoot 'generated/modules' +$localModulesPath = Join-Path $PSScriptRoot 'generated\modules' if(Test-Path -Path $localModulesPath) { $env:PSModulePath = "$localModulesPath$([IO.Path]::PathSeparator)$env:PSModulePath" } diff --git a/src/PostgreSql/test-module.ps1 b/src/PostgreSql/test-module.ps1 index 472a5eb992a8..4eee1e2ba322 100644 --- a/src/PostgreSql/test-module.ps1 +++ b/src/PostgreSql/test-module.ps1 @@ -32,7 +32,7 @@ if ($requireResourceModule) { Import-Module -Name $resourceModulePSD.FullName } -$localModulesPath = Join-Path $PSScriptRoot 'generated/modules' +$localModulesPath = Join-Path $PSScriptRoot 'generated\modules' if(Test-Path -Path $localModulesPath) { $env:PSModulePath = "$localModulesPath$([IO.Path]::PathSeparator)$env:PSModulePath" } diff --git a/src/PostgreSql/test/Get-AzPostgreSqlConfiguration.Recording.json b/src/PostgreSql/test/Get-AzPostgreSqlConfiguration.Recording.json index 14efb232c1c4..d1f457c53b44 100644 --- a/src/PostgreSql/test/Get-AzPostgreSqlConfiguration.Recording.json +++ b/src/PostgreSql/test/Get-AzPostgreSqlConfiguration.Recording.json @@ -5,8 +5,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "9" ], - "x-ms-client-request-id": [ "8cd910a0-218a-4f1b-92a7-dce2b738c7fb" ], + "x-ms-unique-id": [ "10" ], + "x-ms-client-request-id": [ "9672294f-cc94-4868-a6a2-c9b5daa2bf65" ], "CommandName": [ "Get-AzPostgreSqlConfiguration" ], "FullCommandName": [ "Get-AzPostgreSqlConfiguration_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -21,21 +21,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "0fa0a70c-c3c7-4fad-b1c0-7fca620c8b55" ], + "x-ms-request-id": [ "8c353601-8617-4a8d-887e-ba90533d43bb" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "c07ae14a-1147-40d5-b0dd-87e3c1fbdc3c" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T034607Z:c07ae14a-1147-40d5-b0dd-87e3c1fbdc3c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], + "x-ms-correlation-request-id": [ "0a41400e-d472-4c93-ad02-a040e9acef14" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T110108Z:0a41400e-d472-4c93-ad02-a040e9acef14" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:46:07 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:01:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "55095" ], + "Content-Length": [ "89559" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"properties\":{\"value\":\"on\",\"description\":\"Enable input of NULL elements in arrays.\",\"defaultValue\":\"on\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/array_nulls\",\"name\":\"array_nulls\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"safe_encoding\",\"description\":\"Sets whether \\\"\\\\\u0027\\\" is allowed in string literals.\",\"defaultValue\":\"safe_encoding\",\"dataType\":\"Enumeration\",\"allowedValues\":\"safe_encoding,on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/backslash_quote\",\"name\":\"backslash_quote\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"hex\",\"description\":\"Sets the output format for bytea.\",\"defaultValue\":\"hex\",\"dataType\":\"Enumeration\",\"allowedValues\":\"escape,hex\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/bytea_output\",\"name\":\"bytea_output\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"on\",\"description\":\"Check function bodies during CREATE FUNCTION.\",\"defaultValue\":\"on\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/check_function_bodies\",\"name\":\"check_function_bodies\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"sql_ascii\",\"description\":\"Sets the client\u0027s character set encoding.\",\"defaultValue\":\"sql_ascii\",\"dataType\":\"Enumeration\",\"allowedValues\":\"BIG5,EUC_CN,EUC_JP,EUC_JIS_2004,EUC_KR,EUC_TW,GB18030,GBK,ISO_8859_5,ISO_8859_6,ISO_8859_7,ISO_8859_8,JOHAB,KOI8R,KOI8U,LATIN1,LATIN2,LATIN3,LATIN4,LATIN5,LATIN6,LATIN7,LATIN8,LATIN9,LATIN10,MULE_INTERNAL,SJIS,SHIFT_JIS_2004,SQL_ASCII,UHC,UTF8,WIN866,WIN874,WIN1250,WIN1251,WIN1252,WIN1253,WIN1254,WIN1255,WIN1256,WIN1257,WIN1258\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/client_encoding\",\"name\":\"client_encoding\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"notice\",\"description\":\"Sets the message levels that are sent to the client.\",\"defaultValue\":\"notice\",\"dataType\":\"Enumeration\",\"allowedValues\":\"debug5,debug4,debug3,debug2,debug1,log,notice,warning,error\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/client_min_messages\",\"name\":\"client_min_messages\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"partition\",\"description\":\"Enables the planner to use constraints to optimize queries.\",\"defaultValue\":\"partition\",\"dataType\":\"Enumeration\",\"allowedValues\":\"partition,on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/constraint_exclusion\",\"name\":\"constraint_exclusion\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"0.005\",\"description\":\"Sets the planner\u0027s estimate of the cost of processing each index entry during an index scan.\",\"defaultValue\":\"0.005\",\"dataType\":\"Numeric\",\"allowedValues\":\"0-1.79769e+308\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/cpu_index_tuple_cost\",\"name\":\"cpu_index_tuple_cost\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"0.0025\",\"description\":\"Sets the planner\u0027s estimate of the cost of processing each operator or function call.\",\"defaultValue\":\"0.0025\",\"dataType\":\"Numeric\",\"allowedValues\":\"0-1.79769e+308\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/cpu_operator_cost\",\"name\":\"cpu_operator_cost\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"0.01\",\"description\":\"Sets the planner\u0027s estimate of the cost of processing each tuple (row).\",\"defaultValue\":\"0.01\",\"dataType\":\"Numeric\",\"allowedValues\":\"0-1.79769e+308\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/cpu_tuple_cost\",\"name\":\"cpu_tuple_cost\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"0.1\",\"description\":\"Sets the planner\u0027s estimate of the fraction of a cursor\u0027s rows that will be retrieved.\",\"defaultValue\":\"0.1\",\"dataType\":\"Numeric\",\"allowedValues\":\"0-1\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/cursor_tuple_fraction\",\"name\":\"cursor_tuple_fraction\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"iso, mdy\",\"description\":\"Sets the display format for date and time values.\",\"defaultValue\":\"iso, mdy\",\"dataType\":\"String\",\"allowedValues\":\"(iso|postgres|sql|german)\\\\,\\\\s(dmy|mdy|ymd)\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/datestyle\",\"name\":\"datestyle\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"1000\",\"description\":\"Sets the amount of time, in milliseconds, to wait on a lock before checking for deadlock.\",\"defaultValue\":\"1000\",\"dataType\":\"Integer\",\"allowedValues\":\"1-2147483647\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/deadlock_timeout\",\"name\":\"deadlock_timeout\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"off\",\"description\":\"Logs each query\u0027s execution plan.\",\"defaultValue\":\"off\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/debug_print_plan\",\"name\":\"debug_print_plan\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"off\",\"description\":\"Logs each query\u0027s rewritten parse tree.\",\"defaultValue\":\"off\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/debug_print_rewritten\",\"name\":\"debug_print_rewritten\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"100\",\"description\":\"Sets the default statistics target.\",\"defaultValue\":\"100\",\"dataType\":\"Integer\",\"allowedValues\":\"1-10000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/default_statistics_target\",\"name\":\"default_statistics_target\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"pg_catalog.english\",\"description\":\"Sets default text search configuration.\",\"defaultValue\":\"pg_catalog.english\",\"dataType\":\"String\",\"allowedValues\":\"[A-Za-z\\\\._]+\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/default_text_search_config\",\"name\":\"default_text_search_config\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"off\",\"description\":\"Sets the default deferrable status of new transactions.\",\"defaultValue\":\"off\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/default_transaction_deferrable\",\"name\":\"default_transaction_deferrable\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"read committed\",\"description\":\"Sets the transaction isolation level of each new transaction.\",\"defaultValue\":\"read committed\",\"dataType\":\"Enumeration\",\"allowedValues\":\"serializable,repeatable read,read committed,read uncommitted\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/default_transaction_isolation\",\"name\":\"default_transaction_isolation\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"off\",\"description\":\"Sets the default read-only status of new transactions.\",\"defaultValue\":\"off\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/default_transaction_read_only\",\"name\":\"default_transaction_read_only\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"off\",\"description\":\"Create new tables with OIDs by default.\",\"defaultValue\":\"off\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/default_with_oids\",\"name\":\"default_with_oids\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"on\",\"description\":\"Enables the planner\u0027s use of bitmap-scan plans.\",\"defaultValue\":\"on\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/enable_bitmapscan\",\"name\":\"enable_bitmapscan\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"on\",\"description\":\"Enables the planner\u0027s use of hashed aggregation plans.\",\"defaultValue\":\"on\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/enable_hashagg\",\"name\":\"enable_hashagg\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"on\",\"description\":\"Enables the planner\u0027s use of hash join plans.\",\"defaultValue\":\"on\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/enable_hashjoin\",\"name\":\"enable_hashjoin\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"on\",\"description\":\"Enables the planner\u0027s use of index-only-scan plans.\",\"defaultValue\":\"on\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/enable_indexonlyscan\",\"name\":\"enable_indexonlyscan\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"on\",\"description\":\"Enables the planner\u0027s use of index-scan plans.\",\"defaultValue\":\"on\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/enable_indexscan\",\"name\":\"enable_indexscan\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"on\",\"description\":\"Enables the planner\u0027s use of materialization.\",\"defaultValue\":\"on\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/enable_material\",\"name\":\"enable_material\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"on\",\"description\":\"Enables the planner\u0027s use of merge join plans.\",\"defaultValue\":\"on\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/enable_mergejoin\",\"name\":\"enable_mergejoin\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"on\",\"description\":\"Enables the planner\u0027s use of nested-loop join plans.\",\"defaultValue\":\"on\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/enable_nestloop\",\"name\":\"enable_nestloop\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"on\",\"description\":\"Enables the planner\u0027s use of sequential-scan plans.\",\"defaultValue\":\"on\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/enable_seqscan\",\"name\":\"enable_seqscan\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"on\",\"description\":\"Enables the planner\u0027s use of explicit sort steps.\",\"defaultValue\":\"on\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/enable_sort\",\"name\":\"enable_sort\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"on\",\"description\":\"Enables the planner\u0027s use of TID scan plans.\",\"defaultValue\":\"on\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/enable_tidscan\",\"name\":\"enable_tidscan\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"on\",\"description\":\"Warn about backslash escapes in ordinary string literals.\",\"defaultValue\":\"on\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/escape_string_warning\",\"name\":\"escape_string_warning\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"off\",\"description\":\"Terminate session on any error.\",\"defaultValue\":\"off\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/exit_on_error\",\"name\":\"exit_on_error\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"Sets the number of digits displayed for floating-point values.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"-15-3\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/extra_float_digits\",\"name\":\"extra_float_digits\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"8\",\"description\":\"Sets the FROM-list size beyond which subqueries are not collapsed.\",\"defaultValue\":\"8\",\"dataType\":\"Integer\",\"allowedValues\":\"1-2147483647\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/from_collapse_limit\",\"name\":\"from_collapse_limit\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"on\",\"description\":\"Enables genetic query optimization.\",\"defaultValue\":\"on\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/geqo\",\"name\":\"geqo\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"5\",\"description\":\"GEQO: effort is used to set the default for other GEQO parameters.\",\"defaultValue\":\"5\",\"dataType\":\"Integer\",\"allowedValues\":\"1-10\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/geqo_effort\",\"name\":\"geqo_effort\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"GEQO: number of iterations of the algorithm.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-2147483647\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/geqo_generations\",\"name\":\"geqo_generations\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"GEQO: number of individuals in the population.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-2147483647\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/geqo_pool_size\",\"name\":\"geqo_pool_size\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"0.0\",\"description\":\"GEQO: seed for random path selection.\",\"defaultValue\":\"0.0\",\"dataType\":\"Numeric\",\"allowedValues\":\"0-1\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/geqo_seed\",\"name\":\"geqo_seed\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"2.0\",\"description\":\"GEQO: selective pressure within the population.\",\"defaultValue\":\"2.0\",\"dataType\":\"Numeric\",\"allowedValues\":\"1.5-2\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/geqo_selection_bias\",\"name\":\"geqo_selection_bias\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"12\",\"description\":\"Sets the threshold of FROM items beyond which GEQO is used.\",\"defaultValue\":\"12\",\"dataType\":\"Integer\",\"allowedValues\":\"2-2147483647\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/geqo_threshold\",\"name\":\"geqo_threshold\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"Sets the maximum allowed result for exact search by GIN.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-2147483647\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/gin_fuzzy_search_limit\",\"name\":\"gin_fuzzy_search_limit\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"postgres\",\"description\":\"Sets the display format for interval values.\",\"defaultValue\":\"postgres\",\"dataType\":\"Enumeration\",\"allowedValues\":\"postgres,postgres_verbose,sql_standard,iso_8601\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/intervalstyle\",\"name\":\"intervalstyle\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"8\",\"description\":\"Sets the FROM-list size beyond which JOIN constructs are not flattened.\",\"defaultValue\":\"8\",\"dataType\":\"Integer\",\"allowedValues\":\"1-2147483647\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/join_collapse_limit\",\"name\":\"join_collapse_limit\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"Sets the maximum allowed duration (in milliseconds) of any wait for a lock. 0 turns this off.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-2147483647\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/lock_timeout\",\"name\":\"lock_timeout\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"on\",\"description\":\"Logs each checkpoint.\",\"defaultValue\":\"on\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/log_checkpoints\",\"name\":\"log_checkpoints\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"on\",\"description\":\"Logs each successful connection.\",\"defaultValue\":\"on\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/log_connections\",\"name\":\"log_connections\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"off\",\"description\":\"Logs end of a session, including duration.\",\"defaultValue\":\"off\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/log_disconnections\",\"name\":\"log_disconnections\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"off\",\"description\":\"Logs the duration of each completed SQL statement.\",\"defaultValue\":\"off\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/log_duration\",\"name\":\"log_duration\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"default\",\"description\":\"Sets the verbosity of logged messages.\",\"defaultValue\":\"default\",\"dataType\":\"Enumeration\",\"allowedValues\":\"terse,default,verbose\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/log_error_verbosity\",\"name\":\"log_error_verbosity\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"%t-%c-\",\"description\":\"Sets the printf-style string that is output at the beginning of each log line.\",\"defaultValue\":\"%t-%c-\",\"dataType\":\"String\",\"allowedValues\":\".*\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/log_line_prefix\",\"name\":\"log_line_prefix\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"off\",\"description\":\"Logs long lock waits.\",\"defaultValue\":\"off\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/log_lock_waits\",\"name\":\"log_lock_waits\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"-1\",\"description\":\"Sets the minimum execution time (in milliseconds) above which statements will be logged. -1 disables logging statement durations.\",\"defaultValue\":\"-1\",\"dataType\":\"Integer\",\"allowedValues\":\"-1-2147483647\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/log_min_duration_statement\",\"name\":\"log_min_duration_statement\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"error\",\"description\":\"Causes all statements generating error at or above this level to be logged.\",\"defaultValue\":\"error\",\"dataType\":\"Enumeration\",\"allowedValues\":\"debug5,debug4,debug3,debug2,debug1,info,notice,warning,error,log,fatal,panic\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/log_min_error_statement\",\"name\":\"log_min_error_statement\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"warning\",\"description\":\"Sets the message levels that are logged.\",\"defaultValue\":\"warning\",\"dataType\":\"Enumeration\",\"allowedValues\":\"debug5,debug4,debug3,debug2,debug1,info,notice,warning,error,log,fatal,panic\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/log_min_messages\",\"name\":\"log_min_messages\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"none\",\"description\":\"Sets the type of statements logged.\",\"defaultValue\":\"none\",\"dataType\":\"Enumeration\",\"allowedValues\":\"none,ddl,mod,all\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/log_statement\",\"name\":\"log_statement\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"off\",\"description\":\"For each query, writes cumulative performance statistics to the server log.\",\"defaultValue\":\"off\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/log_statement_stats\",\"name\":\"log_statement_stats\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"Sets the maximum number of simultaneously prepared transactions. Any change requires restarting the server to take effect. When running a replica server, you must set this parameter to the same or higher value than on the master server.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-8388607\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/max_prepared_transactions\",\"name\":\"max_prepared_transactions\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"off\",\"description\":\"When generating SQL fragments, quote all identifiers.\",\"defaultValue\":\"off\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/quote_all_identifiers\",\"name\":\"quote_all_identifiers\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"4.0\",\"description\":\"Sets the planner\u0027s estimate of the cost of a nonsequentially fetched disk page.\",\"defaultValue\":\"4.0\",\"dataType\":\"Numeric\",\"allowedValues\":\"0-1.79769e+308\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/random_page_cost\",\"name\":\"random_page_cost\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"\\\"$user\\\", public\",\"description\":\"Sets the schema search order for names that are not schema-qualified.\",\"defaultValue\":\"\\\"$user\\\", public\",\"dataType\":\"String\",\"allowedValues\":\"[A-Za-z.\\\"$, ]+\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/search_path\",\"name\":\"search_path\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"1.0\",\"description\":\"Sets the planner\u0027s estimate of the cost of a sequentially fetched disk page.\",\"defaultValue\":\"1.0\",\"dataType\":\"Numeric\",\"allowedValues\":\"0-1.79769e+308\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/seq_page_cost\",\"name\":\"seq_page_cost\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"on\",\"description\":\"Causes subtables to be included by default in various commands.\",\"defaultValue\":\"on\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/sql_inheritance\",\"name\":\"sql_inheritance\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"Sets the maximum allowed duration (in milliseconds) of any statement. 0 turns this off.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-2147483647\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/statement_timeout\",\"name\":\"statement_timeout\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"on\",\"description\":\"Enable synchronized sequential scans.\",\"defaultValue\":\"on\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/synchronize_seqscans\",\"name\":\"synchronize_seqscans\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"on\",\"description\":\"Sets the current transaction\u0027s synchronization level.\",\"defaultValue\":\"on\",\"dataType\":\"Enumeration\",\"allowedValues\":\"local,remote_write,on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/synchronous_commit\",\"name\":\"synchronous_commit\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"off\",\"description\":\"Treats \\\"expr=NULL\\\" as \\\"expr IS NULL\\\".\",\"defaultValue\":\"off\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/transform_null_equals\",\"name\":\"transform_null_equals\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"base64\",\"description\":\"Sets how binary values are to be encoded in XML.\",\"defaultValue\":\"base64\",\"dataType\":\"Enumeration\",\"allowedValues\":\"base64,hex\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/xmlbinary\",\"name\":\"xmlbinary\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"content\",\"description\":\"Sets whether XML data in implicit parsing and serialization operations is to be considered as documents or content fragments.\",\"defaultValue\":\"content\",\"dataType\":\"Enumeration\",\"allowedValues\":\"content,document\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/xmloption\",\"name\":\"xmloption\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"off\",\"description\":\"Forces use of parallel query facilities.\",\"defaultValue\":\"off\",\"dataType\":\"Enumeration\",\"allowedValues\":\"off,on,regress\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/force_parallel_mode\",\"name\":\"force_parallel_mode\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"Sets the maximum allowed duration of any idling transaction. Unit is ms.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-2147483647\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/idle_in_transaction_session_timeout\",\"name\":\"idle_in_transaction_session_timeout\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"Sets the maximum number of parallel processes per executor node.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-1024\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/max_parallel_workers_per_gather\",\"name\":\"max_parallel_workers_per_gather\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"8388608\",\"description\":\"Sets the minimum size of relations to be considered for parallel scan. Unit is 8kb.\",\"defaultValue\":\"8388608\",\"dataType\":\"Integer\",\"allowedValues\":\"0-715827882\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/min_parallel_relation_size\",\"name\":\"min_parallel_relation_size\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"1000\",\"description\":\"Sets the planner\u0027s estimate of the cost of starting up worker processes for parallel query.\",\"defaultValue\":\"1000\",\"dataType\":\"Numeric\",\"allowedValues\":\"0-1.79769e+308\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/parallel_setup_cost\",\"name\":\"parallel_setup_cost\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"0.1\",\"description\":\"Sets the planner\u0027s estimate of the cost of passing each tuple (row) from worker to master backend.\",\"defaultValue\":\"0.1\",\"dataType\":\"Numeric\",\"allowedValues\":\"0-1.79769e+308\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/parallel_tuple_cost\",\"name\":\"parallel_tuple_cost\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"4096\",\"description\":\"Sets the amount of memory to be used by internal sort operations and hash tables before writing to temporary disk files. Unit is kb.\",\"defaultValue\":\"4096\",\"dataType\":\"Integer\",\"allowedValues\":\"4096-2097151\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/work_mem\",\"name\":\"work_mem\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"8192\",\"description\":\"Sets the maximum number of temporary buffers used by each database session. Unit is 8kb.\",\"defaultValue\":\"8192\",\"dataType\":\"Integer\",\"allowedValues\":\"8192-16384\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/temp_buffers\",\"name\":\"temp_buffers\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"on\",\"description\":\"Enables temporary connection throttling per IP for too many invalid password login failures.\",\"defaultValue\":\"on\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/connection_throttling\",\"name\":\"connection_throttling\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"3\",\"description\":\"Sets how many days a log file is saved for.\",\"defaultValue\":\"3\",\"dataType\":\"Integer\",\"allowedValues\":\"1-7\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/log_retention_days\",\"name\":\"log_retention_days\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"6000\",\"description\":\"Sets the maximum query text length that will be saved; longer queries will be truncated.\",\"defaultValue\":\"6000\",\"dataType\":\"Integer\",\"allowedValues\":\"100-10000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/pg_qs.max_query_text_length\",\"name\":\"pg_qs.max_query_text_length\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"none\",\"description\":\"Selects which statements are tracked by pg_qs.\",\"defaultValue\":\"none\",\"dataType\":\"Enumeration\",\"allowedValues\":\"all,top,none\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/pg_qs.query_capture_mode\",\"name\":\"pg_qs.query_capture_mode\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"7\",\"description\":\"Sets the retention period window in days for pg_qs - after this time data will be deleted.\",\"defaultValue\":\"7\",\"dataType\":\"Integer\",\"allowedValues\":\"1-30\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/pg_qs.retention_period_in_days\",\"name\":\"pg_qs.retention_period_in_days\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"off\",\"description\":\"Selects whether parameter placeholders are replaced in parameterized queries.\",\"defaultValue\":\"off\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/pg_qs.replace_parameter_placeholders\",\"name\":\"pg_qs.replace_parameter_placeholders\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"on\",\"description\":\"Selects whether utility commands are tracked by pg_qs.\",\"defaultValue\":\"on\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/pg_qs.track_utility\",\"name\":\"pg_qs.track_utility\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"top\",\"description\":\"Controls which statements are counted by pg_stat_statements.\",\"defaultValue\":\"top\",\"dataType\":\"Enumeration\",\"allowedValues\":\"top,all,none\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/pg_stat_statements.track\",\"name\":\"pg_stat_statements.track\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"none\",\"description\":\"Selects which statements are tracked by the pgms_wait_sampling extension.\",\"defaultValue\":\"none\",\"dataType\":\"Enumeration\",\"allowedValues\":\"all,none\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/pgms_wait_sampling.query_capture_mode\",\"name\":\"pgms_wait_sampling.query_capture_mode\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"100\",\"description\":\"Set the frequency, in milliseconds, at which wait events are sampled.\",\"defaultValue\":\"100\",\"dataType\":\"Integer\",\"allowedValues\":\"1-600000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/pgms_wait_sampling.history_period\",\"name\":\"pgms_wait_sampling.history_period\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"DISABLE_ALL\",\"description\":\"Controls postgis GDAL enabled driver settings.\",\"defaultValue\":\"DISABLE_ALL\",\"dataType\":\"Enumeration\",\"allowedValues\":\"DISABLE_ALL,ENABLE_ALL\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/postgis.gdal_enabled_drivers\",\"name\":\"postgis.gdal_enabled_drivers\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"30000\",\"description\":\"Sets the maximum delay before canceling queries when a hot standby server is processing archived WAL data. Unit is ms.\",\"defaultValue\":\"30000\",\"dataType\":\"Integer\",\"allowedValues\":\"-1-2147483647\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/max_standby_archive_delay\",\"name\":\"max_standby_archive_delay\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"30000\",\"description\":\"Sets the maximum delay before canceling queries when a hot standby server is processing streamed WAL data. Unit is ms.\",\"defaultValue\":\"30000\",\"dataType\":\"Integer\",\"allowedValues\":\"-1-2147483647\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/max_standby_streaming_delay\",\"name\":\"max_standby_streaming_delay\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"UTC\",\"description\":\"Sets the time zone for displaying and interpreting time stamps\",\"defaultValue\":\"UTC\",\"dataType\":\"String\",\"allowedValues\":\"[A-Za-z0-9/+-_]+\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/timezone\",\"name\":\"timezone\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"\",\"description\":\"Sets which shared libraries are preloaded at server start. Any change requires a restart to take effect.\",\"defaultValue\":\"\",\"dataType\":\"Set\",\"allowedValues\":\",pgaudit,timescaledb\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/shared_preload_libraries\",\"name\":\"shared_preload_libraries\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"Number of transactions by which VACUUM and HOT cleanup should be deferred, if any.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-1000000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/vacuum_defer_cleanup_age\",\"name\":\"vacuum_defer_cleanup_age\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"REPLICA\",\"description\":\"Sets the level of replication support (Read Replicas). Any change requires restarting the server to take effect.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"OFF,REPLICA,LOGICAL\",\"source\":\"user-override\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/azure.replication_support\",\"name\":\"azure.replication_support\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"10\",\"description\":\"Specifies the maximum number of concurrent connections from standby servers or streaming base backup clients (i.e., the maximum number of simultaneously running WAL sender processes).\",\"defaultValue\":\"10\",\"dataType\":\"Integer\",\"allowedValues\":\"10-50\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/max_wal_senders\",\"name\":\"max_wal_senders\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"10\",\"description\":\"Specifies the maximum number of replication slots that the server can support.\",\"defaultValue\":\"10\",\"dataType\":\"Integer\",\"allowedValues\":\"10-50\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/max_replication_slots\",\"name\":\"max_replication_slots\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"off\",\"description\":\"Allows feedback from a hot standby to the primary that will avoid query conflicts.\",\"defaultValue\":\"off\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/hot_standby_feedback\",\"name\":\"hot_standby_feedback\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"on\",\"description\":\"Enable .log files. Setting is independent of Azure Monitor logging options. Any change requires restarting the server to take effect.\",\"defaultValue\":\"on\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/logging_collector\",\"name\":\"logging_collector\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"}]}" + "Content": "{\"value\":[{\"properties\":{\"value\":\"on\",\"description\":\"Enable input of NULL elements in arrays.\",\"defaultValue\":\"on\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/array_nulls\",\"name\":\"array_nulls\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"safe_encoding\",\"description\":\"Sets whether \\\"\\\\\u0027\\\" is allowed in string literals.\",\"defaultValue\":\"safe_encoding\",\"dataType\":\"Enumeration\",\"allowedValues\":\"safe_encoding,on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/backslash_quote\",\"name\":\"backslash_quote\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"hex\",\"description\":\"Sets the output format for bytea.\",\"defaultValue\":\"hex\",\"dataType\":\"Enumeration\",\"allowedValues\":\"escape,hex\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/bytea_output\",\"name\":\"bytea_output\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"on\",\"description\":\"Check function bodies during CREATE FUNCTION.\",\"defaultValue\":\"on\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/check_function_bodies\",\"name\":\"check_function_bodies\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"sql_ascii\",\"description\":\"Sets the client\u0027s character set encoding.\",\"defaultValue\":\"sql_ascii\",\"dataType\":\"Enumeration\",\"allowedValues\":\"BIG5,EUC_CN,EUC_JP,EUC_JIS_2004,EUC_KR,EUC_TW,GB18030,GBK,ISO_8859_5,ISO_8859_6,ISO_8859_7,ISO_8859_8,JOHAB,KOI8R,KOI8U,LATIN1,LATIN2,LATIN3,LATIN4,LATIN5,LATIN6,LATIN7,LATIN8,LATIN9,LATIN10,MULE_INTERNAL,SJIS,SHIFT_JIS_2004,SQL_ASCII,UHC,UTF8,WIN866,WIN874,WIN1250,WIN1251,WIN1252,WIN1253,WIN1254,WIN1255,WIN1256,WIN1257,WIN1258\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/client_encoding\",\"name\":\"client_encoding\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"notice\",\"description\":\"Sets the message levels that are sent to the client.\",\"defaultValue\":\"notice\",\"dataType\":\"Enumeration\",\"allowedValues\":\"debug5,debug4,debug3,debug2,debug1,log,notice,warning,error\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/client_min_messages\",\"name\":\"client_min_messages\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"partition\",\"description\":\"Enables the planner to use constraints to optimize queries.\",\"defaultValue\":\"partition\",\"dataType\":\"Enumeration\",\"allowedValues\":\"partition,on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/constraint_exclusion\",\"name\":\"constraint_exclusion\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"0.005\",\"description\":\"Sets the planner\u0027s estimate of the cost of processing each index entry during an index scan.\",\"defaultValue\":\"0.005\",\"dataType\":\"Numeric\",\"allowedValues\":\"0-1.79769e+308\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/cpu_index_tuple_cost\",\"name\":\"cpu_index_tuple_cost\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"0.0025\",\"description\":\"Sets the planner\u0027s estimate of the cost of processing each operator or function call.\",\"defaultValue\":\"0.0025\",\"dataType\":\"Numeric\",\"allowedValues\":\"0-1.79769e+308\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/cpu_operator_cost\",\"name\":\"cpu_operator_cost\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"0.01\",\"description\":\"Sets the planner\u0027s estimate of the cost of processing each tuple (row).\",\"defaultValue\":\"0.01\",\"dataType\":\"Numeric\",\"allowedValues\":\"0-1.79769e+308\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/cpu_tuple_cost\",\"name\":\"cpu_tuple_cost\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"0.1\",\"description\":\"Sets the planner\u0027s estimate of the fraction of a cursor\u0027s rows that will be retrieved.\",\"defaultValue\":\"0.1\",\"dataType\":\"Numeric\",\"allowedValues\":\"0-1\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/cursor_tuple_fraction\",\"name\":\"cursor_tuple_fraction\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"iso, mdy\",\"description\":\"Sets the display format for date and time values.\",\"defaultValue\":\"iso, mdy\",\"dataType\":\"String\",\"allowedValues\":\"(iso|postgres|sql|german)\\\\,\\\\s(dmy|mdy|ymd)\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/datestyle\",\"name\":\"datestyle\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"1000\",\"description\":\"Sets the amount of time, in milliseconds, to wait on a lock before checking for deadlock.\",\"defaultValue\":\"1000\",\"dataType\":\"Integer\",\"allowedValues\":\"1-2147483647\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/deadlock_timeout\",\"name\":\"deadlock_timeout\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"off\",\"description\":\"Logs each query\u0027s execution plan.\",\"defaultValue\":\"off\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/debug_print_plan\",\"name\":\"debug_print_plan\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"off\",\"description\":\"Logs each query\u0027s rewritten parse tree.\",\"defaultValue\":\"off\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/debug_print_rewritten\",\"name\":\"debug_print_rewritten\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"100\",\"description\":\"Sets the default statistics target.\",\"defaultValue\":\"100\",\"dataType\":\"Integer\",\"allowedValues\":\"1-10000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/default_statistics_target\",\"name\":\"default_statistics_target\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"pg_catalog.english\",\"description\":\"Sets default text search configuration.\",\"defaultValue\":\"pg_catalog.english\",\"dataType\":\"String\",\"allowedValues\":\"[A-Za-z\\\\._]+\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/default_text_search_config\",\"name\":\"default_text_search_config\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"off\",\"description\":\"Sets the default deferrable status of new transactions.\",\"defaultValue\":\"off\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/default_transaction_deferrable\",\"name\":\"default_transaction_deferrable\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"read committed\",\"description\":\"Sets the transaction isolation level of each new transaction.\",\"defaultValue\":\"read committed\",\"dataType\":\"Enumeration\",\"allowedValues\":\"serializable,repeatable read,read committed,read uncommitted\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/default_transaction_isolation\",\"name\":\"default_transaction_isolation\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"off\",\"description\":\"Sets the default read-only status of new transactions.\",\"defaultValue\":\"off\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/default_transaction_read_only\",\"name\":\"default_transaction_read_only\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"off\",\"description\":\"Create new tables with OIDs by default.\",\"defaultValue\":\"off\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/default_with_oids\",\"name\":\"default_with_oids\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"on\",\"description\":\"Enables the planner\u0027s use of bitmap-scan plans.\",\"defaultValue\":\"on\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/enable_bitmapscan\",\"name\":\"enable_bitmapscan\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"on\",\"description\":\"Enables the planner\u0027s use of hashed aggregation plans.\",\"defaultValue\":\"on\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/enable_hashagg\",\"name\":\"enable_hashagg\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"on\",\"description\":\"Enables the planner\u0027s use of hash join plans.\",\"defaultValue\":\"on\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/enable_hashjoin\",\"name\":\"enable_hashjoin\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"on\",\"description\":\"Enables the planner\u0027s use of index-only-scan plans.\",\"defaultValue\":\"on\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/enable_indexonlyscan\",\"name\":\"enable_indexonlyscan\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"on\",\"description\":\"Enables the planner\u0027s use of index-scan plans.\",\"defaultValue\":\"on\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/enable_indexscan\",\"name\":\"enable_indexscan\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"on\",\"description\":\"Enables the planner\u0027s use of materialization.\",\"defaultValue\":\"on\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/enable_material\",\"name\":\"enable_material\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"on\",\"description\":\"Enables the planner\u0027s use of merge join plans.\",\"defaultValue\":\"on\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/enable_mergejoin\",\"name\":\"enable_mergejoin\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"on\",\"description\":\"Enables the planner\u0027s use of nested-loop join plans.\",\"defaultValue\":\"on\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/enable_nestloop\",\"name\":\"enable_nestloop\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"on\",\"description\":\"Enables the planner\u0027s use of sequential-scan plans.\",\"defaultValue\":\"on\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/enable_seqscan\",\"name\":\"enable_seqscan\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"on\",\"description\":\"Enables the planner\u0027s use of explicit sort steps.\",\"defaultValue\":\"on\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/enable_sort\",\"name\":\"enable_sort\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"on\",\"description\":\"Enables the planner\u0027s use of TID scan plans.\",\"defaultValue\":\"on\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/enable_tidscan\",\"name\":\"enable_tidscan\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"on\",\"description\":\"Warn about backslash escapes in ordinary string literals.\",\"defaultValue\":\"on\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/escape_string_warning\",\"name\":\"escape_string_warning\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"off\",\"description\":\"Terminate session on any error.\",\"defaultValue\":\"off\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/exit_on_error\",\"name\":\"exit_on_error\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"Sets the number of digits displayed for floating-point values.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"-15-3\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/extra_float_digits\",\"name\":\"extra_float_digits\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"8\",\"description\":\"Sets the FROM-list size beyond which subqueries are not collapsed.\",\"defaultValue\":\"8\",\"dataType\":\"Integer\",\"allowedValues\":\"1-2147483647\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/from_collapse_limit\",\"name\":\"from_collapse_limit\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"on\",\"description\":\"Enables genetic query optimization.\",\"defaultValue\":\"on\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/geqo\",\"name\":\"geqo\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"5\",\"description\":\"GEQO: effort is used to set the default for other GEQO parameters.\",\"defaultValue\":\"5\",\"dataType\":\"Integer\",\"allowedValues\":\"1-10\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/geqo_effort\",\"name\":\"geqo_effort\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"GEQO: number of iterations of the algorithm.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-2147483647\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/geqo_generations\",\"name\":\"geqo_generations\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"GEQO: number of individuals in the population.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-2147483647\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/geqo_pool_size\",\"name\":\"geqo_pool_size\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"0.0\",\"description\":\"GEQO: seed for random path selection.\",\"defaultValue\":\"0.0\",\"dataType\":\"Numeric\",\"allowedValues\":\"0-1\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/geqo_seed\",\"name\":\"geqo_seed\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"2.0\",\"description\":\"GEQO: selective pressure within the population.\",\"defaultValue\":\"2.0\",\"dataType\":\"Numeric\",\"allowedValues\":\"1.5-2\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/geqo_selection_bias\",\"name\":\"geqo_selection_bias\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"12\",\"description\":\"Sets the threshold of FROM items beyond which GEQO is used.\",\"defaultValue\":\"12\",\"dataType\":\"Integer\",\"allowedValues\":\"2-2147483647\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/geqo_threshold\",\"name\":\"geqo_threshold\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"Sets the maximum allowed result for exact search by GIN.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-2147483647\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/gin_fuzzy_search_limit\",\"name\":\"gin_fuzzy_search_limit\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"postgres\",\"description\":\"Sets the display format for interval values.\",\"defaultValue\":\"postgres\",\"dataType\":\"Enumeration\",\"allowedValues\":\"postgres,postgres_verbose,sql_standard,iso_8601\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/intervalstyle\",\"name\":\"intervalstyle\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"8\",\"description\":\"Sets the FROM-list size beyond which JOIN constructs are not flattened.\",\"defaultValue\":\"8\",\"dataType\":\"Integer\",\"allowedValues\":\"1-2147483647\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/join_collapse_limit\",\"name\":\"join_collapse_limit\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"Sets the maximum allowed duration (in milliseconds) of any wait for a lock. 0 turns this off.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-2147483647\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/lock_timeout\",\"name\":\"lock_timeout\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"on\",\"description\":\"Logs each checkpoint.\",\"defaultValue\":\"on\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/log_checkpoints\",\"name\":\"log_checkpoints\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"on\",\"description\":\"Logs each successful connection.\",\"defaultValue\":\"on\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/log_connections\",\"name\":\"log_connections\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"off\",\"description\":\"Logs end of a session, including duration.\",\"defaultValue\":\"off\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/log_disconnections\",\"name\":\"log_disconnections\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"off\",\"description\":\"Logs the duration of each completed SQL statement.\",\"defaultValue\":\"off\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/log_duration\",\"name\":\"log_duration\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"default\",\"description\":\"Sets the verbosity of logged messages.\",\"defaultValue\":\"default\",\"dataType\":\"Enumeration\",\"allowedValues\":\"terse,default,verbose\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/log_error_verbosity\",\"name\":\"log_error_verbosity\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"%t-%c-\",\"description\":\"Sets the printf-style string that is output at the beginning of each log line.\",\"defaultValue\":\"%t-%c-\",\"dataType\":\"String\",\"allowedValues\":\".*\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/log_line_prefix\",\"name\":\"log_line_prefix\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"off\",\"description\":\"Logs long lock waits.\",\"defaultValue\":\"off\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/log_lock_waits\",\"name\":\"log_lock_waits\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"-1\",\"description\":\"Sets the minimum execution time (in milliseconds) above which statements will be logged. -1 disables logging statement durations.\",\"defaultValue\":\"-1\",\"dataType\":\"Integer\",\"allowedValues\":\"-1-2147483647\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/log_min_duration_statement\",\"name\":\"log_min_duration_statement\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"error\",\"description\":\"Causes all statements generating error at or above this level to be logged.\",\"defaultValue\":\"error\",\"dataType\":\"Enumeration\",\"allowedValues\":\"debug5,debug4,debug3,debug2,debug1,info,notice,warning,error,log,fatal,panic\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/log_min_error_statement\",\"name\":\"log_min_error_statement\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"warning\",\"description\":\"Sets the message levels that are logged.\",\"defaultValue\":\"warning\",\"dataType\":\"Enumeration\",\"allowedValues\":\"debug5,debug4,debug3,debug2,debug1,info,notice,warning,error,log,fatal,panic\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/log_min_messages\",\"name\":\"log_min_messages\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"none\",\"description\":\"Sets the type of statements logged.\",\"defaultValue\":\"none\",\"dataType\":\"Enumeration\",\"allowedValues\":\"none,ddl,mod,all\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/log_statement\",\"name\":\"log_statement\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"off\",\"description\":\"For each query, writes cumulative performance statistics to the server log.\",\"defaultValue\":\"off\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/log_statement_stats\",\"name\":\"log_statement_stats\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"64\",\"description\":\"Sets the maximum number of locks per transaction. Any change requires restarting the server to take effect. When running a replica server, you must set this parameter to the same or higher value than on the master server.\",\"defaultValue\":\"64\",\"dataType\":\"Integer\",\"allowedValues\":\"10-2147483647\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/max_locks_per_transaction\",\"name\":\"max_locks_per_transaction\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"Sets the maximum number of simultaneously prepared transactions. Any change requires restarting the server to take effect. When running a replica server, you must set this parameter to the same or higher value than on the master server.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-8388607\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/max_prepared_transactions\",\"name\":\"max_prepared_transactions\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"off\",\"description\":\"When generating SQL fragments, quote all identifiers.\",\"defaultValue\":\"off\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/quote_all_identifiers\",\"name\":\"quote_all_identifiers\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"4.0\",\"description\":\"Sets the planner\u0027s estimate of the cost of a nonsequentially fetched disk page.\",\"defaultValue\":\"4.0\",\"dataType\":\"Numeric\",\"allowedValues\":\"0-1.79769e+308\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/random_page_cost\",\"name\":\"random_page_cost\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"\\\"$user\\\", public\",\"description\":\"Sets the schema search order for names that are not schema-qualified.\",\"defaultValue\":\"\\\"$user\\\", public\",\"dataType\":\"String\",\"allowedValues\":\"[A-Za-z.\\\"$, ]+\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/search_path\",\"name\":\"search_path\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"1.0\",\"description\":\"Sets the planner\u0027s estimate of the cost of a sequentially fetched disk page.\",\"defaultValue\":\"1.0\",\"dataType\":\"Numeric\",\"allowedValues\":\"0-1.79769e+308\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/seq_page_cost\",\"name\":\"seq_page_cost\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"on\",\"description\":\"Causes subtables to be included by default in various commands.\",\"defaultValue\":\"on\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/sql_inheritance\",\"name\":\"sql_inheritance\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"Sets the maximum allowed duration (in milliseconds) of any statement. 0 turns this off.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-2147483647\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/statement_timeout\",\"name\":\"statement_timeout\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"on\",\"description\":\"Enable synchronized sequential scans.\",\"defaultValue\":\"on\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/synchronize_seqscans\",\"name\":\"synchronize_seqscans\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"on\",\"description\":\"Sets the current transaction\u0027s synchronization level.\",\"defaultValue\":\"on\",\"dataType\":\"Enumeration\",\"allowedValues\":\"local,remote_write,on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/synchronous_commit\",\"name\":\"synchronous_commit\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"off\",\"description\":\"Treats \\\"expr=NULL\\\" as \\\"expr IS NULL\\\".\",\"defaultValue\":\"off\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/transform_null_equals\",\"name\":\"transform_null_equals\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"base64\",\"description\":\"Sets how binary values are to be encoded in XML.\",\"defaultValue\":\"base64\",\"dataType\":\"Enumeration\",\"allowedValues\":\"base64,hex\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/xmlbinary\",\"name\":\"xmlbinary\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"content\",\"description\":\"Sets whether XML data in implicit parsing and serialization operations is to be considered as documents or content fragments.\",\"defaultValue\":\"content\",\"dataType\":\"Enumeration\",\"allowedValues\":\"content,document\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/xmloption\",\"name\":\"xmloption\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"off\",\"description\":\"Forces use of parallel query facilities.\",\"defaultValue\":\"off\",\"dataType\":\"Enumeration\",\"allowedValues\":\"off,on,regress\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/force_parallel_mode\",\"name\":\"force_parallel_mode\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"Sets the maximum allowed duration of any idling transaction. Unit is ms.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-2147483647\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/idle_in_transaction_session_timeout\",\"name\":\"idle_in_transaction_session_timeout\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"Sets the maximum number of parallel processes per executor node.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-1024\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/max_parallel_workers_per_gather\",\"name\":\"max_parallel_workers_per_gather\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"8388608\",\"description\":\"Sets the minimum size of relations to be considered for parallel scan. Unit is 8kb.\",\"defaultValue\":\"8388608\",\"dataType\":\"Integer\",\"allowedValues\":\"0-715827882\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/min_parallel_relation_size\",\"name\":\"min_parallel_relation_size\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"1000\",\"description\":\"Sets the planner\u0027s estimate of the cost of starting up worker processes for parallel query.\",\"defaultValue\":\"1000\",\"dataType\":\"Numeric\",\"allowedValues\":\"0-1.79769e+308\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/parallel_setup_cost\",\"name\":\"parallel_setup_cost\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"0.1\",\"description\":\"Sets the planner\u0027s estimate of the cost of passing each tuple (row) from worker to master backend.\",\"defaultValue\":\"0.1\",\"dataType\":\"Numeric\",\"allowedValues\":\"0-1.79769e+308\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/parallel_tuple_cost\",\"name\":\"parallel_tuple_cost\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"4096\",\"description\":\"Sets the amount of memory to be used by internal sort operations and hash tables before writing to temporary disk files. Unit is kb.\",\"defaultValue\":\"4096\",\"dataType\":\"Integer\",\"allowedValues\":\"4096-2097151\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/work_mem\",\"name\":\"work_mem\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"8192\",\"description\":\"Sets the maximum number of temporary buffers used by each database session. Unit is 8kb.\",\"defaultValue\":\"8192\",\"dataType\":\"Integer\",\"allowedValues\":\"8192-16384\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/temp_buffers\",\"name\":\"temp_buffers\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"on\",\"description\":\"Enables temporary connection throttling per IP for too many invalid password login failures.\",\"defaultValue\":\"on\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/connection_throttling\",\"name\":\"connection_throttling\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"3\",\"description\":\"Sets how many days a log file is saved for.\",\"defaultValue\":\"3\",\"dataType\":\"Integer\",\"allowedValues\":\"1-7\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/log_retention_days\",\"name\":\"log_retention_days\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"6000\",\"description\":\"Sets the maximum query text length that will be saved; longer queries will be truncated.\",\"defaultValue\":\"6000\",\"dataType\":\"Integer\",\"allowedValues\":\"100-10000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/pg_qs.max_query_text_length\",\"name\":\"pg_qs.max_query_text_length\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"none\",\"description\":\"Selects which statements are tracked by pg_qs.\",\"defaultValue\":\"none\",\"dataType\":\"Enumeration\",\"allowedValues\":\"all,top,none\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/pg_qs.query_capture_mode\",\"name\":\"pg_qs.query_capture_mode\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"7\",\"description\":\"Sets the retention period window in days for pg_qs - after this time data will be deleted.\",\"defaultValue\":\"7\",\"dataType\":\"Integer\",\"allowedValues\":\"1-30\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/pg_qs.retention_period_in_days\",\"name\":\"pg_qs.retention_period_in_days\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"off\",\"description\":\"Selects whether parameter placeholders are replaced in parameterized queries.\",\"defaultValue\":\"off\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/pg_qs.replace_parameter_placeholders\",\"name\":\"pg_qs.replace_parameter_placeholders\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"on\",\"description\":\"Selects whether utility commands are tracked by pg_qs.\",\"defaultValue\":\"on\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/pg_qs.track_utility\",\"name\":\"pg_qs.track_utility\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"top\",\"description\":\"Controls which statements are counted by pg_stat_statements.\",\"defaultValue\":\"top\",\"dataType\":\"Enumeration\",\"allowedValues\":\"top,all,none\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/pg_stat_statements.track\",\"name\":\"pg_stat_statements.track\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"none\",\"description\":\"Selects which statements are tracked by the pgms_wait_sampling extension.\",\"defaultValue\":\"none\",\"dataType\":\"Enumeration\",\"allowedValues\":\"all,none\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/pgms_wait_sampling.query_capture_mode\",\"name\":\"pgms_wait_sampling.query_capture_mode\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"100\",\"description\":\"Set the frequency, in milliseconds, at which wait events are sampled.\",\"defaultValue\":\"100\",\"dataType\":\"Integer\",\"allowedValues\":\"1-600000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/pgms_wait_sampling.history_period\",\"name\":\"pgms_wait_sampling.history_period\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"DISABLE_ALL\",\"description\":\"Controls postgis GDAL enabled driver settings.\",\"defaultValue\":\"DISABLE_ALL\",\"dataType\":\"Enumeration\",\"allowedValues\":\"DISABLE_ALL,ENABLE_ALL\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/postgis.gdal_enabled_drivers\",\"name\":\"postgis.gdal_enabled_drivers\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"on\",\"description\":\"Starts the autovacuum subprocess.\",\"defaultValue\":\"on\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/autovacuum\",\"name\":\"autovacuum\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"0.05\",\"description\":\"Number of tuple inserts, updates, or deletes prior to analyze as a fraction of reltuples.\",\"defaultValue\":\"0.05\",\"dataType\":\"Numeric\",\"allowedValues\":\"0-100\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/autovacuum_analyze_scale_factor\",\"name\":\"autovacuum_analyze_scale_factor\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"50\",\"description\":\"Minimum number of tuple inserts, updates, or deletes prior to analyze.\",\"defaultValue\":\"50\",\"dataType\":\"Integer\",\"allowedValues\":\"0-2147483647\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/autovacuum_analyze_threshold\",\"name\":\"autovacuum_analyze_threshold\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"200000000\",\"description\":\"Age at which to autovacuum a table to prevent transaction ID wraparound. Any change requires restarting the server to take effect..\",\"defaultValue\":\"200000000\",\"dataType\":\"Integer\",\"allowedValues\":\"100000-2000000000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/autovacuum_freeze_max_age\",\"name\":\"autovacuum_freeze_max_age\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"400000000\",\"description\":\"Multixact age at which to autovacuum a table to prevent multixact wraparound. Any change requires restarting the server to take effect.\",\"defaultValue\":\"400000000\",\"dataType\":\"Integer\",\"allowedValues\":\"10000-2000000000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/autovacuum_multixact_freeze_max_age\",\"name\":\"autovacuum_multixact_freeze_max_age\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"15\",\"description\":\"Time to sleep between autovacuum runs. Unit is s.\",\"defaultValue\":\"15\",\"dataType\":\"Integer\",\"allowedValues\":\"1-2147483\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/autovacuum_naptime\",\"name\":\"autovacuum_naptime\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"20\",\"description\":\"Vacuum cost delay in milliseconds, for autovacuum.\",\"defaultValue\":\"20\",\"dataType\":\"Integer\",\"allowedValues\":\"-1-100\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/autovacuum_vacuum_cost_delay\",\"name\":\"autovacuum_vacuum_cost_delay\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"-1\",\"description\":\"Vacuum cost amount available before napping, for autovacuum.\",\"defaultValue\":\"-1\",\"dataType\":\"Integer\",\"allowedValues\":\"-1-10000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/autovacuum_vacuum_cost_limit\",\"name\":\"autovacuum_vacuum_cost_limit\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"0.05\",\"description\":\"Number of tuple updates or deletes prior to vacuum as a fraction of reltuples.\",\"defaultValue\":\"0.05\",\"dataType\":\"Numeric\",\"allowedValues\":\"0-100\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/autovacuum_vacuum_scale_factor\",\"name\":\"autovacuum_vacuum_scale_factor\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"50\",\"description\":\"Minimum number of tuple updates or deletes prior to vacuum.\",\"defaultValue\":\"50\",\"dataType\":\"Integer\",\"allowedValues\":\"0-2147483647\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/autovacuum_vacuum_threshold\",\"name\":\"autovacuum_vacuum_threshold\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"-1\",\"description\":\"Sets the maximum memory to be used by each autovacuum worker process. Unit is kb.\",\"defaultValue\":\"-1\",\"dataType\":\"Integer\",\"allowedValues\":\"-1-2097151\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/autovacuum_work_mem\",\"name\":\"autovacuum_work_mem\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"3\",\"description\":\"Sets the maximum number of simultaneously running autovacuum worker processes. Any change requires restarting the server to take effect.\",\"defaultValue\":\"3\",\"dataType\":\"Integer\",\"allowedValues\":\"1-262143\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/autovacuum_max_workers\",\"name\":\"autovacuum_max_workers\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"Number of pages after which previously performed writes are flushed to disk. Unit is 8kb.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-256\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/backend_flush_after\",\"name\":\"backend_flush_after\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"200\",\"description\":\"Background writer sleep time between rounds. Unit is ms.\",\"defaultValue\":\"200\",\"dataType\":\"Integer\",\"allowedValues\":\"10-10000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/bgwriter_delay\",\"name\":\"bgwriter_delay\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"64\",\"description\":\"Number of pages after which previously performed writes are flushed to disk. Unit is 8kb.\",\"defaultValue\":\"64\",\"dataType\":\"Integer\",\"allowedValues\":\"0-256\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/bgwriter_flush_after\",\"name\":\"bgwriter_flush_after\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"100\",\"description\":\"Background writer maximum number of LRU pages to flush per round.\",\"defaultValue\":\"100\",\"dataType\":\"Integer\",\"allowedValues\":\"0-1073741823\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/bgwriter_lru_maxpages\",\"name\":\"bgwriter_lru_maxpages\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"2\",\"description\":\"Multiple of the average buffer usage to free per round.\",\"defaultValue\":\"2\",\"dataType\":\"Numeric\",\"allowedValues\":\"0-10\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/bgwriter_lru_multiplier\",\"name\":\"bgwriter_lru_multiplier\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"30\",\"description\":\"Enables warnings if checkpoint segments are filled more frequently than this. Unit is s.\",\"defaultValue\":\"30\",\"dataType\":\"Integer\",\"allowedValues\":\"0-2147483647\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/checkpoint_warning\",\"name\":\"checkpoint_warning\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"Sets the delay in microseconds between transaction commit and flushing WAL to disk.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-100000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/commit_delay\",\"name\":\"commit_delay\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"5\",\"description\":\"Sets the minimum concurrent open transactions before performing commit_delay.\",\"defaultValue\":\"5\",\"dataType\":\"Integer\",\"allowedValues\":\"0-1000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/commit_siblings\",\"name\":\"commit_siblings\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"1310720\",\"description\":\"Sets the planner\u0027s assumption about the size of the disk cache. Unit is 8kb.\",\"defaultValue\":\"917504\",\"dataType\":\"Integer\",\"allowedValues\":\"1-2147483647\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/effective_cache_size\",\"name\":\"effective_cache_size\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"4096\",\"description\":\"Sets the maximum size of the pending list for GIN index. Unit is kb.\",\"defaultValue\":\"4096\",\"dataType\":\"Integer\",\"allowedValues\":\"64-2097151\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/gin_pending_list_limit\",\"name\":\"gin_pending_list_limit\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"English_United States.1252\",\"description\":\"Sets the locale for formatting monetary amounts.\",\"defaultValue\":\"English_United States.1252\",\"dataType\":\"String\",\"allowedValues\":\"[A-Za-z0-9\\\\._\\\\s]+\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/lc_monetary\",\"name\":\"lc_monetary\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"English_United States.1252\",\"description\":\"Sets the locale for formatting numbers.\",\"defaultValue\":\"English_United States.1252\",\"dataType\":\"String\",\"allowedValues\":\"[A-Za-z0-9\\\\._\\\\s]+\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/lc_numeric\",\"name\":\"lc_numeric\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"off\",\"description\":\"Enables backward compatibility mode for privilege checks on large objects.\",\"defaultValue\":\"off\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/lo_compat_privileges\",\"name\":\"lo_compat_privileges\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"-1\",\"description\":\"Sets the minimum execution time above which autovacuum actions will be logged. Unit is ms.\",\"defaultValue\":\"-1\",\"dataType\":\"Integer\",\"allowedValues\":\"-1-2147483647\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/log_autovacuum_min_duration\",\"name\":\"log_autovacuum_min_duration\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"off\",\"description\":\"Logs each replication command.\",\"defaultValue\":\"off\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/log_replication_commands\",\"name\":\"log_replication_commands\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"-1\",\"description\":\"Log the use of temporary files larger than this number of kilobytes.\",\"defaultValue\":\"-1\",\"dataType\":\"Integer\",\"allowedValues\":\"-1-2147483647\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/log_temp_files\",\"name\":\"log_temp_files\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"30000\",\"description\":\"Sets the maximum delay before canceling queries when a hot standby server is processing archived WAL data. Unit is ms.\",\"defaultValue\":\"30000\",\"dataType\":\"Integer\",\"allowedValues\":\"-1-2147483647\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/max_standby_archive_delay\",\"name\":\"max_standby_archive_delay\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"30000\",\"description\":\"Sets the maximum delay before canceling queries when a hot standby server is processing streamed WAL data. Unit is ms.\",\"defaultValue\":\"30000\",\"dataType\":\"Integer\",\"allowedValues\":\"-1-2147483647\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/max_standby_streaming_delay\",\"name\":\"max_standby_streaming_delay\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"1024\",\"description\":\"Sets the WAL size that triggers a checkpoint. Unit is 16MB.\",\"defaultValue\":\"1024\",\"dataType\":\"Integer\",\"allowedValues\":\"2-2097151\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/max_wal_size\",\"name\":\"max_wal_size\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"256\",\"description\":\"Sets the minimum size to shrink the WAL to. Unit is 16MB.\",\"defaultValue\":\"512\",\"dataType\":\"Integer\",\"allowedValues\":\"2-2097151\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/min_wal_size\",\"name\":\"min_wal_size\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"-1\",\"description\":\"Time before a snapshot is too old to read pages changed after the snapshot was taken. Any change requires restarting the server to take effect. Unit is min.\",\"defaultValue\":\"-1\",\"dataType\":\"Integer\",\"allowedValues\":\"-1-86400\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/old_snapshot_threshold\",\"name\":\"old_snapshot_threshold\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"off\",\"description\":\"Emit a warning for constructs that changed meaning since PostgreSQL 9.4.\",\"defaultValue\":\"off\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/operator_precedence_warning\",\"name\":\"operator_precedence_warning\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"5000\",\"description\":\"Sets the maximum number of statements tracked by pg_stat_statements. Any change requires restarting the server to take effect.\",\"defaultValue\":\"5000\",\"dataType\":\"Integer\",\"allowedValues\":\"100-2147483647\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/pg_stat_statements.max\",\"name\":\"pg_stat_statements.max\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"on\",\"description\":\"Save pg_stat_statements statistics across server shutdowns.\",\"defaultValue\":\"on\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/pg_stat_statements.save\",\"name\":\"pg_stat_statements.save\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"on\",\"description\":\"Selects whether utility commands are tracked by pg_stat_statements.\",\"defaultValue\":\"on\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/pg_stat_statements.track_utility\",\"name\":\"pg_stat_statements.track_utility\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"150000\",\"description\":\"Sets the maximum number of tuples to be sorted using replacement selection.\",\"defaultValue\":\"150000\",\"dataType\":\"Integer\",\"allowedValues\":\"0-2147483647\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/replacement_sort_tuples\",\"name\":\"replacement_sort_tuples\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"on\",\"description\":\"Enable row security.\",\"defaultValue\":\"on\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/row_security\",\"name\":\"row_security\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"origin\",\"description\":\"Sets the session\u0027s behavior for triggers and rewrite rules.\",\"defaultValue\":\"origin\",\"dataType\":\"Enumeration\",\"allowedValues\":\"origin,replica,local\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/session_replication_role\",\"name\":\"session_replication_role\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"Maximum number of TCP keepalive retransmits.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-2147483647\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/tcp_keepalives_count\",\"name\":\"tcp_keepalives_count\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"Time between issuing TCP keepalives. Unit is s.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-2147483647\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/tcp_keepalives_idle\",\"name\":\"tcp_keepalives_idle\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"Time between TCP keepalive retransmits. Unit is s.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-2147483647\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/tcp_keepalives_interval\",\"name\":\"tcp_keepalives_interval\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"on\",\"description\":\"Collects information about executing commands.\",\"defaultValue\":\"on\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/track_activities\",\"name\":\"track_activities\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"1024\",\"description\":\"Sets the size reserved for pg_stat_activity.query, in bytes. Any change requires restarting the server to take effect.\",\"defaultValue\":\"1024\",\"dataType\":\"Integer\",\"allowedValues\":\"100-102400\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/track_activity_query_size\",\"name\":\"track_activity_query_size\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"off\",\"description\":\"Collects transaction commit time. Any change requires restarting the server to take effect.\",\"defaultValue\":\"off\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/track_commit_timestamp\",\"name\":\"track_commit_timestamp\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"on\",\"description\":\"Collects statistics on database activity.\",\"defaultValue\":\"on\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/track_counts\",\"name\":\"track_counts\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"none\",\"description\":\"Collects function-level statistics on database activity.\",\"defaultValue\":\"none\",\"dataType\":\"Enumeration\",\"allowedValues\":\"none,pl,all\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/track_functions\",\"name\":\"track_functions\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"on\",\"description\":\"Collects timing statistics for database I/O activity.\",\"defaultValue\":\"on\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/track_io_timing\",\"name\":\"track_io_timing\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"UTC\",\"description\":\"Sets the time zone for displaying and interpreting time stamps\",\"defaultValue\":\"UTC\",\"dataType\":\"String\",\"allowedValues\":\"[A-Za-z0-9/+-_]+\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/timezone\",\"name\":\"timezone\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"\",\"description\":\"Sets which shared libraries are preloaded at server start. Any change requires a restart to take effect.\",\"defaultValue\":\"\",\"dataType\":\"Set\",\"allowedValues\":\",pgaudit,timescaledb\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/shared_preload_libraries\",\"name\":\"shared_preload_libraries\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"Vacuum cost delay in milliseconds.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-100\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/vacuum_cost_delay\",\"name\":\"vacuum_cost_delay\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"200\",\"description\":\"Vacuum cost amount available before napping.\",\"defaultValue\":\"200\",\"dataType\":\"Integer\",\"allowedValues\":\"1-10000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/vacuum_cost_limit\",\"name\":\"vacuum_cost_limit\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"20\",\"description\":\"Vacuum cost for a page dirtied by vacuum.\",\"defaultValue\":\"20\",\"dataType\":\"Integer\",\"allowedValues\":\"0-10000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/vacuum_cost_page_dirty\",\"name\":\"vacuum_cost_page_dirty\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"1\",\"description\":\"Vacuum cost for a page found in the buffer cache.\",\"defaultValue\":\"1\",\"dataType\":\"Integer\",\"allowedValues\":\"0-10000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/vacuum_cost_page_hit\",\"name\":\"vacuum_cost_page_hit\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"10\",\"description\":\"Vacuum cost for a page not found in the buffer cache.\",\"defaultValue\":\"10\",\"dataType\":\"Integer\",\"allowedValues\":\"0-10000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/vacuum_cost_page_miss\",\"name\":\"vacuum_cost_page_miss\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"Number of transactions by which VACUUM and HOT cleanup should be deferred, if any.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-1000000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/vacuum_defer_cleanup_age\",\"name\":\"vacuum_defer_cleanup_age\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"50000000\",\"description\":\"Minimum age at which VACUUM should freeze a table row.\",\"defaultValue\":\"50000000\",\"dataType\":\"Integer\",\"allowedValues\":\"0-1000000000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/vacuum_freeze_min_age\",\"name\":\"vacuum_freeze_min_age\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"150000000\",\"description\":\"Age at which VACUUM should scan whole table to freeze tuples.\",\"defaultValue\":\"150000000\",\"dataType\":\"Integer\",\"allowedValues\":\"0-2000000000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/vacuum_freeze_table_age\",\"name\":\"vacuum_freeze_table_age\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"5000000\",\"description\":\"Minimum age at which VACUUM should freeze a MultiXactId in a table row.\",\"defaultValue\":\"5000000\",\"dataType\":\"Integer\",\"allowedValues\":\"0-1000000000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/vacuum_multixact_freeze_min_age\",\"name\":\"vacuum_multixact_freeze_min_age\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"150000000\",\"description\":\"Multixact age at which VACUUM should scan whole table to freeze tuples.\",\"defaultValue\":\"150000000\",\"dataType\":\"Integer\",\"allowedValues\":\"0-2000000000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/vacuum_multixact_freeze_table_age\",\"name\":\"vacuum_multixact_freeze_table_age\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"8192\",\"description\":\"Sets the number of disk-page buffers in shared memory for WAL. Any change requires restarting the server to take effect. Unit is 8kb.\",\"defaultValue\":\"8192\",\"dataType\":\"Integer\",\"allowedValues\":\"-1-262143\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/wal_buffers\",\"name\":\"wal_buffers\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"10\",\"description\":\"Sets the maximum interval between WAL receiver status reports to the primary. Unit is s.\",\"defaultValue\":\"10\",\"dataType\":\"Integer\",\"allowedValues\":\"0-2147483\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/wal_receiver_status_interval\",\"name\":\"wal_receiver_status_interval\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"200\",\"description\":\"Time between WAL flushes performed in the WAL writer. Unit is ms.\",\"defaultValue\":\"200\",\"dataType\":\"Integer\",\"allowedValues\":\"1-10000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/wal_writer_delay\",\"name\":\"wal_writer_delay\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"128\",\"description\":\"Amount of WAL written out by WAL writer that triggers a flush. Unit is 8kb.\",\"defaultValue\":\"128\",\"dataType\":\"Integer\",\"allowedValues\":\"0-2147483647\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/wal_writer_flush_after\",\"name\":\"wal_writer_flush_after\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"262144\",\"description\":\"Sets the maximum memory to be used for maintenance operations. Unit is kb.\",\"defaultValue\":\"131072\",\"dataType\":\"Integer\",\"allowedValues\":\"1024-2097151\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/maintenance_work_mem\",\"name\":\"maintenance_work_mem\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"REPLICA\",\"description\":\"Sets the level of replication support (Read Replicas). Any change requires restarting the server to take effect.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"OFF,REPLICA,LOGICAL\",\"source\":\"user-override\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/azure.replication_support\",\"name\":\"azure.replication_support\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"10\",\"description\":\"Specifies the maximum number of concurrent connections from standby servers or streaming base backup clients (i.e., the maximum number of simultaneously running WAL sender processes).\",\"defaultValue\":\"10\",\"dataType\":\"Integer\",\"allowedValues\":\"10-80\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/max_wal_senders\",\"name\":\"max_wal_senders\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"10\",\"description\":\"Specifies the maximum number of replication slots that the server can support.\",\"defaultValue\":\"10\",\"dataType\":\"Integer\",\"allowedValues\":\"10-80\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/max_replication_slots\",\"name\":\"max_replication_slots\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"on\",\"description\":\"Allows feedback from a hot standby to the primary that will avoid query conflicts.\",\"defaultValue\":\"on\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/hot_standby_feedback\",\"name\":\"hot_standby_feedback\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"},{\"properties\":{\"value\":\"on\",\"description\":\"Enable .log files. Setting is independent of Azure Monitor logging options. Any change requires restarting the server to take effect.\",\"defaultValue\":\"on\",\"dataType\":\"Boolean\",\"allowedValues\":\"on,off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/logging_collector\",\"name\":\"logging_collector\",\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\"}]}" } }, "Get-AzPostgreSqlConfiguration+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/timezone?api-version=2017-12-01+1": { @@ -44,8 +44,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/timezone?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "10" ], - "x-ms-client-request-id": [ "77bf3efc-77b7-4804-a8b1-9c4fc460aebb" ], + "x-ms-unique-id": [ "11" ], + "x-ms-client-request-id": [ "70ff07d8-839e-469b-85e9-ea1ba9d7c90e" ], "CommandName": [ "Get-AzPostgreSqlConfiguration" ], "FullCommandName": [ "Get-AzPostgreSqlConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -60,14 +60,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "39a377c0-4e94-469b-affc-ef9febda4837" ], + "x-ms-request-id": [ "72cedd03-a80e-462a-b8b1-a967e4990458" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "5e6092ac-8cab-4a6e-af66-ff1418de3101" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T034608Z:5e6092ac-8cab-4a6e-af66-ff1418de3101" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], + "x-ms-correlation-request-id": [ "e8f2fabf-2e28-47a9-a2af-b574ec6b77e7" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T110110Z:e8f2fabf-2e28-47a9-a2af-b574ec6b77e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:46:07 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:01:09 GMT" ] }, "ContentHeaders": { "Content-Length": [ "522" ], @@ -83,8 +83,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/datestyle?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "11" ], - "x-ms-client-request-id": [ "5b8693af-c59e-4a51-85f2-16461f04f97c" ], + "x-ms-unique-id": [ "12" ], + "x-ms-client-request-id": [ "9a82fb22-2db1-40cc-ab51-97fd08430ee4" ], "CommandName": [ "Get-AzPostgreSqlConfiguration" ], "FullCommandName": [ "Get-AzPostgreSqlConfiguration_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -99,14 +99,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "22f783a5-afb8-4c01-94c0-2321bfda062e" ], + "x-ms-request-id": [ "b64ccc20-47cc-4a05-a9fa-75c9042661ca" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-correlation-request-id": [ "381c3581-685c-4fc4-9637-c26b9b90276e" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T034609Z:381c3581-685c-4fc4-9637-c26b9b90276e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], + "x-ms-correlation-request-id": [ "9bb72d8a-f998-435e-8ea5-8f04efa8571c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T110111Z:9bb72d8a-f998-435e-8ea5-8f04efa8571c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:46:08 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:01:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "549" ], diff --git a/src/PostgreSql/test/Get-AzPostgreSqlConnectionString.Recording.json b/src/PostgreSql/test/Get-AzPostgreSqlConnectionString.Recording.json index cf1f2b216024..9219b6591e4c 100644 --- a/src/PostgreSql/test/Get-AzPostgreSqlConnectionString.Recording.json +++ b/src/PostgreSql/test/Get-AzPostgreSqlConnectionString.Recording.json @@ -5,8 +5,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "12" ], - "x-ms-client-request-id": [ "be86a92e-8aca-4a75-93ab-e59f9d97ce92" ], + "x-ms-unique-id": [ "13" ], + "x-ms-client-request-id": [ "aeecf5a4-b082-4d97-b3dd-d953d474dc9f" ], "CommandName": [ "Az.PostgreSql\\Get-AzPostgreSqlServer" ], "FullCommandName": [ "Get-AzPostgreSqlServer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -21,21 +21,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "8301486b-1cb9-43a6-9715-5e1635b454b4" ], + "x-ms-request-id": [ "f4ff429f-6ede-4103-b587-f286b9844404" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], - "x-ms-correlation-request-id": [ "8498b8c1-986a-4c96-ab5b-7a47f4a24986" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T034609Z:8498b8c1-986a-4c96-ab5b-7a47f4a24986" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11989" ], + "x-ms-correlation-request-id": [ "6caf40f6-898d-4383-992c-104948337932" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T110114Z:6caf40f6-898d-4383-992c-104948337932" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:46:09 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:01:13 GMT" ] }, "ContentHeaders": { "Content-Length": [ "943" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"postgresql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-05-08T03:54:02.197+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\",\"name\":\"postgresql-test-100\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}" + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"postgresql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-09-25T11:09:04.307+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\",\"name\":\"postgresql-test-100\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}" } }, "Get-AzPostgreSqlConnectionString+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100?api-version=2017-12-01+1": { @@ -44,8 +44,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "13" ], - "x-ms-client-request-id": [ "fc4e0113-90d6-4905-ac3f-aa34f5ae5aa8" ], + "x-ms-unique-id": [ "14" ], + "x-ms-client-request-id": [ "087903b0-4ce0-45aa-9f3f-b0f823e440e2" ], "CommandName": [ "Get-AzPostgreSqlServer" ], "FullCommandName": [ "Get-AzPostgreSqlServer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -60,21 +60,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "bc70f85f-3a18-4a04-ba4c-f53b4cf8aac6" ], + "x-ms-request-id": [ "19432faf-8ce4-4154-8e99-82646e1e95b3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], - "x-ms-correlation-request-id": [ "98074c32-f824-4132-8880-68f121956864" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T034610Z:98074c32-f824-4132-8880-68f121956864" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11988" ], + "x-ms-correlation-request-id": [ "006d30b8-e622-4219-9773-689bbda45fa7" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T110114Z:006d30b8-e622-4219-9773-689bbda45fa7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:46:09 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:01:13 GMT" ] }, "ContentHeaders": { "Content-Length": [ "943" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"postgresql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-05-08T03:54:02.197+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\",\"name\":\"postgresql-test-100\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}" + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"postgresql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-09-25T11:09:04.307+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\",\"name\":\"postgresql-test-100\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}" } }, "Get-AzPostgreSqlConnectionString+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100?api-version=2017-12-01+2": { @@ -83,8 +83,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "14" ], - "x-ms-client-request-id": [ "c0ed4e18-e607-4f12-850f-fde135f4e8b6" ], + "x-ms-unique-id": [ "15" ], + "x-ms-client-request-id": [ "4710aec3-e03a-4fcc-bcdb-a2ad3620784e" ], "CommandName": [ "Az.PostgreSql\\Get-AzPostgreSqlServer" ], "FullCommandName": [ "Get-AzPostgreSqlServer_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -99,21 +99,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "2771eeb3-ac92-4f90-9125-4a1300b3d080" ], + "x-ms-request-id": [ "1aab44dc-b997-464f-8b1c-ccc32ed09452" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], - "x-ms-correlation-request-id": [ "35b639cd-e20c-4c13-9a10-7e8d5998b1f8" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T034610Z:35b639cd-e20c-4c13-9a10-7e8d5998b1f8" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11987" ], + "x-ms-correlation-request-id": [ "05e645e8-d6fe-4f05-a382-16dc3d07d245" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T110115Z:05e645e8-d6fe-4f05-a382-16dc3d07d245" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:46:09 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:01:14 GMT" ] }, "ContentHeaders": { "Content-Length": [ "943" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"postgresql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-05-08T03:54:02.197+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\",\"name\":\"postgresql-test-100\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}" + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"postgresql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-09-25T11:09:04.307+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\",\"name\":\"postgresql-test-100\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}" } }, "Get-AzPostgreSqlConnectionString+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100?api-version=2017-12-01+3": { @@ -122,8 +122,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "15" ], - "x-ms-client-request-id": [ "831bbfbd-7dce-4479-a76a-ae69a172bfb9" ], + "x-ms-unique-id": [ "16" ], + "x-ms-client-request-id": [ "2574b9fa-5a3b-4f72-bda9-2f441acd1e3a" ], "CommandName": [ "Az.PostgreSql\\Get-AzPostgreSqlServer" ], "FullCommandName": [ "Get-AzPostgreSqlServer_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -138,21 +138,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "f3e39e0d-2339-4a50-a3ac-67dfc24dfdec" ], + "x-ms-request-id": [ "72ddcb84-67a5-4159-8522-5b1d323b6e09" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11989" ], - "x-ms-correlation-request-id": [ "2b15d387-4f43-439c-83cc-b3e0d0f5d023" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T034610Z:2b15d387-4f43-439c-83cc-b3e0d0f5d023" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11986" ], + "x-ms-correlation-request-id": [ "8d3fe57a-f754-42dd-837d-597b8a4f4d1e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T110115Z:8d3fe57a-f754-42dd-837d-597b8a4f4d1e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:46:10 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:01:14 GMT" ] }, "ContentHeaders": { "Content-Length": [ "943" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"postgresql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-05-08T03:54:02.197+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\",\"name\":\"postgresql-test-100\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}" + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"postgresql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-09-25T11:09:04.307+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\",\"name\":\"postgresql-test-100\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}" } }, "Get-AzPostgreSqlConnectionString+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100?api-version=2017-12-01+4": { @@ -161,8 +161,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "16" ], - "x-ms-client-request-id": [ "8c8abcca-3b62-44e0-887c-08b2e0d0f0f0" ], + "x-ms-unique-id": [ "17" ], + "x-ms-client-request-id": [ "afd7d341-4d38-48e7-b65c-1df2b2cd9fca" ], "CommandName": [ "Az.PostgreSql\\Get-AzPostgreSqlServer" ], "FullCommandName": [ "Get-AzPostgreSqlServer_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -177,21 +177,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "bcb5f20f-05b3-4033-b162-960e4836a82b" ], + "x-ms-request-id": [ "2642996a-7f94-4171-8f21-f2a35c181fb3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11988" ], - "x-ms-correlation-request-id": [ "d7afd097-d031-4e0b-acad-384841c94590" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T034611Z:d7afd097-d031-4e0b-acad-384841c94590" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11985" ], + "x-ms-correlation-request-id": [ "8fb360e8-73d4-4196-b186-97bc471c1580" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T110116Z:8fb360e8-73d4-4196-b186-97bc471c1580" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:46:10 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:01:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "943" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"postgresql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-05-08T03:54:02.197+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\",\"name\":\"postgresql-test-100\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}" + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"postgresql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-09-25T11:09:04.307+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\",\"name\":\"postgresql-test-100\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}" } }, "Get-AzPostgreSqlConnectionString+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100?api-version=2017-12-01+5": { @@ -200,8 +200,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "17" ], - "x-ms-client-request-id": [ "7987040c-708b-498b-97b1-da9853d4ec39" ], + "x-ms-unique-id": [ "18" ], + "x-ms-client-request-id": [ "b6bdde58-1e23-401e-ae25-ea0aa98e338d" ], "CommandName": [ "Az.PostgreSql\\Get-AzPostgreSqlServer" ], "FullCommandName": [ "Get-AzPostgreSqlServer_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -216,21 +216,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "fba3876d-43d2-41e7-8570-6071898491e5" ], + "x-ms-request-id": [ "f90f0a27-e933-4d15-b04b-618818ef790d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11987" ], - "x-ms-correlation-request-id": [ "f78f9e90-303e-4153-bb8f-3e11a0f0b6f5" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T034611Z:f78f9e90-303e-4153-bb8f-3e11a0f0b6f5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11984" ], + "x-ms-correlation-request-id": [ "77d142de-3518-4498-aa8b-cd19b163123a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T110116Z:77d142de-3518-4498-aa8b-cd19b163123a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:46:10 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:01:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "943" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"postgresql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-05-08T03:54:02.197+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\",\"name\":\"postgresql-test-100\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}" + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"postgresql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-09-25T11:09:04.307+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\",\"name\":\"postgresql-test-100\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}" } }, "Get-AzPostgreSqlConnectionString+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100?api-version=2017-12-01+6": { @@ -239,8 +239,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "18" ], - "x-ms-client-request-id": [ "6097110c-a010-4a40-94ce-1667dfcc0ef6" ], + "x-ms-unique-id": [ "19" ], + "x-ms-client-request-id": [ "03e71709-f0b2-435c-ba43-638e54f4d173" ], "CommandName": [ "Az.PostgreSql\\Get-AzPostgreSqlServer" ], "FullCommandName": [ "Get-AzPostgreSqlServer_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -255,21 +255,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "e02bcf67-1ddd-4a6f-8caa-cbb016a69a7e" ], + "x-ms-request-id": [ "b35c10ad-00f4-486a-abe3-92f9bc041bf5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11986" ], - "x-ms-correlation-request-id": [ "73e74861-fcb4-4c44-be6b-50127bebed71" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T034611Z:73e74861-fcb4-4c44-be6b-50127bebed71" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11983" ], + "x-ms-correlation-request-id": [ "cf606755-8286-4309-b887-69cf7731bdfd" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T110116Z:cf606755-8286-4309-b887-69cf7731bdfd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:46:11 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:01:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "943" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"postgresql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-05-08T03:54:02.197+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\",\"name\":\"postgresql-test-100\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}" + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"postgresql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-09-25T11:09:04.307+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\",\"name\":\"postgresql-test-100\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}" } }, "Get-AzPostgreSqlConnectionString+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100?api-version=2017-12-01+7": { @@ -278,8 +278,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "19" ], - "x-ms-client-request-id": [ "59933981-2256-4d07-bcce-695d66228cee" ], + "x-ms-unique-id": [ "20" ], + "x-ms-client-request-id": [ "d7b4cc04-471b-4970-9382-dc08bfee86bb" ], "CommandName": [ "Az.PostgreSql\\Get-AzPostgreSqlServer" ], "FullCommandName": [ "Get-AzPostgreSqlServer_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -294,21 +294,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "ce49f629-9e07-4ae9-a0de-ccf016ceb369" ], + "x-ms-request-id": [ "01eb9f1f-e787-4bb4-9410-1b1650acb434" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11985" ], - "x-ms-correlation-request-id": [ "3eb82360-6cc4-47db-90ac-34edb6d24723" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T034612Z:3eb82360-6cc4-47db-90ac-34edb6d24723" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11982" ], + "x-ms-correlation-request-id": [ "9b0d218c-8fa3-4b73-b40d-9a0bd03286f8" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T110117Z:9b0d218c-8fa3-4b73-b40d-9a0bd03286f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:46:11 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:01:16 GMT" ] }, "ContentHeaders": { "Content-Length": [ "943" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"postgresql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-05-08T03:54:02.197+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\",\"name\":\"postgresql-test-100\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}" + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"postgresql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-09-25T11:09:04.307+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\",\"name\":\"postgresql-test-100\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}" } }, "Get-AzPostgreSqlConnectionString+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100?api-version=2017-12-01+8": { @@ -317,8 +317,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "20" ], - "x-ms-client-request-id": [ "74a6469c-904b-4b01-a8b8-1fba4f5c1461" ], + "x-ms-unique-id": [ "21" ], + "x-ms-client-request-id": [ "cdee4ae1-d1a7-48a4-9122-8b8235cf0d86" ], "CommandName": [ "Az.PostgreSql\\Get-AzPostgreSqlServer" ], "FullCommandName": [ "Get-AzPostgreSqlServer_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -333,21 +333,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "833246c1-aa4c-4a17-81bb-41b50c3aeda1" ], + "x-ms-request-id": [ "9a507ba2-0d52-4169-be3e-3c7ea6dbfefd" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11984" ], - "x-ms-correlation-request-id": [ "73dff5c1-6d51-4566-a2e4-3da22c528b5a" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T034612Z:73dff5c1-6d51-4566-a2e4-3da22c528b5a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11981" ], + "x-ms-correlation-request-id": [ "f95b0583-8443-4ec2-86cc-3b8b5dabd540" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T110117Z:f95b0583-8443-4ec2-86cc-3b8b5dabd540" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:46:12 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:01:16 GMT" ] }, "ContentHeaders": { "Content-Length": [ "943" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"postgresql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-05-08T03:54:02.197+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\",\"name\":\"postgresql-test-100\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}" + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"postgresql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-09-25T11:09:04.307+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\",\"name\":\"postgresql-test-100\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}" } }, "Get-AzPostgreSqlConnectionString+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100?api-version=2017-12-01+9": { @@ -356,8 +356,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "21" ], - "x-ms-client-request-id": [ "407a334e-a98d-4277-a2db-9c97ef7f655d" ], + "x-ms-unique-id": [ "22" ], + "x-ms-client-request-id": [ "42ab38b1-17ad-4c12-8958-0ae798193d8c" ], "CommandName": [ "Az.PostgreSql\\Get-AzPostgreSqlServer" ], "FullCommandName": [ "Get-AzPostgreSqlServer_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -372,21 +372,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "a184779b-cdbc-4502-a1d6-71f95f8704ba" ], + "x-ms-request-id": [ "03fef9be-bd20-4a0b-8ce1-f5b81557c964" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11983" ], - "x-ms-correlation-request-id": [ "1ac4bbd0-7061-4132-9eab-4869fbad0665" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T034613Z:1ac4bbd0-7061-4132-9eab-4869fbad0665" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11980" ], + "x-ms-correlation-request-id": [ "4c3e293d-9bd1-4d52-81f7-68159b3b491f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T110117Z:4c3e293d-9bd1-4d52-81f7-68159b3b491f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:46:12 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:01:16 GMT" ] }, "ContentHeaders": { "Content-Length": [ "943" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"postgresql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-05-08T03:54:02.197+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\",\"name\":\"postgresql-test-100\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}" + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"postgresql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-09-25T11:09:04.307+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\",\"name\":\"postgresql-test-100\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}" } } } \ No newline at end of file diff --git a/src/PostgreSql/test/Get-AzPostgreSqlFirewallRule.Recording.json b/src/PostgreSql/test/Get-AzPostgreSqlFirewallRule.Recording.json index 20423980ba34..fc091ab185c4 100644 --- a/src/PostgreSql/test/Get-AzPostgreSqlFirewallRule.Recording.json +++ b/src/PostgreSql/test/Get-AzPostgreSqlFirewallRule.Recording.json @@ -3,12 +3,12 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01?api-version=2017-12-01", - "Content": "{\n \"properties\": {\n \"endIpAddress\": \"0.0.0.1\",\n \"startIpAddress\": \"0.0.0.0\"\n }\n}", + "Content": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.0\",\r\n \"endIpAddress\": \"0.0.0.1\"\r\n }\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "88" ] + "Content-Length": [ "93" ] } }, "Response": { @@ -16,35 +16,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/e3d7cf9b-fbe3-4896-858c-27c3b01a482a?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/22171d36-1cc1-4752-9c43-a828b1e8ba6e?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e3d7cf9b-fbe3-4896-858c-27c3b01a482a?api-version=2017-12-01" ], - "x-ms-request-id": [ "e3d7cf9b-fbe3-4896-858c-27c3b01a482a" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/22171d36-1cc1-4752-9c43-a828b1e8ba6e?api-version=2017-12-01" ], + "x-ms-request-id": [ "22171d36-1cc1-4752-9c43-a828b1e8ba6e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], - "x-ms-correlation-request-id": [ "cae051da-9b38-40e4-93cf-9503e2b2b7c2" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T034614Z:cae051da-9b38-40e4-93cf-9503e2b2b7c2" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], + "x-ms-correlation-request-id": [ "6d749a7c-8c15-4019-96d7-3f9d999d263a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T110119Z:6d749a7c-8c15-4019-96d7-3f9d999d263a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:46:14 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:01:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "87" ], + "Content-Length": [ "86" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServerFirewallRules\",\"startTime\":\"2020-05-08T03:46:13.613Z\"}" + "Content": "{\"operation\":\"UpsertElasticServerFirewallRules\",\"startTime\":\"2020-09-25T11:01:18.51Z\"}" } }, - "Get-AzPostgreSqlFirewallRule+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e3d7cf9b-fbe3-4896-858c-27c3b01a482a?api-version=2017-12-01+2": { + "Get-AzPostgreSqlFirewallRule+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/22171d36-1cc1-4752-9c43-a828b1e8ba6e?api-version=2017-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e3d7cf9b-fbe3-4896-858c-27c3b01a482a?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/22171d36-1cc1-4752-9c43-a828b1e8ba6e?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "22", "23" ], - "x-ms-client-request-id": [ "6c1cd2ec-5c69-439b-bd1e-0fed09d7e9be", "6c1cd2ec-5c69-439b-bd1e-0fed09d7e9be" ], - "CommandName": [ "New-AzPostgreSqlFirewallRule", "New-AzPostgreSqlFirewallRule" ], + "x-ms-unique-id": [ "23", "24" ], + "x-ms-client-request-id": [ "fb13f9a4-99b1-4e08-99a1-8a67f59c6d69", "fb13f9a4-99b1-4e08-99a1-8a67f59c6d69" ], + "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlFirewallRule", "Az.PostgreSql.internal\\New-AzPostgreSqlFirewallRule" ], "FullCommandName": [ "New-AzPostgreSqlFirewallRule_CreateExpanded", "New-AzPostgreSqlFirewallRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], @@ -59,21 +59,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "980c0a2c-44a3-494a-91e5-04c9c4ae9b08" ], + "x-ms-request-id": [ "39d9d2bb-701e-4631-99c1-717b947c6670" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11982" ], - "x-ms-correlation-request-id": [ "8f9b6cbe-ede7-4af8-9027-1105587b66d3" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T034630Z:8f9b6cbe-ede7-4af8-9027-1105587b66d3" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11979" ], + "x-ms-correlation-request-id": [ "b030abcf-1c63-4311-bd15-7315cdad9e31" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T110135Z:b030abcf-1c63-4311-bd15-7315cdad9e31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:46:29 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:01:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "106" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"e3d7cf9b-fbe3-4896-858c-27c3b01a482a\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-08T03:46:13.613Z\"}" + "Content": "{\"name\":\"22171d36-1cc1-4752-9c43-a828b1e8ba6e\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:01:18.51Z\"}" } }, "Get-AzPostgreSqlFirewallRule+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01?api-version=2017-12-01+3": { @@ -82,9 +82,9 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "22", "23", "24" ], - "x-ms-client-request-id": [ "6c1cd2ec-5c69-439b-bd1e-0fed09d7e9be", "6c1cd2ec-5c69-439b-bd1e-0fed09d7e9be", "6c1cd2ec-5c69-439b-bd1e-0fed09d7e9be" ], - "CommandName": [ "New-AzPostgreSqlFirewallRule", "New-AzPostgreSqlFirewallRule", "New-AzPostgreSqlFirewallRule" ], + "x-ms-unique-id": [ "23", "24", "25" ], + "x-ms-client-request-id": [ "fb13f9a4-99b1-4e08-99a1-8a67f59c6d69", "fb13f9a4-99b1-4e08-99a1-8a67f59c6d69", "fb13f9a4-99b1-4e08-99a1-8a67f59c6d69" ], + "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlFirewallRule", "Az.PostgreSql.internal\\New-AzPostgreSqlFirewallRule", "Az.PostgreSql.internal\\New-AzPostgreSqlFirewallRule" ], "FullCommandName": [ "New-AzPostgreSqlFirewallRule_CreateExpanded", "New-AzPostgreSqlFirewallRule_CreateExpanded", "New-AzPostgreSqlFirewallRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], @@ -98,14 +98,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "7dfae60e-87b3-4504-be39-35dd9189d0bd" ], + "x-ms-request-id": [ "80b1acf9-e4f6-4426-bfc3-acb832c255de" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11981" ], - "x-ms-correlation-request-id": [ "15e16cfb-7e79-447e-baeb-070f43802a84" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T034630Z:15e16cfb-7e79-447e-baeb-070f43802a84" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11978" ], + "x-ms-correlation-request-id": [ "54f52bbe-fe1b-4d02-8c2c-60c28109a145" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T110135Z:54f52bbe-fe1b-4d02-8c2c-60c28109a145" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:46:29 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:01:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "335" ], @@ -121,8 +121,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "25" ], - "x-ms-client-request-id": [ "6c22871e-edaa-4278-8311-39afce34db9d" ], + "x-ms-unique-id": [ "26" ], + "x-ms-client-request-id": [ "cd7abb5c-f05b-49af-8e84-9a74072e1394" ], "CommandName": [ "Get-AzPostgreSqlFirewallRule" ], "FullCommandName": [ "Get-AzPostgreSqlFirewallRule_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -137,14 +137,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "4bd1895e-36d2-4121-8024-5c8fd1cb9733" ], + "x-ms-request-id": [ "14e8b092-a4ff-4e22-b786-9bb12bded50e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11980" ], - "x-ms-correlation-request-id": [ "122037bd-01a6-4c47-a592-d01933aeb67c" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T034631Z:122037bd-01a6-4c47-a592-d01933aeb67c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11977" ], + "x-ms-correlation-request-id": [ "e7aa5b61-9aef-472b-a9c1-d20ad0c76d08" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T110136Z:e7aa5b61-9aef-472b-a9c1-d20ad0c76d08" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:46:30 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:01:36 GMT" ] }, "ContentHeaders": { "Content-Length": [ "347" ], @@ -160,8 +160,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "26" ], - "x-ms-client-request-id": [ "12dde478-87b5-41b0-9b32-e2b3c94bdddb" ], + "x-ms-unique-id": [ "27" ], + "x-ms-client-request-id": [ "133dd9ad-a56a-40d5-9cea-9e7d9dd924f2" ], "CommandName": [ "Remove-AzPostgreSqlFirewallRule" ], "FullCommandName": [ "Remove-AzPostgreSqlFirewallRule_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -176,34 +176,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/9121f8a4-cf05-4f6d-a4c9-d19f4f313384?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/9878a831-b877-4905-962a-868d0f84bb74?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/9121f8a4-cf05-4f6d-a4c9-d19f4f313384?api-version=2017-12-01" ], - "x-ms-request-id": [ "9121f8a4-cf05-4f6d-a4c9-d19f4f313384" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/9878a831-b877-4905-962a-868d0f84bb74?api-version=2017-12-01" ], + "x-ms-request-id": [ "9878a831-b877-4905-962a-868d0f84bb74" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], - "x-ms-correlation-request-id": [ "bce8818d-81d5-4632-a8f9-5ce090c821f2" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T034632Z:bce8818d-81d5-4632-a8f9-5ce090c821f2" ], + "x-ms-correlation-request-id": [ "f97b666b-736c-463e-96cc-267f8f4ff0eb" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T110137Z:f97b666b-736c-463e-96cc-267f8f4ff0eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:46:31 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:01:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "84" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"DropElasticServerFirewallRule\",\"startTime\":\"2020-05-08T03:46:31.443Z\"}" + "Content": "{\"operation\":\"DropElasticServerFirewallRule\",\"startTime\":\"2020-09-25T11:01:36.557Z\"}" } }, - "Get-AzPostgreSqlFirewallRule+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/9121f8a4-cf05-4f6d-a4c9-d19f4f313384?api-version=2017-12-01+6": { + "Get-AzPostgreSqlFirewallRule+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/9878a831-b877-4905-962a-868d0f84bb74?api-version=2017-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/9121f8a4-cf05-4f6d-a4c9-d19f4f313384?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/9878a831-b877-4905-962a-868d0f84bb74?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "26", "27" ], - "x-ms-client-request-id": [ "12dde478-87b5-41b0-9b32-e2b3c94bdddb", "12dde478-87b5-41b0-9b32-e2b3c94bdddb" ], + "x-ms-unique-id": [ "27", "28" ], + "x-ms-client-request-id": [ "133dd9ad-a56a-40d5-9cea-9e7d9dd924f2", "133dd9ad-a56a-40d5-9cea-9e7d9dd924f2" ], "CommandName": [ "Remove-AzPostgreSqlFirewallRule", "Remove-AzPostgreSqlFirewallRule" ], "FullCommandName": [ "Remove-AzPostgreSqlFirewallRule_Delete", "Remove-AzPostgreSqlFirewallRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -219,31 +219,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "b3024f30-717a-4304-88f1-b9f9692a5d10" ], + "x-ms-request-id": [ "5dec14a1-62da-4139-9736-883f1b7b6c49" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11979" ], - "x-ms-correlation-request-id": [ "9c867179-069e-49a1-b818-5a86fea032fb" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T034647Z:9c867179-069e-49a1-b818-5a86fea032fb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11976" ], + "x-ms-correlation-request-id": [ "9924a76f-4dac-4c92-a84b-d2bb0f7ba0ed" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T110153Z:9924a76f-4dac-4c92-a84b-d2bb0f7ba0ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:46:46 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:01:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"9121f8a4-cf05-4f6d-a4c9-d19f4f313384\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-08T03:46:31.443Z\"}" + "Content": "{\"name\":\"9878a831-b877-4905-962a-868d0f84bb74\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:01:36.557Z\"}" } }, - "Get-AzPostgreSqlFirewallRule+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/9121f8a4-cf05-4f6d-a4c9-d19f4f313384?api-version=2017-12-01+7": { + "Get-AzPostgreSqlFirewallRule+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/9878a831-b877-4905-962a-868d0f84bb74?api-version=2017-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/9121f8a4-cf05-4f6d-a4c9-d19f4f313384?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/9878a831-b877-4905-962a-868d0f84bb74?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "26", "27", "28" ], - "x-ms-client-request-id": [ "12dde478-87b5-41b0-9b32-e2b3c94bdddb", "12dde478-87b5-41b0-9b32-e2b3c94bdddb", "12dde478-87b5-41b0-9b32-e2b3c94bdddb" ], + "x-ms-unique-id": [ "27", "28", "29" ], + "x-ms-client-request-id": [ "133dd9ad-a56a-40d5-9cea-9e7d9dd924f2", "133dd9ad-a56a-40d5-9cea-9e7d9dd924f2", "133dd9ad-a56a-40d5-9cea-9e7d9dd924f2" ], "CommandName": [ "Remove-AzPostgreSqlFirewallRule", "Remove-AzPostgreSqlFirewallRule", "Remove-AzPostgreSqlFirewallRule" ], "FullCommandName": [ "Remove-AzPostgreSqlFirewallRule_Delete", "Remove-AzPostgreSqlFirewallRule_Delete", "Remove-AzPostgreSqlFirewallRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -258,14 +258,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "3fe30cfe-b280-46ad-acdd-de367f991427" ], + "x-ms-request-id": [ "432bf9bf-5663-49cb-9769-1e4d37b04646" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11978" ], - "x-ms-correlation-request-id": [ "787e24ea-265d-4268-86ca-9bcadb7285cf" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T034648Z:787e24ea-265d-4268-86ca-9bcadb7285cf" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11975" ], + "x-ms-correlation-request-id": [ "2d9c40b2-2abb-4c5e-adf0-5fd3ede36c32" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T110153Z:2d9c40b2-2abb-4c5e-adf0-5fd3ede36c32" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:46:47 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:01:53 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -278,12 +278,12 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01?api-version=2017-12-01", - "Content": "{\n \"properties\": {\n \"endIpAddress\": \"0.0.0.1\",\n \"startIpAddress\": \"0.0.0.0\"\n }\n}", + "Content": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.0\",\r\n \"endIpAddress\": \"0.0.0.1\"\r\n }\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "88" ] + "Content-Length": [ "93" ] } }, "Response": { @@ -291,35 +291,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/b8a47e7d-03f5-4273-a064-3d1a2ccf90b7?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/f1bf892f-485f-464b-8c83-09c81ea4ed2b?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/b8a47e7d-03f5-4273-a064-3d1a2ccf90b7?api-version=2017-12-01" ], - "x-ms-request-id": [ "b8a47e7d-03f5-4273-a064-3d1a2ccf90b7" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/f1bf892f-485f-464b-8c83-09c81ea4ed2b?api-version=2017-12-01" ], + "x-ms-request-id": [ "f1bf892f-485f-464b-8c83-09c81ea4ed2b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], - "x-ms-correlation-request-id": [ "974d3732-454f-467f-a7e0-efe872e1730d" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T034649Z:974d3732-454f-467f-a7e0-efe872e1730d" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1195" ], + "x-ms-correlation-request-id": [ "0a6b0b51-67dd-4c4d-a8ed-bb2f6e87a6c1" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T110155Z:0a6b0b51-67dd-4c4d-a8ed-bb2f6e87a6c1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:46:49 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:01:54 GMT" ] }, "ContentHeaders": { "Content-Length": [ "87" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServerFirewallRules\",\"startTime\":\"2020-05-08T03:46:48.583Z\"}" + "Content": "{\"operation\":\"UpsertElasticServerFirewallRules\",\"startTime\":\"2020-09-25T11:01:53.947Z\"}" } }, - "Get-AzPostgreSqlFirewallRule+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/b8a47e7d-03f5-4273-a064-3d1a2ccf90b7?api-version=2017-12-01+2": { + "Get-AzPostgreSqlFirewallRule+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/f1bf892f-485f-464b-8c83-09c81ea4ed2b?api-version=2017-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/b8a47e7d-03f5-4273-a064-3d1a2ccf90b7?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/f1bf892f-485f-464b-8c83-09c81ea4ed2b?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "29", "30" ], - "x-ms-client-request-id": [ "51d914db-c421-403e-943f-184d457395d6", "51d914db-c421-403e-943f-184d457395d6" ], - "CommandName": [ "New-AzPostgreSqlFirewallRule", "New-AzPostgreSqlFirewallRule" ], + "x-ms-unique-id": [ "30", "31" ], + "x-ms-client-request-id": [ "9e22df38-7bc2-4768-a322-93e9f2a898c3", "9e22df38-7bc2-4768-a322-93e9f2a898c3" ], + "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlFirewallRule", "Az.PostgreSql.internal\\New-AzPostgreSqlFirewallRule" ], "FullCommandName": [ "New-AzPostgreSqlFirewallRule_CreateExpanded", "New-AzPostgreSqlFirewallRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], @@ -334,21 +334,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "d5b12748-a46d-4061-9816-193c1e9f17e0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11977" ], + "x-ms-request-id": [ "ec33c4a5-cac8-4aa8-8122-1e06ab4aba67" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "ffd1557e-77b0-45d4-aa62-f7cfc8af8d5b" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T034705Z:ffd1557e-77b0-45d4-aa62-f7cfc8af8d5b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11974" ], + "x-ms-correlation-request-id": [ "51e10d64-7392-453a-aeed-35584015e0ed" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T110210Z:51e10d64-7392-453a-aeed-35584015e0ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:47:05 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:02:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"b8a47e7d-03f5-4273-a064-3d1a2ccf90b7\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-08T03:46:48.583Z\"}" + "Content": "{\"name\":\"f1bf892f-485f-464b-8c83-09c81ea4ed2b\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:01:53.947Z\"}" } }, "Get-AzPostgreSqlFirewallRule+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01?api-version=2017-12-01+3": { @@ -357,9 +357,9 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "29", "30", "31" ], - "x-ms-client-request-id": [ "51d914db-c421-403e-943f-184d457395d6", "51d914db-c421-403e-943f-184d457395d6", "51d914db-c421-403e-943f-184d457395d6" ], - "CommandName": [ "New-AzPostgreSqlFirewallRule", "New-AzPostgreSqlFirewallRule", "New-AzPostgreSqlFirewallRule" ], + "x-ms-unique-id": [ "30", "31", "32" ], + "x-ms-client-request-id": [ "9e22df38-7bc2-4768-a322-93e9f2a898c3", "9e22df38-7bc2-4768-a322-93e9f2a898c3", "9e22df38-7bc2-4768-a322-93e9f2a898c3" ], + "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlFirewallRule", "Az.PostgreSql.internal\\New-AzPostgreSqlFirewallRule", "Az.PostgreSql.internal\\New-AzPostgreSqlFirewallRule" ], "FullCommandName": [ "New-AzPostgreSqlFirewallRule_CreateExpanded", "New-AzPostgreSqlFirewallRule_CreateExpanded", "New-AzPostgreSqlFirewallRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], @@ -373,14 +373,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "82bf968c-3f2f-40ab-9e81-151838def991" ], + "x-ms-request-id": [ "dba6242c-5d17-470a-a997-52cadc204ebd" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11976" ], - "x-ms-correlation-request-id": [ "742c53a4-83d6-49a3-b5eb-3bb6b16acc05" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T034706Z:742c53a4-83d6-49a3-b5eb-3bb6b16acc05" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11973" ], + "x-ms-correlation-request-id": [ "e2e334f8-5dff-43b4-80da-c4f39039f024" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T110210Z:e2e334f8-5dff-43b4-80da-c4f39039f024" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:47:06 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:02:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "335" ], @@ -396,8 +396,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "32" ], - "x-ms-client-request-id": [ "e7dd45d7-767d-4726-b4a2-2eac29302ce5" ], + "x-ms-unique-id": [ "33" ], + "x-ms-client-request-id": [ "0cd14c07-3cfc-4d59-aa17-c8f5d4599543" ], "CommandName": [ "Get-AzPostgreSqlFirewallRule" ], "FullCommandName": [ "Get-AzPostgreSqlFirewallRule_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -412,14 +412,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "8c42d0f0-609e-4f40-b3f2-02b1011bc2b7" ], + "x-ms-request-id": [ "e02e2746-9832-4e9e-a041-c5e67299fefd" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11975" ], - "x-ms-correlation-request-id": [ "4ab124e5-f837-47b4-86ff-6b5a216b14bd" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T034707Z:4ab124e5-f837-47b4-86ff-6b5a216b14bd" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11972" ], + "x-ms-correlation-request-id": [ "56c9dd4c-7e3f-462b-a351-fccbc52ee11d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T110211Z:56c9dd4c-7e3f-462b-a351-fccbc52ee11d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:47:07 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:02:11 GMT" ] }, "ContentHeaders": { "Content-Length": [ "335" ], @@ -435,8 +435,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "33" ], - "x-ms-client-request-id": [ "b1c93439-1cb4-474f-9c25-c7debf7e6469" ], + "x-ms-unique-id": [ "34" ], + "x-ms-client-request-id": [ "32112020-e14f-4249-a4ba-b82a0dd1d23b" ], "CommandName": [ "Remove-AzPostgreSqlFirewallRule" ], "FullCommandName": [ "Remove-AzPostgreSqlFirewallRule_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -451,34 +451,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/25d0af94-0c27-46db-abda-005fbcfeaefe?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/c7ee4fd9-05a1-486e-8ca1-ecdbb6fac9b0?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/25d0af94-0c27-46db-abda-005fbcfeaefe?api-version=2017-12-01" ], - "x-ms-request-id": [ "25d0af94-0c27-46db-abda-005fbcfeaefe" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/c7ee4fd9-05a1-486e-8ca1-ecdbb6fac9b0?api-version=2017-12-01" ], + "x-ms-request-id": [ "c7ee4fd9-05a1-486e-8ca1-ecdbb6fac9b0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], - "x-ms-correlation-request-id": [ "6d9c4d35-4538-47ae-92e6-e2ac7bc83d57" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T034708Z:6d9c4d35-4538-47ae-92e6-e2ac7bc83d57" ], + "x-ms-correlation-request-id": [ "fedd5d84-8e1c-4a29-a4c5-33ae730c17bf" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T110212Z:fedd5d84-8e1c-4a29-a4c5-33ae730c17bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:47:08 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:02:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "84" ], + "Content-Length": [ "83" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"DropElasticServerFirewallRule\",\"startTime\":\"2020-05-08T03:47:07.633Z\"}" + "Content": "{\"operation\":\"DropElasticServerFirewallRule\",\"startTime\":\"2020-09-25T11:02:11.76Z\"}" } }, - "Get-AzPostgreSqlFirewallRule+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/25d0af94-0c27-46db-abda-005fbcfeaefe?api-version=2017-12-01+6": { + "Get-AzPostgreSqlFirewallRule+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/c7ee4fd9-05a1-486e-8ca1-ecdbb6fac9b0?api-version=2017-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/25d0af94-0c27-46db-abda-005fbcfeaefe?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/c7ee4fd9-05a1-486e-8ca1-ecdbb6fac9b0?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "33", "34" ], - "x-ms-client-request-id": [ "b1c93439-1cb4-474f-9c25-c7debf7e6469", "b1c93439-1cb4-474f-9c25-c7debf7e6469" ], + "x-ms-unique-id": [ "34", "35" ], + "x-ms-client-request-id": [ "32112020-e14f-4249-a4ba-b82a0dd1d23b", "32112020-e14f-4249-a4ba-b82a0dd1d23b" ], "CommandName": [ "Remove-AzPostgreSqlFirewallRule", "Remove-AzPostgreSqlFirewallRule" ], "FullCommandName": [ "Remove-AzPostgreSqlFirewallRule_Delete", "Remove-AzPostgreSqlFirewallRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -494,31 +494,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "a5135173-8277-4e0f-a063-f1ee8b04c2a6" ], + "x-ms-request-id": [ "41ea201f-a236-4383-b58a-3a41941fff8b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11974" ], - "x-ms-correlation-request-id": [ "39418770-bf2b-44f8-a4b9-dd6e1fcabe80" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T034724Z:39418770-bf2b-44f8-a4b9-dd6e1fcabe80" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11971" ], + "x-ms-correlation-request-id": [ "054b630b-ba58-4349-9ae2-daa3756b25e2" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T110228Z:054b630b-ba58-4349-9ae2-daa3756b25e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:47:23 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:02:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "106" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"25d0af94-0c27-46db-abda-005fbcfeaefe\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-08T03:47:07.633Z\"}" + "Content": "{\"name\":\"c7ee4fd9-05a1-486e-8ca1-ecdbb6fac9b0\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:02:11.76Z\"}" } }, - "Get-AzPostgreSqlFirewallRule+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/25d0af94-0c27-46db-abda-005fbcfeaefe?api-version=2017-12-01+7": { + "Get-AzPostgreSqlFirewallRule+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/c7ee4fd9-05a1-486e-8ca1-ecdbb6fac9b0?api-version=2017-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/25d0af94-0c27-46db-abda-005fbcfeaefe?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/c7ee4fd9-05a1-486e-8ca1-ecdbb6fac9b0?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "33", "34", "35" ], - "x-ms-client-request-id": [ "b1c93439-1cb4-474f-9c25-c7debf7e6469", "b1c93439-1cb4-474f-9c25-c7debf7e6469", "b1c93439-1cb4-474f-9c25-c7debf7e6469" ], + "x-ms-unique-id": [ "34", "35", "36" ], + "x-ms-client-request-id": [ "32112020-e14f-4249-a4ba-b82a0dd1d23b", "32112020-e14f-4249-a4ba-b82a0dd1d23b", "32112020-e14f-4249-a4ba-b82a0dd1d23b" ], "CommandName": [ "Remove-AzPostgreSqlFirewallRule", "Remove-AzPostgreSqlFirewallRule", "Remove-AzPostgreSqlFirewallRule" ], "FullCommandName": [ "Remove-AzPostgreSqlFirewallRule_Delete", "Remove-AzPostgreSqlFirewallRule_Delete", "Remove-AzPostgreSqlFirewallRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -533,14 +533,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "9e1f4769-d2eb-43fe-ba87-cbd65074d5b6" ], + "x-ms-request-id": [ "d6114e24-112a-4f06-83df-6d47ec8a4ee7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11973" ], - "x-ms-correlation-request-id": [ "50b33348-770d-4467-81d0-a9eb4ad25a63" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T034724Z:50b33348-770d-4467-81d0-a9eb4ad25a63" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11970" ], + "x-ms-correlation-request-id": [ "4a7e6fb9-6be6-4b0d-987c-0e1f338e4894" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T110228Z:4a7e6fb9-6be6-4b0d-987c-0e1f338e4894" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:47:24 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:02:28 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -553,12 +553,12 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01?api-version=2017-12-01", - "Content": "{\n \"properties\": {\n \"endIpAddress\": \"0.0.0.1\",\n \"startIpAddress\": \"0.0.0.0\"\n }\n}", + "Content": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.0\",\r\n \"endIpAddress\": \"0.0.0.1\"\r\n }\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "88" ] + "Content-Length": [ "93" ] } }, "Response": { @@ -566,35 +566,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/bd038487-9393-4d91-92af-61dd8877d382?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/a188ec6d-f2ee-44c7-978f-4767bb7b695b?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/bd038487-9393-4d91-92af-61dd8877d382?api-version=2017-12-01" ], - "x-ms-request-id": [ "bd038487-9393-4d91-92af-61dd8877d382" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/a188ec6d-f2ee-44c7-978f-4767bb7b695b?api-version=2017-12-01" ], + "x-ms-request-id": [ "a188ec6d-f2ee-44c7-978f-4767bb7b695b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], - "x-ms-correlation-request-id": [ "6f58a994-08c6-433d-a4a8-6984820be015" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T034726Z:6f58a994-08c6-433d-a4a8-6984820be015" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1194" ], + "x-ms-correlation-request-id": [ "ba29f663-9e1e-429b-9a60-94a769242af2" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T110231Z:ba29f663-9e1e-429b-9a60-94a769242af2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:47:25 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:02:30 GMT" ] }, "ContentHeaders": { "Content-Length": [ "87" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServerFirewallRules\",\"startTime\":\"2020-05-08T03:47:24.853Z\"}" + "Content": "{\"operation\":\"UpsertElasticServerFirewallRules\",\"startTime\":\"2020-09-25T11:02:29.227Z\"}" } }, - "Get-AzPostgreSqlFirewallRule+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/bd038487-9393-4d91-92af-61dd8877d382?api-version=2017-12-01+2": { + "Get-AzPostgreSqlFirewallRule+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/a188ec6d-f2ee-44c7-978f-4767bb7b695b?api-version=2017-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/bd038487-9393-4d91-92af-61dd8877d382?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/a188ec6d-f2ee-44c7-978f-4767bb7b695b?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "36", "37" ], - "x-ms-client-request-id": [ "6416427d-f0bb-40ee-b190-68e1f8c12b85", "6416427d-f0bb-40ee-b190-68e1f8c12b85" ], - "CommandName": [ "New-AzPostgreSqlFirewallRule", "New-AzPostgreSqlFirewallRule" ], + "x-ms-unique-id": [ "37", "38" ], + "x-ms-client-request-id": [ "1dfd6303-bf0d-44a0-b910-9d6fc692b283", "1dfd6303-bf0d-44a0-b910-9d6fc692b283" ], + "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlFirewallRule", "Az.PostgreSql.internal\\New-AzPostgreSqlFirewallRule" ], "FullCommandName": [ "New-AzPostgreSqlFirewallRule_CreateExpanded", "New-AzPostgreSqlFirewallRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], @@ -609,21 +609,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "f260719f-7c66-49cf-a50b-fc4b9fcacc00" ], + "x-ms-request-id": [ "3732c600-edc7-4f86-a72e-f5a6e210796b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11972" ], - "x-ms-correlation-request-id": [ "3068f4e3-1f6d-4a3c-9baf-f9347258e18d" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T034741Z:3068f4e3-1f6d-4a3c-9baf-f9347258e18d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11969" ], + "x-ms-correlation-request-id": [ "04adb532-641e-4942-8801-80d8b9cdc48a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T110246Z:04adb532-641e-4942-8801-80d8b9cdc48a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:47:40 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:02:46 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"bd038487-9393-4d91-92af-61dd8877d382\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-08T03:47:24.853Z\"}" + "Content": "{\"name\":\"a188ec6d-f2ee-44c7-978f-4767bb7b695b\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:02:29.227Z\"}" } }, "Get-AzPostgreSqlFirewallRule+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01?api-version=2017-12-01+3": { @@ -632,9 +632,9 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "36", "37", "38" ], - "x-ms-client-request-id": [ "6416427d-f0bb-40ee-b190-68e1f8c12b85", "6416427d-f0bb-40ee-b190-68e1f8c12b85", "6416427d-f0bb-40ee-b190-68e1f8c12b85" ], - "CommandName": [ "New-AzPostgreSqlFirewallRule", "New-AzPostgreSqlFirewallRule", "New-AzPostgreSqlFirewallRule" ], + "x-ms-unique-id": [ "37", "38", "39" ], + "x-ms-client-request-id": [ "1dfd6303-bf0d-44a0-b910-9d6fc692b283", "1dfd6303-bf0d-44a0-b910-9d6fc692b283", "1dfd6303-bf0d-44a0-b910-9d6fc692b283" ], + "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlFirewallRule", "Az.PostgreSql.internal\\New-AzPostgreSqlFirewallRule", "Az.PostgreSql.internal\\New-AzPostgreSqlFirewallRule" ], "FullCommandName": [ "New-AzPostgreSqlFirewallRule_CreateExpanded", "New-AzPostgreSqlFirewallRule_CreateExpanded", "New-AzPostgreSqlFirewallRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], @@ -648,14 +648,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "e06faee0-ba28-4fdc-b3ba-a57ce3cf379b" ], + "x-ms-request-id": [ "8cac988b-cafc-47d8-9ddd-2de991112855" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11971" ], - "x-ms-correlation-request-id": [ "2b5829c9-2b8c-414a-bb1f-8b15a283bda2" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T034741Z:2b5829c9-2b8c-414a-bb1f-8b15a283bda2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11968" ], + "x-ms-correlation-request-id": [ "fda4a69f-1bbc-444e-9a1a-4a7ccc0269e5" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T110247Z:fda4a69f-1bbc-444e-9a1a-4a7ccc0269e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:47:41 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:02:46 GMT" ] }, "ContentHeaders": { "Content-Length": [ "335" ], @@ -671,8 +671,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "39" ], - "x-ms-client-request-id": [ "c21b1629-2124-4873-bda6-a09a71d6d7e0" ], + "x-ms-unique-id": [ "40" ], + "x-ms-client-request-id": [ "cd73505b-1c1e-401a-84ed-9bf515b8a9a6" ], "CommandName": [ "Get-AzPostgreSqlFirewallRule" ], "FullCommandName": [ "Get-AzPostgreSqlFirewallRule_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -687,14 +687,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "d1f9169d-7504-443d-9c05-827300e26eba" ], + "x-ms-request-id": [ "f10baad8-937d-4831-bb9d-01a94887a421" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11970" ], - "x-ms-correlation-request-id": [ "3a669f69-2144-47a7-8c16-d6c1059d9c93" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T034742Z:3a669f69-2144-47a7-8c16-d6c1059d9c93" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11967" ], + "x-ms-correlation-request-id": [ "179a511a-9a94-4cea-b91e-f3adc417d300" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T110247Z:179a511a-9a94-4cea-b91e-f3adc417d300" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:47:41 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:02:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "335" ], @@ -710,8 +710,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "40" ], - "x-ms-client-request-id": [ "7821459d-181e-407a-84b7-b6cfeba9c676" ], + "x-ms-unique-id": [ "41" ], + "x-ms-client-request-id": [ "c171bf61-72b8-4ff8-a55b-0409fa701afc" ], "CommandName": [ "Remove-AzPostgreSqlFirewallRule" ], "FullCommandName": [ "Remove-AzPostgreSqlFirewallRule_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -726,34 +726,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/663d6389-b2d6-4474-8b57-3fc30a919d2b?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/f62f351e-3685-475e-8d98-9f7c68fb3c83?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/663d6389-b2d6-4474-8b57-3fc30a919d2b?api-version=2017-12-01" ], - "x-ms-request-id": [ "663d6389-b2d6-4474-8b57-3fc30a919d2b" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/f62f351e-3685-475e-8d98-9f7c68fb3c83?api-version=2017-12-01" ], + "x-ms-request-id": [ "f62f351e-3685-475e-8d98-9f7c68fb3c83" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], - "x-ms-correlation-request-id": [ "531646d1-e1a5-4b13-a825-8ddddc4687b9" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T034743Z:531646d1-e1a5-4b13-a825-8ddddc4687b9" ], + "x-ms-correlation-request-id": [ "c235f970-94c3-43eb-b7df-0854ef93d5e4" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T110249Z:c235f970-94c3-43eb-b7df-0854ef93d5e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:47:43 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:02:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "84" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"DropElasticServerFirewallRule\",\"startTime\":\"2020-05-08T03:47:42.697Z\"}" + "Content": "{\"operation\":\"DropElasticServerFirewallRule\",\"startTime\":\"2020-09-25T11:02:48.087Z\"}" } }, - "Get-AzPostgreSqlFirewallRule+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/663d6389-b2d6-4474-8b57-3fc30a919d2b?api-version=2017-12-01+6": { + "Get-AzPostgreSqlFirewallRule+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/f62f351e-3685-475e-8d98-9f7c68fb3c83?api-version=2017-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/663d6389-b2d6-4474-8b57-3fc30a919d2b?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/f62f351e-3685-475e-8d98-9f7c68fb3c83?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "40", "41" ], - "x-ms-client-request-id": [ "7821459d-181e-407a-84b7-b6cfeba9c676", "7821459d-181e-407a-84b7-b6cfeba9c676" ], + "x-ms-unique-id": [ "41", "42" ], + "x-ms-client-request-id": [ "c171bf61-72b8-4ff8-a55b-0409fa701afc", "c171bf61-72b8-4ff8-a55b-0409fa701afc" ], "CommandName": [ "Remove-AzPostgreSqlFirewallRule", "Remove-AzPostgreSqlFirewallRule" ], "FullCommandName": [ "Remove-AzPostgreSqlFirewallRule_Delete", "Remove-AzPostgreSqlFirewallRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -769,31 +769,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "63d82b97-1125-4551-a10f-c539c2a0f62f" ], + "x-ms-request-id": [ "49e2cca0-c5c2-4c50-8026-13cb4fc9e5c2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11969" ], - "x-ms-correlation-request-id": [ "a7f62c5b-306d-4da1-a370-85e482fbd25f" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T034759Z:a7f62c5b-306d-4da1-a370-85e482fbd25f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11966" ], + "x-ms-correlation-request-id": [ "ebbe53aa-9e96-4cd4-8461-f44adf41f488" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T110304Z:ebbe53aa-9e96-4cd4-8461-f44adf41f488" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:47:58 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:03:03 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"663d6389-b2d6-4474-8b57-3fc30a919d2b\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-08T03:47:42.697Z\"}" + "Content": "{\"name\":\"f62f351e-3685-475e-8d98-9f7c68fb3c83\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:02:48.087Z\"}" } }, - "Get-AzPostgreSqlFirewallRule+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/663d6389-b2d6-4474-8b57-3fc30a919d2b?api-version=2017-12-01+7": { + "Get-AzPostgreSqlFirewallRule+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/f62f351e-3685-475e-8d98-9f7c68fb3c83?api-version=2017-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/663d6389-b2d6-4474-8b57-3fc30a919d2b?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/f62f351e-3685-475e-8d98-9f7c68fb3c83?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "40", "41", "42" ], - "x-ms-client-request-id": [ "7821459d-181e-407a-84b7-b6cfeba9c676", "7821459d-181e-407a-84b7-b6cfeba9c676", "7821459d-181e-407a-84b7-b6cfeba9c676" ], + "x-ms-unique-id": [ "41", "42", "43" ], + "x-ms-client-request-id": [ "c171bf61-72b8-4ff8-a55b-0409fa701afc", "c171bf61-72b8-4ff8-a55b-0409fa701afc", "c171bf61-72b8-4ff8-a55b-0409fa701afc" ], "CommandName": [ "Remove-AzPostgreSqlFirewallRule", "Remove-AzPostgreSqlFirewallRule", "Remove-AzPostgreSqlFirewallRule" ], "FullCommandName": [ "Remove-AzPostgreSqlFirewallRule_Delete", "Remove-AzPostgreSqlFirewallRule_Delete", "Remove-AzPostgreSqlFirewallRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -808,14 +808,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "72c83574-2d03-4880-b586-0c0ab93a8e27" ], + "x-ms-request-id": [ "9f54800b-ab46-418c-968b-17a94bc758ea" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11968" ], - "x-ms-correlation-request-id": [ "0fafc3eb-94e5-4db8-8b1e-8ed1c459b4a3" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T034759Z:0fafc3eb-94e5-4db8-8b1e-8ed1c459b4a3" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11965" ], + "x-ms-correlation-request-id": [ "fb22b042-1f96-432b-9710-8a5c93a4ffea" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T110304Z:fb22b042-1f96-432b-9710-8a5c93a4ffea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:47:58 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:03:03 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/PostgreSql/test/Get-AzPostgreSqlReplica.Recording.json b/src/PostgreSql/test/Get-AzPostgreSqlReplica.Recording.json index 5c90c24b2c0a..638be0620af5 100644 --- a/src/PostgreSql/test/Get-AzPostgreSqlReplica.Recording.json +++ b/src/PostgreSql/test/Get-AzPostgreSqlReplica.Recording.json @@ -5,8 +5,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "43" ], - "x-ms-client-request-id": [ "2c63bfd3-f066-4d4a-ae81-68ed8a84704f" ], + "x-ms-unique-id": [ "44" ], + "x-ms-client-request-id": [ "cbfafe3e-1d4d-42e4-849a-40e907783653" ], "CommandName": [ "Get-AzPostgreSqlServer" ], "FullCommandName": [ "Get-AzPostgreSqlServer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -21,33 +21,33 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "933bfa75-d625-4a24-8e45-467cfdf42e91" ], + "x-ms-request-id": [ "e1359993-1a3b-4e30-b70b-b7d8a28adbaa" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11967" ], - "x-ms-correlation-request-id": [ "859406cc-ed72-4066-8d85-a1026afdd01c" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T034800Z:859406cc-ed72-4066-8d85-a1026afdd01c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11964" ], + "x-ms-correlation-request-id": [ "6f1cd3b3-0ae6-45d8-8f1d-83ecd36d68bd" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T110305Z:6f1cd3b3-0ae6-45d8-8f1d-83ecd36d68bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:47:59 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:03:04 GMT" ] }, "ContentHeaders": { "Content-Length": [ "943" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"postgresql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-05-08T03:54:02.197+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\",\"name\":\"postgresql-test-100\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}" + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"postgresql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-09-25T11:09:04.307+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\",\"name\":\"postgresql-test-100\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}" } }, "Get-AzPostgreSqlReplica+[NoContext]+List+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100-replica?api-version=2017-12-01+2": { "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100-replica?api-version=2017-12-01", - "Content": "{\n \"properties\": {\n \"createMode\": \"Replica\",\n \"sourceServerId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\"\n },\n \"location\": \"eastus\"\n}", + "Content": "{\r\n \"properties\": {\r\n \"createMode\": \"Replica\",\r\n \"sourceServerId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\"\r\n },\r\n \"location\": \"eastus\"\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "248" ] + "Content-Length": [ "254" ] } }, "Response": { @@ -55,34 +55,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/61e8eb2a-cbf9-4ace-8888-48942b9b2884?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/c0cffee2-4834-48e2-b55e-792ffed83efd?api-version=2017-12-01" ], "Retry-After": [ "30" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/61e8eb2a-cbf9-4ace-8888-48942b9b2884?api-version=2017-12-01" ], - "x-ms-request-id": [ "61e8eb2a-cbf9-4ace-8888-48942b9b2884" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1195" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/c0cffee2-4834-48e2-b55e-792ffed83efd?api-version=2017-12-01" ], + "x-ms-request-id": [ "c0cffee2-4834-48e2-b55e-792ffed83efd" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "952ec8df-84e2-44fa-8692-4e4a3f530261" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T034805Z:952ec8df-84e2-44fa-8692-4e4a3f530261" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1193" ], + "x-ms-correlation-request-id": [ "0d0340e5-0085-451e-9651-d384dda3a116" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T110312Z:0d0340e5-0085-451e-9651-d384dda3a116" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:48:04 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:03:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "88" ], + "Content-Length": [ "87" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"CreateElasticServerContinuousCopy\",\"startTime\":\"2020-05-08T03:48:04.887Z\"}" + "Content": "{\"operation\":\"CreateElasticServerContinuousCopy\",\"startTime\":\"2020-09-25T11:03:11.76Z\"}" } }, - "Get-AzPostgreSqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/61e8eb2a-cbf9-4ace-8888-48942b9b2884?api-version=2017-12-01+3": { + "Get-AzPostgreSqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/c0cffee2-4834-48e2-b55e-792ffed83efd?api-version=2017-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/61e8eb2a-cbf9-4ace-8888-48942b9b2884?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/c0cffee2-4834-48e2-b55e-792ffed83efd?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "44", "45" ], - "x-ms-client-request-id": [ "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022" ], + "x-ms-unique-id": [ "45", "46" ], + "x-ms-client-request-id": [ "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -98,31 +98,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "840ce249-99a0-44b4-a178-8a72157dd3e4" ], + "x-ms-request-id": [ "0275d424-b415-423a-8f6f-16420117f44a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11966" ], - "x-ms-correlation-request-id": [ "51fdd084-9b85-4e65-8183-e9e655fc46fc" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T034835Z:51fdd084-9b85-4e65-8183-e9e655fc46fc" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11963" ], + "x-ms-correlation-request-id": [ "4632384d-d191-44b5-b119-509817e59841" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T110342Z:4632384d-d191-44b5-b119-509817e59841" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:48:35 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:03:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "108" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"61e8eb2a-cbf9-4ace-8888-48942b9b2884\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T03:48:04.887Z\"}" + "Content": "{\"name\":\"c0cffee2-4834-48e2-b55e-792ffed83efd\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:03:11.76Z\"}" } }, - "Get-AzPostgreSqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/61e8eb2a-cbf9-4ace-8888-48942b9b2884?api-version=2017-12-01+4": { + "Get-AzPostgreSqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/c0cffee2-4834-48e2-b55e-792ffed83efd?api-version=2017-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/61e8eb2a-cbf9-4ace-8888-48942b9b2884?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/c0cffee2-4834-48e2-b55e-792ffed83efd?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "44", "45", "46" ], - "x-ms-client-request-id": [ "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022" ], + "x-ms-unique-id": [ "45", "46", "47" ], + "x-ms-client-request-id": [ "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -138,31 +138,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "77b40fbf-3735-4399-8503-e3698f65ceff" ], + "x-ms-request-id": [ "757b7703-0b68-481e-9695-f27b0178b40b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11965" ], - "x-ms-correlation-request-id": [ "c3380d78-d8a1-49be-8964-78960dde3595" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T034906Z:c3380d78-d8a1-49be-8964-78960dde3595" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11962" ], + "x-ms-correlation-request-id": [ "05b3254f-bc45-488d-9796-18c7fc0bbb49" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T110412Z:05b3254f-bc45-488d-9796-18c7fc0bbb49" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:49:05 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:04:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "108" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"61e8eb2a-cbf9-4ace-8888-48942b9b2884\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T03:48:04.887Z\"}" + "Content": "{\"name\":\"c0cffee2-4834-48e2-b55e-792ffed83efd\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:03:11.76Z\"}" } }, - "Get-AzPostgreSqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/61e8eb2a-cbf9-4ace-8888-48942b9b2884?api-version=2017-12-01+5": { + "Get-AzPostgreSqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/c0cffee2-4834-48e2-b55e-792ffed83efd?api-version=2017-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/61e8eb2a-cbf9-4ace-8888-48942b9b2884?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/c0cffee2-4834-48e2-b55e-792ffed83efd?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "44", "45", "46", "47" ], - "x-ms-client-request-id": [ "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022" ], + "x-ms-unique-id": [ "45", "46", "47", "48" ], + "x-ms-client-request-id": [ "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -178,31 +178,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "bbe9633b-718c-4741-8b6d-5eae921ccfbf" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11964" ], + "x-ms-request-id": [ "0d60f64d-9ad3-4423-a8b8-2ed6a8c35ced" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "528dd416-cda1-4230-adb7-0fc1abf8e58d" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T034936Z:528dd416-cda1-4230-adb7-0fc1abf8e58d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11961" ], + "x-ms-correlation-request-id": [ "5aeaaba9-4650-42fe-819e-f059a1a04a65" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T110443Z:5aeaaba9-4650-42fe-819e-f059a1a04a65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:49:35 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:04:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "108" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"61e8eb2a-cbf9-4ace-8888-48942b9b2884\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T03:48:04.887Z\"}" + "Content": "{\"name\":\"c0cffee2-4834-48e2-b55e-792ffed83efd\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:03:11.76Z\"}" } }, - "Get-AzPostgreSqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/61e8eb2a-cbf9-4ace-8888-48942b9b2884?api-version=2017-12-01+6": { + "Get-AzPostgreSqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/c0cffee2-4834-48e2-b55e-792ffed83efd?api-version=2017-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/61e8eb2a-cbf9-4ace-8888-48942b9b2884?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/c0cffee2-4834-48e2-b55e-792ffed83efd?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "44", "45", "46", "47", "48" ], - "x-ms-client-request-id": [ "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022" ], + "x-ms-unique-id": [ "45", "46", "47", "48", "49" ], + "x-ms-client-request-id": [ "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -218,31 +218,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "3c84ae5e-21ba-44fd-9a0d-01b17ca2a219" ], + "x-ms-request-id": [ "03ab6eef-e138-4a72-a597-bd144548a561" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11963" ], - "x-ms-correlation-request-id": [ "92a905ec-28a8-467b-a4a0-a86195fd5547" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T035007Z:92a905ec-28a8-467b-a4a0-a86195fd5547" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11960" ], + "x-ms-correlation-request-id": [ "78b0b5c7-264c-4b13-9674-0a83aa9dd723" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T110513Z:78b0b5c7-264c-4b13-9674-0a83aa9dd723" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:50:07 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:05:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "108" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"61e8eb2a-cbf9-4ace-8888-48942b9b2884\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T03:48:04.887Z\"}" + "Content": "{\"name\":\"c0cffee2-4834-48e2-b55e-792ffed83efd\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:03:11.76Z\"}" } }, - "Get-AzPostgreSqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/61e8eb2a-cbf9-4ace-8888-48942b9b2884?api-version=2017-12-01+7": { + "Get-AzPostgreSqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/c0cffee2-4834-48e2-b55e-792ffed83efd?api-version=2017-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/61e8eb2a-cbf9-4ace-8888-48942b9b2884?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/c0cffee2-4834-48e2-b55e-792ffed83efd?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "44", "45", "46", "47", "48", "49" ], - "x-ms-client-request-id": [ "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022" ], + "x-ms-unique-id": [ "45", "46", "47", "48", "49", "50" ], + "x-ms-client-request-id": [ "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -258,31 +258,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "ff04bd8b-2af9-4a10-88fc-5e40681e6afa" ], + "x-ms-request-id": [ "6233494c-ecff-4552-91b4-ff56cc903fda" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11962" ], - "x-ms-correlation-request-id": [ "a23fc269-35fe-476e-a5ed-339a22a93ec9" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T035038Z:a23fc269-35fe-476e-a5ed-339a22a93ec9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11959" ], + "x-ms-correlation-request-id": [ "6da51f25-3280-46bd-afe9-3d636acc3fde" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T110543Z:6da51f25-3280-46bd-afe9-3d636acc3fde" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:50:37 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:05:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "108" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"61e8eb2a-cbf9-4ace-8888-48942b9b2884\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T03:48:04.887Z\"}" + "Content": "{\"name\":\"c0cffee2-4834-48e2-b55e-792ffed83efd\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:03:11.76Z\"}" } }, - "Get-AzPostgreSqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/61e8eb2a-cbf9-4ace-8888-48942b9b2884?api-version=2017-12-01+8": { + "Get-AzPostgreSqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/c0cffee2-4834-48e2-b55e-792ffed83efd?api-version=2017-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/61e8eb2a-cbf9-4ace-8888-48942b9b2884?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/c0cffee2-4834-48e2-b55e-792ffed83efd?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "44", "45", "46", "47", "48", "49", "50" ], - "x-ms-client-request-id": [ "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022" ], + "x-ms-unique-id": [ "45", "46", "47", "48", "49", "50", "51" ], + "x-ms-client-request-id": [ "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -298,31 +298,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "2518616a-1400-4ce3-a909-4413eb8c95ca" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11961" ], + "x-ms-request-id": [ "5562f8d2-ea18-46ac-9655-ce1696ce9946" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "95e58b9f-8f17-4b35-94e1-e59aa26f6d55" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T035108Z:95e58b9f-8f17-4b35-94e1-e59aa26f6d55" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11958" ], + "x-ms-correlation-request-id": [ "3a157e7a-7418-4ac1-8190-f8a24f9d06d6" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T110614Z:3a157e7a-7418-4ac1-8190-f8a24f9d06d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:51:07 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:06:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "108" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"61e8eb2a-cbf9-4ace-8888-48942b9b2884\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T03:48:04.887Z\"}" + "Content": "{\"name\":\"c0cffee2-4834-48e2-b55e-792ffed83efd\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:03:11.76Z\"}" } }, - "Get-AzPostgreSqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/61e8eb2a-cbf9-4ace-8888-48942b9b2884?api-version=2017-12-01+9": { + "Get-AzPostgreSqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/c0cffee2-4834-48e2-b55e-792ffed83efd?api-version=2017-12-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/61e8eb2a-cbf9-4ace-8888-48942b9b2884?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/c0cffee2-4834-48e2-b55e-792ffed83efd?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "44", "45", "46", "47", "48", "49", "50", "51" ], - "x-ms-client-request-id": [ "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022" ], + "x-ms-unique-id": [ "45", "46", "47", "48", "49", "50", "51", "52" ], + "x-ms-client-request-id": [ "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -338,31 +338,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "4a640684-b40c-433c-846a-a505b49a994a" ], + "x-ms-request-id": [ "bf44047c-870c-4ad4-bdbc-e77c6004da85" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11960" ], - "x-ms-correlation-request-id": [ "9199fd01-870a-45aa-9223-c43ccf78979f" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T035139Z:9199fd01-870a-45aa-9223-c43ccf78979f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11957" ], + "x-ms-correlation-request-id": [ "5d6d9845-b231-4a4a-a19f-0ec3ec489588" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T110644Z:5d6d9845-b231-4a4a-a19f-0ec3ec489588" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:51:39 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:06:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "108" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"61e8eb2a-cbf9-4ace-8888-48942b9b2884\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T03:48:04.887Z\"}" + "Content": "{\"name\":\"c0cffee2-4834-48e2-b55e-792ffed83efd\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:03:11.76Z\"}" } }, - "Get-AzPostgreSqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/61e8eb2a-cbf9-4ace-8888-48942b9b2884?api-version=2017-12-01+10": { + "Get-AzPostgreSqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/c0cffee2-4834-48e2-b55e-792ffed83efd?api-version=2017-12-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/61e8eb2a-cbf9-4ace-8888-48942b9b2884?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/c0cffee2-4834-48e2-b55e-792ffed83efd?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "44", "45", "46", "47", "48", "49", "50", "51", "52" ], - "x-ms-client-request-id": [ "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022" ], + "x-ms-unique-id": [ "45", "46", "47", "48", "49", "50", "51", "52", "53" ], + "x-ms-client-request-id": [ "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -378,31 +378,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "90b121ca-acef-47be-89f3-db764c1fe2a7" ], + "x-ms-request-id": [ "a3c88288-3e6a-4a94-a519-476bcb991ad6" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11959" ], - "x-ms-correlation-request-id": [ "318c2a28-2de1-4e89-b2d2-6b2a1d6c3da6" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T035209Z:318c2a28-2de1-4e89-b2d2-6b2a1d6c3da6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11956" ], + "x-ms-correlation-request-id": [ "dc689f98-7052-45ad-9b7a-61db3d09222e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T110715Z:dc689f98-7052-45ad-9b7a-61db3d09222e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:52:09 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:07:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "108" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"61e8eb2a-cbf9-4ace-8888-48942b9b2884\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T03:48:04.887Z\"}" + "Content": "{\"name\":\"c0cffee2-4834-48e2-b55e-792ffed83efd\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:03:11.76Z\"}" } }, - "Get-AzPostgreSqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/61e8eb2a-cbf9-4ace-8888-48942b9b2884?api-version=2017-12-01+11": { + "Get-AzPostgreSqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/c0cffee2-4834-48e2-b55e-792ffed83efd?api-version=2017-12-01+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/61e8eb2a-cbf9-4ace-8888-48942b9b2884?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/c0cffee2-4834-48e2-b55e-792ffed83efd?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "44", "45", "46", "47", "48", "49", "50", "51", "52", "53" ], - "x-ms-client-request-id": [ "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022" ], + "x-ms-unique-id": [ "45", "46", "47", "48", "49", "50", "51", "52", "53", "54" ], + "x-ms-client-request-id": [ "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -418,31 +418,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "65dc2169-be34-4155-8adb-451685013799" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11958" ], + "x-ms-request-id": [ "c48b68a8-bde1-4d28-9679-8206e74b9815" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "bd3bcec1-642a-45ab-989f-9c30bee377e0" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T035240Z:bd3bcec1-642a-45ab-989f-9c30bee377e0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11955" ], + "x-ms-correlation-request-id": [ "3bc2e32c-d791-42dc-950d-c7888fe5eb17" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T110745Z:3bc2e32c-d791-42dc-950d-c7888fe5eb17" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:52:39 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:07:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "108" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"61e8eb2a-cbf9-4ace-8888-48942b9b2884\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T03:48:04.887Z\"}" + "Content": "{\"name\":\"c0cffee2-4834-48e2-b55e-792ffed83efd\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:03:11.76Z\"}" } }, - "Get-AzPostgreSqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/61e8eb2a-cbf9-4ace-8888-48942b9b2884?api-version=2017-12-01+12": { + "Get-AzPostgreSqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/c0cffee2-4834-48e2-b55e-792ffed83efd?api-version=2017-12-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/61e8eb2a-cbf9-4ace-8888-48942b9b2884?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/c0cffee2-4834-48e2-b55e-792ffed83efd?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "54" ], - "x-ms-client-request-id": [ "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022" ], + "x-ms-unique-id": [ "45", "46", "47", "48", "49", "50", "51", "52", "53", "54", "55" ], + "x-ms-client-request-id": [ "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -458,31 +458,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "2a77776e-7c97-4501-b244-f14ec6bb9820" ], + "x-ms-request-id": [ "c3afd8df-1b2e-4ebe-b95b-50731be77fd3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11957" ], - "x-ms-correlation-request-id": [ "d8f8b0e5-8107-4e1b-adc5-dd5e3688b198" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T035312Z:d8f8b0e5-8107-4e1b-adc5-dd5e3688b198" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11954" ], + "x-ms-correlation-request-id": [ "2ea074e3-ce3d-4942-94ea-b1003ce3c668" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T110815Z:2ea074e3-ce3d-4942-94ea-b1003ce3c668" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:53:11 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:08:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "108" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"61e8eb2a-cbf9-4ace-8888-48942b9b2884\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T03:48:04.887Z\"}" + "Content": "{\"name\":\"c0cffee2-4834-48e2-b55e-792ffed83efd\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:03:11.76Z\"}" } }, - "Get-AzPostgreSqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/61e8eb2a-cbf9-4ace-8888-48942b9b2884?api-version=2017-12-01+13": { + "Get-AzPostgreSqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/c0cffee2-4834-48e2-b55e-792ffed83efd?api-version=2017-12-01+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/61e8eb2a-cbf9-4ace-8888-48942b9b2884?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/c0cffee2-4834-48e2-b55e-792ffed83efd?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "54", "55" ], - "x-ms-client-request-id": [ "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022" ], + "x-ms-unique-id": [ "45", "46", "47", "48", "49", "50", "51", "52", "53", "54", "55", "56" ], + "x-ms-client-request-id": [ "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -498,31 +498,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "84733790-38b3-4b7d-9a2d-5948b9b02648" ], + "x-ms-request-id": [ "1a1de3d7-276e-437a-8842-a576c3040db3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11956" ], - "x-ms-correlation-request-id": [ "ed7b3fb7-19cb-4c1e-8bcd-c616eaa31a71" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T035343Z:ed7b3fb7-19cb-4c1e-8bcd-c616eaa31a71" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11953" ], + "x-ms-correlation-request-id": [ "0bf9c035-6d14-4e68-9718-016eb3fc47ff" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T110846Z:0bf9c035-6d14-4e68-9718-016eb3fc47ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:53:42 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:08:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "108" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"61e8eb2a-cbf9-4ace-8888-48942b9b2884\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T03:48:04.887Z\"}" + "Content": "{\"name\":\"c0cffee2-4834-48e2-b55e-792ffed83efd\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:03:11.76Z\"}" } }, - "Get-AzPostgreSqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/61e8eb2a-cbf9-4ace-8888-48942b9b2884?api-version=2017-12-01+14": { + "Get-AzPostgreSqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/c0cffee2-4834-48e2-b55e-792ffed83efd?api-version=2017-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/61e8eb2a-cbf9-4ace-8888-48942b9b2884?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/c0cffee2-4834-48e2-b55e-792ffed83efd?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "54", "55", "56" ], - "x-ms-client-request-id": [ "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022" ], + "x-ms-unique-id": [ "45", "46", "47", "48", "49", "50", "51", "52", "53", "54", "55", "56", "57" ], + "x-ms-client-request-id": [ "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -538,31 +538,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "7ffceb95-631a-446f-98df-fe1562d621aa" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11955" ], + "x-ms-request-id": [ "4cacca2f-d7a2-45df-94f3-966b0761890d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "e83058ce-9c07-4529-8f90-e6585b25f6bd" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T035413Z:e83058ce-9c07-4529-8f90-e6585b25f6bd" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11952" ], + "x-ms-correlation-request-id": [ "cf930a67-91fc-498e-8775-5528980b4e06" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T110916Z:cf930a67-91fc-498e-8775-5528980b4e06" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:54:12 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:09:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "108" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"61e8eb2a-cbf9-4ace-8888-48942b9b2884\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T03:48:04.887Z\"}" + "Content": "{\"name\":\"c0cffee2-4834-48e2-b55e-792ffed83efd\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:03:11.76Z\"}" } }, - "Get-AzPostgreSqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/61e8eb2a-cbf9-4ace-8888-48942b9b2884?api-version=2017-12-01+15": { + "Get-AzPostgreSqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/c0cffee2-4834-48e2-b55e-792ffed83efd?api-version=2017-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/61e8eb2a-cbf9-4ace-8888-48942b9b2884?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/c0cffee2-4834-48e2-b55e-792ffed83efd?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "54", "55", "56", "57" ], - "x-ms-client-request-id": [ "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022" ], + "x-ms-unique-id": [ "45", "46", "47", "48", "49", "50", "51", "52", "53", "54", "55", "56", "57", "58" ], + "x-ms-client-request-id": [ "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -578,21 +578,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "805dd20b-be6c-40b9-8a6c-ff3ad1c3cca8" ], + "x-ms-request-id": [ "0c40e872-fd12-407b-ada5-9f9fdcc044d0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11954" ], - "x-ms-correlation-request-id": [ "f7ae420e-3383-4588-afba-909a75bff225" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T035444Z:f7ae420e-3383-4588-afba-909a75bff225" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11951" ], + "x-ms-correlation-request-id": [ "5dabbb84-a501-4170-b8b8-f39498a417f5" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T110946Z:5dabbb84-a501-4170-b8b8-f39498a417f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:54:43 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:09:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "106" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"61e8eb2a-cbf9-4ace-8888-48942b9b2884\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-08T03:48:04.887Z\"}" + "Content": "{\"name\":\"c0cffee2-4834-48e2-b55e-792ffed83efd\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:03:11.76Z\"}" } }, "Get-AzPostgreSqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100-replica?api-version=2017-12-01+16": { @@ -601,8 +601,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100-replica?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "54", "55", "56", "57", "58" ], - "x-ms-client-request-id": [ "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022", "150912ea-ead1-4506-b1f0-5b39a26f3022" ], + "x-ms-unique-id": [ "45", "46", "47", "48", "49", "50", "51", "52", "53", "54", "55", "56", "57", "58", "59" ], + "x-ms-client-request-id": [ "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13", "dfafd293-f67b-4970-a3b7-dc991aed8a13" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -617,21 +617,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "d91a9fec-9925-4c6c-a4f3-2ab0b03133a2" ], + "x-ms-request-id": [ "8a2f766c-6564-4ce9-b7b7-41a29d5e1fc7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11953" ], - "x-ms-correlation-request-id": [ "1a087a67-b38f-4af1-9b12-f21ac6b0e7b0" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T035444Z:1a087a67-b38f-4af1-9b12-f21ac6b0e7b0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11950" ], + "x-ms-correlation-request-id": [ "7204ea1e-b5de-40e1-a230-b084b3bc1f6a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T110947Z:7204ea1e-b5de-40e1-a230-b084b3bc1f6a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:54:44 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:09:46 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1113" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"postgresql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Enabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100-replica.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-05-08T04:00:06.87+00:00\",\"replicationRole\":\"Replica\",\"masterServerId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\",\"replicaCapacity\":0,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100-replica\",\"name\":\"postgresql-test-100-replica\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}" + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"postgresql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Enabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100-replica.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-09-25T11:15:13.76+00:00\",\"replicationRole\":\"Replica\",\"masterServerId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\",\"replicaCapacity\":0,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100-replica\",\"name\":\"postgresql-test-100-replica\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}" } }, "Get-AzPostgreSqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/Replicas?api-version=2017-12-01+17": { @@ -640,8 +640,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/Replicas?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "59" ], - "x-ms-client-request-id": [ "a36fe0cc-7cf9-4818-880d-fcf8b12f1e49" ], + "x-ms-unique-id": [ "60" ], + "x-ms-client-request-id": [ "67a3ab65-098a-44d3-ba21-b80debd26c0c" ], "CommandName": [ "Get-AzPostgreSqlReplica" ], "FullCommandName": [ "Get-AzPostgreSqlReplica_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -656,21 +656,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "f7ab9d59-b7de-4dcf-bf00-d68da38958cd" ], + "x-ms-request-id": [ "c4dd5add-c960-462e-8f72-089daf8a59f5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11952" ], - "x-ms-correlation-request-id": [ "2558243d-2bdb-47a5-9f3e-80a63b14ef71" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T035445Z:2558243d-2bdb-47a5-9f3e-80a63b14ef71" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11949" ], + "x-ms-correlation-request-id": [ "dc80f2cd-1d2e-4133-ba2c-acadce2a5253" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T110947Z:dc80f2cd-1d2e-4133-ba2c-acadce2a5253" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:54:44 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:09:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1125" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"postgresql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Enabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100-replica.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-05-08T04:00:06.87+00:00\",\"replicationRole\":\"Replica\",\"masterServerId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\",\"replicaCapacity\":0,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100-replica\",\"name\":\"postgresql-test-100-replica\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}]}" + "Content": "{\"value\":[{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"postgresql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Enabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100-replica.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-09-25T11:15:13.76+00:00\",\"replicationRole\":\"Replica\",\"masterServerId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\",\"replicaCapacity\":0,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100-replica\",\"name\":\"postgresql-test-100-replica\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}]}" } }, "Get-AzPostgreSqlReplica+[NoContext]+List+$DELETE+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100-replica?api-version=2017-12-01+18": { @@ -679,8 +679,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100-replica?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "60" ], - "x-ms-client-request-id": [ "a5a8131a-3ea0-44a1-8913-d0916970de0a" ], + "x-ms-unique-id": [ "61" ], + "x-ms-client-request-id": [ "4b210426-a8ce-426c-9403-dcf3bc46bba3" ], "CommandName": [ "Remove-AzPostgreSqlServer" ], "FullCommandName": [ "Remove-AzPostgreSqlServer_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -695,34 +695,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/3416dc07-adf4-4795-8e26-65fe60139ce3?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/97d13a2d-cdfa-43a0-a9f7-d1268dede627?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/3416dc07-adf4-4795-8e26-65fe60139ce3?api-version=2017-12-01" ], - "x-ms-request-id": [ "3416dc07-adf4-4795-8e26-65fe60139ce3" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/97d13a2d-cdfa-43a0-a9f7-d1268dede627?api-version=2017-12-01" ], + "x-ms-request-id": [ "97d13a2d-cdfa-43a0-a9f7-d1268dede627" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14996" ], - "x-ms-correlation-request-id": [ "271a30d8-d24b-4dbd-9774-12ab8ad1ea2f" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T035446Z:271a30d8-d24b-4dbd-9774-12ab8ad1ea2f" ], + "x-ms-correlation-request-id": [ "7a2840f5-f4b3-480e-afdf-0bf66ae12bae" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T110948Z:7a2840f5-f4b3-480e-afdf-0bf66ae12bae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:54:45 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:09:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "71" ], + "Content-Length": [ "70" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"DropElasticServer\",\"startTime\":\"2020-05-08T03:54:45.88Z\"}" + "Content": "{\"operation\":\"DropElasticServer\",\"startTime\":\"2020-09-25T11:09:48.2Z\"}" } }, - "Get-AzPostgreSqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/3416dc07-adf4-4795-8e26-65fe60139ce3?api-version=2017-12-01+19": { + "Get-AzPostgreSqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/97d13a2d-cdfa-43a0-a9f7-d1268dede627?api-version=2017-12-01+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/3416dc07-adf4-4795-8e26-65fe60139ce3?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/97d13a2d-cdfa-43a0-a9f7-d1268dede627?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "60", "61" ], - "x-ms-client-request-id": [ "a5a8131a-3ea0-44a1-8913-d0916970de0a", "a5a8131a-3ea0-44a1-8913-d0916970de0a" ], + "x-ms-unique-id": [ "61", "62" ], + "x-ms-client-request-id": [ "4b210426-a8ce-426c-9403-dcf3bc46bba3", "4b210426-a8ce-426c-9403-dcf3bc46bba3" ], "CommandName": [ "Remove-AzPostgreSqlServer", "Remove-AzPostgreSqlServer" ], "FullCommandName": [ "Remove-AzPostgreSqlServer_DeleteViaIdentity", "Remove-AzPostgreSqlServer_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -738,31 +738,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "f09bec23-863f-474c-b698-f0be95104f42" ], + "x-ms-request-id": [ "30554784-05ec-4280-98bc-04ea81468bed" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11951" ], - "x-ms-correlation-request-id": [ "4dc3e73e-24e1-416b-a7d8-318aa861c58a" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T035501Z:4dc3e73e-24e1-416b-a7d8-318aa861c58a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11948" ], + "x-ms-correlation-request-id": [ "544a14a8-29b4-45b9-89ca-218170298cc6" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111003Z:544a14a8-29b4-45b9-89ca-218170298cc6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:55:00 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:10:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "106" ], + "Content-Length": [ "105" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"3416dc07-adf4-4795-8e26-65fe60139ce3\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-08T03:54:45.88Z\"}" + "Content": "{\"name\":\"97d13a2d-cdfa-43a0-a9f7-d1268dede627\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:09:48.2Z\"}" } }, - "Get-AzPostgreSqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/3416dc07-adf4-4795-8e26-65fe60139ce3?api-version=2017-12-01+20": { + "Get-AzPostgreSqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/97d13a2d-cdfa-43a0-a9f7-d1268dede627?api-version=2017-12-01+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/3416dc07-adf4-4795-8e26-65fe60139ce3?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/97d13a2d-cdfa-43a0-a9f7-d1268dede627?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "60", "61", "62" ], - "x-ms-client-request-id": [ "a5a8131a-3ea0-44a1-8913-d0916970de0a", "a5a8131a-3ea0-44a1-8913-d0916970de0a", "a5a8131a-3ea0-44a1-8913-d0916970de0a" ], + "x-ms-unique-id": [ "61", "62", "63" ], + "x-ms-client-request-id": [ "4b210426-a8ce-426c-9403-dcf3bc46bba3", "4b210426-a8ce-426c-9403-dcf3bc46bba3", "4b210426-a8ce-426c-9403-dcf3bc46bba3" ], "CommandName": [ "Remove-AzPostgreSqlServer", "Remove-AzPostgreSqlServer", "Remove-AzPostgreSqlServer" ], "FullCommandName": [ "Remove-AzPostgreSqlServer_DeleteViaIdentity", "Remove-AzPostgreSqlServer_DeleteViaIdentity", "Remove-AzPostgreSqlServer_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -777,14 +777,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "ae168aaf-41a0-4df0-a2b3-69f48426427f" ], + "x-ms-request-id": [ "077891a0-2b90-4f43-a8bb-311258f757a9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11950" ], - "x-ms-correlation-request-id": [ "debba119-ee57-422f-97a0-7f1391ecbd5c" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T035501Z:debba119-ee57-422f-97a0-7f1391ecbd5c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11947" ], + "x-ms-correlation-request-id": [ "455b4532-5d7b-4fcf-9ab0-480d0ae5810c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111004Z:455b4532-5d7b-4fcf-9ab0-480d0ae5810c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:55:00 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:10:03 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/PostgreSql/test/Get-AzPostgreSqlServer.Recording.json b/src/PostgreSql/test/Get-AzPostgreSqlServer.Recording.json index 362f785f428e..9c5e5a1a46d8 100644 --- a/src/PostgreSql/test/Get-AzPostgreSqlServer.Recording.json +++ b/src/PostgreSql/test/Get-AzPostgreSqlServer.Recording.json @@ -5,8 +5,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/servers?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "63" ], - "x-ms-client-request-id": [ "daeae4f2-fbce-41a8-a64a-3efc0dd7fdea" ], + "x-ms-unique-id": [ "64" ], + "x-ms-client-request-id": [ "008199ff-2a33-438d-b29e-240702885221" ], "CommandName": [ "Get-AzPostgreSqlServer" ], "FullCommandName": [ "Get-AzPostgreSqlServer_List1" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -21,21 +21,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "9c8c4948-c377-482a-99c5-eec3ec00a9b5" ], + "x-ms-request-id": [ "12f42299-91d2-4b62-b1d4-4b598b43653a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11949" ], - "x-ms-correlation-request-id": [ "08f5a95c-227a-497c-92fc-37416e8d207c" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T035502Z:08f5a95c-227a-497c-92fc-37416e8d207c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11946" ], + "x-ms-correlation-request-id": [ "9b9657da-b443-49f0-9c4e-9afde8f53829" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111004Z:9b9657da-b443-49f0-9c4e-9afde8f53829" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:55:01 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:10:04 GMT" ] }, "ContentHeaders": { "Content-Length": [ "931" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"postgresql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-05-08T03:54:02.197+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\",\"name\":\"postgresql-test-100\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}]}" + "Content": "{\"value\":[{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"postgresql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-09-25T11:09:04.307+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\",\"name\":\"postgresql-test-100\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}]}" } }, "Get-AzPostgreSqlServer+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100?api-version=2017-12-01+1": { @@ -44,8 +44,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "64" ], - "x-ms-client-request-id": [ "5a9df92f-3171-46be-8b63-45821fbdd8fc" ], + "x-ms-unique-id": [ "65" ], + "x-ms-client-request-id": [ "eedac024-1422-461e-8eba-410950e9cd24" ], "CommandName": [ "Get-AzPostgreSqlServer" ], "FullCommandName": [ "Get-AzPostgreSqlServer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -60,21 +60,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "f56e1f6e-bc3e-4603-9fcc-5f5010f3df0f" ], + "x-ms-request-id": [ "d1287780-1aa6-43f3-ba00-9a2bc1b3c199" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11948" ], - "x-ms-correlation-request-id": [ "adbe930d-2288-48c0-944d-3f8a472e2f85" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T035502Z:adbe930d-2288-48c0-944d-3f8a472e2f85" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11945" ], + "x-ms-correlation-request-id": [ "41460cf9-f83e-4ed8-a559-c741be7ac586" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111005Z:41460cf9-f83e-4ed8-a559-c741be7ac586" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:55:01 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:10:04 GMT" ] }, "ContentHeaders": { "Content-Length": [ "943" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"postgresql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-05-08T03:54:02.197+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\",\"name\":\"postgresql-test-100\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}" + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"postgresql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-09-25T11:09:04.307+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\",\"name\":\"postgresql-test-100\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}" } }, "Get-AzPostgreSqlServer+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers?api-version=2017-12-01+1": { @@ -83,8 +83,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "65" ], - "x-ms-client-request-id": [ "8c463297-19ef-47d0-9078-008df08547d2" ], + "x-ms-unique-id": [ "66" ], + "x-ms-client-request-id": [ "3f3d42e9-ba91-4aa6-9c24-490fa6bf88d4" ], "CommandName": [ "Get-AzPostgreSqlServer" ], "FullCommandName": [ "Get-AzPostgreSqlServer_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -99,21 +99,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "f1559a4f-4461-471c-b5ca-934192ebdc68" ], + "x-ms-request-id": [ "b9fa87ed-0b90-4019-a4fd-738fdf725f51" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11947" ], - "x-ms-correlation-request-id": [ "d92990d8-866f-4bb3-9fe5-ec9606a40263" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T035503Z:d92990d8-866f-4bb3-9fe5-ec9606a40263" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11944" ], + "x-ms-correlation-request-id": [ "3e0cb442-7926-4450-9897-e34193a3bd30" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111005Z:3e0cb442-7926-4450-9897-e34193a3bd30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:55:02 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:10:05 GMT" ] }, "ContentHeaders": { "Content-Length": [ "931" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"postgresql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-05-08T03:54:02.197+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\",\"name\":\"postgresql-test-100\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}]}" + "Content": "{\"value\":[{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"postgresql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-09-25T11:09:04.307+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\",\"name\":\"postgresql-test-100\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}]}" } }, "Get-AzPostgreSqlServer+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100?api-version=2017-12-01+1": { @@ -122,8 +122,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "66" ], - "x-ms-client-request-id": [ "4c1713eb-8e7f-4430-bea7-5a5b05c866b3" ], + "x-ms-unique-id": [ "67" ], + "x-ms-client-request-id": [ "c0278037-8168-4b54-ae5d-48228648e729" ], "CommandName": [ "Get-AzPostgreSqlServer" ], "FullCommandName": [ "Get-AzPostgreSqlServer_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -138,21 +138,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "af127087-2383-4639-a177-5e95c5fa3a35" ], + "x-ms-request-id": [ "5d97d9e7-7459-4a8d-b07c-d13ead55af67" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11946" ], - "x-ms-correlation-request-id": [ "eb350ae4-1232-4a31-b418-099aa58bffc0" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T035503Z:eb350ae4-1232-4a31-b418-099aa58bffc0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11943" ], + "x-ms-correlation-request-id": [ "ce472420-423f-4c62-8b0d-87493fbb909a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111006Z:ce472420-423f-4c62-8b0d-87493fbb909a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:55:02 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:10:05 GMT" ] }, "ContentHeaders": { "Content-Length": [ "943" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"postgresql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-05-08T03:54:02.197+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\",\"name\":\"postgresql-test-100\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}" + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"postgresql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-09-25T11:09:04.307+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\",\"name\":\"postgresql-test-100\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}" } } } \ No newline at end of file diff --git a/src/PostgreSql/test/Get-AzPostgreSqlVirtualNetworkRule.Recording.json b/src/PostgreSql/test/Get-AzPostgreSqlVirtualNetworkRule.Recording.json index e87151920634..eae9479b3d2b 100644 --- a/src/PostgreSql/test/Get-AzPostgreSqlVirtualNetworkRule.Recording.json +++ b/src/PostgreSql/test/Get-AzPostgreSqlVirtualNetworkRule.Recording.json @@ -3,12 +3,12 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/virtualNetworkRules/postgresqlvnet?api-version=2017-12-01", - "Content": "{\n \"properties\": {\n \"virtualNetworkSubnetId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.Network/virtualNetworks/MySqlVNet/subnets/MysqlSubnet1\"\n }\n}", + "Content": "{\r\n \"properties\": {\r\n \"virtualNetworkSubnetId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.Network/virtualNetworks/MySqlVNet/subnets/MysqlSubnet1\"\r\n }\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "214" ] + "Content-Length": [ "218" ] } }, "Response": { @@ -16,34 +16,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/1fbc0e41-0488-4cde-8547-acdd779c93b4?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/faa70674-c1b2-47c7-822e-85b027f16ff0?api-version=2017-12-01" ], "Retry-After": [ "30" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/1fbc0e41-0488-4cde-8547-acdd779c93b4?api-version=2017-12-01" ], - "x-ms-request-id": [ "1fbc0e41-0488-4cde-8547-acdd779c93b4" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/faa70674-c1b2-47c7-822e-85b027f16ff0?api-version=2017-12-01" ], + "x-ms-request-id": [ "faa70674-c1b2-47c7-822e-85b027f16ff0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1194" ], - "x-ms-correlation-request-id": [ "d8e8a9e9-94ed-400e-baad-8e9d74d42b2b" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T035505Z:d8e8a9e9-94ed-400e-baad-8e9d74d42b2b" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1192" ], + "x-ms-correlation-request-id": [ "837e7015-5d8e-420f-ab55-731a2d2032aa" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111008Z:837e7015-5d8e-420f-ab55-731a2d2032aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:55:04 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:10:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "90" ], + "Content-Length": [ "89" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServerVnetFirewallRule\",\"startTime\":\"2020-05-08T03:55:04.113Z\"}" + "Content": "{\"operation\":\"UpsertElasticServerVnetFirewallRule\",\"startTime\":\"2020-09-25T11:10:06.73Z\"}" } }, - "Get-AzPostgreSqlVirtualNetworkRule+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/1fbc0e41-0488-4cde-8547-acdd779c93b4?api-version=2017-12-01+2": { + "Get-AzPostgreSqlVirtualNetworkRule+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/faa70674-c1b2-47c7-822e-85b027f16ff0?api-version=2017-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/1fbc0e41-0488-4cde-8547-acdd779c93b4?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/faa70674-c1b2-47c7-822e-85b027f16ff0?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "67", "68" ], - "x-ms-client-request-id": [ "a38fb9a3-dd62-4bef-9476-32d94de1d8f6", "a38fb9a3-dd62-4bef-9476-32d94de1d8f6" ], + "x-ms-unique-id": [ "68", "69" ], + "x-ms-client-request-id": [ "fdd55678-18b9-49c5-b037-a0a7e4492e14", "fdd55678-18b9-49c5-b037-a0a7e4492e14" ], "CommandName": [ "New-AzPostgreSqlVirtualNetworkRule", "New-AzPostgreSqlVirtualNetworkRule" ], "FullCommandName": [ "New-AzPostgreSqlVirtualNetworkRule_CreateExpanded", "New-AzPostgreSqlVirtualNetworkRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -59,21 +59,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "af40768b-346e-4f30-977f-f839333a4ad0" ], + "x-ms-request-id": [ "4aeff884-c4e4-4fc9-805d-5918f3576e29" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11945" ], - "x-ms-correlation-request-id": [ "52acdde5-0f8b-41b5-888c-20cac30111bf" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T035535Z:52acdde5-0f8b-41b5-888c-20cac30111bf" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11942" ], + "x-ms-correlation-request-id": [ "94b7b30d-a0b6-4687-a3ef-e441fc61d56b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111038Z:94b7b30d-a0b6-4687-a3ef-e441fc61d56b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:55:35 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:10:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "106" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"1fbc0e41-0488-4cde-8547-acdd779c93b4\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-08T03:55:04.113Z\"}" + "Content": "{\"name\":\"faa70674-c1b2-47c7-822e-85b027f16ff0\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:10:06.73Z\"}" } }, "Get-AzPostgreSqlVirtualNetworkRule+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/virtualNetworkRules/postgresqlvnet?api-version=2017-12-01+3": { @@ -82,8 +82,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/virtualNetworkRules/postgresqlvnet?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "67", "68", "69" ], - "x-ms-client-request-id": [ "a38fb9a3-dd62-4bef-9476-32d94de1d8f6", "a38fb9a3-dd62-4bef-9476-32d94de1d8f6", "a38fb9a3-dd62-4bef-9476-32d94de1d8f6" ], + "x-ms-unique-id": [ "68", "69", "70" ], + "x-ms-client-request-id": [ "fdd55678-18b9-49c5-b037-a0a7e4492e14", "fdd55678-18b9-49c5-b037-a0a7e4492e14", "fdd55678-18b9-49c5-b037-a0a7e4492e14" ], "CommandName": [ "New-AzPostgreSqlVirtualNetworkRule", "New-AzPostgreSqlVirtualNetworkRule", "New-AzPostgreSqlVirtualNetworkRule" ], "FullCommandName": [ "New-AzPostgreSqlVirtualNetworkRule_CreateExpanded", "New-AzPostgreSqlVirtualNetworkRule_CreateExpanded", "New-AzPostgreSqlVirtualNetworkRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -98,14 +98,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "11711af9-f8ac-41ce-9a42-4a0e555a9998" ], + "x-ms-request-id": [ "42b8dfba-cd93-409d-be97-bd5f84126c79" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11944" ], - "x-ms-correlation-request-id": [ "33216d08-7609-48b5-ae8f-92d47701f1f4" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T035536Z:33216d08-7609-48b5-ae8f-92d47701f1f4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11941" ], + "x-ms-correlation-request-id": [ "e5d27fa9-9525-4f49-a8f0-282c96e61b6f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111038Z:e5d27fa9-9525-4f49-a8f0-282c96e61b6f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:55:35 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:10:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "532" ], @@ -121,8 +121,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/virtualNetworkRules?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "70" ], - "x-ms-client-request-id": [ "553c074b-5595-4daa-90c3-9595ba659a02" ], + "x-ms-unique-id": [ "71" ], + "x-ms-client-request-id": [ "ef98d808-3697-4b65-83c3-02b1caa7a990" ], "CommandName": [ "Get-AzPostgreSqlVirtualNetworkRule" ], "FullCommandName": [ "Get-AzPostgreSqlVirtualNetworkRule_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -137,14 +137,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "8ab14094-f28b-4cde-a0b2-e478c2de6f46" ], + "x-ms-request-id": [ "efd39aed-0a53-4898-bf63-caa2ab4adf4f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11943" ], - "x-ms-correlation-request-id": [ "2f8c9aa4-6494-4abe-8092-62d749609c99" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T035536Z:2f8c9aa4-6494-4abe-8092-62d749609c99" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11940" ], + "x-ms-correlation-request-id": [ "ee3fbd31-4e40-4c11-b8d6-575a4c64bb93" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111039Z:ee3fbd31-4e40-4c11-b8d6-575a4c64bb93" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:55:36 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:10:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "544" ], @@ -160,8 +160,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/virtualNetworkRules/postgresqlvnet?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "71" ], - "x-ms-client-request-id": [ "99c3e158-332b-4ec4-8640-1cf81d1d6064" ], + "x-ms-unique-id": [ "72" ], + "x-ms-client-request-id": [ "44844dba-1c04-4584-989a-155b8ffd53b8" ], "CommandName": [ "Remove-AzPostgreSqlVirtualNetworkRule" ], "FullCommandName": [ "Remove-AzPostgreSqlVirtualNetworkRule_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -176,34 +176,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/7bcef50d-1804-427d-8223-2864a65d6c5e?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/cbbf803d-b57f-4f31-b873-60ba9bf08f12?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/7bcef50d-1804-427d-8223-2864a65d6c5e?api-version=2017-12-01" ], - "x-ms-request-id": [ "7bcef50d-1804-427d-8223-2864a65d6c5e" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/cbbf803d-b57f-4f31-b873-60ba9bf08f12?api-version=2017-12-01" ], + "x-ms-request-id": [ "cbbf803d-b57f-4f31-b873-60ba9bf08f12" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14995" ], - "x-ms-correlation-request-id": [ "1398d408-da28-428c-bc80-a67646425c35" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T035537Z:1398d408-da28-428c-bc80-a67646425c35" ], + "x-ms-correlation-request-id": [ "72f72e09-aaaa-400c-9c34-9405a8778224" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111040Z:72f72e09-aaaa-400c-9c34-9405a8778224" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:55:37 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:10:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "87" ], + "Content-Length": [ "88" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"DropElasticServerVnetFirewallRule\",\"startTime\":\"2020-05-08T03:55:36.66Z\"}" + "Content": "{\"operation\":\"DropElasticServerVnetFirewallRule\",\"startTime\":\"2020-09-25T11:10:39.513Z\"}" } }, - "Get-AzPostgreSqlVirtualNetworkRule+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/7bcef50d-1804-427d-8223-2864a65d6c5e?api-version=2017-12-01+6": { + "Get-AzPostgreSqlVirtualNetworkRule+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/cbbf803d-b57f-4f31-b873-60ba9bf08f12?api-version=2017-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/7bcef50d-1804-427d-8223-2864a65d6c5e?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/cbbf803d-b57f-4f31-b873-60ba9bf08f12?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "71", "72" ], - "x-ms-client-request-id": [ "99c3e158-332b-4ec4-8640-1cf81d1d6064", "99c3e158-332b-4ec4-8640-1cf81d1d6064" ], + "x-ms-unique-id": [ "72", "73" ], + "x-ms-client-request-id": [ "44844dba-1c04-4584-989a-155b8ffd53b8", "44844dba-1c04-4584-989a-155b8ffd53b8" ], "CommandName": [ "Remove-AzPostgreSqlVirtualNetworkRule", "Remove-AzPostgreSqlVirtualNetworkRule" ], "FullCommandName": [ "Remove-AzPostgreSqlVirtualNetworkRule_Delete", "Remove-AzPostgreSqlVirtualNetworkRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -219,31 +219,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "a3f8cb80-094e-4cab-8a0a-ac713d556a30" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11942" ], + "x-ms-request-id": [ "65b40ed9-b3b1-4118-bc53-3cc070e3c755" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "99d96470-b2dc-40ae-8cf7-e714992b3319" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T035553Z:99d96470-b2dc-40ae-8cf7-e714992b3319" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11939" ], + "x-ms-correlation-request-id": [ "c6d9ce55-cf76-4d8c-89f9-e0522806eac2" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111056Z:c6d9ce55-cf76-4d8c-89f9-e0522806eac2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:55:52 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:10:55 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "106" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"7bcef50d-1804-427d-8223-2864a65d6c5e\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-08T03:55:36.66Z\"}" + "Content": "{\"name\":\"cbbf803d-b57f-4f31-b873-60ba9bf08f12\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:10:39.513Z\"}" } }, - "Get-AzPostgreSqlVirtualNetworkRule+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/7bcef50d-1804-427d-8223-2864a65d6c5e?api-version=2017-12-01+7": { + "Get-AzPostgreSqlVirtualNetworkRule+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/cbbf803d-b57f-4f31-b873-60ba9bf08f12?api-version=2017-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/7bcef50d-1804-427d-8223-2864a65d6c5e?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/cbbf803d-b57f-4f31-b873-60ba9bf08f12?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "71", "72", "73" ], - "x-ms-client-request-id": [ "99c3e158-332b-4ec4-8640-1cf81d1d6064", "99c3e158-332b-4ec4-8640-1cf81d1d6064", "99c3e158-332b-4ec4-8640-1cf81d1d6064" ], + "x-ms-unique-id": [ "72", "73", "74" ], + "x-ms-client-request-id": [ "44844dba-1c04-4584-989a-155b8ffd53b8", "44844dba-1c04-4584-989a-155b8ffd53b8", "44844dba-1c04-4584-989a-155b8ffd53b8" ], "CommandName": [ "Remove-AzPostgreSqlVirtualNetworkRule", "Remove-AzPostgreSqlVirtualNetworkRule", "Remove-AzPostgreSqlVirtualNetworkRule" ], "FullCommandName": [ "Remove-AzPostgreSqlVirtualNetworkRule_Delete", "Remove-AzPostgreSqlVirtualNetworkRule_Delete", "Remove-AzPostgreSqlVirtualNetworkRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -258,14 +258,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "463ebeb7-be68-4197-8042-62c133104998" ], + "x-ms-request-id": [ "6d067504-b0ef-4a2f-b6b2-758a4b87ecf9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11941" ], - "x-ms-correlation-request-id": [ "c4881cb6-1153-4e04-b255-05fd9b14d09b" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T035554Z:c4881cb6-1153-4e04-b255-05fd9b14d09b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11938" ], + "x-ms-correlation-request-id": [ "3ba6a68e-9c4d-4e38-8f93-81f62d799ea7" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111056Z:3ba6a68e-9c4d-4e38-8f93-81f62d799ea7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:55:53 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:10:55 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -278,12 +278,12 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/virtualNetworkRules/postgresqlvnet?api-version=2017-12-01", - "Content": "{\n \"properties\": {\n \"virtualNetworkSubnetId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.Network/virtualNetworks/MySqlVNet/subnets/MysqlSubnet1\"\n }\n}", + "Content": "{\r\n \"properties\": {\r\n \"virtualNetworkSubnetId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.Network/virtualNetworks/MySqlVNet/subnets/MysqlSubnet1\"\r\n }\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "214" ] + "Content-Length": [ "218" ] } }, "Response": { @@ -291,34 +291,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/adf556e3-f2ad-4eed-9096-e53e2b9a300b?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/282aa76f-bf70-42a3-9010-91715c9329c6?api-version=2017-12-01" ], "Retry-After": [ "30" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/adf556e3-f2ad-4eed-9096-e53e2b9a300b?api-version=2017-12-01" ], - "x-ms-request-id": [ "adf556e3-f2ad-4eed-9096-e53e2b9a300b" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/282aa76f-bf70-42a3-9010-91715c9329c6?api-version=2017-12-01" ], + "x-ms-request-id": [ "282aa76f-bf70-42a3-9010-91715c9329c6" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1193" ], - "x-ms-correlation-request-id": [ "d2b6bc14-5916-4138-9738-d7a2e8ab33a7" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T035555Z:d2b6bc14-5916-4138-9738-d7a2e8ab33a7" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1191" ], + "x-ms-correlation-request-id": [ "73223f06-22df-45ea-b81c-cc131fac6be7" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111058Z:73223f06-22df-45ea-b81c-cc131fac6be7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:55:55 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:10:57 GMT" ] }, "ContentHeaders": { "Content-Length": [ "90" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServerVnetFirewallRule\",\"startTime\":\"2020-05-08T03:55:54.497Z\"}" + "Content": "{\"operation\":\"UpsertElasticServerVnetFirewallRule\",\"startTime\":\"2020-09-25T11:10:56.713Z\"}" } }, - "Get-AzPostgreSqlVirtualNetworkRule+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/adf556e3-f2ad-4eed-9096-e53e2b9a300b?api-version=2017-12-01+2": { + "Get-AzPostgreSqlVirtualNetworkRule+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/282aa76f-bf70-42a3-9010-91715c9329c6?api-version=2017-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/adf556e3-f2ad-4eed-9096-e53e2b9a300b?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/282aa76f-bf70-42a3-9010-91715c9329c6?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "74", "75" ], - "x-ms-client-request-id": [ "18ead6e5-d3ca-4bd2-9aec-241b5a053b6f", "18ead6e5-d3ca-4bd2-9aec-241b5a053b6f" ], + "x-ms-unique-id": [ "75", "76" ], + "x-ms-client-request-id": [ "65622a2d-17fd-4e3a-904c-1ac45a20d89f", "65622a2d-17fd-4e3a-904c-1ac45a20d89f" ], "CommandName": [ "New-AzPostgreSqlVirtualNetworkRule", "New-AzPostgreSqlVirtualNetworkRule" ], "FullCommandName": [ "New-AzPostgreSqlVirtualNetworkRule_CreateExpanded", "New-AzPostgreSqlVirtualNetworkRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -334,21 +334,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "c6c1c6f5-6ac7-4172-aa51-18e7b86d5e8f" ], + "x-ms-request-id": [ "b6f73ae5-1bd2-4c44-ac34-3fd50acc44bd" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11940" ], - "x-ms-correlation-request-id": [ "0efa89c0-3367-4f60-a029-56903078d59a" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T035626Z:0efa89c0-3367-4f60-a029-56903078d59a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11937" ], + "x-ms-correlation-request-id": [ "19c98ee8-9c81-4cf0-965a-69d21e3581eb" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111128Z:19c98ee8-9c81-4cf0-965a-69d21e3581eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:56:25 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:11:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"adf556e3-f2ad-4eed-9096-e53e2b9a300b\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-08T03:55:54.497Z\"}" + "Content": "{\"name\":\"282aa76f-bf70-42a3-9010-91715c9329c6\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:10:56.713Z\"}" } }, "Get-AzPostgreSqlVirtualNetworkRule+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/virtualNetworkRules/postgresqlvnet?api-version=2017-12-01+3": { @@ -357,8 +357,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/virtualNetworkRules/postgresqlvnet?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "74", "75", "76" ], - "x-ms-client-request-id": [ "18ead6e5-d3ca-4bd2-9aec-241b5a053b6f", "18ead6e5-d3ca-4bd2-9aec-241b5a053b6f", "18ead6e5-d3ca-4bd2-9aec-241b5a053b6f" ], + "x-ms-unique-id": [ "75", "76", "77" ], + "x-ms-client-request-id": [ "65622a2d-17fd-4e3a-904c-1ac45a20d89f", "65622a2d-17fd-4e3a-904c-1ac45a20d89f", "65622a2d-17fd-4e3a-904c-1ac45a20d89f" ], "CommandName": [ "New-AzPostgreSqlVirtualNetworkRule", "New-AzPostgreSqlVirtualNetworkRule", "New-AzPostgreSqlVirtualNetworkRule" ], "FullCommandName": [ "New-AzPostgreSqlVirtualNetworkRule_CreateExpanded", "New-AzPostgreSqlVirtualNetworkRule_CreateExpanded", "New-AzPostgreSqlVirtualNetworkRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -373,14 +373,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "bc606669-7fd6-430a-a08c-b48e6e024dfc" ], + "x-ms-request-id": [ "e820fadf-c2c5-4e2e-9dea-63b3077a0bad" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11939" ], - "x-ms-correlation-request-id": [ "4f1f7c06-e9b4-4c64-866c-6b94dc29d440" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T035626Z:4f1f7c06-e9b4-4c64-866c-6b94dc29d440" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11936" ], + "x-ms-correlation-request-id": [ "0217755a-d5e3-4fb9-825e-b9fc39ed7c0d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111128Z:0217755a-d5e3-4fb9-825e-b9fc39ed7c0d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:56:25 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:11:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "532" ], @@ -396,8 +396,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/virtualNetworkRules/postgresqlvnet?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "77" ], - "x-ms-client-request-id": [ "39483984-e70f-412c-9bc6-7a65f277d35e" ], + "x-ms-unique-id": [ "78" ], + "x-ms-client-request-id": [ "e22b7815-799a-44b0-a569-356fab6898be" ], "CommandName": [ "Get-AzPostgreSqlVirtualNetworkRule" ], "FullCommandName": [ "Get-AzPostgreSqlVirtualNetworkRule_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -412,14 +412,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eb5411b4-1a65-4f55-b7e5-426f410f3b27" ], + "x-ms-request-id": [ "f45f3162-5f38-4da0-9a45-810c1abaaf1f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11938" ], - "x-ms-correlation-request-id": [ "9e5f1024-cec5-497f-8d01-7ab0dd30e18b" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T035626Z:9e5f1024-cec5-497f-8d01-7ab0dd30e18b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11935" ], + "x-ms-correlation-request-id": [ "015e15ae-6237-4994-8a4f-00625f0d3922" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111129Z:015e15ae-6237-4994-8a4f-00625f0d3922" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:56:26 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:11:29 GMT" ] }, "ContentHeaders": { "Content-Length": [ "532" ], @@ -435,8 +435,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/virtualNetworkRules/postgresqlvnet?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "78" ], - "x-ms-client-request-id": [ "4a850315-4b98-49d7-9c43-ca50e5cef917" ], + "x-ms-unique-id": [ "79" ], + "x-ms-client-request-id": [ "f556cb04-9977-4093-89ae-11a618ee8606" ], "CommandName": [ "Remove-AzPostgreSqlVirtualNetworkRule" ], "FullCommandName": [ "Remove-AzPostgreSqlVirtualNetworkRule_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -451,34 +451,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/0774aca7-fa11-4a1b-9adc-33c8e90f76b1?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/e80870ff-ad55-4f4c-a986-386c5e3e05ad?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/0774aca7-fa11-4a1b-9adc-33c8e90f76b1?api-version=2017-12-01" ], - "x-ms-request-id": [ "0774aca7-fa11-4a1b-9adc-33c8e90f76b1" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e80870ff-ad55-4f4c-a986-386c5e3e05ad?api-version=2017-12-01" ], + "x-ms-request-id": [ "e80870ff-ad55-4f4c-a986-386c5e3e05ad" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14994" ], - "x-ms-correlation-request-id": [ "02581e97-f7d6-416f-a75f-302a24e623b6" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T035628Z:02581e97-f7d6-416f-a75f-302a24e623b6" ], + "x-ms-correlation-request-id": [ "2571cdd7-84fc-4099-8088-2cac68c46466" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111130Z:2571cdd7-84fc-4099-8088-2cac68c46466" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:56:27 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:11:30 GMT" ] }, "ContentHeaders": { "Content-Length": [ "87" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"DropElasticServerVnetFirewallRule\",\"startTime\":\"2020-05-08T03:56:27.03Z\"}" + "Content": "{\"operation\":\"DropElasticServerVnetFirewallRule\",\"startTime\":\"2020-09-25T11:11:29.45Z\"}" } }, - "Get-AzPostgreSqlVirtualNetworkRule+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/0774aca7-fa11-4a1b-9adc-33c8e90f76b1?api-version=2017-12-01+6": { + "Get-AzPostgreSqlVirtualNetworkRule+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e80870ff-ad55-4f4c-a986-386c5e3e05ad?api-version=2017-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/0774aca7-fa11-4a1b-9adc-33c8e90f76b1?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e80870ff-ad55-4f4c-a986-386c5e3e05ad?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "78", "79" ], - "x-ms-client-request-id": [ "4a850315-4b98-49d7-9c43-ca50e5cef917", "4a850315-4b98-49d7-9c43-ca50e5cef917" ], + "x-ms-unique-id": [ "79", "80" ], + "x-ms-client-request-id": [ "f556cb04-9977-4093-89ae-11a618ee8606", "f556cb04-9977-4093-89ae-11a618ee8606" ], "CommandName": [ "Remove-AzPostgreSqlVirtualNetworkRule", "Remove-AzPostgreSqlVirtualNetworkRule" ], "FullCommandName": [ "Remove-AzPostgreSqlVirtualNetworkRule_Delete", "Remove-AzPostgreSqlVirtualNetworkRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -494,31 +494,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "6035805d-286a-4fa8-8954-1d8d1873033d" ], + "x-ms-request-id": [ "1f6a0b97-808a-4178-b5af-26b83f585161" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11937" ], - "x-ms-correlation-request-id": [ "09b56a75-25d0-494d-93ea-1f4fbdda37d0" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T035643Z:09b56a75-25d0-494d-93ea-1f4fbdda37d0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11934" ], + "x-ms-correlation-request-id": [ "a7bdcd77-a234-4f66-97e5-ddaa11da0291" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111145Z:a7bdcd77-a234-4f66-97e5-ddaa11da0291" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:56:42 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:11:45 GMT" ] }, "ContentHeaders": { "Content-Length": [ "106" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"0774aca7-fa11-4a1b-9adc-33c8e90f76b1\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-08T03:56:27.03Z\"}" + "Content": "{\"name\":\"e80870ff-ad55-4f4c-a986-386c5e3e05ad\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:11:29.45Z\"}" } }, - "Get-AzPostgreSqlVirtualNetworkRule+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/0774aca7-fa11-4a1b-9adc-33c8e90f76b1?api-version=2017-12-01+7": { + "Get-AzPostgreSqlVirtualNetworkRule+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/e80870ff-ad55-4f4c-a986-386c5e3e05ad?api-version=2017-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/0774aca7-fa11-4a1b-9adc-33c8e90f76b1?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/e80870ff-ad55-4f4c-a986-386c5e3e05ad?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "78", "79", "80" ], - "x-ms-client-request-id": [ "4a850315-4b98-49d7-9c43-ca50e5cef917", "4a850315-4b98-49d7-9c43-ca50e5cef917", "4a850315-4b98-49d7-9c43-ca50e5cef917" ], + "x-ms-unique-id": [ "79", "80", "81" ], + "x-ms-client-request-id": [ "f556cb04-9977-4093-89ae-11a618ee8606", "f556cb04-9977-4093-89ae-11a618ee8606", "f556cb04-9977-4093-89ae-11a618ee8606" ], "CommandName": [ "Remove-AzPostgreSqlVirtualNetworkRule", "Remove-AzPostgreSqlVirtualNetworkRule", "Remove-AzPostgreSqlVirtualNetworkRule" ], "FullCommandName": [ "Remove-AzPostgreSqlVirtualNetworkRule_Delete", "Remove-AzPostgreSqlVirtualNetworkRule_Delete", "Remove-AzPostgreSqlVirtualNetworkRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -533,14 +533,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "c3860b82-ccdf-4b40-8991-5e0f6c2f454c" ], + "x-ms-request-id": [ "f7ce3ec9-2123-4445-86a2-0bddb10d7941" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11936" ], - "x-ms-correlation-request-id": [ "c6a6d11e-2924-4ff3-ac78-bfdd2ce0b53a" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T035643Z:c6a6d11e-2924-4ff3-ac78-bfdd2ce0b53a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11933" ], + "x-ms-correlation-request-id": [ "0b34e27c-1f77-4177-8d76-a29f016c3aab" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111146Z:0b34e27c-1f77-4177-8d76-a29f016c3aab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:56:42 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:11:46 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -553,12 +553,12 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/virtualNetworkRules/postgresqlvnet?api-version=2017-12-01", - "Content": "{\n \"properties\": {\n \"virtualNetworkSubnetId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.Network/virtualNetworks/MySqlVNet/subnets/MysqlSubnet1\"\n }\n}", + "Content": "{\r\n \"properties\": {\r\n \"virtualNetworkSubnetId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.Network/virtualNetworks/MySqlVNet/subnets/MysqlSubnet1\"\r\n }\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "214" ] + "Content-Length": [ "218" ] } }, "Response": { @@ -566,34 +566,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/fed9c7f9-ea1c-4393-9e90-de10a63967af?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/a3e83268-acc5-49df-a0c4-b0c4eadb88d2?api-version=2017-12-01" ], "Retry-After": [ "30" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/fed9c7f9-ea1c-4393-9e90-de10a63967af?api-version=2017-12-01" ], - "x-ms-request-id": [ "fed9c7f9-ea1c-4393-9e90-de10a63967af" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/a3e83268-acc5-49df-a0c4-b0c4eadb88d2?api-version=2017-12-01" ], + "x-ms-request-id": [ "a3e83268-acc5-49df-a0c4-b0c4eadb88d2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1192" ], - "x-ms-correlation-request-id": [ "c3bb1151-c39c-45d6-8aa8-16b791ef7923" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T035645Z:c3bb1151-c39c-45d6-8aa8-16b791ef7923" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1190" ], + "x-ms-correlation-request-id": [ "34334d7c-1d57-460b-a890-fb355521875e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111147Z:34334d7c-1d57-460b-a890-fb355521875e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:56:44 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:11:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "90" ], + "Content-Length": [ "88" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServerVnetFirewallRule\",\"startTime\":\"2020-05-08T03:56:44.217Z\"}" + "Content": "{\"operation\":\"UpsertElasticServerVnetFirewallRule\",\"startTime\":\"2020-09-25T11:11:46.7Z\"}" } }, - "Get-AzPostgreSqlVirtualNetworkRule+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/fed9c7f9-ea1c-4393-9e90-de10a63967af?api-version=2017-12-01+2": { + "Get-AzPostgreSqlVirtualNetworkRule+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/a3e83268-acc5-49df-a0c4-b0c4eadb88d2?api-version=2017-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/fed9c7f9-ea1c-4393-9e90-de10a63967af?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/a3e83268-acc5-49df-a0c4-b0c4eadb88d2?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "81", "82" ], - "x-ms-client-request-id": [ "3f35b588-93ab-4b23-a0aa-0e3d1c49bb7b", "3f35b588-93ab-4b23-a0aa-0e3d1c49bb7b" ], + "x-ms-unique-id": [ "82", "83" ], + "x-ms-client-request-id": [ "c3b08bb6-379c-45a4-a11e-8bffb31ebc9c", "c3b08bb6-379c-45a4-a11e-8bffb31ebc9c" ], "CommandName": [ "New-AzPostgreSqlVirtualNetworkRule", "New-AzPostgreSqlVirtualNetworkRule" ], "FullCommandName": [ "New-AzPostgreSqlVirtualNetworkRule_CreateExpanded", "New-AzPostgreSqlVirtualNetworkRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -609,21 +609,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "1a64ec1f-5859-408c-9e5c-419d8ad63c4e" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11935" ], + "x-ms-request-id": [ "24c5c6e5-5d17-424b-a768-2771bc4e4781" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "fb2453f5-768a-4cd3-a09d-0d50f1b6985a" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T035715Z:fb2453f5-768a-4cd3-a09d-0d50f1b6985a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11932" ], + "x-ms-correlation-request-id": [ "a15ddea8-74c6-44f4-b511-70224b8ce9c2" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111218Z:a15ddea8-74c6-44f4-b511-70224b8ce9c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:57:15 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:12:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "105" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"fed9c7f9-ea1c-4393-9e90-de10a63967af\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-08T03:56:44.217Z\"}" + "Content": "{\"name\":\"a3e83268-acc5-49df-a0c4-b0c4eadb88d2\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:11:46.7Z\"}" } }, "Get-AzPostgreSqlVirtualNetworkRule+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/virtualNetworkRules/postgresqlvnet?api-version=2017-12-01+3": { @@ -632,8 +632,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/virtualNetworkRules/postgresqlvnet?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "81", "82", "83" ], - "x-ms-client-request-id": [ "3f35b588-93ab-4b23-a0aa-0e3d1c49bb7b", "3f35b588-93ab-4b23-a0aa-0e3d1c49bb7b", "3f35b588-93ab-4b23-a0aa-0e3d1c49bb7b" ], + "x-ms-unique-id": [ "82", "83", "84" ], + "x-ms-client-request-id": [ "c3b08bb6-379c-45a4-a11e-8bffb31ebc9c", "c3b08bb6-379c-45a4-a11e-8bffb31ebc9c", "c3b08bb6-379c-45a4-a11e-8bffb31ebc9c" ], "CommandName": [ "New-AzPostgreSqlVirtualNetworkRule", "New-AzPostgreSqlVirtualNetworkRule", "New-AzPostgreSqlVirtualNetworkRule" ], "FullCommandName": [ "New-AzPostgreSqlVirtualNetworkRule_CreateExpanded", "New-AzPostgreSqlVirtualNetworkRule_CreateExpanded", "New-AzPostgreSqlVirtualNetworkRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -648,14 +648,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "b807f6c9-72d6-4e1e-8843-9727d012d5c2" ], + "x-ms-request-id": [ "35012fe7-3ea2-4d46-baee-c8c3eebed746" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11934" ], - "x-ms-correlation-request-id": [ "a957fa3f-bbdf-4bea-a3ce-f96da3b64a36" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T035716Z:a957fa3f-bbdf-4bea-a3ce-f96da3b64a36" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11931" ], + "x-ms-correlation-request-id": [ "055c34fb-6a6a-4ac2-a787-56d96ed06514" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111218Z:055c34fb-6a6a-4ac2-a787-56d96ed06514" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:57:16 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:12:18 GMT" ] }, "ContentHeaders": { "Content-Length": [ "532" ], @@ -671,8 +671,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/virtualNetworkRules/postgresqlvnet?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "84" ], - "x-ms-client-request-id": [ "73047ac3-f830-476a-a5de-06181d89acb4" ], + "x-ms-unique-id": [ "85" ], + "x-ms-client-request-id": [ "51d8061f-d04c-4cd3-a14f-1e2b5b150be6" ], "CommandName": [ "Get-AzPostgreSqlVirtualNetworkRule" ], "FullCommandName": [ "Get-AzPostgreSqlVirtualNetworkRule_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -687,14 +687,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "48744ac7-a620-442f-a08b-ec0e4a9ebaf7" ], + "x-ms-request-id": [ "18df4432-ae66-4a8d-9a2b-e53c950b3515" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11933" ], - "x-ms-correlation-request-id": [ "b1267ce8-105c-43b4-9b6a-6b7cc99cfb3d" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T035717Z:b1267ce8-105c-43b4-9b6a-6b7cc99cfb3d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11930" ], + "x-ms-correlation-request-id": [ "0426d88b-8e4f-4fb5-b80e-5d2af9c567da" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111219Z:0426d88b-8e4f-4fb5-b80e-5d2af9c567da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:57:16 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:12:18 GMT" ] }, "ContentHeaders": { "Content-Length": [ "532" ], @@ -710,8 +710,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/virtualNetworkRules/postgresqlvnet?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "85" ], - "x-ms-client-request-id": [ "fbf00a27-be11-4eae-994d-6e6815addaef" ], + "x-ms-unique-id": [ "86" ], + "x-ms-client-request-id": [ "a534d699-adc9-42f9-9708-b06f0a0965f4" ], "CommandName": [ "Remove-AzPostgreSqlVirtualNetworkRule" ], "FullCommandName": [ "Remove-AzPostgreSqlVirtualNetworkRule_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -726,34 +726,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/f7aa957f-c929-4b66-b05c-cea8dc4606e2?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/92cbe85d-2b82-4c33-9d43-7ecc5f2b652b?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/f7aa957f-c929-4b66-b05c-cea8dc4606e2?api-version=2017-12-01" ], - "x-ms-request-id": [ "f7aa957f-c929-4b66-b05c-cea8dc4606e2" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/92cbe85d-2b82-4c33-9d43-7ecc5f2b652b?api-version=2017-12-01" ], + "x-ms-request-id": [ "92cbe85d-2b82-4c33-9d43-7ecc5f2b652b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14993" ], - "x-ms-correlation-request-id": [ "3fb8b9ea-0f4f-4b54-8206-dd0220f757b1" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T035718Z:3fb8b9ea-0f4f-4b54-8206-dd0220f757b1" ], + "x-ms-correlation-request-id": [ "f4030aaf-9007-4852-9b4c-d28123f80f11" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111220Z:f4030aaf-9007-4852-9b4c-d28123f80f11" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:57:18 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:12:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "87" ], + "Content-Length": [ "88" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"DropElasticServerVnetFirewallRule\",\"startTime\":\"2020-05-08T03:57:17.36Z\"}" + "Content": "{\"operation\":\"DropElasticServerVnetFirewallRule\",\"startTime\":\"2020-09-25T11:12:19.373Z\"}" } }, - "Get-AzPostgreSqlVirtualNetworkRule+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/f7aa957f-c929-4b66-b05c-cea8dc4606e2?api-version=2017-12-01+6": { + "Get-AzPostgreSqlVirtualNetworkRule+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/92cbe85d-2b82-4c33-9d43-7ecc5f2b652b?api-version=2017-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/f7aa957f-c929-4b66-b05c-cea8dc4606e2?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/92cbe85d-2b82-4c33-9d43-7ecc5f2b652b?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "85", "86" ], - "x-ms-client-request-id": [ "fbf00a27-be11-4eae-994d-6e6815addaef", "fbf00a27-be11-4eae-994d-6e6815addaef" ], + "x-ms-unique-id": [ "86", "87" ], + "x-ms-client-request-id": [ "a534d699-adc9-42f9-9708-b06f0a0965f4", "a534d699-adc9-42f9-9708-b06f0a0965f4" ], "CommandName": [ "Remove-AzPostgreSqlVirtualNetworkRule", "Remove-AzPostgreSqlVirtualNetworkRule" ], "FullCommandName": [ "Remove-AzPostgreSqlVirtualNetworkRule_Delete", "Remove-AzPostgreSqlVirtualNetworkRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -769,31 +769,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "a38a9627-7736-4211-83f7-5ed99144a039" ], + "x-ms-request-id": [ "6e4585df-1948-442e-a7a0-879a28dd0f6f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11932" ], - "x-ms-correlation-request-id": [ "cc93a53d-3f00-4296-b3df-a227eabd7840" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T035733Z:cc93a53d-3f00-4296-b3df-a227eabd7840" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11929" ], + "x-ms-correlation-request-id": [ "c85cf2b6-dc65-4313-8e49-a944f87c35bb" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111235Z:c85cf2b6-dc65-4313-8e49-a944f87c35bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:57:33 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:12:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "106" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"f7aa957f-c929-4b66-b05c-cea8dc4606e2\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-08T03:57:17.36Z\"}" + "Content": "{\"name\":\"92cbe85d-2b82-4c33-9d43-7ecc5f2b652b\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:12:19.373Z\"}" } }, - "Get-AzPostgreSqlVirtualNetworkRule+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/f7aa957f-c929-4b66-b05c-cea8dc4606e2?api-version=2017-12-01+7": { + "Get-AzPostgreSqlVirtualNetworkRule+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/92cbe85d-2b82-4c33-9d43-7ecc5f2b652b?api-version=2017-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/f7aa957f-c929-4b66-b05c-cea8dc4606e2?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/92cbe85d-2b82-4c33-9d43-7ecc5f2b652b?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "85", "86", "87" ], - "x-ms-client-request-id": [ "fbf00a27-be11-4eae-994d-6e6815addaef", "fbf00a27-be11-4eae-994d-6e6815addaef", "fbf00a27-be11-4eae-994d-6e6815addaef" ], + "x-ms-unique-id": [ "86", "87", "88" ], + "x-ms-client-request-id": [ "a534d699-adc9-42f9-9708-b06f0a0965f4", "a534d699-adc9-42f9-9708-b06f0a0965f4", "a534d699-adc9-42f9-9708-b06f0a0965f4" ], "CommandName": [ "Remove-AzPostgreSqlVirtualNetworkRule", "Remove-AzPostgreSqlVirtualNetworkRule", "Remove-AzPostgreSqlVirtualNetworkRule" ], "FullCommandName": [ "Remove-AzPostgreSqlVirtualNetworkRule_Delete", "Remove-AzPostgreSqlVirtualNetworkRule_Delete", "Remove-AzPostgreSqlVirtualNetworkRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -808,14 +808,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "9f92a04f-6c6d-4475-996d-8cafa25390de" ], + "x-ms-request-id": [ "0bdda80c-1008-4a59-8d1a-fc17a1916538" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11931" ], - "x-ms-correlation-request-id": [ "ed2f5b63-0fa7-4d12-8c43-8eb87ee15eac" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T035734Z:ed2f5b63-0fa7-4d12-8c43-8eb87ee15eac" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11928" ], + "x-ms-correlation-request-id": [ "5d57e52d-edc4-45b2-bed6-23417ec0f6f9" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111236Z:5d57e52d-edc4-45b2-bed6-23417ec0f6f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:57:33 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:12:35 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/PostgreSql/test/New-AzPostgreSqlFirewallRule.Recording.json b/src/PostgreSql/test/New-AzPostgreSqlFirewallRule.Recording.json index f47640b89151..39f4d647497c 100644 --- a/src/PostgreSql/test/New-AzPostgreSqlFirewallRule.Recording.json +++ b/src/PostgreSql/test/New-AzPostgreSqlFirewallRule.Recording.json @@ -3,12 +3,12 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01?api-version=2017-12-01", - "Content": "{\n \"properties\": {\n \"endIpAddress\": \"0.0.0.1\",\n \"startIpAddress\": \"0.0.0.0\"\n }\n}", + "Content": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.0\",\r\n \"endIpAddress\": \"0.0.0.1\"\r\n }\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "88" ] + "Content-Length": [ "93" ] } }, "Response": { @@ -16,35 +16,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/e35307dd-917b-4a63-9d66-6d62f9270759?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/d1b66176-b61f-4054-a64c-d2eecaa85152?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e35307dd-917b-4a63-9d66-6d62f9270759?api-version=2017-12-01" ], - "x-ms-request-id": [ "e35307dd-917b-4a63-9d66-6d62f9270759" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/d1b66176-b61f-4054-a64c-d2eecaa85152?api-version=2017-12-01" ], + "x-ms-request-id": [ "d1b66176-b61f-4054-a64c-d2eecaa85152" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1191" ], - "x-ms-correlation-request-id": [ "ff90ef0c-c71f-4d42-8d11-20b7ac31eaec" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T035735Z:ff90ef0c-c71f-4d42-8d11-20b7ac31eaec" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1189" ], + "x-ms-correlation-request-id": [ "68547439-dc36-49e6-a102-16bd1394d44d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111238Z:68547439-dc36-49e6-a102-16bd1394d44d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:57:35 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:12:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "87" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServerFirewallRules\",\"startTime\":\"2020-05-08T03:57:34.737Z\"}" + "Content": "{\"operation\":\"UpsertElasticServerFirewallRules\",\"startTime\":\"2020-09-25T11:12:36.997Z\"}" } }, - "New-AzPostgreSqlFirewallRule+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e35307dd-917b-4a63-9d66-6d62f9270759?api-version=2017-12-01+2": { + "New-AzPostgreSqlFirewallRule+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/d1b66176-b61f-4054-a64c-d2eecaa85152?api-version=2017-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e35307dd-917b-4a63-9d66-6d62f9270759?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/d1b66176-b61f-4054-a64c-d2eecaa85152?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "88", "89" ], - "x-ms-client-request-id": [ "955c1b47-8c6f-441f-988c-a276291af158", "955c1b47-8c6f-441f-988c-a276291af158" ], - "CommandName": [ "New-AzPostgreSqlFirewallRule", "New-AzPostgreSqlFirewallRule" ], + "x-ms-unique-id": [ "89", "90" ], + "x-ms-client-request-id": [ "90a297b7-21d6-4695-8ea7-c49153a77930", "90a297b7-21d6-4695-8ea7-c49153a77930" ], + "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlFirewallRule", "Az.PostgreSql.internal\\New-AzPostgreSqlFirewallRule" ], "FullCommandName": [ "New-AzPostgreSqlFirewallRule_CreateExpanded", "New-AzPostgreSqlFirewallRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], @@ -59,21 +59,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "dc5d8cae-ed92-4ac7-8ecf-b423be8e7321" ], + "x-ms-request-id": [ "eba9c533-d20e-4130-95db-ef732e949b8f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11930" ], - "x-ms-correlation-request-id": [ "6a6f03d2-9919-43b5-a713-2d264070c170" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T035751Z:6a6f03d2-9919-43b5-a713-2d264070c170" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11927" ], + "x-ms-correlation-request-id": [ "ccd42f57-20b4-46f9-841d-87674c220483" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111253Z:ccd42f57-20b4-46f9-841d-87674c220483" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:57:50 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:12:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"e35307dd-917b-4a63-9d66-6d62f9270759\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-08T03:57:34.737Z\"}" + "Content": "{\"name\":\"d1b66176-b61f-4054-a64c-d2eecaa85152\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:12:36.997Z\"}" } }, "New-AzPostgreSqlFirewallRule+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01?api-version=2017-12-01+3": { @@ -82,9 +82,9 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "88", "89", "90" ], - "x-ms-client-request-id": [ "955c1b47-8c6f-441f-988c-a276291af158", "955c1b47-8c6f-441f-988c-a276291af158", "955c1b47-8c6f-441f-988c-a276291af158" ], - "CommandName": [ "New-AzPostgreSqlFirewallRule", "New-AzPostgreSqlFirewallRule", "New-AzPostgreSqlFirewallRule" ], + "x-ms-unique-id": [ "89", "90", "91" ], + "x-ms-client-request-id": [ "90a297b7-21d6-4695-8ea7-c49153a77930", "90a297b7-21d6-4695-8ea7-c49153a77930", "90a297b7-21d6-4695-8ea7-c49153a77930" ], + "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlFirewallRule", "Az.PostgreSql.internal\\New-AzPostgreSqlFirewallRule", "Az.PostgreSql.internal\\New-AzPostgreSqlFirewallRule" ], "FullCommandName": [ "New-AzPostgreSqlFirewallRule_CreateExpanded", "New-AzPostgreSqlFirewallRule_CreateExpanded", "New-AzPostgreSqlFirewallRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], @@ -98,14 +98,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "363ce0a7-6775-4d19-833a-4ab154b9b3a8" ], + "x-ms-request-id": [ "a62e32de-310f-4aef-916b-2c6dc8cff99b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11929" ], - "x-ms-correlation-request-id": [ "72034c2d-16f9-452c-b907-06a07380b92f" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T035751Z:72034c2d-16f9-452c-b907-06a07380b92f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11926" ], + "x-ms-correlation-request-id": [ "37c79d40-4e68-43da-a673-43f2b18694f0" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111254Z:37c79d40-4e68-43da-a673-43f2b18694f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:57:51 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:12:53 GMT" ] }, "ContentHeaders": { "Content-Length": [ "335" ], @@ -121,8 +121,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "91" ], - "x-ms-client-request-id": [ "e1f585e5-44cd-4164-a47d-0063ffba5fd8" ], + "x-ms-unique-id": [ "92" ], + "x-ms-client-request-id": [ "d58c0bf1-e85d-4a4b-928d-c298b76774c1" ], "CommandName": [ "Remove-AzPostgreSqlFirewallRule" ], "FullCommandName": [ "Remove-AzPostgreSqlFirewallRule_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -137,34 +137,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/aa2a24b1-de8d-4fc2-8855-e0474a041102?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/a66d8fec-e7ca-4d4c-97a4-14d1f0536a47?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/aa2a24b1-de8d-4fc2-8855-e0474a041102?api-version=2017-12-01" ], - "x-ms-request-id": [ "aa2a24b1-de8d-4fc2-8855-e0474a041102" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/a66d8fec-e7ca-4d4c-97a4-14d1f0536a47?api-version=2017-12-01" ], + "x-ms-request-id": [ "a66d8fec-e7ca-4d4c-97a4-14d1f0536a47" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14992" ], - "x-ms-correlation-request-id": [ "f42101a8-b01e-479c-9de7-64a77471bc94" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T035753Z:f42101a8-b01e-479c-9de7-64a77471bc94" ], + "x-ms-correlation-request-id": [ "c4c9b9e0-dc86-4164-a575-aeb9a615c63b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111256Z:c4c9b9e0-dc86-4164-a575-aeb9a615c63b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:57:52 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:12:55 GMT" ] }, "ContentHeaders": { "Content-Length": [ "84" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"DropElasticServerFirewallRule\",\"startTime\":\"2020-05-08T03:57:51.987Z\"}" + "Content": "{\"operation\":\"DropElasticServerFirewallRule\",\"startTime\":\"2020-09-25T11:12:54.293Z\"}" } }, - "New-AzPostgreSqlFirewallRule+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/aa2a24b1-de8d-4fc2-8855-e0474a041102?api-version=2017-12-01+5": { + "New-AzPostgreSqlFirewallRule+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/a66d8fec-e7ca-4d4c-97a4-14d1f0536a47?api-version=2017-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/aa2a24b1-de8d-4fc2-8855-e0474a041102?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/a66d8fec-e7ca-4d4c-97a4-14d1f0536a47?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "91", "92" ], - "x-ms-client-request-id": [ "e1f585e5-44cd-4164-a47d-0063ffba5fd8", "e1f585e5-44cd-4164-a47d-0063ffba5fd8" ], + "x-ms-unique-id": [ "92", "93" ], + "x-ms-client-request-id": [ "d58c0bf1-e85d-4a4b-928d-c298b76774c1", "d58c0bf1-e85d-4a4b-928d-c298b76774c1" ], "CommandName": [ "Remove-AzPostgreSqlFirewallRule", "Remove-AzPostgreSqlFirewallRule" ], "FullCommandName": [ "Remove-AzPostgreSqlFirewallRule_Delete", "Remove-AzPostgreSqlFirewallRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -180,31 +180,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "d17439a3-18e6-47be-9e83-2629cf86a8d4" ], + "x-ms-request-id": [ "32533d35-932e-4cad-9644-46018fe893fe" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11928" ], - "x-ms-correlation-request-id": [ "167249e5-d2f8-416c-a263-b01016932ee8" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T035808Z:167249e5-d2f8-416c-a263-b01016932ee8" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11925" ], + "x-ms-correlation-request-id": [ "e7e148da-150e-421f-a80d-7fa000f89abc" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111311Z:e7e148da-150e-421f-a80d-7fa000f89abc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:58:07 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:13:11 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"aa2a24b1-de8d-4fc2-8855-e0474a041102\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-08T03:57:51.987Z\"}" + "Content": "{\"name\":\"a66d8fec-e7ca-4d4c-97a4-14d1f0536a47\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:12:54.293Z\"}" } }, - "New-AzPostgreSqlFirewallRule+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/aa2a24b1-de8d-4fc2-8855-e0474a041102?api-version=2017-12-01+6": { + "New-AzPostgreSqlFirewallRule+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/a66d8fec-e7ca-4d4c-97a4-14d1f0536a47?api-version=2017-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/aa2a24b1-de8d-4fc2-8855-e0474a041102?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/a66d8fec-e7ca-4d4c-97a4-14d1f0536a47?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "91", "92", "93" ], - "x-ms-client-request-id": [ "e1f585e5-44cd-4164-a47d-0063ffba5fd8", "e1f585e5-44cd-4164-a47d-0063ffba5fd8", "e1f585e5-44cd-4164-a47d-0063ffba5fd8" ], + "x-ms-unique-id": [ "92", "93", "94" ], + "x-ms-client-request-id": [ "d58c0bf1-e85d-4a4b-928d-c298b76774c1", "d58c0bf1-e85d-4a4b-928d-c298b76774c1", "d58c0bf1-e85d-4a4b-928d-c298b76774c1" ], "CommandName": [ "Remove-AzPostgreSqlFirewallRule", "Remove-AzPostgreSqlFirewallRule", "Remove-AzPostgreSqlFirewallRule" ], "FullCommandName": [ "Remove-AzPostgreSqlFirewallRule_Delete", "Remove-AzPostgreSqlFirewallRule_Delete", "Remove-AzPostgreSqlFirewallRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -219,14 +219,486 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "4e8b5d65-8517-4024-b35f-7b52c9f549d2" ], + "x-ms-request-id": [ "f04bbb73-70ef-4cd1-89a4-9b2f266b76a6" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11927" ], - "x-ms-correlation-request-id": [ "3cfcf87a-9c4d-4a7b-9c7a-b4067af65083" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T035808Z:3cfcf87a-9c4d-4a7b-9c7a-b4067af65083" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11924" ], + "x-ms-correlation-request-id": [ "87c8e457-b284-4496-8703-7856d8b2d180" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111312Z:87c8e457-b284-4496-8703-7856d8b2d180" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Fri, 25 Sep 2020 11:13:11 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "New-AzPostgreSqlFirewallRule+[NoContext]+ClientIPAddress+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01?api-version=2017-12-01+1": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01?api-version=2017-12-01", + "Content": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.1\",\r\n \"endIpAddress\": \"0.0.0.1\"\r\n }\r\n}", + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "93" ] + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/43884738-b885-4155-a8a1-d628cc501662?api-version=2017-12-01" ], + "Retry-After": [ "15" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/43884738-b885-4155-a8a1-d628cc501662?api-version=2017-12-01" ], + "x-ms-request-id": [ "43884738-b885-4155-a8a1-d628cc501662" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1188" ], + "x-ms-correlation-request-id": [ "97bf3ad5-af31-43fe-879c-446de329127a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111313Z:97bf3ad5-af31-43fe-879c-446de329127a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Fri, 25 Sep 2020 11:13:12 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "87" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"operation\":\"UpsertElasticServerFirewallRules\",\"startTime\":\"2020-09-25T11:13:12.497Z\"}" + } + }, + "New-AzPostgreSqlFirewallRule+[NoContext]+ClientIPAddress+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/43884738-b885-4155-a8a1-d628cc501662?api-version=2017-12-01+2": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/43884738-b885-4155-a8a1-d628cc501662?api-version=2017-12-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "95", "96" ], + "x-ms-client-request-id": [ "7227626a-a18a-4f5e-9f9c-ecd7ed619117", "7227626a-a18a-4f5e-9f9c-ecd7ed619117" ], + "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlFirewallRule", "Az.PostgreSql.internal\\New-AzPostgreSqlFirewallRule" ], + "FullCommandName": [ "New-AzPostgreSqlFirewallRule_CreateExpanded", "New-AzPostgreSqlFirewallRule_CreateExpanded" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "15" ], + "x-ms-request-id": [ "1f2dfb63-6194-4526-8bd8-84ea5a327318" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11923" ], + "x-ms-correlation-request-id": [ "f5660a27-5228-447f-bfe2-5f9cc4977dba" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111329Z:f5660a27-5228-447f-bfe2-5f9cc4977dba" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Fri, 25 Sep 2020 11:13:28 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "107" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"43884738-b885-4155-a8a1-d628cc501662\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:13:12.497Z\"}" + } + }, + "New-AzPostgreSqlFirewallRule+[NoContext]+ClientIPAddress+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01?api-version=2017-12-01+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01?api-version=2017-12-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "95", "96", "97" ], + "x-ms-client-request-id": [ "7227626a-a18a-4f5e-9f9c-ecd7ed619117", "7227626a-a18a-4f5e-9f9c-ecd7ed619117", "7227626a-a18a-4f5e-9f9c-ecd7ed619117" ], + "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlFirewallRule", "Az.PostgreSql.internal\\New-AzPostgreSqlFirewallRule", "Az.PostgreSql.internal\\New-AzPostgreSqlFirewallRule" ], + "FullCommandName": [ "New-AzPostgreSqlFirewallRule_CreateExpanded", "New-AzPostgreSqlFirewallRule_CreateExpanded", "New-AzPostgreSqlFirewallRule_CreateExpanded" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "8397456f-6490-41a0-bdc3-2468b40c13ec" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11922" ], + "x-ms-correlation-request-id": [ "e8e29975-2d01-4368-a351-857cc53b83d0" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111329Z:e8e29975-2d01-4368-a351-857cc53b83d0" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Fri, 25 Sep 2020 11:13:28 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "335" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"properties\":{\"startIpAddress\":\"0.0.0.1\",\"endIpAddress\":\"0.0.0.1\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01\",\"name\":\"postgresqlrule01\",\"type\":\"Microsoft.DBforPostgreSQL/servers/firewallRules\"}" + } + }, + "New-AzPostgreSqlFirewallRule+[NoContext]+ClientIPAddress+$DELETE+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01?api-version=2017-12-01+4": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01?api-version=2017-12-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "98" ], + "x-ms-client-request-id": [ "fad9788a-6d5c-40a6-9307-32ec0122876b" ], + "CommandName": [ "Remove-AzPostgreSqlFirewallRule" ], + "FullCommandName": [ "Remove-AzPostgreSqlFirewallRule_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/15fc7108-a3bf-4160-b347-129048fccd56?api-version=2017-12-01" ], + "Retry-After": [ "15" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/15fc7108-a3bf-4160-b347-129048fccd56?api-version=2017-12-01" ], + "x-ms-request-id": [ "15fc7108-a3bf-4160-b347-129048fccd56" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14991" ], + "x-ms-correlation-request-id": [ "62fb8f7f-c6ce-41fa-85b6-01ae269db5c9" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111330Z:62fb8f7f-c6ce-41fa-85b6-01ae269db5c9" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Fri, 25 Sep 2020 11:13:30 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "83" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"operation\":\"DropElasticServerFirewallRule\",\"startTime\":\"2020-09-25T11:13:29.81Z\"}" + } + }, + "New-AzPostgreSqlFirewallRule+[NoContext]+ClientIPAddress+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/15fc7108-a3bf-4160-b347-129048fccd56?api-version=2017-12-01+5": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/15fc7108-a3bf-4160-b347-129048fccd56?api-version=2017-12-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "98", "99" ], + "x-ms-client-request-id": [ "fad9788a-6d5c-40a6-9307-32ec0122876b", "fad9788a-6d5c-40a6-9307-32ec0122876b" ], + "CommandName": [ "Remove-AzPostgreSqlFirewallRule", "Remove-AzPostgreSqlFirewallRule" ], + "FullCommandName": [ "Remove-AzPostgreSqlFirewallRule_Delete", "Remove-AzPostgreSqlFirewallRule_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "15" ], + "x-ms-request-id": [ "5113e48c-5252-425a-9c4f-0048de801f9b" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11921" ], + "x-ms-correlation-request-id": [ "da1fb964-117e-441f-b248-ea2785c1f842" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111346Z:da1fb964-117e-441f-b248-ea2785c1f842" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Fri, 25 Sep 2020 11:13:45 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "106" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"15fc7108-a3bf-4160-b347-129048fccd56\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:13:29.81Z\"}" + } + }, + "New-AzPostgreSqlFirewallRule+[NoContext]+ClientIPAddress+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/15fc7108-a3bf-4160-b347-129048fccd56?api-version=2017-12-01+6": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/15fc7108-a3bf-4160-b347-129048fccd56?api-version=2017-12-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "98", "99", "100" ], + "x-ms-client-request-id": [ "fad9788a-6d5c-40a6-9307-32ec0122876b", "fad9788a-6d5c-40a6-9307-32ec0122876b", "fad9788a-6d5c-40a6-9307-32ec0122876b" ], + "CommandName": [ "Remove-AzPostgreSqlFirewallRule", "Remove-AzPostgreSqlFirewallRule", "Remove-AzPostgreSqlFirewallRule" ], + "FullCommandName": [ "Remove-AzPostgreSqlFirewallRule_Delete", "Remove-AzPostgreSqlFirewallRule_Delete", "Remove-AzPostgreSqlFirewallRule_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "1a41d930-74f2-4afd-a2a8-a2102d6857cd" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11920" ], + "x-ms-correlation-request-id": [ "44e44809-82f7-45f0-ae1e-26ad5b74c664" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111346Z:44e44809-82f7-45f0-ae1e-26ad5b74c664" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Fri, 25 Sep 2020 11:13:45 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "New-AzPostgreSqlFirewallRule+[NoContext]+AllowAll+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/AllowAll_2020-08-11_21-28-19?api-version=2017-12-01+1": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/AllowAll_2020-08-11_21-28-19?api-version=2017-12-01", + "Content": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.0\",\r\n \"endIpAddress\": \"255.255.255.255\"\r\n }\r\n}", + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "101" ] + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/a3bfb5af-c8af-49c0-b642-c740b5f11fa8?api-version=2017-12-01" ], + "Retry-After": [ "15" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/a3bfb5af-c8af-49c0-b642-c740b5f11fa8?api-version=2017-12-01" ], + "x-ms-request-id": [ "a3bfb5af-c8af-49c0-b642-c740b5f11fa8" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1187" ], + "x-ms-correlation-request-id": [ "209a7364-2c8c-44a7-9a6f-1bda4f791f5b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111348Z:209a7364-2c8c-44a7-9a6f-1bda4f791f5b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Fri, 25 Sep 2020 11:13:47 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "86" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"operation\":\"UpsertElasticServerFirewallRules\",\"startTime\":\"2020-09-25T11:13:47.03Z\"}" + } + }, + "New-AzPostgreSqlFirewallRule+[NoContext]+AllowAll+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/a3bfb5af-c8af-49c0-b642-c740b5f11fa8?api-version=2017-12-01+2": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/a3bfb5af-c8af-49c0-b642-c740b5f11fa8?api-version=2017-12-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "101", "102" ], + "x-ms-client-request-id": [ "ad92ae2e-8d26-4928-884f-975c2f825816", "ad92ae2e-8d26-4928-884f-975c2f825816" ], + "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlFirewallRule", "Az.PostgreSql.internal\\New-AzPostgreSqlFirewallRule" ], + "FullCommandName": [ "New-AzPostgreSqlFirewallRule_CreateExpanded", "New-AzPostgreSqlFirewallRule_CreateExpanded" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "15" ], + "x-ms-request-id": [ "d3f3c0d9-54d3-43b0-ba7f-c5f667ae7cb1" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11919" ], + "x-ms-correlation-request-id": [ "ecbb3e86-6644-40db-a1fe-cbd75a9ca0f4" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111403Z:ecbb3e86-6644-40db-a1fe-cbd75a9ca0f4" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Fri, 25 Sep 2020 11:14:02 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "106" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"a3bfb5af-c8af-49c0-b642-c740b5f11fa8\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:13:47.03Z\"}" + } + }, + "New-AzPostgreSqlFirewallRule+[NoContext]+AllowAll+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/AllowAll_2020-08-11_21-28-19?api-version=2017-12-01+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/AllowAll_2020-08-11_21-28-19?api-version=2017-12-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "101", "102", "103" ], + "x-ms-client-request-id": [ "ad92ae2e-8d26-4928-884f-975c2f825816", "ad92ae2e-8d26-4928-884f-975c2f825816", "ad92ae2e-8d26-4928-884f-975c2f825816" ], + "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlFirewallRule", "Az.PostgreSql.internal\\New-AzPostgreSqlFirewallRule", "Az.PostgreSql.internal\\New-AzPostgreSqlFirewallRule" ], + "FullCommandName": [ "New-AzPostgreSqlFirewallRule_CreateExpanded", "New-AzPostgreSqlFirewallRule_CreateExpanded", "New-AzPostgreSqlFirewallRule_CreateExpanded" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "9aa1cf12-1e13-4baf-b51c-6121cdf0ac6f" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11918" ], + "x-ms-correlation-request-id": [ "17451e5c-c75b-435f-ba8c-6245d9f21951" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111404Z:17451e5c-c75b-435f-ba8c-6245d9f21951" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Fri, 25 Sep 2020 11:14:03 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "367" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"properties\":{\"startIpAddress\":\"0.0.0.0\",\"endIpAddress\":\"255.255.255.255\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/AllowAll_2020-08-11_21-28-19\",\"name\":\"AllowAll_2020-08-11_21-28-19\",\"type\":\"Microsoft.DBforPostgreSQL/servers/firewallRules\"}" + } + }, + "New-AzPostgreSqlFirewallRule+[NoContext]+AllowAll+$DELETE+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/AllowAll_2020-08-11_21-28-19?api-version=2017-12-01+4": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/AllowAll_2020-08-11_21-28-19?api-version=2017-12-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "104" ], + "x-ms-client-request-id": [ "9ced074c-8942-4efc-83be-e03bb915ee0b" ], + "CommandName": [ "Remove-AzPostgreSqlFirewallRule" ], + "FullCommandName": [ "Remove-AzPostgreSqlFirewallRule_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/ec532379-2224-4b0d-b371-cdfad915c7b2?api-version=2017-12-01" ], + "Retry-After": [ "15" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/ec532379-2224-4b0d-b371-cdfad915c7b2?api-version=2017-12-01" ], + "x-ms-request-id": [ "ec532379-2224-4b0d-b371-cdfad915c7b2" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14990" ], + "x-ms-correlation-request-id": [ "4ef8ed26-440c-47ee-9340-98c7a7f7658b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111405Z:4ef8ed26-440c-47ee-9340-98c7a7f7658b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Fri, 25 Sep 2020 11:14:04 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "84" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"operation\":\"DropElasticServerFirewallRule\",\"startTime\":\"2020-09-25T11:14:04.543Z\"}" + } + }, + "New-AzPostgreSqlFirewallRule+[NoContext]+AllowAll+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/ec532379-2224-4b0d-b371-cdfad915c7b2?api-version=2017-12-01+5": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/ec532379-2224-4b0d-b371-cdfad915c7b2?api-version=2017-12-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "104", "105" ], + "x-ms-client-request-id": [ "9ced074c-8942-4efc-83be-e03bb915ee0b", "9ced074c-8942-4efc-83be-e03bb915ee0b" ], + "CommandName": [ "Remove-AzPostgreSqlFirewallRule", "Remove-AzPostgreSqlFirewallRule" ], + "FullCommandName": [ "Remove-AzPostgreSqlFirewallRule_Delete", "Remove-AzPostgreSqlFirewallRule_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "15" ], + "x-ms-request-id": [ "7e45350c-7a76-47d1-af30-751c700859c6" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11917" ], + "x-ms-correlation-request-id": [ "a6dc6602-7c30-4edb-adb5-722b2ff36f99" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111421Z:a6dc6602-7c30-4edb-adb5-722b2ff36f99" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Fri, 25 Sep 2020 11:14:21 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "107" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"ec532379-2224-4b0d-b371-cdfad915c7b2\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:14:04.543Z\"}" + } + }, + "New-AzPostgreSqlFirewallRule+[NoContext]+AllowAll+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/ec532379-2224-4b0d-b371-cdfad915c7b2?api-version=2017-12-01+6": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/ec532379-2224-4b0d-b371-cdfad915c7b2?api-version=2017-12-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "104", "105", "106" ], + "x-ms-client-request-id": [ "9ced074c-8942-4efc-83be-e03bb915ee0b", "9ced074c-8942-4efc-83be-e03bb915ee0b", "9ced074c-8942-4efc-83be-e03bb915ee0b" ], + "CommandName": [ "Remove-AzPostgreSqlFirewallRule", "Remove-AzPostgreSqlFirewallRule", "Remove-AzPostgreSqlFirewallRule" ], + "FullCommandName": [ "Remove-AzPostgreSqlFirewallRule_Delete", "Remove-AzPostgreSqlFirewallRule_Delete", "Remove-AzPostgreSqlFirewallRule_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "5b2b5009-24a7-4c09-be09-ad0e3ebfdf4c" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11916" ], + "x-ms-correlation-request-id": [ "ddd15899-ef9e-4ca3-a42a-44ffc922b761" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111421Z:ddd15899-ef9e-4ca3-a42a-44ffc922b761" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:58:08 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:14:21 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/PostgreSql/test/New-AzPostgreSqlFirewallRule.Tests.ps1 b/src/PostgreSql/test/New-AzPostgreSqlFirewallRule.Tests.ps1 index 4a3e7c55905a..20a9370998f6 100644 --- a/src/PostgreSql/test/New-AzPostgreSqlFirewallRule.Tests.ps1 +++ b/src/PostgreSql/test/New-AzPostgreSqlFirewallRule.Tests.ps1 @@ -19,4 +19,22 @@ Describe 'New-AzPostgreSqlFirewallRule' { $rule.EndIPAddress | Should -Be 0.0.0.1 Remove-AzPostgreSqlFirewallRule -Name $env.firewallRuleName -ResourceGroupName $env.resourceGroup -ServerName $env.serverName } + + It 'ClientIPAddress' { + #Use only one parameter when only one IP + $rule = New-AzPostgreSqlFirewallRule -Name $env.firewallRuleName -ResourceGroupName $env.resourceGroup -ServerName $env.serverName -ClientIPAddress 0.0.0.1 + $rule.Name | Should -Be $env.firewallRuleName + $rule.StartIPAddress | Should -Be 0.0.0.1 + $rule.EndIPAddress | Should -Be 0.0.0.1 + Remove-AzPostgreSqlFirewallRule -Name $env.firewallRuleName -ResourceGroupName $env.resourceGroup -ServerName $env.serverName + } + + It 'AllowAll' { + $allowAllName = 'AllowAll_2020-08-11_21-28-19' + $rule = New-AzPostgreSqlFirewallRule -Name $allowAllName -ResourceGroupName $env.resourceGroup -ServerName $env.serverName -AllowAll + $rule.Name | Should -Be $allowAllName + $rule.StartIPAddress | Should -Be 0.0.0.0 + $rule.EndIPAddress | Should -Be 255.255.255.255 + Remove-AzPostgreSqlFirewallRule -Name $rule.Name -ResourceGroupName $env.resourceGroup -ServerName $env.serverName + } } diff --git a/src/PostgreSql/test/New-AzPostgreSqlReplica.Recording.json b/src/PostgreSql/test/New-AzPostgreSqlReplica.Recording.json index cd3c408fedae..ffc49c6f1ff3 100644 --- a/src/PostgreSql/test/New-AzPostgreSqlReplica.Recording.json +++ b/src/PostgreSql/test/New-AzPostgreSqlReplica.Recording.json @@ -5,8 +5,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "94" ], - "x-ms-client-request-id": [ "6e4647eb-a993-4f41-a563-0de7f8a64177" ], + "x-ms-unique-id": [ "107" ], + "x-ms-client-request-id": [ "e3662e3a-392a-4ae9-8697-1fa133ca818a" ], "CommandName": [ "Get-AzPostgreSqlServer" ], "FullCommandName": [ "Get-AzPostgreSqlServer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -21,33 +21,33 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "3df525c0-6545-4792-91a4-5d081fde37fe" ], + "x-ms-request-id": [ "9d2f98fe-9b6e-48d1-8d39-47fb79d4da14" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11926" ], - "x-ms-correlation-request-id": [ "4b1c0bff-3de6-48c2-9164-53d3a37ce9b9" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T035809Z:4b1c0bff-3de6-48c2-9164-53d3a37ce9b9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11915" ], + "x-ms-correlation-request-id": [ "08f4ff7f-9ff1-4d95-9154-e2a1e502c13a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111422Z:08f4ff7f-9ff1-4d95-9154-e2a1e502c13a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:58:08 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:14:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "943" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"postgresql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-05-08T03:54:02.197+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\",\"name\":\"postgresql-test-100\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}" + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"postgresql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-09-25T11:09:04.307+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\",\"name\":\"postgresql-test-100\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}" } }, "New-AzPostgreSqlReplica+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100-replica?api-version=2017-12-01+2": { "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100-replica?api-version=2017-12-01", - "Content": "{\n \"properties\": {\n \"createMode\": \"Replica\",\n \"sourceServerId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\"\n },\n \"location\": \"eastus\"\n}", + "Content": "{\r\n \"properties\": {\r\n \"createMode\": \"Replica\",\r\n \"sourceServerId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\"\r\n },\r\n \"location\": \"eastus\"\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "248" ] + "Content-Length": [ "254" ] } }, "Response": { @@ -55,34 +55,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/9a6c3a4b-3ec4-4efc-b493-6ab8e39829eb?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/e90e1781-70f6-4c66-a12a-6cb762d7b2d0?api-version=2017-12-01" ], "Retry-After": [ "30" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/9a6c3a4b-3ec4-4efc-b493-6ab8e39829eb?api-version=2017-12-01" ], - "x-ms-request-id": [ "9a6c3a4b-3ec4-4efc-b493-6ab8e39829eb" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1190" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e90e1781-70f6-4c66-a12a-6cb762d7b2d0?api-version=2017-12-01" ], + "x-ms-request-id": [ "e90e1781-70f6-4c66-a12a-6cb762d7b2d0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "95604635-3e09-4730-82f3-d9c9e059a90d" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T035814Z:95604635-3e09-4730-82f3-d9c9e059a90d" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1186" ], + "x-ms-correlation-request-id": [ "02752ff9-fcb2-427b-9bae-3f43476071c0" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111428Z:02752ff9-fcb2-427b-9bae-3f43476071c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:58:14 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:14:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "88" ], + "Content-Length": [ "87" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"CreateElasticServerContinuousCopy\",\"startTime\":\"2020-05-08T03:58:14.707Z\"}" + "Content": "{\"operation\":\"CreateElasticServerContinuousCopy\",\"startTime\":\"2020-09-25T11:14:27.93Z\"}" } }, - "New-AzPostgreSqlReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/9a6c3a4b-3ec4-4efc-b493-6ab8e39829eb?api-version=2017-12-01+3": { + "New-AzPostgreSqlReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e90e1781-70f6-4c66-a12a-6cb762d7b2d0?api-version=2017-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/9a6c3a4b-3ec4-4efc-b493-6ab8e39829eb?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e90e1781-70f6-4c66-a12a-6cb762d7b2d0?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "95", "96" ], - "x-ms-client-request-id": [ "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240" ], + "x-ms-unique-id": [ "108", "109" ], + "x-ms-client-request-id": [ "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -98,31 +98,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "bdcc4198-641a-4c03-ad66-f803752090dc" ], + "x-ms-request-id": [ "b2c97d15-43d3-473b-abea-84a1f8059d2b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11925" ], - "x-ms-correlation-request-id": [ "b5e9247b-b743-4653-a38b-131d6eca79bc" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T035845Z:b5e9247b-b743-4653-a38b-131d6eca79bc" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11914" ], + "x-ms-correlation-request-id": [ "599b1ddd-3e53-484b-be0b-fede8283b038" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111458Z:599b1ddd-3e53-484b-be0b-fede8283b038" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:58:45 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:14:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "108" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"9a6c3a4b-3ec4-4efc-b493-6ab8e39829eb\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T03:58:14.707Z\"}" + "Content": "{\"name\":\"e90e1781-70f6-4c66-a12a-6cb762d7b2d0\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:14:27.93Z\"}" } }, - "New-AzPostgreSqlReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/9a6c3a4b-3ec4-4efc-b493-6ab8e39829eb?api-version=2017-12-01+4": { + "New-AzPostgreSqlReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e90e1781-70f6-4c66-a12a-6cb762d7b2d0?api-version=2017-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/9a6c3a4b-3ec4-4efc-b493-6ab8e39829eb?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e90e1781-70f6-4c66-a12a-6cb762d7b2d0?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "95", "96", "97" ], - "x-ms-client-request-id": [ "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240" ], + "x-ms-unique-id": [ "108", "109", "110" ], + "x-ms-client-request-id": [ "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -138,31 +138,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "eb54154f-457c-4cf9-973c-d08f1a8fa77d" ], + "x-ms-request-id": [ "417ebb13-bf68-489a-a6b7-dc7fc8c08ad7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11924" ], - "x-ms-correlation-request-id": [ "e31ae362-df00-4092-b140-57e8e019c949" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T035916Z:e31ae362-df00-4092-b140-57e8e019c949" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11913" ], + "x-ms-correlation-request-id": [ "6aba1f47-df42-44dc-9101-93a2ba3e71d5" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111528Z:6aba1f47-df42-44dc-9101-93a2ba3e71d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:59:15 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:15:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "108" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"9a6c3a4b-3ec4-4efc-b493-6ab8e39829eb\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T03:58:14.707Z\"}" + "Content": "{\"name\":\"e90e1781-70f6-4c66-a12a-6cb762d7b2d0\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:14:27.93Z\"}" } }, - "New-AzPostgreSqlReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/9a6c3a4b-3ec4-4efc-b493-6ab8e39829eb?api-version=2017-12-01+5": { + "New-AzPostgreSqlReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e90e1781-70f6-4c66-a12a-6cb762d7b2d0?api-version=2017-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/9a6c3a4b-3ec4-4efc-b493-6ab8e39829eb?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e90e1781-70f6-4c66-a12a-6cb762d7b2d0?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "95", "96", "97", "98" ], - "x-ms-client-request-id": [ "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240" ], + "x-ms-unique-id": [ "108", "109", "110", "111" ], + "x-ms-client-request-id": [ "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -178,31 +178,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "0c11efdb-dbf8-44f6-a1f0-5d7c2764f0d8" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11923" ], + "x-ms-request-id": [ "6520483f-2043-416c-8ac0-0356a328d7bf" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "a81df85d-96e6-47fb-bf8e-01d9e69f85e3" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T035946Z:a81df85d-96e6-47fb-bf8e-01d9e69f85e3" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11912" ], + "x-ms-correlation-request-id": [ "9f538362-b754-4024-8e63-1335eb4a7752" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111559Z:9f538362-b754-4024-8e63-1335eb4a7752" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 03:59:45 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:15:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "108" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"9a6c3a4b-3ec4-4efc-b493-6ab8e39829eb\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T03:58:14.707Z\"}" + "Content": "{\"name\":\"e90e1781-70f6-4c66-a12a-6cb762d7b2d0\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:14:27.93Z\"}" } }, - "New-AzPostgreSqlReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/9a6c3a4b-3ec4-4efc-b493-6ab8e39829eb?api-version=2017-12-01+6": { + "New-AzPostgreSqlReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e90e1781-70f6-4c66-a12a-6cb762d7b2d0?api-version=2017-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/9a6c3a4b-3ec4-4efc-b493-6ab8e39829eb?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e90e1781-70f6-4c66-a12a-6cb762d7b2d0?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "95", "96", "97", "98", "99" ], - "x-ms-client-request-id": [ "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240" ], + "x-ms-unique-id": [ "108", "109", "110", "111", "112" ], + "x-ms-client-request-id": [ "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -218,31 +218,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "6b56e73e-74cd-49c4-9562-003d40245703" ], + "x-ms-request-id": [ "ceb09620-4c39-44c3-9e0f-cee0a78a8a11" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11922" ], - "x-ms-correlation-request-id": [ "3de7c530-12c8-4fc1-b6e8-7f89b62d5b03" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T040017Z:3de7c530-12c8-4fc1-b6e8-7f89b62d5b03" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11911" ], + "x-ms-correlation-request-id": [ "91889a6b-e4f7-41a7-80d9-094e216cc1ac" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111629Z:91889a6b-e4f7-41a7-80d9-094e216cc1ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:00:17 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:16:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "108" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"9a6c3a4b-3ec4-4efc-b493-6ab8e39829eb\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T03:58:14.707Z\"}" + "Content": "{\"name\":\"e90e1781-70f6-4c66-a12a-6cb762d7b2d0\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:14:27.93Z\"}" } }, - "New-AzPostgreSqlReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/9a6c3a4b-3ec4-4efc-b493-6ab8e39829eb?api-version=2017-12-01+7": { + "New-AzPostgreSqlReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e90e1781-70f6-4c66-a12a-6cb762d7b2d0?api-version=2017-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/9a6c3a4b-3ec4-4efc-b493-6ab8e39829eb?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e90e1781-70f6-4c66-a12a-6cb762d7b2d0?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "95", "96", "97", "98", "99", "100" ], - "x-ms-client-request-id": [ "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240" ], + "x-ms-unique-id": [ "108", "109", "110", "111", "112", "113" ], + "x-ms-client-request-id": [ "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -258,31 +258,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "a6fe7b85-3d1d-47bd-b179-d2940e76ed0e" ], + "x-ms-request-id": [ "46658292-dbd0-4414-bccd-4c5164624cdd" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11921" ], - "x-ms-correlation-request-id": [ "70c97946-ef63-4eb3-a8ef-865d0203d829" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T040047Z:70c97946-ef63-4eb3-a8ef-865d0203d829" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11910" ], + "x-ms-correlation-request-id": [ "54b70d30-62d9-4659-86b1-9954592ee2d8" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111700Z:54b70d30-62d9-4659-86b1-9954592ee2d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:00:47 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:16:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "108" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"9a6c3a4b-3ec4-4efc-b493-6ab8e39829eb\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T03:58:14.707Z\"}" + "Content": "{\"name\":\"e90e1781-70f6-4c66-a12a-6cb762d7b2d0\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:14:27.93Z\"}" } }, - "New-AzPostgreSqlReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/9a6c3a4b-3ec4-4efc-b493-6ab8e39829eb?api-version=2017-12-01+8": { + "New-AzPostgreSqlReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e90e1781-70f6-4c66-a12a-6cb762d7b2d0?api-version=2017-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/9a6c3a4b-3ec4-4efc-b493-6ab8e39829eb?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e90e1781-70f6-4c66-a12a-6cb762d7b2d0?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "95", "96", "97", "98", "99", "100", "101" ], - "x-ms-client-request-id": [ "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240" ], + "x-ms-unique-id": [ "108", "109", "110", "111", "112", "113", "114" ], + "x-ms-client-request-id": [ "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -298,31 +298,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "044f41f7-fc9e-4bef-9ec8-2415f55a4fd7" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11920" ], + "x-ms-request-id": [ "521ceccc-ea34-4cf5-be22-372a58116f4e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "62bbcb84-1360-427a-87c4-fc75773eb603" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T040118Z:62bbcb84-1360-427a-87c4-fc75773eb603" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11909" ], + "x-ms-correlation-request-id": [ "def7cdff-b281-4bc3-a761-0b1e232cbc9a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111730Z:def7cdff-b281-4bc3-a761-0b1e232cbc9a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:01:17 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:17:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "108" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"9a6c3a4b-3ec4-4efc-b493-6ab8e39829eb\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T03:58:14.707Z\"}" + "Content": "{\"name\":\"e90e1781-70f6-4c66-a12a-6cb762d7b2d0\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:14:27.93Z\"}" } }, - "New-AzPostgreSqlReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/9a6c3a4b-3ec4-4efc-b493-6ab8e39829eb?api-version=2017-12-01+9": { + "New-AzPostgreSqlReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e90e1781-70f6-4c66-a12a-6cb762d7b2d0?api-version=2017-12-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/9a6c3a4b-3ec4-4efc-b493-6ab8e39829eb?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e90e1781-70f6-4c66-a12a-6cb762d7b2d0?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "95", "96", "97", "98", "99", "100", "101", "102" ], - "x-ms-client-request-id": [ "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240" ], + "x-ms-unique-id": [ "108", "109", "110", "111", "112", "113", "114", "115" ], + "x-ms-client-request-id": [ "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -338,31 +338,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "cb0317fc-1ef7-45c7-9cdb-94ef70544033" ], + "x-ms-request-id": [ "3cf3e648-e342-46cd-a9df-5e9da53735cc" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11919" ], - "x-ms-correlation-request-id": [ "1beea5f2-2973-47a2-b42f-1e4bc6089a27" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T040149Z:1beea5f2-2973-47a2-b42f-1e4bc6089a27" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11908" ], + "x-ms-correlation-request-id": [ "b03eb0a5-4d56-4be2-8d1f-56cf6de7673f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111800Z:b03eb0a5-4d56-4be2-8d1f-56cf6de7673f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:01:48 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:18:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "108" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"9a6c3a4b-3ec4-4efc-b493-6ab8e39829eb\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T03:58:14.707Z\"}" + "Content": "{\"name\":\"e90e1781-70f6-4c66-a12a-6cb762d7b2d0\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:14:27.93Z\"}" } }, - "New-AzPostgreSqlReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/9a6c3a4b-3ec4-4efc-b493-6ab8e39829eb?api-version=2017-12-01+10": { + "New-AzPostgreSqlReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e90e1781-70f6-4c66-a12a-6cb762d7b2d0?api-version=2017-12-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/9a6c3a4b-3ec4-4efc-b493-6ab8e39829eb?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e90e1781-70f6-4c66-a12a-6cb762d7b2d0?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "95", "96", "97", "98", "99", "100", "101", "102", "103" ], - "x-ms-client-request-id": [ "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240" ], + "x-ms-unique-id": [ "108", "109", "110", "111", "112", "113", "114", "115", "116" ], + "x-ms-client-request-id": [ "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -378,31 +378,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "105b9e3f-8316-41a5-aac3-cd882df6f0ba" ], + "x-ms-request-id": [ "c34393ba-2a31-4cb8-b5ca-d4fb8741f809" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11918" ], - "x-ms-correlation-request-id": [ "78808ec4-7698-4b5c-8060-4e222a1ef700" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T040219Z:78808ec4-7698-4b5c-8060-4e222a1ef700" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11907" ], + "x-ms-correlation-request-id": [ "79da8e9b-c827-4106-9a40-0e3a82939650" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111831Z:79da8e9b-c827-4106-9a40-0e3a82939650" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:02:19 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:18:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "108" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"9a6c3a4b-3ec4-4efc-b493-6ab8e39829eb\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T03:58:14.707Z\"}" + "Content": "{\"name\":\"e90e1781-70f6-4c66-a12a-6cb762d7b2d0\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:14:27.93Z\"}" } }, - "New-AzPostgreSqlReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/9a6c3a4b-3ec4-4efc-b493-6ab8e39829eb?api-version=2017-12-01+11": { + "New-AzPostgreSqlReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e90e1781-70f6-4c66-a12a-6cb762d7b2d0?api-version=2017-12-01+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/9a6c3a4b-3ec4-4efc-b493-6ab8e39829eb?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e90e1781-70f6-4c66-a12a-6cb762d7b2d0?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "95", "96", "97", "98", "99", "100", "101", "102", "103", "104" ], - "x-ms-client-request-id": [ "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240" ], + "x-ms-unique-id": [ "108", "109", "110", "111", "112", "113", "114", "115", "116", "117" ], + "x-ms-client-request-id": [ "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -418,31 +418,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "d002d63a-1fc2-44aa-a093-ac75023da224" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11917" ], + "x-ms-request-id": [ "1fdb5884-5fdf-4f01-aec0-bf67154fbbc0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "fa8a321d-ca7d-4931-82a3-5ccc4bb20d96" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T040250Z:fa8a321d-ca7d-4931-82a3-5ccc4bb20d96" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11906" ], + "x-ms-correlation-request-id": [ "ad0a1e79-0c62-4318-90cb-2872d2531366" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111901Z:ad0a1e79-0c62-4318-90cb-2872d2531366" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:02:49 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:19:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "108" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"9a6c3a4b-3ec4-4efc-b493-6ab8e39829eb\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T03:58:14.707Z\"}" + "Content": "{\"name\":\"e90e1781-70f6-4c66-a12a-6cb762d7b2d0\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:14:27.93Z\"}" } }, - "New-AzPostgreSqlReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/9a6c3a4b-3ec4-4efc-b493-6ab8e39829eb?api-version=2017-12-01+12": { + "New-AzPostgreSqlReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e90e1781-70f6-4c66-a12a-6cb762d7b2d0?api-version=2017-12-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/9a6c3a4b-3ec4-4efc-b493-6ab8e39829eb?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e90e1781-70f6-4c66-a12a-6cb762d7b2d0?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "95", "96", "97", "98", "99", "100", "101", "102", "103", "104", "105" ], - "x-ms-client-request-id": [ "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240" ], + "x-ms-unique-id": [ "108", "109", "110", "111", "112", "113", "114", "115", "116", "117", "118" ], + "x-ms-client-request-id": [ "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -458,31 +458,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "b4858f0b-b31a-4105-93fd-f08d818f3f83" ], + "x-ms-request-id": [ "56954f04-f14d-4f16-a9e0-94b59e64b908" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11916" ], - "x-ms-correlation-request-id": [ "940e7320-79f8-4426-9f75-e78ccade1a13" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T040321Z:940e7320-79f8-4426-9f75-e78ccade1a13" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11905" ], + "x-ms-correlation-request-id": [ "be2818c7-55de-4db7-a62c-adc036c4fcf9" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T111933Z:be2818c7-55de-4db7-a62c-adc036c4fcf9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:03:20 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:19:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "108" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"9a6c3a4b-3ec4-4efc-b493-6ab8e39829eb\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T03:58:14.707Z\"}" + "Content": "{\"name\":\"e90e1781-70f6-4c66-a12a-6cb762d7b2d0\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:14:27.93Z\"}" } }, - "New-AzPostgreSqlReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/9a6c3a4b-3ec4-4efc-b493-6ab8e39829eb?api-version=2017-12-01+13": { + "New-AzPostgreSqlReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e90e1781-70f6-4c66-a12a-6cb762d7b2d0?api-version=2017-12-01+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/9a6c3a4b-3ec4-4efc-b493-6ab8e39829eb?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e90e1781-70f6-4c66-a12a-6cb762d7b2d0?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "95", "96", "97", "98", "99", "100", "101", "102", "103", "104", "105", "106" ], - "x-ms-client-request-id": [ "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240" ], + "x-ms-unique-id": [ "108", "109", "110", "111", "112", "113", "114", "115", "116", "117", "118", "119" ], + "x-ms-client-request-id": [ "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -498,31 +498,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "8fb03be4-90bb-4c00-9a7d-6ce43e74c080" ], + "x-ms-request-id": [ "b98dde91-7d79-4ebd-bf71-0f195bb56af5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11915" ], - "x-ms-correlation-request-id": [ "ae78c726-6742-41eb-8dcd-15f7055996fe" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T040351Z:ae78c726-6742-41eb-8dcd-15f7055996fe" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11904" ], + "x-ms-correlation-request-id": [ "d396cd1b-4c04-4604-895a-6b65b7f5267d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T112004Z:d396cd1b-4c04-4604-895a-6b65b7f5267d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:03:51 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:20:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "108" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"9a6c3a4b-3ec4-4efc-b493-6ab8e39829eb\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T03:58:14.707Z\"}" + "Content": "{\"name\":\"e90e1781-70f6-4c66-a12a-6cb762d7b2d0\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:14:27.93Z\"}" } }, - "New-AzPostgreSqlReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/9a6c3a4b-3ec4-4efc-b493-6ab8e39829eb?api-version=2017-12-01+14": { + "New-AzPostgreSqlReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e90e1781-70f6-4c66-a12a-6cb762d7b2d0?api-version=2017-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/9a6c3a4b-3ec4-4efc-b493-6ab8e39829eb?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e90e1781-70f6-4c66-a12a-6cb762d7b2d0?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "95", "96", "97", "98", "99", "100", "101", "102", "103", "104", "105", "106", "107" ], - "x-ms-client-request-id": [ "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240" ], + "x-ms-unique-id": [ "108", "109", "110", "111", "112", "113", "114", "115", "116", "117", "118", "119", "120" ], + "x-ms-client-request-id": [ "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -538,31 +538,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "3f36b85b-b40b-4232-be6b-7b822eb8d4c4" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11914" ], + "x-ms-request-id": [ "636c4227-7bb6-48c6-bda0-051ae6db7d86" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "0a243bf2-cc9e-4b71-a0b4-7d39365befb0" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T040422Z:0a243bf2-cc9e-4b71-a0b4-7d39365befb0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11903" ], + "x-ms-correlation-request-id": [ "9ffe83e0-d632-4249-8967-284bb29150d5" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T112034Z:9ffe83e0-d632-4249-8967-284bb29150d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:04:21 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:20:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "108" ], + "Content-Length": [ "106" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"9a6c3a4b-3ec4-4efc-b493-6ab8e39829eb\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T03:58:14.707Z\"}" + "Content": "{\"name\":\"e90e1781-70f6-4c66-a12a-6cb762d7b2d0\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:14:27.93Z\"}" } }, - "New-AzPostgreSqlReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/9a6c3a4b-3ec4-4efc-b493-6ab8e39829eb?api-version=2017-12-01+15": { + "New-AzPostgreSqlReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100-replica?api-version=2017-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/9a6c3a4b-3ec4-4efc-b493-6ab8e39829eb?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100-replica?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "95", "96", "97", "98", "99", "100", "101", "102", "103", "104", "105", "106", "107", "108" ], - "x-ms-client-request-id": [ "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240" ], + "x-ms-unique-id": [ "108", "109", "110", "111", "112", "113", "114", "115", "116", "117", "118", "119", "120", "121" ], + "x-ms-client-request-id": [ "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b", "1c3dbd05-9c0d-4a35-aa76-bc161e64359b" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -577,71 +577,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Retry-After": [ "30" ], - "x-ms-request-id": [ "45fb3985-0ebb-4f04-bd8d-ff77776a678e" ], + "x-ms-request-id": [ "34b7f8bb-abd4-447b-aa93-1832651b74d3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11913" ], - "x-ms-correlation-request-id": [ "3fc21777-b663-4611-a531-20a6c8150edb" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T040452Z:3fc21777-b663-4611-a531-20a6c8150edb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11902" ], + "x-ms-correlation-request-id": [ "6e7a9d8e-6196-4520-9de2-38dd99339bf7" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T112035Z:6e7a9d8e-6196-4520-9de2-38dd99339bf7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:04:51 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:20:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "1114" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"9a6c3a4b-3ec4-4efc-b493-6ab8e39829eb\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-08T03:58:14.707Z\"}" + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"postgresql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Enabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100-replica.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-09-25T11:25:40.337+00:00\",\"replicationRole\":\"Replica\",\"masterServerId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\",\"replicaCapacity\":0,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100-replica\",\"name\":\"postgresql-test-100-replica\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}" } }, - "New-AzPostgreSqlReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100-replica?api-version=2017-12-01+16": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100-replica?api-version=2017-12-01", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "95", "96", "97", "98", "99", "100", "101", "102", "103", "104", "105", "106", "107", "108", "109" ], - "x-ms-client-request-id": [ "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240", "7aa4e483-c21f-463a-b8ad-5bd280d27240" ], - "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], - "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "8271a927-6a11-4bc2-b6e7-ad7f1ca5e0ea" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11912" ], - "x-ms-correlation-request-id": [ "d6c47a5b-fa46-4cf3-971e-595c41ecdca2" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T040453Z:d6c47a5b-fa46-4cf3-971e-595c41ecdca2" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:04:52 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "1113" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"postgresql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Enabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100-replica.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-05-08T04:10:15.97+00:00\",\"replicationRole\":\"Replica\",\"masterServerId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\",\"replicaCapacity\":0,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100-replica\",\"name\":\"postgresql-test-100-replica\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}" - } - }, - "New-AzPostgreSqlReplica+[NoContext]+CreateExpanded+$DELETE+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100-replica?api-version=2017-12-01+17": { + "New-AzPostgreSqlReplica+[NoContext]+CreateExpanded+$DELETE+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100-replica?api-version=2017-12-01+16": { "Request": { "Method": "DELETE", "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100-replica?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "110" ], - "x-ms-client-request-id": [ "568cc299-7852-4669-8f45-dd62a943ef1e" ], + "x-ms-unique-id": [ "122" ], + "x-ms-client-request-id": [ "cb5f7dbb-449e-4024-b7b8-e95fcb8931ed" ], "CommandName": [ "Remove-AzPostgreSqlServer" ], "FullCommandName": [ "Remove-AzPostgreSqlServer_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -656,34 +616,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/f9514f0e-c0ef-4311-868d-d2d8822cc4e8?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/6466668d-7f53-4f75-836b-6e7dd8cb2575?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/f9514f0e-c0ef-4311-868d-d2d8822cc4e8?api-version=2017-12-01" ], - "x-ms-request-id": [ "f9514f0e-c0ef-4311-868d-d2d8822cc4e8" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/6466668d-7f53-4f75-836b-6e7dd8cb2575?api-version=2017-12-01" ], + "x-ms-request-id": [ "6466668d-7f53-4f75-836b-6e7dd8cb2575" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14991" ], - "x-ms-correlation-request-id": [ "16b2ae03-4a50-4289-9013-b9147197ab30" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T040453Z:16b2ae03-4a50-4289-9013-b9147197ab30" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14989" ], + "x-ms-correlation-request-id": [ "472f7bea-6887-4a54-92e4-41b690e6c384" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T112035Z:472f7bea-6887-4a54-92e4-41b690e6c384" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:04:52 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:20:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "72" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"DropElasticServer\",\"startTime\":\"2020-05-08T04:04:53.733Z\"}" + "Content": "{\"operation\":\"DropElasticServer\",\"startTime\":\"2020-09-25T11:20:35.597Z\"}" } }, - "New-AzPostgreSqlReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/f9514f0e-c0ef-4311-868d-d2d8822cc4e8?api-version=2017-12-01+18": { + "New-AzPostgreSqlReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/6466668d-7f53-4f75-836b-6e7dd8cb2575?api-version=2017-12-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/f9514f0e-c0ef-4311-868d-d2d8822cc4e8?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/6466668d-7f53-4f75-836b-6e7dd8cb2575?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "110", "111" ], - "x-ms-client-request-id": [ "568cc299-7852-4669-8f45-dd62a943ef1e", "568cc299-7852-4669-8f45-dd62a943ef1e" ], + "x-ms-unique-id": [ "122", "123" ], + "x-ms-client-request-id": [ "cb5f7dbb-449e-4024-b7b8-e95fcb8931ed", "cb5f7dbb-449e-4024-b7b8-e95fcb8931ed" ], "CommandName": [ "Remove-AzPostgreSqlServer", "Remove-AzPostgreSqlServer" ], "FullCommandName": [ "Remove-AzPostgreSqlServer_Delete", "Remove-AzPostgreSqlServer_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -699,31 +659,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "e64a1b80-461a-4793-9548-1ac788eb0350" ], + "x-ms-request-id": [ "d9ed78fc-dbcc-4e50-a887-2bee921ba406" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11911" ], - "x-ms-correlation-request-id": [ "ed923b6c-f600-45a1-bd7f-dc838f10bb95" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T040509Z:ed923b6c-f600-45a1-bd7f-dc838f10bb95" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11901" ], + "x-ms-correlation-request-id": [ "47859d17-96a3-4e6a-84b8-82de29715e22" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T112051Z:47859d17-96a3-4e6a-84b8-82de29715e22" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:05:09 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:20:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"f9514f0e-c0ef-4311-868d-d2d8822cc4e8\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-08T04:04:53.733Z\"}" + "Content": "{\"name\":\"6466668d-7f53-4f75-836b-6e7dd8cb2575\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:20:35.597Z\"}" } }, - "New-AzPostgreSqlReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/f9514f0e-c0ef-4311-868d-d2d8822cc4e8?api-version=2017-12-01+19": { + "New-AzPostgreSqlReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/6466668d-7f53-4f75-836b-6e7dd8cb2575?api-version=2017-12-01+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/f9514f0e-c0ef-4311-868d-d2d8822cc4e8?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/6466668d-7f53-4f75-836b-6e7dd8cb2575?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "110", "111", "112" ], - "x-ms-client-request-id": [ "568cc299-7852-4669-8f45-dd62a943ef1e", "568cc299-7852-4669-8f45-dd62a943ef1e", "568cc299-7852-4669-8f45-dd62a943ef1e" ], + "x-ms-unique-id": [ "122", "123", "124" ], + "x-ms-client-request-id": [ "cb5f7dbb-449e-4024-b7b8-e95fcb8931ed", "cb5f7dbb-449e-4024-b7b8-e95fcb8931ed", "cb5f7dbb-449e-4024-b7b8-e95fcb8931ed" ], "CommandName": [ "Remove-AzPostgreSqlServer", "Remove-AzPostgreSqlServer", "Remove-AzPostgreSqlServer" ], "FullCommandName": [ "Remove-AzPostgreSqlServer_Delete", "Remove-AzPostgreSqlServer_Delete", "Remove-AzPostgreSqlServer_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -738,14 +698,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "5c45fdea-db0f-484b-9298-ea99a103ac0e" ], + "x-ms-request-id": [ "5067f6e2-b305-4f47-b212-f7a72e60baa7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11910" ], - "x-ms-correlation-request-id": [ "205cc7fa-02b2-410d-a377-2ef876ad02d6" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T040509Z:205cc7fa-02b2-410d-a377-2ef876ad02d6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11900" ], + "x-ms-correlation-request-id": [ "d5087d4b-9ed6-4e44-8e20-d1c0f4c228e2" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T112051Z:d5087d4b-9ed6-4e44-8e20-d1c0f4c228e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:05:09 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:20:50 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/PostgreSql/test/New-AzPostgreSqlServer.Recording.json b/src/PostgreSql/test/New-AzPostgreSqlServer.Recording.json index c6c68f7f8c68..959764380074 100644 --- a/src/PostgreSql/test/New-AzPostgreSqlServer.Recording.json +++ b/src/PostgreSql/test/New-AzPostgreSqlServer.Recording.json @@ -3,12 +3,12 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100-2?api-version=2017-12-01", - "Content": "{\n \"properties\": {\n \"createMode\": \"Default\",\n \"administratorLogin\": \"pwsh\",\n \"administratorLoginPassword\": \"Pa88word!\"\n },\n \"sku\": {\n \"name\": \"GP_Gen5_4\"\n },\n \"location\": \"eastus\"\n}", + "Content": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5_4\"\r\n },\r\n \"properties\": {\r\n \"createMode\": \"Default\",\r\n \"administratorLogin\": \"pwsh\",\r\n \"administratorLoginPassword\": \"Pa88word!\"\r\n },\r\n \"location\": \"eastus\"\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "198" ] + "Content-Length": [ "208" ] } }, "Response": { @@ -16,34 +16,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/76f54965-70c9-4ebd-b983-ee078c1b3a6f?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/ab638a2c-616a-4164-bee6-c7f9d810208b?api-version=2017-12-01" ], "Retry-After": [ "60" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/76f54965-70c9-4ebd-b983-ee078c1b3a6f?api-version=2017-12-01" ], - "x-ms-request-id": [ "76f54965-70c9-4ebd-b983-ee078c1b3a6f" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/ab638a2c-616a-4164-bee6-c7f9d810208b?api-version=2017-12-01" ], + "x-ms-request-id": [ "ab638a2c-616a-4164-bee6-c7f9d810208b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1189" ], - "x-ms-correlation-request-id": [ "d97c14c9-8a5b-4d6a-a98b-bc6e46fdda9f" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T040515Z:d97c14c9-8a5b-4d6a-a98b-bc6e46fdda9f" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1185" ], + "x-ms-correlation-request-id": [ "caccfd0c-2290-4a77-accb-83fcbe0a7a8c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T112056Z:caccfd0c-2290-4a77-accb-83fcbe0a7a8c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:05:15 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:20:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "74" ], + "Content-Length": [ "73" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServer\",\"startTime\":\"2020-05-08T04:05:14.607Z\"}" + "Content": "{\"operation\":\"UpsertElasticServer\",\"startTime\":\"2020-09-25T11:20:55.44Z\"}" } }, - "New-AzPostgreSqlServer+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/76f54965-70c9-4ebd-b983-ee078c1b3a6f?api-version=2017-12-01+2": { + "New-AzPostgreSqlServer+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/ab638a2c-616a-4164-bee6-c7f9d810208b?api-version=2017-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/76f54965-70c9-4ebd-b983-ee078c1b3a6f?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/ab638a2c-616a-4164-bee6-c7f9d810208b?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "113", "114" ], - "x-ms-client-request-id": [ "93576de5-9bf5-4ecc-ab54-b06399fc96f7", "93576de5-9bf5-4ecc-ab54-b06399fc96f7" ], + "x-ms-unique-id": [ "125", "126" ], + "x-ms-client-request-id": [ "47e48406-49bc-4d10-96e5-bd39068d71a3", "47e48406-49bc-4d10-96e5-bd39068d71a3" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -59,31 +59,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "60" ], - "x-ms-request-id": [ "6633ea37-8eec-4d00-afcd-af6f94bd663f" ], + "x-ms-request-id": [ "b0dcb12b-285d-44ba-9389-0ac9d37517d1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11909" ], - "x-ms-correlation-request-id": [ "cf69501f-6cc6-404a-8ec6-11ad2c8da06f" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T040616Z:cf69501f-6cc6-404a-8ec6-11ad2c8da06f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11899" ], + "x-ms-correlation-request-id": [ "b98c18bf-def9-4a21-824d-ec2b9093a4d4" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T112157Z:b98c18bf-def9-4a21-824d-ec2b9093a4d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:06:15 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:21:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "108" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"76f54965-70c9-4ebd-b983-ee078c1b3a6f\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:05:14.607Z\"}" + "Content": "{\"name\":\"ab638a2c-616a-4164-bee6-c7f9d810208b\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:20:55.44Z\"}" } }, - "New-AzPostgreSqlServer+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/76f54965-70c9-4ebd-b983-ee078c1b3a6f?api-version=2017-12-01+3": { + "New-AzPostgreSqlServer+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/ab638a2c-616a-4164-bee6-c7f9d810208b?api-version=2017-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/76f54965-70c9-4ebd-b983-ee078c1b3a6f?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/ab638a2c-616a-4164-bee6-c7f9d810208b?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "113", "114", "115" ], - "x-ms-client-request-id": [ "93576de5-9bf5-4ecc-ab54-b06399fc96f7", "93576de5-9bf5-4ecc-ab54-b06399fc96f7", "93576de5-9bf5-4ecc-ab54-b06399fc96f7" ], + "x-ms-unique-id": [ "125", "126", "127" ], + "x-ms-client-request-id": [ "47e48406-49bc-4d10-96e5-bd39068d71a3", "47e48406-49bc-4d10-96e5-bd39068d71a3", "47e48406-49bc-4d10-96e5-bd39068d71a3" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -99,21 +99,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "60" ], - "x-ms-request-id": [ "0586d829-9c36-4c74-a53e-ef6355d43224" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11908" ], + "x-ms-request-id": [ "93b75245-bc53-4f28-806c-0dc90f79f41e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "d4abd84a-a482-48ad-9599-996aefb8c9a6" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T040716Z:d4abd84a-a482-48ad-9599-996aefb8c9a6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11898" ], + "x-ms-correlation-request-id": [ "25bcc3fc-83b5-4e57-b4b8-8b173455f8a8" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T112257Z:25bcc3fc-83b5-4e57-b4b8-8b173455f8a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:07:16 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:22:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "106" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"76f54965-70c9-4ebd-b983-ee078c1b3a6f\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-08T04:05:14.607Z\"}" + "Content": "{\"name\":\"ab638a2c-616a-4164-bee6-c7f9d810208b\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:20:55.44Z\"}" } }, "New-AzPostgreSqlServer+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100-2?api-version=2017-12-01+4": { @@ -122,8 +122,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100-2?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "113", "114", "115", "116" ], - "x-ms-client-request-id": [ "93576de5-9bf5-4ecc-ab54-b06399fc96f7", "93576de5-9bf5-4ecc-ab54-b06399fc96f7", "93576de5-9bf5-4ecc-ab54-b06399fc96f7", "93576de5-9bf5-4ecc-ab54-b06399fc96f7" ], + "x-ms-unique-id": [ "125", "126", "127", "128" ], + "x-ms-client-request-id": [ "47e48406-49bc-4d10-96e5-bd39068d71a3", "47e48406-49bc-4d10-96e5-bd39068d71a3", "47e48406-49bc-4d10-96e5-bd39068d71a3", "47e48406-49bc-4d10-96e5-bd39068d71a3" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -138,21 +138,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "3c0bba62-06a6-4d6e-be0f-7fc58fc308cb" ], + "x-ms-request-id": [ "d0ce97fe-41fa-4d55-867e-0596c94e0577" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11907" ], - "x-ms-correlation-request-id": [ "bfef6b22-9bde-4fcd-af4e-ded0f86e7c69" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T040718Z:bfef6b22-9bde-4fcd-af4e-ded0f86e7c69" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11897" ], + "x-ms-correlation-request-id": [ "f1dbf904-a3b8-47af-8bc2-9a12a5ac4d33" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T112257Z:f1dbf904-a3b8-47af-8bc2-9a12a5ac4d33" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:07:17 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:22:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "938" ], + "Content-Length": [ "937" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"pwsh\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100-2.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-05-08T04:15:14.887+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100-2\",\"name\":\"postgresql-test-100-2\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}" + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"pwsh\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100-2.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-09-25T11:30:55.74+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100-2\",\"name\":\"postgresql-test-100-2\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}" } }, "New-AzPostgreSqlServer+[NoContext]+CreateExpanded+$DELETE+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100-2?api-version=2017-12-01+5": { @@ -161,8 +161,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100-2?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "117" ], - "x-ms-client-request-id": [ "fd9d672f-dc0c-4337-88ae-1eaa6caf59f6" ], + "x-ms-unique-id": [ "129" ], + "x-ms-client-request-id": [ "7def20ea-dca3-495e-81cd-666602b48e76" ], "CommandName": [ "Remove-AzPostgreSqlServer" ], "FullCommandName": [ "Remove-AzPostgreSqlServer_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -177,34 +177,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/367efbfd-d41e-45d7-ae39-e172aa733fae?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/ee3ff3fd-1e48-4a6c-b4e7-22a60ef5958e?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/367efbfd-d41e-45d7-ae39-e172aa733fae?api-version=2017-12-01" ], - "x-ms-request-id": [ "367efbfd-d41e-45d7-ae39-e172aa733fae" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/ee3ff3fd-1e48-4a6c-b4e7-22a60ef5958e?api-version=2017-12-01" ], + "x-ms-request-id": [ "ee3ff3fd-1e48-4a6c-b4e7-22a60ef5958e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14990" ], - "x-ms-correlation-request-id": [ "9bddf33e-a830-429b-9e0e-8b76b036fa7a" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T040718Z:9bddf33e-a830-429b-9e0e-8b76b036fa7a" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14988" ], + "x-ms-correlation-request-id": [ "01de7dc8-2665-4489-8990-bb633e4f15b7" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T112258Z:01de7dc8-2665-4489-8990-bb633e4f15b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:07:18 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:22:57 GMT" ] }, "ContentHeaders": { "Content-Length": [ "72" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"DropElasticServer\",\"startTime\":\"2020-05-08T04:07:18.483Z\"}" + "Content": "{\"operation\":\"DropElasticServer\",\"startTime\":\"2020-09-25T11:22:58.293Z\"}" } }, - "New-AzPostgreSqlServer+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/367efbfd-d41e-45d7-ae39-e172aa733fae?api-version=2017-12-01+6": { + "New-AzPostgreSqlServer+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/ee3ff3fd-1e48-4a6c-b4e7-22a60ef5958e?api-version=2017-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/367efbfd-d41e-45d7-ae39-e172aa733fae?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/ee3ff3fd-1e48-4a6c-b4e7-22a60ef5958e?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "117", "118" ], - "x-ms-client-request-id": [ "fd9d672f-dc0c-4337-88ae-1eaa6caf59f6", "fd9d672f-dc0c-4337-88ae-1eaa6caf59f6" ], + "x-ms-unique-id": [ "129", "130" ], + "x-ms-client-request-id": [ "7def20ea-dca3-495e-81cd-666602b48e76", "7def20ea-dca3-495e-81cd-666602b48e76" ], "CommandName": [ "Remove-AzPostgreSqlServer", "Remove-AzPostgreSqlServer" ], "FullCommandName": [ "Remove-AzPostgreSqlServer_Delete", "Remove-AzPostgreSqlServer_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -220,31 +220,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "03bba2af-cb45-467f-a74d-ee3aefed1a7a" ], + "x-ms-request-id": [ "91c69386-73cf-4009-8d08-e72b7e0ebc33" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11906" ], - "x-ms-correlation-request-id": [ "8e67a368-ce40-4035-baa3-1e02933f0a16" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T040733Z:8e67a368-ce40-4035-baa3-1e02933f0a16" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11896" ], + "x-ms-correlation-request-id": [ "b755af7a-4879-4e07-8f13-d47abb3ea002" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T112313Z:b755af7a-4879-4e07-8f13-d47abb3ea002" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:07:33 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:23:13 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"367efbfd-d41e-45d7-ae39-e172aa733fae\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-08T04:07:18.483Z\"}" + "Content": "{\"name\":\"ee3ff3fd-1e48-4a6c-b4e7-22a60ef5958e\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:22:58.293Z\"}" } }, - "New-AzPostgreSqlServer+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/367efbfd-d41e-45d7-ae39-e172aa733fae?api-version=2017-12-01+7": { + "New-AzPostgreSqlServer+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/ee3ff3fd-1e48-4a6c-b4e7-22a60ef5958e?api-version=2017-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/367efbfd-d41e-45d7-ae39-e172aa733fae?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/ee3ff3fd-1e48-4a6c-b4e7-22a60ef5958e?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "117", "118", "119" ], - "x-ms-client-request-id": [ "fd9d672f-dc0c-4337-88ae-1eaa6caf59f6", "fd9d672f-dc0c-4337-88ae-1eaa6caf59f6", "fd9d672f-dc0c-4337-88ae-1eaa6caf59f6" ], + "x-ms-unique-id": [ "129", "130", "131" ], + "x-ms-client-request-id": [ "7def20ea-dca3-495e-81cd-666602b48e76", "7def20ea-dca3-495e-81cd-666602b48e76", "7def20ea-dca3-495e-81cd-666602b48e76" ], "CommandName": [ "Remove-AzPostgreSqlServer", "Remove-AzPostgreSqlServer", "Remove-AzPostgreSqlServer" ], "FullCommandName": [ "Remove-AzPostgreSqlServer_Delete", "Remove-AzPostgreSqlServer_Delete", "Remove-AzPostgreSqlServer_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -259,14 +259,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "0f5fae08-e9dd-4236-b38c-0c3ac1636041" ], + "x-ms-request-id": [ "2c2b728a-e880-4ddd-9d54-19f1d8a69c54" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11905" ], - "x-ms-correlation-request-id": [ "33460f20-c38b-4e9d-969e-9cfd0d5dcb71" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T040734Z:33460f20-c38b-4e9d-969e-9cfd0d5dcb71" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11895" ], + "x-ms-correlation-request-id": [ "d7556cc8-8cc3-4487-b1fa-088ffc547100" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T112314Z:d7556cc8-8cc3-4487-b1fa-088ffc547100" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:07:33 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:23:13 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/PostgreSql/test/New-AzPostgreSqlVirtualNetworkRule.Recording.json b/src/PostgreSql/test/New-AzPostgreSqlVirtualNetworkRule.Recording.json index 605b42052740..47b1914c1328 100644 --- a/src/PostgreSql/test/New-AzPostgreSqlVirtualNetworkRule.Recording.json +++ b/src/PostgreSql/test/New-AzPostgreSqlVirtualNetworkRule.Recording.json @@ -3,12 +3,12 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/virtualNetworkRules/postgresqlvnet?api-version=2017-12-01", - "Content": "{\n \"properties\": {\n \"virtualNetworkSubnetId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.Network/virtualNetworks/MySqlVNet/subnets/MysqlSubnet1\"\n }\n}", + "Content": "{\r\n \"properties\": {\r\n \"virtualNetworkSubnetId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.Network/virtualNetworks/MySqlVNet/subnets/MysqlSubnet1\"\r\n }\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "214" ] + "Content-Length": [ "218" ] } }, "Response": { @@ -16,34 +16,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/6ee3881d-4cd7-4316-8de4-9a70ea4f6519?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/901381a8-cbcb-4b44-b6bf-ecd21bd661c8?api-version=2017-12-01" ], "Retry-After": [ "30" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/6ee3881d-4cd7-4316-8de4-9a70ea4f6519?api-version=2017-12-01" ], - "x-ms-request-id": [ "6ee3881d-4cd7-4316-8de4-9a70ea4f6519" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/901381a8-cbcb-4b44-b6bf-ecd21bd661c8?api-version=2017-12-01" ], + "x-ms-request-id": [ "901381a8-cbcb-4b44-b6bf-ecd21bd661c8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1188" ], - "x-ms-correlation-request-id": [ "60187775-ffb2-40d9-a447-73ad0602a80f" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T040736Z:60187775-ffb2-40d9-a447-73ad0602a80f" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1184" ], + "x-ms-correlation-request-id": [ "703a2364-1734-4855-b270-8f61ae954854" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T112315Z:703a2364-1734-4855-b270-8f61ae954854" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:07:35 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:23:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "90" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServerVnetFirewallRule\",\"startTime\":\"2020-05-08T04:07:34.843Z\"}" + "Content": "{\"operation\":\"UpsertElasticServerVnetFirewallRule\",\"startTime\":\"2020-09-25T11:23:14.717Z\"}" } }, - "New-AzPostgreSqlVirtualNetworkRule+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/6ee3881d-4cd7-4316-8de4-9a70ea4f6519?api-version=2017-12-01+2": { + "New-AzPostgreSqlVirtualNetworkRule+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/901381a8-cbcb-4b44-b6bf-ecd21bd661c8?api-version=2017-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/6ee3881d-4cd7-4316-8de4-9a70ea4f6519?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/901381a8-cbcb-4b44-b6bf-ecd21bd661c8?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "120", "121" ], - "x-ms-client-request-id": [ "5d04aabe-b70e-406e-a764-22b62607473a", "5d04aabe-b70e-406e-a764-22b62607473a" ], + "x-ms-unique-id": [ "132", "133" ], + "x-ms-client-request-id": [ "163d40b7-54fd-42d0-8648-220047fef615", "163d40b7-54fd-42d0-8648-220047fef615" ], "CommandName": [ "New-AzPostgreSqlVirtualNetworkRule", "New-AzPostgreSqlVirtualNetworkRule" ], "FullCommandName": [ "New-AzPostgreSqlVirtualNetworkRule_CreateExpanded", "New-AzPostgreSqlVirtualNetworkRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -59,21 +59,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "9d5c96f5-1ce5-4de3-a670-ca6378b2a202" ], + "x-ms-request-id": [ "3f0c8110-e017-40a7-94aa-6f14b006fbe9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11904" ], - "x-ms-correlation-request-id": [ "036306fa-2d91-4d28-9622-558c8d9301d7" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T040806Z:036306fa-2d91-4d28-9622-558c8d9301d7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11894" ], + "x-ms-correlation-request-id": [ "c8efe333-d49a-408d-bcd3-d21d640a966e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T112346Z:c8efe333-d49a-408d-bcd3-d21d640a966e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:08:05 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:23:45 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"6ee3881d-4cd7-4316-8de4-9a70ea4f6519\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-08T04:07:34.843Z\"}" + "Content": "{\"name\":\"901381a8-cbcb-4b44-b6bf-ecd21bd661c8\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:23:14.717Z\"}" } }, "New-AzPostgreSqlVirtualNetworkRule+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/virtualNetworkRules/postgresqlvnet?api-version=2017-12-01+3": { @@ -82,8 +82,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/virtualNetworkRules/postgresqlvnet?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "120", "121", "122" ], - "x-ms-client-request-id": [ "5d04aabe-b70e-406e-a764-22b62607473a", "5d04aabe-b70e-406e-a764-22b62607473a", "5d04aabe-b70e-406e-a764-22b62607473a" ], + "x-ms-unique-id": [ "132", "133", "134" ], + "x-ms-client-request-id": [ "163d40b7-54fd-42d0-8648-220047fef615", "163d40b7-54fd-42d0-8648-220047fef615", "163d40b7-54fd-42d0-8648-220047fef615" ], "CommandName": [ "New-AzPostgreSqlVirtualNetworkRule", "New-AzPostgreSqlVirtualNetworkRule", "New-AzPostgreSqlVirtualNetworkRule" ], "FullCommandName": [ "New-AzPostgreSqlVirtualNetworkRule_CreateExpanded", "New-AzPostgreSqlVirtualNetworkRule_CreateExpanded", "New-AzPostgreSqlVirtualNetworkRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -98,14 +98,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "d29e5ef8-cfdc-440c-9421-7be275477a86" ], + "x-ms-request-id": [ "79447393-3ab9-4179-a64c-c276800dee55" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11903" ], - "x-ms-correlation-request-id": [ "995fefb8-ea1a-44b1-a960-b2d85a1895db" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T040806Z:995fefb8-ea1a-44b1-a960-b2d85a1895db" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11893" ], + "x-ms-correlation-request-id": [ "4508303b-6308-4e30-858d-98b8142a6ccb" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T112346Z:4508303b-6308-4e30-858d-98b8142a6ccb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:08:05 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:23:45 GMT" ] }, "ContentHeaders": { "Content-Length": [ "532" ], @@ -121,8 +121,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/virtualNetworkRules/postgresqlvnet?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "123" ], - "x-ms-client-request-id": [ "8b6355d9-5836-4857-897f-222b033332a3" ], + "x-ms-unique-id": [ "135" ], + "x-ms-client-request-id": [ "568c4293-3be0-4430-a543-d81e3ac6d8a7" ], "CommandName": [ "Remove-AzPostgreSqlVirtualNetworkRule" ], "FullCommandName": [ "Remove-AzPostgreSqlVirtualNetworkRule_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -137,34 +137,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/b27c1e77-fb79-483d-a8ce-a6d3453565d1?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/caf26192-34db-47cf-a3df-f3f5c4e5ee6f?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/b27c1e77-fb79-483d-a8ce-a6d3453565d1?api-version=2017-12-01" ], - "x-ms-request-id": [ "b27c1e77-fb79-483d-a8ce-a6d3453565d1" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/caf26192-34db-47cf-a3df-f3f5c4e5ee6f?api-version=2017-12-01" ], + "x-ms-request-id": [ "caf26192-34db-47cf-a3df-f3f5c4e5ee6f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14989" ], - "x-ms-correlation-request-id": [ "499a5798-0cbe-40ff-ab43-96c50973c97d" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T040808Z:499a5798-0cbe-40ff-ab43-96c50973c97d" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14987" ], + "x-ms-correlation-request-id": [ "db17b052-f640-4fb6-a0a6-819ca82fd3b7" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T112348Z:db17b052-f640-4fb6-a0a6-819ca82fd3b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:08:07 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:23:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "88" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"DropElasticServerVnetFirewallRule\",\"startTime\":\"2020-05-08T04:08:07.093Z\"}" + "Content": "{\"operation\":\"DropElasticServerVnetFirewallRule\",\"startTime\":\"2020-09-25T11:23:46.903Z\"}" } }, - "New-AzPostgreSqlVirtualNetworkRule+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/b27c1e77-fb79-483d-a8ce-a6d3453565d1?api-version=2017-12-01+5": { + "New-AzPostgreSqlVirtualNetworkRule+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/caf26192-34db-47cf-a3df-f3f5c4e5ee6f?api-version=2017-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/b27c1e77-fb79-483d-a8ce-a6d3453565d1?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/caf26192-34db-47cf-a3df-f3f5c4e5ee6f?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "123", "124" ], - "x-ms-client-request-id": [ "8b6355d9-5836-4857-897f-222b033332a3", "8b6355d9-5836-4857-897f-222b033332a3" ], + "x-ms-unique-id": [ "135", "136" ], + "x-ms-client-request-id": [ "568c4293-3be0-4430-a543-d81e3ac6d8a7", "568c4293-3be0-4430-a543-d81e3ac6d8a7" ], "CommandName": [ "Remove-AzPostgreSqlVirtualNetworkRule", "Remove-AzPostgreSqlVirtualNetworkRule" ], "FullCommandName": [ "Remove-AzPostgreSqlVirtualNetworkRule_Delete", "Remove-AzPostgreSqlVirtualNetworkRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -180,31 +180,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "068628c7-d416-4cc9-b8f2-df8e1a3510c0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11902" ], + "x-ms-request-id": [ "b353b914-2feb-4343-92c0-ecf394e0e0c1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "6cb9b8ee-02d2-4deb-89fb-2facbfbece74" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T040823Z:6cb9b8ee-02d2-4deb-89fb-2facbfbece74" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11892" ], + "x-ms-correlation-request-id": [ "c61dbbe9-6ef6-42c4-a012-1d92ca1aab18" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T112403Z:c61dbbe9-6ef6-42c4-a012-1d92ca1aab18" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:08:23 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:24:03 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"b27c1e77-fb79-483d-a8ce-a6d3453565d1\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-08T04:08:07.093Z\"}" + "Content": "{\"name\":\"caf26192-34db-47cf-a3df-f3f5c4e5ee6f\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:23:46.903Z\"}" } }, - "New-AzPostgreSqlVirtualNetworkRule+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/b27c1e77-fb79-483d-a8ce-a6d3453565d1?api-version=2017-12-01+6": { + "New-AzPostgreSqlVirtualNetworkRule+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/caf26192-34db-47cf-a3df-f3f5c4e5ee6f?api-version=2017-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/b27c1e77-fb79-483d-a8ce-a6d3453565d1?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/caf26192-34db-47cf-a3df-f3f5c4e5ee6f?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "123", "124", "125" ], - "x-ms-client-request-id": [ "8b6355d9-5836-4857-897f-222b033332a3", "8b6355d9-5836-4857-897f-222b033332a3", "8b6355d9-5836-4857-897f-222b033332a3" ], + "x-ms-unique-id": [ "135", "136", "137" ], + "x-ms-client-request-id": [ "568c4293-3be0-4430-a543-d81e3ac6d8a7", "568c4293-3be0-4430-a543-d81e3ac6d8a7", "568c4293-3be0-4430-a543-d81e3ac6d8a7" ], "CommandName": [ "Remove-AzPostgreSqlVirtualNetworkRule", "Remove-AzPostgreSqlVirtualNetworkRule", "Remove-AzPostgreSqlVirtualNetworkRule" ], "FullCommandName": [ "Remove-AzPostgreSqlVirtualNetworkRule_Delete", "Remove-AzPostgreSqlVirtualNetworkRule_Delete", "Remove-AzPostgreSqlVirtualNetworkRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -219,14 +219,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "9deff7c6-4c7e-4687-b9b4-41d4cf6cdc76" ], + "x-ms-request-id": [ "eacd6d36-ea00-4f47-9cfa-cbac8d891f9d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11901" ], - "x-ms-correlation-request-id": [ "768f9c4d-6c8c-4261-b70b-014fdec32152" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T040824Z:768f9c4d-6c8c-4261-b70b-014fdec32152" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11891" ], + "x-ms-correlation-request-id": [ "164ae74c-bd63-4e79-8ff1-8852ff05794c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T112403Z:164ae74c-bd63-4e79-8ff1-8852ff05794c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:08:24 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:24:03 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/PostgreSql/test/Remove-AzPostgreSqlFirewallRule.Recording.json b/src/PostgreSql/test/Remove-AzPostgreSqlFirewallRule.Recording.json index 9f984fc66cb1..2c7ec80c858a 100644 --- a/src/PostgreSql/test/Remove-AzPostgreSqlFirewallRule.Recording.json +++ b/src/PostgreSql/test/Remove-AzPostgreSqlFirewallRule.Recording.json @@ -3,12 +3,12 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01?api-version=2017-12-01", - "Content": "{\n \"properties\": {\n \"endIpAddress\": \"0.0.0.1\",\n \"startIpAddress\": \"0.0.0.0\"\n }\n}", + "Content": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.0\",\r\n \"endIpAddress\": \"0.0.0.1\"\r\n }\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "88" ] + "Content-Length": [ "93" ] } }, "Response": { @@ -16,35 +16,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/1b15d461-1a4b-4f3b-90c2-a25288cb8f01?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/c47d84ab-9882-4753-b3b8-c386b0fed0a0?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/1b15d461-1a4b-4f3b-90c2-a25288cb8f01?api-version=2017-12-01" ], - "x-ms-request-id": [ "1b15d461-1a4b-4f3b-90c2-a25288cb8f01" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/c47d84ab-9882-4753-b3b8-c386b0fed0a0?api-version=2017-12-01" ], + "x-ms-request-id": [ "c47d84ab-9882-4753-b3b8-c386b0fed0a0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1187" ], - "x-ms-correlation-request-id": [ "7380efc3-8435-4e13-86d9-c9bab92328af" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T040826Z:7380efc3-8435-4e13-86d9-c9bab92328af" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1183" ], + "x-ms-correlation-request-id": [ "d70d4eb6-a6b9-47c4-b776-45eb8d4b2cd7" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T112405Z:d70d4eb6-a6b9-47c4-b776-45eb8d4b2cd7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:08:26 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:24:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "87" ], + "Content-Length": [ "86" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServerFirewallRules\",\"startTime\":\"2020-05-08T04:08:25.157Z\"}" + "Content": "{\"operation\":\"UpsertElasticServerFirewallRules\",\"startTime\":\"2020-09-25T11:24:04.39Z\"}" } }, - "Remove-AzPostgreSqlFirewallRule+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/1b15d461-1a4b-4f3b-90c2-a25288cb8f01?api-version=2017-12-01+2": { + "Remove-AzPostgreSqlFirewallRule+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/c47d84ab-9882-4753-b3b8-c386b0fed0a0?api-version=2017-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/1b15d461-1a4b-4f3b-90c2-a25288cb8f01?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/c47d84ab-9882-4753-b3b8-c386b0fed0a0?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "126", "127" ], - "x-ms-client-request-id": [ "8e15d4db-d324-476e-8c99-eb972c4b0cd1", "8e15d4db-d324-476e-8c99-eb972c4b0cd1" ], - "CommandName": [ "New-AzPostgreSqlFirewallRule", "New-AzPostgreSqlFirewallRule" ], + "x-ms-unique-id": [ "138", "139" ], + "x-ms-client-request-id": [ "51739e7d-2ea6-4a73-a508-10a24ac69b60", "51739e7d-2ea6-4a73-a508-10a24ac69b60" ], + "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlFirewallRule", "Az.PostgreSql.internal\\New-AzPostgreSqlFirewallRule" ], "FullCommandName": [ "New-AzPostgreSqlFirewallRule_CreateExpanded", "New-AzPostgreSqlFirewallRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], @@ -59,21 +59,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "09330cf7-4c7e-4dcb-b461-791526d757c0" ], + "x-ms-request-id": [ "cca4b35d-270e-4fd0-8244-4e4da81f0578" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11900" ], - "x-ms-correlation-request-id": [ "980602cc-609b-4fce-94ba-889db323ca03" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T040841Z:980602cc-609b-4fce-94ba-889db323ca03" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11890" ], + "x-ms-correlation-request-id": [ "5ce0e877-f8c6-4517-835e-0e5224662c8e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T112421Z:5ce0e877-f8c6-4517-835e-0e5224662c8e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:08:41 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:24:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "106" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"1b15d461-1a4b-4f3b-90c2-a25288cb8f01\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-08T04:08:25.157Z\"}" + "Content": "{\"name\":\"c47d84ab-9882-4753-b3b8-c386b0fed0a0\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:24:04.39Z\"}" } }, "Remove-AzPostgreSqlFirewallRule+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01?api-version=2017-12-01+3": { @@ -82,9 +82,9 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "126", "127", "128" ], - "x-ms-client-request-id": [ "8e15d4db-d324-476e-8c99-eb972c4b0cd1", "8e15d4db-d324-476e-8c99-eb972c4b0cd1", "8e15d4db-d324-476e-8c99-eb972c4b0cd1" ], - "CommandName": [ "New-AzPostgreSqlFirewallRule", "New-AzPostgreSqlFirewallRule", "New-AzPostgreSqlFirewallRule" ], + "x-ms-unique-id": [ "138", "139", "140" ], + "x-ms-client-request-id": [ "51739e7d-2ea6-4a73-a508-10a24ac69b60", "51739e7d-2ea6-4a73-a508-10a24ac69b60", "51739e7d-2ea6-4a73-a508-10a24ac69b60" ], + "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlFirewallRule", "Az.PostgreSql.internal\\New-AzPostgreSqlFirewallRule", "Az.PostgreSql.internal\\New-AzPostgreSqlFirewallRule" ], "FullCommandName": [ "New-AzPostgreSqlFirewallRule_CreateExpanded", "New-AzPostgreSqlFirewallRule_CreateExpanded", "New-AzPostgreSqlFirewallRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], @@ -98,14 +98,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "7d38f324-933a-44ba-96b0-84dc4d36c83f" ], + "x-ms-request-id": [ "34919c15-97ae-400b-a61e-4023f116906c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11899" ], - "x-ms-correlation-request-id": [ "595589c3-5c86-4efe-b31c-5799ec128cde" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T040842Z:595589c3-5c86-4efe-b31c-5799ec128cde" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11889" ], + "x-ms-correlation-request-id": [ "bf6678b1-72ce-4d3a-ad89-795beb181372" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T112421Z:bf6678b1-72ce-4d3a-ad89-795beb181372" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:08:41 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:24:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "335" ], @@ -121,8 +121,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "129" ], - "x-ms-client-request-id": [ "9d3a7fe7-a7e2-41ee-9bf8-dc5c3c615335" ], + "x-ms-unique-id": [ "141" ], + "x-ms-client-request-id": [ "8541d288-ad99-4a4f-9fc6-7e45abf11dc5" ], "CommandName": [ "Remove-AzPostgreSqlFirewallRule" ], "FullCommandName": [ "Remove-AzPostgreSqlFirewallRule_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -137,34 +137,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/bc8543d5-30db-48f0-b102-06ebb0114a2b?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/6ca94acd-2cb9-4c29-96b2-e8c73b116c2c?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/bc8543d5-30db-48f0-b102-06ebb0114a2b?api-version=2017-12-01" ], - "x-ms-request-id": [ "bc8543d5-30db-48f0-b102-06ebb0114a2b" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/6ca94acd-2cb9-4c29-96b2-e8c73b116c2c?api-version=2017-12-01" ], + "x-ms-request-id": [ "6ca94acd-2cb9-4c29-96b2-e8c73b116c2c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14988" ], - "x-ms-correlation-request-id": [ "c3a6d8ab-0a43-4d3a-91fd-73d1d431aff7" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T040843Z:c3a6d8ab-0a43-4d3a-91fd-73d1d431aff7" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14986" ], + "x-ms-correlation-request-id": [ "a03cb993-2424-468f-9fad-d143f4573e81" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T112422Z:a03cb993-2424-468f-9fad-d143f4573e81" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:08:43 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:24:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "84" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"DropElasticServerFirewallRule\",\"startTime\":\"2020-05-08T04:08:42.437Z\"}" + "Content": "{\"operation\":\"DropElasticServerFirewallRule\",\"startTime\":\"2020-09-25T11:24:21.733Z\"}" } }, - "Remove-AzPostgreSqlFirewallRule+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/bc8543d5-30db-48f0-b102-06ebb0114a2b?api-version=2017-12-01+5": { + "Remove-AzPostgreSqlFirewallRule+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/6ca94acd-2cb9-4c29-96b2-e8c73b116c2c?api-version=2017-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/bc8543d5-30db-48f0-b102-06ebb0114a2b?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/6ca94acd-2cb9-4c29-96b2-e8c73b116c2c?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "129", "130" ], - "x-ms-client-request-id": [ "9d3a7fe7-a7e2-41ee-9bf8-dc5c3c615335", "9d3a7fe7-a7e2-41ee-9bf8-dc5c3c615335" ], + "x-ms-unique-id": [ "141", "142" ], + "x-ms-client-request-id": [ "8541d288-ad99-4a4f-9fc6-7e45abf11dc5", "8541d288-ad99-4a4f-9fc6-7e45abf11dc5" ], "CommandName": [ "Remove-AzPostgreSqlFirewallRule", "Remove-AzPostgreSqlFirewallRule" ], "FullCommandName": [ "Remove-AzPostgreSqlFirewallRule_Delete", "Remove-AzPostgreSqlFirewallRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -180,31 +180,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "3ffb0b07-0aa8-456c-a20d-9a5e0824d502" ], + "x-ms-request-id": [ "65d3d48c-fe40-4a3b-b74d-0d36b8a0898a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11898" ], - "x-ms-correlation-request-id": [ "de106012-8879-484b-a574-9e89137c80d8" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T040858Z:de106012-8879-484b-a574-9e89137c80d8" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11888" ], + "x-ms-correlation-request-id": [ "391d6064-be6e-47fe-b358-e8d37a3d346e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T112438Z:391d6064-be6e-47fe-b358-e8d37a3d346e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:08:58 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:24:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"bc8543d5-30db-48f0-b102-06ebb0114a2b\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-08T04:08:42.437Z\"}" + "Content": "{\"name\":\"6ca94acd-2cb9-4c29-96b2-e8c73b116c2c\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:24:21.733Z\"}" } }, - "Remove-AzPostgreSqlFirewallRule+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/bc8543d5-30db-48f0-b102-06ebb0114a2b?api-version=2017-12-01+6": { + "Remove-AzPostgreSqlFirewallRule+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/6ca94acd-2cb9-4c29-96b2-e8c73b116c2c?api-version=2017-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/bc8543d5-30db-48f0-b102-06ebb0114a2b?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/6ca94acd-2cb9-4c29-96b2-e8c73b116c2c?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "129", "130", "131" ], - "x-ms-client-request-id": [ "9d3a7fe7-a7e2-41ee-9bf8-dc5c3c615335", "9d3a7fe7-a7e2-41ee-9bf8-dc5c3c615335", "9d3a7fe7-a7e2-41ee-9bf8-dc5c3c615335" ], + "x-ms-unique-id": [ "141", "142", "143" ], + "x-ms-client-request-id": [ "8541d288-ad99-4a4f-9fc6-7e45abf11dc5", "8541d288-ad99-4a4f-9fc6-7e45abf11dc5", "8541d288-ad99-4a4f-9fc6-7e45abf11dc5" ], "CommandName": [ "Remove-AzPostgreSqlFirewallRule", "Remove-AzPostgreSqlFirewallRule", "Remove-AzPostgreSqlFirewallRule" ], "FullCommandName": [ "Remove-AzPostgreSqlFirewallRule_Delete", "Remove-AzPostgreSqlFirewallRule_Delete", "Remove-AzPostgreSqlFirewallRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -219,14 +219,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "c41f75a3-d6f9-40c3-8038-05950b8300ad" ], + "x-ms-request-id": [ "3d5c1264-50ff-4b0d-882c-8fb4aa660287" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11897" ], - "x-ms-correlation-request-id": [ "507058d2-3283-406b-8b61-17515d15cbfb" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T040859Z:507058d2-3283-406b-8b61-17515d15cbfb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11887" ], + "x-ms-correlation-request-id": [ "17d64760-bae5-44d2-bb6c-bec8b93cb567" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T112438Z:17d64760-bae5-44d2-bb6c-bec8b93cb567" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:08:58 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:24:38 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -239,12 +239,12 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01?api-version=2017-12-01", - "Content": "{\n \"properties\": {\n \"endIpAddress\": \"0.0.0.1\",\n \"startIpAddress\": \"0.0.0.0\"\n }\n}", + "Content": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.0\",\r\n \"endIpAddress\": \"0.0.0.1\"\r\n }\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "88" ] + "Content-Length": [ "93" ] } }, "Response": { @@ -252,35 +252,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/31925634-d4ce-4515-912b-b2837f50da16?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/8b5ea346-fa29-41f1-a375-396573b77ce9?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/31925634-d4ce-4515-912b-b2837f50da16?api-version=2017-12-01" ], - "x-ms-request-id": [ "31925634-d4ce-4515-912b-b2837f50da16" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/8b5ea346-fa29-41f1-a375-396573b77ce9?api-version=2017-12-01" ], + "x-ms-request-id": [ "8b5ea346-fa29-41f1-a375-396573b77ce9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1186" ], - "x-ms-correlation-request-id": [ "a6d2808a-1c5b-4fec-aeee-0ad5aedb4749" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T040900Z:a6d2808a-1c5b-4fec-aeee-0ad5aedb4749" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1182" ], + "x-ms-correlation-request-id": [ "c09eea91-6b38-4463-9908-fb67c9352688" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T112440Z:c09eea91-6b38-4463-9908-fb67c9352688" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:09:00 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:24:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "86" ], + "Content-Length": [ "87" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServerFirewallRules\",\"startTime\":\"2020-05-08T04:08:59.61Z\"}" + "Content": "{\"operation\":\"UpsertElasticServerFirewallRules\",\"startTime\":\"2020-09-25T11:24:38.983Z\"}" } }, - "Remove-AzPostgreSqlFirewallRule+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/31925634-d4ce-4515-912b-b2837f50da16?api-version=2017-12-01+2": { + "Remove-AzPostgreSqlFirewallRule+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/8b5ea346-fa29-41f1-a375-396573b77ce9?api-version=2017-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/31925634-d4ce-4515-912b-b2837f50da16?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/8b5ea346-fa29-41f1-a375-396573b77ce9?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "132", "133" ], - "x-ms-client-request-id": [ "faab0846-bf18-4142-b81f-bff63794ed52", "faab0846-bf18-4142-b81f-bff63794ed52" ], - "CommandName": [ "New-AzPostgreSqlFirewallRule", "New-AzPostgreSqlFirewallRule" ], + "x-ms-unique-id": [ "144", "145" ], + "x-ms-client-request-id": [ "970015f7-7a80-4cc5-8fd1-d27126868dd7", "970015f7-7a80-4cc5-8fd1-d27126868dd7" ], + "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlFirewallRule", "Az.PostgreSql.internal\\New-AzPostgreSqlFirewallRule" ], "FullCommandName": [ "New-AzPostgreSqlFirewallRule_CreateExpanded", "New-AzPostgreSqlFirewallRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], @@ -295,21 +295,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "9dd915a2-5fed-4b4c-b966-84b79d391b25" ], + "x-ms-request-id": [ "29777054-98f6-4622-93ac-675a8ec574d7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11896" ], - "x-ms-correlation-request-id": [ "9bb41c94-7950-4203-8faf-59c7993d7bb0" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T040916Z:9bb41c94-7950-4203-8faf-59c7993d7bb0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11886" ], + "x-ms-correlation-request-id": [ "47a8811e-fd2e-4cf1-b81c-c4ad5dd4a400" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T112455Z:47a8811e-fd2e-4cf1-b81c-c4ad5dd4a400" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:09:15 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:24:55 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "106" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"31925634-d4ce-4515-912b-b2837f50da16\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-08T04:08:59.61Z\"}" + "Content": "{\"name\":\"8b5ea346-fa29-41f1-a375-396573b77ce9\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:24:38.983Z\"}" } }, "Remove-AzPostgreSqlFirewallRule+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01?api-version=2017-12-01+3": { @@ -318,9 +318,9 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "132", "133", "134" ], - "x-ms-client-request-id": [ "faab0846-bf18-4142-b81f-bff63794ed52", "faab0846-bf18-4142-b81f-bff63794ed52", "faab0846-bf18-4142-b81f-bff63794ed52" ], - "CommandName": [ "New-AzPostgreSqlFirewallRule", "New-AzPostgreSqlFirewallRule", "New-AzPostgreSqlFirewallRule" ], + "x-ms-unique-id": [ "144", "145", "146" ], + "x-ms-client-request-id": [ "970015f7-7a80-4cc5-8fd1-d27126868dd7", "970015f7-7a80-4cc5-8fd1-d27126868dd7", "970015f7-7a80-4cc5-8fd1-d27126868dd7" ], + "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlFirewallRule", "Az.PostgreSql.internal\\New-AzPostgreSqlFirewallRule", "Az.PostgreSql.internal\\New-AzPostgreSqlFirewallRule" ], "FullCommandName": [ "New-AzPostgreSqlFirewallRule_CreateExpanded", "New-AzPostgreSqlFirewallRule_CreateExpanded", "New-AzPostgreSqlFirewallRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], @@ -334,14 +334,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "1b067692-b148-4539-9e2d-1615add3ebf6" ], + "x-ms-request-id": [ "edb7860a-54b9-428d-bf08-a0d584b9aec5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11895" ], - "x-ms-correlation-request-id": [ "f2f50a3d-aad2-4458-bbc7-a86eddec1068" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T040916Z:f2f50a3d-aad2-4458-bbc7-a86eddec1068" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11885" ], + "x-ms-correlation-request-id": [ "e33cd642-8a32-44e3-b856-f4bf3074cade" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T112456Z:e33cd642-8a32-44e3-b856-f4bf3074cade" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:09:15 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:24:55 GMT" ] }, "ContentHeaders": { "Content-Length": [ "335" ], @@ -357,8 +357,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "135" ], - "x-ms-client-request-id": [ "ce47b651-9857-44e0-8283-3bbe1041f15d" ], + "x-ms-unique-id": [ "147" ], + "x-ms-client-request-id": [ "afd9c457-8a93-4c22-bc04-df1f400e2b05" ], "CommandName": [ "Remove-AzPostgreSqlFirewallRule" ], "FullCommandName": [ "Remove-AzPostgreSqlFirewallRule_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -373,34 +373,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/a0cfbdd3-7f9f-4e3e-b919-34621a986553?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/8536a5ab-2699-49a4-8d16-34efd10c2b2a?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/a0cfbdd3-7f9f-4e3e-b919-34621a986553?api-version=2017-12-01" ], - "x-ms-request-id": [ "a0cfbdd3-7f9f-4e3e-b919-34621a986553" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/8536a5ab-2699-49a4-8d16-34efd10c2b2a?api-version=2017-12-01" ], + "x-ms-request-id": [ "8536a5ab-2699-49a4-8d16-34efd10c2b2a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14987" ], - "x-ms-correlation-request-id": [ "9549e236-668a-4f4e-99a4-773fb8de300c" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T040918Z:9549e236-668a-4f4e-99a4-773fb8de300c" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14985" ], + "x-ms-correlation-request-id": [ "aa57df14-4980-4d4c-8396-cea7cee6c8b6" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T112457Z:aa57df14-4980-4d4c-8396-cea7cee6c8b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:09:17 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:24:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "83" ], + "Content-Length": [ "84" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"DropElasticServerFirewallRule\",\"startTime\":\"2020-05-08T04:09:16.92Z\"}" + "Content": "{\"operation\":\"DropElasticServerFirewallRule\",\"startTime\":\"2020-09-25T11:24:56.327Z\"}" } }, - "Remove-AzPostgreSqlFirewallRule+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/a0cfbdd3-7f9f-4e3e-b919-34621a986553?api-version=2017-12-01+5": { + "Remove-AzPostgreSqlFirewallRule+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/8536a5ab-2699-49a4-8d16-34efd10c2b2a?api-version=2017-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/a0cfbdd3-7f9f-4e3e-b919-34621a986553?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/8536a5ab-2699-49a4-8d16-34efd10c2b2a?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "135", "136" ], - "x-ms-client-request-id": [ "ce47b651-9857-44e0-8283-3bbe1041f15d", "ce47b651-9857-44e0-8283-3bbe1041f15d" ], + "x-ms-unique-id": [ "147", "148" ], + "x-ms-client-request-id": [ "afd9c457-8a93-4c22-bc04-df1f400e2b05", "afd9c457-8a93-4c22-bc04-df1f400e2b05" ], "CommandName": [ "Remove-AzPostgreSqlFirewallRule", "Remove-AzPostgreSqlFirewallRule" ], "FullCommandName": [ "Remove-AzPostgreSqlFirewallRule_DeleteViaIdentity", "Remove-AzPostgreSqlFirewallRule_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -416,31 +416,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "4864aa5a-a7eb-49fb-91be-6812ce303e07" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11894" ], + "x-ms-request-id": [ "124e499d-9776-4d22-9dfc-2dbf7dfccb95" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "f3857421-af52-495b-a742-b7feaf8fc21e" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T040933Z:f3857421-af52-495b-a742-b7feaf8fc21e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11884" ], + "x-ms-correlation-request-id": [ "814409db-031c-4de4-b796-361a93c39311" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T112512Z:814409db-031c-4de4-b796-361a93c39311" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:09:32 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:25:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "106" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"a0cfbdd3-7f9f-4e3e-b919-34621a986553\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-08T04:09:16.92Z\"}" + "Content": "{\"name\":\"8536a5ab-2699-49a4-8d16-34efd10c2b2a\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:24:56.327Z\"}" } }, - "Remove-AzPostgreSqlFirewallRule+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/a0cfbdd3-7f9f-4e3e-b919-34621a986553?api-version=2017-12-01+6": { + "Remove-AzPostgreSqlFirewallRule+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/8536a5ab-2699-49a4-8d16-34efd10c2b2a?api-version=2017-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/a0cfbdd3-7f9f-4e3e-b919-34621a986553?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/8536a5ab-2699-49a4-8d16-34efd10c2b2a?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "135", "136", "137" ], - "x-ms-client-request-id": [ "ce47b651-9857-44e0-8283-3bbe1041f15d", "ce47b651-9857-44e0-8283-3bbe1041f15d", "ce47b651-9857-44e0-8283-3bbe1041f15d" ], + "x-ms-unique-id": [ "147", "148", "149" ], + "x-ms-client-request-id": [ "afd9c457-8a93-4c22-bc04-df1f400e2b05", "afd9c457-8a93-4c22-bc04-df1f400e2b05", "afd9c457-8a93-4c22-bc04-df1f400e2b05" ], "CommandName": [ "Remove-AzPostgreSqlFirewallRule", "Remove-AzPostgreSqlFirewallRule", "Remove-AzPostgreSqlFirewallRule" ], "FullCommandName": [ "Remove-AzPostgreSqlFirewallRule_DeleteViaIdentity", "Remove-AzPostgreSqlFirewallRule_DeleteViaIdentity", "Remove-AzPostgreSqlFirewallRule_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -455,14 +455,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "3ea40301-83a2-4273-8585-d472a7e93fe5" ], + "x-ms-request-id": [ "6f4b38cd-3ab3-45ef-ac1f-5ce091ebfce2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11893" ], - "x-ms-correlation-request-id": [ "f4825e22-39d6-4542-9355-a020e4514ea9" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T040934Z:f4825e22-39d6-4542-9355-a020e4514ea9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11883" ], + "x-ms-correlation-request-id": [ "89575065-7d7d-4d4f-8032-b4730f4c6d36" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T112513Z:89575065-7d7d-4d4f-8032-b4730f4c6d36" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:09:34 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:25:12 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/PostgreSql/test/Remove-AzPostgreSqlServer.Recording.json b/src/PostgreSql/test/Remove-AzPostgreSqlServer.Recording.json index a1bd528ae6a2..9888ce724b54 100644 --- a/src/PostgreSql/test/Remove-AzPostgreSqlServer.Recording.json +++ b/src/PostgreSql/test/Remove-AzPostgreSqlServer.Recording.json @@ -3,12 +3,12 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100-2?api-version=2017-12-01", - "Content": "{\n \"properties\": {\n \"createMode\": \"Default\",\n \"administratorLogin\": \"pwsh\",\n \"administratorLoginPassword\": \"Pa88word!\"\n },\n \"sku\": {\n \"name\": \"GP_Gen5_4\"\n },\n \"location\": \"eastus\"\n}", + "Content": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5_4\"\r\n },\r\n \"properties\": {\r\n \"createMode\": \"Default\",\r\n \"administratorLogin\": \"pwsh\",\r\n \"administratorLoginPassword\": \"Pa88word!\"\r\n },\r\n \"location\": \"eastus\"\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "198" ] + "Content-Length": [ "208" ] } }, "Response": { @@ -16,34 +16,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/150f52de-2164-4731-8c5a-d558dccc9141?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/aa2e4c2e-8d5c-444d-bf04-c321ea4d76fb?api-version=2017-12-01" ], "Retry-After": [ "60" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/150f52de-2164-4731-8c5a-d558dccc9141?api-version=2017-12-01" ], - "x-ms-request-id": [ "150f52de-2164-4731-8c5a-d558dccc9141" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/aa2e4c2e-8d5c-444d-bf04-c321ea4d76fb?api-version=2017-12-01" ], + "x-ms-request-id": [ "aa2e4c2e-8d5c-444d-bf04-c321ea4d76fb" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1185" ], - "x-ms-correlation-request-id": [ "6e7b945e-939a-4e6e-b9cf-1ebef748c725" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T040941Z:6e7b945e-939a-4e6e-b9cf-1ebef748c725" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1181" ], + "x-ms-correlation-request-id": [ "6a0f4edd-31b9-40c7-81e5-0ad853010a31" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T112519Z:6a0f4edd-31b9-40c7-81e5-0ad853010a31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:09:41 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:25:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "73" ], + "Content-Length": [ "74" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServer\",\"startTime\":\"2020-05-08T04:09:40.06Z\"}" + "Content": "{\"operation\":\"UpsertElasticServer\",\"startTime\":\"2020-09-25T11:25:18.407Z\"}" } }, - "Remove-AzPostgreSqlServer+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/150f52de-2164-4731-8c5a-d558dccc9141?api-version=2017-12-01+2": { + "Remove-AzPostgreSqlServer+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/aa2e4c2e-8d5c-444d-bf04-c321ea4d76fb?api-version=2017-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/150f52de-2164-4731-8c5a-d558dccc9141?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/aa2e4c2e-8d5c-444d-bf04-c321ea4d76fb?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "138", "139" ], - "x-ms-client-request-id": [ "f2ae11af-f987-48bf-bcd2-d6f4716928fa", "f2ae11af-f987-48bf-bcd2-d6f4716928fa" ], + "x-ms-unique-id": [ "150", "151" ], + "x-ms-client-request-id": [ "5ab14781-4a8b-4cbe-85dc-007729becce1", "5ab14781-4a8b-4cbe-85dc-007729becce1" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -59,31 +59,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "60" ], - "x-ms-request-id": [ "aadd3436-0ce3-4b1a-8518-3214efaa21a0" ], + "x-ms-request-id": [ "fa7f5145-a405-4bd2-90cf-6a03e1153586" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11892" ], - "x-ms-correlation-request-id": [ "3e5864ed-4589-4f25-a64e-f19693967de6" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T041042Z:3e5864ed-4589-4f25-a64e-f19693967de6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11882" ], + "x-ms-correlation-request-id": [ "cef86a7b-dda7-4389-9b81-f722d6b0cbf3" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T112620Z:cef86a7b-dda7-4389-9b81-f722d6b0cbf3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:10:41 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:26:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"150f52de-2164-4731-8c5a-d558dccc9141\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:09:40.06Z\"}" + "Content": "{\"name\":\"aa2e4c2e-8d5c-444d-bf04-c321ea4d76fb\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:25:18.407Z\"}" } }, - "Remove-AzPostgreSqlServer+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/150f52de-2164-4731-8c5a-d558dccc9141?api-version=2017-12-01+3": { + "Remove-AzPostgreSqlServer+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/aa2e4c2e-8d5c-444d-bf04-c321ea4d76fb?api-version=2017-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/150f52de-2164-4731-8c5a-d558dccc9141?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/aa2e4c2e-8d5c-444d-bf04-c321ea4d76fb?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "138", "139", "140" ], - "x-ms-client-request-id": [ "f2ae11af-f987-48bf-bcd2-d6f4716928fa", "f2ae11af-f987-48bf-bcd2-d6f4716928fa", "f2ae11af-f987-48bf-bcd2-d6f4716928fa" ], + "x-ms-unique-id": [ "150", "151", "152" ], + "x-ms-client-request-id": [ "5ab14781-4a8b-4cbe-85dc-007729becce1", "5ab14781-4a8b-4cbe-85dc-007729becce1", "5ab14781-4a8b-4cbe-85dc-007729becce1" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -99,21 +99,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "60" ], - "x-ms-request-id": [ "e9be3af1-a212-4e06-b490-de77253ebdf0" ], + "x-ms-request-id": [ "28797ac6-2fd8-4b16-ae9e-a22d2cfda7aa" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11891" ], - "x-ms-correlation-request-id": [ "e6fc6b30-1cbf-49ce-a75a-1add5d89be44" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T041143Z:e6fc6b30-1cbf-49ce-a75a-1add5d89be44" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11881" ], + "x-ms-correlation-request-id": [ "fd326b00-e679-48e1-9949-dda75c82cfc6" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T112720Z:fd326b00-e679-48e1-9949-dda75c82cfc6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:11:43 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:27:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "106" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"150f52de-2164-4731-8c5a-d558dccc9141\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-08T04:09:40.06Z\"}" + "Content": "{\"name\":\"aa2e4c2e-8d5c-444d-bf04-c321ea4d76fb\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:25:18.407Z\"}" } }, "Remove-AzPostgreSqlServer+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100-2?api-version=2017-12-01+4": { @@ -122,8 +122,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100-2?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "138", "139", "140", "141" ], - "x-ms-client-request-id": [ "f2ae11af-f987-48bf-bcd2-d6f4716928fa", "f2ae11af-f987-48bf-bcd2-d6f4716928fa", "f2ae11af-f987-48bf-bcd2-d6f4716928fa", "f2ae11af-f987-48bf-bcd2-d6f4716928fa" ], + "x-ms-unique-id": [ "150", "151", "152", "153" ], + "x-ms-client-request-id": [ "5ab14781-4a8b-4cbe-85dc-007729becce1", "5ab14781-4a8b-4cbe-85dc-007729becce1", "5ab14781-4a8b-4cbe-85dc-007729becce1", "5ab14781-4a8b-4cbe-85dc-007729becce1" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -138,21 +138,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "fbe48477-bf21-4669-9d9f-a2858a8b38ea" ], + "x-ms-request-id": [ "f08ff2eb-ea92-4f14-ba46-229f2c220187" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11890" ], - "x-ms-correlation-request-id": [ "a9ecab21-39cd-4756-861f-0948033ffd19" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T041143Z:a9ecab21-39cd-4756-861f-0948033ffd19" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11880" ], + "x-ms-correlation-request-id": [ "220a8fc3-808b-4112-93b5-afa6f13ec8ee" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T112720Z:220a8fc3-808b-4112-93b5-afa6f13ec8ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:11:43 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:27:20 GMT" ] }, "ContentHeaders": { "Content-Length": [ "938" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"pwsh\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100-2.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-05-08T04:19:40.357+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100-2\",\"name\":\"postgresql-test-100-2\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}" + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"pwsh\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100-2.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-09-25T11:35:18.733+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100-2\",\"name\":\"postgresql-test-100-2\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}" } }, "Remove-AzPostgreSqlServer+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100-2?api-version=2017-12-01+5": { @@ -161,8 +161,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100-2?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "142" ], - "x-ms-client-request-id": [ "e63c0af1-5f1d-4b50-a799-8b8de3116443" ], + "x-ms-unique-id": [ "154" ], + "x-ms-client-request-id": [ "1273322e-0d12-4f38-8fa3-0d77946dbda7" ], "CommandName": [ "Remove-AzPostgreSqlServer" ], "FullCommandName": [ "Remove-AzPostgreSqlServer_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -177,34 +177,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/6de5322c-f3f5-4a8c-934b-a3e00ff509c1?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/ea3c5dcf-05bd-4b1b-917f-cd3324883459?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/6de5322c-f3f5-4a8c-934b-a3e00ff509c1?api-version=2017-12-01" ], - "x-ms-request-id": [ "6de5322c-f3f5-4a8c-934b-a3e00ff509c1" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/ea3c5dcf-05bd-4b1b-917f-cd3324883459?api-version=2017-12-01" ], + "x-ms-request-id": [ "ea3c5dcf-05bd-4b1b-917f-cd3324883459" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14986" ], - "x-ms-correlation-request-id": [ "c82ae8b8-983f-45f8-b827-9ecb3c4826d3" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T041144Z:c82ae8b8-983f-45f8-b827-9ecb3c4826d3" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14984" ], + "x-ms-correlation-request-id": [ "ee3d9419-c1ad-4711-abb1-febefd583418" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T112721Z:ee3d9419-c1ad-4711-abb1-febefd583418" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:11:44 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:27:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "72" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"DropElasticServer\",\"startTime\":\"2020-05-08T04:11:44.187Z\"}" + "Content": "{\"operation\":\"DropElasticServer\",\"startTime\":\"2020-09-25T11:27:21.377Z\"}" } }, - "Remove-AzPostgreSqlServer+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/6de5322c-f3f5-4a8c-934b-a3e00ff509c1?api-version=2017-12-01+6": { + "Remove-AzPostgreSqlServer+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/ea3c5dcf-05bd-4b1b-917f-cd3324883459?api-version=2017-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/6de5322c-f3f5-4a8c-934b-a3e00ff509c1?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/ea3c5dcf-05bd-4b1b-917f-cd3324883459?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "142", "143" ], - "x-ms-client-request-id": [ "e63c0af1-5f1d-4b50-a799-8b8de3116443", "e63c0af1-5f1d-4b50-a799-8b8de3116443" ], + "x-ms-unique-id": [ "154", "155" ], + "x-ms-client-request-id": [ "1273322e-0d12-4f38-8fa3-0d77946dbda7", "1273322e-0d12-4f38-8fa3-0d77946dbda7" ], "CommandName": [ "Remove-AzPostgreSqlServer", "Remove-AzPostgreSqlServer" ], "FullCommandName": [ "Remove-AzPostgreSqlServer_Delete", "Remove-AzPostgreSqlServer_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -220,31 +220,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "b9a2d183-e08a-4ed9-8125-49ec6fe04871" ], + "x-ms-request-id": [ "2daa7251-5305-490e-bfe2-f57f789e0148" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11889" ], - "x-ms-correlation-request-id": [ "64acb5d8-cd97-413b-9728-a0c75320f0b0" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T041159Z:64acb5d8-cd97-413b-9728-a0c75320f0b0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11879" ], + "x-ms-correlation-request-id": [ "231e6d62-68a4-4372-ba0f-52e1907a7cf3" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T112737Z:231e6d62-68a4-4372-ba0f-52e1907a7cf3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:11:59 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:27:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"6de5322c-f3f5-4a8c-934b-a3e00ff509c1\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-08T04:11:44.187Z\"}" + "Content": "{\"name\":\"ea3c5dcf-05bd-4b1b-917f-cd3324883459\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:27:21.377Z\"}" } }, - "Remove-AzPostgreSqlServer+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/6de5322c-f3f5-4a8c-934b-a3e00ff509c1?api-version=2017-12-01+7": { + "Remove-AzPostgreSqlServer+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/ea3c5dcf-05bd-4b1b-917f-cd3324883459?api-version=2017-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/6de5322c-f3f5-4a8c-934b-a3e00ff509c1?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/ea3c5dcf-05bd-4b1b-917f-cd3324883459?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "142", "143", "144" ], - "x-ms-client-request-id": [ "e63c0af1-5f1d-4b50-a799-8b8de3116443", "e63c0af1-5f1d-4b50-a799-8b8de3116443", "e63c0af1-5f1d-4b50-a799-8b8de3116443" ], + "x-ms-unique-id": [ "154", "155", "156" ], + "x-ms-client-request-id": [ "1273322e-0d12-4f38-8fa3-0d77946dbda7", "1273322e-0d12-4f38-8fa3-0d77946dbda7", "1273322e-0d12-4f38-8fa3-0d77946dbda7" ], "CommandName": [ "Remove-AzPostgreSqlServer", "Remove-AzPostgreSqlServer", "Remove-AzPostgreSqlServer" ], "FullCommandName": [ "Remove-AzPostgreSqlServer_Delete", "Remove-AzPostgreSqlServer_Delete", "Remove-AzPostgreSqlServer_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -259,14 +259,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "4f6de023-2ba2-494b-80f9-95bd2dae08e5" ], + "x-ms-request-id": [ "2d61cd7f-da9d-41db-ad73-f5b445832f1a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11888" ], - "x-ms-correlation-request-id": [ "30ff74d9-e687-46ae-a3d8-536f271b361b" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T041159Z:30ff74d9-e687-46ae-a3d8-536f271b361b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11878" ], + "x-ms-correlation-request-id": [ "2086ee4d-7f7e-45d2-b905-745778ad6290" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T112737Z:2086ee4d-7f7e-45d2-b905-745778ad6290" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:11:59 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:27:37 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -279,12 +279,12 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresqldelete?api-version=2017-12-01", - "Content": "{\n \"properties\": {\n \"createMode\": \"Default\",\n \"administratorLogin\": \"pwsh\",\n \"administratorLoginPassword\": \"Pa88word!\"\n },\n \"sku\": {\n \"name\": \"GP_Gen5_4\"\n },\n \"location\": \"eastus\"\n}", + "Content": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5_4\"\r\n },\r\n \"properties\": {\r\n \"createMode\": \"Default\",\r\n \"administratorLogin\": \"pwsh\",\r\n \"administratorLoginPassword\": \"Pa88word!\"\r\n },\r\n \"location\": \"eastus\"\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "198" ] + "Content-Length": [ "208" ] } }, "Response": { @@ -292,34 +292,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/75c3a784-0969-4d5d-b060-1f2c3e9a7fea?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/2b47f057-8051-4c3f-9f56-9439c4e880ef?api-version=2017-12-01" ], "Retry-After": [ "60" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/75c3a784-0969-4d5d-b060-1f2c3e9a7fea?api-version=2017-12-01" ], - "x-ms-request-id": [ "75c3a784-0969-4d5d-b060-1f2c3e9a7fea" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/2b47f057-8051-4c3f-9f56-9439c4e880ef?api-version=2017-12-01" ], + "x-ms-request-id": [ "2b47f057-8051-4c3f-9f56-9439c4e880ef" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1184" ], - "x-ms-correlation-request-id": [ "9d2df2c6-67e5-40da-8a76-dfad456cd1aa" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T041205Z:9d2df2c6-67e5-40da-8a76-dfad456cd1aa" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1180" ], + "x-ms-correlation-request-id": [ "fd04770b-62fd-4dfa-83d5-dcb788f4cb80" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T112745Z:fd04770b-62fd-4dfa-83d5-dcb788f4cb80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:12:05 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:27:44 GMT" ] }, "ContentHeaders": { "Content-Length": [ "74" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServer\",\"startTime\":\"2020-05-08T04:12:04.703Z\"}" + "Content": "{\"operation\":\"UpsertElasticServer\",\"startTime\":\"2020-09-25T11:27:43.883Z\"}" } }, - "Remove-AzPostgreSqlServer+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/75c3a784-0969-4d5d-b060-1f2c3e9a7fea?api-version=2017-12-01+2": { + "Remove-AzPostgreSqlServer+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/2b47f057-8051-4c3f-9f56-9439c4e880ef?api-version=2017-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/75c3a784-0969-4d5d-b060-1f2c3e9a7fea?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/2b47f057-8051-4c3f-9f56-9439c4e880ef?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "145", "146" ], - "x-ms-client-request-id": [ "52dd0c78-c610-4817-ac93-61d3ed2ec8dc", "52dd0c78-c610-4817-ac93-61d3ed2ec8dc" ], + "x-ms-unique-id": [ "157", "158" ], + "x-ms-client-request-id": [ "ea29c9f3-66d9-4fa7-a2c3-13f244041f40", "ea29c9f3-66d9-4fa7-a2c3-13f244041f40" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -335,31 +335,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "60" ], - "x-ms-request-id": [ "edcfff3e-7380-421d-9a8d-0f548dfaf8de" ], + "x-ms-request-id": [ "359c62d7-5672-455c-9a52-77578c77ce8d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11887" ], - "x-ms-correlation-request-id": [ "ce6dc3ea-2c4b-4570-bce9-30920b65dd25" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T041306Z:ce6dc3ea-2c4b-4570-bce9-30920b65dd25" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11877" ], + "x-ms-correlation-request-id": [ "b8b22dd1-b678-4bf8-8a1d-5ef832fb8988" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T112845Z:b8b22dd1-b678-4bf8-8a1d-5ef832fb8988" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:13:06 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:28:44 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"75c3a784-0969-4d5d-b060-1f2c3e9a7fea\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:12:04.703Z\"}" + "Content": "{\"name\":\"2b47f057-8051-4c3f-9f56-9439c4e880ef\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:27:43.883Z\"}" } }, - "Remove-AzPostgreSqlServer+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/75c3a784-0969-4d5d-b060-1f2c3e9a7fea?api-version=2017-12-01+3": { + "Remove-AzPostgreSqlServer+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/2b47f057-8051-4c3f-9f56-9439c4e880ef?api-version=2017-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/75c3a784-0969-4d5d-b060-1f2c3e9a7fea?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/2b47f057-8051-4c3f-9f56-9439c4e880ef?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "145", "146", "147" ], - "x-ms-client-request-id": [ "52dd0c78-c610-4817-ac93-61d3ed2ec8dc", "52dd0c78-c610-4817-ac93-61d3ed2ec8dc", "52dd0c78-c610-4817-ac93-61d3ed2ec8dc" ], + "x-ms-unique-id": [ "157", "158", "159" ], + "x-ms-client-request-id": [ "ea29c9f3-66d9-4fa7-a2c3-13f244041f40", "ea29c9f3-66d9-4fa7-a2c3-13f244041f40", "ea29c9f3-66d9-4fa7-a2c3-13f244041f40" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -375,21 +375,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "60" ], - "x-ms-request-id": [ "1e552b3f-ed0a-4b1c-8793-f3fb04228ebc" ], + "x-ms-request-id": [ "751c5ee6-3968-4751-9f13-15cf19baa8b7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11886" ], - "x-ms-correlation-request-id": [ "829b740a-6d61-423f-b103-ace7bfc50b68" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T041407Z:829b740a-6d61-423f-b103-ace7bfc50b68" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11876" ], + "x-ms-correlation-request-id": [ "04c00631-4360-4f06-9c2b-95ae5ea67d76" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T112945Z:04c00631-4360-4f06-9c2b-95ae5ea67d76" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:14:07 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:29:45 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"75c3a784-0969-4d5d-b060-1f2c3e9a7fea\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-08T04:12:04.703Z\"}" + "Content": "{\"name\":\"2b47f057-8051-4c3f-9f56-9439c4e880ef\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:27:43.883Z\"}" } }, "Remove-AzPostgreSqlServer+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresqldelete?api-version=2017-12-01+4": { @@ -398,8 +398,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresqldelete?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "145", "146", "147", "148" ], - "x-ms-client-request-id": [ "52dd0c78-c610-4817-ac93-61d3ed2ec8dc", "52dd0c78-c610-4817-ac93-61d3ed2ec8dc", "52dd0c78-c610-4817-ac93-61d3ed2ec8dc", "52dd0c78-c610-4817-ac93-61d3ed2ec8dc" ], + "x-ms-unique-id": [ "157", "158", "159", "160" ], + "x-ms-client-request-id": [ "ea29c9f3-66d9-4fa7-a2c3-13f244041f40", "ea29c9f3-66d9-4fa7-a2c3-13f244041f40", "ea29c9f3-66d9-4fa7-a2c3-13f244041f40", "ea29c9f3-66d9-4fa7-a2c3-13f244041f40" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -414,21 +414,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "2c1e2e5e-722b-40ef-a67e-b9777ddc44a7" ], + "x-ms-request-id": [ "ee5023f7-8dde-49ab-b212-c4e649f3ab5e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11885" ], - "x-ms-correlation-request-id": [ "460fa47e-c764-4797-9378-6e848ccfb420" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T041408Z:460fa47e-c764-4797-9378-6e848ccfb420" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11875" ], + "x-ms-correlation-request-id": [ "4d4364b2-d3d4-4dd2-9b2b-1402a4e4f19f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T112946Z:4d4364b2-d3d4-4dd2-9b2b-1402a4e4f19f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:14:07 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:29:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "923" ], + "Content-Length": [ "922" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"pwsh\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresqldelete.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-05-08T04:22:05.017+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresqldelete\",\"name\":\"postgresqldelete\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}" + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"pwsh\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresqldelete.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-09-25T11:37:44.18+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresqldelete\",\"name\":\"postgresqldelete\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}" } }, "Remove-AzPostgreSqlServer+[NoContext]+DeleteViaIdentity+$DELETE+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresqldelete?api-version=2017-12-01+5": { @@ -437,8 +437,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresqldelete?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "149" ], - "x-ms-client-request-id": [ "1e21c2f2-8a7c-4bf1-8fb4-e6b999c75d54" ], + "x-ms-unique-id": [ "161" ], + "x-ms-client-request-id": [ "9b17112f-66f3-4248-ac1e-80937aace265" ], "CommandName": [ "Remove-AzPostgreSqlServer" ], "FullCommandName": [ "Remove-AzPostgreSqlServer_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -453,34 +453,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/b1b693e9-c7fd-4d8d-8d2d-69c83900609a?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/5475f3fb-6422-4483-8d3e-3a7943efe886?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/b1b693e9-c7fd-4d8d-8d2d-69c83900609a?api-version=2017-12-01" ], - "x-ms-request-id": [ "b1b693e9-c7fd-4d8d-8d2d-69c83900609a" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/5475f3fb-6422-4483-8d3e-3a7943efe886?api-version=2017-12-01" ], + "x-ms-request-id": [ "5475f3fb-6422-4483-8d3e-3a7943efe886" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14985" ], - "x-ms-correlation-request-id": [ "66a726bf-9221-4171-af95-bffb896b5ddc" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T041408Z:66a726bf-9221-4171-af95-bffb896b5ddc" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14983" ], + "x-ms-correlation-request-id": [ "1c7cfdb4-9a66-4b3e-8d8a-76777ebd62f4" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T112946Z:1c7cfdb4-9a66-4b3e-8d8a-76777ebd62f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:14:08 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:29:46 GMT" ] }, "ContentHeaders": { "Content-Length": [ "72" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"DropElasticServer\",\"startTime\":\"2020-05-08T04:14:08.813Z\"}" + "Content": "{\"operation\":\"DropElasticServer\",\"startTime\":\"2020-09-25T11:29:46.773Z\"}" } }, - "Remove-AzPostgreSqlServer+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/b1b693e9-c7fd-4d8d-8d2d-69c83900609a?api-version=2017-12-01+6": { + "Remove-AzPostgreSqlServer+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/5475f3fb-6422-4483-8d3e-3a7943efe886?api-version=2017-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/b1b693e9-c7fd-4d8d-8d2d-69c83900609a?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/5475f3fb-6422-4483-8d3e-3a7943efe886?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "149", "150" ], - "x-ms-client-request-id": [ "1e21c2f2-8a7c-4bf1-8fb4-e6b999c75d54", "1e21c2f2-8a7c-4bf1-8fb4-e6b999c75d54" ], + "x-ms-unique-id": [ "161", "162" ], + "x-ms-client-request-id": [ "9b17112f-66f3-4248-ac1e-80937aace265", "9b17112f-66f3-4248-ac1e-80937aace265" ], "CommandName": [ "Remove-AzPostgreSqlServer", "Remove-AzPostgreSqlServer" ], "FullCommandName": [ "Remove-AzPostgreSqlServer_DeleteViaIdentity", "Remove-AzPostgreSqlServer_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -496,31 +496,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "b96185d6-2754-46ab-98be-280be05d69ee" ], + "x-ms-request-id": [ "2303dc92-e31b-4f3d-9c49-0d463be3bc17" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11884" ], - "x-ms-correlation-request-id": [ "816ebe29-8ba1-4d8c-9c11-908b9da9212e" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T041424Z:816ebe29-8ba1-4d8c-9c11-908b9da9212e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11874" ], + "x-ms-correlation-request-id": [ "8eae21e5-39b4-44f5-88d8-3d568fb673be" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T113002Z:8eae21e5-39b4-44f5-88d8-3d568fb673be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:14:23 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:30:01 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"b1b693e9-c7fd-4d8d-8d2d-69c83900609a\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-08T04:14:08.813Z\"}" + "Content": "{\"name\":\"5475f3fb-6422-4483-8d3e-3a7943efe886\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:29:46.773Z\"}" } }, - "Remove-AzPostgreSqlServer+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/b1b693e9-c7fd-4d8d-8d2d-69c83900609a?api-version=2017-12-01+7": { + "Remove-AzPostgreSqlServer+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/5475f3fb-6422-4483-8d3e-3a7943efe886?api-version=2017-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/b1b693e9-c7fd-4d8d-8d2d-69c83900609a?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/5475f3fb-6422-4483-8d3e-3a7943efe886?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "149", "150", "151" ], - "x-ms-client-request-id": [ "1e21c2f2-8a7c-4bf1-8fb4-e6b999c75d54", "1e21c2f2-8a7c-4bf1-8fb4-e6b999c75d54", "1e21c2f2-8a7c-4bf1-8fb4-e6b999c75d54" ], + "x-ms-unique-id": [ "161", "162", "163" ], + "x-ms-client-request-id": [ "9b17112f-66f3-4248-ac1e-80937aace265", "9b17112f-66f3-4248-ac1e-80937aace265", "9b17112f-66f3-4248-ac1e-80937aace265" ], "CommandName": [ "Remove-AzPostgreSqlServer", "Remove-AzPostgreSqlServer", "Remove-AzPostgreSqlServer" ], "FullCommandName": [ "Remove-AzPostgreSqlServer_DeleteViaIdentity", "Remove-AzPostgreSqlServer_DeleteViaIdentity", "Remove-AzPostgreSqlServer_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -535,14 +535,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "ab47b54a-a1ec-4c59-a917-d86296e517a2" ], + "x-ms-request-id": [ "08e5f302-deef-47c2-85c5-2f63d1c39063" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11883" ], - "x-ms-correlation-request-id": [ "47811362-bc77-4af7-bd71-48e541d02568" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T041424Z:47811362-bc77-4af7-bd71-48e541d02568" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11873" ], + "x-ms-correlation-request-id": [ "17919b76-9254-40c8-b996-1da661eb321d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T113002Z:17919b76-9254-40c8-b996-1da661eb321d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:14:23 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:30:02 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/PostgreSql/test/Remove-AzPostgreSqlVirtualNetworkRule.Recording.json b/src/PostgreSql/test/Remove-AzPostgreSqlVirtualNetworkRule.Recording.json index cc4b993c8d18..2c3f7218091e 100644 --- a/src/PostgreSql/test/Remove-AzPostgreSqlVirtualNetworkRule.Recording.json +++ b/src/PostgreSql/test/Remove-AzPostgreSqlVirtualNetworkRule.Recording.json @@ -3,12 +3,12 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/virtualNetworkRules/postgresqlvnet?api-version=2017-12-01", - "Content": "{\n \"properties\": {\n \"virtualNetworkSubnetId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.Network/virtualNetworks/MySqlVNet/subnets/MysqlSubnet1\"\n }\n}", + "Content": "{\r\n \"properties\": {\r\n \"virtualNetworkSubnetId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.Network/virtualNetworks/MySqlVNet/subnets/MysqlSubnet1\"\r\n }\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "214" ] + "Content-Length": [ "218" ] } }, "Response": { @@ -16,34 +16,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/65245c5f-dca2-444c-be09-31271b50ad94?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/d476b08d-de51-4942-9ae0-9d15b2f32361?api-version=2017-12-01" ], "Retry-After": [ "30" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/65245c5f-dca2-444c-be09-31271b50ad94?api-version=2017-12-01" ], - "x-ms-request-id": [ "65245c5f-dca2-444c-be09-31271b50ad94" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/d476b08d-de51-4942-9ae0-9d15b2f32361?api-version=2017-12-01" ], + "x-ms-request-id": [ "d476b08d-de51-4942-9ae0-9d15b2f32361" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1183" ], - "x-ms-correlation-request-id": [ "44383a93-3c70-4d13-bca7-f8b2e13cdaf1" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T041426Z:44383a93-3c70-4d13-bca7-f8b2e13cdaf1" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1179" ], + "x-ms-correlation-request-id": [ "ef62bdf1-cab8-4373-aca2-93165b7f6f8c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T113004Z:ef62bdf1-cab8-4373-aca2-93165b7f6f8c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:14:25 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:30:04 GMT" ] }, "ContentHeaders": { "Content-Length": [ "90" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServerVnetFirewallRule\",\"startTime\":\"2020-05-08T04:14:25.143Z\"}" + "Content": "{\"operation\":\"UpsertElasticServerVnetFirewallRule\",\"startTime\":\"2020-09-25T11:30:03.337Z\"}" } }, - "Remove-AzPostgreSqlVirtualNetworkRule+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/65245c5f-dca2-444c-be09-31271b50ad94?api-version=2017-12-01+2": { + "Remove-AzPostgreSqlVirtualNetworkRule+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/d476b08d-de51-4942-9ae0-9d15b2f32361?api-version=2017-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/65245c5f-dca2-444c-be09-31271b50ad94?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/d476b08d-de51-4942-9ae0-9d15b2f32361?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "152", "153" ], - "x-ms-client-request-id": [ "7ec04230-caca-429a-9248-61442da84d10", "7ec04230-caca-429a-9248-61442da84d10" ], + "x-ms-unique-id": [ "164", "165" ], + "x-ms-client-request-id": [ "0007bb94-dbd1-467a-9e34-157eb99989cb", "0007bb94-dbd1-467a-9e34-157eb99989cb" ], "CommandName": [ "New-AzPostgreSqlVirtualNetworkRule", "New-AzPostgreSqlVirtualNetworkRule" ], "FullCommandName": [ "New-AzPostgreSqlVirtualNetworkRule_CreateExpanded", "New-AzPostgreSqlVirtualNetworkRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -59,21 +59,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "acff9281-5217-432b-b0f0-b11644c23935" ], + "x-ms-request-id": [ "023d128e-1c70-494b-8ad2-d2d70b222770" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11882" ], - "x-ms-correlation-request-id": [ "9a38c884-635d-4489-a3a3-36ccb7cc0c81" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T041456Z:9a38c884-635d-4489-a3a3-36ccb7cc0c81" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11872" ], + "x-ms-correlation-request-id": [ "888d060c-f597-4f47-9f21-cccc1863fceb" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T113034Z:888d060c-f597-4f47-9f21-cccc1863fceb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:14:56 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:30:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"65245c5f-dca2-444c-be09-31271b50ad94\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-08T04:14:25.143Z\"}" + "Content": "{\"name\":\"d476b08d-de51-4942-9ae0-9d15b2f32361\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:30:03.337Z\"}" } }, "Remove-AzPostgreSqlVirtualNetworkRule+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/virtualNetworkRules/postgresqlvnet?api-version=2017-12-01+3": { @@ -82,8 +82,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/virtualNetworkRules/postgresqlvnet?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "152", "153", "154" ], - "x-ms-client-request-id": [ "7ec04230-caca-429a-9248-61442da84d10", "7ec04230-caca-429a-9248-61442da84d10", "7ec04230-caca-429a-9248-61442da84d10" ], + "x-ms-unique-id": [ "164", "165", "166" ], + "x-ms-client-request-id": [ "0007bb94-dbd1-467a-9e34-157eb99989cb", "0007bb94-dbd1-467a-9e34-157eb99989cb", "0007bb94-dbd1-467a-9e34-157eb99989cb" ], "CommandName": [ "New-AzPostgreSqlVirtualNetworkRule", "New-AzPostgreSqlVirtualNetworkRule", "New-AzPostgreSqlVirtualNetworkRule" ], "FullCommandName": [ "New-AzPostgreSqlVirtualNetworkRule_CreateExpanded", "New-AzPostgreSqlVirtualNetworkRule_CreateExpanded", "New-AzPostgreSqlVirtualNetworkRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -98,14 +98,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "44dcbb85-13cd-49cf-ae87-2c90752c181d" ], + "x-ms-request-id": [ "16583214-27af-4004-8a85-65d7f71cec82" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11881" ], - "x-ms-correlation-request-id": [ "241fa8c1-dcc6-4529-bdaa-cd9f1683f994" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T041457Z:241fa8c1-dcc6-4529-bdaa-cd9f1683f994" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11871" ], + "x-ms-correlation-request-id": [ "da6d8b95-f32f-4bdf-8540-9e939648a691" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T113035Z:da6d8b95-f32f-4bdf-8540-9e939648a691" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:14:57 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:30:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "532" ], @@ -121,8 +121,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/virtualNetworkRules/postgresqlvnet?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "155" ], - "x-ms-client-request-id": [ "b68feadc-de27-499d-aa4c-924fc6f4d7e9" ], + "x-ms-unique-id": [ "167" ], + "x-ms-client-request-id": [ "79eb2ebf-15eb-4248-963b-8bc9303d9a76" ], "CommandName": [ "Remove-AzPostgreSqlVirtualNetworkRule" ], "FullCommandName": [ "Remove-AzPostgreSqlVirtualNetworkRule_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -137,34 +137,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/2aba034c-a2ab-499b-a472-da7c8c73fb42?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/ba48bd1f-6faf-48b6-b022-10ee1b96ad72?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/2aba034c-a2ab-499b-a472-da7c8c73fb42?api-version=2017-12-01" ], - "x-ms-request-id": [ "2aba034c-a2ab-499b-a472-da7c8c73fb42" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/ba48bd1f-6faf-48b6-b022-10ee1b96ad72?api-version=2017-12-01" ], + "x-ms-request-id": [ "ba48bd1f-6faf-48b6-b022-10ee1b96ad72" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14984" ], - "x-ms-correlation-request-id": [ "93eb0432-12b5-49dc-aecb-0038e3a2ff23" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T041458Z:93eb0432-12b5-49dc-aecb-0038e3a2ff23" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14982" ], + "x-ms-correlation-request-id": [ "f67608d6-5678-4d38-9e60-c9e076bef581" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T113036Z:f67608d6-5678-4d38-9e60-c9e076bef581" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:14:58 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:30:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "86" ], + "Content-Length": [ "88" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"DropElasticServerVnetFirewallRule\",\"startTime\":\"2020-05-08T04:14:57.3Z\"}" + "Content": "{\"operation\":\"DropElasticServerVnetFirewallRule\",\"startTime\":\"2020-09-25T11:30:35.523Z\"}" } }, - "Remove-AzPostgreSqlVirtualNetworkRule+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/2aba034c-a2ab-499b-a472-da7c8c73fb42?api-version=2017-12-01+5": { + "Remove-AzPostgreSqlVirtualNetworkRule+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/ba48bd1f-6faf-48b6-b022-10ee1b96ad72?api-version=2017-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/2aba034c-a2ab-499b-a472-da7c8c73fb42?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/ba48bd1f-6faf-48b6-b022-10ee1b96ad72?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "155", "156" ], - "x-ms-client-request-id": [ "b68feadc-de27-499d-aa4c-924fc6f4d7e9", "b68feadc-de27-499d-aa4c-924fc6f4d7e9" ], + "x-ms-unique-id": [ "167", "168" ], + "x-ms-client-request-id": [ "79eb2ebf-15eb-4248-963b-8bc9303d9a76", "79eb2ebf-15eb-4248-963b-8bc9303d9a76" ], "CommandName": [ "Remove-AzPostgreSqlVirtualNetworkRule", "Remove-AzPostgreSqlVirtualNetworkRule" ], "FullCommandName": [ "Remove-AzPostgreSqlVirtualNetworkRule_Delete", "Remove-AzPostgreSqlVirtualNetworkRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -180,31 +180,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "35bcc3bd-952a-4940-836c-b016d0777255" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11880" ], + "x-ms-request-id": [ "ed43456d-0e64-436c-bd3f-9fd48095321f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "43eac6b3-c85b-4441-98cf-919b6f37bb18" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T041513Z:43eac6b3-c85b-4441-98cf-919b6f37bb18" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11870" ], + "x-ms-correlation-request-id": [ "46527877-2184-4d62-b878-872df2bc4546" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T113052Z:46527877-2184-4d62-b878-872df2bc4546" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:15:13 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:30:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "105" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"2aba034c-a2ab-499b-a472-da7c8c73fb42\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-08T04:14:57.3Z\"}" + "Content": "{\"name\":\"ba48bd1f-6faf-48b6-b022-10ee1b96ad72\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:30:35.523Z\"}" } }, - "Remove-AzPostgreSqlVirtualNetworkRule+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/2aba034c-a2ab-499b-a472-da7c8c73fb42?api-version=2017-12-01+6": { + "Remove-AzPostgreSqlVirtualNetworkRule+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/ba48bd1f-6faf-48b6-b022-10ee1b96ad72?api-version=2017-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/2aba034c-a2ab-499b-a472-da7c8c73fb42?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/ba48bd1f-6faf-48b6-b022-10ee1b96ad72?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "155", "156", "157" ], - "x-ms-client-request-id": [ "b68feadc-de27-499d-aa4c-924fc6f4d7e9", "b68feadc-de27-499d-aa4c-924fc6f4d7e9", "b68feadc-de27-499d-aa4c-924fc6f4d7e9" ], + "x-ms-unique-id": [ "167", "168", "169" ], + "x-ms-client-request-id": [ "79eb2ebf-15eb-4248-963b-8bc9303d9a76", "79eb2ebf-15eb-4248-963b-8bc9303d9a76", "79eb2ebf-15eb-4248-963b-8bc9303d9a76" ], "CommandName": [ "Remove-AzPostgreSqlVirtualNetworkRule", "Remove-AzPostgreSqlVirtualNetworkRule", "Remove-AzPostgreSqlVirtualNetworkRule" ], "FullCommandName": [ "Remove-AzPostgreSqlVirtualNetworkRule_Delete", "Remove-AzPostgreSqlVirtualNetworkRule_Delete", "Remove-AzPostgreSqlVirtualNetworkRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -219,14 +219,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "d0c8fdc1-b80e-462b-add5-d71a64687c80" ], + "x-ms-request-id": [ "80dc3cbe-2e02-476a-9fac-17c733647a07" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11879" ], - "x-ms-correlation-request-id": [ "2c726c78-36a5-43f9-8dad-7d3b3a3d708c" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T041514Z:2c726c78-36a5-43f9-8dad-7d3b3a3d708c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11869" ], + "x-ms-correlation-request-id": [ "5aac58b5-ad14-4940-b9cf-771ef46f8e60" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T113052Z:5aac58b5-ad14-4940-b9cf-771ef46f8e60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:15:14 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:30:51 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -239,12 +239,12 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/virtualNetworkRules/postgresqlvnet?api-version=2017-12-01", - "Content": "{\n \"properties\": {\n \"virtualNetworkSubnetId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.Network/virtualNetworks/MySqlVNet/subnets/MysqlSubnet1\"\n }\n}", + "Content": "{\r\n \"properties\": {\r\n \"virtualNetworkSubnetId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.Network/virtualNetworks/MySqlVNet/subnets/MysqlSubnet1\"\r\n }\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "214" ] + "Content-Length": [ "218" ] } }, "Response": { @@ -252,34 +252,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/50bffd0f-7575-43d7-af80-1fca03684f56?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/6e016ede-aa82-4ef9-a706-65bf0f299ee2?api-version=2017-12-01" ], "Retry-After": [ "30" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/50bffd0f-7575-43d7-af80-1fca03684f56?api-version=2017-12-01" ], - "x-ms-request-id": [ "50bffd0f-7575-43d7-af80-1fca03684f56" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/6e016ede-aa82-4ef9-a706-65bf0f299ee2?api-version=2017-12-01" ], + "x-ms-request-id": [ "6e016ede-aa82-4ef9-a706-65bf0f299ee2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1182" ], - "x-ms-correlation-request-id": [ "10204559-2c6b-4de6-879a-fd2fee7c11b5" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T041516Z:10204559-2c6b-4de6-879a-fd2fee7c11b5" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1178" ], + "x-ms-correlation-request-id": [ "67101fd1-f8b2-401b-a278-cec0c5544d8f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T113054Z:67101fd1-f8b2-401b-a278-cec0c5544d8f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:15:16 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:30:53 GMT" ] }, "ContentHeaders": { "Content-Length": [ "90" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServerVnetFirewallRule\",\"startTime\":\"2020-05-08T04:15:15.133Z\"}" + "Content": "{\"operation\":\"UpsertElasticServerVnetFirewallRule\",\"startTime\":\"2020-09-25T11:30:52.773Z\"}" } }, - "Remove-AzPostgreSqlVirtualNetworkRule+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/50bffd0f-7575-43d7-af80-1fca03684f56?api-version=2017-12-01+2": { + "Remove-AzPostgreSqlVirtualNetworkRule+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/6e016ede-aa82-4ef9-a706-65bf0f299ee2?api-version=2017-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/50bffd0f-7575-43d7-af80-1fca03684f56?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/6e016ede-aa82-4ef9-a706-65bf0f299ee2?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "158", "159" ], - "x-ms-client-request-id": [ "9d440516-3696-4bd5-9088-f9b5c9d3042a", "9d440516-3696-4bd5-9088-f9b5c9d3042a" ], + "x-ms-unique-id": [ "170", "171" ], + "x-ms-client-request-id": [ "d1df4468-cb1e-449a-85f7-ab1887e810e7", "d1df4468-cb1e-449a-85f7-ab1887e810e7" ], "CommandName": [ "New-AzPostgreSqlVirtualNetworkRule", "New-AzPostgreSqlVirtualNetworkRule" ], "FullCommandName": [ "New-AzPostgreSqlVirtualNetworkRule_CreateExpanded", "New-AzPostgreSqlVirtualNetworkRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -295,21 +295,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "1928d125-4030-4bb5-a1de-7690fee88160" ], + "x-ms-request-id": [ "ad495c12-8758-43aa-868e-8f5a4e715f66" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11878" ], - "x-ms-correlation-request-id": [ "8f5a21ca-1853-4a7e-9b7a-a47af571c31c" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T041546Z:8f5a21ca-1853-4a7e-9b7a-a47af571c31c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11868" ], + "x-ms-correlation-request-id": [ "cc5b5840-1c04-427f-a996-1cd9ade39169" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T113124Z:cc5b5840-1c04-427f-a996-1cd9ade39169" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:15:46 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:31:23 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"50bffd0f-7575-43d7-af80-1fca03684f56\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-08T04:15:15.133Z\"}" + "Content": "{\"name\":\"6e016ede-aa82-4ef9-a706-65bf0f299ee2\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:30:52.773Z\"}" } }, "Remove-AzPostgreSqlVirtualNetworkRule+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/virtualNetworkRules/postgresqlvnet?api-version=2017-12-01+3": { @@ -318,8 +318,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/virtualNetworkRules/postgresqlvnet?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "158", "159", "160" ], - "x-ms-client-request-id": [ "9d440516-3696-4bd5-9088-f9b5c9d3042a", "9d440516-3696-4bd5-9088-f9b5c9d3042a", "9d440516-3696-4bd5-9088-f9b5c9d3042a" ], + "x-ms-unique-id": [ "170", "171", "172" ], + "x-ms-client-request-id": [ "d1df4468-cb1e-449a-85f7-ab1887e810e7", "d1df4468-cb1e-449a-85f7-ab1887e810e7", "d1df4468-cb1e-449a-85f7-ab1887e810e7" ], "CommandName": [ "New-AzPostgreSqlVirtualNetworkRule", "New-AzPostgreSqlVirtualNetworkRule", "New-AzPostgreSqlVirtualNetworkRule" ], "FullCommandName": [ "New-AzPostgreSqlVirtualNetworkRule_CreateExpanded", "New-AzPostgreSqlVirtualNetworkRule_CreateExpanded", "New-AzPostgreSqlVirtualNetworkRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -334,14 +334,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "7278511c-9333-479a-94f0-5e8cf4d5924a" ], + "x-ms-request-id": [ "cdf608c6-4ba4-4a29-8aa6-c0f5ffb3e66f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11877" ], - "x-ms-correlation-request-id": [ "fd6bf59c-0ec9-4d83-a1b3-4c20b28ced3b" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T041547Z:fd6bf59c-0ec9-4d83-a1b3-4c20b28ced3b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11867" ], + "x-ms-correlation-request-id": [ "9f467888-9a3c-4cb3-9acb-8e1523bcd1fd" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T113124Z:9f467888-9a3c-4cb3-9acb-8e1523bcd1fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:15:46 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:31:23 GMT" ] }, "ContentHeaders": { "Content-Length": [ "532" ], @@ -357,8 +357,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/virtualNetworkRules/postgresqlvnet?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "161" ], - "x-ms-client-request-id": [ "631e3519-ad77-4768-bcb8-f5be170afb6a" ], + "x-ms-unique-id": [ "173" ], + "x-ms-client-request-id": [ "4d15ba5a-14dd-4b85-b9a2-edb3fa024f9a" ], "CommandName": [ "Remove-AzPostgreSqlVirtualNetworkRule" ], "FullCommandName": [ "Remove-AzPostgreSqlVirtualNetworkRule_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -373,34 +373,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/7f6f7b28-e214-478f-97b6-7069c8b4d8a5?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/6671ff01-d649-400b-ab32-38f951ef6299?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/7f6f7b28-e214-478f-97b6-7069c8b4d8a5?api-version=2017-12-01" ], - "x-ms-request-id": [ "7f6f7b28-e214-478f-97b6-7069c8b4d8a5" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/6671ff01-d649-400b-ab32-38f951ef6299?api-version=2017-12-01" ], + "x-ms-request-id": [ "6671ff01-d649-400b-ab32-38f951ef6299" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14983" ], - "x-ms-correlation-request-id": [ "1f5c4980-4dd7-4e8e-b287-0d6fb2b3ae43" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T041548Z:1f5c4980-4dd7-4e8e-b287-0d6fb2b3ae43" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14981" ], + "x-ms-correlation-request-id": [ "3283964f-be0a-46da-a35d-2868d490cfca" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T113126Z:3283964f-be0a-46da-a35d-2868d490cfca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:15:47 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:31:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "87" ], + "Content-Length": [ "88" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"DropElasticServerVnetFirewallRule\",\"startTime\":\"2020-05-08T04:15:47.29Z\"}" + "Content": "{\"operation\":\"DropElasticServerVnetFirewallRule\",\"startTime\":\"2020-09-25T11:31:25.133Z\"}" } }, - "Remove-AzPostgreSqlVirtualNetworkRule+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/7f6f7b28-e214-478f-97b6-7069c8b4d8a5?api-version=2017-12-01+5": { + "Remove-AzPostgreSqlVirtualNetworkRule+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/6671ff01-d649-400b-ab32-38f951ef6299?api-version=2017-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/7f6f7b28-e214-478f-97b6-7069c8b4d8a5?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/6671ff01-d649-400b-ab32-38f951ef6299?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "161", "162" ], - "x-ms-client-request-id": [ "631e3519-ad77-4768-bcb8-f5be170afb6a", "631e3519-ad77-4768-bcb8-f5be170afb6a" ], + "x-ms-unique-id": [ "173", "174" ], + "x-ms-client-request-id": [ "4d15ba5a-14dd-4b85-b9a2-edb3fa024f9a", "4d15ba5a-14dd-4b85-b9a2-edb3fa024f9a" ], "CommandName": [ "Remove-AzPostgreSqlVirtualNetworkRule", "Remove-AzPostgreSqlVirtualNetworkRule" ], "FullCommandName": [ "Remove-AzPostgreSqlVirtualNetworkRule_DeleteViaIdentity", "Remove-AzPostgreSqlVirtualNetworkRule_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -416,31 +416,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "f53b3322-e898-48fd-a4e4-4ad12f6259a6" ], + "x-ms-request-id": [ "89e555b7-34f4-43fd-82ed-5f14f2c5af8a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11876" ], - "x-ms-correlation-request-id": [ "1d97746b-fd07-47e6-8b2f-c91b7024bd87" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T041603Z:1d97746b-fd07-47e6-8b2f-c91b7024bd87" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11866" ], + "x-ms-correlation-request-id": [ "f2230687-8e94-4f94-b71b-73859a4602e5" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T113141Z:f2230687-8e94-4f94-b71b-73859a4602e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:16:03 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:31:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "106" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"7f6f7b28-e214-478f-97b6-7069c8b4d8a5\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-08T04:15:47.29Z\"}" + "Content": "{\"name\":\"6671ff01-d649-400b-ab32-38f951ef6299\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:31:25.133Z\"}" } }, - "Remove-AzPostgreSqlVirtualNetworkRule+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/7f6f7b28-e214-478f-97b6-7069c8b4d8a5?api-version=2017-12-01+6": { + "Remove-AzPostgreSqlVirtualNetworkRule+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/6671ff01-d649-400b-ab32-38f951ef6299?api-version=2017-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/7f6f7b28-e214-478f-97b6-7069c8b4d8a5?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/6671ff01-d649-400b-ab32-38f951ef6299?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "161", "162", "163" ], - "x-ms-client-request-id": [ "631e3519-ad77-4768-bcb8-f5be170afb6a", "631e3519-ad77-4768-bcb8-f5be170afb6a", "631e3519-ad77-4768-bcb8-f5be170afb6a" ], + "x-ms-unique-id": [ "173", "174", "175" ], + "x-ms-client-request-id": [ "4d15ba5a-14dd-4b85-b9a2-edb3fa024f9a", "4d15ba5a-14dd-4b85-b9a2-edb3fa024f9a", "4d15ba5a-14dd-4b85-b9a2-edb3fa024f9a" ], "CommandName": [ "Remove-AzPostgreSqlVirtualNetworkRule", "Remove-AzPostgreSqlVirtualNetworkRule", "Remove-AzPostgreSqlVirtualNetworkRule" ], "FullCommandName": [ "Remove-AzPostgreSqlVirtualNetworkRule_DeleteViaIdentity", "Remove-AzPostgreSqlVirtualNetworkRule_DeleteViaIdentity", "Remove-AzPostgreSqlVirtualNetworkRule_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -455,14 +455,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "ab781292-dd9e-4981-94f1-bf0b896ca812" ], + "x-ms-request-id": [ "eeb60196-984e-445f-992b-0e39d4e7aa9a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11875" ], - "x-ms-correlation-request-id": [ "9e162946-c404-4b2e-a220-a4053a25174c" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T041604Z:9e162946-c404-4b2e-a220-a4053a25174c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11865" ], + "x-ms-correlation-request-id": [ "25876423-baf0-47f0-bd1e-5d37ead77ece" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T113142Z:25876423-baf0-47f0-bd1e-5d37ead77ece" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:16:03 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:31:41 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/PostgreSql/test/Restart-AzPostgreSqlServer.Recording.json b/src/PostgreSql/test/Restart-AzPostgreSqlServer.Recording.json index 874ba0e0d19e..c7894efa15d7 100644 --- a/src/PostgreSql/test/Restart-AzPostgreSqlServer.Recording.json +++ b/src/PostgreSql/test/Restart-AzPostgreSqlServer.Recording.json @@ -5,8 +5,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/restart?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "164" ], - "x-ms-client-request-id": [ "c697aaa6-3a42-4227-97c2-80b2b183d346" ], + "x-ms-unique-id": [ "176" ], + "x-ms-client-request-id": [ "46ef359e-9278-4d02-bda2-be3b5acc277c" ], "CommandName": [ "Restart-AzPostgreSqlServer" ], "FullCommandName": [ "Restart-AzPostgreSqlServer_Restart" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -21,34 +21,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/fe746fcd-e525-4df8-a69c-ac894cd81258?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/6657b98a-0363-4cc7-89ac-3a1906ebec9c?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/fe746fcd-e525-4df8-a69c-ac894cd81258?api-version=2017-12-01" ], - "x-ms-request-id": [ "fe746fcd-e525-4df8-a69c-ac894cd81258" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/6657b98a-0363-4cc7-89ac-3a1906ebec9c?api-version=2017-12-01" ], + "x-ms-request-id": [ "6657b98a-0363-4cc7-89ac-3a1906ebec9c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-correlation-request-id": [ "412ec639-7699-4b06-bd67-ff16103e9b26" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T041604Z:412ec639-7699-4b06-bd67-ff16103e9b26" ], + "x-ms-correlation-request-id": [ "190650fc-77f0-45dc-9488-392e58e8c54a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T113142Z:190650fc-77f0-45dc-9488-392e58e8c54a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:16:04 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:31:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "74" ], + "Content-Length": [ "75" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"RestartElasticServer\",\"startTime\":\"2020-05-08T04:16:04.62Z\"}" + "Content": "{\"operation\":\"RestartElasticServer\",\"startTime\":\"2020-09-25T11:31:42.713Z\"}" } }, - "Restart-AzPostgreSqlServer+[NoContext]+Restart+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/fe746fcd-e525-4df8-a69c-ac894cd81258?api-version=2017-12-01+2": { + "Restart-AzPostgreSqlServer+[NoContext]+Restart+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/6657b98a-0363-4cc7-89ac-3a1906ebec9c?api-version=2017-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/fe746fcd-e525-4df8-a69c-ac894cd81258?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/6657b98a-0363-4cc7-89ac-3a1906ebec9c?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "164", "165" ], - "x-ms-client-request-id": [ "c697aaa6-3a42-4227-97c2-80b2b183d346", "c697aaa6-3a42-4227-97c2-80b2b183d346" ], + "x-ms-unique-id": [ "176", "177" ], + "x-ms-client-request-id": [ "46ef359e-9278-4d02-bda2-be3b5acc277c", "46ef359e-9278-4d02-bda2-be3b5acc277c" ], "CommandName": [ "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer" ], "FullCommandName": [ "Restart-AzPostgreSqlServer_Restart", "Restart-AzPostgreSqlServer_Restart" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -64,31 +64,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "4d2af4ee-16ca-4d31-9bc8-b5b6de2f872f" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11874" ], + "x-ms-request-id": [ "32dd3d95-bd0c-4c4d-936e-dbc27f23fbfb" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "c4f1a5e1-4e35-45c6-84f6-c35282539c3e" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T041620Z:c4f1a5e1-4e35-45c6-84f6-c35282539c3e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11864" ], + "x-ms-correlation-request-id": [ "549da308-b93a-4f7a-8b8f-b86be10cf5dd" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T113158Z:549da308-b93a-4f7a-8b8f-b86be10cf5dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:16:19 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:31:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"fe746fcd-e525-4df8-a69c-ac894cd81258\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:16:04.62Z\"}" + "Content": "{\"name\":\"6657b98a-0363-4cc7-89ac-3a1906ebec9c\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:31:42.713Z\"}" } }, - "Restart-AzPostgreSqlServer+[NoContext]+Restart+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/fe746fcd-e525-4df8-a69c-ac894cd81258?api-version=2017-12-01+3": { + "Restart-AzPostgreSqlServer+[NoContext]+Restart+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/6657b98a-0363-4cc7-89ac-3a1906ebec9c?api-version=2017-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/fe746fcd-e525-4df8-a69c-ac894cd81258?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/6657b98a-0363-4cc7-89ac-3a1906ebec9c?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "164", "165", "166" ], - "x-ms-client-request-id": [ "c697aaa6-3a42-4227-97c2-80b2b183d346", "c697aaa6-3a42-4227-97c2-80b2b183d346", "c697aaa6-3a42-4227-97c2-80b2b183d346" ], + "x-ms-unique-id": [ "176", "177", "178" ], + "x-ms-client-request-id": [ "46ef359e-9278-4d02-bda2-be3b5acc277c", "46ef359e-9278-4d02-bda2-be3b5acc277c", "46ef359e-9278-4d02-bda2-be3b5acc277c" ], "CommandName": [ "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer" ], "FullCommandName": [ "Restart-AzPostgreSqlServer_Restart", "Restart-AzPostgreSqlServer_Restart", "Restart-AzPostgreSqlServer_Restart" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -104,31 +104,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "6e9a1687-e8f3-4c9c-acaa-a53e974c42ae" ], + "x-ms-request-id": [ "c781cee8-379e-4de3-93c0-6e37cfc5e6ae" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11873" ], - "x-ms-correlation-request-id": [ "50bee7f0-f141-4685-902d-c2df31cff411" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T041636Z:50bee7f0-f141-4685-902d-c2df31cff411" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11863" ], + "x-ms-correlation-request-id": [ "5ab19cd1-51df-4f44-8b62-9feecd27e193" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T113213Z:5ab19cd1-51df-4f44-8b62-9feecd27e193" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:16:36 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:32:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"fe746fcd-e525-4df8-a69c-ac894cd81258\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:16:04.62Z\"}" + "Content": "{\"name\":\"6657b98a-0363-4cc7-89ac-3a1906ebec9c\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:31:42.713Z\"}" } }, - "Restart-AzPostgreSqlServer+[NoContext]+Restart+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/fe746fcd-e525-4df8-a69c-ac894cd81258?api-version=2017-12-01+4": { + "Restart-AzPostgreSqlServer+[NoContext]+Restart+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/6657b98a-0363-4cc7-89ac-3a1906ebec9c?api-version=2017-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/fe746fcd-e525-4df8-a69c-ac894cd81258?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/6657b98a-0363-4cc7-89ac-3a1906ebec9c?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "164", "165", "166", "167" ], - "x-ms-client-request-id": [ "c697aaa6-3a42-4227-97c2-80b2b183d346", "c697aaa6-3a42-4227-97c2-80b2b183d346", "c697aaa6-3a42-4227-97c2-80b2b183d346", "c697aaa6-3a42-4227-97c2-80b2b183d346" ], + "x-ms-unique-id": [ "176", "177", "178", "179" ], + "x-ms-client-request-id": [ "46ef359e-9278-4d02-bda2-be3b5acc277c", "46ef359e-9278-4d02-bda2-be3b5acc277c", "46ef359e-9278-4d02-bda2-be3b5acc277c", "46ef359e-9278-4d02-bda2-be3b5acc277c" ], "CommandName": [ "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer" ], "FullCommandName": [ "Restart-AzPostgreSqlServer_Restart", "Restart-AzPostgreSqlServer_Restart", "Restart-AzPostgreSqlServer_Restart", "Restart-AzPostgreSqlServer_Restart" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -144,31 +144,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "9ea28830-f1d5-4c83-aef6-76f866746d14" ], + "x-ms-request-id": [ "401066b4-0432-4120-8ea5-5d12fde749c8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11872" ], - "x-ms-correlation-request-id": [ "6099ca80-3581-4ebc-a5fc-6e1fd9da7cc4" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T041651Z:6099ca80-3581-4ebc-a5fc-6e1fd9da7cc4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11862" ], + "x-ms-correlation-request-id": [ "51f3280b-8626-4267-b342-1309f1171715" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T113228Z:51f3280b-8626-4267-b342-1309f1171715" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:16:51 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:32:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"fe746fcd-e525-4df8-a69c-ac894cd81258\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:16:04.62Z\"}" + "Content": "{\"name\":\"6657b98a-0363-4cc7-89ac-3a1906ebec9c\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:31:42.713Z\"}" } }, - "Restart-AzPostgreSqlServer+[NoContext]+Restart+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/fe746fcd-e525-4df8-a69c-ac894cd81258?api-version=2017-12-01+5": { + "Restart-AzPostgreSqlServer+[NoContext]+Restart+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/6657b98a-0363-4cc7-89ac-3a1906ebec9c?api-version=2017-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/fe746fcd-e525-4df8-a69c-ac894cd81258?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/6657b98a-0363-4cc7-89ac-3a1906ebec9c?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "164", "165", "166", "167", "168" ], - "x-ms-client-request-id": [ "c697aaa6-3a42-4227-97c2-80b2b183d346", "c697aaa6-3a42-4227-97c2-80b2b183d346", "c697aaa6-3a42-4227-97c2-80b2b183d346", "c697aaa6-3a42-4227-97c2-80b2b183d346", "c697aaa6-3a42-4227-97c2-80b2b183d346" ], + "x-ms-unique-id": [ "176", "177", "178", "179", "180" ], + "x-ms-client-request-id": [ "46ef359e-9278-4d02-bda2-be3b5acc277c", "46ef359e-9278-4d02-bda2-be3b5acc277c", "46ef359e-9278-4d02-bda2-be3b5acc277c", "46ef359e-9278-4d02-bda2-be3b5acc277c", "46ef359e-9278-4d02-bda2-be3b5acc277c" ], "CommandName": [ "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer" ], "FullCommandName": [ "Restart-AzPostgreSqlServer_Restart", "Restart-AzPostgreSqlServer_Restart", "Restart-AzPostgreSqlServer_Restart", "Restart-AzPostgreSqlServer_Restart", "Restart-AzPostgreSqlServer_Restart" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -184,31 +184,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "3dc644bc-bf91-4873-9003-73c3a3f8c28f" ], + "x-ms-request-id": [ "602f3e01-e2f8-4ece-a257-32e804b83934" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11861" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11871" ], - "x-ms-correlation-request-id": [ "ed447b5b-9ca5-4e9c-88d8-8e18f1b2db19" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T041706Z:ed447b5b-9ca5-4e9c-88d8-8e18f1b2db19" ], + "x-ms-correlation-request-id": [ "02acdfe1-8247-448e-98de-a58b15907e25" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T113244Z:02acdfe1-8247-448e-98de-a58b15907e25" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:17:06 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:32:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"fe746fcd-e525-4df8-a69c-ac894cd81258\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:16:04.62Z\"}" + "Content": "{\"name\":\"6657b98a-0363-4cc7-89ac-3a1906ebec9c\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:31:42.713Z\"}" } }, - "Restart-AzPostgreSqlServer+[NoContext]+Restart+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/fe746fcd-e525-4df8-a69c-ac894cd81258?api-version=2017-12-01+6": { + "Restart-AzPostgreSqlServer+[NoContext]+Restart+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/6657b98a-0363-4cc7-89ac-3a1906ebec9c?api-version=2017-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/fe746fcd-e525-4df8-a69c-ac894cd81258?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/6657b98a-0363-4cc7-89ac-3a1906ebec9c?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "164", "165", "166", "167", "168", "169" ], - "x-ms-client-request-id": [ "c697aaa6-3a42-4227-97c2-80b2b183d346", "c697aaa6-3a42-4227-97c2-80b2b183d346", "c697aaa6-3a42-4227-97c2-80b2b183d346", "c697aaa6-3a42-4227-97c2-80b2b183d346", "c697aaa6-3a42-4227-97c2-80b2b183d346", "c697aaa6-3a42-4227-97c2-80b2b183d346" ], + "x-ms-unique-id": [ "176", "177", "178", "179", "180", "181" ], + "x-ms-client-request-id": [ "46ef359e-9278-4d02-bda2-be3b5acc277c", "46ef359e-9278-4d02-bda2-be3b5acc277c", "46ef359e-9278-4d02-bda2-be3b5acc277c", "46ef359e-9278-4d02-bda2-be3b5acc277c", "46ef359e-9278-4d02-bda2-be3b5acc277c", "46ef359e-9278-4d02-bda2-be3b5acc277c" ], "CommandName": [ "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer" ], "FullCommandName": [ "Restart-AzPostgreSqlServer_Restart", "Restart-AzPostgreSqlServer_Restart", "Restart-AzPostgreSqlServer_Restart", "Restart-AzPostgreSqlServer_Restart", "Restart-AzPostgreSqlServer_Restart", "Restart-AzPostgreSqlServer_Restart" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -224,31 +224,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "376ca205-7a45-406b-8243-e7eb1de888d2" ], + "x-ms-request-id": [ "8c89826d-b280-4530-b42a-d7d63ecf9fe7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11870" ], - "x-ms-correlation-request-id": [ "8b3093ec-538f-4198-b394-e9b732cd85e5" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T041722Z:8b3093ec-538f-4198-b394-e9b732cd85e5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11860" ], + "x-ms-correlation-request-id": [ "c2576586-3bfe-4971-9ad9-f50ff085743b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T113259Z:c2576586-3bfe-4971-9ad9-f50ff085743b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:17:21 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:32:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"fe746fcd-e525-4df8-a69c-ac894cd81258\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:16:04.62Z\"}" + "Content": "{\"name\":\"6657b98a-0363-4cc7-89ac-3a1906ebec9c\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:31:42.713Z\"}" } }, - "Restart-AzPostgreSqlServer+[NoContext]+Restart+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/fe746fcd-e525-4df8-a69c-ac894cd81258?api-version=2017-12-01+7": { + "Restart-AzPostgreSqlServer+[NoContext]+Restart+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/6657b98a-0363-4cc7-89ac-3a1906ebec9c?api-version=2017-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/fe746fcd-e525-4df8-a69c-ac894cd81258?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/6657b98a-0363-4cc7-89ac-3a1906ebec9c?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "164", "165", "166", "167", "168", "169", "170" ], - "x-ms-client-request-id": [ "c697aaa6-3a42-4227-97c2-80b2b183d346", "c697aaa6-3a42-4227-97c2-80b2b183d346", "c697aaa6-3a42-4227-97c2-80b2b183d346", "c697aaa6-3a42-4227-97c2-80b2b183d346", "c697aaa6-3a42-4227-97c2-80b2b183d346", "c697aaa6-3a42-4227-97c2-80b2b183d346", "c697aaa6-3a42-4227-97c2-80b2b183d346" ], + "x-ms-unique-id": [ "176", "177", "178", "179", "180", "181", "182" ], + "x-ms-client-request-id": [ "46ef359e-9278-4d02-bda2-be3b5acc277c", "46ef359e-9278-4d02-bda2-be3b5acc277c", "46ef359e-9278-4d02-bda2-be3b5acc277c", "46ef359e-9278-4d02-bda2-be3b5acc277c", "46ef359e-9278-4d02-bda2-be3b5acc277c", "46ef359e-9278-4d02-bda2-be3b5acc277c", "46ef359e-9278-4d02-bda2-be3b5acc277c" ], "CommandName": [ "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer" ], "FullCommandName": [ "Restart-AzPostgreSqlServer_Restart", "Restart-AzPostgreSqlServer_Restart", "Restart-AzPostgreSqlServer_Restart", "Restart-AzPostgreSqlServer_Restart", "Restart-AzPostgreSqlServer_Restart", "Restart-AzPostgreSqlServer_Restart", "Restart-AzPostgreSqlServer_Restart" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -264,31 +264,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "21fbad60-efdf-417f-a441-e3952ad7e599" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11869" ], + "x-ms-request-id": [ "f5e32972-56dd-4960-bace-5f23be95e6f7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "b993ecd9-aba6-4c46-a4ac-ebc45371c143" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T041737Z:b993ecd9-aba6-4c46-a4ac-ebc45371c143" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11859" ], + "x-ms-correlation-request-id": [ "8eb7581f-7008-40e0-9761-ec543e4c3adb" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T113314Z:8eb7581f-7008-40e0-9761-ec543e4c3adb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:17:36 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:33:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"fe746fcd-e525-4df8-a69c-ac894cd81258\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:16:04.62Z\"}" + "Content": "{\"name\":\"6657b98a-0363-4cc7-89ac-3a1906ebec9c\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:31:42.713Z\"}" } }, - "Restart-AzPostgreSqlServer+[NoContext]+Restart+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/fe746fcd-e525-4df8-a69c-ac894cd81258?api-version=2017-12-01+8": { + "Restart-AzPostgreSqlServer+[NoContext]+Restart+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/6657b98a-0363-4cc7-89ac-3a1906ebec9c?api-version=2017-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/fe746fcd-e525-4df8-a69c-ac894cd81258?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/6657b98a-0363-4cc7-89ac-3a1906ebec9c?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "164", "165", "166", "167", "168", "169", "170", "171" ], - "x-ms-client-request-id": [ "c697aaa6-3a42-4227-97c2-80b2b183d346", "c697aaa6-3a42-4227-97c2-80b2b183d346", "c697aaa6-3a42-4227-97c2-80b2b183d346", "c697aaa6-3a42-4227-97c2-80b2b183d346", "c697aaa6-3a42-4227-97c2-80b2b183d346", "c697aaa6-3a42-4227-97c2-80b2b183d346", "c697aaa6-3a42-4227-97c2-80b2b183d346", "c697aaa6-3a42-4227-97c2-80b2b183d346" ], + "x-ms-unique-id": [ "176", "177", "178", "179", "180", "181", "182", "183" ], + "x-ms-client-request-id": [ "46ef359e-9278-4d02-bda2-be3b5acc277c", "46ef359e-9278-4d02-bda2-be3b5acc277c", "46ef359e-9278-4d02-bda2-be3b5acc277c", "46ef359e-9278-4d02-bda2-be3b5acc277c", "46ef359e-9278-4d02-bda2-be3b5acc277c", "46ef359e-9278-4d02-bda2-be3b5acc277c", "46ef359e-9278-4d02-bda2-be3b5acc277c", "46ef359e-9278-4d02-bda2-be3b5acc277c" ], "CommandName": [ "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer" ], "FullCommandName": [ "Restart-AzPostgreSqlServer_Restart", "Restart-AzPostgreSqlServer_Restart", "Restart-AzPostgreSqlServer_Restart", "Restart-AzPostgreSqlServer_Restart", "Restart-AzPostgreSqlServer_Restart", "Restart-AzPostgreSqlServer_Restart", "Restart-AzPostgreSqlServer_Restart", "Restart-AzPostgreSqlServer_Restart" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -304,31 +304,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "f9d68c94-9d5a-4a0b-b6cd-8ca2a421502e" ], + "x-ms-request-id": [ "1726fcd1-30a9-434b-8772-4bd86546f417" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11868" ], - "x-ms-correlation-request-id": [ "868e8367-90d3-4b33-a754-ca217ee853bf" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T041753Z:868e8367-90d3-4b33-a754-ca217ee853bf" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11858" ], + "x-ms-correlation-request-id": [ "d054fb9d-178e-427a-ae44-ef5f9c2961ae" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T113330Z:d054fb9d-178e-427a-ae44-ef5f9c2961ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:17:52 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:33:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"fe746fcd-e525-4df8-a69c-ac894cd81258\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:16:04.62Z\"}" + "Content": "{\"name\":\"6657b98a-0363-4cc7-89ac-3a1906ebec9c\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:31:42.713Z\"}" } }, - "Restart-AzPostgreSqlServer+[NoContext]+Restart+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/fe746fcd-e525-4df8-a69c-ac894cd81258?api-version=2017-12-01+9": { + "Restart-AzPostgreSqlServer+[NoContext]+Restart+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/6657b98a-0363-4cc7-89ac-3a1906ebec9c?api-version=2017-12-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/fe746fcd-e525-4df8-a69c-ac894cd81258?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/6657b98a-0363-4cc7-89ac-3a1906ebec9c?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "164", "165", "166", "167", "168", "169", "170", "171", "172" ], - "x-ms-client-request-id": [ "c697aaa6-3a42-4227-97c2-80b2b183d346", "c697aaa6-3a42-4227-97c2-80b2b183d346", "c697aaa6-3a42-4227-97c2-80b2b183d346", "c697aaa6-3a42-4227-97c2-80b2b183d346", "c697aaa6-3a42-4227-97c2-80b2b183d346", "c697aaa6-3a42-4227-97c2-80b2b183d346", "c697aaa6-3a42-4227-97c2-80b2b183d346", "c697aaa6-3a42-4227-97c2-80b2b183d346", "c697aaa6-3a42-4227-97c2-80b2b183d346" ], + "x-ms-unique-id": [ "176", "177", "178", "179", "180", "181", "182", "183", "184" ], + "x-ms-client-request-id": [ "46ef359e-9278-4d02-bda2-be3b5acc277c", "46ef359e-9278-4d02-bda2-be3b5acc277c", "46ef359e-9278-4d02-bda2-be3b5acc277c", "46ef359e-9278-4d02-bda2-be3b5acc277c", "46ef359e-9278-4d02-bda2-be3b5acc277c", "46ef359e-9278-4d02-bda2-be3b5acc277c", "46ef359e-9278-4d02-bda2-be3b5acc277c", "46ef359e-9278-4d02-bda2-be3b5acc277c", "46ef359e-9278-4d02-bda2-be3b5acc277c" ], "CommandName": [ "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer" ], "FullCommandName": [ "Restart-AzPostgreSqlServer_Restart", "Restart-AzPostgreSqlServer_Restart", "Restart-AzPostgreSqlServer_Restart", "Restart-AzPostgreSqlServer_Restart", "Restart-AzPostgreSqlServer_Restart", "Restart-AzPostgreSqlServer_Restart", "Restart-AzPostgreSqlServer_Restart", "Restart-AzPostgreSqlServer_Restart", "Restart-AzPostgreSqlServer_Restart" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -344,31 +344,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "a9165088-8d65-40f4-b1c1-84b586030c24" ], + "x-ms-request-id": [ "2f4b290f-5f29-4c1e-9163-f1f4fea78a2a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11867" ], - "x-ms-correlation-request-id": [ "fe6abfd8-c1eb-47be-b922-b8b523bb5204" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T041808Z:fe6abfd8-c1eb-47be-b922-b8b523bb5204" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11857" ], + "x-ms-correlation-request-id": [ "95008a4a-a176-4024-a9a8-b5a002af075c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T113345Z:95008a4a-a176-4024-a9a8-b5a002af075c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:18:07 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:33:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "106" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"fe746fcd-e525-4df8-a69c-ac894cd81258\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-08T04:16:04.62Z\"}" + "Content": "{\"name\":\"6657b98a-0363-4cc7-89ac-3a1906ebec9c\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:31:42.713Z\"}" } }, - "Restart-AzPostgreSqlServer+[NoContext]+Restart+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/fe746fcd-e525-4df8-a69c-ac894cd81258?api-version=2017-12-01+10": { + "Restart-AzPostgreSqlServer+[NoContext]+Restart+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/6657b98a-0363-4cc7-89ac-3a1906ebec9c?api-version=2017-12-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/fe746fcd-e525-4df8-a69c-ac894cd81258?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/6657b98a-0363-4cc7-89ac-3a1906ebec9c?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "164", "165", "166", "167", "168", "169", "170", "171", "172", "173" ], - "x-ms-client-request-id": [ "c697aaa6-3a42-4227-97c2-80b2b183d346", "c697aaa6-3a42-4227-97c2-80b2b183d346", "c697aaa6-3a42-4227-97c2-80b2b183d346", "c697aaa6-3a42-4227-97c2-80b2b183d346", "c697aaa6-3a42-4227-97c2-80b2b183d346", "c697aaa6-3a42-4227-97c2-80b2b183d346", "c697aaa6-3a42-4227-97c2-80b2b183d346", "c697aaa6-3a42-4227-97c2-80b2b183d346", "c697aaa6-3a42-4227-97c2-80b2b183d346", "c697aaa6-3a42-4227-97c2-80b2b183d346" ], + "x-ms-unique-id": [ "176", "177", "178", "179", "180", "181", "182", "183", "184", "185" ], + "x-ms-client-request-id": [ "46ef359e-9278-4d02-bda2-be3b5acc277c", "46ef359e-9278-4d02-bda2-be3b5acc277c", "46ef359e-9278-4d02-bda2-be3b5acc277c", "46ef359e-9278-4d02-bda2-be3b5acc277c", "46ef359e-9278-4d02-bda2-be3b5acc277c", "46ef359e-9278-4d02-bda2-be3b5acc277c", "46ef359e-9278-4d02-bda2-be3b5acc277c", "46ef359e-9278-4d02-bda2-be3b5acc277c", "46ef359e-9278-4d02-bda2-be3b5acc277c", "46ef359e-9278-4d02-bda2-be3b5acc277c" ], "CommandName": [ "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer" ], "FullCommandName": [ "Restart-AzPostgreSqlServer_Restart", "Restart-AzPostgreSqlServer_Restart", "Restart-AzPostgreSqlServer_Restart", "Restart-AzPostgreSqlServer_Restart", "Restart-AzPostgreSqlServer_Restart", "Restart-AzPostgreSqlServer_Restart", "Restart-AzPostgreSqlServer_Restart", "Restart-AzPostgreSqlServer_Restart", "Restart-AzPostgreSqlServer_Restart", "Restart-AzPostgreSqlServer_Restart" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -383,14 +383,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "786fddfb-3526-4540-948a-bc52dab3b93a" ], + "x-ms-request-id": [ "f91c7163-f341-48fa-b1d9-77622f7fca3e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11866" ], - "x-ms-correlation-request-id": [ "56de8e02-8a3e-459c-abf2-6d09942fc076" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T041809Z:56de8e02-8a3e-459c-abf2-6d09942fc076" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11856" ], + "x-ms-correlation-request-id": [ "1f017d2b-7c4d-4fc3-80dd-e92bcc12424a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T113346Z:1f017d2b-7c4d-4fc3-80dd-e92bcc12424a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:18:08 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:33:45 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -405,8 +405,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/restart?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "174" ], - "x-ms-client-request-id": [ "244f18b5-421b-4db1-b264-986fa01c4cd9" ], + "x-ms-unique-id": [ "186" ], + "x-ms-client-request-id": [ "af0375d4-18ca-4195-8ec9-692a4a88b95b" ], "CommandName": [ "Restart-AzPostgreSqlServer" ], "FullCommandName": [ "Restart-AzPostgreSqlServer_RestartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -421,34 +421,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/87898b5e-a549-474e-8475-600eb6120c0d?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/06fe70cb-50ec-442f-a66b-e02a36765c41?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/87898b5e-a549-474e-8475-600eb6120c0d?api-version=2017-12-01" ], - "x-ms-request-id": [ "87898b5e-a549-474e-8475-600eb6120c0d" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/06fe70cb-50ec-442f-a66b-e02a36765c41?api-version=2017-12-01" ], + "x-ms-request-id": [ "06fe70cb-50ec-442f-a66b-e02a36765c41" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], - "x-ms-correlation-request-id": [ "ebe5ae37-4b78-4b95-a711-b52e94c2f261" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T041809Z:ebe5ae37-4b78-4b95-a711-b52e94c2f261" ], + "x-ms-correlation-request-id": [ "52140938-774c-48b8-8a85-dc1350f07981" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T113346Z:52140938-774c-48b8-8a85-dc1350f07981" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:18:08 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:33:45 GMT" ] }, "ContentHeaders": { "Content-Length": [ "75" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"RestartElasticServer\",\"startTime\":\"2020-05-08T04:18:09.493Z\"}" + "Content": "{\"operation\":\"RestartElasticServer\",\"startTime\":\"2020-09-25T11:33:46.387Z\"}" } }, - "Restart-AzPostgreSqlServer+[NoContext]+RestartViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/87898b5e-a549-474e-8475-600eb6120c0d?api-version=2017-12-01+2": { + "Restart-AzPostgreSqlServer+[NoContext]+RestartViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/06fe70cb-50ec-442f-a66b-e02a36765c41?api-version=2017-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/87898b5e-a549-474e-8475-600eb6120c0d?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/06fe70cb-50ec-442f-a66b-e02a36765c41?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "174", "175" ], - "x-ms-client-request-id": [ "244f18b5-421b-4db1-b264-986fa01c4cd9", "244f18b5-421b-4db1-b264-986fa01c4cd9" ], + "x-ms-unique-id": [ "186", "187" ], + "x-ms-client-request-id": [ "af0375d4-18ca-4195-8ec9-692a4a88b95b", "af0375d4-18ca-4195-8ec9-692a4a88b95b" ], "CommandName": [ "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer" ], "FullCommandName": [ "Restart-AzPostgreSqlServer_RestartViaIdentity", "Restart-AzPostgreSqlServer_RestartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -464,31 +464,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "d89e6edf-0e15-4d15-9486-253f02f675c5" ], + "x-ms-request-id": [ "e01f6704-2a99-4a77-9f71-e58b1a421159" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11865" ], - "x-ms-correlation-request-id": [ "fb043e4b-8675-43bc-a613-f559fb7c4f5d" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T041824Z:fb043e4b-8675-43bc-a613-f559fb7c4f5d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11855" ], + "x-ms-correlation-request-id": [ "5e967e79-c78a-480f-9077-243e72d803e2" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T113402Z:5e967e79-c78a-480f-9077-243e72d803e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:18:24 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:34:01 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"87898b5e-a549-474e-8475-600eb6120c0d\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:18:09.493Z\"}" + "Content": "{\"name\":\"06fe70cb-50ec-442f-a66b-e02a36765c41\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:33:46.387Z\"}" } }, - "Restart-AzPostgreSqlServer+[NoContext]+RestartViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/87898b5e-a549-474e-8475-600eb6120c0d?api-version=2017-12-01+3": { + "Restart-AzPostgreSqlServer+[NoContext]+RestartViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/06fe70cb-50ec-442f-a66b-e02a36765c41?api-version=2017-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/87898b5e-a549-474e-8475-600eb6120c0d?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/06fe70cb-50ec-442f-a66b-e02a36765c41?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "174", "175", "176" ], - "x-ms-client-request-id": [ "244f18b5-421b-4db1-b264-986fa01c4cd9", "244f18b5-421b-4db1-b264-986fa01c4cd9", "244f18b5-421b-4db1-b264-986fa01c4cd9" ], + "x-ms-unique-id": [ "186", "187", "188" ], + "x-ms-client-request-id": [ "af0375d4-18ca-4195-8ec9-692a4a88b95b", "af0375d4-18ca-4195-8ec9-692a4a88b95b", "af0375d4-18ca-4195-8ec9-692a4a88b95b" ], "CommandName": [ "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer" ], "FullCommandName": [ "Restart-AzPostgreSqlServer_RestartViaIdentity", "Restart-AzPostgreSqlServer_RestartViaIdentity", "Restart-AzPostgreSqlServer_RestartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -504,31 +504,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "c834d81b-50e3-44e1-8f41-009f440b4888" ], + "x-ms-request-id": [ "a4972f46-934c-4289-8fe2-84772283de74" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11864" ], - "x-ms-correlation-request-id": [ "130b0fc0-5c56-432d-9e3f-237bafc8f226" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T041840Z:130b0fc0-5c56-432d-9e3f-237bafc8f226" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11854" ], + "x-ms-correlation-request-id": [ "561ab150-9bd4-4ba3-8daf-b315615c6f78" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T113417Z:561ab150-9bd4-4ba3-8daf-b315615c6f78" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:18:40 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:34:16 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"87898b5e-a549-474e-8475-600eb6120c0d\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:18:09.493Z\"}" + "Content": "{\"name\":\"06fe70cb-50ec-442f-a66b-e02a36765c41\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:33:46.387Z\"}" } }, - "Restart-AzPostgreSqlServer+[NoContext]+RestartViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/87898b5e-a549-474e-8475-600eb6120c0d?api-version=2017-12-01+4": { + "Restart-AzPostgreSqlServer+[NoContext]+RestartViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/06fe70cb-50ec-442f-a66b-e02a36765c41?api-version=2017-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/87898b5e-a549-474e-8475-600eb6120c0d?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/06fe70cb-50ec-442f-a66b-e02a36765c41?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "174", "175", "176", "177" ], - "x-ms-client-request-id": [ "244f18b5-421b-4db1-b264-986fa01c4cd9", "244f18b5-421b-4db1-b264-986fa01c4cd9", "244f18b5-421b-4db1-b264-986fa01c4cd9", "244f18b5-421b-4db1-b264-986fa01c4cd9" ], + "x-ms-unique-id": [ "186", "187", "188", "189" ], + "x-ms-client-request-id": [ "af0375d4-18ca-4195-8ec9-692a4a88b95b", "af0375d4-18ca-4195-8ec9-692a4a88b95b", "af0375d4-18ca-4195-8ec9-692a4a88b95b", "af0375d4-18ca-4195-8ec9-692a4a88b95b" ], "CommandName": [ "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer" ], "FullCommandName": [ "Restart-AzPostgreSqlServer_RestartViaIdentity", "Restart-AzPostgreSqlServer_RestartViaIdentity", "Restart-AzPostgreSqlServer_RestartViaIdentity", "Restart-AzPostgreSqlServer_RestartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -544,31 +544,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "91f952dd-cf65-4afc-883e-b58eb01c75dd" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11863" ], + "x-ms-request-id": [ "4adea324-0791-4359-a715-246b4fcbe10d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "7e1aa63a-3ded-48cd-a3df-f88f0400d544" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T041855Z:7e1aa63a-3ded-48cd-a3df-f88f0400d544" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11853" ], + "x-ms-correlation-request-id": [ "6fd97c11-787f-4897-9fc7-23f26023de4f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T113432Z:6fd97c11-787f-4897-9fc7-23f26023de4f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:18:55 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:34:32 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"87898b5e-a549-474e-8475-600eb6120c0d\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:18:09.493Z\"}" + "Content": "{\"name\":\"06fe70cb-50ec-442f-a66b-e02a36765c41\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:33:46.387Z\"}" } }, - "Restart-AzPostgreSqlServer+[NoContext]+RestartViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/87898b5e-a549-474e-8475-600eb6120c0d?api-version=2017-12-01+5": { + "Restart-AzPostgreSqlServer+[NoContext]+RestartViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/06fe70cb-50ec-442f-a66b-e02a36765c41?api-version=2017-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/87898b5e-a549-474e-8475-600eb6120c0d?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/06fe70cb-50ec-442f-a66b-e02a36765c41?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "174", "175", "176", "177", "178" ], - "x-ms-client-request-id": [ "244f18b5-421b-4db1-b264-986fa01c4cd9", "244f18b5-421b-4db1-b264-986fa01c4cd9", "244f18b5-421b-4db1-b264-986fa01c4cd9", "244f18b5-421b-4db1-b264-986fa01c4cd9", "244f18b5-421b-4db1-b264-986fa01c4cd9" ], + "x-ms-unique-id": [ "186", "187", "188", "189", "190" ], + "x-ms-client-request-id": [ "af0375d4-18ca-4195-8ec9-692a4a88b95b", "af0375d4-18ca-4195-8ec9-692a4a88b95b", "af0375d4-18ca-4195-8ec9-692a4a88b95b", "af0375d4-18ca-4195-8ec9-692a4a88b95b", "af0375d4-18ca-4195-8ec9-692a4a88b95b" ], "CommandName": [ "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer" ], "FullCommandName": [ "Restart-AzPostgreSqlServer_RestartViaIdentity", "Restart-AzPostgreSqlServer_RestartViaIdentity", "Restart-AzPostgreSqlServer_RestartViaIdentity", "Restart-AzPostgreSqlServer_RestartViaIdentity", "Restart-AzPostgreSqlServer_RestartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -584,31 +584,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "3d2d64bd-3a79-4736-b9c6-6cb31e8c2c7c" ], + "x-ms-request-id": [ "4bf68825-af50-47d5-ae33-44f0e598b467" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11862" ], - "x-ms-correlation-request-id": [ "e2ba13e6-394d-4ae8-850e-7fc5635c3fe6" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T041911Z:e2ba13e6-394d-4ae8-850e-7fc5635c3fe6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11852" ], + "x-ms-correlation-request-id": [ "8bf2ba88-14c5-45fd-aea0-00786e084b14" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T113448Z:8bf2ba88-14c5-45fd-aea0-00786e084b14" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:19:11 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:34:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"87898b5e-a549-474e-8475-600eb6120c0d\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:18:09.493Z\"}" + "Content": "{\"name\":\"06fe70cb-50ec-442f-a66b-e02a36765c41\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:33:46.387Z\"}" } }, - "Restart-AzPostgreSqlServer+[NoContext]+RestartViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/87898b5e-a549-474e-8475-600eb6120c0d?api-version=2017-12-01+6": { + "Restart-AzPostgreSqlServer+[NoContext]+RestartViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/06fe70cb-50ec-442f-a66b-e02a36765c41?api-version=2017-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/87898b5e-a549-474e-8475-600eb6120c0d?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/06fe70cb-50ec-442f-a66b-e02a36765c41?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "174", "175", "176", "177", "178", "179" ], - "x-ms-client-request-id": [ "244f18b5-421b-4db1-b264-986fa01c4cd9", "244f18b5-421b-4db1-b264-986fa01c4cd9", "244f18b5-421b-4db1-b264-986fa01c4cd9", "244f18b5-421b-4db1-b264-986fa01c4cd9", "244f18b5-421b-4db1-b264-986fa01c4cd9", "244f18b5-421b-4db1-b264-986fa01c4cd9" ], + "x-ms-unique-id": [ "186", "187", "188", "189", "190", "191" ], + "x-ms-client-request-id": [ "af0375d4-18ca-4195-8ec9-692a4a88b95b", "af0375d4-18ca-4195-8ec9-692a4a88b95b", "af0375d4-18ca-4195-8ec9-692a4a88b95b", "af0375d4-18ca-4195-8ec9-692a4a88b95b", "af0375d4-18ca-4195-8ec9-692a4a88b95b", "af0375d4-18ca-4195-8ec9-692a4a88b95b" ], "CommandName": [ "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer" ], "FullCommandName": [ "Restart-AzPostgreSqlServer_RestartViaIdentity", "Restart-AzPostgreSqlServer_RestartViaIdentity", "Restart-AzPostgreSqlServer_RestartViaIdentity", "Restart-AzPostgreSqlServer_RestartViaIdentity", "Restart-AzPostgreSqlServer_RestartViaIdentity", "Restart-AzPostgreSqlServer_RestartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -624,31 +624,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "05da79a1-473c-418a-8a4c-6bcb029e7ae7" ], + "x-ms-request-id": [ "6d43bdd4-02e4-4ab7-9852-ece7aad91086" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11861" ], - "x-ms-correlation-request-id": [ "5d93e6ca-5144-47d2-90e8-3c65d7857d7d" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T041927Z:5d93e6ca-5144-47d2-90e8-3c65d7857d7d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11851" ], + "x-ms-correlation-request-id": [ "f26f3742-cfd6-4d43-bc84-8efbebeecc6c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T113503Z:f26f3742-cfd6-4d43-bc84-8efbebeecc6c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:19:26 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:35:03 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"87898b5e-a549-474e-8475-600eb6120c0d\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:18:09.493Z\"}" + "Content": "{\"name\":\"06fe70cb-50ec-442f-a66b-e02a36765c41\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:33:46.387Z\"}" } }, - "Restart-AzPostgreSqlServer+[NoContext]+RestartViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/87898b5e-a549-474e-8475-600eb6120c0d?api-version=2017-12-01+7": { + "Restart-AzPostgreSqlServer+[NoContext]+RestartViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/06fe70cb-50ec-442f-a66b-e02a36765c41?api-version=2017-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/87898b5e-a549-474e-8475-600eb6120c0d?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/06fe70cb-50ec-442f-a66b-e02a36765c41?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "174", "175", "176", "177", "178", "179", "180" ], - "x-ms-client-request-id": [ "244f18b5-421b-4db1-b264-986fa01c4cd9", "244f18b5-421b-4db1-b264-986fa01c4cd9", "244f18b5-421b-4db1-b264-986fa01c4cd9", "244f18b5-421b-4db1-b264-986fa01c4cd9", "244f18b5-421b-4db1-b264-986fa01c4cd9", "244f18b5-421b-4db1-b264-986fa01c4cd9", "244f18b5-421b-4db1-b264-986fa01c4cd9" ], + "x-ms-unique-id": [ "186", "187", "188", "189", "190", "191", "192" ], + "x-ms-client-request-id": [ "af0375d4-18ca-4195-8ec9-692a4a88b95b", "af0375d4-18ca-4195-8ec9-692a4a88b95b", "af0375d4-18ca-4195-8ec9-692a4a88b95b", "af0375d4-18ca-4195-8ec9-692a4a88b95b", "af0375d4-18ca-4195-8ec9-692a4a88b95b", "af0375d4-18ca-4195-8ec9-692a4a88b95b", "af0375d4-18ca-4195-8ec9-692a4a88b95b" ], "CommandName": [ "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer" ], "FullCommandName": [ "Restart-AzPostgreSqlServer_RestartViaIdentity", "Restart-AzPostgreSqlServer_RestartViaIdentity", "Restart-AzPostgreSqlServer_RestartViaIdentity", "Restart-AzPostgreSqlServer_RestartViaIdentity", "Restart-AzPostgreSqlServer_RestartViaIdentity", "Restart-AzPostgreSqlServer_RestartViaIdentity", "Restart-AzPostgreSqlServer_RestartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -664,31 +664,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "d6fd8e91-c700-4736-a3f1-92b7d9da576a" ], + "x-ms-request-id": [ "1e463c9a-077c-47a1-b7a1-67fbcfd8d196" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11860" ], - "x-ms-correlation-request-id": [ "b3f793f2-5298-4778-a01c-9bcc33a262e7" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T041942Z:b3f793f2-5298-4778-a01c-9bcc33a262e7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11850" ], + "x-ms-correlation-request-id": [ "e3b53f0a-314a-4a94-8dc5-193992c54f29" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T113518Z:e3b53f0a-314a-4a94-8dc5-193992c54f29" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:19:41 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:35:18 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"87898b5e-a549-474e-8475-600eb6120c0d\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:18:09.493Z\"}" + "Content": "{\"name\":\"06fe70cb-50ec-442f-a66b-e02a36765c41\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:33:46.387Z\"}" } }, - "Restart-AzPostgreSqlServer+[NoContext]+RestartViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/87898b5e-a549-474e-8475-600eb6120c0d?api-version=2017-12-01+8": { + "Restart-AzPostgreSqlServer+[NoContext]+RestartViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/06fe70cb-50ec-442f-a66b-e02a36765c41?api-version=2017-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/87898b5e-a549-474e-8475-600eb6120c0d?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/06fe70cb-50ec-442f-a66b-e02a36765c41?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "174", "175", "176", "177", "178", "179", "180", "181" ], - "x-ms-client-request-id": [ "244f18b5-421b-4db1-b264-986fa01c4cd9", "244f18b5-421b-4db1-b264-986fa01c4cd9", "244f18b5-421b-4db1-b264-986fa01c4cd9", "244f18b5-421b-4db1-b264-986fa01c4cd9", "244f18b5-421b-4db1-b264-986fa01c4cd9", "244f18b5-421b-4db1-b264-986fa01c4cd9", "244f18b5-421b-4db1-b264-986fa01c4cd9", "244f18b5-421b-4db1-b264-986fa01c4cd9" ], + "x-ms-unique-id": [ "186", "187", "188", "189", "190", "191", "192", "193" ], + "x-ms-client-request-id": [ "af0375d4-18ca-4195-8ec9-692a4a88b95b", "af0375d4-18ca-4195-8ec9-692a4a88b95b", "af0375d4-18ca-4195-8ec9-692a4a88b95b", "af0375d4-18ca-4195-8ec9-692a4a88b95b", "af0375d4-18ca-4195-8ec9-692a4a88b95b", "af0375d4-18ca-4195-8ec9-692a4a88b95b", "af0375d4-18ca-4195-8ec9-692a4a88b95b", "af0375d4-18ca-4195-8ec9-692a4a88b95b" ], "CommandName": [ "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer" ], "FullCommandName": [ "Restart-AzPostgreSqlServer_RestartViaIdentity", "Restart-AzPostgreSqlServer_RestartViaIdentity", "Restart-AzPostgreSqlServer_RestartViaIdentity", "Restart-AzPostgreSqlServer_RestartViaIdentity", "Restart-AzPostgreSqlServer_RestartViaIdentity", "Restart-AzPostgreSqlServer_RestartViaIdentity", "Restart-AzPostgreSqlServer_RestartViaIdentity", "Restart-AzPostgreSqlServer_RestartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -704,31 +704,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "9ad022dc-0c4a-4196-b31c-f5f5f543f206" ], + "x-ms-request-id": [ "7e1de38e-e256-4653-8e8b-6c58ded7ddc0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11859" ], - "x-ms-correlation-request-id": [ "bf0a7f13-5562-48b0-b961-d84d85296a25" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T041957Z:bf0a7f13-5562-48b0-b961-d84d85296a25" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11849" ], + "x-ms-correlation-request-id": [ "4566f578-afd3-4e28-b0f4-0ee6449b753c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T113534Z:4566f578-afd3-4e28-b0f4-0ee6449b753c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:19:56 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:35:33 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"87898b5e-a549-474e-8475-600eb6120c0d\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:18:09.493Z\"}" + "Content": "{\"name\":\"06fe70cb-50ec-442f-a66b-e02a36765c41\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:33:46.387Z\"}" } }, - "Restart-AzPostgreSqlServer+[NoContext]+RestartViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/87898b5e-a549-474e-8475-600eb6120c0d?api-version=2017-12-01+9": { + "Restart-AzPostgreSqlServer+[NoContext]+RestartViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/06fe70cb-50ec-442f-a66b-e02a36765c41?api-version=2017-12-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/87898b5e-a549-474e-8475-600eb6120c0d?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/06fe70cb-50ec-442f-a66b-e02a36765c41?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "174", "175", "176", "177", "178", "179", "180", "181", "182" ], - "x-ms-client-request-id": [ "244f18b5-421b-4db1-b264-986fa01c4cd9", "244f18b5-421b-4db1-b264-986fa01c4cd9", "244f18b5-421b-4db1-b264-986fa01c4cd9", "244f18b5-421b-4db1-b264-986fa01c4cd9", "244f18b5-421b-4db1-b264-986fa01c4cd9", "244f18b5-421b-4db1-b264-986fa01c4cd9", "244f18b5-421b-4db1-b264-986fa01c4cd9", "244f18b5-421b-4db1-b264-986fa01c4cd9", "244f18b5-421b-4db1-b264-986fa01c4cd9" ], + "x-ms-unique-id": [ "186", "187", "188", "189", "190", "191", "192", "193", "194" ], + "x-ms-client-request-id": [ "af0375d4-18ca-4195-8ec9-692a4a88b95b", "af0375d4-18ca-4195-8ec9-692a4a88b95b", "af0375d4-18ca-4195-8ec9-692a4a88b95b", "af0375d4-18ca-4195-8ec9-692a4a88b95b", "af0375d4-18ca-4195-8ec9-692a4a88b95b", "af0375d4-18ca-4195-8ec9-692a4a88b95b", "af0375d4-18ca-4195-8ec9-692a4a88b95b", "af0375d4-18ca-4195-8ec9-692a4a88b95b", "af0375d4-18ca-4195-8ec9-692a4a88b95b" ], "CommandName": [ "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer" ], "FullCommandName": [ "Restart-AzPostgreSqlServer_RestartViaIdentity", "Restart-AzPostgreSqlServer_RestartViaIdentity", "Restart-AzPostgreSqlServer_RestartViaIdentity", "Restart-AzPostgreSqlServer_RestartViaIdentity", "Restart-AzPostgreSqlServer_RestartViaIdentity", "Restart-AzPostgreSqlServer_RestartViaIdentity", "Restart-AzPostgreSqlServer_RestartViaIdentity", "Restart-AzPostgreSqlServer_RestartViaIdentity", "Restart-AzPostgreSqlServer_RestartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -744,31 +744,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "e6b5f204-4d2b-4e91-9b84-1dcdc2f2c1ed" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11858" ], + "x-ms-request-id": [ "0e6f59a2-4984-4c3f-ad46-ed4a80e1c1bd" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "c973a47d-b709-466a-9ff4-3cf35aff13f6" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T042013Z:c973a47d-b709-466a-9ff4-3cf35aff13f6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11848" ], + "x-ms-correlation-request-id": [ "7f7c235f-038e-41ec-8974-59917a311b24" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T113549Z:7f7c235f-038e-41ec-8974-59917a311b24" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:20:12 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:35:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"87898b5e-a549-474e-8475-600eb6120c0d\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-08T04:18:09.493Z\"}" + "Content": "{\"name\":\"06fe70cb-50ec-442f-a66b-e02a36765c41\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:33:46.387Z\"}" } }, - "Restart-AzPostgreSqlServer+[NoContext]+RestartViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/87898b5e-a549-474e-8475-600eb6120c0d?api-version=2017-12-01+10": { + "Restart-AzPostgreSqlServer+[NoContext]+RestartViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/06fe70cb-50ec-442f-a66b-e02a36765c41?api-version=2017-12-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/87898b5e-a549-474e-8475-600eb6120c0d?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/06fe70cb-50ec-442f-a66b-e02a36765c41?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "174", "175", "176", "177", "178", "179", "180", "181", "182", "183" ], - "x-ms-client-request-id": [ "244f18b5-421b-4db1-b264-986fa01c4cd9", "244f18b5-421b-4db1-b264-986fa01c4cd9", "244f18b5-421b-4db1-b264-986fa01c4cd9", "244f18b5-421b-4db1-b264-986fa01c4cd9", "244f18b5-421b-4db1-b264-986fa01c4cd9", "244f18b5-421b-4db1-b264-986fa01c4cd9", "244f18b5-421b-4db1-b264-986fa01c4cd9", "244f18b5-421b-4db1-b264-986fa01c4cd9", "244f18b5-421b-4db1-b264-986fa01c4cd9", "244f18b5-421b-4db1-b264-986fa01c4cd9" ], + "x-ms-unique-id": [ "186", "187", "188", "189", "190", "191", "192", "193", "194", "195" ], + "x-ms-client-request-id": [ "af0375d4-18ca-4195-8ec9-692a4a88b95b", "af0375d4-18ca-4195-8ec9-692a4a88b95b", "af0375d4-18ca-4195-8ec9-692a4a88b95b", "af0375d4-18ca-4195-8ec9-692a4a88b95b", "af0375d4-18ca-4195-8ec9-692a4a88b95b", "af0375d4-18ca-4195-8ec9-692a4a88b95b", "af0375d4-18ca-4195-8ec9-692a4a88b95b", "af0375d4-18ca-4195-8ec9-692a4a88b95b", "af0375d4-18ca-4195-8ec9-692a4a88b95b", "af0375d4-18ca-4195-8ec9-692a4a88b95b" ], "CommandName": [ "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer", "Restart-AzPostgreSqlServer" ], "FullCommandName": [ "Restart-AzPostgreSqlServer_RestartViaIdentity", "Restart-AzPostgreSqlServer_RestartViaIdentity", "Restart-AzPostgreSqlServer_RestartViaIdentity", "Restart-AzPostgreSqlServer_RestartViaIdentity", "Restart-AzPostgreSqlServer_RestartViaIdentity", "Restart-AzPostgreSqlServer_RestartViaIdentity", "Restart-AzPostgreSqlServer_RestartViaIdentity", "Restart-AzPostgreSqlServer_RestartViaIdentity", "Restart-AzPostgreSqlServer_RestartViaIdentity", "Restart-AzPostgreSqlServer_RestartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -783,14 +783,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "92f7024b-a9d2-4412-adc9-9732f637cd0f" ], + "x-ms-request-id": [ "6faf023e-8f19-4981-8272-415cb5ed80ed" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11857" ], - "x-ms-correlation-request-id": [ "102ecfba-a0eb-4fcf-87ab-1c522ac5339c" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T042014Z:102ecfba-a0eb-4fcf-87ab-1c522ac5339c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11847" ], + "x-ms-correlation-request-id": [ "084346e8-8f3f-4757-991e-4db048c9c267" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T113549Z:084346e8-8f3f-4757-991e-4db048c9c267" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:20:14 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:35:49 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/PostgreSql/test/Restore-AzPostgreSqlServer.Recording.json b/src/PostgreSql/test/Restore-AzPostgreSqlServer.Recording.json index 00b42c588f48..088b8f875d60 100644 --- a/src/PostgreSql/test/Restore-AzPostgreSqlServer.Recording.json +++ b/src/PostgreSql/test/Restore-AzPostgreSqlServer.Recording.json @@ -5,8 +5,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "184" ], - "x-ms-client-request-id": [ "ddf2621d-3e11-4a40-901d-c4c144858bef" ], + "x-ms-unique-id": [ "196" ], + "x-ms-client-request-id": [ "42d475e9-d5c8-4dea-b84e-eda66cf26f63" ], "CommandName": [ "Get-AzPostgreSqlServer" ], "FullCommandName": [ "Get-AzPostgreSqlServer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -21,33 +21,33 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "1e1f128f-e622-4830-8b3d-cca084b2c48c" ], + "x-ms-request-id": [ "4a659cb4-a7ce-4852-a570-f97531895e8a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11856" ], - "x-ms-correlation-request-id": [ "0986f675-4917-4276-8765-4e43d6827abb" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T042025Z:0986f675-4917-4276-8765-4e43d6827abb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11846" ], + "x-ms-correlation-request-id": [ "7d2e87cb-088c-4ff1-9164-81cc5b65f9e8" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T113550Z:7d2e87cb-088c-4ff1-9164-81cc5b65f9e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:20:24 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:35:49 GMT" ] }, "ContentHeaders": { "Content-Length": [ "943" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"postgresql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-05-08T03:54:02.197+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\",\"name\":\"postgresql-test-100\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}" + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"postgresql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-09-25T11:09:04.307+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\",\"name\":\"postgresql-test-100\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}" } }, "Restore-AzPostgreSqlServer+[NoContext]+GeoRestore+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100-replica?api-version=2017-12-01+2": { "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100-replica?api-version=2017-12-01", - "Content": "{\n \"properties\": {\n \"createMode\": \"Replica\",\n \"sourceServerId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\"\n },\n \"location\": \"eastus\"\n}", + "Content": "{\r\n \"properties\": {\r\n \"createMode\": \"Replica\",\r\n \"sourceServerId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\"\r\n },\r\n \"location\": \"eastus\"\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "248" ] + "Content-Length": [ "254" ] } }, "Response": { @@ -55,34 +55,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/beedfa79-a895-44d7-9236-fe14761ac289?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/04bf9aff-46cc-48c5-a470-2a8c7f5d16c8?api-version=2017-12-01" ], "Retry-After": [ "30" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/beedfa79-a895-44d7-9236-fe14761ac289?api-version=2017-12-01" ], - "x-ms-request-id": [ "beedfa79-a895-44d7-9236-fe14761ac289" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/04bf9aff-46cc-48c5-a470-2a8c7f5d16c8?api-version=2017-12-01" ], + "x-ms-request-id": [ "04bf9aff-46cc-48c5-a470-2a8c7f5d16c8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1181" ], - "x-ms-correlation-request-id": [ "ff8e9482-163f-4f33-840c-0a2aa507f3ee" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T042030Z:ff8e9482-163f-4f33-840c-0a2aa507f3ee" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1177" ], + "x-ms-correlation-request-id": [ "0ead85ba-c601-40e9-b29b-0f9580b349a6" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T113556Z:0ead85ba-c601-40e9-b29b-0f9580b349a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:20:30 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:35:55 GMT" ] }, "ContentHeaders": { "Content-Length": [ "88" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"CreateElasticServerContinuousCopy\",\"startTime\":\"2020-05-08T04:20:30.573Z\"}" + "Content": "{\"operation\":\"CreateElasticServerContinuousCopy\",\"startTime\":\"2020-09-25T11:35:56.307Z\"}" } }, - "Restore-AzPostgreSqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/beedfa79-a895-44d7-9236-fe14761ac289?api-version=2017-12-01+3": { + "Restore-AzPostgreSqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/04bf9aff-46cc-48c5-a470-2a8c7f5d16c8?api-version=2017-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/beedfa79-a895-44d7-9236-fe14761ac289?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/04bf9aff-46cc-48c5-a470-2a8c7f5d16c8?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "185", "186" ], - "x-ms-client-request-id": [ "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b" ], + "x-ms-unique-id": [ "197", "198" ], + "x-ms-client-request-id": [ "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -98,31 +98,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "5f954c99-acbb-4f8e-83f9-1fb311850c53" ], + "x-ms-request-id": [ "6f90903c-fc5e-45e6-80cc-af8816b2bbac" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11855" ], - "x-ms-correlation-request-id": [ "2264e56d-2b0a-4132-9b95-23356bddc383" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T042101Z:2264e56d-2b0a-4132-9b95-23356bddc383" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11845" ], + "x-ms-correlation-request-id": [ "46aaff9b-7bcf-4534-a273-f3408f25e007" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T113626Z:46aaff9b-7bcf-4534-a273-f3408f25e007" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:21:00 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:36:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"beedfa79-a895-44d7-9236-fe14761ac289\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:20:30.573Z\"}" + "Content": "{\"name\":\"04bf9aff-46cc-48c5-a470-2a8c7f5d16c8\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:35:56.307Z\"}" } }, - "Restore-AzPostgreSqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/beedfa79-a895-44d7-9236-fe14761ac289?api-version=2017-12-01+4": { + "Restore-AzPostgreSqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/04bf9aff-46cc-48c5-a470-2a8c7f5d16c8?api-version=2017-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/beedfa79-a895-44d7-9236-fe14761ac289?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/04bf9aff-46cc-48c5-a470-2a8c7f5d16c8?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "185", "186", "187" ], - "x-ms-client-request-id": [ "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b" ], + "x-ms-unique-id": [ "197", "198", "199" ], + "x-ms-client-request-id": [ "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -138,31 +138,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "04fcc159-656b-4cef-be28-f8e52cb3389b" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11854" ], + "x-ms-request-id": [ "fff58a65-33a3-450d-a1cd-d0511e43ad79" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "8cbb0890-db53-4914-bbcd-51c9034f27fb" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T042131Z:8cbb0890-db53-4914-bbcd-51c9034f27fb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11844" ], + "x-ms-correlation-request-id": [ "02ce1d6d-3808-4c91-acea-126dc16845b0" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T113657Z:02ce1d6d-3808-4c91-acea-126dc16845b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:21:30 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:36:56 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"beedfa79-a895-44d7-9236-fe14761ac289\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:20:30.573Z\"}" + "Content": "{\"name\":\"04bf9aff-46cc-48c5-a470-2a8c7f5d16c8\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:35:56.307Z\"}" } }, - "Restore-AzPostgreSqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/beedfa79-a895-44d7-9236-fe14761ac289?api-version=2017-12-01+5": { + "Restore-AzPostgreSqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/04bf9aff-46cc-48c5-a470-2a8c7f5d16c8?api-version=2017-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/beedfa79-a895-44d7-9236-fe14761ac289?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/04bf9aff-46cc-48c5-a470-2a8c7f5d16c8?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "185", "186", "187", "188" ], - "x-ms-client-request-id": [ "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b" ], + "x-ms-unique-id": [ "197", "198", "199", "200" ], + "x-ms-client-request-id": [ "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -178,31 +178,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "dc570bd1-d143-4045-8bea-3f72ffaa68cf" ], + "x-ms-request-id": [ "43941706-62ec-4480-bb2f-03267508248e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11853" ], - "x-ms-correlation-request-id": [ "0afe2a91-f4cf-481d-8fa1-933d2ff03ab7" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T042202Z:0afe2a91-f4cf-481d-8fa1-933d2ff03ab7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11843" ], + "x-ms-correlation-request-id": [ "d0a58347-597b-4f61-9c29-32a6b8323dd4" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T113727Z:d0a58347-597b-4f61-9c29-32a6b8323dd4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:22:01 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:37:27 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"beedfa79-a895-44d7-9236-fe14761ac289\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:20:30.573Z\"}" + "Content": "{\"name\":\"04bf9aff-46cc-48c5-a470-2a8c7f5d16c8\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:35:56.307Z\"}" } }, - "Restore-AzPostgreSqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/beedfa79-a895-44d7-9236-fe14761ac289?api-version=2017-12-01+6": { + "Restore-AzPostgreSqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/04bf9aff-46cc-48c5-a470-2a8c7f5d16c8?api-version=2017-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/beedfa79-a895-44d7-9236-fe14761ac289?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/04bf9aff-46cc-48c5-a470-2a8c7f5d16c8?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "185", "186", "187", "188", "189" ], - "x-ms-client-request-id": [ "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b" ], + "x-ms-unique-id": [ "197", "198", "199", "200", "201" ], + "x-ms-client-request-id": [ "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -218,31 +218,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "000be768-1922-4d77-831e-df6d7734d17b" ], + "x-ms-request-id": [ "7c9bd707-a6ab-4f79-9692-92fa6548e1d3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11852" ], - "x-ms-correlation-request-id": [ "e2741fa0-9ddb-49c8-a6c6-56a78f44450c" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T042232Z:e2741fa0-9ddb-49c8-a6c6-56a78f44450c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11842" ], + "x-ms-correlation-request-id": [ "8ee27e52-8d69-47f3-b0da-83c5f2b43d78" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T113757Z:8ee27e52-8d69-47f3-b0da-83c5f2b43d78" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:22:32 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:37:57 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"beedfa79-a895-44d7-9236-fe14761ac289\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:20:30.573Z\"}" + "Content": "{\"name\":\"04bf9aff-46cc-48c5-a470-2a8c7f5d16c8\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:35:56.307Z\"}" } }, - "Restore-AzPostgreSqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/beedfa79-a895-44d7-9236-fe14761ac289?api-version=2017-12-01+7": { + "Restore-AzPostgreSqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/04bf9aff-46cc-48c5-a470-2a8c7f5d16c8?api-version=2017-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/beedfa79-a895-44d7-9236-fe14761ac289?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/04bf9aff-46cc-48c5-a470-2a8c7f5d16c8?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "185", "186", "187", "188", "189", "190" ], - "x-ms-client-request-id": [ "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b" ], + "x-ms-unique-id": [ "197", "198", "199", "200", "201", "202" ], + "x-ms-client-request-id": [ "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -258,31 +258,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "da011027-829d-4a0f-8975-5ba88538639f" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11851" ], + "x-ms-request-id": [ "538dbb83-e73f-4170-a05f-97e0bb2df317" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "45110528-a5ec-4dd0-8d60-f9ff0d9866a8" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T042302Z:45110528-a5ec-4dd0-8d60-f9ff0d9866a8" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11841" ], + "x-ms-correlation-request-id": [ "bae6b4da-9515-4ddd-9bb3-cc9d6b591f0c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T113828Z:bae6b4da-9515-4ddd-9bb3-cc9d6b591f0c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:23:02 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:38:27 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"beedfa79-a895-44d7-9236-fe14761ac289\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:20:30.573Z\"}" + "Content": "{\"name\":\"04bf9aff-46cc-48c5-a470-2a8c7f5d16c8\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:35:56.307Z\"}" } }, - "Restore-AzPostgreSqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/beedfa79-a895-44d7-9236-fe14761ac289?api-version=2017-12-01+8": { + "Restore-AzPostgreSqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/04bf9aff-46cc-48c5-a470-2a8c7f5d16c8?api-version=2017-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/beedfa79-a895-44d7-9236-fe14761ac289?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/04bf9aff-46cc-48c5-a470-2a8c7f5d16c8?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "185", "186", "187", "188", "189", "190", "191" ], - "x-ms-client-request-id": [ "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b" ], + "x-ms-unique-id": [ "197", "198", "199", "200", "201", "202", "203" ], + "x-ms-client-request-id": [ "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -298,31 +298,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "e71a4057-0915-4e88-a799-a1c7d94ac3c4" ], + "x-ms-request-id": [ "64190749-0519-4f9e-8e44-cec36e44b7ec" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11850" ], - "x-ms-correlation-request-id": [ "1f5c0799-a66c-4e44-8073-c037104461ae" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T042333Z:1f5c0799-a66c-4e44-8073-c037104461ae" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11840" ], + "x-ms-correlation-request-id": [ "19dbc71d-d135-4484-adda-9bcf2eba7ce6" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T113858Z:19dbc71d-d135-4484-adda-9bcf2eba7ce6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:23:32 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:38:58 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"beedfa79-a895-44d7-9236-fe14761ac289\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:20:30.573Z\"}" + "Content": "{\"name\":\"04bf9aff-46cc-48c5-a470-2a8c7f5d16c8\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:35:56.307Z\"}" } }, - "Restore-AzPostgreSqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/beedfa79-a895-44d7-9236-fe14761ac289?api-version=2017-12-01+9": { + "Restore-AzPostgreSqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/04bf9aff-46cc-48c5-a470-2a8c7f5d16c8?api-version=2017-12-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/beedfa79-a895-44d7-9236-fe14761ac289?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/04bf9aff-46cc-48c5-a470-2a8c7f5d16c8?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "185", "186", "187", "188", "189", "190", "191", "192" ], - "x-ms-client-request-id": [ "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b" ], + "x-ms-unique-id": [ "197", "198", "199", "200", "201", "202", "203", "204" ], + "x-ms-client-request-id": [ "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -338,31 +338,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "59facee0-b33c-4795-9ac7-c418c2bdec6b" ], + "x-ms-request-id": [ "2973fa94-1221-486d-89db-b6714a8459c1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11849" ], - "x-ms-correlation-request-id": [ "0ad147ba-425e-4f69-b851-d77a597cc543" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T042404Z:0ad147ba-425e-4f69-b851-d77a597cc543" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11839" ], + "x-ms-correlation-request-id": [ "04499411-dfec-41d8-9d3f-df8d6ada5207" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T113929Z:04499411-dfec-41d8-9d3f-df8d6ada5207" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:24:04 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:39:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"beedfa79-a895-44d7-9236-fe14761ac289\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:20:30.573Z\"}" + "Content": "{\"name\":\"04bf9aff-46cc-48c5-a470-2a8c7f5d16c8\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:35:56.307Z\"}" } }, - "Restore-AzPostgreSqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/beedfa79-a895-44d7-9236-fe14761ac289?api-version=2017-12-01+10": { + "Restore-AzPostgreSqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/04bf9aff-46cc-48c5-a470-2a8c7f5d16c8?api-version=2017-12-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/beedfa79-a895-44d7-9236-fe14761ac289?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/04bf9aff-46cc-48c5-a470-2a8c7f5d16c8?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "185", "186", "187", "188", "189", "190", "191", "192", "193" ], - "x-ms-client-request-id": [ "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b" ], + "x-ms-unique-id": [ "197", "198", "199", "200", "201", "202", "203", "204", "205" ], + "x-ms-client-request-id": [ "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -378,31 +378,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "faa0b98c-604b-43ba-9bc5-8c363be4dfe6" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11848" ], + "x-ms-request-id": [ "51f326f7-1492-4b0c-a5e0-c14da8b1ac01" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "1151feb6-046f-41c0-9776-815eeab42742" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T042434Z:1151feb6-046f-41c0-9776-815eeab42742" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11838" ], + "x-ms-correlation-request-id": [ "133b501e-0222-4cc4-a512-31ee4fc3ac07" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T113959Z:133b501e-0222-4cc4-a512-31ee4fc3ac07" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:24:34 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:39:59 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"beedfa79-a895-44d7-9236-fe14761ac289\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:20:30.573Z\"}" + "Content": "{\"name\":\"04bf9aff-46cc-48c5-a470-2a8c7f5d16c8\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:35:56.307Z\"}" } }, - "Restore-AzPostgreSqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/beedfa79-a895-44d7-9236-fe14761ac289?api-version=2017-12-01+11": { + "Restore-AzPostgreSqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/04bf9aff-46cc-48c5-a470-2a8c7f5d16c8?api-version=2017-12-01+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/beedfa79-a895-44d7-9236-fe14761ac289?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/04bf9aff-46cc-48c5-a470-2a8c7f5d16c8?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "185", "186", "187", "188", "189", "190", "191", "192", "193", "194" ], - "x-ms-client-request-id": [ "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b" ], + "x-ms-unique-id": [ "197", "198", "199", "200", "201", "202", "203", "204", "205", "206" ], + "x-ms-client-request-id": [ "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -418,31 +418,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "063429a2-b457-4135-9e30-ee5bc73fb060" ], + "x-ms-request-id": [ "cae82c4f-442d-48ce-a4e2-cd34bb2a15f6" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11847" ], - "x-ms-correlation-request-id": [ "249de61d-fbc1-45a0-978e-1b3e8b51087f" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T042505Z:249de61d-fbc1-45a0-978e-1b3e8b51087f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11837" ], + "x-ms-correlation-request-id": [ "f210631b-4292-496f-a300-0a29d77b9be1" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114029Z:f210631b-4292-496f-a300-0a29d77b9be1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:25:04 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:40:29 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"beedfa79-a895-44d7-9236-fe14761ac289\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:20:30.573Z\"}" + "Content": "{\"name\":\"04bf9aff-46cc-48c5-a470-2a8c7f5d16c8\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:35:56.307Z\"}" } }, - "Restore-AzPostgreSqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/beedfa79-a895-44d7-9236-fe14761ac289?api-version=2017-12-01+12": { + "Restore-AzPostgreSqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/04bf9aff-46cc-48c5-a470-2a8c7f5d16c8?api-version=2017-12-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/beedfa79-a895-44d7-9236-fe14761ac289?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/04bf9aff-46cc-48c5-a470-2a8c7f5d16c8?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "185", "186", "187", "188", "189", "190", "191", "192", "193", "194", "195" ], - "x-ms-client-request-id": [ "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b" ], + "x-ms-unique-id": [ "197", "198", "199", "200", "201", "202", "203", "204", "205", "206", "207" ], + "x-ms-client-request-id": [ "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -458,31 +458,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "52e55662-08d0-4684-a337-a74d8bd7dc4a" ], + "x-ms-request-id": [ "0d1b8609-45ad-4b62-8b16-804e1e0a0662" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11846" ], - "x-ms-correlation-request-id": [ "ceb164a0-efd2-424f-ac8c-cd5007258f39" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T042538Z:ceb164a0-efd2-424f-ac8c-cd5007258f39" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11836" ], + "x-ms-correlation-request-id": [ "017883fa-5508-4fe8-93bb-ae17b4e842ad" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114100Z:017883fa-5508-4fe8-93bb-ae17b4e842ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:25:38 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:41:00 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"beedfa79-a895-44d7-9236-fe14761ac289\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:20:30.573Z\"}" + "Content": "{\"name\":\"04bf9aff-46cc-48c5-a470-2a8c7f5d16c8\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:35:56.307Z\"}" } }, - "Restore-AzPostgreSqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/beedfa79-a895-44d7-9236-fe14761ac289?api-version=2017-12-01+13": { + "Restore-AzPostgreSqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/04bf9aff-46cc-48c5-a470-2a8c7f5d16c8?api-version=2017-12-01+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/beedfa79-a895-44d7-9236-fe14761ac289?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/04bf9aff-46cc-48c5-a470-2a8c7f5d16c8?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "185", "186", "187", "188", "189", "190", "191", "192", "193", "194", "195", "196" ], - "x-ms-client-request-id": [ "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b" ], + "x-ms-unique-id": [ "197", "198", "199", "200", "201", "202", "203", "204", "205", "206", "207", "208" ], + "x-ms-client-request-id": [ "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -498,31 +498,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "8a74dbac-3350-4558-8c09-ea6f04917528" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11845" ], + "x-ms-request-id": [ "a57433d7-17ef-4b18-8e8b-c5d2f9788b26" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "fee54678-3457-4ded-953c-554f0defabde" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T042608Z:fee54678-3457-4ded-953c-554f0defabde" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11835" ], + "x-ms-correlation-request-id": [ "4908af3a-f388-4fb7-9a5f-8ca283e5b8ea" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114131Z:4908af3a-f388-4fb7-9a5f-8ca283e5b8ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:26:08 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:41:30 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"beedfa79-a895-44d7-9236-fe14761ac289\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:20:30.573Z\"}" + "Content": "{\"name\":\"04bf9aff-46cc-48c5-a470-2a8c7f5d16c8\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:35:56.307Z\"}" } }, - "Restore-AzPostgreSqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/beedfa79-a895-44d7-9236-fe14761ac289?api-version=2017-12-01+14": { + "Restore-AzPostgreSqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/04bf9aff-46cc-48c5-a470-2a8c7f5d16c8?api-version=2017-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/beedfa79-a895-44d7-9236-fe14761ac289?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/04bf9aff-46cc-48c5-a470-2a8c7f5d16c8?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "185", "186", "187", "188", "189", "190", "191", "192", "193", "194", "195", "196", "197" ], - "x-ms-client-request-id": [ "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b" ], + "x-ms-unique-id": [ "197", "198", "199", "200", "201", "202", "203", "204", "205", "206", "207", "208", "209" ], + "x-ms-client-request-id": [ "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -538,31 +538,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "d991a23e-4fd6-4a19-a4bc-02393f246e28" ], + "x-ms-request-id": [ "76a7ab52-17e4-4711-9b85-c1446da989a8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11844" ], - "x-ms-correlation-request-id": [ "8ae71aae-91b4-4133-b745-0b3eb9d7651a" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T042639Z:8ae71aae-91b4-4133-b745-0b3eb9d7651a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11834" ], + "x-ms-correlation-request-id": [ "0cb2ea7d-71e7-41f1-9b2a-bfc1634ea98d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114201Z:0cb2ea7d-71e7-41f1-9b2a-bfc1634ea98d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:26:39 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:42:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "108" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"beedfa79-a895-44d7-9236-fe14761ac289\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:20:30.573Z\"}" + "Content": "{\"name\":\"04bf9aff-46cc-48c5-a470-2a8c7f5d16c8\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:35:56.307Z\"}" } }, - "Restore-AzPostgreSqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/beedfa79-a895-44d7-9236-fe14761ac289?api-version=2017-12-01+15": { + "Restore-AzPostgreSqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100-replica?api-version=2017-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/beedfa79-a895-44d7-9236-fe14761ac289?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100-replica?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "185", "186", "187", "188", "189", "190", "191", "192", "193", "194", "195", "196", "197", "198" ], - "x-ms-client-request-id": [ "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b" ], + "x-ms-unique-id": [ "197", "198", "199", "200", "201", "202", "203", "204", "205", "206", "207", "208", "209", "210" ], + "x-ms-client-request-id": [ "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a", "e34faafe-6eb4-44b1-8423-be11d276938a" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -577,73 +577,33 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Retry-After": [ "30" ], - "x-ms-request-id": [ "0fbc072f-b2ab-49d1-9a6d-41ecc4015ea8" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11843" ], - "x-ms-correlation-request-id": [ "448cc04c-ba84-442c-95da-cc58dcb4a45f" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T042710Z:448cc04c-ba84-442c-95da-cc58dcb4a45f" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:27:10 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "107" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"name\":\"beedfa79-a895-44d7-9236-fe14761ac289\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-08T04:20:30.573Z\"}" - } - }, - "Restore-AzPostgreSqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100-replica?api-version=2017-12-01+16": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100-replica?api-version=2017-12-01", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "185", "186", "187", "188", "189", "190", "191", "192", "193", "194", "195", "196", "197", "198", "199" ], - "x-ms-client-request-id": [ "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b", "55ae6de1-9f93-40c8-9077-ae0452bfb07b" ], - "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], - "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "7aa936d9-f757-4c2f-b9d6-d7d2dfc24eb7" ], + "x-ms-request-id": [ "6c60e6a9-c367-4844-9f56-f6676ab3363c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11842" ], - "x-ms-correlation-request-id": [ "d6e069a0-e311-470b-8560-761d323bf0c0" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T042710Z:d6e069a0-e311-470b-8560-761d323bf0c0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11833" ], + "x-ms-correlation-request-id": [ "39025ad1-9538-40b2-b56f-9fd5b365a8fe" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114202Z:39025ad1-9538-40b2-b56f-9fd5b365a8fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:27:10 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:42:01 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1114" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"postgresql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Enabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100-replica.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-05-08T04:32:32.167+00:00\",\"replicationRole\":\"Replica\",\"masterServerId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\",\"replicaCapacity\":0,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100-replica\",\"name\":\"postgresql-test-100-replica\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}" + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"postgresql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Enabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100-replica.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-09-25T11:47:10.137+00:00\",\"replicationRole\":\"Replica\",\"masterServerId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\",\"replicaCapacity\":0,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100-replica\",\"name\":\"postgresql-test-100-replica\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}" } }, - "Restore-AzPostgreSqlServer+[NoContext]+GeoRestore+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100?api-version=2017-12-01+17": { + "Restore-AzPostgreSqlServer+[NoContext]+GeoRestore+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100?api-version=2017-12-01+16": { "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100?api-version=2017-12-01", - "Content": "{\n \"properties\": {\n \"createMode\": \"GeoRestore\",\n \"sourceServerId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100-replica\"\n },\n \"location\": \"eastus\"\n}", + "Content": "{\r\n \"properties\": {\r\n \"createMode\": \"GeoRestore\",\r\n \"sourceServerId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100-replica\"\r\n },\r\n \"location\": \"eastus\"\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "259" ] + "Content-Length": [ "265" ] } }, "Response": { @@ -651,34 +611,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/ac84c298-19e6-4827-b67c-865da482aa3c?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/30c7d1f9-0ff6-4392-8c4a-78bc4477ad83?api-version=2017-12-01" ], "Retry-After": [ "10" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/ac84c298-19e6-4827-b67c-865da482aa3c?api-version=2017-12-01" ], - "x-ms-request-id": [ "ac84c298-19e6-4827-b67c-865da482aa3c" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/30c7d1f9-0ff6-4392-8c4a-78bc4477ad83?api-version=2017-12-01" ], + "x-ms-request-id": [ "30c7d1f9-0ff6-4392-8c4a-78bc4477ad83" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1180" ], - "x-ms-correlation-request-id": [ "a2dc6483-2c40-4ccf-9b67-0cad2bf86a1c" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T042711Z:a2dc6483-2c40-4ccf-9b67-0cad2bf86a1c" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1176" ], + "x-ms-correlation-request-id": [ "94b6cf3e-8fe0-4991-85a8-68869c1fc9e9" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114203Z:94b6cf3e-8fe0-4991-85a8-68869c1fc9e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:27:11 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:42:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "75" ], + "Content-Length": [ "74" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"RestoreElasticServer\",\"startTime\":\"2020-05-08T04:27:11.757Z\"}" + "Content": "{\"operation\":\"RestoreElasticServer\",\"startTime\":\"2020-09-25T11:42:03.47Z\"}" } }, - "Restore-AzPostgreSqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/ac84c298-19e6-4827-b67c-865da482aa3c?api-version=2017-12-01+18": { + "Restore-AzPostgreSqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/30c7d1f9-0ff6-4392-8c4a-78bc4477ad83?api-version=2017-12-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/ac84c298-19e6-4827-b67c-865da482aa3c?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/30c7d1f9-0ff6-4392-8c4a-78bc4477ad83?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "200", "201" ], - "x-ms-client-request-id": [ "4a9f1985-9038-46f0-9b00-b1d438ef75d2", "4a9f1985-9038-46f0-9b00-b1d438ef75d2" ], + "x-ms-unique-id": [ "211", "212" ], + "x-ms-client-request-id": [ "6ff359f0-2f4e-42b1-9847-d0f47f572064", "6ff359f0-2f4e-42b1-9847-d0f47f572064" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -694,31 +654,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "812e405c-fbca-4940-a0d7-e15cbc2e2a60" ], + "x-ms-request-id": [ "c8a8dd0b-b89e-4852-bc82-999936e3e16e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11841" ], - "x-ms-correlation-request-id": [ "d8337474-5de6-4cd1-9438-f9fd6b011857" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T042722Z:d8337474-5de6-4cd1-9438-f9fd6b011857" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11832" ], + "x-ms-correlation-request-id": [ "876b690e-7ea0-4b23-817f-48816a5bf2d1" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114214Z:876b690e-7ea0-4b23-817f-48816a5bf2d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:27:22 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:42:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "273" ], + "Content-Length": [ "272" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"ac84c298-19e6-4827-b67c-865da482aa3c\",\"status\":\"Failed\",\"startTime\":\"2020-05-08T04:27:11.757Z\",\"error\":{\"code\":\"SubscriptionDoesNotHaveServer\",\"message\":\"Subscription \u00279e223dbe-3399-4e19-88eb-0975f02ac87f\u0027 does not have the server \u0027postgresql-test-100-replica\u0027.\"}}" + "Content": "{\"name\":\"30c7d1f9-0ff6-4392-8c4a-78bc4477ad83\",\"status\":\"Failed\",\"startTime\":\"2020-09-25T11:42:03.47Z\",\"error\":{\"code\":\"SubscriptionDoesNotHaveServer\",\"message\":\"Subscription \u00279e223dbe-3399-4e19-88eb-0975f02ac87f\u0027 does not have the server \u0027postgresql-test-100-replica\u0027.\"}}" } }, - "Restore-AzPostgreSqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100?api-version=2017-12-01+19": { + "Restore-AzPostgreSqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100?api-version=2017-12-01+18": { "Request": { "Method": "GET", "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "200", "201", "202" ], - "x-ms-client-request-id": [ "4a9f1985-9038-46f0-9b00-b1d438ef75d2", "4a9f1985-9038-46f0-9b00-b1d438ef75d2", "4a9f1985-9038-46f0-9b00-b1d438ef75d2" ], + "x-ms-unique-id": [ "211", "212", "213" ], + "x-ms-client-request-id": [ "6ff359f0-2f4e-42b1-9847-d0f47f572064", "6ff359f0-2f4e-42b1-9847-d0f47f572064", "6ff359f0-2f4e-42b1-9847-d0f47f572064" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -733,21 +693,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "d620a157-945f-4412-b572-8673ba03cf61" ], + "x-ms-request-id": [ "9d9e67f6-aaa7-4607-8f81-26ea994b7d25" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11840" ], - "x-ms-correlation-request-id": [ "749beefc-5de7-48ca-96f3-1c76f7c9d160" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T042722Z:749beefc-5de7-48ca-96f3-1c76f7c9d160" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11831" ], + "x-ms-correlation-request-id": [ "7e6b9f60-1072-48e1-acdb-ba2e81b0d305" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114214Z:7e6b9f60-1072-48e1-acdb-ba2e81b0d305" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:27:22 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:42:14 GMT" ] }, "ContentHeaders": { "Content-Length": [ "945" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"postgresql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-05-08T03:54:02.197+00:00\",\"replicationRole\":\"Master\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\",\"name\":\"postgresql-test-100\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}" + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"postgresql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-09-25T11:09:04.307+00:00\",\"replicationRole\":\"Master\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\",\"name\":\"postgresql-test-100\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}" } }, "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100?api-version=2017-12-01+1": { @@ -756,8 +716,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "203" ], - "x-ms-client-request-id": [ "248f29a1-942a-4672-b900-a5d5a1862e66" ], + "x-ms-unique-id": [ "214" ], + "x-ms-client-request-id": [ "171dd274-a99a-497d-b15d-5ce911c6556f" ], "CommandName": [ "Get-AzPostgreSqlServer" ], "FullCommandName": [ "Get-AzPostgreSqlServer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -772,33 +732,33 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "8cb011ec-170e-41d9-8c32-777a608215b2" ], + "x-ms-request-id": [ "549d6f7d-8556-4635-a9ac-2a4a304f3fca" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11839" ], - "x-ms-correlation-request-id": [ "f68ad0eb-0df9-4915-b959-5b997ab077fe" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T042723Z:f68ad0eb-0df9-4915-b959-5b997ab077fe" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11830" ], + "x-ms-correlation-request-id": [ "fcde31c7-8f51-42c8-90df-4d1f364ddcdf" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114214Z:fcde31c7-8f51-42c8-90df-4d1f364ddcdf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:27:22 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:42:14 GMT" ] }, "ContentHeaders": { "Content-Length": [ "945" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"postgresql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-05-08T03:54:02.197+00:00\",\"replicationRole\":\"Master\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\",\"name\":\"postgresql-test-100\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}" + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"postgresql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-09-25T11:09:04.307+00:00\",\"replicationRole\":\"Master\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\",\"name\":\"postgresql-test-100\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}" } }, "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100-restore-2?api-version=2017-12-01+2": { "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100-restore-2?api-version=2017-12-01", - "Content": "{\n \"properties\": {\n \"createMode\": \"PointInTimeRestore\",\n \"restorePointInTime\": \"2020-05-08T04:17:22.9097780+00:00\",\n \"sourceServerId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\"\n },\n \"location\": \"eastus\"\n}", + "Content": "{\r\n \"properties\": {\r\n \"createMode\": \"PointInTimeRestore\",\r\n \"sourceServerId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\",\r\n \"restorePointInTime\": \"2020-09-25T19:32:14.5943302+08:00\"\r\n },\r\n \"location\": \"eastus\"\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "322" ] + "Content-Length": [ "329" ] } }, "Response": { @@ -806,34 +766,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01" ], "Retry-After": [ "10" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01" ], - "x-ms-request-id": [ "db055783-5c29-4969-9d37-94c3c4bdb1be" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01" ], + "x-ms-request-id": [ "e4bb851b-cf32-4cee-912e-1d2cb5af1024" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1179" ], - "x-ms-correlation-request-id": [ "fe3d1752-315c-4bbe-bfa0-bdbde102d236" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T042727Z:fe3d1752-315c-4bbe-bfa0-bdbde102d236" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1175" ], + "x-ms-correlation-request-id": [ "20d6d1ca-03c3-4c8a-a241-1544fd2d8bbc" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114220Z:20d6d1ca-03c3-4c8a-a241-1544fd2d8bbc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:27:27 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:42:20 GMT" ] }, "ContentHeaders": { "Content-Length": [ "74" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"RestoreElasticServer\",\"startTime\":\"2020-05-08T04:27:27.21Z\"}" + "Content": "{\"operation\":\"RestoreElasticServer\",\"startTime\":\"2020-09-25T11:42:20.11Z\"}" } }, - "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01+3": { + "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "204", "205" ], - "x-ms-client-request-id": [ "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537" ], + "x-ms-unique-id": [ "215", "216" ], + "x-ms-client-request-id": [ "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -849,31 +809,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "3e880e49-67f7-47d9-8480-21d3805dd057" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11838" ], + "x-ms-request-id": [ "d4a6d103-983b-496e-8fa2-07977eb4b012" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "041038a8-ea19-43c2-8d25-31abfab8f625" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T042737Z:041038a8-ea19-43c2-8d25-31abfab8f625" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11829" ], + "x-ms-correlation-request-id": [ "6d10e730-641c-454b-b824-7277aaf512d8" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114230Z:6d10e730-641c-454b-b824-7277aaf512d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:27:37 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:42:30 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"db055783-5c29-4969-9d37-94c3c4bdb1be\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:27:27.21Z\"}" + "Content": "{\"name\":\"e4bb851b-cf32-4cee-912e-1d2cb5af1024\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:42:20.11Z\"}" } }, - "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01+4": { + "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "204", "205", "206" ], - "x-ms-client-request-id": [ "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537" ], + "x-ms-unique-id": [ "215", "216", "217" ], + "x-ms-client-request-id": [ "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -889,31 +849,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "15409a43-add4-4c1f-b7c1-205c7e371a68" ], + "x-ms-request-id": [ "237b38a0-2386-4793-b034-28b036e0949d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11837" ], - "x-ms-correlation-request-id": [ "2e30a553-6f02-49f3-8e72-59ea0037ccb7" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T042748Z:2e30a553-6f02-49f3-8e72-59ea0037ccb7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11828" ], + "x-ms-correlation-request-id": [ "e43d4e36-21ac-43c2-a5c0-d8685c2b4564" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114241Z:e43d4e36-21ac-43c2-a5c0-d8685c2b4564" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:27:48 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:42:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"db055783-5c29-4969-9d37-94c3c4bdb1be\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:27:27.21Z\"}" + "Content": "{\"name\":\"e4bb851b-cf32-4cee-912e-1d2cb5af1024\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:42:20.11Z\"}" } }, - "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01+5": { + "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "204", "205", "206", "207" ], - "x-ms-client-request-id": [ "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537" ], + "x-ms-unique-id": [ "215", "216", "217", "218" ], + "x-ms-client-request-id": [ "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -929,31 +889,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "ad182ee8-c68a-46dc-8a29-f9ce1930e950" ], + "x-ms-request-id": [ "83ba5b38-2518-4c57-9701-33ae03244f09" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11836" ], - "x-ms-correlation-request-id": [ "803c979b-a59e-4ccc-aae7-52fafc51cf08" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T042759Z:803c979b-a59e-4ccc-aae7-52fafc51cf08" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11827" ], + "x-ms-correlation-request-id": [ "b1e2bcbf-d209-4490-bb90-0dd886fcd00b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114251Z:b1e2bcbf-d209-4490-bb90-0dd886fcd00b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:27:58 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:42:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"db055783-5c29-4969-9d37-94c3c4bdb1be\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:27:27.21Z\"}" + "Content": "{\"name\":\"e4bb851b-cf32-4cee-912e-1d2cb5af1024\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:42:20.11Z\"}" } }, - "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01+6": { + "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "204", "205", "206", "207", "208" ], - "x-ms-client-request-id": [ "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537" ], + "x-ms-unique-id": [ "215", "216", "217", "218", "219" ], + "x-ms-client-request-id": [ "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -969,31 +929,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "c6e9f174-82f7-4fee-8085-d0a160775c97" ], + "x-ms-request-id": [ "622a7226-7ab0-4323-afe1-b1f5a73f0188" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11835" ], - "x-ms-correlation-request-id": [ "7ed76f92-ef19-45aa-ab61-122e9354d146" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T042809Z:7ed76f92-ef19-45aa-ab61-122e9354d146" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11826" ], + "x-ms-correlation-request-id": [ "18376d56-4ce2-45ce-8ea6-9d3a952fcd40" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114301Z:18376d56-4ce2-45ce-8ea6-9d3a952fcd40" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:28:09 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:43:01 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"db055783-5c29-4969-9d37-94c3c4bdb1be\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:27:27.21Z\"}" + "Content": "{\"name\":\"e4bb851b-cf32-4cee-912e-1d2cb5af1024\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:42:20.11Z\"}" } }, - "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01+7": { + "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "204", "205", "206", "207", "208", "209" ], - "x-ms-client-request-id": [ "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537" ], + "x-ms-unique-id": [ "215", "216", "217", "218", "219", "220" ], + "x-ms-client-request-id": [ "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1009,31 +969,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "de5e7732-b2b3-4e36-af4f-c2cd88a64627" ], + "x-ms-request-id": [ "bf338d44-2d35-4d65-8f0f-d953e5e35ac8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11834" ], - "x-ms-correlation-request-id": [ "5236593c-042e-4e38-9a80-a001188a9c9c" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T042820Z:5236593c-042e-4e38-9a80-a001188a9c9c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11825" ], + "x-ms-correlation-request-id": [ "3bfb416b-96c6-4295-af04-365fd74da77b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114312Z:3bfb416b-96c6-4295-af04-365fd74da77b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:28:19 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:43:11 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"db055783-5c29-4969-9d37-94c3c4bdb1be\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:27:27.21Z\"}" + "Content": "{\"name\":\"e4bb851b-cf32-4cee-912e-1d2cb5af1024\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:42:20.11Z\"}" } }, - "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01+8": { + "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "204", "205", "206", "207", "208", "209", "210" ], - "x-ms-client-request-id": [ "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537" ], + "x-ms-unique-id": [ "215", "216", "217", "218", "219", "220", "221" ], + "x-ms-client-request-id": [ "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1049,31 +1009,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "743f3559-b79f-49c7-8468-04552539ccce" ], + "x-ms-request-id": [ "89334cb0-9d48-40cc-9c99-83014eb70089" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11833" ], - "x-ms-correlation-request-id": [ "665ea244-00ae-48a1-9935-170329d475dc" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T042830Z:665ea244-00ae-48a1-9935-170329d475dc" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11824" ], + "x-ms-correlation-request-id": [ "c28eaabe-4f6a-4709-acef-1919647b08f8" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114322Z:c28eaabe-4f6a-4709-acef-1919647b08f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:28:29 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:43:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"db055783-5c29-4969-9d37-94c3c4bdb1be\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:27:27.21Z\"}" + "Content": "{\"name\":\"e4bb851b-cf32-4cee-912e-1d2cb5af1024\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:42:20.11Z\"}" } }, - "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01+9": { + "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "204", "205", "206", "207", "208", "209", "210", "211" ], - "x-ms-client-request-id": [ "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537" ], + "x-ms-unique-id": [ "215", "216", "217", "218", "219", "220", "221", "222" ], + "x-ms-client-request-id": [ "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1089,31 +1049,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "e45b699f-2237-4ea2-ba57-a17b5207969b" ], + "x-ms-request-id": [ "322e7778-b758-487c-bfe3-db1ade94d503" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11832" ], - "x-ms-correlation-request-id": [ "d4815916-b543-496d-8ff2-e95c739b191f" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T042840Z:d4815916-b543-496d-8ff2-e95c739b191f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11823" ], + "x-ms-correlation-request-id": [ "00dcf059-b71f-4742-abee-6a020c90074b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114333Z:00dcf059-b71f-4742-abee-6a020c90074b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:28:39 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:43:33 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"db055783-5c29-4969-9d37-94c3c4bdb1be\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:27:27.21Z\"}" + "Content": "{\"name\":\"e4bb851b-cf32-4cee-912e-1d2cb5af1024\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:42:20.11Z\"}" } }, - "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01+10": { + "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "204", "205", "206", "207", "208", "209", "210", "211", "212" ], - "x-ms-client-request-id": [ "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537" ], + "x-ms-unique-id": [ "215", "216", "217", "218", "219", "220", "221", "222", "223" ], + "x-ms-client-request-id": [ "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1129,31 +1089,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "3adddd67-f602-4108-ac4c-c01cdbabb28e" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11831" ], + "x-ms-request-id": [ "13acc702-69ff-4e2c-8cd7-e15b87331c2d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "141485bc-e8ea-4dcb-a755-7775c8470b1a" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T042851Z:141485bc-e8ea-4dcb-a755-7775c8470b1a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11822" ], + "x-ms-correlation-request-id": [ "0c6e675f-9770-43d8-a135-318d62573bb4" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114344Z:0c6e675f-9770-43d8-a135-318d62573bb4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:28:50 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:43:44 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"db055783-5c29-4969-9d37-94c3c4bdb1be\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:27:27.21Z\"}" + "Content": "{\"name\":\"e4bb851b-cf32-4cee-912e-1d2cb5af1024\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:42:20.11Z\"}" } }, - "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01+11": { + "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "204", "205", "206", "207", "208", "209", "210", "211", "212", "213" ], - "x-ms-client-request-id": [ "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537" ], + "x-ms-unique-id": [ "215", "216", "217", "218", "219", "220", "221", "222", "223", "224" ], + "x-ms-client-request-id": [ "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1169,31 +1129,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "5a64e859-86d8-46e6-9ba4-e0b129e22149" ], + "x-ms-request-id": [ "c31490ab-dac2-4d72-b7a1-e358197be8ba" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11830" ], - "x-ms-correlation-request-id": [ "9098bc8b-4dda-4c71-b476-212e6a049c28" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T042902Z:9098bc8b-4dda-4c71-b476-212e6a049c28" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11821" ], + "x-ms-correlation-request-id": [ "54d869b8-6ca5-4ab9-b697-b03ae15f724d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114354Z:54d869b8-6ca5-4ab9-b697-b03ae15f724d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:29:02 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:43:54 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"db055783-5c29-4969-9d37-94c3c4bdb1be\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:27:27.21Z\"}" + "Content": "{\"name\":\"e4bb851b-cf32-4cee-912e-1d2cb5af1024\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:42:20.11Z\"}" } }, - "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01+12": { + "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "204", "205", "206", "207", "208", "209", "210", "211", "212", "213", "214" ], - "x-ms-client-request-id": [ "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537" ], + "x-ms-unique-id": [ "215", "216", "217", "218", "219", "220", "221", "222", "223", "224", "225" ], + "x-ms-client-request-id": [ "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1209,31 +1169,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "7c55e46e-cf2b-4d42-aec6-a90e94c9902c" ], + "x-ms-request-id": [ "98166848-190d-4134-bc16-bad7e90d148d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11829" ], - "x-ms-correlation-request-id": [ "100fa13c-71dd-4b9d-a075-ff1f9c1bc42c" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T042912Z:100fa13c-71dd-4b9d-a075-ff1f9c1bc42c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11820" ], + "x-ms-correlation-request-id": [ "3ba7617d-b8b2-4dd7-9a70-d35317b9c1e2" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114404Z:3ba7617d-b8b2-4dd7-9a70-d35317b9c1e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:29:12 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:44:04 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"db055783-5c29-4969-9d37-94c3c4bdb1be\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:27:27.21Z\"}" + "Content": "{\"name\":\"e4bb851b-cf32-4cee-912e-1d2cb5af1024\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:42:20.11Z\"}" } }, - "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01+13": { + "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "204", "205", "206", "207", "208", "209", "210", "211", "212", "213", "214", "215" ], - "x-ms-client-request-id": [ "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537" ], + "x-ms-unique-id": [ "215", "216", "217", "218", "219", "220", "221", "222", "223", "224", "225", "226" ], + "x-ms-client-request-id": [ "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1249,31 +1209,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "c43fa0b6-9aa6-4ef1-b5b8-5ab96d4337d4" ], + "x-ms-request-id": [ "91b535af-3f6e-4aac-8653-e0ff79c76e87" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11828" ], - "x-ms-correlation-request-id": [ "040a131c-15ca-421c-a00d-d5fdba433867" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T042923Z:040a131c-15ca-421c-a00d-d5fdba433867" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11819" ], + "x-ms-correlation-request-id": [ "df1f65cc-514f-4b83-94f3-6df7b2269355" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114415Z:df1f65cc-514f-4b83-94f3-6df7b2269355" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:29:22 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:44:14 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"db055783-5c29-4969-9d37-94c3c4bdb1be\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:27:27.21Z\"}" + "Content": "{\"name\":\"e4bb851b-cf32-4cee-912e-1d2cb5af1024\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:42:20.11Z\"}" } }, - "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01+14": { + "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "204", "205", "206", "207", "208", "209", "210", "211", "212", "213", "214", "215", "216" ], - "x-ms-client-request-id": [ "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537" ], + "x-ms-unique-id": [ "215", "216", "217", "218", "219", "220", "221", "222", "223", "224", "225", "226", "227" ], + "x-ms-client-request-id": [ "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1289,31 +1249,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "fee838ec-0574-4b35-b7dc-9ba7cf760c19" ], + "x-ms-request-id": [ "b2c30cd9-ef46-4316-a06d-30fe3e20e3f1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11827" ], - "x-ms-correlation-request-id": [ "a9a906df-85b9-4666-97f5-00ccf21e57aa" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T042933Z:a9a906df-85b9-4666-97f5-00ccf21e57aa" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11818" ], + "x-ms-correlation-request-id": [ "238be119-fdf9-48c6-b71a-b0b634c3908d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114425Z:238be119-fdf9-48c6-b71a-b0b634c3908d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:29:33 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:44:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"db055783-5c29-4969-9d37-94c3c4bdb1be\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:27:27.21Z\"}" + "Content": "{\"name\":\"e4bb851b-cf32-4cee-912e-1d2cb5af1024\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:42:20.11Z\"}" } }, - "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01+15": { + "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "204", "205", "206", "207", "208", "209", "210", "211", "212", "213", "214", "215", "216", "217" ], - "x-ms-client-request-id": [ "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537" ], + "x-ms-unique-id": [ "215", "216", "217", "218", "219", "220", "221", "222", "223", "224", "225", "226", "227", "228" ], + "x-ms-client-request-id": [ "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1329,31 +1289,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "76b2d429-52e0-4f17-b50a-d2cad5bb1561" ], + "x-ms-request-id": [ "f2612fa1-3bf7-449b-aeab-ab36ba35ba1b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11826" ], - "x-ms-correlation-request-id": [ "ae8d392f-2c71-4fc4-8d50-07458a3c3a84" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T042943Z:ae8d392f-2c71-4fc4-8d50-07458a3c3a84" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11817" ], + "x-ms-correlation-request-id": [ "b25cf36b-841f-4ef9-bed9-f275a24cdec2" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114435Z:b25cf36b-841f-4ef9-bed9-f275a24cdec2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:29:43 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:44:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"db055783-5c29-4969-9d37-94c3c4bdb1be\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:27:27.21Z\"}" + "Content": "{\"name\":\"e4bb851b-cf32-4cee-912e-1d2cb5af1024\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:42:20.11Z\"}" } }, - "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01+16": { + "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01+16": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "204", "205", "206", "207", "208", "209", "210", "211", "212", "213", "214", "215", "216", "217", "218" ], - "x-ms-client-request-id": [ "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537" ], + "x-ms-unique-id": [ "215", "216", "217", "218", "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229" ], + "x-ms-client-request-id": [ "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1369,31 +1329,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "e4dacff9-fae1-4e45-b5fd-2c5fd3a71e94" ], + "x-ms-request-id": [ "999d8089-3413-44b5-9fbe-35f7469bc282" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11825" ], - "x-ms-correlation-request-id": [ "c075421d-563b-4247-9d55-dacbce4b6a0b" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T042954Z:c075421d-563b-4247-9d55-dacbce4b6a0b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11816" ], + "x-ms-correlation-request-id": [ "4115eb01-126c-4bb9-b3c1-51ef0e1cd926" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114446Z:4115eb01-126c-4bb9-b3c1-51ef0e1cd926" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:29:53 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:44:45 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"db055783-5c29-4969-9d37-94c3c4bdb1be\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:27:27.21Z\"}" + "Content": "{\"name\":\"e4bb851b-cf32-4cee-912e-1d2cb5af1024\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:42:20.11Z\"}" } }, - "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01+17": { + "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "204", "205", "206", "207", "208", "209", "210", "211", "212", "213", "214", "215", "216", "217", "218", "219" ], - "x-ms-client-request-id": [ "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537" ], + "x-ms-unique-id": [ "215", "216", "217", "218", "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230" ], + "x-ms-client-request-id": [ "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1409,31 +1369,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "d6571a69-3a82-4a7a-b950-045546143ece" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11824" ], + "x-ms-request-id": [ "b53e971f-ee1d-411e-bf24-118432589510" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "b502b18c-92f0-4f64-9835-b795943a65b7" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043004Z:b502b18c-92f0-4f64-9835-b795943a65b7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11815" ], + "x-ms-correlation-request-id": [ "69b56c43-538e-4aa3-9dde-5e0b19053aff" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114456Z:69b56c43-538e-4aa3-9dde-5e0b19053aff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:30:04 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:44:55 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"db055783-5c29-4969-9d37-94c3c4bdb1be\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:27:27.21Z\"}" + "Content": "{\"name\":\"e4bb851b-cf32-4cee-912e-1d2cb5af1024\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:42:20.11Z\"}" } }, - "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01+18": { + "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "204", "205", "206", "207", "208", "209", "210", "211", "212", "213", "214", "215", "216", "217", "218", "219", "220" ], - "x-ms-client-request-id": [ "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537" ], + "x-ms-unique-id": [ "215", "216", "217", "218", "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231" ], + "x-ms-client-request-id": [ "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1449,31 +1409,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "e24e98b3-41c7-4a56-82d9-1ebbe00e25e6" ], + "x-ms-request-id": [ "57573bea-40f3-4960-8102-aa599df275f3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11823" ], - "x-ms-correlation-request-id": [ "23a38b01-0f0a-41ef-8390-c506a891aa7b" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043015Z:23a38b01-0f0a-41ef-8390-c506a891aa7b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11814" ], + "x-ms-correlation-request-id": [ "b5fae87c-2f4b-4710-9297-945dc33627a1" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114507Z:b5fae87c-2f4b-4710-9297-945dc33627a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:30:15 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:45:06 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"db055783-5c29-4969-9d37-94c3c4bdb1be\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:27:27.21Z\"}" + "Content": "{\"name\":\"e4bb851b-cf32-4cee-912e-1d2cb5af1024\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:42:20.11Z\"}" } }, - "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01+19": { + "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "204", "205", "206", "207", "208", "209", "210", "211", "212", "213", "214", "215", "216", "217", "218", "219", "220", "221" ], - "x-ms-client-request-id": [ "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537" ], + "x-ms-unique-id": [ "215", "216", "217", "218", "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232" ], + "x-ms-client-request-id": [ "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1489,31 +1449,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "311bf920-2e24-4530-a5ff-b4087017a61c" ], + "x-ms-request-id": [ "ef95cb68-a0d0-4389-9468-1975bc7631b1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11822" ], - "x-ms-correlation-request-id": [ "7e659fba-4ca4-4cff-984a-1ae7cbea811c" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043026Z:7e659fba-4ca4-4cff-984a-1ae7cbea811c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11813" ], + "x-ms-correlation-request-id": [ "efa0bd83-b806-487d-822f-070d43e77f38" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114517Z:efa0bd83-b806-487d-822f-070d43e77f38" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:30:25 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:45:16 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"db055783-5c29-4969-9d37-94c3c4bdb1be\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:27:27.21Z\"}" + "Content": "{\"name\":\"e4bb851b-cf32-4cee-912e-1d2cb5af1024\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:42:20.11Z\"}" } }, - "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01+20": { + "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "204", "205", "206", "207", "208", "209", "210", "211", "212", "213", "214", "215", "216", "217", "218", "219", "220", "221", "222" ], - "x-ms-client-request-id": [ "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537" ], + "x-ms-unique-id": [ "215", "216", "217", "218", "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233" ], + "x-ms-client-request-id": [ "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1529,31 +1489,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "b8a54e08-9636-4e2f-855d-fffa3f2b954d" ], + "x-ms-request-id": [ "95328c97-02e5-43dd-8352-b04741d20a04" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11821" ], - "x-ms-correlation-request-id": [ "736501c1-87fe-4be7-8a77-872900ee9cbd" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043036Z:736501c1-87fe-4be7-8a77-872900ee9cbd" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11812" ], + "x-ms-correlation-request-id": [ "31aabdf3-23b5-485d-8c02-edb46f047e0d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114527Z:31aabdf3-23b5-485d-8c02-edb46f047e0d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:30:35 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:45:26 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"db055783-5c29-4969-9d37-94c3c4bdb1be\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:27:27.21Z\"}" + "Content": "{\"name\":\"e4bb851b-cf32-4cee-912e-1d2cb5af1024\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:42:20.11Z\"}" } }, - "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01+21": { + "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "204", "205", "206", "207", "208", "209", "210", "211", "212", "213", "214", "215", "216", "217", "218", "219", "220", "221", "222", "223" ], - "x-ms-client-request-id": [ "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537" ], + "x-ms-unique-id": [ "215", "216", "217", "218", "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233", "234" ], + "x-ms-client-request-id": [ "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1569,31 +1529,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "78c20088-c41c-4074-b3ee-5a1a57f422ce" ], + "x-ms-request-id": [ "83297726-9173-427c-a948-89cebc2f6d40" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11820" ], - "x-ms-correlation-request-id": [ "fce063d7-db55-429b-85e9-c15b7c7f2cea" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043046Z:fce063d7-db55-429b-85e9-c15b7c7f2cea" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11811" ], + "x-ms-correlation-request-id": [ "d3c59914-7452-460b-a5c5-68ec300eb0e9" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114538Z:d3c59914-7452-460b-a5c5-68ec300eb0e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:30:46 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:45:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"db055783-5c29-4969-9d37-94c3c4bdb1be\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:27:27.21Z\"}" + "Content": "{\"name\":\"e4bb851b-cf32-4cee-912e-1d2cb5af1024\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:42:20.11Z\"}" } }, - "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01+22": { + "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01+22": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "204", "205", "206", "207", "208", "209", "210", "211", "212", "213", "214", "215", "216", "217", "218", "219", "220", "221", "222", "223", "224" ], - "x-ms-client-request-id": [ "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537" ], + "x-ms-unique-id": [ "215", "216", "217", "218", "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233", "234", "235" ], + "x-ms-client-request-id": [ "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1609,31 +1569,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "33896a51-2adb-4a59-879e-d1f0eb58b01d" ], + "x-ms-request-id": [ "27d6668a-427e-485d-a6e7-da38aa255c98" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11819" ], - "x-ms-correlation-request-id": [ "6130c4dd-9a4e-4229-a81a-aa0e6b58ccfd" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043057Z:6130c4dd-9a4e-4229-a81a-aa0e6b58ccfd" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11810" ], + "x-ms-correlation-request-id": [ "6b41a7b6-36bd-443e-96f4-e9f1238e27c0" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114548Z:6b41a7b6-36bd-443e-96f4-e9f1238e27c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:30:56 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:45:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"db055783-5c29-4969-9d37-94c3c4bdb1be\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:27:27.21Z\"}" + "Content": "{\"name\":\"e4bb851b-cf32-4cee-912e-1d2cb5af1024\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:42:20.11Z\"}" } }, - "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01+23": { + "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "204", "205", "206", "207", "208", "209", "210", "211", "212", "213", "214", "215", "216", "217", "218", "219", "220", "221", "222", "223", "224", "225" ], - "x-ms-client-request-id": [ "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537" ], + "x-ms-unique-id": [ "215", "216", "217", "218", "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233", "234", "235", "236" ], + "x-ms-client-request-id": [ "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1649,31 +1609,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "84ef8a2e-228e-4502-9283-46e81ca12de8" ], + "x-ms-request-id": [ "672403f5-d218-4def-aa8f-0a967a44c24c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11818" ], - "x-ms-correlation-request-id": [ "a1b8d47e-90c5-44bd-b8ac-92569feeeaa9" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043107Z:a1b8d47e-90c5-44bd-b8ac-92569feeeaa9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11809" ], + "x-ms-correlation-request-id": [ "5d4a9f69-bbb2-432f-9400-e1160915cba9" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114559Z:5d4a9f69-bbb2-432f-9400-e1160915cba9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:31:06 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:45:58 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"db055783-5c29-4969-9d37-94c3c4bdb1be\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:27:27.21Z\"}" + "Content": "{\"name\":\"e4bb851b-cf32-4cee-912e-1d2cb5af1024\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:42:20.11Z\"}" } }, - "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01+24": { + "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01+24": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "204", "205", "206", "207", "208", "209", "210", "211", "212", "213", "214", "215", "216", "217", "218", "219", "220", "221", "222", "223", "224", "225", "226" ], - "x-ms-client-request-id": [ "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537" ], + "x-ms-unique-id": [ "215", "216", "217", "218", "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233", "234", "235", "236", "237" ], + "x-ms-client-request-id": [ "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1689,31 +1649,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "287110c0-f33f-4fab-ad7c-2222c539f62e" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11817" ], + "x-ms-request-id": [ "bb184d3d-6971-4c98-9a1d-653cc01e8ff3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "b46da0b1-e54e-437f-9a13-dc6523f310d7" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043118Z:b46da0b1-e54e-437f-9a13-dc6523f310d7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11808" ], + "x-ms-correlation-request-id": [ "4472baf8-7f1a-407f-bdd3-b3679fbfa252" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114610Z:4472baf8-7f1a-407f-bdd3-b3679fbfa252" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:31:17 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:46:09 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"db055783-5c29-4969-9d37-94c3c4bdb1be\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:27:27.21Z\"}" + "Content": "{\"name\":\"e4bb851b-cf32-4cee-912e-1d2cb5af1024\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:42:20.11Z\"}" } }, - "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01+25": { + "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01+25": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "204", "205", "206", "207", "208", "209", "210", "211", "212", "213", "214", "215", "216", "217", "218", "219", "220", "221", "222", "223", "224", "225", "226", "227" ], - "x-ms-client-request-id": [ "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537" ], + "x-ms-unique-id": [ "215", "216", "217", "218", "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233", "234", "235", "236", "237", "238" ], + "x-ms-client-request-id": [ "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1729,31 +1689,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "2a5b6199-2aac-4a74-8f29-d51fe015ddca" ], + "x-ms-request-id": [ "c7ad564a-ccf9-416c-ac37-689b134a3298" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11816" ], - "x-ms-correlation-request-id": [ "fb833982-fe4e-4c01-9f5e-1a13e849c557" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043129Z:fb833982-fe4e-4c01-9f5e-1a13e849c557" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11807" ], + "x-ms-correlation-request-id": [ "9b7b1443-7340-4e4a-9787-2ad6671962a4" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114620Z:9b7b1443-7340-4e4a-9787-2ad6671962a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:31:28 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:46:20 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"db055783-5c29-4969-9d37-94c3c4bdb1be\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:27:27.21Z\"}" + "Content": "{\"name\":\"e4bb851b-cf32-4cee-912e-1d2cb5af1024\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:42:20.11Z\"}" } }, - "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01+26": { + "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01+26": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "204", "205", "206", "207", "208", "209", "210", "211", "212", "213", "214", "215", "216", "217", "218", "219", "220", "221", "222", "223", "224", "225", "226", "227", "228" ], - "x-ms-client-request-id": [ "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537" ], + "x-ms-unique-id": [ "215", "216", "217", "218", "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233", "234", "235", "236", "237", "238", "239" ], + "x-ms-client-request-id": [ "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1769,31 +1729,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "f1d28a41-dfa4-44d3-87b4-cc25a74c7499" ], + "x-ms-request-id": [ "05660f21-bc5c-4a0b-8e56-eb9c97783c76" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11815" ], - "x-ms-correlation-request-id": [ "b4d45168-209b-44e5-a7b6-394f255d5c67" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043139Z:b4d45168-209b-44e5-a7b6-394f255d5c67" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11806" ], + "x-ms-correlation-request-id": [ "082805fd-01e7-4956-ab07-bc2c15d5c39c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114630Z:082805fd-01e7-4956-ab07-bc2c15d5c39c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:31:39 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:46:30 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"db055783-5c29-4969-9d37-94c3c4bdb1be\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:27:27.21Z\"}" + "Content": "{\"name\":\"e4bb851b-cf32-4cee-912e-1d2cb5af1024\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:42:20.11Z\"}" } }, - "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01+27": { + "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01+27": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "204", "205", "206", "207", "208", "209", "210", "211", "212", "213", "214", "215", "216", "217", "218", "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229" ], - "x-ms-client-request-id": [ "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537" ], + "x-ms-unique-id": [ "215", "216", "217", "218", "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233", "234", "235", "236", "237", "238", "239", "240" ], + "x-ms-client-request-id": [ "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1809,31 +1769,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "4935d119-970b-4c82-8267-33ac52945380" ], + "x-ms-request-id": [ "911e6442-ade7-4943-bfb6-3bdd05512e8b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11814" ], - "x-ms-correlation-request-id": [ "665d1547-06f6-4bc8-81ea-29718b17e801" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043149Z:665d1547-06f6-4bc8-81ea-29718b17e801" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11805" ], + "x-ms-correlation-request-id": [ "397f5efe-3213-450d-8f28-18deccb7317d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114641Z:397f5efe-3213-450d-8f28-18deccb7317d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:31:49 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:46:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"db055783-5c29-4969-9d37-94c3c4bdb1be\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:27:27.21Z\"}" + "Content": "{\"name\":\"e4bb851b-cf32-4cee-912e-1d2cb5af1024\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:42:20.11Z\"}" } }, - "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01+28": { + "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01+28": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "204", "205", "206", "207", "208", "209", "210", "211", "212", "213", "214", "215", "216", "217", "218", "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230" ], - "x-ms-client-request-id": [ "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537" ], + "x-ms-unique-id": [ "215", "216", "217", "218", "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233", "234", "235", "236", "237", "238", "239", "240", "241" ], + "x-ms-client-request-id": [ "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1849,31 +1809,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "b7b9726a-0216-41b5-9c61-39d633a5b208" ], + "x-ms-request-id": [ "882729d4-de39-453a-b86a-8c54c1e51882" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11813" ], - "x-ms-correlation-request-id": [ "3a039afe-0fb9-4805-8cf7-6fb995a96e17" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043200Z:3a039afe-0fb9-4805-8cf7-6fb995a96e17" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11804" ], + "x-ms-correlation-request-id": [ "d945770c-5c0c-4bf9-b3ca-cee1e97f9c53" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114651Z:d945770c-5c0c-4bf9-b3ca-cee1e97f9c53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:31:59 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:46:51 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"db055783-5c29-4969-9d37-94c3c4bdb1be\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:27:27.21Z\"}" + "Content": "{\"name\":\"e4bb851b-cf32-4cee-912e-1d2cb5af1024\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:42:20.11Z\"}" } }, - "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01+29": { + "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01+29": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "204", "205", "206", "207", "208", "209", "210", "211", "212", "213", "214", "215", "216", "217", "218", "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231" ], - "x-ms-client-request-id": [ "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537" ], + "x-ms-unique-id": [ "215", "216", "217", "218", "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233", "234", "235", "236", "237", "238", "239", "240", "241", "242" ], + "x-ms-client-request-id": [ "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1889,31 +1849,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "9da8f4b1-4093-4f61-96e1-d6de1a021527" ], + "x-ms-request-id": [ "939ca03c-d524-49ec-9da4-b8b2d3ed5e75" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11812" ], - "x-ms-correlation-request-id": [ "6bf1fa26-d4a1-43e7-95b6-fbf7ea70d5bf" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043210Z:6bf1fa26-d4a1-43e7-95b6-fbf7ea70d5bf" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11803" ], + "x-ms-correlation-request-id": [ "e5d55668-0ae8-4bca-a290-a9f5bd0631fd" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114701Z:e5d55668-0ae8-4bca-a290-a9f5bd0631fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:32:10 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:47:01 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"db055783-5c29-4969-9d37-94c3c4bdb1be\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:27:27.21Z\"}" + "Content": "{\"name\":\"e4bb851b-cf32-4cee-912e-1d2cb5af1024\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:42:20.11Z\"}" } }, - "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01+30": { + "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01+30": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "204", "205", "206", "207", "208", "209", "210", "211", "212", "213", "214", "215", "216", "217", "218", "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232" ], - "x-ms-client-request-id": [ "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537" ], + "x-ms-unique-id": [ "215", "216", "217", "218", "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233", "234", "235", "236", "237", "238", "239", "240", "241", "242", "243" ], + "x-ms-client-request-id": [ "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1929,31 +1889,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "c1292059-a602-40cd-b9f5-d74323e8b938" ], + "x-ms-request-id": [ "a34eec7f-03f2-494e-8cb4-55ed446c27a9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11811" ], - "x-ms-correlation-request-id": [ "d815de4c-a8f6-48f1-9e1f-812e09d7ca3b" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043221Z:d815de4c-a8f6-48f1-9e1f-812e09d7ca3b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11802" ], + "x-ms-correlation-request-id": [ "807b20d1-aaf3-41ad-aa45-4a7708d303d4" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114712Z:807b20d1-aaf3-41ad-aa45-4a7708d303d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:32:20 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:47:11 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"db055783-5c29-4969-9d37-94c3c4bdb1be\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:27:27.21Z\"}" + "Content": "{\"name\":\"e4bb851b-cf32-4cee-912e-1d2cb5af1024\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:42:20.11Z\"}" } }, - "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01+31": { + "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01+31": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "204", "205", "206", "207", "208", "209", "210", "211", "212", "213", "214", "215", "216", "217", "218", "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233" ], - "x-ms-client-request-id": [ "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537" ], + "x-ms-unique-id": [ "215", "216", "217", "218", "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233", "234", "235", "236", "237", "238", "239", "240", "241", "242", "243", "244" ], + "x-ms-client-request-id": [ "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1969,31 +1929,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "4c622c3d-83b0-4646-be8a-af370b1d9687" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11810" ], + "x-ms-request-id": [ "6bce0220-05ef-42a9-a71f-40ef7a5573e5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "52ef23ee-5960-4636-a471-32644bfb4011" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043231Z:52ef23ee-5960-4636-a471-32644bfb4011" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11801" ], + "x-ms-correlation-request-id": [ "390f8b04-049d-4183-9ac3-96935ad603ff" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114722Z:390f8b04-049d-4183-9ac3-96935ad603ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:32:30 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:47:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"db055783-5c29-4969-9d37-94c3c4bdb1be\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:27:27.21Z\"}" + "Content": "{\"name\":\"e4bb851b-cf32-4cee-912e-1d2cb5af1024\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:42:20.11Z\"}" } }, - "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01+32": { + "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01+32": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "204", "205", "206", "207", "208", "209", "210", "211", "212", "213", "214", "215", "216", "217", "218", "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233", "234" ], - "x-ms-client-request-id": [ "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537" ], + "x-ms-unique-id": [ "215", "216", "217", "218", "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233", "234", "235", "236", "237", "238", "239", "240", "241", "242", "243", "244", "245" ], + "x-ms-client-request-id": [ "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -2009,31 +1969,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "c6b4bad7-6e04-44cb-b5b6-3776f1d166f6" ], + "x-ms-request-id": [ "045da4a6-1468-4818-85e0-0ace34c70a04" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11809" ], - "x-ms-correlation-request-id": [ "b79c94c6-c106-4971-b508-65b140e89303" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043242Z:b79c94c6-c106-4971-b508-65b140e89303" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11800" ], + "x-ms-correlation-request-id": [ "99aba387-86a6-467a-9081-27170f56d3d5" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114732Z:99aba387-86a6-467a-9081-27170f56d3d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:32:41 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:47:32 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"db055783-5c29-4969-9d37-94c3c4bdb1be\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:27:27.21Z\"}" + "Content": "{\"name\":\"e4bb851b-cf32-4cee-912e-1d2cb5af1024\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:42:20.11Z\"}" } }, - "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01+33": { + "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01+33": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "204", "205", "206", "207", "208", "209", "210", "211", "212", "213", "214", "215", "216", "217", "218", "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233", "234", "235" ], - "x-ms-client-request-id": [ "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537" ], + "x-ms-unique-id": [ "215", "216", "217", "218", "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233", "234", "235", "236", "237", "238", "239", "240", "241", "242", "243", "244", "245", "246" ], + "x-ms-client-request-id": [ "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -2049,31 +2009,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "e22899fe-ea81-410a-a485-c24a0db9ae4d" ], + "x-ms-request-id": [ "ddbe2f8c-5fd3-4eab-9ef1-954beb7dd7bf" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11808" ], - "x-ms-correlation-request-id": [ "d271b48d-b061-4741-8625-a0e831396ac1" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043253Z:d271b48d-b061-4741-8625-a0e831396ac1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11799" ], + "x-ms-correlation-request-id": [ "e846b2e3-2b48-4287-8fb4-df4c1c08006d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114744Z:e846b2e3-2b48-4287-8fb4-df4c1c08006d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:32:52 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:47:43 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"db055783-5c29-4969-9d37-94c3c4bdb1be\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:27:27.21Z\"}" + "Content": "{\"name\":\"e4bb851b-cf32-4cee-912e-1d2cb5af1024\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:42:20.11Z\"}" } }, - "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01+34": { + "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01+34": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "204", "205", "206", "207", "208", "209", "210", "211", "212", "213", "214", "215", "216", "217", "218", "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233", "234", "235", "236" ], - "x-ms-client-request-id": [ "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537" ], + "x-ms-unique-id": [ "215", "216", "217", "218", "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233", "234", "235", "236", "237", "238", "239", "240", "241", "242", "243", "244", "245", "246", "247" ], + "x-ms-client-request-id": [ "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -2089,31 +2049,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "c25d89ce-0ee5-4a5e-97fc-92b6319407c6" ], + "x-ms-request-id": [ "a86cf0ba-6020-4817-b858-396fdef61619" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11807" ], - "x-ms-correlation-request-id": [ "5abf1580-2f61-42ed-aa46-7dc36aaaffbe" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043303Z:5abf1580-2f61-42ed-aa46-7dc36aaaffbe" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11798" ], + "x-ms-correlation-request-id": [ "92b8edf6-7259-4efa-8f2d-ad88612e3209" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114754Z:92b8edf6-7259-4efa-8f2d-ad88612e3209" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:33:03 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:47:53 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"db055783-5c29-4969-9d37-94c3c4bdb1be\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:27:27.21Z\"}" + "Content": "{\"name\":\"e4bb851b-cf32-4cee-912e-1d2cb5af1024\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:42:20.11Z\"}" } }, - "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01+35": { + "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01+35": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "204", "205", "206", "207", "208", "209", "210", "211", "212", "213", "214", "215", "216", "217", "218", "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233", "234", "235", "236", "237" ], - "x-ms-client-request-id": [ "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537" ], + "x-ms-unique-id": [ "215", "216", "217", "218", "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233", "234", "235", "236", "237", "238", "239", "240", "241", "242", "243", "244", "245", "246", "247", "248" ], + "x-ms-client-request-id": [ "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -2129,31 +2089,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "d1bebfa5-973a-42bc-a391-43933d78a468" ], + "x-ms-request-id": [ "1fc8e921-d231-42e9-9f03-aab3fe53cc7b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11806" ], - "x-ms-correlation-request-id": [ "a692a4a8-6492-4dfb-b84d-2becb8d1cb40" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043313Z:a692a4a8-6492-4dfb-b84d-2becb8d1cb40" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11797" ], + "x-ms-correlation-request-id": [ "0001cc21-12d4-408a-98f8-a66f97a7b1ab" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114804Z:0001cc21-12d4-408a-98f8-a66f97a7b1ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:33:13 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:48:03 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"db055783-5c29-4969-9d37-94c3c4bdb1be\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:27:27.21Z\"}" + "Content": "{\"name\":\"e4bb851b-cf32-4cee-912e-1d2cb5af1024\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:42:20.11Z\"}" } }, - "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01+36": { + "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01+36": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "204", "205", "206", "207", "208", "209", "210", "211", "212", "213", "214", "215", "216", "217", "218", "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233", "234", "235", "236", "237", "238" ], - "x-ms-client-request-id": [ "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537" ], + "x-ms-unique-id": [ "215", "216", "217", "218", "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233", "234", "235", "236", "237", "238", "239", "240", "241", "242", "243", "244", "245", "246", "247", "248", "249" ], + "x-ms-client-request-id": [ "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -2169,31 +2129,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "2ce9615b-70f9-479b-9716-f613d67428e1" ], + "x-ms-request-id": [ "4506b5bd-0756-469b-a540-2c80fa0f7e96" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11805" ], - "x-ms-correlation-request-id": [ "b56a3f0d-95ff-46f2-91bf-bb52d0e5e138" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043324Z:b56a3f0d-95ff-46f2-91bf-bb52d0e5e138" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11796" ], + "x-ms-correlation-request-id": [ "cf0d4b5d-8b3c-46b0-b348-fcf35f1af763" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114815Z:cf0d4b5d-8b3c-46b0-b348-fcf35f1af763" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:33:23 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:48:14 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"db055783-5c29-4969-9d37-94c3c4bdb1be\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:27:27.21Z\"}" + "Content": "{\"name\":\"e4bb851b-cf32-4cee-912e-1d2cb5af1024\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:42:20.11Z\"}" } }, - "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01+37": { + "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01+37": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "204", "205", "206", "207", "208", "209", "210", "211", "212", "213", "214", "215", "216", "217", "218", "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233", "234", "235", "236", "237", "238", "239" ], - "x-ms-client-request-id": [ "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537" ], + "x-ms-unique-id": [ "215", "216", "217", "218", "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233", "234", "235", "236", "237", "238", "239", "240", "241", "242", "243", "244", "245", "246", "247", "248", "249", "250" ], + "x-ms-client-request-id": [ "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -2209,31 +2169,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "94344799-dcbb-4791-b6ee-f5ae8dce2d63" ], + "x-ms-request-id": [ "a861853e-f70b-4709-a05f-6a970bb95c0d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11804" ], - "x-ms-correlation-request-id": [ "02efe21e-34f4-423a-bf73-f2a5802790fa" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043334Z:02efe21e-34f4-423a-bf73-f2a5802790fa" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11795" ], + "x-ms-correlation-request-id": [ "9d0a1bd8-5b43-4d85-8967-0c25fef7c7e7" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114825Z:9d0a1bd8-5b43-4d85-8967-0c25fef7c7e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:33:34 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:48:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"db055783-5c29-4969-9d37-94c3c4bdb1be\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:27:27.21Z\"}" + "Content": "{\"name\":\"e4bb851b-cf32-4cee-912e-1d2cb5af1024\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:42:20.11Z\"}" } }, - "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01+38": { + "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01+38": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "204", "205", "206", "207", "208", "209", "210", "211", "212", "213", "214", "215", "216", "217", "218", "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233", "234", "235", "236", "237", "238", "239", "240" ], - "x-ms-client-request-id": [ "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537" ], + "x-ms-unique-id": [ "215", "216", "217", "218", "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233", "234", "235", "236", "237", "238", "239", "240", "241", "242", "243", "244", "245", "246", "247", "248", "249", "250", "251" ], + "x-ms-client-request-id": [ "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -2249,31 +2209,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "0ce7e6c4-c94d-465e-ad86-cc0ca0f90f88" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11803" ], + "x-ms-request-id": [ "d9f01f8d-8a9f-4c4a-8006-20773cdd64ae" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "8f672031-3538-4934-af64-d9c9b1a9d0ca" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043344Z:8f672031-3538-4934-af64-d9c9b1a9d0ca" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11794" ], + "x-ms-correlation-request-id": [ "cbcfa865-ce15-484d-836d-1bad538aecd4" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114836Z:cbcfa865-ce15-484d-836d-1bad538aecd4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:33:44 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:48:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"db055783-5c29-4969-9d37-94c3c4bdb1be\",\"status\":\"InProgress\",\"startTime\":\"2020-05-08T04:27:27.21Z\"}" + "Content": "{\"name\":\"e4bb851b-cf32-4cee-912e-1d2cb5af1024\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:42:20.11Z\"}" } }, - "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01+39": { + "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01+39": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/db055783-5c29-4969-9d37-94c3c4bdb1be?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "204", "205", "206", "207", "208", "209", "210", "211", "212", "213", "214", "215", "216", "217", "218", "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233", "234", "235", "236", "237", "238", "239", "240", "241" ], - "x-ms-client-request-id": [ "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537" ], + "x-ms-unique-id": [ "215", "216", "217", "218", "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233", "234", "235", "236", "237", "238", "239", "240", "241", "242", "243", "244", "245", "246", "247", "248", "249", "250", "251", "252" ], + "x-ms-client-request-id": [ "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -2289,31 +2249,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "d43a00b9-b2ee-4f6a-a2dd-c60d9a9153b6" ], + "x-ms-request-id": [ "98daee1a-16d2-4e29-98cd-a7292f7fa241" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11802" ], - "x-ms-correlation-request-id": [ "5ec06c68-1028-4c34-9ec9-6efa182d8b86" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043356Z:5ec06c68-1028-4c34-9ec9-6efa182d8b86" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11793" ], + "x-ms-correlation-request-id": [ "e2917f35-f3ce-4358-901e-18fd1edf3b52" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114846Z:e2917f35-f3ce-4358-901e-18fd1edf3b52" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:33:55 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:48:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "106" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"db055783-5c29-4969-9d37-94c3c4bdb1be\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-08T04:27:27.21Z\"}" + "Content": "{\"name\":\"e4bb851b-cf32-4cee-912e-1d2cb5af1024\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:42:20.11Z\"}" } }, - "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100-restore-2?api-version=2017-12-01+40": { + "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01+40": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100-restore-2?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "204", "205", "206", "207", "208", "209", "210", "211", "212", "213", "214", "215", "216", "217", "218", "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233", "234", "235", "236", "237", "238", "239", "240", "241", "242" ], - "x-ms-client-request-id": [ "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537", "1060dce2-68a7-40e6-ad5a-675c2bd3f537" ], + "x-ms-unique-id": [ "215", "216", "217", "218", "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233", "234", "235", "236", "237", "238", "239", "240", "241", "242", "243", "244", "245", "246", "247", "248", "249", "250", "251", "252", "253" ], + "x-ms-client-request-id": [ "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8" ], "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -2328,21 +2288,101 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "7f1e1726-7e97-4789-86e4-207d80a6cc3d" ], + "Retry-After": [ "10" ], + "x-ms-request-id": [ "8d1ad94a-a519-4b56-9702-9594f5138c6e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11801" ], - "x-ms-correlation-request-id": [ "eeae2ba1-2665-4501-a561-8778817be9b5" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043356Z:eeae2ba1-2665-4501-a561-8778817be9b5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11792" ], + "x-ms-correlation-request-id": [ "fbee512b-8fef-4b6a-a216-6263dec8f9f3" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114856Z:fbee512b-8fef-4b6a-a216-6263dec8f9f3" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Fri, 25 Sep 2020 11:48:56 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "107" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"e4bb851b-cf32-4cee-912e-1d2cb5af1024\",\"status\":\"InProgress\",\"startTime\":\"2020-09-25T11:42:20.11Z\"}" + } + }, + "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01+41": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e4bb851b-cf32-4cee-912e-1d2cb5af1024?api-version=2017-12-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "215", "216", "217", "218", "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233", "234", "235", "236", "237", "238", "239", "240", "241", "242", "243", "244", "245", "246", "247", "248", "249", "250", "251", "252", "253", "254" ], + "x-ms-client-request-id": [ "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8" ], + "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], + "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-request-id": [ "ca241931-5463-404a-af6b-76571a23490d" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11791" ], + "x-ms-correlation-request-id": [ "0a5bd115-7b08-4a57-a27a-807d41822efa" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114907Z:0a5bd115-7b08-4a57-a27a-807d41822efa" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Fri, 25 Sep 2020 11:49:06 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "106" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"e4bb851b-cf32-4cee-912e-1d2cb5af1024\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:42:20.11Z\"}" + } + }, + "Restore-AzPostgreSqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100-restore-2?api-version=2017-12-01+42": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100-restore-2?api-version=2017-12-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "215", "216", "217", "218", "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233", "234", "235", "236", "237", "238", "239", "240", "241", "242", "243", "244", "245", "246", "247", "248", "249", "250", "251", "252", "253", "254", "255" ], + "x-ms-client-request-id": [ "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8", "d46de867-855a-4bbe-86ec-9d56200548f8" ], + "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer", "Az.PostgreSql.internal\\New-AzPostgreSqlServer" ], + "FullCommandName": [ "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create", "New-AzPostgreSqlServer_Create" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "39e1d1e2-0e13-46c7-a739-5e564cccad9a" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11790" ], + "x-ms-correlation-request-id": [ "dd8f1b40-4089-4f05-9a5b-39acdb1498c2" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114907Z:dd8f1b40-4089-4f05-9a5b-39acdb1498c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:33:55 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:49:07 GMT" ] }, "ContentHeaders": { "Content-Length": [ "973" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"postgresql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100-restore-2.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-05-08T04:37:27.523+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100-restore-2\",\"name\":\"postgresql-test-100-restore-2\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}" + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"postgresql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100-restore-2.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-09-25T11:52:20.423+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100-restore-2\",\"name\":\"postgresql-test-100-restore-2\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}" } } } \ No newline at end of file diff --git a/src/PostgreSql/test/Update-AzPostgreSqlConfiguration.Recording.json b/src/PostgreSql/test/Update-AzPostgreSqlConfiguration.Recording.json index b8c131c6d9c6..8bbdd354b16f 100644 --- a/src/PostgreSql/test/Update-AzPostgreSqlConfiguration.Recording.json +++ b/src/PostgreSql/test/Update-AzPostgreSqlConfiguration.Recording.json @@ -3,12 +3,12 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/intervalstyle?api-version=2017-12-01", - "Content": "{\n \"properties\": {\n \"value\": \"SQL_STANDARD\"\n }\n}", + "Content": "{\r\n \"properties\": {\r\n \"value\": \"SQL_STANDARD\"\r\n }\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "53" ] + "Content-Length": [ "57" ] } }, "Response": { @@ -16,35 +16,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/ee8feb69-633b-4bc4-b5c3-c8901d982f03?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/2d654607-bcd3-49f8-9b11-c35061b9266e?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/ee8feb69-633b-4bc4-b5c3-c8901d982f03?api-version=2017-12-01" ], - "x-ms-request-id": [ "ee8feb69-633b-4bc4-b5c3-c8901d982f03" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/2d654607-bcd3-49f8-9b11-c35061b9266e?api-version=2017-12-01" ], + "x-ms-request-id": [ "2d654607-bcd3-49f8-9b11-c35061b9266e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1178" ], - "x-ms-correlation-request-id": [ "537c3c92-cbee-4d94-b624-b99f35e8a92f" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043400Z:537c3c92-cbee-4d94-b624-b99f35e8a92f" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1174" ], + "x-ms-correlation-request-id": [ "ad2e424c-b367-40c4-8b15-639ca6e0dab2" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114908Z:ad2e424c-b367-40c4-8b15-639ca6e0dab2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:33:59 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:49:08 GMT" ] }, "ContentHeaders": { "Content-Length": [ "80" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpdateElasticServerConfig\",\"startTime\":\"2020-05-08T04:34:00.287Z\"}" + "Content": "{\"operation\":\"UpdateElasticServerConfig\",\"startTime\":\"2020-09-25T11:49:08.207Z\"}" } }, - "Update-AzPostgreSqlConfiguration+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/ee8feb69-633b-4bc4-b5c3-c8901d982f03?api-version=2017-12-01+2": { + "Update-AzPostgreSqlConfiguration+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/2d654607-bcd3-49f8-9b11-c35061b9266e?api-version=2017-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/ee8feb69-633b-4bc4-b5c3-c8901d982f03?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/2d654607-bcd3-49f8-9b11-c35061b9266e?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "243", "244" ], - "x-ms-client-request-id": [ "6e6cfdc3-5f82-4381-af52-22c1a7956687", "6e6cfdc3-5f82-4381-af52-22c1a7956687" ], - "CommandName": [ "Update-AzPostgreSqlConfiguration", "Update-AzPostgreSqlConfiguration" ], + "x-ms-unique-id": [ "256", "257" ], + "x-ms-client-request-id": [ "cb491b8e-9e60-470b-a896-819a2869d2d6", "cb491b8e-9e60-470b-a896-819a2869d2d6" ], + "CommandName": [ "Az.PostgreSql.internal\\Update-AzPostgreSqlConfiguration", "Az.PostgreSql.internal\\Update-AzPostgreSqlConfiguration" ], "FullCommandName": [ "Update-AzPostgreSqlConfiguration_UpdateExpanded", "Update-AzPostgreSqlConfiguration_UpdateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], @@ -59,21 +59,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "54143fd1-3254-42ec-9db5-e8868b4390e7" ], + "x-ms-request-id": [ "f3940964-82d5-4eb4-b567-bc87b7f01dfc" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11800" ], - "x-ms-correlation-request-id": [ "be47682b-0dcd-415b-96b9-609a590e7a07" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043415Z:be47682b-0dcd-415b-96b9-609a590e7a07" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11789" ], + "x-ms-correlation-request-id": [ "e601ddc0-859f-4b9d-8533-b5ef8ef0b082" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114923Z:e601ddc0-859f-4b9d-8533-b5ef8ef0b082" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:34:14 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:49:23 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"ee8feb69-633b-4bc4-b5c3-c8901d982f03\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-08T04:34:00.287Z\"}" + "Content": "{\"name\":\"2d654607-bcd3-49f8-9b11-c35061b9266e\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:49:08.207Z\"}" } }, "Update-AzPostgreSqlConfiguration+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/intervalstyle?api-version=2017-12-01+3": { @@ -82,9 +82,9 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/intervalstyle?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "243", "244", "245" ], - "x-ms-client-request-id": [ "6e6cfdc3-5f82-4381-af52-22c1a7956687", "6e6cfdc3-5f82-4381-af52-22c1a7956687", "6e6cfdc3-5f82-4381-af52-22c1a7956687" ], - "CommandName": [ "Update-AzPostgreSqlConfiguration", "Update-AzPostgreSqlConfiguration", "Update-AzPostgreSqlConfiguration" ], + "x-ms-unique-id": [ "256", "257", "258" ], + "x-ms-client-request-id": [ "cb491b8e-9e60-470b-a896-819a2869d2d6", "cb491b8e-9e60-470b-a896-819a2869d2d6", "cb491b8e-9e60-470b-a896-819a2869d2d6" ], + "CommandName": [ "Az.PostgreSql.internal\\Update-AzPostgreSqlConfiguration", "Az.PostgreSql.internal\\Update-AzPostgreSqlConfiguration", "Az.PostgreSql.internal\\Update-AzPostgreSqlConfiguration" ], "FullCommandName": [ "Update-AzPostgreSqlConfiguration_UpdateExpanded", "Update-AzPostgreSqlConfiguration_UpdateExpanded", "Update-AzPostgreSqlConfiguration_UpdateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], @@ -98,14 +98,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "3954c1af-7832-43c9-b4c4-a0232f7814a0" ], + "x-ms-request-id": [ "530dc6e1-b14d-492d-aee9-e56a28b2f59b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11799" ], - "x-ms-correlation-request-id": [ "256e0d1a-3ba6-4d0f-a4d3-7aacfaa7d73b" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043416Z:256e0d1a-3ba6-4d0f-a4d3-7aacfaa7d73b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11788" ], + "x-ms-correlation-request-id": [ "b6111397-c2ca-4079-a723-1cb728b063de" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114924Z:b6111397-c2ca-4079-a723-1cb728b063de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:34:15 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:49:23 GMT" ] }, "ContentHeaders": { "Content-Length": [ "563" ], @@ -119,12 +119,12 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/deadlock_timeout?api-version=2017-12-01", - "Content": "{\n \"properties\": {\n \"value\": \"2000\"\n }\n}", + "Content": "{\r\n \"properties\": {\r\n \"value\": \"2000\"\r\n }\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "45" ] + "Content-Length": [ "49" ] } }, "Response": { @@ -132,35 +132,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/b3fb2ed1-363f-42d4-8448-0ade033d6748?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/351e8bf3-49e4-43d8-82c2-b4b767cd83c4?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/b3fb2ed1-363f-42d4-8448-0ade033d6748?api-version=2017-12-01" ], - "x-ms-request-id": [ "b3fb2ed1-363f-42d4-8448-0ade033d6748" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/351e8bf3-49e4-43d8-82c2-b4b767cd83c4?api-version=2017-12-01" ], + "x-ms-request-id": [ "351e8bf3-49e4-43d8-82c2-b4b767cd83c4" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1177" ], - "x-ms-correlation-request-id": [ "9668bad1-938c-4850-9d68-142b88c4298c" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043416Z:9668bad1-938c-4850-9d68-142b88c4298c" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1173" ], + "x-ms-correlation-request-id": [ "2ae51d6e-76dd-4972-aa9b-5d81cd3c7999" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114925Z:2ae51d6e-76dd-4972-aa9b-5d81cd3c7999" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:34:15 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:49:24 GMT" ] }, "ContentHeaders": { "Content-Length": [ "80" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpdateElasticServerConfig\",\"startTime\":\"2020-05-08T04:34:16.693Z\"}" + "Content": "{\"operation\":\"UpdateElasticServerConfig\",\"startTime\":\"2020-09-25T11:49:24.707Z\"}" } }, - "Update-AzPostgreSqlConfiguration+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/b3fb2ed1-363f-42d4-8448-0ade033d6748?api-version=2017-12-01+2": { + "Update-AzPostgreSqlConfiguration+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/351e8bf3-49e4-43d8-82c2-b4b767cd83c4?api-version=2017-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/b3fb2ed1-363f-42d4-8448-0ade033d6748?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/351e8bf3-49e4-43d8-82c2-b4b767cd83c4?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "246", "247" ], - "x-ms-client-request-id": [ "e1bf8f1f-1bbc-4ed6-8ca0-d16c0c95f9a3", "e1bf8f1f-1bbc-4ed6-8ca0-d16c0c95f9a3" ], - "CommandName": [ "Update-AzPostgreSqlConfiguration", "Update-AzPostgreSqlConfiguration" ], + "x-ms-unique-id": [ "259", "260" ], + "x-ms-client-request-id": [ "c994999b-0a4c-4940-b763-97d94f6cb8a4", "c994999b-0a4c-4940-b763-97d94f6cb8a4" ], + "CommandName": [ "Az.PostgreSql.internal\\Update-AzPostgreSqlConfiguration", "Az.PostgreSql.internal\\Update-AzPostgreSqlConfiguration" ], "FullCommandName": [ "Update-AzPostgreSqlConfiguration_UpdateViaIdentityExpanded", "Update-AzPostgreSqlConfiguration_UpdateViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], @@ -175,21 +175,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "4a220531-d0e3-426b-80a8-565ca94f3062" ], + "x-ms-request-id": [ "f27927a7-4bf9-456a-bfa5-c83faa573147" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11798" ], - "x-ms-correlation-request-id": [ "b7b1ad45-216e-491f-aa4e-09556f0369f1" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043432Z:b7b1ad45-216e-491f-aa4e-09556f0369f1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11787" ], + "x-ms-correlation-request-id": [ "6047625f-1897-4307-8a8a-a366fb4a0e89" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114940Z:6047625f-1897-4307-8a8a-a366fb4a0e89" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:34:32 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:49:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"b3fb2ed1-363f-42d4-8448-0ade033d6748\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-08T04:34:16.693Z\"}" + "Content": "{\"name\":\"351e8bf3-49e4-43d8-82c2-b4b767cd83c4\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:49:24.707Z\"}" } }, "Update-AzPostgreSqlConfiguration+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/deadlock_timeout?api-version=2017-12-01+3": { @@ -198,9 +198,9 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/configurations/deadlock_timeout?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "246", "247", "248" ], - "x-ms-client-request-id": [ "e1bf8f1f-1bbc-4ed6-8ca0-d16c0c95f9a3", "e1bf8f1f-1bbc-4ed6-8ca0-d16c0c95f9a3", "e1bf8f1f-1bbc-4ed6-8ca0-d16c0c95f9a3" ], - "CommandName": [ "Update-AzPostgreSqlConfiguration", "Update-AzPostgreSqlConfiguration", "Update-AzPostgreSqlConfiguration" ], + "x-ms-unique-id": [ "259", "260", "261" ], + "x-ms-client-request-id": [ "c994999b-0a4c-4940-b763-97d94f6cb8a4", "c994999b-0a4c-4940-b763-97d94f6cb8a4", "c994999b-0a4c-4940-b763-97d94f6cb8a4" ], + "CommandName": [ "Az.PostgreSql.internal\\Update-AzPostgreSqlConfiguration", "Az.PostgreSql.internal\\Update-AzPostgreSqlConfiguration", "Az.PostgreSql.internal\\Update-AzPostgreSqlConfiguration" ], "FullCommandName": [ "Update-AzPostgreSqlConfiguration_UpdateViaIdentityExpanded", "Update-AzPostgreSqlConfiguration_UpdateViaIdentityExpanded", "Update-AzPostgreSqlConfiguration_UpdateViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], @@ -214,14 +214,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "e1e9ecbc-5fb0-4e28-af7a-424333062006" ], + "x-ms-request-id": [ "690e8b2c-a7dc-4698-9f26-9a1eed679d37" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11797" ], - "x-ms-correlation-request-id": [ "605c1a5f-21d8-4d4b-addb-a3f744359d7d" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043432Z:605c1a5f-21d8-4d4b-addb-a3f744359d7d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11786" ], + "x-ms-correlation-request-id": [ "24ee7aa9-61ea-4d09-af82-d05efe4fd47f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114940Z:24ee7aa9-61ea-4d09-af82-d05efe4fd47f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:34:32 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:49:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "563" ], diff --git a/src/PostgreSql/test/Update-AzPostgreSqlFirewallRule.Recording.json b/src/PostgreSql/test/Update-AzPostgreSqlFirewallRule.Recording.json index 410782917f24..fb5d075d7f0b 100644 --- a/src/PostgreSql/test/Update-AzPostgreSqlFirewallRule.Recording.json +++ b/src/PostgreSql/test/Update-AzPostgreSqlFirewallRule.Recording.json @@ -1,14 +1,14 @@ { - "Update-AzPostgreSqlFirewallRule+[NoContext]+UpdateExpanded+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01?api-version=2017-12-01+1": { + "Update-AzPostgreSqlFirewallRule+[NoContext]+ClientIPAddress+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01?api-version=2017-12-01+1": { "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01?api-version=2017-12-01", - "Content": "{\n \"properties\": {\n \"endIpAddress\": \"0.0.0.1\",\n \"startIpAddress\": \"0.0.0.0\"\n }\n}", + "Content": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.0\",\r\n \"endIpAddress\": \"0.0.0.1\"\r\n }\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "88" ] + "Content-Length": [ "93" ] } }, "Response": { @@ -16,35 +16,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/92cd1565-874b-4115-b43d-73af7d67076e?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/9ccf456f-9710-4d4c-9001-b97cc5442557?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/92cd1565-874b-4115-b43d-73af7d67076e?api-version=2017-12-01" ], - "x-ms-request-id": [ "92cd1565-874b-4115-b43d-73af7d67076e" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/9ccf456f-9710-4d4c-9001-b97cc5442557?api-version=2017-12-01" ], + "x-ms-request-id": [ "9ccf456f-9710-4d4c-9001-b97cc5442557" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1176" ], - "x-ms-correlation-request-id": [ "41496a85-6cf9-4a0c-adf2-90a9c1e83d54" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043434Z:41496a85-6cf9-4a0c-adf2-90a9c1e83d54" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1172" ], + "x-ms-correlation-request-id": [ "57200414-c0c8-44ae-baae-6948790962a2" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114942Z:57200414-c0c8-44ae-baae-6948790962a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:34:34 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:49:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "87" ], + "Content-Length": [ "86" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServerFirewallRules\",\"startTime\":\"2020-05-08T04:34:33.333Z\"}" + "Content": "{\"operation\":\"UpsertElasticServerFirewallRules\",\"startTime\":\"2020-09-25T11:49:41.41Z\"}" } }, - "Update-AzPostgreSqlFirewallRule+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/92cd1565-874b-4115-b43d-73af7d67076e?api-version=2017-12-01+2": { + "Update-AzPostgreSqlFirewallRule+[NoContext]+ClientIPAddress+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/9ccf456f-9710-4d4c-9001-b97cc5442557?api-version=2017-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/92cd1565-874b-4115-b43d-73af7d67076e?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/9ccf456f-9710-4d4c-9001-b97cc5442557?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "249", "250" ], - "x-ms-client-request-id": [ "3c4865b6-6f3f-4c46-9c1a-08cc358e0e88", "3c4865b6-6f3f-4c46-9c1a-08cc358e0e88" ], - "CommandName": [ "New-AzPostgreSqlFirewallRule", "New-AzPostgreSqlFirewallRule" ], + "x-ms-unique-id": [ "262", "263" ], + "x-ms-client-request-id": [ "5fe7ae9b-8a3d-4052-bb41-ecce7f91052e", "5fe7ae9b-8a3d-4052-bb41-ecce7f91052e" ], + "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlFirewallRule", "Az.PostgreSql.internal\\New-AzPostgreSqlFirewallRule" ], "FullCommandName": [ "New-AzPostgreSqlFirewallRule_CreateExpanded", "New-AzPostgreSqlFirewallRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], @@ -59,32 +59,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "7bce0064-821a-49fb-988c-9b152721ccfb" ], + "x-ms-request-id": [ "9d322306-6ea2-407d-8a54-aaaf802b29f7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11796" ], - "x-ms-correlation-request-id": [ "81b03777-723b-498b-be2a-43dc3a271840" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043449Z:81b03777-723b-498b-be2a-43dc3a271840" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11785" ], + "x-ms-correlation-request-id": [ "1c57083f-6525-4689-9a9c-4a5f5b193765" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114958Z:1c57083f-6525-4689-9a9c-4a5f5b193765" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:34:49 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:49:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "106" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"92cd1565-874b-4115-b43d-73af7d67076e\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-08T04:34:33.333Z\"}" + "Content": "{\"name\":\"9ccf456f-9710-4d4c-9001-b97cc5442557\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:49:41.41Z\"}" } }, - "Update-AzPostgreSqlFirewallRule+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01?api-version=2017-12-01+3": { + "Update-AzPostgreSqlFirewallRule+[NoContext]+ClientIPAddress+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01?api-version=2017-12-01+3": { "Request": { "Method": "GET", "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "249", "250", "251" ], - "x-ms-client-request-id": [ "3c4865b6-6f3f-4c46-9c1a-08cc358e0e88", "3c4865b6-6f3f-4c46-9c1a-08cc358e0e88", "3c4865b6-6f3f-4c46-9c1a-08cc358e0e88" ], - "CommandName": [ "New-AzPostgreSqlFirewallRule", "New-AzPostgreSqlFirewallRule", "New-AzPostgreSqlFirewallRule" ], + "x-ms-unique-id": [ "262", "263", "264" ], + "x-ms-client-request-id": [ "5fe7ae9b-8a3d-4052-bb41-ecce7f91052e", "5fe7ae9b-8a3d-4052-bb41-ecce7f91052e", "5fe7ae9b-8a3d-4052-bb41-ecce7f91052e" ], + "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlFirewallRule", "Az.PostgreSql.internal\\New-AzPostgreSqlFirewallRule", "Az.PostgreSql.internal\\New-AzPostgreSqlFirewallRule" ], "FullCommandName": [ "New-AzPostgreSqlFirewallRule_CreateExpanded", "New-AzPostgreSqlFirewallRule_CreateExpanded", "New-AzPostgreSqlFirewallRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], @@ -98,14 +98,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "450e62e7-9792-48e6-8e32-8257d87b6eb1" ], + "x-ms-request-id": [ "04e1eae1-ba0f-447d-9b11-4c87c9c880c7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11795" ], - "x-ms-correlation-request-id": [ "bbfbf520-430d-491e-9bb4-d9879dbd8e04" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043450Z:bbfbf520-430d-491e-9bb4-d9879dbd8e04" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11784" ], + "x-ms-correlation-request-id": [ "b1abac44-b981-4d34-93af-47ea1312d312" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T114958Z:b1abac44-b981-4d34-93af-47ea1312d312" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:34:49 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:49:57 GMT" ] }, "ContentHeaders": { "Content-Length": [ "335" ], @@ -115,16 +115,16 @@ "Content": "{\"properties\":{\"startIpAddress\":\"0.0.0.0\",\"endIpAddress\":\"0.0.0.1\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01\",\"name\":\"postgresqlrule01\",\"type\":\"Microsoft.DBforPostgreSQL/servers/firewallRules\"}" } }, - "Update-AzPostgreSqlFirewallRule+[NoContext]+UpdateExpanded+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01?api-version=2017-12-01+4": { + "Update-AzPostgreSqlFirewallRule+[NoContext]+ClientIPAddress+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01?api-version=2017-12-01+4": { "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01?api-version=2017-12-01", - "Content": "{\n \"properties\": {\n \"endIpAddress\": \"0.0.0.3\",\n \"startIpAddress\": \"0.0.0.2\"\n }\n}", + "Content": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.2\",\r\n \"endIpAddress\": \"0.0.0.2\"\r\n }\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "88" ] + "Content-Length": [ "93" ] } }, "Response": { @@ -132,35 +132,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/90ebfdcc-d5ee-4322-bd8e-7d2c1be982c4?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/79cb1e83-5460-4f0c-9213-9d5b2d404a4f?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/90ebfdcc-d5ee-4322-bd8e-7d2c1be982c4?api-version=2017-12-01" ], - "x-ms-request-id": [ "90ebfdcc-d5ee-4322-bd8e-7d2c1be982c4" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/79cb1e83-5460-4f0c-9213-9d5b2d404a4f?api-version=2017-12-01" ], + "x-ms-request-id": [ "79cb1e83-5460-4f0c-9213-9d5b2d404a4f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1175" ], - "x-ms-correlation-request-id": [ "991ce634-c8a0-4363-b11b-69a4d4a7285a" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043451Z:991ce634-c8a0-4363-b11b-69a4d4a7285a" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1171" ], + "x-ms-correlation-request-id": [ "666612e6-aa4a-4fd0-8453-2b8524e98118" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T115000Z:666612e6-aa4a-4fd0-8453-2b8524e98118" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:34:51 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:50:00 GMT" ] }, "ContentHeaders": { "Content-Length": [ "86" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServerFirewallRules\",\"startTime\":\"2020-05-08T04:34:50.68Z\"}" + "Content": "{\"operation\":\"UpsertElasticServerFirewallRules\",\"startTime\":\"2020-09-25T11:49:58.91Z\"}" } }, - "Update-AzPostgreSqlFirewallRule+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/90ebfdcc-d5ee-4322-bd8e-7d2c1be982c4?api-version=2017-12-01+5": { + "Update-AzPostgreSqlFirewallRule+[NoContext]+ClientIPAddress+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/79cb1e83-5460-4f0c-9213-9d5b2d404a4f?api-version=2017-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/90ebfdcc-d5ee-4322-bd8e-7d2c1be982c4?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/79cb1e83-5460-4f0c-9213-9d5b2d404a4f?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "252", "253" ], - "x-ms-client-request-id": [ "3fe49ae9-3240-4315-8679-fa3df9d77e88", "3fe49ae9-3240-4315-8679-fa3df9d77e88" ], - "CommandName": [ "Update-AzPostgreSqlFirewallRule", "Update-AzPostgreSqlFirewallRule" ], + "x-ms-unique-id": [ "265", "266" ], + "x-ms-client-request-id": [ "e444fcf6-a7f3-44bd-b0c1-0a7944a16508", "e444fcf6-a7f3-44bd-b0c1-0a7944a16508" ], + "CommandName": [ "Az.PostgreSql.internal\\Update-AzPostgreSqlFirewallRule", "Az.PostgreSql.internal\\Update-AzPostgreSqlFirewallRule" ], "FullCommandName": [ "Update-AzPostgreSqlFirewallRule_UpdateExpanded", "Update-AzPostgreSqlFirewallRule_UpdateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], @@ -175,32 +175,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "9a3f1910-9e60-46af-b5c5-bcbedfd1b2be" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11794" ], + "x-ms-request-id": [ "7eae3fa3-8f34-4dd2-938d-8cfa6e4867a9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "d29f3dab-2337-48c2-866f-8084f33f3c33" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043507Z:d29f3dab-2337-48c2-866f-8084f33f3c33" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11783" ], + "x-ms-correlation-request-id": [ "470fba78-4e2a-442d-a41c-be1108d55d42" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T115016Z:470fba78-4e2a-442d-a41c-be1108d55d42" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:35:06 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:50:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "106" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"90ebfdcc-d5ee-4322-bd8e-7d2c1be982c4\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-08T04:34:50.68Z\"}" + "Content": "{\"name\":\"79cb1e83-5460-4f0c-9213-9d5b2d404a4f\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:49:58.91Z\"}" } }, - "Update-AzPostgreSqlFirewallRule+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01?api-version=2017-12-01+6": { + "Update-AzPostgreSqlFirewallRule+[NoContext]+ClientIPAddress+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01?api-version=2017-12-01+6": { "Request": { "Method": "GET", "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "252", "253", "254" ], - "x-ms-client-request-id": [ "3fe49ae9-3240-4315-8679-fa3df9d77e88", "3fe49ae9-3240-4315-8679-fa3df9d77e88", "3fe49ae9-3240-4315-8679-fa3df9d77e88" ], - "CommandName": [ "Update-AzPostgreSqlFirewallRule", "Update-AzPostgreSqlFirewallRule", "Update-AzPostgreSqlFirewallRule" ], + "x-ms-unique-id": [ "265", "266", "267" ], + "x-ms-client-request-id": [ "e444fcf6-a7f3-44bd-b0c1-0a7944a16508", "e444fcf6-a7f3-44bd-b0c1-0a7944a16508", "e444fcf6-a7f3-44bd-b0c1-0a7944a16508" ], + "CommandName": [ "Az.PostgreSql.internal\\Update-AzPostgreSqlFirewallRule", "Az.PostgreSql.internal\\Update-AzPostgreSqlFirewallRule", "Az.PostgreSql.internal\\Update-AzPostgreSqlFirewallRule" ], "FullCommandName": [ "Update-AzPostgreSqlFirewallRule_UpdateExpanded", "Update-AzPostgreSqlFirewallRule_UpdateExpanded", "Update-AzPostgreSqlFirewallRule_UpdateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], @@ -214,31 +214,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "3559b21e-d52c-4b0b-9faf-166867914bce" ], + "x-ms-request-id": [ "6c99f41e-65e1-4a84-8b40-7b0f51399cdd" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11793" ], - "x-ms-correlation-request-id": [ "ea2d9f65-ab9f-4ba8-a305-a1a32d861675" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043508Z:ea2d9f65-ab9f-4ba8-a305-a1a32d861675" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11782" ], + "x-ms-correlation-request-id": [ "f775dc00-412e-421a-93f7-e8bba0340af3" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T115018Z:f775dc00-412e-421a-93f7-e8bba0340af3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:35:07 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:50:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "335" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"properties\":{\"startIpAddress\":\"0.0.0.2\",\"endIpAddress\":\"0.0.0.3\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01\",\"name\":\"postgresqlrule01\",\"type\":\"Microsoft.DBforPostgreSQL/servers/firewallRules\"}" + "Content": "{\"properties\":{\"startIpAddress\":\"0.0.0.2\",\"endIpAddress\":\"0.0.0.2\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01\",\"name\":\"postgresqlrule01\",\"type\":\"Microsoft.DBforPostgreSQL/servers/firewallRules\"}" } }, - "Update-AzPostgreSqlFirewallRule+[NoContext]+UpdateExpanded+$DELETE+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01?api-version=2017-12-01+7": { + "Update-AzPostgreSqlFirewallRule+[NoContext]+ClientIPAddress+$DELETE+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01?api-version=2017-12-01+7": { "Request": { "Method": "DELETE", "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "255" ], - "x-ms-client-request-id": [ "c9f1d62b-fe15-4213-bb19-4021d7908680" ], + "x-ms-unique-id": [ "268" ], + "x-ms-client-request-id": [ "cebf7fa0-94b1-4768-b324-49934eccb517" ], "CommandName": [ "Remove-AzPostgreSqlFirewallRule" ], "FullCommandName": [ "Remove-AzPostgreSqlFirewallRule_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -253,34 +253,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/9af218bf-21c0-4df8-94bd-d1508541504e?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/7f599f51-7188-4b25-9e0d-da6a522a15e0?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/9af218bf-21c0-4df8-94bd-d1508541504e?api-version=2017-12-01" ], - "x-ms-request-id": [ "9af218bf-21c0-4df8-94bd-d1508541504e" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/7f599f51-7188-4b25-9e0d-da6a522a15e0?api-version=2017-12-01" ], + "x-ms-request-id": [ "7f599f51-7188-4b25-9e0d-da6a522a15e0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14982" ], - "x-ms-correlation-request-id": [ "f88c07ad-e1fb-4a7f-845d-2baa4403d091" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043509Z:f88c07ad-e1fb-4a7f-845d-2baa4403d091" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14980" ], + "x-ms-correlation-request-id": [ "20fda079-48bc-4b92-9a54-13ad34781b8e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T115022Z:20fda079-48bc-4b92-9a54-13ad34781b8e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:35:09 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:50:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "84" ], + "Content-Length": [ "83" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"DropElasticServerFirewallRule\",\"startTime\":\"2020-05-08T04:35:08.667Z\"}" + "Content": "{\"operation\":\"DropElasticServerFirewallRule\",\"startTime\":\"2020-09-25T11:50:18.77Z\"}" } }, - "Update-AzPostgreSqlFirewallRule+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/9af218bf-21c0-4df8-94bd-d1508541504e?api-version=2017-12-01+8": { + "Update-AzPostgreSqlFirewallRule+[NoContext]+ClientIPAddress+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/7f599f51-7188-4b25-9e0d-da6a522a15e0?api-version=2017-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/9af218bf-21c0-4df8-94bd-d1508541504e?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/7f599f51-7188-4b25-9e0d-da6a522a15e0?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "255", "256" ], - "x-ms-client-request-id": [ "c9f1d62b-fe15-4213-bb19-4021d7908680", "c9f1d62b-fe15-4213-bb19-4021d7908680" ], + "x-ms-unique-id": [ "268", "269" ], + "x-ms-client-request-id": [ "cebf7fa0-94b1-4768-b324-49934eccb517", "cebf7fa0-94b1-4768-b324-49934eccb517" ], "CommandName": [ "Remove-AzPostgreSqlFirewallRule", "Remove-AzPostgreSqlFirewallRule" ], "FullCommandName": [ "Remove-AzPostgreSqlFirewallRule_Delete", "Remove-AzPostgreSqlFirewallRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -296,31 +296,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "9f6542db-9082-40a0-845b-81293d4c4de0" ], + "x-ms-request-id": [ "f7fb5130-ef10-46ee-9efb-1ef7ca3e3543" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11792" ], - "x-ms-correlation-request-id": [ "3acc2a18-05cc-44c0-be66-4e6204474b1b" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043525Z:3acc2a18-05cc-44c0-be66-4e6204474b1b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11781" ], + "x-ms-correlation-request-id": [ "a7d6624f-c43c-4c75-ab27-e2483eb3b466" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T115037Z:a7d6624f-c43c-4c75-ab27-e2483eb3b466" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:35:24 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:50:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "106" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"9af218bf-21c0-4df8-94bd-d1508541504e\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-08T04:35:08.667Z\"}" + "Content": "{\"name\":\"7f599f51-7188-4b25-9e0d-da6a522a15e0\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:50:18.77Z\"}" } }, - "Update-AzPostgreSqlFirewallRule+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/9af218bf-21c0-4df8-94bd-d1508541504e?api-version=2017-12-01+9": { + "Update-AzPostgreSqlFirewallRule+[NoContext]+ClientIPAddress+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/7f599f51-7188-4b25-9e0d-da6a522a15e0?api-version=2017-12-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/9af218bf-21c0-4df8-94bd-d1508541504e?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/7f599f51-7188-4b25-9e0d-da6a522a15e0?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "255", "256", "257" ], - "x-ms-client-request-id": [ "c9f1d62b-fe15-4213-bb19-4021d7908680", "c9f1d62b-fe15-4213-bb19-4021d7908680", "c9f1d62b-fe15-4213-bb19-4021d7908680" ], + "x-ms-unique-id": [ "268", "269", "270" ], + "x-ms-client-request-id": [ "cebf7fa0-94b1-4768-b324-49934eccb517", "cebf7fa0-94b1-4768-b324-49934eccb517", "cebf7fa0-94b1-4768-b324-49934eccb517" ], "CommandName": [ "Remove-AzPostgreSqlFirewallRule", "Remove-AzPostgreSqlFirewallRule", "Remove-AzPostgreSqlFirewallRule" ], "FullCommandName": [ "Remove-AzPostgreSqlFirewallRule_Delete", "Remove-AzPostgreSqlFirewallRule_Delete", "Remove-AzPostgreSqlFirewallRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -335,14 +335,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "42d8b41f-c40d-40d3-b672-6682493b4585" ], + "x-ms-request-id": [ "fef9f345-b784-4198-9879-f539f4846336" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11791" ], - "x-ms-correlation-request-id": [ "e1c2f984-4b42-417b-8e14-52f7265ffee7" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043525Z:e1c2f984-4b42-417b-8e14-52f7265ffee7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11780" ], + "x-ms-correlation-request-id": [ "cf362900-f6cc-44b8-bb95-f9de0c0b9809" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T115037Z:cf362900-f6cc-44b8-bb95-f9de0c0b9809" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:35:24 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:50:36 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -355,12 +355,12 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01?api-version=2017-12-01", - "Content": "{\n \"properties\": {\n \"endIpAddress\": \"0.0.0.1\",\n \"startIpAddress\": \"0.0.0.0\"\n }\n}", + "Content": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.0\",\r\n \"endIpAddress\": \"0.0.0.1\"\r\n }\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "88" ] + "Content-Length": [ "93" ] } }, "Response": { @@ -368,35 +368,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/ea822a24-4abd-4d79-ac79-76817b45dce8?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/ec6c0819-dd1b-42c4-b5f5-445833f5ca13?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/ea822a24-4abd-4d79-ac79-76817b45dce8?api-version=2017-12-01" ], - "x-ms-request-id": [ "ea822a24-4abd-4d79-ac79-76817b45dce8" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/ec6c0819-dd1b-42c4-b5f5-445833f5ca13?api-version=2017-12-01" ], + "x-ms-request-id": [ "ec6c0819-dd1b-42c4-b5f5-445833f5ca13" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1174" ], - "x-ms-correlation-request-id": [ "d450f822-9932-4c97-8698-42a66c2a532a" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043527Z:d450f822-9932-4c97-8698-42a66c2a532a" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1170" ], + "x-ms-correlation-request-id": [ "f0d97f7b-e596-4cf5-8474-3c1f69326633" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T115039Z:f0d97f7b-e596-4cf5-8474-3c1f69326633" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:35:26 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:50:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "87" ], + "Content-Length": [ "86" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServerFirewallRules\",\"startTime\":\"2020-05-08T04:35:25.887Z\"}" + "Content": "{\"operation\":\"UpsertElasticServerFirewallRules\",\"startTime\":\"2020-09-25T11:50:38.19Z\"}" } }, - "Update-AzPostgreSqlFirewallRule+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/ea822a24-4abd-4d79-ac79-76817b45dce8?api-version=2017-12-01+2": { + "Update-AzPostgreSqlFirewallRule+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/ec6c0819-dd1b-42c4-b5f5-445833f5ca13?api-version=2017-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/ea822a24-4abd-4d79-ac79-76817b45dce8?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/ec6c0819-dd1b-42c4-b5f5-445833f5ca13?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "258", "259" ], - "x-ms-client-request-id": [ "ec7e0ae7-7dba-4b18-87e0-58aa91d7d9d0", "ec7e0ae7-7dba-4b18-87e0-58aa91d7d9d0" ], - "CommandName": [ "New-AzPostgreSqlFirewallRule", "New-AzPostgreSqlFirewallRule" ], + "x-ms-unique-id": [ "271", "272" ], + "x-ms-client-request-id": [ "27bd271a-c6a4-4232-8f42-413013482f79", "27bd271a-c6a4-4232-8f42-413013482f79" ], + "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlFirewallRule", "Az.PostgreSql.internal\\New-AzPostgreSqlFirewallRule" ], "FullCommandName": [ "New-AzPostgreSqlFirewallRule_CreateExpanded", "New-AzPostgreSqlFirewallRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], @@ -411,21 +411,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "a12551a8-7bc7-475a-a22e-22d1a1f05efb" ], + "x-ms-request-id": [ "1be0ab6a-f889-48b4-9f69-78dc6c127cd5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11790" ], - "x-ms-correlation-request-id": [ "2a992fe5-e7b7-440a-8ec5-b1ccf7e1817a" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043542Z:2a992fe5-e7b7-440a-8ec5-b1ccf7e1817a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11779" ], + "x-ms-correlation-request-id": [ "38d326ad-3e05-41c4-9a0c-393253e1237b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T115054Z:38d326ad-3e05-41c4-9a0c-393253e1237b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:35:41 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:50:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "106" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"ea822a24-4abd-4d79-ac79-76817b45dce8\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-08T04:35:25.887Z\"}" + "Content": "{\"name\":\"ec6c0819-dd1b-42c4-b5f5-445833f5ca13\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:50:38.19Z\"}" } }, "Update-AzPostgreSqlFirewallRule+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01?api-version=2017-12-01+3": { @@ -434,9 +434,9 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "258", "259", "260" ], - "x-ms-client-request-id": [ "ec7e0ae7-7dba-4b18-87e0-58aa91d7d9d0", "ec7e0ae7-7dba-4b18-87e0-58aa91d7d9d0", "ec7e0ae7-7dba-4b18-87e0-58aa91d7d9d0" ], - "CommandName": [ "New-AzPostgreSqlFirewallRule", "New-AzPostgreSqlFirewallRule", "New-AzPostgreSqlFirewallRule" ], + "x-ms-unique-id": [ "271", "272", "273" ], + "x-ms-client-request-id": [ "27bd271a-c6a4-4232-8f42-413013482f79", "27bd271a-c6a4-4232-8f42-413013482f79", "27bd271a-c6a4-4232-8f42-413013482f79" ], + "CommandName": [ "Az.PostgreSql.internal\\New-AzPostgreSqlFirewallRule", "Az.PostgreSql.internal\\New-AzPostgreSqlFirewallRule", "Az.PostgreSql.internal\\New-AzPostgreSqlFirewallRule" ], "FullCommandName": [ "New-AzPostgreSqlFirewallRule_CreateExpanded", "New-AzPostgreSqlFirewallRule_CreateExpanded", "New-AzPostgreSqlFirewallRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], @@ -450,14 +450,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "7804ca7a-ed57-4d39-8383-112e42687ea8" ], + "x-ms-request-id": [ "927f43f3-29eb-4d03-9f06-cadb07e1c3b5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11789" ], - "x-ms-correlation-request-id": [ "de5d9980-2e04-44f2-92ef-9d2028250866" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043542Z:de5d9980-2e04-44f2-92ef-9d2028250866" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11778" ], + "x-ms-correlation-request-id": [ "a379ef6a-6820-4d43-a0bc-dd2c52811e54" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T115055Z:a379ef6a-6820-4d43-a0bc-dd2c52811e54" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:35:41 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:50:55 GMT" ] }, "ContentHeaders": { "Content-Length": [ "335" ], @@ -471,12 +471,12 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01?api-version=2017-12-01", - "Content": "{\n \"properties\": {\n \"endIpAddress\": \"0.0.0.3\",\n \"startIpAddress\": \"0.0.0.2\"\n }\n}", + "Content": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.2\",\r\n \"endIpAddress\": \"0.0.0.3\"\r\n }\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "88" ] + "Content-Length": [ "93" ] } }, "Response": { @@ -484,35 +484,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/ca2b523a-7665-4f44-b7e5-80c4b92829fa?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/61c29b02-7b63-4208-9f95-6fa09cfc2b2f?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/ca2b523a-7665-4f44-b7e5-80c4b92829fa?api-version=2017-12-01" ], - "x-ms-request-id": [ "ca2b523a-7665-4f44-b7e5-80c4b92829fa" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/61c29b02-7b63-4208-9f95-6fa09cfc2b2f?api-version=2017-12-01" ], + "x-ms-request-id": [ "61c29b02-7b63-4208-9f95-6fa09cfc2b2f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1173" ], - "x-ms-correlation-request-id": [ "f6cfb8c5-2ef6-4844-bed4-6c1aa0595427" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043544Z:f6cfb8c5-2ef6-4844-bed4-6c1aa0595427" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1169" ], + "x-ms-correlation-request-id": [ "ea9ffc8e-7e39-47c3-a83b-0a59a05bf682" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T115056Z:ea9ffc8e-7e39-47c3-a83b-0a59a05bf682" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:35:43 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:50:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "87" ], + "Content-Length": [ "86" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServerFirewallRules\",\"startTime\":\"2020-05-08T04:35:43.263Z\"}" + "Content": "{\"operation\":\"UpsertElasticServerFirewallRules\",\"startTime\":\"2020-09-25T11:50:55.69Z\"}" } }, - "Update-AzPostgreSqlFirewallRule+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/ca2b523a-7665-4f44-b7e5-80c4b92829fa?api-version=2017-12-01+5": { + "Update-AzPostgreSqlFirewallRule+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/61c29b02-7b63-4208-9f95-6fa09cfc2b2f?api-version=2017-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/ca2b523a-7665-4f44-b7e5-80c4b92829fa?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/61c29b02-7b63-4208-9f95-6fa09cfc2b2f?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "261", "262" ], - "x-ms-client-request-id": [ "28512893-a32a-4b4d-a6dd-97899672d911", "28512893-a32a-4b4d-a6dd-97899672d911" ], - "CommandName": [ "Update-AzPostgreSqlFirewallRule", "Update-AzPostgreSqlFirewallRule" ], + "x-ms-unique-id": [ "274", "275" ], + "x-ms-client-request-id": [ "bd0335af-dfec-4446-91d9-6cac301ea3c6", "bd0335af-dfec-4446-91d9-6cac301ea3c6" ], + "CommandName": [ "Az.PostgreSql.internal\\Update-AzPostgreSqlFirewallRule", "Az.PostgreSql.internal\\Update-AzPostgreSqlFirewallRule" ], "FullCommandName": [ "Update-AzPostgreSqlFirewallRule_UpdateViaIdentityExpanded", "Update-AzPostgreSqlFirewallRule_UpdateViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], @@ -527,21 +527,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "265a778f-4eae-4389-86c6-48f47fc72e68" ], + "x-ms-request-id": [ "16ab3cc7-9dc1-40ab-a129-bcf034a5a4e5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11788" ], - "x-ms-correlation-request-id": [ "ec5b4507-1af9-4c9d-ae9c-8612b457396a" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043559Z:ec5b4507-1af9-4c9d-ae9c-8612b457396a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11777" ], + "x-ms-correlation-request-id": [ "3ff24398-5851-4999-8798-5b340999ef7b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T115112Z:3ff24398-5851-4999-8798-5b340999ef7b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:35:59 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:51:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "106" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"ca2b523a-7665-4f44-b7e5-80c4b92829fa\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-08T04:35:43.263Z\"}" + "Content": "{\"name\":\"61c29b02-7b63-4208-9f95-6fa09cfc2b2f\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:50:55.69Z\"}" } }, "Update-AzPostgreSqlFirewallRule+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01?api-version=2017-12-01+6": { @@ -550,9 +550,9 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "261", "262", "263" ], - "x-ms-client-request-id": [ "28512893-a32a-4b4d-a6dd-97899672d911", "28512893-a32a-4b4d-a6dd-97899672d911", "28512893-a32a-4b4d-a6dd-97899672d911" ], - "CommandName": [ "Update-AzPostgreSqlFirewallRule", "Update-AzPostgreSqlFirewallRule", "Update-AzPostgreSqlFirewallRule" ], + "x-ms-unique-id": [ "274", "275", "276" ], + "x-ms-client-request-id": [ "bd0335af-dfec-4446-91d9-6cac301ea3c6", "bd0335af-dfec-4446-91d9-6cac301ea3c6", "bd0335af-dfec-4446-91d9-6cac301ea3c6" ], + "CommandName": [ "Az.PostgreSql.internal\\Update-AzPostgreSqlFirewallRule", "Az.PostgreSql.internal\\Update-AzPostgreSqlFirewallRule", "Az.PostgreSql.internal\\Update-AzPostgreSqlFirewallRule" ], "FullCommandName": [ "Update-AzPostgreSqlFirewallRule_UpdateViaIdentityExpanded", "Update-AzPostgreSqlFirewallRule_UpdateViaIdentityExpanded", "Update-AzPostgreSqlFirewallRule_UpdateViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], @@ -566,14 +566,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "9ae789d1-9b49-49c6-8e08-e9fe45ac1c08" ], + "x-ms-request-id": [ "250cf222-8783-4545-bcb9-70c2010a40dd" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11787" ], - "x-ms-correlation-request-id": [ "d39a30c3-caa9-4b14-8d33-88c6d00681ca" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043600Z:d39a30c3-caa9-4b14-8d33-88c6d00681ca" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11776" ], + "x-ms-correlation-request-id": [ "10f500ad-7da5-4813-be1a-09c1561120f2" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T115112Z:10f500ad-7da5-4813-be1a-09c1561120f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:36:00 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:51:12 GMT" ] }, "ContentHeaders": { "Content-Length": [ "335" ], @@ -589,8 +589,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/firewallRules/postgresqlrule01?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "264" ], - "x-ms-client-request-id": [ "0aabff04-1488-4bda-8cfb-725a6404a028" ], + "x-ms-unique-id": [ "277" ], + "x-ms-client-request-id": [ "0286af35-4913-43f0-a6cf-33e75d0856b6" ], "CommandName": [ "Remove-AzPostgreSqlFirewallRule" ], "FullCommandName": [ "Remove-AzPostgreSqlFirewallRule_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -605,34 +605,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/f90a60de-3c42-4cb5-8181-0f1d16387fac?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/c062c433-77f7-405b-9706-8035ba09e6e9?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/f90a60de-3c42-4cb5-8181-0f1d16387fac?api-version=2017-12-01" ], - "x-ms-request-id": [ "f90a60de-3c42-4cb5-8181-0f1d16387fac" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/c062c433-77f7-405b-9706-8035ba09e6e9?api-version=2017-12-01" ], + "x-ms-request-id": [ "c062c433-77f7-405b-9706-8035ba09e6e9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14981" ], - "x-ms-correlation-request-id": [ "5d3037a1-d7cd-420b-b180-98b2b60c48e9" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043601Z:5d3037a1-d7cd-420b-b180-98b2b60c48e9" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14979" ], + "x-ms-correlation-request-id": [ "994b3b4b-e31b-4381-b163-26d8df095abe" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T115114Z:994b3b4b-e31b-4381-b163-26d8df095abe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:36:01 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:51:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "84" ], + "Content-Length": [ "83" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"DropElasticServerFirewallRule\",\"startTime\":\"2020-05-08T04:36:00.543Z\"}" + "Content": "{\"operation\":\"DropElasticServerFirewallRule\",\"startTime\":\"2020-09-25T11:51:13.02Z\"}" } }, - "Update-AzPostgreSqlFirewallRule+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/f90a60de-3c42-4cb5-8181-0f1d16387fac?api-version=2017-12-01+8": { + "Update-AzPostgreSqlFirewallRule+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/c062c433-77f7-405b-9706-8035ba09e6e9?api-version=2017-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/f90a60de-3c42-4cb5-8181-0f1d16387fac?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/c062c433-77f7-405b-9706-8035ba09e6e9?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "264", "265" ], - "x-ms-client-request-id": [ "0aabff04-1488-4bda-8cfb-725a6404a028", "0aabff04-1488-4bda-8cfb-725a6404a028" ], + "x-ms-unique-id": [ "277", "278" ], + "x-ms-client-request-id": [ "0286af35-4913-43f0-a6cf-33e75d0856b6", "0286af35-4913-43f0-a6cf-33e75d0856b6" ], "CommandName": [ "Remove-AzPostgreSqlFirewallRule", "Remove-AzPostgreSqlFirewallRule" ], "FullCommandName": [ "Remove-AzPostgreSqlFirewallRule_Delete", "Remove-AzPostgreSqlFirewallRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -648,31 +648,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "b64f0a50-e417-4ae5-884f-b5b8cfcc2ddf" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11786" ], + "x-ms-request-id": [ "37cb023b-beb9-4de0-9c8e-ac116db733a7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "d30bcbe7-4694-406a-9b1d-883b511638b5" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043617Z:d30bcbe7-4694-406a-9b1d-883b511638b5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11775" ], + "x-ms-correlation-request-id": [ "4d12d134-a500-4015-8658-f7b86c8d7874" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T115129Z:4d12d134-a500-4015-8658-f7b86c8d7874" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:36:16 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:51:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "106" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"f90a60de-3c42-4cb5-8181-0f1d16387fac\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-08T04:36:00.543Z\"}" + "Content": "{\"name\":\"c062c433-77f7-405b-9706-8035ba09e6e9\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:51:13.02Z\"}" } }, - "Update-AzPostgreSqlFirewallRule+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/f90a60de-3c42-4cb5-8181-0f1d16387fac?api-version=2017-12-01+9": { + "Update-AzPostgreSqlFirewallRule+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/c062c433-77f7-405b-9706-8035ba09e6e9?api-version=2017-12-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/f90a60de-3c42-4cb5-8181-0f1d16387fac?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/c062c433-77f7-405b-9706-8035ba09e6e9?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "264", "265", "266" ], - "x-ms-client-request-id": [ "0aabff04-1488-4bda-8cfb-725a6404a028", "0aabff04-1488-4bda-8cfb-725a6404a028", "0aabff04-1488-4bda-8cfb-725a6404a028" ], + "x-ms-unique-id": [ "277", "278", "279" ], + "x-ms-client-request-id": [ "0286af35-4913-43f0-a6cf-33e75d0856b6", "0286af35-4913-43f0-a6cf-33e75d0856b6", "0286af35-4913-43f0-a6cf-33e75d0856b6" ], "CommandName": [ "Remove-AzPostgreSqlFirewallRule", "Remove-AzPostgreSqlFirewallRule", "Remove-AzPostgreSqlFirewallRule" ], "FullCommandName": [ "Remove-AzPostgreSqlFirewallRule_Delete", "Remove-AzPostgreSqlFirewallRule_Delete", "Remove-AzPostgreSqlFirewallRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -687,14 +687,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "44d4e524-aa8b-4ad7-b2e0-efe0b79d9591" ], + "x-ms-request-id": [ "216f3066-80bc-4cba-a028-f0c6509ec2ef" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11785" ], - "x-ms-correlation-request-id": [ "9e624b13-edaf-481d-bd9e-ac2f09a1e17b" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043618Z:9e624b13-edaf-481d-bd9e-ac2f09a1e17b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11774" ], + "x-ms-correlation-request-id": [ "d64b5277-392e-4a3c-86cf-e9e3eb4fc4b2" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T115129Z:d64b5277-392e-4a3c-86cf-e9e3eb4fc4b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:36:17 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:51:29 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/PostgreSql/test/Update-AzPostgreSqlFirewallRule.Tests.ps1 b/src/PostgreSql/test/Update-AzPostgreSqlFirewallRule.Tests.ps1 index da1b8f0f257b..234e8b7bcde5 100644 --- a/src/PostgreSql/test/Update-AzPostgreSqlFirewallRule.Tests.ps1 +++ b/src/PostgreSql/test/Update-AzPostgreSqlFirewallRule.Tests.ps1 @@ -12,11 +12,11 @@ while(-not $mockingPath) { . ($mockingPath | Select-Object -First 1).FullName Describe 'Update-AzPostgreSqlFirewallRule' { - It 'UpdateExpanded' { + It 'ClientIPAddress' { New-AzPostgreSqlFirewallRule -Name $env.firewallRuleName -ResourceGroupName $env.resourceGroup -ServerName $env.serverName -EndIPAddress 0.0.0.1 -StartIPAddress 0.0.0.0 - $rule = Update-AzPostgreSqlFirewallRule -Name $env.firewallRuleName -ResourceGroupName $env.resourceGroup -ServerName $env.serverName -EndIPAddress 0.0.0.3 -StartIPAddress 0.0.0.2 + $rule = Update-AzPostgreSqlFirewallRule -Name $env.firewallRuleName -ResourceGroupName $env.resourceGroup -ServerName $env.serverName -ClientIPAddress 0.0.0.2 $rule.StartIPAddress | Should -Be 0.0.0.2 - $rule.EndIPAddress | Should -Be 0.0.0.3 + $rule.EndIPAddress | Should -Be 0.0.0.2 Remove-AzPostgreSqlFirewallRule -Name $env.firewallRuleName -ResourceGroupName $env.resourceGroup -ServerName $env.serverName } diff --git a/src/PostgreSql/test/Update-AzPostgreSqlServer.Recording.json b/src/PostgreSql/test/Update-AzPostgreSqlServer.Recording.json index 3ae276e82ed7..e47ad126ae80 100644 --- a/src/PostgreSql/test/Update-AzPostgreSqlServer.Recording.json +++ b/src/PostgreSql/test/Update-AzPostgreSqlServer.Recording.json @@ -3,12 +3,12 @@ "Request": { "Method": "PATCH", "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100?api-version=2017-12-01", - "Content": "{\n \"properties\": {\n \"sslEnforcement\": \"Disabled\"\n }\n}", + "Content": "{\r\n \"properties\": {\r\n \"sslEnforcement\": \"Disabled\"\r\n }\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "58" ] + "Content-Length": [ "62" ] } }, "Response": { @@ -16,34 +16,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/d5198e5c-6743-4900-b56d-cd23f03f3be8?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/5e8ec5ca-e40e-43b4-8c6c-f6ef85a21500?api-version=2017-12-01" ], "Retry-After": [ "60" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/d5198e5c-6743-4900-b56d-cd23f03f3be8?api-version=2017-12-01" ], - "x-ms-request-id": [ "d5198e5c-6743-4900-b56d-cd23f03f3be8" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/5e8ec5ca-e40e-43b4-8c6c-f6ef85a21500?api-version=2017-12-01" ], + "x-ms-request-id": [ "5e8ec5ca-e40e-43b4-8c6c-f6ef85a21500" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1172" ], - "x-ms-correlation-request-id": [ "7a52fe7d-b522-49a8-b4fc-e418f0cfd50c" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043620Z:7a52fe7d-b522-49a8-b4fc-e418f0cfd50c" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1168" ], + "x-ms-correlation-request-id": [ "db182ffe-16d0-4008-9acf-3bf911454e83" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T115136Z:db182ffe-16d0-4008-9acf-3bf911454e83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:36:19 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:51:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "74" ], + "Content-Length": [ "73" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServer\",\"startTime\":\"2020-05-08T04:36:18.773Z\"}" + "Content": "{\"operation\":\"UpsertElasticServer\",\"startTime\":\"2020-09-25T11:51:30.63Z\"}" } }, - "Update-AzPostgreSqlServer+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/d5198e5c-6743-4900-b56d-cd23f03f3be8?api-version=2017-12-01+2": { + "Update-AzPostgreSqlServer+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/5e8ec5ca-e40e-43b4-8c6c-f6ef85a21500?api-version=2017-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/d5198e5c-6743-4900-b56d-cd23f03f3be8?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/5e8ec5ca-e40e-43b4-8c6c-f6ef85a21500?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "267", "268" ], - "x-ms-client-request-id": [ "e1876196-d17a-4bd6-83f0-8acc532ab19a", "e1876196-d17a-4bd6-83f0-8acc532ab19a" ], + "x-ms-unique-id": [ "280", "281" ], + "x-ms-client-request-id": [ "f53d62b2-5eb2-40d5-90f2-68fe814a0e20", "f53d62b2-5eb2-40d5-90f2-68fe814a0e20" ], "CommandName": [ "Az.PostgreSql.internal\\Update-AzPostgreSqlServer", "Az.PostgreSql.internal\\Update-AzPostgreSqlServer" ], "FullCommandName": [ "Update-AzPostgreSqlServer_UpdateExpanded", "Update-AzPostgreSqlServer_UpdateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -59,21 +59,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "60" ], - "x-ms-request-id": [ "4bc29e12-3d7e-46c5-a5e3-c978922a2558" ], + "x-ms-request-id": [ "ed1b1216-2446-4069-af76-c774920df9b5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11784" ], - "x-ms-correlation-request-id": [ "55aa7bae-90c0-4fc9-94fb-8d7f97518ac6" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043720Z:55aa7bae-90c0-4fc9-94fb-8d7f97518ac6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11773" ], + "x-ms-correlation-request-id": [ "e1411e37-9fb8-4abd-af8b-8af5c844ecff" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T115237Z:e1411e37-9fb8-4abd-af8b-8af5c844ecff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:37:20 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:52:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "106" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"d5198e5c-6743-4900-b56d-cd23f03f3be8\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-08T04:36:18.773Z\"}" + "Content": "{\"name\":\"5e8ec5ca-e40e-43b4-8c6c-f6ef85a21500\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:51:30.63Z\"}" } }, "Update-AzPostgreSqlServer+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100?api-version=2017-12-01+3": { @@ -82,8 +82,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "267", "268", "269" ], - "x-ms-client-request-id": [ "e1876196-d17a-4bd6-83f0-8acc532ab19a", "e1876196-d17a-4bd6-83f0-8acc532ab19a", "e1876196-d17a-4bd6-83f0-8acc532ab19a" ], + "x-ms-unique-id": [ "280", "281", "282" ], + "x-ms-client-request-id": [ "f53d62b2-5eb2-40d5-90f2-68fe814a0e20", "f53d62b2-5eb2-40d5-90f2-68fe814a0e20", "f53d62b2-5eb2-40d5-90f2-68fe814a0e20" ], "CommandName": [ "Az.PostgreSql.internal\\Update-AzPostgreSqlServer", "Az.PostgreSql.internal\\Update-AzPostgreSqlServer", "Az.PostgreSql.internal\\Update-AzPostgreSqlServer" ], "FullCommandName": [ "Update-AzPostgreSqlServer_UpdateExpanded", "Update-AzPostgreSqlServer_UpdateExpanded", "Update-AzPostgreSqlServer_UpdateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -98,21 +98,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "ca1d8138-736b-4d40-a14b-c2210937f28a" ], + "x-ms-request-id": [ "6a14ee3e-bd0c-4381-b851-5d4d01823fba" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11783" ], - "x-ms-correlation-request-id": [ "815a654c-c25d-4914-9a84-6ef6919955c4" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043721Z:815a654c-c25d-4914-9a84-6ef6919955c4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11772" ], + "x-ms-correlation-request-id": [ "6e60b4ae-aeb4-4417-b80b-9653f72cdf4d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T115237Z:6e60b4ae-aeb4-4417-b80b-9653f72cdf4d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:37:20 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:52:36 GMT" ] }, "ContentHeaders": { "Content-Length": [ "946" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"postgresql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Disabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-05-08T03:54:02.197+00:00\",\"replicationRole\":\"Master\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\",\"name\":\"postgresql-test-100\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}" + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"postgresql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Disabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-09-25T11:09:04.307+00:00\",\"replicationRole\":\"Master\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\",\"name\":\"postgresql-test-100\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}" } }, "Update-AzPostgreSqlServer+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100?api-version=2017-12-01+1": { @@ -121,8 +121,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "270" ], - "x-ms-client-request-id": [ "c33050ee-c0b3-48be-beec-1c306a91e2e4" ], + "x-ms-unique-id": [ "283" ], + "x-ms-client-request-id": [ "b9a4094d-3614-4acb-8e71-fe9e7a06cb2d" ], "CommandName": [ "Get-AzPostgreSqlServer" ], "FullCommandName": [ "Get-AzPostgreSqlServer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -137,33 +137,33 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "6115dd6b-8a83-458e-9b92-6ace3fb793a6" ], + "x-ms-request-id": [ "0d571dfe-c5d3-4c68-bd18-006d5f44deed" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11782" ], - "x-ms-correlation-request-id": [ "b53cc041-9d31-4429-a00e-4c0c434e6d2e" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043721Z:b53cc041-9d31-4429-a00e-4c0c434e6d2e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11771" ], + "x-ms-correlation-request-id": [ "1e246966-9a3e-47c1-b3d9-8642b3728311" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T115238Z:1e246966-9a3e-47c1-b3d9-8642b3728311" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:37:20 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:52:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "946" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"postgresql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Disabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-05-08T03:54:02.197+00:00\",\"replicationRole\":\"Master\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\",\"name\":\"postgresql-test-100\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}" + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"postgresql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Disabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-09-25T11:09:04.307+00:00\",\"replicationRole\":\"Master\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\",\"name\":\"postgresql-test-100\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}" } }, "Update-AzPostgreSqlServer+[NoContext]+UpdateViaIdentityExpanded+$PATCH+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100?api-version=2017-12-01+2": { "Request": { "Method": "PATCH", "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100?api-version=2017-12-01", - "Content": "{\n \"properties\": {\n \"storageProfile\": {\n \"backupRetentionDays\": 23\n }\n }\n}", + "Content": "{\r\n \"properties\": {\r\n \"storageProfile\": {\r\n \"backupRetentionDays\": 23\r\n }\r\n }\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "87" ] + "Content-Length": [ "93" ] } }, "Response": { @@ -171,34 +171,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/324ac19b-e5fc-44b0-aed1-c7265033e80e?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/4813d211-dc05-4f2a-b283-3a93128d09a6?api-version=2017-12-01" ], "Retry-After": [ "60" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/324ac19b-e5fc-44b0-aed1-c7265033e80e?api-version=2017-12-01" ], - "x-ms-request-id": [ "324ac19b-e5fc-44b0-aed1-c7265033e80e" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/4813d211-dc05-4f2a-b283-3a93128d09a6?api-version=2017-12-01" ], + "x-ms-request-id": [ "4813d211-dc05-4f2a-b283-3a93128d09a6" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1171" ], - "x-ms-correlation-request-id": [ "c0302d19-b5b4-4b54-af01-c15e6ff7b76b" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043723Z:c0302d19-b5b4-4b54-af01-c15e6ff7b76b" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1167" ], + "x-ms-correlation-request-id": [ "53e936cb-0f66-4c4a-a2e6-d397c20aa0c7" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T115239Z:53e936cb-0f66-4c4a-a2e6-d397c20aa0c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:37:22 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:52:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "73" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServer\",\"startTime\":\"2020-05-08T04:37:22.04Z\"}" + "Content": "{\"operation\":\"UpsertElasticServer\",\"startTime\":\"2020-09-25T11:52:38.38Z\"}" } }, - "Update-AzPostgreSqlServer+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/324ac19b-e5fc-44b0-aed1-c7265033e80e?api-version=2017-12-01+3": { + "Update-AzPostgreSqlServer+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/4813d211-dc05-4f2a-b283-3a93128d09a6?api-version=2017-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/324ac19b-e5fc-44b0-aed1-c7265033e80e?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/4813d211-dc05-4f2a-b283-3a93128d09a6?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "271", "272" ], - "x-ms-client-request-id": [ "40319a31-e197-44fe-9db1-ad1f3b53a2b7", "40319a31-e197-44fe-9db1-ad1f3b53a2b7" ], + "x-ms-unique-id": [ "284", "285" ], + "x-ms-client-request-id": [ "73da564d-e2ef-418a-a8b7-d40a92fe445a", "73da564d-e2ef-418a-a8b7-d40a92fe445a" ], "CommandName": [ "Az.PostgreSql.internal\\Update-AzPostgreSqlServer", "Az.PostgreSql.internal\\Update-AzPostgreSqlServer" ], "FullCommandName": [ "Update-AzPostgreSqlServer_UpdateViaIdentityExpanded", "Update-AzPostgreSqlServer_UpdateViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -214,21 +214,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "60" ], - "x-ms-request-id": [ "565ec393-669b-4280-a7b7-bb9b72a04813" ], + "x-ms-request-id": [ "d2328026-def3-4942-a75b-2c1bee917900" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11781" ], - "x-ms-correlation-request-id": [ "5b7efbc6-0fba-4a39-bcdf-471d267ff310" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043824Z:5b7efbc6-0fba-4a39-bcdf-471d267ff310" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11770" ], + "x-ms-correlation-request-id": [ "376e1142-a72f-4a50-9850-147733011704" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T115340Z:376e1142-a72f-4a50-9850-147733011704" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:38:23 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:53:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "106" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"324ac19b-e5fc-44b0-aed1-c7265033e80e\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-08T04:37:22.04Z\"}" + "Content": "{\"name\":\"4813d211-dc05-4f2a-b283-3a93128d09a6\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:52:38.38Z\"}" } }, "Update-AzPostgreSqlServer+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100?api-version=2017-12-01+4": { @@ -237,8 +237,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "271", "272", "273" ], - "x-ms-client-request-id": [ "40319a31-e197-44fe-9db1-ad1f3b53a2b7", "40319a31-e197-44fe-9db1-ad1f3b53a2b7", "40319a31-e197-44fe-9db1-ad1f3b53a2b7" ], + "x-ms-unique-id": [ "284", "285", "286" ], + "x-ms-client-request-id": [ "73da564d-e2ef-418a-a8b7-d40a92fe445a", "73da564d-e2ef-418a-a8b7-d40a92fe445a", "73da564d-e2ef-418a-a8b7-d40a92fe445a" ], "CommandName": [ "Az.PostgreSql.internal\\Update-AzPostgreSqlServer", "Az.PostgreSql.internal\\Update-AzPostgreSqlServer", "Az.PostgreSql.internal\\Update-AzPostgreSqlServer" ], "FullCommandName": [ "Update-AzPostgreSqlServer_UpdateViaIdentityExpanded", "Update-AzPostgreSqlServer_UpdateViaIdentityExpanded", "Update-AzPostgreSqlServer_UpdateViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -253,21 +253,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "55a64006-e0fa-4c49-9d6c-74812f290126" ], + "x-ms-request-id": [ "8c5a9eff-15d2-4873-a740-9264a139607d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11780" ], - "x-ms-correlation-request-id": [ "aaddb096-bfda-4d22-9c46-7228781100b0" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043824Z:aaddb096-bfda-4d22-9c46-7228781100b0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11769" ], + "x-ms-correlation-request-id": [ "0260e1a6-4c88-47f8-a48d-f195fac8d415" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T115340Z:0260e1a6-4c88-47f8-a48d-f195fac8d415" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:38:24 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:53:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "947" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"postgresql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":23,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Disabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-05-08T03:54:02.197+00:00\",\"replicationRole\":\"Master\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\",\"name\":\"postgresql-test-100\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}" + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"postgresql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":23,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"9.6\",\"sslEnforcement\":\"Disabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"postgresql-test-100.postgres.database.azure.com\",\"earliestRestoreDate\":\"2020-09-25T11:09:04.307+00:00\",\"replicationRole\":\"Master\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100\",\"name\":\"postgresql-test-100\",\"type\":\"Microsoft.DBforPostgreSQL/servers\"}" } } } \ No newline at end of file diff --git a/src/PostgreSql/test/Update-AzPostgreSqlVirtualNetworkRule.Recording.json b/src/PostgreSql/test/Update-AzPostgreSqlVirtualNetworkRule.Recording.json index 89528c8cfa72..f669d558c848 100644 --- a/src/PostgreSql/test/Update-AzPostgreSqlVirtualNetworkRule.Recording.json +++ b/src/PostgreSql/test/Update-AzPostgreSqlVirtualNetworkRule.Recording.json @@ -3,12 +3,12 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/virtualNetworkRules/postgresqlvnet?api-version=2017-12-01", - "Content": "{\n \"properties\": {\n \"virtualNetworkSubnetId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.Network/virtualNetworks/MySqlVNet/subnets/MysqlSubnet1\"\n }\n}", + "Content": "{\r\n \"properties\": {\r\n \"virtualNetworkSubnetId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.Network/virtualNetworks/MySqlVNet/subnets/MysqlSubnet1\"\r\n }\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "214" ] + "Content-Length": [ "218" ] } }, "Response": { @@ -16,34 +16,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/3687e6eb-2cb3-4503-bdfd-047f211653ee?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/0f9f4135-7196-4df0-9d58-5b949024dee9?api-version=2017-12-01" ], "Retry-After": [ "30" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/3687e6eb-2cb3-4503-bdfd-047f211653ee?api-version=2017-12-01" ], - "x-ms-request-id": [ "3687e6eb-2cb3-4503-bdfd-047f211653ee" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/0f9f4135-7196-4df0-9d58-5b949024dee9?api-version=2017-12-01" ], + "x-ms-request-id": [ "0f9f4135-7196-4df0-9d58-5b949024dee9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1170" ], - "x-ms-correlation-request-id": [ "72e20d19-4253-441e-942b-e9f8f0bd7f0e" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043826Z:72e20d19-4253-441e-942b-e9f8f0bd7f0e" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1166" ], + "x-ms-correlation-request-id": [ "764062ac-6485-4c42-9883-3800a5f61bd5" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T115342Z:764062ac-6485-4c42-9883-3800a5f61bd5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:38:25 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:53:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "90" ], + "Content-Length": [ "89" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServerVnetFirewallRule\",\"startTime\":\"2020-05-08T04:38:25.137Z\"}" + "Content": "{\"operation\":\"UpsertElasticServerVnetFirewallRule\",\"startTime\":\"2020-09-25T11:53:40.96Z\"}" } }, - "Update-AzPostgreSqlVirtualNetworkRule+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/3687e6eb-2cb3-4503-bdfd-047f211653ee?api-version=2017-12-01+2": { + "Update-AzPostgreSqlVirtualNetworkRule+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/0f9f4135-7196-4df0-9d58-5b949024dee9?api-version=2017-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/3687e6eb-2cb3-4503-bdfd-047f211653ee?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/0f9f4135-7196-4df0-9d58-5b949024dee9?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "274", "275" ], - "x-ms-client-request-id": [ "bb4e2199-870c-4ab6-83c6-f976b573c132", "bb4e2199-870c-4ab6-83c6-f976b573c132" ], + "x-ms-unique-id": [ "287", "288" ], + "x-ms-client-request-id": [ "40c2d83d-8155-4d46-91b8-49a3ea2d2ae3", "40c2d83d-8155-4d46-91b8-49a3ea2d2ae3" ], "CommandName": [ "New-AzPostgreSqlVirtualNetworkRule", "New-AzPostgreSqlVirtualNetworkRule" ], "FullCommandName": [ "New-AzPostgreSqlVirtualNetworkRule_CreateExpanded", "New-AzPostgreSqlVirtualNetworkRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -59,21 +59,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "a2c09f40-d48b-4888-81be-f1aac10c2754" ], + "x-ms-request-id": [ "acb8f994-1150-40ff-aa8c-532820d1c33f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11779" ], - "x-ms-correlation-request-id": [ "e6113ae5-6e52-4717-9612-df7a76e4340f" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043856Z:e6113ae5-6e52-4717-9612-df7a76e4340f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11768" ], + "x-ms-correlation-request-id": [ "86166dfa-7fee-48ea-a7dc-4bdcc00beea9" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T115412Z:86166dfa-7fee-48ea-a7dc-4bdcc00beea9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:38:55 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:54:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "106" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"3687e6eb-2cb3-4503-bdfd-047f211653ee\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-08T04:38:25.137Z\"}" + "Content": "{\"name\":\"0f9f4135-7196-4df0-9d58-5b949024dee9\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:53:40.96Z\"}" } }, "Update-AzPostgreSqlVirtualNetworkRule+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/virtualNetworkRules/postgresqlvnet?api-version=2017-12-01+3": { @@ -82,8 +82,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/virtualNetworkRules/postgresqlvnet?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "274", "275", "276" ], - "x-ms-client-request-id": [ "bb4e2199-870c-4ab6-83c6-f976b573c132", "bb4e2199-870c-4ab6-83c6-f976b573c132", "bb4e2199-870c-4ab6-83c6-f976b573c132" ], + "x-ms-unique-id": [ "287", "288", "289" ], + "x-ms-client-request-id": [ "40c2d83d-8155-4d46-91b8-49a3ea2d2ae3", "40c2d83d-8155-4d46-91b8-49a3ea2d2ae3", "40c2d83d-8155-4d46-91b8-49a3ea2d2ae3" ], "CommandName": [ "New-AzPostgreSqlVirtualNetworkRule", "New-AzPostgreSqlVirtualNetworkRule", "New-AzPostgreSqlVirtualNetworkRule" ], "FullCommandName": [ "New-AzPostgreSqlVirtualNetworkRule_CreateExpanded", "New-AzPostgreSqlVirtualNetworkRule_CreateExpanded", "New-AzPostgreSqlVirtualNetworkRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -98,14 +98,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "9eb0be05-d3bb-4b7c-b2a9-9351a91930d2" ], + "x-ms-request-id": [ "016aec29-efcc-4cf6-867d-ba707be6b506" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11778" ], - "x-ms-correlation-request-id": [ "4ea45931-d68b-46a8-95fd-59755fee68d1" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043857Z:4ea45931-d68b-46a8-95fd-59755fee68d1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11767" ], + "x-ms-correlation-request-id": [ "cda21784-f67a-4f80-b696-81c5c66472e7" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T115412Z:cda21784-f67a-4f80-b696-81c5c66472e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:38:56 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:54:12 GMT" ] }, "ContentHeaders": { "Content-Length": [ "532" ], @@ -119,12 +119,12 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/virtualNetworkRules/postgresqlvnet?api-version=2017-12-01", - "Content": "{\n \"properties\": {\n \"virtualNetworkSubnetId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.Network/virtualNetworks/MySqlVNet/subnets/MysqlSubnet2\"\n }\n}", + "Content": "{\r\n \"properties\": {\r\n \"virtualNetworkSubnetId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.Network/virtualNetworks/MySqlVNet/subnets/MysqlSubnet2\"\r\n }\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "214" ] + "Content-Length": [ "218" ] } }, "Response": { @@ -132,34 +132,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/e7e55b36-4196-4246-b131-b41670da4d68?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/0a57e192-37c3-40bf-acbc-3aca86726ce7?api-version=2017-12-01" ], "Retry-After": [ "30" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e7e55b36-4196-4246-b131-b41670da4d68?api-version=2017-12-01" ], - "x-ms-request-id": [ "e7e55b36-4196-4246-b131-b41670da4d68" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/0a57e192-37c3-40bf-acbc-3aca86726ce7?api-version=2017-12-01" ], + "x-ms-request-id": [ "0a57e192-37c3-40bf-acbc-3aca86726ce7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1169" ], - "x-ms-correlation-request-id": [ "89c55534-81a3-4175-ab9c-7bdf44dfe36e" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043858Z:89c55534-81a3-4175-ab9c-7bdf44dfe36e" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1165" ], + "x-ms-correlation-request-id": [ "b63d81a2-7180-479f-b272-c1f0d0386471" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T115414Z:b63d81a2-7180-479f-b272-c1f0d0386471" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:38:57 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:54:14 GMT" ] }, "ContentHeaders": { "Content-Length": [ "89" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServerVnetFirewallRule\",\"startTime\":\"2020-05-08T04:38:57.42Z\"}" + "Content": "{\"operation\":\"UpsertElasticServerVnetFirewallRule\",\"startTime\":\"2020-09-25T11:54:13.27Z\"}" } }, - "Update-AzPostgreSqlVirtualNetworkRule+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e7e55b36-4196-4246-b131-b41670da4d68?api-version=2017-12-01+5": { + "Update-AzPostgreSqlVirtualNetworkRule+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/0a57e192-37c3-40bf-acbc-3aca86726ce7?api-version=2017-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e7e55b36-4196-4246-b131-b41670da4d68?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/0a57e192-37c3-40bf-acbc-3aca86726ce7?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "277", "278" ], - "x-ms-client-request-id": [ "a45cdcd1-901c-47d4-841a-f3cfdd5f8f9f", "a45cdcd1-901c-47d4-841a-f3cfdd5f8f9f" ], + "x-ms-unique-id": [ "290", "291" ], + "x-ms-client-request-id": [ "167c8d69-8e52-437b-b81f-03c3e298512c", "167c8d69-8e52-437b-b81f-03c3e298512c" ], "CommandName": [ "Update-AzPostgreSqlVirtualNetworkRule", "Update-AzPostgreSqlVirtualNetworkRule" ], "FullCommandName": [ "Update-AzPostgreSqlVirtualNetworkRule_UpdateExpanded", "Update-AzPostgreSqlVirtualNetworkRule_UpdateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -175,21 +175,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "55a0eea4-e426-4bb8-8269-8ff10ce06ef5" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11777" ], + "x-ms-request-id": [ "498d1d9e-171f-433d-af23-c147aba47621" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "06b74feb-d76c-458b-8155-ea49abaefc86" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043928Z:06b74feb-d76c-458b-8155-ea49abaefc86" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11766" ], + "x-ms-correlation-request-id": [ "7549b925-e8aa-4e5d-8ebd-d9e546bb1219" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T115445Z:7549b925-e8aa-4e5d-8ebd-d9e546bb1219" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:39:28 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:54:44 GMT" ] }, "ContentHeaders": { "Content-Length": [ "106" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"e7e55b36-4196-4246-b131-b41670da4d68\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-08T04:38:57.42Z\"}" + "Content": "{\"name\":\"0a57e192-37c3-40bf-acbc-3aca86726ce7\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:54:13.27Z\"}" } }, "Update-AzPostgreSqlVirtualNetworkRule+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/virtualNetworkRules/postgresqlvnet?api-version=2017-12-01+6": { @@ -198,8 +198,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/virtualNetworkRules/postgresqlvnet?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "277", "278", "279" ], - "x-ms-client-request-id": [ "a45cdcd1-901c-47d4-841a-f3cfdd5f8f9f", "a45cdcd1-901c-47d4-841a-f3cfdd5f8f9f", "a45cdcd1-901c-47d4-841a-f3cfdd5f8f9f" ], + "x-ms-unique-id": [ "290", "291", "292" ], + "x-ms-client-request-id": [ "167c8d69-8e52-437b-b81f-03c3e298512c", "167c8d69-8e52-437b-b81f-03c3e298512c", "167c8d69-8e52-437b-b81f-03c3e298512c" ], "CommandName": [ "Update-AzPostgreSqlVirtualNetworkRule", "Update-AzPostgreSqlVirtualNetworkRule", "Update-AzPostgreSqlVirtualNetworkRule" ], "FullCommandName": [ "Update-AzPostgreSqlVirtualNetworkRule_UpdateExpanded", "Update-AzPostgreSqlVirtualNetworkRule_UpdateExpanded", "Update-AzPostgreSqlVirtualNetworkRule_UpdateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -214,14 +214,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "83e083b2-f943-49c0-97fb-d35bee4d90e2" ], + "x-ms-request-id": [ "e04bb5d0-9025-4e3a-82c4-14e076bb943c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11776" ], - "x-ms-correlation-request-id": [ "cff1d904-bc14-4c37-a249-1f29ad3aac28" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043930Z:cff1d904-bc14-4c37-a249-1f29ad3aac28" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11765" ], + "x-ms-correlation-request-id": [ "0bb21726-289e-426d-ba17-03c347c8baa4" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T115446Z:0bb21726-289e-426d-ba17-03c347c8baa4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:39:29 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:54:45 GMT" ] }, "ContentHeaders": { "Content-Length": [ "532" ], @@ -237,8 +237,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/virtualNetworkRules/postgresqlvnet?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "280" ], - "x-ms-client-request-id": [ "52ab0303-8095-4dc8-a1fb-aa5ae6838a9a" ], + "x-ms-unique-id": [ "293" ], + "x-ms-client-request-id": [ "b659dca1-d413-499b-9289-3e305dc801bf" ], "CommandName": [ "Remove-AzPostgreSqlVirtualNetworkRule" ], "FullCommandName": [ "Remove-AzPostgreSqlVirtualNetworkRule_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -253,34 +253,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/d2790f89-dcc7-473f-ab58-82b435f98e2a?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/1a308fbb-1c9e-413c-9ae2-09e5659e6d0d?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/d2790f89-dcc7-473f-ab58-82b435f98e2a?api-version=2017-12-01" ], - "x-ms-request-id": [ "d2790f89-dcc7-473f-ab58-82b435f98e2a" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/1a308fbb-1c9e-413c-9ae2-09e5659e6d0d?api-version=2017-12-01" ], + "x-ms-request-id": [ "1a308fbb-1c9e-413c-9ae2-09e5659e6d0d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14980" ], - "x-ms-correlation-request-id": [ "0b7664c6-293d-4acf-ab8d-ae568dd1e2c8" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043931Z:0b7664c6-293d-4acf-ab8d-ae568dd1e2c8" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14978" ], + "x-ms-correlation-request-id": [ "d2d3bf2c-0e1e-44a9-b0c7-7a54da72997d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T115447Z:d2d3bf2c-0e1e-44a9-b0c7-7a54da72997d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:39:31 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:54:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "88" ], + "Content-Length": [ "87" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"DropElasticServerVnetFirewallRule\",\"startTime\":\"2020-05-08T04:39:30.287Z\"}" + "Content": "{\"operation\":\"DropElasticServerVnetFirewallRule\",\"startTime\":\"2020-09-25T11:54:46.27Z\"}" } }, - "Update-AzPostgreSqlVirtualNetworkRule+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/d2790f89-dcc7-473f-ab58-82b435f98e2a?api-version=2017-12-01+8": { + "Update-AzPostgreSqlVirtualNetworkRule+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/1a308fbb-1c9e-413c-9ae2-09e5659e6d0d?api-version=2017-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/d2790f89-dcc7-473f-ab58-82b435f98e2a?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/1a308fbb-1c9e-413c-9ae2-09e5659e6d0d?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "280", "281" ], - "x-ms-client-request-id": [ "52ab0303-8095-4dc8-a1fb-aa5ae6838a9a", "52ab0303-8095-4dc8-a1fb-aa5ae6838a9a" ], + "x-ms-unique-id": [ "293", "294" ], + "x-ms-client-request-id": [ "b659dca1-d413-499b-9289-3e305dc801bf", "b659dca1-d413-499b-9289-3e305dc801bf" ], "CommandName": [ "Remove-AzPostgreSqlVirtualNetworkRule", "Remove-AzPostgreSqlVirtualNetworkRule" ], "FullCommandName": [ "Remove-AzPostgreSqlVirtualNetworkRule_Delete", "Remove-AzPostgreSqlVirtualNetworkRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -296,31 +296,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "e8e11443-f905-4a10-bc20-180f0fda7415" ], + "x-ms-request-id": [ "e28b62e0-fd70-445a-8128-31bbd5c7b017" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11775" ], - "x-ms-correlation-request-id": [ "fa1c3171-e990-4f2c-b2b7-a2073e745878" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043946Z:fa1c3171-e990-4f2c-b2b7-a2073e745878" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11764" ], + "x-ms-correlation-request-id": [ "76831178-7ace-4270-85ca-ea75cf2cb838" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T115502Z:76831178-7ace-4270-85ca-ea75cf2cb838" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:39:46 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:55:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "106" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"d2790f89-dcc7-473f-ab58-82b435f98e2a\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-08T04:39:30.287Z\"}" + "Content": "{\"name\":\"1a308fbb-1c9e-413c-9ae2-09e5659e6d0d\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:54:46.27Z\"}" } }, - "Update-AzPostgreSqlVirtualNetworkRule+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/d2790f89-dcc7-473f-ab58-82b435f98e2a?api-version=2017-12-01+9": { + "Update-AzPostgreSqlVirtualNetworkRule+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/1a308fbb-1c9e-413c-9ae2-09e5659e6d0d?api-version=2017-12-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/d2790f89-dcc7-473f-ab58-82b435f98e2a?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/1a308fbb-1c9e-413c-9ae2-09e5659e6d0d?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "280", "281", "282" ], - "x-ms-client-request-id": [ "52ab0303-8095-4dc8-a1fb-aa5ae6838a9a", "52ab0303-8095-4dc8-a1fb-aa5ae6838a9a", "52ab0303-8095-4dc8-a1fb-aa5ae6838a9a" ], + "x-ms-unique-id": [ "293", "294", "295" ], + "x-ms-client-request-id": [ "b659dca1-d413-499b-9289-3e305dc801bf", "b659dca1-d413-499b-9289-3e305dc801bf", "b659dca1-d413-499b-9289-3e305dc801bf" ], "CommandName": [ "Remove-AzPostgreSqlVirtualNetworkRule", "Remove-AzPostgreSqlVirtualNetworkRule", "Remove-AzPostgreSqlVirtualNetworkRule" ], "FullCommandName": [ "Remove-AzPostgreSqlVirtualNetworkRule_Delete", "Remove-AzPostgreSqlVirtualNetworkRule_Delete", "Remove-AzPostgreSqlVirtualNetworkRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -335,14 +335,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "f1cf80f0-0d69-455f-9765-ee2b1f8601bb" ], + "x-ms-request-id": [ "8a510a9c-8bd4-4c65-9c5b-05e7dd8d004d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11774" ], - "x-ms-correlation-request-id": [ "1c65219f-8656-4f13-a525-106d052b515f" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043947Z:1c65219f-8656-4f13-a525-106d052b515f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11763" ], + "x-ms-correlation-request-id": [ "3de009da-b858-450e-bfd3-c02d81e9fba2" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T115503Z:3de009da-b858-450e-bfd3-c02d81e9fba2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:39:46 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:55:02 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -355,12 +355,12 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/virtualNetworkRules/postgresqlvnet?api-version=2017-12-01", - "Content": "{\n \"properties\": {\n \"virtualNetworkSubnetId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.Network/virtualNetworks/MySqlVNet/subnets/MysqlSubnet1\"\n }\n}", + "Content": "{\r\n \"properties\": {\r\n \"virtualNetworkSubnetId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.Network/virtualNetworks/MySqlVNet/subnets/MysqlSubnet1\"\r\n }\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "214" ] + "Content-Length": [ "218" ] } }, "Response": { @@ -368,34 +368,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/6951d44c-3f53-4ab2-bc93-714645d15db1?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/9d16ebdd-72c9-4a8e-8943-fb21dec6e3bc?api-version=2017-12-01" ], "Retry-After": [ "30" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/6951d44c-3f53-4ab2-bc93-714645d15db1?api-version=2017-12-01" ], - "x-ms-request-id": [ "6951d44c-3f53-4ab2-bc93-714645d15db1" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/9d16ebdd-72c9-4a8e-8943-fb21dec6e3bc?api-version=2017-12-01" ], + "x-ms-request-id": [ "9d16ebdd-72c9-4a8e-8943-fb21dec6e3bc" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1168" ], - "x-ms-correlation-request-id": [ "ded09d90-00ed-4481-86e8-82075437fd33" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T043948Z:ded09d90-00ed-4481-86e8-82075437fd33" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1164" ], + "x-ms-correlation-request-id": [ "03ba20f1-c5cd-4613-a695-7d1996390ce0" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T115504Z:03ba20f1-c5cd-4613-a695-7d1996390ce0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:39:48 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:55:03 GMT" ] }, "ContentHeaders": { "Content-Length": [ "89" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServerVnetFirewallRule\",\"startTime\":\"2020-05-08T04:39:47.44Z\"}" + "Content": "{\"operation\":\"UpsertElasticServerVnetFirewallRule\",\"startTime\":\"2020-09-25T11:55:03.52Z\"}" } }, - "Update-AzPostgreSqlVirtualNetworkRule+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/6951d44c-3f53-4ab2-bc93-714645d15db1?api-version=2017-12-01+2": { + "Update-AzPostgreSqlVirtualNetworkRule+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/9d16ebdd-72c9-4a8e-8943-fb21dec6e3bc?api-version=2017-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/6951d44c-3f53-4ab2-bc93-714645d15db1?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/9d16ebdd-72c9-4a8e-8943-fb21dec6e3bc?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "283", "284" ], - "x-ms-client-request-id": [ "e430cfea-1e7e-4441-bb1d-faf37588d14c", "e430cfea-1e7e-4441-bb1d-faf37588d14c" ], + "x-ms-unique-id": [ "296", "297" ], + "x-ms-client-request-id": [ "43648747-3be7-44b6-a9cb-8745d7f74875", "43648747-3be7-44b6-a9cb-8745d7f74875" ], "CommandName": [ "New-AzPostgreSqlVirtualNetworkRule", "New-AzPostgreSqlVirtualNetworkRule" ], "FullCommandName": [ "New-AzPostgreSqlVirtualNetworkRule_CreateExpanded", "New-AzPostgreSqlVirtualNetworkRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -411,21 +411,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "de624df1-bbeb-4c33-90ee-91afe82938f5" ], + "x-ms-request-id": [ "4038a9e8-cd77-4d45-80de-1b0904453751" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11773" ], - "x-ms-correlation-request-id": [ "23a28c60-0b38-4f7b-a50f-d1440332dca4" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T044019Z:23a28c60-0b38-4f7b-a50f-d1440332dca4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11762" ], + "x-ms-correlation-request-id": [ "7299e7f9-c938-4c56-ba19-5d0241adb763" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T115535Z:7299e7f9-c938-4c56-ba19-5d0241adb763" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:40:18 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:55:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "106" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"6951d44c-3f53-4ab2-bc93-714645d15db1\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-08T04:39:47.44Z\"}" + "Content": "{\"name\":\"9d16ebdd-72c9-4a8e-8943-fb21dec6e3bc\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:55:03.52Z\"}" } }, "Update-AzPostgreSqlVirtualNetworkRule+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/virtualNetworkRules/postgresqlvnet?api-version=2017-12-01+3": { @@ -434,8 +434,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/virtualNetworkRules/postgresqlvnet?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "283", "284", "285" ], - "x-ms-client-request-id": [ "e430cfea-1e7e-4441-bb1d-faf37588d14c", "e430cfea-1e7e-4441-bb1d-faf37588d14c", "e430cfea-1e7e-4441-bb1d-faf37588d14c" ], + "x-ms-unique-id": [ "296", "297", "298" ], + "x-ms-client-request-id": [ "43648747-3be7-44b6-a9cb-8745d7f74875", "43648747-3be7-44b6-a9cb-8745d7f74875", "43648747-3be7-44b6-a9cb-8745d7f74875" ], "CommandName": [ "New-AzPostgreSqlVirtualNetworkRule", "New-AzPostgreSqlVirtualNetworkRule", "New-AzPostgreSqlVirtualNetworkRule" ], "FullCommandName": [ "New-AzPostgreSqlVirtualNetworkRule_CreateExpanded", "New-AzPostgreSqlVirtualNetworkRule_CreateExpanded", "New-AzPostgreSqlVirtualNetworkRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -450,14 +450,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "f8ff3a6c-c8ee-4746-8ac1-b0fdd865f7af" ], + "x-ms-request-id": [ "e36b97a5-abe4-4b32-9532-a4e96a29f2f0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11772" ], - "x-ms-correlation-request-id": [ "659453b9-5023-4f07-933c-cd5587a6dfae" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T044019Z:659453b9-5023-4f07-933c-cd5587a6dfae" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11761" ], + "x-ms-correlation-request-id": [ "6b5ccc86-a22a-4139-aa4c-e23f7c6a2292" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T115535Z:6b5ccc86-a22a-4139-aa4c-e23f7c6a2292" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:40:18 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:55:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "532" ], @@ -471,12 +471,12 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/virtualNetworkRules/postgresqlvnet?api-version=2017-12-01", - "Content": "{\n \"properties\": {\n \"virtualNetworkSubnetId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.Network/virtualNetworks/MySqlVNet/subnets/MysqlSubnet2\"\n }\n}", + "Content": "{\r\n \"properties\": {\r\n \"virtualNetworkSubnetId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.Network/virtualNetworks/MySqlVNet/subnets/MysqlSubnet2\"\r\n }\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "214" ] + "Content-Length": [ "218" ] } }, "Response": { @@ -484,34 +484,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/e45c4c7e-3df6-4e84-bb35-b744b90ec67d?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/fd8f3120-955d-409c-a4c9-aa62c99b86bc?api-version=2017-12-01" ], "Retry-After": [ "30" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e45c4c7e-3df6-4e84-bb35-b744b90ec67d?api-version=2017-12-01" ], - "x-ms-request-id": [ "e45c4c7e-3df6-4e84-bb35-b744b90ec67d" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/fd8f3120-955d-409c-a4c9-aa62c99b86bc?api-version=2017-12-01" ], + "x-ms-request-id": [ "fd8f3120-955d-409c-a4c9-aa62c99b86bc" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1167" ], - "x-ms-correlation-request-id": [ "b54840b3-6e79-4d6c-b6cf-0bb7f9e5ce77" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T044020Z:b54840b3-6e79-4d6c-b6cf-0bb7f9e5ce77" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1163" ], + "x-ms-correlation-request-id": [ "2f4334fa-1001-4433-b2f8-3c0556f1f7bf" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T115537Z:2f4334fa-1001-4433-b2f8-3c0556f1f7bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:40:20 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:55:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "90" ], + "Content-Length": [ "88" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServerVnetFirewallRule\",\"startTime\":\"2020-05-08T04:40:19.693Z\"}" + "Content": "{\"operation\":\"UpsertElasticServerVnetFirewallRule\",\"startTime\":\"2020-09-25T11:55:35.9Z\"}" } }, - "Update-AzPostgreSqlVirtualNetworkRule+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e45c4c7e-3df6-4e84-bb35-b744b90ec67d?api-version=2017-12-01+5": { + "Update-AzPostgreSqlVirtualNetworkRule+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/fd8f3120-955d-409c-a4c9-aa62c99b86bc?api-version=2017-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/e45c4c7e-3df6-4e84-bb35-b744b90ec67d?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/fd8f3120-955d-409c-a4c9-aa62c99b86bc?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "286", "287" ], - "x-ms-client-request-id": [ "9877f029-8bc3-435e-9677-9a90f33e8dd2", "9877f029-8bc3-435e-9677-9a90f33e8dd2" ], + "x-ms-unique-id": [ "299", "300" ], + "x-ms-client-request-id": [ "6b5cbf77-3041-4e22-8e1a-28fba4294c1a", "6b5cbf77-3041-4e22-8e1a-28fba4294c1a" ], "CommandName": [ "Update-AzPostgreSqlVirtualNetworkRule", "Update-AzPostgreSqlVirtualNetworkRule" ], "FullCommandName": [ "Update-AzPostgreSqlVirtualNetworkRule_UpdateViaIdentityExpanded", "Update-AzPostgreSqlVirtualNetworkRule_UpdateViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -527,21 +527,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "fe3fa69b-270e-4f93-bbc6-3081dd3649c6" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11771" ], + "x-ms-request-id": [ "6c575aa2-d6d5-457d-a8fa-2e536e9fce40" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "3ffc6add-655d-4d86-85d8-b25588694c0a" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T044051Z:3ffc6add-655d-4d86-85d8-b25588694c0a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11760" ], + "x-ms-correlation-request-id": [ "bf5ec029-d786-4ff9-958d-b75ec10ab7f4" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T115607Z:bf5ec029-d786-4ff9-958d-b75ec10ab7f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:40:50 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:56:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "105" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"e45c4c7e-3df6-4e84-bb35-b744b90ec67d\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-08T04:40:19.693Z\"}" + "Content": "{\"name\":\"fd8f3120-955d-409c-a4c9-aa62c99b86bc\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:55:35.9Z\"}" } }, "Update-AzPostgreSqlVirtualNetworkRule+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/virtualNetworkRules/postgresqlvnet?api-version=2017-12-01+6": { @@ -550,8 +550,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/virtualNetworkRules/postgresqlvnet?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "286", "287", "288" ], - "x-ms-client-request-id": [ "9877f029-8bc3-435e-9677-9a90f33e8dd2", "9877f029-8bc3-435e-9677-9a90f33e8dd2", "9877f029-8bc3-435e-9677-9a90f33e8dd2" ], + "x-ms-unique-id": [ "299", "300", "301" ], + "x-ms-client-request-id": [ "6b5cbf77-3041-4e22-8e1a-28fba4294c1a", "6b5cbf77-3041-4e22-8e1a-28fba4294c1a", "6b5cbf77-3041-4e22-8e1a-28fba4294c1a" ], "CommandName": [ "Update-AzPostgreSqlVirtualNetworkRule", "Update-AzPostgreSqlVirtualNetworkRule", "Update-AzPostgreSqlVirtualNetworkRule" ], "FullCommandName": [ "Update-AzPostgreSqlVirtualNetworkRule_UpdateViaIdentityExpanded", "Update-AzPostgreSqlVirtualNetworkRule_UpdateViaIdentityExpanded", "Update-AzPostgreSqlVirtualNetworkRule_UpdateViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -566,14 +566,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "380180b7-fef0-4352-a5ae-f7a4dc7f0384" ], + "x-ms-request-id": [ "d42bcfa5-4816-4bdf-8df4-b94e9afcfd4c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11770" ], - "x-ms-correlation-request-id": [ "bc0ab957-1be9-48ff-84e6-0f6f8fb88c82" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T044052Z:bc0ab957-1be9-48ff-84e6-0f6f8fb88c82" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11759" ], + "x-ms-correlation-request-id": [ "17591c28-4db9-42ee-9e93-9e5c588362da" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T115607Z:17591c28-4db9-42ee-9e93-9e5c588362da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:40:51 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:56:07 GMT" ] }, "ContentHeaders": { "Content-Length": [ "532" ], @@ -589,8 +589,8 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/PostgreSqlTest/providers/Microsoft.DBforPostgreSQL/servers/postgresql-test-100/virtualNetworkRules/postgresqlvnet?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "289" ], - "x-ms-client-request-id": [ "878abe7e-8bda-4fd0-8e93-3ab83ffbdd3f" ], + "x-ms-unique-id": [ "302" ], + "x-ms-client-request-id": [ "505425f0-b493-4b01-8526-a8dea966c671" ], "CommandName": [ "Remove-AzPostgreSqlVirtualNetworkRule" ], "FullCommandName": [ "Remove-AzPostgreSqlVirtualNetworkRule_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -605,34 +605,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/3af78b70-4485-40ee-ac64-69d59d183745?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/7c4bd3c2-931a-4354-8f49-3f3d2887149d?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/3af78b70-4485-40ee-ac64-69d59d183745?api-version=2017-12-01" ], - "x-ms-request-id": [ "3af78b70-4485-40ee-ac64-69d59d183745" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/7c4bd3c2-931a-4354-8f49-3f3d2887149d?api-version=2017-12-01" ], + "x-ms-request-id": [ "7c4bd3c2-931a-4354-8f49-3f3d2887149d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14979" ], - "x-ms-correlation-request-id": [ "1c5fafbd-9e58-4f10-8967-6da074fb17bb" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T044053Z:1c5fafbd-9e58-4f10-8967-6da074fb17bb" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14977" ], + "x-ms-correlation-request-id": [ "09e1c770-81ad-4cb8-97cd-07b35617d77a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T115609Z:09e1c770-81ad-4cb8-97cd-07b35617d77a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:40:52 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:56:09 GMT" ] }, "ContentHeaders": { "Content-Length": [ "88" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"DropElasticServerVnetFirewallRule\",\"startTime\":\"2020-05-08T04:40:52.333Z\"}" + "Content": "{\"operation\":\"DropElasticServerVnetFirewallRule\",\"startTime\":\"2020-09-25T11:56:08.167Z\"}" } }, - "Update-AzPostgreSqlVirtualNetworkRule+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/3af78b70-4485-40ee-ac64-69d59d183745?api-version=2017-12-01+8": { + "Update-AzPostgreSqlVirtualNetworkRule+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/7c4bd3c2-931a-4354-8f49-3f3d2887149d?api-version=2017-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/3af78b70-4485-40ee-ac64-69d59d183745?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/7c4bd3c2-931a-4354-8f49-3f3d2887149d?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "289", "290" ], - "x-ms-client-request-id": [ "878abe7e-8bda-4fd0-8e93-3ab83ffbdd3f", "878abe7e-8bda-4fd0-8e93-3ab83ffbdd3f" ], + "x-ms-unique-id": [ "302", "303" ], + "x-ms-client-request-id": [ "505425f0-b493-4b01-8526-a8dea966c671", "505425f0-b493-4b01-8526-a8dea966c671" ], "CommandName": [ "Remove-AzPostgreSqlVirtualNetworkRule", "Remove-AzPostgreSqlVirtualNetworkRule" ], "FullCommandName": [ "Remove-AzPostgreSqlVirtualNetworkRule_Delete", "Remove-AzPostgreSqlVirtualNetworkRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -648,31 +648,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "99c0d279-43af-4ab0-936f-7429476e76dc" ], + "x-ms-request-id": [ "181b774c-9362-4197-82b2-ea183ca1d9a1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11769" ], - "x-ms-correlation-request-id": [ "4c1c6c6c-0b02-49ed-b449-b655f276af83" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T044108Z:4c1c6c6c-0b02-49ed-b449-b655f276af83" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11758" ], + "x-ms-correlation-request-id": [ "566ef4a1-07c0-4b95-81e2-316639f08650" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T115624Z:566ef4a1-07c0-4b95-81e2-316639f08650" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:41:08 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:56:24 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"3af78b70-4485-40ee-ac64-69d59d183745\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-08T04:40:52.333Z\"}" + "Content": "{\"name\":\"7c4bd3c2-931a-4354-8f49-3f3d2887149d\",\"status\":\"Succeeded\",\"startTime\":\"2020-09-25T11:56:08.167Z\"}" } }, - "Update-AzPostgreSqlVirtualNetworkRule+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/3af78b70-4485-40ee-ac64-69d59d183745?api-version=2017-12-01+9": { + "Update-AzPostgreSqlVirtualNetworkRule+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/7c4bd3c2-931a-4354-8f49-3f3d2887149d?api-version=2017-12-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/3af78b70-4485-40ee-ac64-69d59d183745?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/7c4bd3c2-931a-4354-8f49-3f3d2887149d?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "289", "290", "291" ], - "x-ms-client-request-id": [ "878abe7e-8bda-4fd0-8e93-3ab83ffbdd3f", "878abe7e-8bda-4fd0-8e93-3ab83ffbdd3f", "878abe7e-8bda-4fd0-8e93-3ab83ffbdd3f" ], + "x-ms-unique-id": [ "302", "303", "304" ], + "x-ms-client-request-id": [ "505425f0-b493-4b01-8526-a8dea966c671", "505425f0-b493-4b01-8526-a8dea966c671", "505425f0-b493-4b01-8526-a8dea966c671" ], "CommandName": [ "Remove-AzPostgreSqlVirtualNetworkRule", "Remove-AzPostgreSqlVirtualNetworkRule", "Remove-AzPostgreSqlVirtualNetworkRule" ], "FullCommandName": [ "Remove-AzPostgreSqlVirtualNetworkRule_Delete", "Remove-AzPostgreSqlVirtualNetworkRule_Delete", "Remove-AzPostgreSqlVirtualNetworkRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -687,14 +687,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "aa224d52-16a2-4725-a797-545202143d37" ], + "x-ms-request-id": [ "e81d57dc-ba1e-4dd3-8bd1-3f4dab17e44d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11768" ], - "x-ms-correlation-request-id": [ "f5506e85-3c7a-450c-8326-8187a6dd9766" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200508T044109Z:f5506e85-3c7a-450c-8326-8187a6dd9766" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11757" ], + "x-ms-correlation-request-id": [ "a4a05b30-f950-4250-a2bb-0f2a5b24b0db" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200925T115625Z:a4a05b30-f950-4250-a2bb-0f2a5b24b0db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 08 May 2020 04:41:09 GMT" ] + "Date": [ "Fri, 25 Sep 2020 11:56:24 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/PostgreSql/test/env.json b/src/PostgreSql/test/env.json index 6cf50fb77ab3..88d516128105 100644 --- a/src/PostgreSql/test/env.json +++ b/src/PostgreSql/test/env.json @@ -1,15 +1,15 @@ { - "serverName2": "postgresql-test-100-2", + "SubscriptionId": "9e223dbe-3399-4e19-88eb-0975f02ac87f", "resourceGroup": "PostgreSqlTest", + "serverName2": "postgresql-test-100-2", + "Sku": "GP_Gen5_4", + "restoreName2": "postgresql-test-100-restore-2", + "firewallRuleName2": "postgresqlrule02", "replicaName": "postgresql-test-100-replica", + "Tenant": "72f988bf-86f1-41af-91ab-2d7cd011db47", "firewallRuleName": "postgresqlrule01", - "firewallRuleName2": "postgresqlrule02", "VNetName": "postgresqlvnet", - "SubscriptionId": "9e223dbe-3399-4e19-88eb-0975f02ac87f", "serverName": "postgresql-test-100", - "Sku": "GP_Gen5_4", "restoreName": "postgresql-test-100-restore", - "location": "eastus", - "restoreName2": "postgresql-test-100-restore-2", - "Tenant": "72f988bf-86f1-41af-91ab-2d7cd011db47" + "location": "eastus" } diff --git a/src/PostgreSql/test/readme.md b/src/PostgreSql/test/readme.md index 1969200c6a09..7c752b4c8c43 100644 --- a/src/PostgreSql/test/readme.md +++ b/src/PostgreSql/test/readme.md @@ -1,5 +1,5 @@ # Test -This directory contains the [Pester](https://www.powershellgallery.com/packages/Pester) tests to run for the module. We use Pester as it is the unofficial standard for PowerShell unit testing. Test stubs for custom cmdlets (created in `../custom`) will be generated into this folder when `build-module.ps1` is ran. These test stubs will fail automatically, to indicate that tests should be written for custom cmdlets. +This directory contains the [Pester](https://www.powershellgallery.com/packages/Pester) tests to run for the module. We use Pester as it is the unofficial standard for PowerShell unit testing. Test stubs for custom cmdlets (created in `..\custom`) will be generated into this folder when `build-module.ps1` is ran. These test stubs will fail automatically, to indicate that tests should be written for custom cmdlets. ## Info - Modifiable: yes diff --git a/src/PostgreSql/utils/Unprotect-SecureString.ps1 b/src/PostgreSql/utils/Unprotect-SecureString.ps1 new file mode 100644 index 000000000000..cb05b51a6220 --- /dev/null +++ b/src/PostgreSql/utils/Unprotect-SecureString.ps1 @@ -0,0 +1,16 @@ +#This script converts securestring to plaintext + +param( + [Parameter(Mandatory, ValueFromPipeline)] + [System.Security.SecureString] + ${SecureString} +) + +$ssPtr = [System.Runtime.InteropServices.Marshal]::SecureStringToBSTR($SecureString) +try { + $plaintext = [System.Runtime.InteropServices.Marshal]::PtrToStringBSTR($ssPtr) +} finally { + [System.Runtime.InteropServices.Marshal]::ZeroFreeBSTR($ssPtr) +} + +return $plaintext \ No newline at end of file diff --git a/src/RecoveryServices/RecoveryServices.Backup.Models/Properties/Resources.Designer.cs b/src/RecoveryServices/RecoveryServices.Backup.Models/Properties/Resources.Designer.cs index b422970c8003..44f77a3a5726 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Models/Properties/Resources.Designer.cs +++ b/src/RecoveryServices/RecoveryServices.Backup.Models/Properties/Resources.Designer.cs @@ -1549,5 +1549,16 @@ public static string TargetVaultStorageRedundancy return ResourceManager.GetString("TargetVaultStorageRedundancy", resourceCulture); } } + + /// + /// Looks up a localized string similar to container name is invalid. + /// + public static string ContainerNameIsInvalid + { + get + { + return ResourceManager.GetString("ContainerNameIsInvalid", resourceCulture); + } + } } } diff --git a/src/RecoveryServices/RecoveryServices.Backup.Models/Properties/Resources.resx b/src/RecoveryServices/RecoveryServices.Backup.Models/Properties/Resources.resx index 19dc21f2d7ab..c8953279670d 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Models/Properties/Resources.resx +++ b/src/RecoveryServices/RecoveryServices.Backup.Models/Properties/Resources.resx @@ -610,4 +610,7 @@ Please contact Microsoft for further assistance. Are you sure you want to copy items to the {0} whose storage redundancy is {1} + + container name is invalid. + \ No newline at end of file diff --git a/src/RecoveryServices/RecoveryServices.Backup.Providers/AzureWorkloadProviderHelper.cs b/src/RecoveryServices/RecoveryServices.Backup.Providers/AzureWorkloadProviderHelper.cs index 41383c5fa242..a6d10d80e7de 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Providers/AzureWorkloadProviderHelper.cs +++ b/src/RecoveryServices/RecoveryServices.Backup.Providers/AzureWorkloadProviderHelper.cs @@ -280,6 +280,16 @@ public void ValidateSQLSchedulePolicy(CmdletModel.SchedulePolicyBase policy) policy.Validate(); } + public void ValidateContainerName(String containerName) + { + if (!containerName.Contains(";")) + { + throw new ArgumentException( + string.Format( + Resources.ContainerNameIsInvalid)); + } + } + public void ValidateLongTermRetentionPolicy(CmdletModel.RetentionPolicyBase policy, string backupManagementType = "") { if (policy == null || policy.GetType() != typeof(CmdletModel.LongTermRetentionPolicy)) diff --git a/src/RecoveryServices/RecoveryServices.Backup.Providers/Providers/AzureWorkloadPsBackupProvider.cs b/src/RecoveryServices/RecoveryServices.Backup.Providers/Providers/AzureWorkloadPsBackupProvider.cs index d8a54fb2c5b1..7fc715292bbe 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Providers/Providers/AzureWorkloadPsBackupProvider.cs +++ b/src/RecoveryServices/RecoveryServices.Backup.Providers/Providers/AzureWorkloadPsBackupProvider.cs @@ -379,6 +379,9 @@ public RestAzureNS.AzureOperationResponse TriggerRestore() if (wLRecoveryConfig.RecoveryPoint.ContainerName != null && wLRecoveryConfig.FullRP == null) { + // validate container name to be a full name + AzureWorkloadProviderHelper.ValidateContainerName(wLRecoveryConfig.RecoveryPoint.ContainerName); + AzureWorkloadSQLRestoreRequest azureWorkloadSQLRestoreRequest = new AzureWorkloadSQLRestoreRequest(); diff --git a/src/RecoveryServices/RecoveryServices.SiteRecovery/Models/PSRecoveryPlanObjects.cs b/src/RecoveryServices/RecoveryServices.SiteRecovery/Models/PSRecoveryPlanObjects.cs index 344a0f918eab..d0d04e7c778a 100644 --- a/src/RecoveryServices/RecoveryServices.SiteRecovery/Models/PSRecoveryPlanObjects.cs +++ b/src/RecoveryServices/RecoveryServices.SiteRecovery/Models/PSRecoveryPlanObjects.cs @@ -193,6 +193,7 @@ public static RecoveryPlanAction GetSrsRecoveryPlanAction(ASRRecoveryPlanAction var recoveryPlanAction = new RecoveryPlanAction(); recoveryPlanAction.ActionName = asrRecoveryPlanAction.ActionName; + recoveryPlanAction.FailoverTypes = asrRecoveryPlanAction.FailoverTypes; recoveryPlanAction.FailoverDirections = asrRecoveryPlanAction.FailoverDirections; if (asrRecoveryPlanAction.CustomDetails is ASRRecoveryPlanAutomationRunbookActionDetails) diff --git a/src/RecoveryServices/RecoveryServices/ChangeLog.md b/src/RecoveryServices/RecoveryServices/ChangeLog.md index 270895d004d7..df19af8a1029 100644 --- a/src/RecoveryServices/RecoveryServices/ChangeLog.md +++ b/src/RecoveryServices/RecoveryServices/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* Added container name validation for workload backup. ## Version 2.12.1 * Fixed the Delete State for workload Backup Items. diff --git a/src/RedisCache/RedisCache/ChangeLog.md b/src/RedisCache/RedisCache/ChangeLog.md index 286b57b09884..53edac2d35c9 100644 --- a/src/RedisCache/RedisCache/ChangeLog.md +++ b/src/RedisCache/RedisCache/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* Made New-AzRedisCache` and `Set-AzRedisCache` cmdlets not fail because of permission issue related to registering Microsoft.Cache RP ## Version 1.2.1 * Update references in .psd1 to use relative path diff --git a/src/RedisCache/RedisCache/Models/RedisCacheClient.cs b/src/RedisCache/RedisCache/Models/RedisCacheClient.cs index ed7dca81aaeb..84d7a2d97e96 100644 --- a/src/RedisCache/RedisCache/Models/RedisCacheClient.cs +++ b/src/RedisCache/RedisCache/Models/RedisCacheClient.cs @@ -48,7 +48,13 @@ public RedisCacheClient() { } public RedisResource CreateCache(string resourceGroupName, string cacheName, string location, string skuFamily, int skuCapacity, string skuName, Hashtable redisConfiguration, bool? enableNonSslPort, Hashtable tenantSettings, int? shardCount, string minimumTlsVersion, string subnetId, string staticIP, Hashtable tags, IList zones) { - _resourceManagementClient.Providers.Register("Microsoft.Cache"); + try + { + _resourceManagementClient.Providers.Register("Microsoft.Cache"); + } + catch + { + } var parameters = new RedisCreateParameters { Location = location, @@ -124,7 +130,13 @@ public RedisResource CreateCache(string resourceGroupName, string cacheName, str public RedisResource UpdateCache(string resourceGroupName, string cacheName, string skuFamily, int skuCapacity, string skuName, Hashtable redisConfiguration, bool? enableNonSslPort, Hashtable tenantSettings, int? shardCount, string MinimumTlsVersion, Hashtable tags) { - _resourceManagementClient.Providers.Register("Microsoft.Cache"); + try + { + _resourceManagementClient.Providers.Register("Microsoft.Cache"); + } + catch + { + } var parameters = new RedisUpdateParameters { Sku = new Microsoft.Azure.Management.Redis.Models.Sku diff --git a/src/Sql/Sql.LegacySdk/Properties/AssemblyInfo.cs b/src/Sql/Sql.LegacySdk/Properties/AssemblyInfo.cs index 70b9225383ed..3381b48bc975 100644 --- a/src/Sql/Sql.LegacySdk/Properties/AssemblyInfo.cs +++ b/src/Sql/Sql.LegacySdk/Properties/AssemblyInfo.cs @@ -20,8 +20,8 @@ [assembly: AssemblyTitle("Microsoft Azure SQL Server Management Library")] [assembly: AssemblyDescription("Provides management functionality for Microsoft Azure SQL.")] -[assembly: AssemblyVersion("2.10.0")] -[assembly: AssemblyFileVersion("2.10.0")] +[assembly: AssemblyVersion("2.11.0")] +[assembly: AssemblyFileVersion("2.11.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Azure .NET SDK")] diff --git a/src/Sql/Sql.Test/ScenarioTests/Common.ps1 b/src/Sql/Sql.Test/ScenarioTests/Common.ps1 index fec8fcccd648..698ff67b1a17 100644 --- a/src/Sql/Sql.Test/ScenarioTests/Common.ps1 +++ b/src/Sql/Sql.Test/ScenarioTests/Common.ps1 @@ -808,12 +808,14 @@ function Get-SqlDatabaseImportExportTestEnvironmentParameters ($testSuffix) $exportBacpacUri = "http://test.blob.core.windows.net/bacpacs" $importBacpacUri = "http://test.blob.core.windows.net/bacpacs/test.bacpac" $storageKey = "StorageKey" + $storageResourceId = "/subscriptions/xys/resourcegroups/default/providers/Microsoft.Storage/test" $testMode = [System.Environment]::GetEnvironmentVariable("AZURE_TEST_MODE") if($testMode -eq "Record"){ $exportBacpacUri = [System.Environment]::GetEnvironmentVariable("TEST_EXPORT_BACPAC") $importBacpacUri = [System.Environment]::GetEnvironmentVariable("TEST_IMPORT_BACPAC") $storageKey = [System.Environment]::GetEnvironmentVariable("TEST_STORAGE_KEY") + $storageResourceId = [System.Environment]::GetEnvironmentVariable("TEST_STORAGE_RESOURCE_ID") if ([System.string]::IsNullOrEmpty($exportBacpacUri)){ throw "The TEST_EXPORT_BACPAC environment variable should point to a bacpac that has been uploaded to Azure blob storage ('e.g.' https://test.blob.core.windows.net/bacpacs/empty.bacpac)" @@ -824,6 +826,9 @@ function Get-SqlDatabaseImportExportTestEnvironmentParameters ($testSuffix) if ([System.string]::IsNullOrEmpty($storageKey)){ throw "The TEST_STORAGE_KEY environment variable should point to a valid storage key for an existing Azure storage account" } + if ([System.string]::IsNullOrEmpty($storageResourceId)){ + throw "The TEST_STORAGE_RESOURCE_ID environment variable should point to the resource id for the storage account" + } } return @{ @@ -837,12 +842,13 @@ function Get-SqlDatabaseImportExportTestEnvironmentParameters ($testSuffix) storageKey = $storageKey; exportBacpacUri = $exportBacpacUri + "/" + $databaseName + ".bacpac"; importBacpacUri = $importBacpacUri; - location = "Australia East"; + location = "West Central US"; version = "12.0"; - databaseEdition = "Standard"; - serviceObjectiveName = "S0"; - databaseMaxSizeBytes = "5000000"; + databaseEdition = "GeneralPurpose"; + serviceObjectiveName = "GP_Gen5_2"; + databaseMaxSizeBytes = "1073741824"; authType = "Sql"; + storageResourceId = $storageResourceId; } } @@ -1105,4 +1111,4 @@ function DelegateSubnetToSQLMIAndGetVnet ($vnetName, $subnetName, $resourceGroup } return $vnet -} \ No newline at end of file +} diff --git a/src/Sql/Sql.Test/ScenarioTests/DatabaseActivationTests.cs b/src/Sql/Sql.Test/ScenarioTests/DatabaseActivationTests.cs index da625b416210..9158d53e5579 100644 --- a/src/Sql/Sql.Test/ScenarioTests/DatabaseActivationTests.cs +++ b/src/Sql/Sql.Test/ScenarioTests/DatabaseActivationTests.cs @@ -28,7 +28,7 @@ public DatabaseActivationTests(ITestOutputHelper output) : base(output) }; } - [Fact] + [Fact(Skip = "The test takes the longest time to run. Skip it to workaround timeout temporarily.")] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestDatabasePauseResume() { diff --git a/src/Sql/Sql.Test/ScenarioTests/DatabaseBackupTests.cs b/src/Sql/Sql.Test/ScenarioTests/DatabaseBackupTests.cs index 01677e8f9ba1..a913b29ebca0 100644 --- a/src/Sql/Sql.Test/ScenarioTests/DatabaseBackupTests.cs +++ b/src/Sql/Sql.Test/ScenarioTests/DatabaseBackupTests.cs @@ -54,8 +54,6 @@ public void TestRestoreGeoBackup() [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestRestoreDeletedDatabaseBackup() { - // TODO Rewrite SQL backup tests to be recordable - // TODO https://github.com/Azure/azure-powershell/issues/4155 if (TestMockSupport.RunningMocked) { RunPowerShellTest("Test-RestoreDeletedDatabaseBackup"); @@ -119,7 +117,7 @@ public void TestLongTermRetentionV2() } } - [Fact(Skip = "No time to re-record this")] + [Fact(Skip = "This is not recordable test")] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestLongTermRetentionV2ResourceGroupBased() { diff --git a/src/Sql/Sql.Test/ScenarioTests/DatabaseBackupTests.ps1 b/src/Sql/Sql.Test/ScenarioTests/DatabaseBackupTests.ps1 index 66a1c4048957..2c4558eef101 100644 --- a/src/Sql/Sql.Test/ScenarioTests/DatabaseBackupTests.ps1 +++ b/src/Sql/Sql.Test/ScenarioTests/DatabaseBackupTests.ps1 @@ -79,26 +79,37 @@ function Test-RestoreGeoBackup function Test-RestoreDeletedDatabaseBackup { # Setup - $location = "Southeast Asia" + $location = "westcentralus" $serverVersion = "12.0" - $rg = Get-AzResourceGroup -ResourceGroupName payi-test - $server = Get-AzSqlServer -ServerName payi-testsvr -ResourceGroupName $rg.ResourceGroupName - $droppedDbName = "powershell_db_georestored" + $rg = Create-ResourceGroupForTest $restoredDbName = "powershell_db_deleted" $restoredVcoreDbName = "powershell_db_deleted_vcore" - # this Get command has regression in MS when specifying Deletiondate. Fix should be in Prod by 5/7/2018. so currently use another way to do testing - $deletedDb = Get-AzSqlDeletedDatabaseBackup -ResourceGroupName $server.ResourceGroupName -ServerName $server.ServerName ` - -DatabaseName $droppedDbName #-DeletionDate "2018-04-20 20:21:37.397Z" + try + { + $server = Create-ServerForTest $rg $location + + # Create a new sql database + $databaseName = Get-DatabaseName + $db = New-AzSqlDatabase -ResourceGroupName $rg.ResourceGroupName -ServerName $server.ServerName -DatabaseName $databaseName -Edition GeneralPurpose -RequestedServiceObjectiveName GP_Gen5_2 + + # Note: Uncomment below sleep if you are recording so that DB lives long enough to take full backup + # Start-Sleep -s 600 - # restore to a db same as the deleted db - Restore-AzSqlDatabase -FromDeletedDatabaseBackup -TargetDatabaseName $restoredDbName -DeletionDate "2018-04-20 20:21:37.397Z" ` - -ResourceGroupName $deletedDb[0].ResourceGroupName -ServerName $deletedDb[0].ServerName -ResourceId $deletedDb[0].ResourceId + Remove-AzSqlDatabase -DatabaseName $databaseName -ServerName $server.ServerName -ResourceGroupName $rg.ResourceGroupName -Force:$true + + $deletedDb = Get-AzSqlDeletedDatabaseBackup -ResourceGroupName $rg.ResourceGroupName -ServerName $server.ServerName -DatabaseName $databaseName + + # restore to a db same as the deleted db + Restore-AzSqlDatabase -FromDeletedDatabaseBackup -TargetDatabaseName $restoredDbName -DeletionDate $deletedDb[0].DeletionDate -ResourceGroupName $deletedDb[0].ResourceGroupName -ServerName $deletedDb[0].ServerName -ResourceId $deletedDb[0].ResourceId - # restore to a vcore db - Restore-AzSqlDatabase -FromDeletedDatabaseBackup -TargetDatabaseName $restoredVcoreDbName -DeletionDate "2018-04-20 20:21:37.397Z" ` - -ResourceGroupName $deletedDb[0].ResourceGroupName -ServerName $deletedDb[0].ServerName -ResourceId $deletedDb[0].ResourceId -Edition "GeneralPurpose" ` - -VCore 2 -ComputeGeneration "Gen4" + # restore to a vcore db + Restore-AzSqlDatabase -FromDeletedDatabaseBackup -TargetDatabaseName $restoredVcoreDbName -DeletionDate $deletedDb[0].DeletionDate -ResourceGroupName $deletedDb[0].ResourceGroupName -ServerName $deletedDb[0].ServerName -ResourceId $deletedDb[0].ResourceId -Edition "GeneralPurpose" -VCore 2 -ComputeGeneration "Gen5" + } + finally + { + Remove-ResourceGroupForTest $rg + } } function Test-RestorePointInTimeBackup @@ -125,10 +136,10 @@ function Test-RestorePointInTimeBackup # TODO update for LTRv2 backup function Test-RestoreLongTermRetentionBackup { - $location = "North Europe" + $location = "West Central US" $serverVersion = "12.0" - $rg = Get-AzResourceGroup -ResourceGroupName hchung - $server = Get-AzSqlServer -ServerName hchung-testsvr -ResourceGroupName $rg.ResourceGroupName + $rg = Get-AzResourceGroup -ResourceGroupName "brandong-test" + $server = Get-AzSqlServer -ServerName "brandong-ltr-test" -ResourceGroupName $rg.ResourceGroupName $restoredDbName = "powershell_db_restored_ltr" $recoveryPointResourceId = "/subscriptions/e5e8af86-2d93-4ebd-8eb5-3b0184daa9de/resourceGroups/hchung/providers/Microsoft.RecoveryServices/vaults/hchung-testvault/backupFabrics/Azure/protectionContainers/AzureSqlContainer;Sql;hchung;hchung-testsvr/protectedItems/AzureSqlDb;dsName;hchung-testdb;fbf5641f-77f8-43b7-8fd7-5338ec293213/recoveryPoints/1731556986347" @@ -233,10 +244,10 @@ function Test-LongTermRetentionV2 # Set-AzSqlDatabaseLongTermRetentionPolicy -ResourceGroup $resourceGroup -ServerName $serverName -DatabaseName $databaseName -WeeklyRetention P1W # Wait about 18 hours until it gets properly copied and you see the backup when run get backups, for example: # Get-AzSqlDatabaseLongTermRetentionBackup -Location $locationName -ServerName $serverName -DatabaeName $databaseName - $resourceGroup = "Default-SQL-WestCentralUS" - $locationName = "westcentralus" - $serverName = "trgrie-ltr-server" - $databaseName = "testdb2" + $resourceGroup = "brandong-test" + $locationName = "eastus" + $serverName = "brandong-ltr-test" + $databaseName = "testltr" $weeklyRetention1 = "P1W" $weeklyRetention2 = "P2W" $restoredDatabase = "testdb5" @@ -289,12 +300,12 @@ function Test-LongTermRetentionV2ResourceGroupBased # Set-AzSqlDatabaseLongTermRetentionPolicy -ResourceGroup $resourceGroup -ServerName $serverName -DatabaseName $databaseName -WeeklyRetention P1W # Wait about 18 hours until it gets properly copied and you see the backup when run get backups, for example: # Get-AzSqlDatabaseLongTermRetentionBackup -Location $locationName -ServerName $serverName -DatabaeName $databaseName -ResourceGroupName $resourceGroup - $resourceGroup = "brrg" - $locationName = "brazilsouth" - $serverName = "ltrtest3" - $databaseName = "mydb" + $resourceGroup = "brandong-test" + $locationName = "eastus" + $serverName = "brandong-ltr-test" + $databaseName = "testltr" $restoredDatabase = "mydb_restore" - $databaseWithRemovableBackup = "mydb"; + $databaseWithRemovableBackup = "testdb"; # Basic Get Tests $backups = Get-AzSqlDatabaseLongTermRetentionBackup -Location $locationName -ResourceGroupName $resourceGroup @@ -364,7 +375,7 @@ function Test-NewDatabaseRestorePoint # Create data warehouse database with all parameters. $databaseName = Get-DatabaseName $dwdb = New-AzSqlDatabase -ResourceGroupName $rg.ResourceGroupName -ServerName $server.ServerName -DatabaseName $databaseName ` - -Edition DataWarehouse -RequestedServiceObjectiveName DW100 + -Edition DataWarehouse -RequestedServiceObjectiveName DW100c New-AzSqlDatabaseRestorePoint -ResourceGroupName $rg.ResourceGroupName -ServerName $server.ServerName -DatabaseName $dwdb.DatabaseName -RestorePointLabel $label diff --git a/src/Sql/Sql.Test/ScenarioTests/DatabaseReplicationTests.cs b/src/Sql/Sql.Test/ScenarioTests/DatabaseReplicationTests.cs index 267749db793f..9cca98b5428e 100644 --- a/src/Sql/Sql.Test/ScenarioTests/DatabaseReplicationTests.cs +++ b/src/Sql/Sql.Test/ScenarioTests/DatabaseReplicationTests.cs @@ -83,5 +83,19 @@ public void TestFailoverSecondaryDatabase() { RunPowerShellTest("Test-FailoverSecondaryDatabase"); } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestCreateDatabaseCopyWithBackupStorageRedundancy() + { + RunPowerShellTest("Test-CreateDatabaseCopyWithBackupStorageRedundancy"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestCreateSecondaryDatabaseWithBackupStorageRedundancy() + { + RunPowerShellTest("Test-CreateSecondaryDatabaseWithBackupStorageRedundancy"); + } } } diff --git a/src/Sql/Sql.Test/ScenarioTests/DatabaseReplicationTests.ps1 b/src/Sql/Sql.Test/ScenarioTests/DatabaseReplicationTests.ps1 index 0f22b378cd93..c6682ed60a72 100644 --- a/src/Sql/Sql.Test/ScenarioTests/DatabaseReplicationTests.ps1 +++ b/src/Sql/Sql.Test/ScenarioTests/DatabaseReplicationTests.ps1 @@ -350,7 +350,6 @@ function Create-DatabaseForTest ($rg, $server, $edition = "Premium") New-AzSqlDatabase -ResourceGroupName $rg.ResourceGroupName -ServerName $server.ServerName -DatabaseName $databaseName -Edition $edition } - <# .SYNOPSIS Creates test database @@ -359,4 +358,69 @@ function Create-VcoreDatabaseForTest ($rg, $server, $numCores = 2, $licenseType { $databaseName = Get-DatabaseName New-AzSqlDatabase -ResourceGroupName $rg.ResourceGroupName -ServerName $server.ServerName -DatabaseName $databaseName -VCore $numCores -ComputeGeneration Gen5 -Edition GeneralPurpose -LicenseType $licenseType +} + +<# + .SYNOPSIS + Creates test database with BackupStorageRedundancy +#> +function Test-CreateDatabaseCopyWithBackupStorageRedundancy() +{ + # Setup + $location = "eastus" + $rg = Create-ResourceGroupForTest $location + $server = Create-ServerForTest $rg $location + $database = Create-DatabaseForTest $rg $server "Standard" + + $copyRg = Create-ResourceGroupForTest $location + $copyServer = Create-ServerForTest $copyRg $location + $copyDatabaseName = Get-DatabaseName + + try + { + # Create a local database copy + $dbLocalCopy = New-AzSqlDatabaseCopy -ResourceGroupName $rg.ResourceGroupName -ServerName $server.ServerName -DatabaseName $database.DatabaseName ` + -CopyDatabaseName $copyDatabaseName -BackupStorageRedundancy zone + + $newDb = Get-AzSqlDatabase -ResourceGroupName $dbLocalCopy.ResourceGroupName -ServerName $dbLocalCopy.ServerName -DatabaseName $copyDatabaseName + Assert-AreEqual "Zone" $newDb.BackupStorageRedundancy + + # Create a cross server copy + } + finally + { + Remove-ResourceGroupForTest $rg + Remove-ResourceGroupForTest $copyRg + } +} + +<# + .SYNOPSIS + Tests creating a secondary database +#> +function Test-CreateSecondaryDatabaseWithBackupStorageRedundancy() +{ + # Setup + $location = "westcentralus" + $rg = Create-ResourceGroupForTest $location + $server = Create-ServerForTest $rg $location + $database = Create-DatabaseForTest $rg $server + + $partRg = Create-ResourceGroupForTest $location + $partServer = Create-ServerForTest $partRg $location + + try + { + # Create Readable Secondary + $readSecondary = New-AzSqlDatabaseSecondary -ResourceGroupName $rg.ResourceGroupName -ServerName $server.ServerName -DatabaseName $database.DatabaseName ` + -PartnerResourceGroupName $partRg.ResourceGroupName -PartnerServerName $partServer.ServerName -AllowConnections All -BackupStorageRedundancy local + + $secondaryDb = Get-AzSqlDatabase -ResourceGroupName $readSecondary.PartnerResourceGroupName -ServerName $readSecondary.PartnerServerName -DatabaseName $readSecondary.DatabaseName + Assert-AreEqual $secondaryDb.BackupStorageRedundancy "Local" + } + finally + { + Remove-ResourceGroupForTest $rg + Remove-ResourceGroupForTest $partRg + } } \ No newline at end of file diff --git a/src/Sql/Sql.Test/ScenarioTests/ImportExportTests.cs b/src/Sql/Sql.Test/ScenarioTests/ImportExportTests.cs index 213c181cc842..ddb4e370e2b4 100644 --- a/src/Sql/Sql.Test/ScenarioTests/ImportExportTests.cs +++ b/src/Sql/Sql.Test/ScenarioTests/ImportExportTests.cs @@ -35,6 +35,13 @@ public void TestExportDatabase() RunPowerShellTest("Test-ExportDatabase"); } + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestExportDatabase_NetworkIsolation() + { + RunPowerShellTest("Test-ExportDatabaseNetworkIsolation"); + } + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] [Trait(Category.Sql, "Needs to be re-recorded")] @@ -42,5 +49,13 @@ public void TestImportNewDatabase() { RunPowerShellTest("Test-ImportNewDatabase"); } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + [Trait(Category.Sql, "Needs to be re-recorded")] + public void TestImportNewDatabase_NetworkIsolation() + { + RunPowerShellTest("Test-ImportNewDatabaseNetworkIsolation"); + } } } diff --git a/src/Sql/Sql.Test/ScenarioTests/ImportExportTests.ps1 b/src/Sql/Sql.Test/ScenarioTests/ImportExportTests.ps1 index 6d5af02abb81..d5ef0b67489a 100644 --- a/src/Sql/Sql.Test/ScenarioTests/ImportExportTests.ps1 +++ b/src/Sql/Sql.Test/ScenarioTests/ImportExportTests.ps1 @@ -25,9 +25,24 @@ function Test-ExportDatabase $createDatabase = $true $createFirewallRule = $true $operationName = "Export" - $succeeded = $true + $succeeded = $true + $useNetworkIsolation = $false + + Verify-ImportExport $testSuffix $createServer $createDatabase $createFirewallRule $operationName $succeeded $useNetworkIsolation +} + +function Test-ExportDatabaseNetworkIsolation +{ + # Setup + $testSuffix = 90070 + $createServer = $true + $createDatabase = $true + $createFirewallRule = $true + $operationName = "Export" + $succeeded = $true + $useNetworkIsolation = $true - Verify-ImportExport $testSuffix $createServer $createDatabase $createFirewallRule $operationName $succeeded + Verify-ImportExport $testSuffix $createServer $createDatabase $createFirewallRule $operationName $succeeded $useNetworkIsolation } function Test-ImportNewDatabase @@ -39,11 +54,26 @@ function Test-ImportNewDatabase $createFirewallRule = $true $operationName = "ImportNew" $succeeded = $true + $useNetworkIsolation = $false + + Verify-ImportExport $testSuffix $createServer $createDatabase $createFirewallRule $operationName $succeeded $useNetworkIsolation +} + +function Test-ImportNewDatabaseNetworkIsolation +{ + # Setup + $testSuffix = 90071 + $createServer = $true + $createDatabase = $false + $createFirewallRule = $true + $operationName = "ImportNew" + $succeeded = $true + $useNetworkIsolation = $true - Verify-ImportExport $testSuffix $createServer $createDatabase $createFirewallRule $operationName $succeeded + Verify-ImportExport $testSuffix $createServer $createDatabase $createFirewallRule $operationName $succeeded $useNetworkIsolation } - function Verify-ImportExport($testSuffix, $createServer, $createDatabase, $createFirewallRule, $operationName, $succeeded) + function Verify-ImportExport($testSuffix, $createServer, $createDatabase, $createFirewallRule, $operationName, $succeeded, $useNetworkIsolation) { # Setup $params = Get-SqlDatabaseImportExportTestEnvironmentParameters $testSuffix @@ -56,27 +86,44 @@ function Test-ImportNewDatabase Assert-NotNull $params.storageKey Assert-NotNull $params.importBacpacUri Assert-NotNull $params.exportBacpacUri + Assert-NotNull $params.storageResourceId $password = $params.password + $secureString = ($password | ConvertTo-SecureString -asPlainText -Force) - $credentials = new-object System.Management.Automation.PSCredential($params.userName, $secureString) + $credentials = new-object System.Management.Automation.PSCredential($params.userName, $secureString) + $rgname = $params.rgname + $serverName = $params.serverName + if($createServer -eq $true){ - $server = New-AzSqlServer -ResourceGroupName $params.rgname -ServerName $params.serverName -ServerVersion $params.version -Location $params.location -SqlAdministratorCredentials $credentials + $server = New-AzSqlServer -ResourceGroupName $rgname -ServerName $serverName -ServerVersion $params.version -Location $params.location -SqlAdministratorCredentials $credentials } if($createDatabase -eq $true){ - $standarddb = New-AzSqlDatabase -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName + $standarddb = New-AzSqlDatabase -ResourceGroupName $rgname -ServerName $serverName -DatabaseName $params.databaseName } if($createFirewallRule -eq $true){ - New-AzSqlServerFirewallRule -ResourceGroupName $params.rgname -ServerName $params.serverName -AllowAllAzureIPs + New-AzSqlServerFirewallRule -ResourceGroupName $rgname -ServerName $serverName -AllowAllAzureIPs } + $subscriptionId = (Get-AzContext).Subscription.Id + + $storageResourceId = $params.storageResourceId + $serverResourceId = "/subscriptions/${subscriptionId}/resourceGroups/${rgname}/providers/Microsoft.Sql/servers/${serverName}" + $operationStatusLink = "" - + if($operationName -eq $export){ - # Export database. - $exportResponse = New-AzSqlDatabaseExport -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -StorageKeyType $params.storageKeyType -StorageKey $params.storageKey -StorageUri $params.exportBacpacUri -AdministratorLogin $params.userName -AdministratorLoginPassword $secureString -AuthenticationType $params.authType + # Export database. + if ($useNetworkIsolation -eq $true) + { + $exportResponse = New-AzSqlDatabaseExport -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -StorageKeyType $params.storageKeyType -StorageKey $params.storageKey -StorageUri $params.exportBacpacUri -AdministratorLogin $params.userName -AdministratorLoginPassword $secureString -AuthenticationType $params.authType -UseNetworkIsolation $true -StorageAccountResourceIdForPrivateLink $storageResourceId -SqlServerResourceIdForPrivateLink $serverResourceId + } + else + { + $exportResponse = New-AzSqlDatabaseExport -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -StorageKeyType $params.storageKeyType -StorageKey $params.storageKey -StorageUri $params.exportBacpacUri -AdministratorLogin $params.userName -AdministratorLoginPassword $secureString -AuthenticationType $params.authType + } Write-Output "Assert-NotNull exportResponse" Assert-NotNull $exportResponse Write-Output (ConvertTo-Json $exportResponse) @@ -93,7 +140,15 @@ function Test-ImportNewDatabase } if($operationName -eq $importNew){ - $importResponse = New-AzSqlDatabaseImport -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -StorageKeyType $params.storageKeyType -StorageKey $params.storageKey -StorageUri $params.importBacpacUri -AdministratorLogin $params.userName -AdministratorLoginPassword $secureString -Edition $params.databaseEdition -ServiceObjectiveName $params.serviceObjectiveName -DatabaseMaxSizeBytes $params.databaseMaxSizeBytes -AuthenticationType $params.authType + if($useNetworkIsolation -eq $true) + { + $importResponse = New-AzSqlDatabaseImport -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -StorageKeyType $params.storageKeyType -StorageKey $params.storageKey -StorageUri $params.importBacpacUri -AdministratorLogin $params.userName -AdministratorLoginPassword $secureString -Edition $params.databaseEdition -ServiceObjectiveName $params.serviceObjectiveName -DatabaseMaxSizeBytes $params.databaseMaxSizeBytes -AuthenticationType $params.authType -UseNetworkIsolation $true -StorageAccountResourceIdForPrivateLink $storageResourceId -SqlServerResourceIdForPrivateLink $serverResourceId + } + else + { + $importResponse = New-AzSqlDatabaseImport -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -StorageKeyType $params.storageKeyType -StorageKey $params.storageKey -StorageUri $params.importBacpacUri -AdministratorLogin $params.userName -AdministratorLoginPassword $secureString -Edition $params.databaseEdition -ServiceObjectiveName $params.serviceObjectiveName -DatabaseMaxSizeBytes $params.databaseMaxSizeBytes -AuthenticationType $params.authType + } + Write-Output "Assert-NotNull importResponse" Assert-NotNull $importResponse Write-Output (ConvertTo-Json $importResponse) @@ -116,4 +171,4 @@ function Test-ImportNewDatabase { Remove-ResourceGroupForTest $rg } -} \ No newline at end of file +} diff --git a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseBackupTests/TestRestoreDeletedDatabaseBackup.json b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseBackupTests/TestRestoreDeletedDatabaseBackup.json index 356d94c02035..11e6f469bdec 100644 --- a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseBackupTests/TestRestoreDeletedDatabaseBackup.json +++ b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseBackupTests/TestRestoreDeletedDatabaseBackup.json @@ -1,40 +1,48 @@ { "Entries": [ { - "RequestUri": "/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/resourcegroups/payi-test?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY3YzA1NWMtNjMxMC00Mzc0LTk4NTItMTBlZjcxY2U1Zjg1L3Jlc291cmNlZ3JvdXBzL3BheWktdGVzdD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourcegroups/ps6306?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlZ3JvdXBzL3BzNjMwNj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { + "x-ms-client-request-id": [ + "5679ce90-b78d-4fd2-9e32-0c7390d2382d" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/resourceGroups/payi-test\",\r\n \"name\": \"payi-test\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "178" + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "35" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-request-id": [ - "e1fb28c2-6f31-4b12-af7d-40085e015f2b" + "a0a17c4f-a8b6-46e8-82eb-7eea00420850" ], "x-ms-correlation-request-id": [ - "e1fb28c2-6f31-4b12-af7d-40085e015f2b" + "a0a17c4f-a8b6-46e8-82eb-7eea00420850" ], "x-ms-routing-request-id": [ - "WESTUS2:20180427T204353Z:e1fb28c2-6f31-4b12-af7d-40085e015f2b" + "BRAZILUS:20200916T005258Z:a0a17c4f-a8b6-46e8-82eb-7eea00420850" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -42,38 +50,68 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Fri, 27 Apr 2018 20:43:53 GMT" + "Wed, 16 Sep 2020 00:52:58 GMT" + ], + "Content-Length": [ + "172" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 200 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306\",\r\n \"name\": \"ps6306\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/resourceGroups/payi-test/providers/Microsoft.Sql/servers/payi-testsvr?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY3YzA1NWMtNjMxMC00Mzc0LTk4NTItMTBlZjcxY2U1Zjg1L3Jlc291cmNlR3JvdXBzL3BheWktdGVzdC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BheWktdGVzdHN2cj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/servers/ps4341?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNDM0MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e88200a2-0115-4bd4-9941-a4e170c72f15" + "1e14ee20-af93-431e-9fa0-6a531c20ec15" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.14.0.0" + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"cloudsa\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"payi-testsvr.database.windows.net\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/resourceGroups/payi-test/providers/Microsoft.Sql/servers/payi-testsvr\",\r\n \"name\": \"payi-testsvr\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "367" + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "96098fcc-e3b3-4435-aab7-62fe7db0034a" + ], + "x-ms-correlation-request-id": [ + "96098fcc-e3b3-4435-aab7-62fe7db0034a" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200916T005259Z:96098fcc-e3b3-4435-aab7-62fe7db0034a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Sep 2020 00:52:58 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -81,20 +119,47 @@ "Expires": [ "-1" ], + "Content-Length": [ + "206" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps4341' under resource group 'ps6306' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/servers/ps4341?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNDM0MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "e2089456-8ec3-4c71-8c54-6ab5c9a76c98" + "69148caf-0ffe-483c-8207-c03f498d97fa" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "11961" ], "x-ms-correlation-request-id": [ - "af2a4e4d-a6d3-47b5-a95a-cfaa5846b9b8" + "e62baa1f-6041-42c6-9fff-86058d483dbe" ], "x-ms-routing-request-id": [ - "WESTUS2:20180427T204354Z:af2a4e4d-a6d3-47b5-a95a-cfaa5846b9b8" + "BRAZILUS:20200916T005348Z:e62baa1f-6041-42c6-9fff-86058d483dbe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -102,62 +167,62 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Fri, 27 Apr 2018 20:43:54 GMT" + "Wed, 16 Sep 2020 00:53:48 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "415" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps4341.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/servers/ps4341\",\r\n \"name\": \"ps4341\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/resourceGroups/payi-test/providers/Microsoft.Sql/servers/payi-testsvr?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY3YzA1NWMtNjMxMC00Mzc0LTk4NTItMTBlZjcxY2U1Zjg1L3Jlc291cmNlR3JvdXBzL3BheWktdGVzdC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BheWktdGVzdHN2cj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/servers/ps4341?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNDM0MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "593c8a9d-8443-4820-9b51-c22686729a38" + "d6dd1294-bcca-4c3c-bde4-693816221654" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.14.0.0" + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"cloudsa\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"payi-testsvr.database.windows.net\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/resourceGroups/payi-test/providers/Microsoft.Sql/servers/payi-testsvr\",\r\n \"name\": \"payi-testsvr\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "367" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "2d4e5ba1-3887-4042-8098-7467cf13d509" + "6b2c66d6-a7b9-4d55-aa10-2b3afa81b9d4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "11959" ], "x-ms-correlation-request-id": [ - "1e07e4f7-af4c-4211-8fbf-7d4d72e432a7" + "ed6d2d08-bcbf-4d4e-a942-3c5a7e59d311" ], "x-ms-routing-request-id": [ - "WESTUS2:20180427T204357Z:1e07e4f7-af4c-4211-8fbf-7d4d72e432a7" + "BRAZILUS:20200916T005348Z:ed6d2d08-bcbf-4d4e-a942-3c5a7e59d311" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -165,62 +230,62 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Fri, 27 Apr 2018 20:43:57 GMT" + "Wed, 16 Sep 2020 00:53:48 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "415" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps4341.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/servers/ps4341\",\r\n \"name\": \"ps4341\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/resourceGroups/payi-test/providers/Microsoft.Sql/servers/payi-testsvr?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY3YzA1NWMtNjMxMC00Mzc0LTk4NTItMTBlZjcxY2U1Zjg1L3Jlc291cmNlR3JvdXBzL3BheWktdGVzdC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BheWktdGVzdHN2cj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/servers/ps4341?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNDM0MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "64cfbbe0-e0b0-4252-8d30-be1c0584c320" + "0e275fd4-f5d1-433b-b0fb-9481095b0d9d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.14.0.0" + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"cloudsa\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"payi-testsvr.database.windows.net\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/resourceGroups/payi-test/providers/Microsoft.Sql/servers/payi-testsvr\",\r\n \"name\": \"payi-testsvr\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "367" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "c46b250d-ddfe-41e1-aa4d-0242b9267f6b" + "dc9f2a46-f978-4888-92ea-d7aac6a72c92" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "11980" ], "x-ms-correlation-request-id": [ - "409d64ea-4e15-4607-936d-b28402511f00" + "c006f20d-1160-4e68-9673-f86afbd9a465" ], "x-ms-routing-request-id": [ - "WESTUS2:20180427T205110Z:409d64ea-4e15-4607-936d-b28402511f00" + "BRAZILUS:20200916T011923Z:c006f20d-1160-4e68-9673-f86afbd9a465" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -228,125 +293,140 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Fri, 27 Apr 2018 20:51:10 GMT" + "Wed, 16 Sep 2020 01:19:23 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "415" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps4341.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/servers/ps4341\",\r\n \"name\": \"ps4341\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/resourceGroups/payi-test/providers/Microsoft.Sql/servers/payi-testsvr/restorabledroppeddatabases?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY3YzA1NWMtNjMxMC00Mzc0LTk4NTItMTBlZjcxY2U1Zjg1L3Jlc291cmNlR3JvdXBzL3BheWktdGVzdC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BheWktdGVzdHN2ci9yZXN0b3JhYmxlZHJvcHBlZGRhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/servers/ps4341?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNDM0MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "57be23d7-f007-4861-8906-5f16ff5ade6d" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/4.4.0.0" + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/resourceGroups/payi-test/providers/Microsoft.Sql/servers/payi-testsvr/restorableDroppedDatabases/db1,131691520943870000\",\r\n \"name\": \"db1,131691520943870000\",\r\n \"type\": \"Microsoft.Sql/servers/restorableDroppedDatabases\",\r\n \"location\": \"Southeast Asia\",\r\n \"properties\": {\r\n \"databaseName\": \"db1\",\r\n \"edition\": \"GeneralPurpose\",\r\n \"maxSizeBytes\": \"34359738368\",\r\n \"serviceLevelObjective\": \"ElasticPool\",\r\n \"elasticPoolName\": null,\r\n \"creationDate\": \"2018-04-24T23:45:11.627Z\",\r\n \"deletionDate\": \"2018-04-25T17:48:14.387Z\",\r\n \"earliestRestoreDate\": \"2018-04-25T00:15:39.893Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/resourceGroups/payi-test/providers/Microsoft.Sql/servers/payi-testsvr/restorableDroppedDatabases/db2,131690780161130000\",\r\n \"name\": \"db2,131690780161130000\",\r\n \"type\": \"Microsoft.Sql/servers/restorableDroppedDatabases\",\r\n \"location\": \"Southeast Asia\",\r\n \"properties\": {\r\n \"databaseName\": \"db2\",\r\n \"edition\": \"BusinessCritical\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"serviceLevelObjective\": \"ElasticPool\",\r\n \"elasticPoolName\": null,\r\n \"creationDate\": \"2018-04-24T20:17:51.353Z\",\r\n \"deletionDate\": \"2018-04-24T21:13:36.113Z\",\r\n \"earliestRestoreDate\": \"2018-04-24T20:48:39.41Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/resourceGroups/payi-test/providers/Microsoft.Sql/servers/payi-testsvr/restorableDroppedDatabases/powershell_db_georestored,131687292973970000\",\r\n \"name\": \"powershell_db_georestored,131687292973970000\",\r\n \"type\": \"Microsoft.Sql/servers/restorableDroppedDatabases\",\r\n \"location\": \"Southeast Asia\",\r\n \"properties\": {\r\n \"databaseName\": \"powershell_db_georestored\",\r\n \"edition\": \"Standard\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"elasticPoolName\": null,\r\n \"creationDate\": \"2018-04-20T18:58:03.6Z\",\r\n \"deletionDate\": \"2018-04-20T20:21:37.397Z\",\r\n \"earliestRestoreDate\": \"2018-04-20T19:42:36.003Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/resourceGroups/payi-test/providers/Microsoft.Sql/servers/payi-testsvr/restorableDroppedDatabases/powershell_db_georestored,131691667598300000\",\r\n \"name\": \"powershell_db_georestored,131691667598300000\",\r\n \"type\": \"Microsoft.Sql/servers/restorableDroppedDatabases\",\r\n \"location\": \"Southeast Asia\",\r\n \"properties\": {\r\n \"databaseName\": \"powershell_db_georestored\",\r\n \"edition\": \"Standard\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"elasticPoolName\": null,\r\n \"creationDate\": \"2018-04-20T22:03:31.91Z\",\r\n \"deletionDate\": \"2018-04-25T21:52:39.83Z\",\r\n \"earliestRestoreDate\": \"2018-04-20T22:45:37.133Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/resourceGroups/payi-test/providers/Microsoft.Sql/servers/payi-testsvr/restorableDroppedDatabases/powershell_db_restored,131691667305500000\",\r\n \"name\": \"powershell_db_restored,131691667305500000\",\r\n \"type\": \"Microsoft.Sql/servers/restorableDroppedDatabases\",\r\n \"location\": \"Southeast Asia\",\r\n \"properties\": {\r\n \"databaseName\": \"powershell_db_restored\",\r\n \"edition\": \"Standard\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"elasticPoolName\": null,\r\n \"creationDate\": \"2018-04-19T18:45:57.3Z\",\r\n \"deletionDate\": \"2018-04-25T21:52:10.55Z\",\r\n \"earliestRestoreDate\": \"2018-04-19T19:24:06.56Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/resourceGroups/payi-test/providers/Microsoft.Sql/servers/payi-testsvr/restorableDroppedDatabases/powershell_db_restored,131692565994800000\",\r\n \"name\": \"powershell_db_restored,131692565994800000\",\r\n \"type\": \"Microsoft.Sql/servers/restorableDroppedDatabases\",\r\n \"location\": \"Southeast Asia\",\r\n \"properties\": {\r\n \"databaseName\": \"powershell_db_restored\",\r\n \"edition\": \"Standard\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"serviceLevelObjective\": \"S2\",\r\n \"elasticPoolName\": null,\r\n \"creationDate\": \"2018-04-26T21:13:49.16Z\",\r\n \"deletionDate\": \"2018-04-26T22:49:59.48Z\",\r\n \"earliestRestoreDate\": \"2018-04-26T21:52:19.19Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/resourceGroups/payi-test/providers/Microsoft.Sql/servers/payi-testsvr/restorableDroppedDatabases/powershell_db_restored_vcore,131693241860530000\",\r\n \"name\": \"powershell_db_restored_vcore,131693241860530000\",\r\n \"type\": \"Microsoft.Sql/servers/restorableDroppedDatabases\",\r\n \"location\": \"Southeast Asia\",\r\n \"properties\": {\r\n \"databaseName\": \"powershell_db_restored_vcore\",\r\n \"edition\": \"GeneralPurpose\",\r\n \"maxSizeBytes\": \"34359738368\",\r\n \"serviceLevelObjective\": \"ElasticPool\",\r\n \"elasticPoolName\": null,\r\n \"creationDate\": \"2018-04-27T00:22:38.363Z\",\r\n \"deletionDate\": \"2018-04-27T17:36:26.053Z\",\r\n \"earliestRestoreDate\": \"2018-04-27T00:55:20.75Z\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "4361" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + "Pragma": [ + "no-cache" ], "x-ms-request-id": [ - "d57c1c5d-87fc-43db-ad48-1f7f97046c6e" - ], - "X-Content-Type-Options": [ - "nosniff" + "5ef8440e-a7c0-4cb4-a0cb-d6ee84da67b0" ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "11949" ], "x-ms-correlation-request-id": [ - "109a2786-426c-4511-9921-898b8c1a097e" + "96d6b56f-ccf8-4b85-a0ac-3a007f66dede" ], "x-ms-routing-request-id": [ - "WESTUS2:20180427T204356Z:109a2786-426c-4511-9921-898b8c1a097e" + "BRAZILUS:20200916T012644Z:96d6b56f-ccf8-4b85-a0ac-3a007f66dede" ], - "Cache-Control": [ - "no-store, no-cache" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Fri, 27 Apr 2018 20:43:56 GMT" + "Wed, 16 Sep 2020 01:26:44 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "415" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps4341.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/servers/ps4341\",\r\n \"name\": \"ps4341\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/resourceGroups/payi-test/providers/Microsoft.Sql/servers/payi-testsvr/databases/powershell_db_deleted?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY3YzA1NWMtNjMxMC00Mzc0LTk4NTItMTBlZjcxY2U1Zjg1L3Jlc291cmNlR3JvdXBzL3BheWktdGVzdC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BheWktdGVzdHN2ci9kYXRhYmFzZXMvcG93ZXJzaGVsbF9kYl9kZWxldGVkP2FwaS12ZXJzaW9uPTIwMTctMTAtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/servers/ps4341?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNDM0MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"createMode\": \"Restore\",\r\n \"restorePointInTime\": \"2018-04-20T20:21:37.397Z\",\r\n \"recoveryServicesRecoveryPointId\": \"/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/resourceGroups/payi-test/providers/Microsoft.Sql/servers/payi-testsvr/restorableDroppedDatabases/powershell_db_georestored,131687292973970000\",\r\n \"restorableDroppedDatabaseId\": \"/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/resourceGroups/payi-test/providers/Microsoft.Sql/servers/payi-testsvr/restorableDroppedDatabases/powershell_db_georestored,131687292973970000\"\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "614" - ], "x-ms-client-request-id": [ - "c2dbc304-b4e1-4bfc-b70e-a9d1adc3c56d" + "a50de3ba-e921-4727-8f94-261f49744463" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.14.0.0" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"CreateRestoreRequest\",\r\n \"startTime\": \"2018-04-27T20:44:00.77Z\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "74" + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "157" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://brazilus.management.azure.com/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/serverOperationResults/f3003d81-aa61-41e8-978f-90f894f1fac1?api-version=2019-06-01-preview" + ], "Retry-After": [ - "15" + "1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/0f21027c-f3bc-4f36-96f3-8fb7ee025407?api-version=2017-10-01-preview" + "https://brazilus.management.azure.com/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/f3003d81-aa61-41e8-978f-90f894f1fac1?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "39dccb31-adac-4c6d-beac-fea07ae5c962" + "f3003d81-aa61-41e8-978f-90f894f1fac1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1194" ], "x-ms-correlation-request-id": [ - "692ef283-4151-48f3-8be3-313e9e3ea25a" + "f9a43f0b-5d8a-414e-a822-20249aa257cf" ], "x-ms-routing-request-id": [ - "WESTUS2:20180427T204400Z:692ef283-4151-48f3-8be3-313e9e3ea25a" + "BRAZILUS:20200916T005302Z:f9a43f0b-5d8a-414e-a822-20249aa257cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -354,62 +434,59 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Fri, 27 Apr 2018 20:44:00 GMT" + "Wed, 16 Sep 2020 00:53:01 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/providers/Microsoft.Sql/locations/southeastasia/databaseOperationResults/0f21027c-f3bc-4f36-96f3-8fb7ee025407?api-version=2017-10-01-preview" + "Content-Length": [ + "74" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-16T00:53:01.883Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/0f21027c-f3bc-4f36-96f3-8fb7ee025407?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY3YzA1NWMtNjMxMC00Mzc0LTk4NTItMTBlZjcxY2U1Zjg1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8wZjIxMDI3Yy1mM2JjLTRmMzYtOTZmMy04ZmI3ZWUwMjU0MDc/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/f3003d81-aa61-41e8-978f-90f894f1fac1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2YzMDAzZDgxLWFhNjEtNDFlOC05NzhmLTkwZjg5NGYxZmFjMT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.14.0.0" + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, - "ResponseBody": "{\r\n \"name\": \"0f21027c-f3bc-4f36-96f3-8fb7ee025407\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-04-27T20:44:00.77Z\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "107" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ - "15" + "1" ], "x-ms-request-id": [ - "b9b4f6d1-324d-4ae7-ab80-361691f69595" + "c7864a0c-a48a-4785-95b1-79c5c77976b2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "11968" ], "x-ms-correlation-request-id": [ - "34df3a2c-13c6-4403-b765-51bdf2069a42" + "8020745c-4d71-4607-a45d-6aa54dc1876f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180427T204416Z:34df3a2c-13c6-4403-b765-51bdf2069a42" + "BRAZILUS:20200916T005303Z:8020745c-4d71-4607-a45d-6aa54dc1876f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -417,59 +494,59 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Fri, 27 Apr 2018 20:44:15 GMT" + "Wed, 16 Sep 2020 00:53:03 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"f3003d81-aa61-41e8-978f-90f894f1fac1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T00:53:01.883Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/0f21027c-f3bc-4f36-96f3-8fb7ee025407?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY3YzA1NWMtNjMxMC00Mzc0LTk4NTItMTBlZjcxY2U1Zjg1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8wZjIxMDI3Yy1mM2JjLTRmMzYtOTZmMy04ZmI3ZWUwMjU0MDc/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/f3003d81-aa61-41e8-978f-90f894f1fac1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2YzMDAzZDgxLWFhNjEtNDFlOC05NzhmLTkwZjg5NGYxZmFjMT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.14.0.0" + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, - "ResponseBody": "{\r\n \"name\": \"0f21027c-f3bc-4f36-96f3-8fb7ee025407\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-04-27T20:44:00.77Z\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "107" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ - "15" + "1" ], "x-ms-request-id": [ - "ec7d570e-2738-4056-be77-6092e62c4624" + "63b820f6-3759-4706-bafc-eb0e811a3b0b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "11967" ], "x-ms-correlation-request-id": [ - "16087765-0433-4d83-9613-bce725c4d064" + "ab8c42de-38ec-4d20-8e8f-d73697e8fcb9" ], "x-ms-routing-request-id": [ - "WESTUS2:20180427T204431Z:16087765-0433-4d83-9613-bce725c4d064" + "BRAZILUS:20200916T005304Z:ab8c42de-38ec-4d20-8e8f-d73697e8fcb9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -477,33 +554,2664 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Fri, 27 Apr 2018 20:44:30 GMT" + "Wed, 16 Sep 2020 00:53:04 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"f3003d81-aa61-41e8-978f-90f894f1fac1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T00:53:01.883Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/f3003d81-aa61-41e8-978f-90f894f1fac1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2YzMDAzZDgxLWFhNjEtNDFlOC05NzhmLTkwZjg5NGYxZmFjMT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "6c067e7b-4a57-4916-a156-95409ac901c1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-correlation-request-id": [ + "93205d81-ff06-46fb-950f-0e6e3b078d98" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200916T005305Z:93205d81-ff06-46fb-950f-0e6e3b078d98" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Sep 2020 00:53:05 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"f3003d81-aa61-41e8-978f-90f894f1fac1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T00:53:01.883Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/f3003d81-aa61-41e8-978f-90f894f1fac1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2YzMDAzZDgxLWFhNjEtNDFlOC05NzhmLTkwZjg5NGYxZmFjMT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "42e79698-2a2c-4fe9-8f85-be10c8e13092" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "x-ms-correlation-request-id": [ + "8f8979ea-4273-48fb-a42a-544115c4e9d0" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200916T005306Z:8f8979ea-4273-48fb-a42a-544115c4e9d0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Sep 2020 00:53:06 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"f3003d81-aa61-41e8-978f-90f894f1fac1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T00:53:01.883Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/f3003d81-aa61-41e8-978f-90f894f1fac1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2YzMDAzZDgxLWFhNjEtNDFlOC05NzhmLTkwZjg5NGYxZmFjMT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "3eb7e992-86d5-4df4-b272-7e5604335e60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], + "x-ms-correlation-request-id": [ + "5a2f76be-3e3d-4019-80ae-16a86ff7365e" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200916T005307Z:5a2f76be-3e3d-4019-80ae-16a86ff7365e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Sep 2020 00:53:07 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"f3003d81-aa61-41e8-978f-90f894f1fac1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T00:53:01.883Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/f3003d81-aa61-41e8-978f-90f894f1fac1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2YzMDAzZDgxLWFhNjEtNDFlOC05NzhmLTkwZjg5NGYxZmFjMT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "bf02296e-cb18-49ec-bc5c-f5e61b5fdebd" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" + ], + "x-ms-correlation-request-id": [ + "2709c4d0-140e-4468-834b-86378da95617" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200916T005328Z:2709c4d0-140e-4468-834b-86378da95617" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Sep 2020 00:53:27 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"f3003d81-aa61-41e8-978f-90f894f1fac1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T00:53:01.883Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/f3003d81-aa61-41e8-978f-90f894f1fac1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2YzMDAzZDgxLWFhNjEtNDFlOC05NzhmLTkwZjg5NGYxZmFjMT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "99192d25-c006-48b4-b872-66805a827cd0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], + "x-ms-correlation-request-id": [ + "6e13c234-820e-4293-8877-d7f4b0d67e65" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200916T005348Z:6e13c234-820e-4293-8877-d7f4b0d67e65" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Sep 2020 00:53:48 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"f3003d81-aa61-41e8-978f-90f894f1fac1\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-16T00:53:01.883Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/servers/ps4341/databases/ps6031?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNDM0MS9kYXRhYmFzZXMvcHM2MDMxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c54c884d-54aa-4fd9-9ab4-bfde25fba3ad" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "1d7509c1-1018-4b33-a2f4-3d17e8a73a81" + ], + "x-ms-correlation-request-id": [ + "1d7509c1-1018-4b33-a2f4-3d17e8a73a81" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200916T005348Z:1d7509c1-1018-4b33-a2f4-3d17e8a73a81" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Sep 2020 00:53:48 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "223" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps4341/databases/ps6031' under resource group 'ps6306' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/servers/ps4341/databases/ps6031?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNDM0MS9kYXRhYmFzZXMvcHM2MDMxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5ccbb597-b394-4bdd-87a5-5f3c6200edf3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11955" + ], + "x-ms-correlation-request-id": [ + "1c9cf08a-02e6-475b-92fe-79f477579285" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200916T005435Z:1c9cf08a-02e6-475b-92fe-79f477579285" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Sep 2020 00:54:35 GMT" + ], + "Content-Length": [ + "983" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"7dbc2487-2623-4e38-90ae-ff08c1b48b1a\",\r\n \"creationDate\": \"2020-09-16T00:54:22.71Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 10307502080,\r\n \"earliestRestoreDate\": \"2020-09-16T01:24:22.71Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/servers/ps4341/databases/ps6031\",\r\n \"name\": \"ps6031\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/servers/ps4341/databases/ps6031?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNDM0MS9kYXRhYmFzZXMvcHM2MDMxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fcba8af0-91a3-4dd8-a5a9-71cc1dfcab09" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "77fcb1dc-fad6-477d-97a8-e9a346b65f35" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "d9109518-e1d9-443f-97ca-c19eb0b21d5d" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200916T010436Z:d9109518-e1d9-443f-97ca-c19eb0b21d5d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Sep 2020 01:04:36 GMT" + ], + "Content-Length": [ + "980" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"7dbc2487-2623-4e38-90ae-ff08c1b48b1a\",\r\n \"creationDate\": \"2020-09-16T00:54:22.71Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 10307502080,\r\n \"earliestRestoreDate\": \"2020-09-16T00:56:24Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/servers/ps4341/databases/ps6031\",\r\n \"name\": \"ps6031\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/servers/ps4341/databases/ps6031?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNDM0MS9kYXRhYmFzZXMvcHM2MDMxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5_2\",\r\n \"tier\": \"GeneralPurpose\"\r\n },\r\n \"properties\": {\r\n \"maxSizeBytes\": 0,\r\n \"readScale\": \"\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9c242984-9f2e-434c-968b-5217e4127ab0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "179" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://brazilus.management.azure.com/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseOperationResults/c5e6d3b5-6a93-4b2f-9d36-8e20c218b7ca?api-version=2019-06-01-preview" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://brazilus.management.azure.com/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/c5e6d3b5-6a93-4b2f-9d36-8e20c218b7ca?api-version=2019-06-01-preview" + ], + "x-ms-request-id": [ + "c5e6d3b5-6a93-4b2f-9d36-8e20c218b7ca" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "78655157-6a6a-44d4-af42-db3f641fe12f" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200916T005350Z:78655157-6a6a-44d4-af42-db3f641fe12f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Sep 2020 00:53:49 GMT" + ], + "Content-Length": [ + "75" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2020-09-16T00:53:49.82Z\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/c5e6d3b5-6a93-4b2f-9d36-8e20c218b7ca?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYzVlNmQzYjUtNmE5My00YjJmLTlkMzYtOGUyMGMyMThiN2NhP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "6d04aed0-c99a-46f2-a548-6c7a520a33a5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11958" + ], + "x-ms-correlation-request-id": [ + "6d785c87-1aac-4bfc-a19c-003d79ce8b33" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200916T005405Z:6d785c87-1aac-4bfc-a19c-003d79ce8b33" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Sep 2020 00:54:04 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"c5e6d3b5-6a93-4b2f-9d36-8e20c218b7ca\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T00:53:49.82Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/c5e6d3b5-6a93-4b2f-9d36-8e20c218b7ca?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYzVlNmQzYjUtNmE5My00YjJmLTlkMzYtOGUyMGMyMThiN2NhP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "17144c96-f024-4314-8ba2-86643939b738" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11957" + ], + "x-ms-correlation-request-id": [ + "6020ddeb-b0d3-4432-894f-1db30efa7302" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200916T005420Z:6020ddeb-b0d3-4432-894f-1db30efa7302" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Sep 2020 00:54:20 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"c5e6d3b5-6a93-4b2f-9d36-8e20c218b7ca\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T00:53:49.82Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/c5e6d3b5-6a93-4b2f-9d36-8e20c218b7ca?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYzVlNmQzYjUtNmE5My00YjJmLTlkMzYtOGUyMGMyMThiN2NhP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "e08a15c7-29a0-437c-a040-b6ca4119923b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11956" + ], + "x-ms-correlation-request-id": [ + "09651ce9-7229-427c-91e5-74ba07bd07c9" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200916T005435Z:09651ce9-7229-427c-91e5-74ba07bd07c9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Sep 2020 00:54:34 GMT" + ], + "Content-Length": [ + "106" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"c5e6d3b5-6a93-4b2f-9d36-8e20c218b7ca\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-16T00:53:49.82Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/servers/ps4341/databases/ps6031?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNDM0MS9kYXRhYmFzZXMvcHM2MDMxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1e634c38-507d-4f92-b001-ee78ecfb51f5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://brazilus.management.azure.com/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseOperationResults/324df56e-8f86-499d-b702-3bf661c49636?api-version=2019-06-01-preview" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://brazilus.management.azure.com/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/324df56e-8f86-499d-b702-3bf661c49636?api-version=2019-06-01-preview" + ], + "x-ms-request-id": [ + "324df56e-8f86-499d-b702-3bf661c49636" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "dc226183-9ae7-4ab5-b979-4dc7c66d55ec" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200916T010437Z:dc226183-9ae7-4ab5-b979-4dc7c66d55ec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Sep 2020 01:04:36 GMT" + ], + "Content-Length": [ + "73" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"DropLogicalDatabase\",\r\n \"startTime\": \"2020-09-16T01:04:36.94Z\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/324df56e-8f86-499d-b702-3bf661c49636?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMzI0ZGY1NmUtOGY4Ni00OTlkLWI3MDItM2JmNjYxYzQ5NjM2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "c31acb17-45c5-41bd-ad72-cbddfad06cb6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "95042813-f6ff-40f0-a3ad-79e627cc7ad5" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200916T010452Z:95042813-f6ff-40f0-a3ad-79e627cc7ad5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Sep 2020 01:04:51 GMT" + ], + "Content-Length": [ + "106" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"324df56e-8f86-499d-b702-3bf661c49636\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-16T01:04:36.94Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseOperationResults/324df56e-8f86-499d-b702-3bf661c49636?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZU9wZXJhdGlvblJlc3VsdHMvMzI0ZGY1NmUtOGY4Ni00OTlkLWI3MDItM2JmNjYxYzQ5NjM2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d8669fe9-9681-4839-931b-cd99788de829" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "4745284a-1e19-438d-b6fd-318890d1ecdf" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200916T010452Z:4745284a-1e19-438d-b6fd-318890d1ecdf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Sep 2020 01:04:51 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/servers/ps4341/restorabledroppeddatabases?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNDM0MS9yZXN0b3JhYmxlZHJvcHBlZGRhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "x-ms-request-id": [ + "5df15900-e3e3-47f4-9175-9e5756cfdc4f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-correlation-request-id": [ + "07cf6c1e-9aad-4616-bf17-b8584fec5d0c" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200916T011900Z:07cf6c1e-9aad-4616-bf17-b8584fec5d0c" + ], + "Date": [ + "Wed, 16 Sep 2020 01:19:00 GMT" + ], + "Content-Length": [ + "597" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/servers/ps4341/restorableDroppedDatabases/ps6031,132446918780930000\",\r\n \"name\": \"ps6031,132446918780930000\",\r\n \"type\": \"Microsoft.Sql/servers/restorableDroppedDatabases\",\r\n \"location\": \"West Central US\",\r\n \"properties\": {\r\n \"databaseName\": \"ps6031\",\r\n \"edition\": \"GeneralPurpose\",\r\n \"maxSizeBytes\": \"34359738368\",\r\n \"serviceLevelObjective\": \"SQLDB_GP_Gen5_2\",\r\n \"elasticPoolName\": null,\r\n \"creationDate\": \"2020-09-16T00:53:50.053Z\",\r\n \"deletionDate\": \"2020-09-16T01:04:38.093Z\",\r\n \"earliestRestoreDate\": \"2020-09-16T00:56:24Z\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/servers/ps4341/restorabledroppeddatabases?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNDM0MS9yZXN0b3JhYmxlZHJvcHBlZGRhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "x-ms-request-id": [ + "111d05e8-450d-423d-8165-a960b6581851" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-correlation-request-id": [ + "2c613ea4-153f-4b29-8b71-5bdac75ad564" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200916T011900Z:2c613ea4-153f-4b29-8b71-5bdac75ad564" + ], + "Date": [ + "Wed, 16 Sep 2020 01:19:00 GMT" + ], + "Content-Length": [ + "597" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/servers/ps4341/restorableDroppedDatabases/ps6031,132446918780930000\",\r\n \"name\": \"ps6031,132446918780930000\",\r\n \"type\": \"Microsoft.Sql/servers/restorableDroppedDatabases\",\r\n \"location\": \"West Central US\",\r\n \"properties\": {\r\n \"databaseName\": \"ps6031\",\r\n \"edition\": \"GeneralPurpose\",\r\n \"maxSizeBytes\": \"34359738368\",\r\n \"serviceLevelObjective\": \"SQLDB_GP_Gen5_2\",\r\n \"elasticPoolName\": null,\r\n \"creationDate\": \"2020-09-16T00:53:50.053Z\",\r\n \"deletionDate\": \"2020-09-16T01:04:38.093Z\",\r\n \"earliestRestoreDate\": \"2020-09-16T00:56:24Z\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/servers/ps4341/restorabledroppeddatabases?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNDM0MS9yZXN0b3JhYmxlZHJvcHBlZGRhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "x-ms-request-id": [ + "b1711859-9019-4713-9876-8c6c82f09996" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "20a1c323-364b-4e97-8ac9-d8d82ee4b002" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200916T011900Z:20a1c323-364b-4e97-8ac9-d8d82ee4b002" + ], + "Date": [ + "Wed, 16 Sep 2020 01:19:00 GMT" + ], + "Content-Length": [ + "597" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/servers/ps4341/restorableDroppedDatabases/ps6031,132446918780930000\",\r\n \"name\": \"ps6031,132446918780930000\",\r\n \"type\": \"Microsoft.Sql/servers/restorableDroppedDatabases\",\r\n \"location\": \"West Central US\",\r\n \"properties\": {\r\n \"databaseName\": \"ps6031\",\r\n \"edition\": \"GeneralPurpose\",\r\n \"maxSizeBytes\": \"34359738368\",\r\n \"serviceLevelObjective\": \"SQLDB_GP_Gen5_2\",\r\n \"elasticPoolName\": null,\r\n \"creationDate\": \"2020-09-16T00:53:50.053Z\",\r\n \"deletionDate\": \"2020-09-16T01:04:38.093Z\",\r\n \"earliestRestoreDate\": \"2020-09-16T00:56:24Z\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/servers/ps4341/databases/powershell_db_deleted?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNDM0MS9kYXRhYmFzZXMvcG93ZXJzaGVsbF9kYl9kZWxldGVkP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"createMode\": \"Restore\",\r\n \"restorePointInTime\": \"2020-09-16T01:04:38.093Z\",\r\n \"restorableDroppedDatabaseId\": \"/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/servers/ps4341/restorableDroppedDatabases/ps6031,132446918780930000\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bfe7b90b-00db-4d1a-b51d-9e1a91fc421b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "349" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://brazilus.management.azure.com/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseOperationResults/eff831ec-99d9-43e7-ab56-a049536466dc?api-version=2019-06-01-preview" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://brazilus.management.azure.com/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/eff831ec-99d9-43e7-ab56-a049536466dc?api-version=2019-06-01-preview" + ], + "x-ms-request-id": [ + "eff831ec-99d9-43e7-ab56-a049536466dc" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "8e6fed8d-5428-4753-b771-4f5de28ada39" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200916T011925Z:8e6fed8d-5428-4753-b771-4f5de28ada39" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Sep 2020 01:19:25 GMT" + ], + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateRestoreRequest\",\r\n \"startTime\": \"2020-09-16T01:19:25.67Z\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/eff831ec-99d9-43e7-ab56-a049536466dc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZWZmODMxZWMtOTlkOS00M2U3LWFiNTYtYTA0OTUzNjQ2NmRjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "e1dcd619-38c5-4151-a7da-5892656bb125" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-correlation-request-id": [ + "83b5f0e1-2229-454c-8cc9-d1d1a855441a" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200916T011940Z:83b5f0e1-2229-454c-8cc9-d1d1a855441a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Sep 2020 01:19:40 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"eff831ec-99d9-43e7-ab56-a049536466dc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:19:25.67Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/eff831ec-99d9-43e7-ab56-a049536466dc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZWZmODMxZWMtOTlkOS00M2U3LWFiNTYtYTA0OTUzNjQ2NmRjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "32d1afc4-22c8-4e51-855e-75dacfd56d1d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-correlation-request-id": [ + "3d0fe0bf-b29d-451d-a844-31aca1a0bb39" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200916T011956Z:3d0fe0bf-b29d-451d-a844-31aca1a0bb39" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Sep 2020 01:19:55 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"eff831ec-99d9-43e7-ab56-a049536466dc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:19:25.67Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/eff831ec-99d9-43e7-ab56-a049536466dc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZWZmODMxZWMtOTlkOS00M2U3LWFiNTYtYTA0OTUzNjQ2NmRjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "73740ad9-9f72-4b5a-9954-7008117f750e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-correlation-request-id": [ + "796eb2d1-bdc2-4484-963a-a3edbdfbf86f" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200916T012011Z:796eb2d1-bdc2-4484-963a-a3edbdfbf86f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Sep 2020 01:20:10 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"eff831ec-99d9-43e7-ab56-a049536466dc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:19:25.67Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/eff831ec-99d9-43e7-ab56-a049536466dc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZWZmODMxZWMtOTlkOS00M2U3LWFiNTYtYTA0OTUzNjQ2NmRjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "856a11cd-eeaa-4147-a042-b785eb431ace" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-correlation-request-id": [ + "0641a1ff-1399-4a3b-942f-1f2c7b614e30" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200916T012026Z:0641a1ff-1399-4a3b-942f-1f2c7b614e30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Sep 2020 01:20:25 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"eff831ec-99d9-43e7-ab56-a049536466dc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:19:25.67Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/eff831ec-99d9-43e7-ab56-a049536466dc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZWZmODMxZWMtOTlkOS00M2U3LWFiNTYtYTA0OTUzNjQ2NmRjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "cc093e6d-1618-4fdb-beb9-5f93c82e7e7b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-correlation-request-id": [ + "3bda2fb6-bd83-4272-aefa-0668e2da6882" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200916T012041Z:3bda2fb6-bd83-4272-aefa-0668e2da6882" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Sep 2020 01:20:40 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"eff831ec-99d9-43e7-ab56-a049536466dc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:19:25.67Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/eff831ec-99d9-43e7-ab56-a049536466dc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZWZmODMxZWMtOTlkOS00M2U3LWFiNTYtYTA0OTUzNjQ2NmRjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "24a80e61-d923-4060-93fe-6483e18f25e3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-correlation-request-id": [ + "e16fc2ed-29f1-4bb4-be7e-29f3170414f7" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200916T012056Z:e16fc2ed-29f1-4bb4-be7e-29f3170414f7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Sep 2020 01:20:56 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"eff831ec-99d9-43e7-ab56-a049536466dc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:19:25.67Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/eff831ec-99d9-43e7-ab56-a049536466dc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZWZmODMxZWMtOTlkOS00M2U3LWFiNTYtYTA0OTUzNjQ2NmRjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "f8f1e7fc-95d9-4c90-b63e-3a6113c348d8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-correlation-request-id": [ + "24b815ad-0436-4a67-aea3-97b2d8d9f0cc" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200916T012111Z:24b815ad-0436-4a67-aea3-97b2d8d9f0cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Sep 2020 01:21:11 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"eff831ec-99d9-43e7-ab56-a049536466dc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:19:25.67Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/eff831ec-99d9-43e7-ab56-a049536466dc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZWZmODMxZWMtOTlkOS00M2U3LWFiNTYtYTA0OTUzNjQ2NmRjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "fb91be07-76b0-4232-99cf-72be7fc39a50" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-correlation-request-id": [ + "c99ae6da-ccf0-4dec-89ff-aca94cbe4854" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200916T012126Z:c99ae6da-ccf0-4dec-89ff-aca94cbe4854" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Sep 2020 01:21:26 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"eff831ec-99d9-43e7-ab56-a049536466dc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:19:25.67Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/eff831ec-99d9-43e7-ab56-a049536466dc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZWZmODMxZWMtOTlkOS00M2U3LWFiNTYtYTA0OTUzNjQ2NmRjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "a857a0ec-a5e1-408c-8130-c21f8e90bcf4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-correlation-request-id": [ + "c76164f1-44d0-40e0-99a6-8649af52dbc7" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200916T012142Z:c76164f1-44d0-40e0-99a6-8649af52dbc7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Sep 2020 01:21:41 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"eff831ec-99d9-43e7-ab56-a049536466dc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:19:25.67Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/eff831ec-99d9-43e7-ab56-a049536466dc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZWZmODMxZWMtOTlkOS00M2U3LWFiNTYtYTA0OTUzNjQ2NmRjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "02b8b7fe-c746-4a9f-8ca2-694908c5f619" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "x-ms-correlation-request-id": [ + "f0e0ffcb-3159-4456-bf11-e4d6a4ef279c" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200916T012157Z:f0e0ffcb-3159-4456-bf11-e4d6a4ef279c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Sep 2020 01:21:56 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"eff831ec-99d9-43e7-ab56-a049536466dc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:19:25.67Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/eff831ec-99d9-43e7-ab56-a049536466dc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZWZmODMxZWMtOTlkOS00M2U3LWFiNTYtYTA0OTUzNjQ2NmRjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "c95b6278-841d-4b4f-9719-b2c872398d69" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-correlation-request-id": [ + "9bbab2a1-b207-469f-a115-c58e4414abd8" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200916T012212Z:9bbab2a1-b207-469f-a115-c58e4414abd8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Sep 2020 01:22:11 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"eff831ec-99d9-43e7-ab56-a049536466dc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:19:25.67Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/eff831ec-99d9-43e7-ab56-a049536466dc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZWZmODMxZWMtOTlkOS00M2U3LWFiNTYtYTA0OTUzNjQ2NmRjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "c18854e4-9131-438b-b6fd-2d3e3f6a90bb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "x-ms-correlation-request-id": [ + "452f42a0-2091-4df6-a280-d809680b39b4" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200916T012227Z:452f42a0-2091-4df6-a280-d809680b39b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Sep 2020 01:22:27 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"eff831ec-99d9-43e7-ab56-a049536466dc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:19:25.67Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/eff831ec-99d9-43e7-ab56-a049536466dc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZWZmODMxZWMtOTlkOS00M2U3LWFiNTYtYTA0OTUzNjQ2NmRjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "db3fa5f2-8ad3-47c8-8bf5-18816f374000" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-correlation-request-id": [ + "241ce8d0-d6fb-496c-8612-2d079edff6dd" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200916T012242Z:241ce8d0-d6fb-496c-8612-2d079edff6dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Sep 2020 01:22:42 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"eff831ec-99d9-43e7-ab56-a049536466dc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:19:25.67Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/eff831ec-99d9-43e7-ab56-a049536466dc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZWZmODMxZWMtOTlkOS00M2U3LWFiNTYtYTA0OTUzNjQ2NmRjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "39a0b0d3-1921-417b-9529-44c2a537eb9c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-correlation-request-id": [ + "953573fe-9339-47ee-bf75-8038e51398ae" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200916T012257Z:953573fe-9339-47ee-bf75-8038e51398ae" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Sep 2020 01:22:57 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"eff831ec-99d9-43e7-ab56-a049536466dc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:19:25.67Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/eff831ec-99d9-43e7-ab56-a049536466dc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZWZmODMxZWMtOTlkOS00M2U3LWFiNTYtYTA0OTUzNjQ2NmRjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "dc5b5fd7-2b7d-49f3-818f-a49bb280f135" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "x-ms-correlation-request-id": [ + "1617b0c5-3b13-4a75-8c45-ee25dfc6e474" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200916T012312Z:1617b0c5-3b13-4a75-8c45-ee25dfc6e474" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Sep 2020 01:23:12 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"eff831ec-99d9-43e7-ab56-a049536466dc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:19:25.67Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/eff831ec-99d9-43e7-ab56-a049536466dc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZWZmODMxZWMtOTlkOS00M2U3LWFiNTYtYTA0OTUzNjQ2NmRjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "68f0b400-fbca-4747-9ae9-3bb36bba1479" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "e117d538-ee3b-4287-8d2f-2f2e1b8692b9" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200916T012327Z:e117d538-ee3b-4287-8d2f-2f2e1b8692b9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Sep 2020 01:23:27 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"eff831ec-99d9-43e7-ab56-a049536466dc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:19:25.67Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/eff831ec-99d9-43e7-ab56-a049536466dc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZWZmODMxZWMtOTlkOS00M2U3LWFiNTYtYTA0OTUzNjQ2NmRjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "c28d9f73-ddfb-495b-a406-7055768b5b03" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" + ], + "x-ms-correlation-request-id": [ + "b16871c7-6b98-48e5-a848-20d152741183" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200916T012343Z:b16871c7-6b98-48e5-a848-20d152741183" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Sep 2020 01:23:43 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"eff831ec-99d9-43e7-ab56-a049536466dc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:19:25.67Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/eff831ec-99d9-43e7-ab56-a049536466dc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZWZmODMxZWMtOTlkOS00M2U3LWFiNTYtYTA0OTUzNjQ2NmRjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "0957a302-4bd1-4d1f-a936-5a13321f8350" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], + "x-ms-correlation-request-id": [ + "87eb2e52-553b-43c5-aab9-209971aaa9aa" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200916T012358Z:87eb2e52-553b-43c5-aab9-209971aaa9aa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Sep 2020 01:23:58 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"eff831ec-99d9-43e7-ab56-a049536466dc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:19:25.67Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/eff831ec-99d9-43e7-ab56-a049536466dc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZWZmODMxZWMtOTlkOS00M2U3LWFiNTYtYTA0OTUzNjQ2NmRjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "c8a5aedf-9cf1-4184-9f45-3ac561b8825f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11961" + ], + "x-ms-correlation-request-id": [ + "07bed714-daa6-4c1f-8d52-d157dcbaef3e" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200916T012413Z:07bed714-daa6-4c1f-8d52-d157dcbaef3e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Sep 2020 01:24:12 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"eff831ec-99d9-43e7-ab56-a049536466dc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:19:25.67Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/eff831ec-99d9-43e7-ab56-a049536466dc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZWZmODMxZWMtOTlkOS00M2U3LWFiNTYtYTA0OTUzNjQ2NmRjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "2bd52c30-ec6c-4638-9b72-afaaa147498f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11960" + ], + "x-ms-correlation-request-id": [ + "75bd6c6f-2df8-483e-8df0-5f52d28b6d7f" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200916T012428Z:75bd6c6f-2df8-483e-8df0-5f52d28b6d7f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Sep 2020 01:24:28 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"eff831ec-99d9-43e7-ab56-a049536466dc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:19:25.67Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/eff831ec-99d9-43e7-ab56-a049536466dc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZWZmODMxZWMtOTlkOS00M2U3LWFiNTYtYTA0OTUzNjQ2NmRjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "52960fb7-c6f9-4479-b07e-cf79c35f09a3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11959" + ], + "x-ms-correlation-request-id": [ + "146a3065-6f0a-4f79-92cc-5d6909417770" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200916T012443Z:146a3065-6f0a-4f79-92cc-5d6909417770" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Sep 2020 01:24:43 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"eff831ec-99d9-43e7-ab56-a049536466dc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:19:25.67Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/eff831ec-99d9-43e7-ab56-a049536466dc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZWZmODMxZWMtOTlkOS00M2U3LWFiNTYtYTA0OTUzNjQ2NmRjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "43c2dd84-9b28-4f66-a792-786f24a213cc" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11958" + ], + "x-ms-correlation-request-id": [ + "c9d2bce7-1660-4b2d-b2ec-8592b4e97267" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200916T012458Z:c9d2bce7-1660-4b2d-b2ec-8592b4e97267" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Sep 2020 01:24:58 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"eff831ec-99d9-43e7-ab56-a049536466dc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:19:25.67Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/eff831ec-99d9-43e7-ab56-a049536466dc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZWZmODMxZWMtOTlkOS00M2U3LWFiNTYtYTA0OTUzNjQ2NmRjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "537f9fdb-8cd3-4eb8-90c5-81cffd855983" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11957" + ], + "x-ms-correlation-request-id": [ + "c3008468-4b7a-405c-8f41-c997640c5e16" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200916T012513Z:c3008468-4b7a-405c-8f41-c997640c5e16" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Sep 2020 01:25:13 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"eff831ec-99d9-43e7-ab56-a049536466dc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:19:25.67Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/eff831ec-99d9-43e7-ab56-a049536466dc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZWZmODMxZWMtOTlkOS00M2U3LWFiNTYtYTA0OTUzNjQ2NmRjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "48b6948f-39be-4cd4-b97b-478572f58079" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11956" + ], + "x-ms-correlation-request-id": [ + "86ea636a-3aac-4c43-98ec-81ab0b31efb7" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200916T012528Z:86ea636a-3aac-4c43-98ec-81ab0b31efb7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Sep 2020 01:25:28 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"eff831ec-99d9-43e7-ab56-a049536466dc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:19:25.67Z\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/0f21027c-f3bc-4f36-96f3-8fb7ee025407?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY3YzA1NWMtNjMxMC00Mzc0LTk4NTItMTBlZjcxY2U1Zjg1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8wZjIxMDI3Yy1mM2JjLTRmMzYtOTZmMy04ZmI3ZWUwMjU0MDc/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/eff831ec-99d9-43e7-ab56-a049536466dc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZWZmODMxZWMtOTlkOS00M2U3LWFiNTYtYTA0OTUzNjQ2NmRjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.14.0.0" + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, - "ResponseBody": "{\r\n \"name\": \"0f21027c-f3bc-4f36-96f3-8fb7ee025407\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-04-27T20:44:00.77Z\"\r\n}", "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "35feae85-40de-4b18-b2b4-61e0f2eef613" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11955" + ], + "x-ms-correlation-request-id": [ + "1021dc03-d23e-48e8-9b4b-0ec2a2439c5a" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200916T012544Z:1021dc03-d23e-48e8-9b4b-0ec2a2439c5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Sep 2020 01:25:43 GMT" + ], "Content-Length": [ "107" ], @@ -512,6 +3220,27 @@ ], "Expires": [ "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"eff831ec-99d9-43e7-ab56-a049536466dc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:19:25.67Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/eff831ec-99d9-43e7-ab56-a049536466dc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZWZmODMxZWMtOTlkOS00M2U3LWFiNTYtYTA0OTUzNjQ2NmRjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -520,16 +3249,19 @@ "15" ], "x-ms-request-id": [ - "b6d242dc-cc02-4cb4-8682-26f90c9d5932" + "a6a756f6-43ae-4a26-a728-cf886c81010c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "11954" ], "x-ms-correlation-request-id": [ - "d34aa445-fea0-47d1-89b8-ce8c3a904f2b" + "671693b9-4b99-47f0-870f-4d9e712f435f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180427T204446Z:d34aa445-fea0-47d1-89b8-ce8c3a904f2b" + "BRAZILUS:20200916T012559Z:671693b9-4b99-47f0-870f-4d9e712f435f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -537,33 +3269,129 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Wed, 16 Sep 2020 01:25:58 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"eff831ec-99d9-43e7-ab56-a049536466dc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:19:25.67Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/eff831ec-99d9-43e7-ab56-a049536466dc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZWZmODMxZWMtOTlkOS00M2U3LWFiNTYtYTA0OTUzNjQ2NmRjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 27 Apr 2018 20:44:46 GMT" + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "2845fd0a-e1a3-4b5f-8f98-b91878b156b2" ], "Server": [ "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11953" + ], + "x-ms-correlation-request-id": [ + "6d3c204f-ea93-405f-8746-ed3d5e9556b5" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200916T012614Z:6d3c204f-ea93-405f-8746-ed3d5e9556b5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Sep 2020 01:26:13 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"eff831ec-99d9-43e7-ab56-a049536466dc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:19:25.67Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/0f21027c-f3bc-4f36-96f3-8fb7ee025407?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY3YzA1NWMtNjMxMC00Mzc0LTk4NTItMTBlZjcxY2U1Zjg1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8wZjIxMDI3Yy1mM2JjLTRmMzYtOTZmMy04ZmI3ZWUwMjU0MDc/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/eff831ec-99d9-43e7-ab56-a049536466dc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZWZmODMxZWMtOTlkOS00M2U3LWFiNTYtYTA0OTUzNjQ2NmRjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.14.0.0" + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, - "ResponseBody": "{\r\n \"name\": \"0f21027c-f3bc-4f36-96f3-8fb7ee025407\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-04-27T20:44:00.77Z\"\r\n}", "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "eff19876-7c7d-4c6c-b183-ae0a29bd3755" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11952" + ], + "x-ms-correlation-request-id": [ + "4bd9d84a-78b9-4dec-bfcb-0ee30504d360" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200916T012629Z:4bd9d84a-78b9-4dec-bfcb-0ee30504d360" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Sep 2020 01:26:28 GMT" + ], "Content-Length": [ "107" ], @@ -572,6 +3400,27 @@ ], "Expires": [ "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"eff831ec-99d9-43e7-ab56-a049536466dc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:19:25.67Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/eff831ec-99d9-43e7-ab56-a049536466dc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZWZmODMxZWMtOTlkOS00M2U3LWFiNTYtYTA0OTUzNjQ2NmRjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -580,16 +3429,19 @@ "15" ], "x-ms-request-id": [ - "672e28f1-743a-4eb9-87db-f3c34248bb94" + "b01e625e-3010-430d-b94c-357098606386" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "11951" ], "x-ms-correlation-request-id": [ - "9b8ad588-e9d4-45d4-867d-daf4a710dcc9" + "bd649c2b-2d61-421e-a689-3cfdad86c4fb" ], "x-ms-routing-request-id": [ - "WESTUS2:20180427T204501Z:9b8ad588-e9d4-45d4-867d-daf4a710dcc9" + "BRAZILUS:20200916T012644Z:bd649c2b-2d61-421e-a689-3cfdad86c4fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -597,41 +3449,173 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Wed, 16 Sep 2020 01:26:44 GMT" + ], + "Content-Length": [ + "106" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"eff831ec-99d9-43e7-ab56-a049536466dc\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-16T01:19:25.67Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/servers/ps4341/databases/powershell_db_deleted?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNDM0MS9kYXRhYmFzZXMvcG93ZXJzaGVsbF9kYl9kZWxldGVkP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 27 Apr 2018 20:45:01 GMT" + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "deaa91e5-9d3f-41b9-965a-f3469cf1b8df" ], "Server": [ "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11950" + ], + "x-ms-correlation-request-id": [ + "533b259e-3697-4008-a20f-de47380c7405" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200916T012644Z:533b259e-3697-4008-a20f-de47380c7405" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Sep 2020 01:26:44 GMT" + ], + "Content-Length": [ + "1013" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"7187ae90-7d06-43ca-b8c6-888fd3afad4d\",\r\n \"creationDate\": \"2020-09-16T01:26:05.77Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 10307502080,\r\n \"earliestRestoreDate\": \"2020-09-16T01:56:05.77Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/servers/ps4341/databases/powershell_db_deleted\",\r\n \"name\": \"powershell_db_deleted\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/0f21027c-f3bc-4f36-96f3-8fb7ee025407?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY3YzA1NWMtNjMxMC00Mzc0LTk4NTItMTBlZjcxY2U1Zjg1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8wZjIxMDI3Yy1mM2JjLTRmMzYtOTZmMy04ZmI3ZWUwMjU0MDc/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/servers/ps4341/databases/powershell_db_deleted_vcore?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNDM0MS9kYXRhYmFzZXMvcG93ZXJzaGVsbF9kYl9kZWxldGVkX3Zjb3JlP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"GP\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"createMode\": \"Restore\",\r\n \"restorePointInTime\": \"2020-09-16T01:04:38.093Z\",\r\n \"restorableDroppedDatabaseId\": \"/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/servers/ps4341/restorableDroppedDatabases/ps6031,132446918780930000\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { + "x-ms-client-request-id": [ + "9060b4ac-a130-4dc8-ab07-33fb86d90623" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.14.0.0" + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "459" ] }, - "ResponseBody": "{\r\n \"name\": \"0f21027c-f3bc-4f36-96f3-8fb7ee025407\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-04-27T20:44:00.77Z\"\r\n}", "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://brazilus.management.azure.com/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseOperationResults/d9343882-f6b0-40c2-ade7-009ea5bb8087?api-version=2019-06-01-preview" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://brazilus.management.azure.com/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/d9343882-f6b0-40c2-ade7-009ea5bb8087?api-version=2019-06-01-preview" + ], + "x-ms-request-id": [ + "d9343882-f6b0-40c2-ade7-009ea5bb8087" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "54a7e589-59eb-411b-815e-3284a9d0dc24" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200916T012646Z:54a7e589-59eb-411b-815e-3284a9d0dc24" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Sep 2020 01:26:45 GMT" + ], "Content-Length": [ - "107" + "75" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateRestoreRequest\",\r\n \"startTime\": \"2020-09-16T01:26:46.223Z\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/d9343882-f6b0-40c2-ade7-009ea5bb8087?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDkzNDM4ODItZjZiMC00MGMyLWFkZTctMDA5ZWE1YmI4MDg3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -640,16 +3624,19 @@ "15" ], "x-ms-request-id": [ - "8af5e42d-68ff-4e35-8067-ba4c24589f5e" + "8b4ffd66-42f7-467d-bc99-6904b95ee4ac" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "11948" ], "x-ms-correlation-request-id": [ - "ec435fac-2415-46f7-af76-3e358ca2dfa1" + "8749c9ba-03c8-46e8-8990-55fcadbd3677" ], "x-ms-routing-request-id": [ - "WESTUS2:20180427T204516Z:ec435fac-2415-46f7-af76-3e358ca2dfa1" + "BRAZILUS:20200916T012701Z:8749c9ba-03c8-46e8-8990-55fcadbd3677" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -657,41 +3644,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Fri, 27 Apr 2018 20:45:16 GMT" + "Wed, 16 Sep 2020 01:27:01 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"d9343882-f6b0-40c2-ade7-009ea5bb8087\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:26:46.223Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/0f21027c-f3bc-4f36-96f3-8fb7ee025407?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY3YzA1NWMtNjMxMC00Mzc0LTk4NTItMTBlZjcxY2U1Zjg1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8wZjIxMDI3Yy1mM2JjLTRmMzYtOTZmMy04ZmI3ZWUwMjU0MDc/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/d9343882-f6b0-40c2-ade7-009ea5bb8087?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDkzNDM4ODItZjZiMC00MGMyLWFkZTctMDA5ZWE1YmI4MDg3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.14.0.0" + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, - "ResponseBody": "{\r\n \"name\": \"0f21027c-f3bc-4f36-96f3-8fb7ee025407\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-04-27T20:44:00.77Z\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "107" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -700,16 +3684,19 @@ "15" ], "x-ms-request-id": [ - "887728d9-bcd5-4539-90c3-d302c27288b4" + "4cab88d8-58d5-4656-9ad5-f863390b5962" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "11947" ], "x-ms-correlation-request-id": [ - "2e046188-2550-44fc-8830-c501d07a6727" + "baa04f49-b62c-4b09-b6c1-221c36c7cd57" ], "x-ms-routing-request-id": [ - "WESTUS2:20180427T204533Z:2e046188-2550-44fc-8830-c501d07a6727" + "BRAZILUS:20200916T012716Z:baa04f49-b62c-4b09-b6c1-221c36c7cd57" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -717,41 +3704,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Fri, 27 Apr 2018 20:45:32 GMT" + "Wed, 16 Sep 2020 01:27:16 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"d9343882-f6b0-40c2-ade7-009ea5bb8087\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:26:46.223Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/0f21027c-f3bc-4f36-96f3-8fb7ee025407?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY3YzA1NWMtNjMxMC00Mzc0LTk4NTItMTBlZjcxY2U1Zjg1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8wZjIxMDI3Yy1mM2JjLTRmMzYtOTZmMy04ZmI3ZWUwMjU0MDc/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/d9343882-f6b0-40c2-ade7-009ea5bb8087?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDkzNDM4ODItZjZiMC00MGMyLWFkZTctMDA5ZWE1YmI4MDg3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.14.0.0" + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, - "ResponseBody": "{\r\n \"name\": \"0f21027c-f3bc-4f36-96f3-8fb7ee025407\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-04-27T20:44:00.77Z\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "107" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -760,16 +3744,19 @@ "15" ], "x-ms-request-id": [ - "073e308d-c491-4e2c-a89d-9c7255a1d4bc" + "f3c695ad-a521-4afc-8949-7fe82abd43b7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "11946" ], "x-ms-correlation-request-id": [ - "9d97ac65-ae67-44dd-b536-8f93a80411a0" + "f16efae2-06b3-43a9-a3a4-6de05b388b53" ], "x-ms-routing-request-id": [ - "WESTUS2:20180427T204548Z:9d97ac65-ae67-44dd-b536-8f93a80411a0" + "BRAZILUS:20200916T012731Z:f16efae2-06b3-43a9-a3a4-6de05b388b53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -777,41 +3764,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Fri, 27 Apr 2018 20:45:47 GMT" + "Wed, 16 Sep 2020 01:27:31 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"d9343882-f6b0-40c2-ade7-009ea5bb8087\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:26:46.223Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/0f21027c-f3bc-4f36-96f3-8fb7ee025407?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY3YzA1NWMtNjMxMC00Mzc0LTk4NTItMTBlZjcxY2U1Zjg1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8wZjIxMDI3Yy1mM2JjLTRmMzYtOTZmMy04ZmI3ZWUwMjU0MDc/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/d9343882-f6b0-40c2-ade7-009ea5bb8087?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDkzNDM4ODItZjZiMC00MGMyLWFkZTctMDA5ZWE1YmI4MDg3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.14.0.0" + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, - "ResponseBody": "{\r\n \"name\": \"0f21027c-f3bc-4f36-96f3-8fb7ee025407\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-04-27T20:44:00.77Z\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "107" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -820,16 +3804,19 @@ "15" ], "x-ms-request-id": [ - "09ed31f5-f56c-45ea-a098-e139abf4c857" + "5f9f8fe4-5b0e-403a-a290-ae1d84f5983b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "11945" ], "x-ms-correlation-request-id": [ - "8573925f-b6a6-4e21-8198-ec6be32a079a" + "0266c844-356b-4bf6-b5a1-af285f916460" ], "x-ms-routing-request-id": [ - "WESTUS2:20180427T204603Z:8573925f-b6a6-4e21-8198-ec6be32a079a" + "BRAZILUS:20200916T012746Z:0266c844-356b-4bf6-b5a1-af285f916460" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -837,41 +3824,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Fri, 27 Apr 2018 20:46:03 GMT" + "Wed, 16 Sep 2020 01:27:46 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"d9343882-f6b0-40c2-ade7-009ea5bb8087\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:26:46.223Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/0f21027c-f3bc-4f36-96f3-8fb7ee025407?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY3YzA1NWMtNjMxMC00Mzc0LTk4NTItMTBlZjcxY2U1Zjg1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8wZjIxMDI3Yy1mM2JjLTRmMzYtOTZmMy04ZmI3ZWUwMjU0MDc/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/d9343882-f6b0-40c2-ade7-009ea5bb8087?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDkzNDM4ODItZjZiMC00MGMyLWFkZTctMDA5ZWE1YmI4MDg3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.14.0.0" + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, - "ResponseBody": "{\r\n \"name\": \"0f21027c-f3bc-4f36-96f3-8fb7ee025407\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-04-27T20:44:00.77Z\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "107" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -880,16 +3864,19 @@ "15" ], "x-ms-request-id": [ - "fb47adad-29c8-4c88-8691-2705f6321a63" + "08236e21-1248-4e67-8779-9b40476dd798" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "11944" ], "x-ms-correlation-request-id": [ - "e263f65e-4411-436c-b2f3-b741a2f40e88" + "be57b122-cf36-494c-9289-1bd9362879a3" ], "x-ms-routing-request-id": [ - "WESTUS2:20180427T204618Z:e263f65e-4411-436c-b2f3-b741a2f40e88" + "BRAZILUS:20200916T012801Z:be57b122-cf36-494c-9289-1bd9362879a3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -897,41 +3884,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Fri, 27 Apr 2018 20:46:18 GMT" + "Wed, 16 Sep 2020 01:28:01 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"d9343882-f6b0-40c2-ade7-009ea5bb8087\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:26:46.223Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/0f21027c-f3bc-4f36-96f3-8fb7ee025407?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY3YzA1NWMtNjMxMC00Mzc0LTk4NTItMTBlZjcxY2U1Zjg1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8wZjIxMDI3Yy1mM2JjLTRmMzYtOTZmMy04ZmI3ZWUwMjU0MDc/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/d9343882-f6b0-40c2-ade7-009ea5bb8087?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDkzNDM4ODItZjZiMC00MGMyLWFkZTctMDA5ZWE1YmI4MDg3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.14.0.0" + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, - "ResponseBody": "{\r\n \"name\": \"0f21027c-f3bc-4f36-96f3-8fb7ee025407\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-04-27T20:44:00.77Z\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "107" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -940,16 +3924,19 @@ "15" ], "x-ms-request-id": [ - "d2177ad3-8561-44e5-972a-e935231bc236" + "904e32ea-f2e3-4163-86b3-8a070f0f4abf" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "11943" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "851280e0-09c6-4dd5-abd5-b38ba8e608e9" + "1460e92f-5ca1-4b93-833e-83efa75808c2" ], "x-ms-routing-request-id": [ - "WESTUS2:20180427T204633Z:851280e0-09c6-4dd5-abd5-b38ba8e608e9" + "BRAZILUS:20200916T012817Z:1460e92f-5ca1-4b93-833e-83efa75808c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -957,41 +3944,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Fri, 27 Apr 2018 20:46:33 GMT" + "Wed, 16 Sep 2020 01:28:16 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"d9343882-f6b0-40c2-ade7-009ea5bb8087\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:26:46.223Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/0f21027c-f3bc-4f36-96f3-8fb7ee025407?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY3YzA1NWMtNjMxMC00Mzc0LTk4NTItMTBlZjcxY2U1Zjg1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8wZjIxMDI3Yy1mM2JjLTRmMzYtOTZmMy04ZmI3ZWUwMjU0MDc/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/d9343882-f6b0-40c2-ade7-009ea5bb8087?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDkzNDM4ODItZjZiMC00MGMyLWFkZTctMDA5ZWE1YmI4MDg3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.14.0.0" + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, - "ResponseBody": "{\r\n \"name\": \"0f21027c-f3bc-4f36-96f3-8fb7ee025407\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-04-27T20:44:00.77Z\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "107" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -1000,16 +3984,19 @@ "15" ], "x-ms-request-id": [ - "5acccfc5-137c-4ec3-b962-6e40c3505307" + "b0466980-b63c-498c-ae4a-97c5dc9b68a5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "11942" ], "x-ms-correlation-request-id": [ - "1f1ed7b2-cd4c-4fb4-9c7e-a38f9ef40afe" + "2de56db9-10ca-43aa-a7f2-4b673ad5e47b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180427T204649Z:1f1ed7b2-cd4c-4fb4-9c7e-a38f9ef40afe" + "BRAZILUS:20200916T012832Z:2de56db9-10ca-43aa-a7f2-4b673ad5e47b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1017,41 +4004,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Fri, 27 Apr 2018 20:46:49 GMT" + "Wed, 16 Sep 2020 01:28:31 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"d9343882-f6b0-40c2-ade7-009ea5bb8087\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:26:46.223Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/0f21027c-f3bc-4f36-96f3-8fb7ee025407?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY3YzA1NWMtNjMxMC00Mzc0LTk4NTItMTBlZjcxY2U1Zjg1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8wZjIxMDI3Yy1mM2JjLTRmMzYtOTZmMy04ZmI3ZWUwMjU0MDc/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/d9343882-f6b0-40c2-ade7-009ea5bb8087?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDkzNDM4ODItZjZiMC00MGMyLWFkZTctMDA5ZWE1YmI4MDg3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.14.0.0" + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, - "ResponseBody": "{\r\n \"name\": \"0f21027c-f3bc-4f36-96f3-8fb7ee025407\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-04-27T20:44:00.77Z\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "107" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -1060,16 +4044,19 @@ "15" ], "x-ms-request-id": [ - "0367282e-1364-4fb3-8681-ed008dccdb01" + "59269d1a-6a6b-4663-904b-b1d6d030cb00" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "11941" ], "x-ms-correlation-request-id": [ - "39d27d36-8ecb-4243-b515-3e084367c5c5" + "d9be0d68-0a39-40af-ad67-6a6231d50d97" ], "x-ms-routing-request-id": [ - "WESTUS2:20180427T204705Z:39d27d36-8ecb-4243-b515-3e084367c5c5" + "BRAZILUS:20200916T012847Z:d9be0d68-0a39-40af-ad67-6a6231d50d97" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1077,41 +4064,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Fri, 27 Apr 2018 20:47:04 GMT" + "Wed, 16 Sep 2020 01:28:46 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"d9343882-f6b0-40c2-ade7-009ea5bb8087\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:26:46.223Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/0f21027c-f3bc-4f36-96f3-8fb7ee025407?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY3YzA1NWMtNjMxMC00Mzc0LTk4NTItMTBlZjcxY2U1Zjg1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8wZjIxMDI3Yy1mM2JjLTRmMzYtOTZmMy04ZmI3ZWUwMjU0MDc/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/d9343882-f6b0-40c2-ade7-009ea5bb8087?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDkzNDM4ODItZjZiMC00MGMyLWFkZTctMDA5ZWE1YmI4MDg3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.14.0.0" + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, - "ResponseBody": "{\r\n \"name\": \"0f21027c-f3bc-4f36-96f3-8fb7ee025407\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-04-27T20:44:00.77Z\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "107" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -1120,16 +4104,19 @@ "15" ], "x-ms-request-id": [ - "bb51c5fa-016a-49f5-9c5b-a3f15b891dcd" + "2167ccbd-b8f5-4ac4-b1de-b4b7e8ff24ff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "11940" ], "x-ms-correlation-request-id": [ - "aef76737-3415-43f3-9545-2a4a4615e04c" + "75f7daa4-c763-4d14-89be-87ad75399b97" ], "x-ms-routing-request-id": [ - "WESTUS2:20180427T204720Z:aef76737-3415-43f3-9545-2a4a4615e04c" + "BRAZILUS:20200916T012902Z:75f7daa4-c763-4d14-89be-87ad75399b97" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1137,41 +4124,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Fri, 27 Apr 2018 20:47:19 GMT" + "Wed, 16 Sep 2020 01:29:02 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"d9343882-f6b0-40c2-ade7-009ea5bb8087\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:26:46.223Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/0f21027c-f3bc-4f36-96f3-8fb7ee025407?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY3YzA1NWMtNjMxMC00Mzc0LTk4NTItMTBlZjcxY2U1Zjg1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8wZjIxMDI3Yy1mM2JjLTRmMzYtOTZmMy04ZmI3ZWUwMjU0MDc/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/d9343882-f6b0-40c2-ade7-009ea5bb8087?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDkzNDM4ODItZjZiMC00MGMyLWFkZTctMDA5ZWE1YmI4MDg3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.14.0.0" + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, - "ResponseBody": "{\r\n \"name\": \"0f21027c-f3bc-4f36-96f3-8fb7ee025407\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-04-27T20:44:00.77Z\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "107" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -1180,16 +4164,19 @@ "15" ], "x-ms-request-id": [ - "1f44216c-54d9-40ff-86a0-06202ae27130" + "e4a08750-37f9-4309-b64f-8cf42c5b2f09" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "11939" ], "x-ms-correlation-request-id": [ - "c9964965-9ed7-44d8-ad5a-41a1023b8b3e" + "fe99ae5b-a898-4da5-8d03-d8b4c4ff0b69" ], "x-ms-routing-request-id": [ - "WESTUS2:20180427T204735Z:c9964965-9ed7-44d8-ad5a-41a1023b8b3e" + "BRAZILUS:20200916T012917Z:fe99ae5b-a898-4da5-8d03-d8b4c4ff0b69" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1197,41 +4184,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Fri, 27 Apr 2018 20:47:34 GMT" + "Wed, 16 Sep 2020 01:29:16 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/0f21027c-f3bc-4f36-96f3-8fb7ee025407?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY3YzA1NWMtNjMxMC00Mzc0LTk4NTItMTBlZjcxY2U1Zjg1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8wZjIxMDI3Yy1mM2JjLTRmMzYtOTZmMy04ZmI3ZWUwMjU0MDc/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.14.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"0f21027c-f3bc-4f36-96f3-8fb7ee025407\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-04-27T20:44:00.77Z\"\r\n}", - "ResponseHeaders": { "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"d9343882-f6b0-40c2-ade7-009ea5bb8087\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:26:46.223Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/d9343882-f6b0-40c2-ade7-009ea5bb8087?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDkzNDM4ODItZjZiMC00MGMyLWFkZTctMDA5ZWE1YmI4MDg3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -1240,16 +4224,19 @@ "15" ], "x-ms-request-id": [ - "a509d270-b17a-4ea5-a1d8-e8727ea5e7c8" + "4fc9c65a-905e-41c8-ad10-18a606068d83" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "11938" ], "x-ms-correlation-request-id": [ - "fc66f750-8679-4fbf-b561-bf0a1bf06315" + "45da7b97-23d6-4e12-8c92-d6e77665397d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180427T204750Z:fc66f750-8679-4fbf-b561-bf0a1bf06315" + "BRAZILUS:20200916T012932Z:45da7b97-23d6-4e12-8c92-d6e77665397d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1257,41 +4244,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Fri, 27 Apr 2018 20:47:50 GMT" + "Wed, 16 Sep 2020 01:29:32 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"d9343882-f6b0-40c2-ade7-009ea5bb8087\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:26:46.223Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/0f21027c-f3bc-4f36-96f3-8fb7ee025407?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY3YzA1NWMtNjMxMC00Mzc0LTk4NTItMTBlZjcxY2U1Zjg1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8wZjIxMDI3Yy1mM2JjLTRmMzYtOTZmMy04ZmI3ZWUwMjU0MDc/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/d9343882-f6b0-40c2-ade7-009ea5bb8087?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDkzNDM4ODItZjZiMC00MGMyLWFkZTctMDA5ZWE1YmI4MDg3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.14.0.0" + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, - "ResponseBody": "{\r\n \"name\": \"0f21027c-f3bc-4f36-96f3-8fb7ee025407\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-04-27T20:44:00.77Z\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "107" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -1300,16 +4284,19 @@ "15" ], "x-ms-request-id": [ - "33c775c4-d34c-47cb-b78e-d753690c9c72" + "827be2d0-813c-4161-9d3a-2aa051e08e22" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "11937" ], "x-ms-correlation-request-id": [ - "96173d82-fea2-4969-b3f6-e9c5903271bf" + "6ef3d42c-63e0-4839-a34e-be3599006223" ], "x-ms-routing-request-id": [ - "WESTUS2:20180427T204806Z:96173d82-fea2-4969-b3f6-e9c5903271bf" + "BRAZILUS:20200916T012947Z:6ef3d42c-63e0-4839-a34e-be3599006223" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1317,41 +4304,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Fri, 27 Apr 2018 20:48:05 GMT" + "Wed, 16 Sep 2020 01:29:47 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"d9343882-f6b0-40c2-ade7-009ea5bb8087\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:26:46.223Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/0f21027c-f3bc-4f36-96f3-8fb7ee025407?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY3YzA1NWMtNjMxMC00Mzc0LTk4NTItMTBlZjcxY2U1Zjg1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8wZjIxMDI3Yy1mM2JjLTRmMzYtOTZmMy04ZmI3ZWUwMjU0MDc/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/d9343882-f6b0-40c2-ade7-009ea5bb8087?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDkzNDM4ODItZjZiMC00MGMyLWFkZTctMDA5ZWE1YmI4MDg3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.14.0.0" + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, - "ResponseBody": "{\r\n \"name\": \"0f21027c-f3bc-4f36-96f3-8fb7ee025407\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-04-27T20:44:00.77Z\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "107" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -1360,16 +4344,19 @@ "15" ], "x-ms-request-id": [ - "06631a4d-eae9-4e27-89d2-1e1346405acb" + "c65f697f-2a11-4953-9df0-aba625e31bd6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "11937" ], "x-ms-correlation-request-id": [ - "c98c4d09-7f8f-4e53-a9c2-69129d16b6cf" + "11950996-5b14-4982-ba73-c3088aa23b29" ], "x-ms-routing-request-id": [ - "WESTUS2:20180427T204821Z:c98c4d09-7f8f-4e53-a9c2-69129d16b6cf" + "BRAZILUS:20200916T013003Z:11950996-5b14-4982-ba73-c3088aa23b29" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1377,41 +4364,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Fri, 27 Apr 2018 20:48:20 GMT" + "Wed, 16 Sep 2020 01:30:03 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"d9343882-f6b0-40c2-ade7-009ea5bb8087\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:26:46.223Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/0f21027c-f3bc-4f36-96f3-8fb7ee025407?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY3YzA1NWMtNjMxMC00Mzc0LTk4NTItMTBlZjcxY2U1Zjg1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8wZjIxMDI3Yy1mM2JjLTRmMzYtOTZmMy04ZmI3ZWUwMjU0MDc/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/d9343882-f6b0-40c2-ade7-009ea5bb8087?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDkzNDM4ODItZjZiMC00MGMyLWFkZTctMDA5ZWE1YmI4MDg3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.14.0.0" + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, - "ResponseBody": "{\r\n \"name\": \"0f21027c-f3bc-4f36-96f3-8fb7ee025407\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-04-27T20:44:00.77Z\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "107" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -1420,16 +4404,19 @@ "15" ], "x-ms-request-id": [ - "c0b976d6-a1ed-43bd-b71c-dc23ef8545a2" + "01428bc6-c005-45cf-a33b-6626ee7a07b6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "11936" ], "x-ms-correlation-request-id": [ - "e7b8e505-44ec-430a-b893-67a758e223fc" + "dd031cde-5b2f-485a-bcae-06f4fdbe6755" ], "x-ms-routing-request-id": [ - "WESTUS2:20180427T204837Z:e7b8e505-44ec-430a-b893-67a758e223fc" + "BRAZILUS:20200916T013018Z:dd031cde-5b2f-485a-bcae-06f4fdbe6755" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1437,41 +4424,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Fri, 27 Apr 2018 20:48:37 GMT" + "Wed, 16 Sep 2020 01:30:17 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"d9343882-f6b0-40c2-ade7-009ea5bb8087\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:26:46.223Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/0f21027c-f3bc-4f36-96f3-8fb7ee025407?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY3YzA1NWMtNjMxMC00Mzc0LTk4NTItMTBlZjcxY2U1Zjg1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8wZjIxMDI3Yy1mM2JjLTRmMzYtOTZmMy04ZmI3ZWUwMjU0MDc/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/d9343882-f6b0-40c2-ade7-009ea5bb8087?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDkzNDM4ODItZjZiMC00MGMyLWFkZTctMDA5ZWE1YmI4MDg3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.14.0.0" + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, - "ResponseBody": "{\r\n \"name\": \"0f21027c-f3bc-4f36-96f3-8fb7ee025407\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-04-27T20:44:00.77Z\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "107" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -1480,16 +4464,19 @@ "15" ], "x-ms-request-id": [ - "782a8d59-093e-472e-ba67-db652503fee4" + "b2ad08ff-6d9d-4b0c-b92a-1e1862657f20" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "11935" ], "x-ms-correlation-request-id": [ - "6b9a91e6-9c9b-40c6-92cd-499823527571" + "7f6b2268-c1ac-4d28-acda-6e8299e4de94" ], "x-ms-routing-request-id": [ - "WESTUS2:20180427T204852Z:6b9a91e6-9c9b-40c6-92cd-499823527571" + "BRAZILUS:20200916T013033Z:7f6b2268-c1ac-4d28-acda-6e8299e4de94" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1497,41 +4484,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Fri, 27 Apr 2018 20:48:52 GMT" + "Wed, 16 Sep 2020 01:30:33 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"d9343882-f6b0-40c2-ade7-009ea5bb8087\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:26:46.223Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/0f21027c-f3bc-4f36-96f3-8fb7ee025407?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY3YzA1NWMtNjMxMC00Mzc0LTk4NTItMTBlZjcxY2U1Zjg1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8wZjIxMDI3Yy1mM2JjLTRmMzYtOTZmMy04ZmI3ZWUwMjU0MDc/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/d9343882-f6b0-40c2-ade7-009ea5bb8087?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDkzNDM4ODItZjZiMC00MGMyLWFkZTctMDA5ZWE1YmI4MDg3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.14.0.0" + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, - "ResponseBody": "{\r\n \"name\": \"0f21027c-f3bc-4f36-96f3-8fb7ee025407\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-04-27T20:44:00.77Z\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "107" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -1540,16 +4524,19 @@ "15" ], "x-ms-request-id": [ - "0bf0e3d9-dc7f-43db-8ec1-315ca3938af5" + "3801c0f1-dbed-4594-a3f1-de802991e203" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "11934" ], "x-ms-correlation-request-id": [ - "800e9411-9d2a-4b81-9654-5d73614321a7" + "04bd8cef-4eec-49fd-9b8a-bd8a6fbb7148" ], "x-ms-routing-request-id": [ - "WESTUS2:20180427T204907Z:800e9411-9d2a-4b81-9654-5d73614321a7" + "BRAZILUS:20200916T013048Z:04bd8cef-4eec-49fd-9b8a-bd8a6fbb7148" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1557,41 +4544,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Fri, 27 Apr 2018 20:49:07 GMT" + "Wed, 16 Sep 2020 01:30:47 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"d9343882-f6b0-40c2-ade7-009ea5bb8087\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:26:46.223Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/0f21027c-f3bc-4f36-96f3-8fb7ee025407?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY3YzA1NWMtNjMxMC00Mzc0LTk4NTItMTBlZjcxY2U1Zjg1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8wZjIxMDI3Yy1mM2JjLTRmMzYtOTZmMy04ZmI3ZWUwMjU0MDc/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/d9343882-f6b0-40c2-ade7-009ea5bb8087?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDkzNDM4ODItZjZiMC00MGMyLWFkZTctMDA5ZWE1YmI4MDg3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.14.0.0" + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, - "ResponseBody": "{\r\n \"name\": \"0f21027c-f3bc-4f36-96f3-8fb7ee025407\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-04-27T20:44:00.77Z\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "107" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -1600,16 +4584,19 @@ "15" ], "x-ms-request-id": [ - "c95e5d60-9570-42c7-9555-c570783bc235" + "890c6d63-f56d-4973-8c56-40d68fd4d49b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "11933" ], "x-ms-correlation-request-id": [ - "b8cad118-9d27-43ec-92d3-502047c5e7d5" + "6bae7e0b-382e-4035-a3cc-858348cb4b13" ], "x-ms-routing-request-id": [ - "WESTUS2:20180427T204923Z:b8cad118-9d27-43ec-92d3-502047c5e7d5" + "BRAZILUS:20200916T013103Z:6bae7e0b-382e-4035-a3cc-858348cb4b13" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1617,41 +4604,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Fri, 27 Apr 2018 20:49:22 GMT" + "Wed, 16 Sep 2020 01:31:03 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"d9343882-f6b0-40c2-ade7-009ea5bb8087\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:26:46.223Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/0f21027c-f3bc-4f36-96f3-8fb7ee025407?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY3YzA1NWMtNjMxMC00Mzc0LTk4NTItMTBlZjcxY2U1Zjg1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8wZjIxMDI3Yy1mM2JjLTRmMzYtOTZmMy04ZmI3ZWUwMjU0MDc/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/d9343882-f6b0-40c2-ade7-009ea5bb8087?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDkzNDM4ODItZjZiMC00MGMyLWFkZTctMDA5ZWE1YmI4MDg3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.14.0.0" + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, - "ResponseBody": "{\r\n \"name\": \"0f21027c-f3bc-4f36-96f3-8fb7ee025407\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-04-27T20:44:00.77Z\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "107" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -1660,16 +4644,19 @@ "15" ], "x-ms-request-id": [ - "c4988887-518c-46be-b2b9-2a8e3bddcee1" + "94a89f0b-3505-4c6f-809a-8a3c963a74df" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "11932" ], "x-ms-correlation-request-id": [ - "debc8d40-1fd5-4eee-86c9-5a69ea717ab4" + "e6c69eaf-2d01-4e29-b3f9-7241eef67e2b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180427T204938Z:debc8d40-1fd5-4eee-86c9-5a69ea717ab4" + "BRAZILUS:20200916T013118Z:e6c69eaf-2d01-4e29-b3f9-7241eef67e2b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1677,41 +4664,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Fri, 27 Apr 2018 20:49:37 GMT" + "Wed, 16 Sep 2020 01:31:18 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"d9343882-f6b0-40c2-ade7-009ea5bb8087\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:26:46.223Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/0f21027c-f3bc-4f36-96f3-8fb7ee025407?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY3YzA1NWMtNjMxMC00Mzc0LTk4NTItMTBlZjcxY2U1Zjg1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8wZjIxMDI3Yy1mM2JjLTRmMzYtOTZmMy04ZmI3ZWUwMjU0MDc/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/d9343882-f6b0-40c2-ade7-009ea5bb8087?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDkzNDM4ODItZjZiMC00MGMyLWFkZTctMDA5ZWE1YmI4MDg3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.14.0.0" + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, - "ResponseBody": "{\r\n \"name\": \"0f21027c-f3bc-4f36-96f3-8fb7ee025407\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-04-27T20:44:00.77Z\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "107" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -1720,16 +4704,19 @@ "15" ], "x-ms-request-id": [ - "e66f3370-d4a4-4e84-9ecf-53524a3c2003" + "e5d135a2-43cd-42b0-8d19-3832f8b85bd4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "11931" ], "x-ms-correlation-request-id": [ - "7fe19678-a7b7-4ce5-be54-322988ef6c17" + "5212c4d0-a93a-4669-8397-1bfbd9fb21e4" ], "x-ms-routing-request-id": [ - "WESTUS2:20180427T204953Z:7fe19678-a7b7-4ce5-be54-322988ef6c17" + "BRAZILUS:20200916T013133Z:5212c4d0-a93a-4669-8397-1bfbd9fb21e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1737,41 +4724,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Fri, 27 Apr 2018 20:49:53 GMT" + "Wed, 16 Sep 2020 01:31:32 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"d9343882-f6b0-40c2-ade7-009ea5bb8087\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:26:46.223Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/0f21027c-f3bc-4f36-96f3-8fb7ee025407?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY3YzA1NWMtNjMxMC00Mzc0LTk4NTItMTBlZjcxY2U1Zjg1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8wZjIxMDI3Yy1mM2JjLTRmMzYtOTZmMy04ZmI3ZWUwMjU0MDc/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/d9343882-f6b0-40c2-ade7-009ea5bb8087?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDkzNDM4ODItZjZiMC00MGMyLWFkZTctMDA5ZWE1YmI4MDg3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.14.0.0" + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, - "ResponseBody": "{\r\n \"name\": \"0f21027c-f3bc-4f36-96f3-8fb7ee025407\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-04-27T20:44:00.77Z\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "107" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -1780,16 +4764,19 @@ "15" ], "x-ms-request-id": [ - "dd81e183-6da1-4be6-b8ed-3dcf020b9474" + "909c6814-3988-44f6-9887-8c6dca08dfec" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "11930" ], "x-ms-correlation-request-id": [ - "53f30982-13c1-471c-b162-a50884f78457" + "4d84a7f3-711a-4332-8d95-4b5c73cb7b17" ], "x-ms-routing-request-id": [ - "WESTUS2:20180427T205009Z:53f30982-13c1-471c-b162-a50884f78457" + "BRAZILUS:20200916T013149Z:4d84a7f3-711a-4332-8d95-4b5c73cb7b17" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1797,41 +4784,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Fri, 27 Apr 2018 20:50:09 GMT" + "Wed, 16 Sep 2020 01:31:49 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"d9343882-f6b0-40c2-ade7-009ea5bb8087\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:26:46.223Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/0f21027c-f3bc-4f36-96f3-8fb7ee025407?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY3YzA1NWMtNjMxMC00Mzc0LTk4NTItMTBlZjcxY2U1Zjg1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8wZjIxMDI3Yy1mM2JjLTRmMzYtOTZmMy04ZmI3ZWUwMjU0MDc/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/d9343882-f6b0-40c2-ade7-009ea5bb8087?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDkzNDM4ODItZjZiMC00MGMyLWFkZTctMDA5ZWE1YmI4MDg3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.14.0.0" + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, - "ResponseBody": "{\r\n \"name\": \"0f21027c-f3bc-4f36-96f3-8fb7ee025407\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-04-27T20:44:00.77Z\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "107" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -1840,16 +4824,19 @@ "15" ], "x-ms-request-id": [ - "4491283c-e43b-4d2a-a594-9844935df7db" + "f5480c96-7718-40b8-9cce-9d3e2bf57821" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "11929" ], "x-ms-correlation-request-id": [ - "595eba3d-1e6f-4f9d-9af3-214b0a65e22c" + "ec901c0d-9be5-42a8-b736-87987409a3f0" ], "x-ms-routing-request-id": [ - "WESTUS2:20180427T205024Z:595eba3d-1e6f-4f9d-9af3-214b0a65e22c" + "BRAZILUS:20200916T013204Z:ec901c0d-9be5-42a8-b736-87987409a3f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1857,41 +4844,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Fri, 27 Apr 2018 20:50:24 GMT" + "Wed, 16 Sep 2020 01:32:03 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"d9343882-f6b0-40c2-ade7-009ea5bb8087\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:26:46.223Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/0f21027c-f3bc-4f36-96f3-8fb7ee025407?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY3YzA1NWMtNjMxMC00Mzc0LTk4NTItMTBlZjcxY2U1Zjg1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8wZjIxMDI3Yy1mM2JjLTRmMzYtOTZmMy04ZmI3ZWUwMjU0MDc/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/d9343882-f6b0-40c2-ade7-009ea5bb8087?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDkzNDM4ODItZjZiMC00MGMyLWFkZTctMDA5ZWE1YmI4MDg3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.14.0.0" + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, - "ResponseBody": "{\r\n \"name\": \"0f21027c-f3bc-4f36-96f3-8fb7ee025407\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-04-27T20:44:00.77Z\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "107" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -1900,16 +4884,19 @@ "15" ], "x-ms-request-id": [ - "1ad5e58c-0661-4bb1-8db3-1cb9e1ec3fc2" + "5d00ced1-f435-4360-8434-7ca47390414e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "11928" ], "x-ms-correlation-request-id": [ - "2ac4c0a9-8215-4842-9dc5-3b3d0559341e" + "d16b1315-9275-41db-88c0-e53e09da1a7b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180427T205039Z:2ac4c0a9-8215-4842-9dc5-3b3d0559341e" + "BRAZILUS:20200916T013219Z:d16b1315-9275-41db-88c0-e53e09da1a7b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1917,41 +4904,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Fri, 27 Apr 2018 20:50:39 GMT" + "Wed, 16 Sep 2020 01:32:18 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"d9343882-f6b0-40c2-ade7-009ea5bb8087\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:26:46.223Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/0f21027c-f3bc-4f36-96f3-8fb7ee025407?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY3YzA1NWMtNjMxMC00Mzc0LTk4NTItMTBlZjcxY2U1Zjg1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8wZjIxMDI3Yy1mM2JjLTRmMzYtOTZmMy04ZmI3ZWUwMjU0MDc/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/d9343882-f6b0-40c2-ade7-009ea5bb8087?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDkzNDM4ODItZjZiMC00MGMyLWFkZTctMDA5ZWE1YmI4MDg3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.14.0.0" + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, - "ResponseBody": "{\r\n \"name\": \"0f21027c-f3bc-4f36-96f3-8fb7ee025407\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-04-27T20:44:00.77Z\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "107" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -1960,16 +4944,19 @@ "15" ], "x-ms-request-id": [ - "a3cbdf3f-0ac8-4dbb-9758-6cd860beb5c3" + "97a18262-175c-4bf7-afb8-42f5cbd58f32" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "11927" ], "x-ms-correlation-request-id": [ - "c613be69-0717-4667-bf73-c8a8aaab1d6c" + "0a32d51b-4c4b-4464-bf86-a6801f7826eb" ], "x-ms-routing-request-id": [ - "WESTUS2:20180427T205055Z:c613be69-0717-4667-bf73-c8a8aaab1d6c" + "BRAZILUS:20200916T013234Z:0a32d51b-4c4b-4464-bf86-a6801f7826eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1977,41 +4964,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Fri, 27 Apr 2018 20:50:54 GMT" + "Wed, 16 Sep 2020 01:32:33 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"d9343882-f6b0-40c2-ade7-009ea5bb8087\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:26:46.223Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/0f21027c-f3bc-4f36-96f3-8fb7ee025407?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY3YzA1NWMtNjMxMC00Mzc0LTk4NTItMTBlZjcxY2U1Zjg1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8wZjIxMDI3Yy1mM2JjLTRmMzYtOTZmMy04ZmI3ZWUwMjU0MDc/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/d9343882-f6b0-40c2-ade7-009ea5bb8087?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDkzNDM4ODItZjZiMC00MGMyLWFkZTctMDA5ZWE1YmI4MDg3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.14.0.0" + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, - "ResponseBody": "{\r\n \"name\": \"0f21027c-f3bc-4f36-96f3-8fb7ee025407\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2018-04-27T20:44:00.77Z\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "106" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -2020,16 +5004,19 @@ "15" ], "x-ms-request-id": [ - "bc8bf648-b3b9-499d-baa3-9ef0235f9b13" + "dd3f186a-aad2-412d-9827-74b3278778e6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "11926" ], "x-ms-correlation-request-id": [ - "c06b0ea8-9e14-4989-b54f-f2d5c587d249" + "25ef87c4-5bf5-4b5a-b57d-b02e07025e5d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180427T205110Z:c06b0ea8-9e14-4989-b54f-f2d5c587d249" + "BRAZILUS:20200916T013249Z:25ef87c4-5bf5-4b5a-b57d-b02e07025e5d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2037,56 +5024,59 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Fri, 27 Apr 2018 20:51:09 GMT" + "Wed, 16 Sep 2020 01:32:49 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"d9343882-f6b0-40c2-ade7-009ea5bb8087\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:26:46.223Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/resourceGroups/payi-test/providers/Microsoft.Sql/servers/payi-testsvr/databases/powershell_db_deleted?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY3YzA1NWMtNjMxMC00Mzc0LTk4NTItMTBlZjcxY2U1Zjg1L3Jlc291cmNlR3JvdXBzL3BheWktdGVzdC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BheWktdGVzdHN2ci9kYXRhYmFzZXMvcG93ZXJzaGVsbF9kYl9kZWxldGVkP2FwaS12ZXJzaW9uPTIwMTctMTAtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/d9343882-f6b0-40c2-ade7-009ea5bb8087?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDkzNDM4ODItZjZiMC00MGMyLWFkZTctMDA5ZWE1YmI4MDg3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.14.0.0" + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"c1dcfb73-3481-4621-ae46-f5a44db7210b\",\r\n \"creationDate\": \"2018-04-27T20:44:01.283Z\",\r\n \"currentServiceObjectiveName\": \"S0\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"defaultSecondaryLocation\": \"East Asia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2018-04-27T21:20:38.077Z\",\r\n \"readScale\": \"Disabled\",\r\n \"currentSku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/resourceGroups/payi-test/providers/Microsoft.Sql/servers/payi-testsvr/databases/powershell_db_deleted\",\r\n \"name\": \"powershell_db_deleted\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "857" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Retry-After": [ + "15" + ], "x-ms-request-id": [ - "68ff6158-df09-4a7e-a5f0-7ad9111d1384" + "4d5cec42-8dfe-42d7-9d87-6ffa51f241ed" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "11925" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "c7f21b0d-2cb2-4a4a-a318-dd093b5857e4" + "483212e8-fff4-4f5b-8bb5-1e8b43c5b793" ], "x-ms-routing-request-id": [ - "WESTUS2:20180427T205110Z:c7f21b0d-2cb2-4a4a-a318-dd093b5857e4" + "BRAZILUS:20200916T013304Z:483212e8-fff4-4f5b-8bb5-1e8b43c5b793" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2094,53 +5084,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Fri, 27 Apr 2018 20:51:09 GMT" + "Wed, 16 Sep 2020 01:33:04 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"d9343882-f6b0-40c2-ade7-009ea5bb8087\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:26:46.223Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/resourceGroups/payi-test/providers/Microsoft.Sql/servers/payi-testsvr/databases/powershell_db_deleted_vcore?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY3YzA1NWMtNjMxMC00Mzc0LTk4NTItMTBlZjcxY2U1Zjg1L3Jlc291cmNlR3JvdXBzL3BheWktdGVzdC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BheWktdGVzdHN2ci9kYXRhYmFzZXMvcG93ZXJzaGVsbF9kYl9kZWxldGVkX3Zjb3JlP2FwaS12ZXJzaW9uPTIwMTctMTAtMDEtcHJldmlldw==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"GP\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen4\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"createMode\": \"Restore\",\r\n \"restorePointInTime\": \"2018-04-20T20:21:37.397Z\",\r\n \"recoveryServicesRecoveryPointId\": \"/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/resourceGroups/payi-test/providers/Microsoft.Sql/servers/payi-testsvr/restorableDroppedDatabases/powershell_db_georestored,131687292973970000\",\r\n \"restorableDroppedDatabaseId\": \"/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/resourceGroups/payi-test/providers/Microsoft.Sql/servers/payi-testsvr/restorableDroppedDatabases/powershell_db_georestored,131687292973970000\"\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/d9343882-f6b0-40c2-ade7-009ea5bb8087?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDkzNDM4ODItZjZiMC00MGMyLWFkZTctMDA5ZWE1YmI4MDg3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "724" - ], - "x-ms-client-request-id": [ - "86e53a1a-fd94-45b8-a3dd-f489998718f1" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.14.0.0" + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateRestoreRequest\",\r\n \"startTime\": \"2018-04-27T20:51:14.24Z\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "74" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -2148,20 +5123,20 @@ "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/8f06369d-e0c4-4f44-8428-f6e782f41168?api-version=2017-10-01-preview" - ], "x-ms-request-id": [ - "a92e329a-e3ae-4316-b2a9-d635818b389a" + "3a0951ce-be78-4431-a358-7ae8d152752d" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11924" ], "x-ms-correlation-request-id": [ - "54495b73-933d-4d93-b665-cdd4e5372f1e" + "f7bba79c-78c7-4195-b571-60b07275242a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180427T205114Z:54495b73-933d-4d93-b665-cdd4e5372f1e" + "BRAZILUS:20200916T013319Z:f7bba79c-78c7-4195-b571-60b07275242a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2169,44 +5144,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Fri, 27 Apr 2018 20:51:13 GMT" + "Wed, 16 Sep 2020 01:33:19 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/providers/Microsoft.Sql/locations/southeastasia/databaseOperationResults/8f06369d-e0c4-4f44-8428-f6e782f41168?api-version=2017-10-01-preview" + "Content-Length": [ + "108" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 202 + "ResponseBody": "{\r\n \"name\": \"d9343882-f6b0-40c2-ade7-009ea5bb8087\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:26:46.223Z\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/8f06369d-e0c4-4f44-8428-f6e782f41168?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY3YzA1NWMtNjMxMC00Mzc0LTk4NTItMTBlZjcxY2U1Zjg1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi84ZjA2MzY5ZC1lMGM0LTRmNDQtODQyOC1mNmU3ODJmNDExNjg/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/d9343882-f6b0-40c2-ade7-009ea5bb8087?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDkzNDM4ODItZjZiMC00MGMyLWFkZTctMDA5ZWE1YmI4MDg3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.14.0.0" + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, - "ResponseBody": "{\r\n \"name\": \"8f06369d-e0c4-4f44-8428-f6e782f41168\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-04-27T20:51:14.24Z\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "107" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -2215,16 +5184,19 @@ "15" ], "x-ms-request-id": [ - "6bc95b48-4587-4615-8c67-9a3ef91a8a30" + "00984705-8369-4a4c-8566-4c3a5c7df2a4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "11923" ], "x-ms-correlation-request-id": [ - "fe5a58ec-e0c2-42a0-be20-21ce4e7741da" + "3f4b51d3-a0f1-470e-bd9a-38c5bff935c0" ], "x-ms-routing-request-id": [ - "WESTUS2:20180427T205129Z:fe5a58ec-e0c2-42a0-be20-21ce4e7741da" + "BRAZILUS:20200916T013334Z:3f4b51d3-a0f1-470e-bd9a-38c5bff935c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2232,41 +5204,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Fri, 27 Apr 2018 20:51:29 GMT" + "Wed, 16 Sep 2020 01:33:34 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"d9343882-f6b0-40c2-ade7-009ea5bb8087\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:26:46.223Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/8f06369d-e0c4-4f44-8428-f6e782f41168?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY3YzA1NWMtNjMxMC00Mzc0LTk4NTItMTBlZjcxY2U1Zjg1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi84ZjA2MzY5ZC1lMGM0LTRmNDQtODQyOC1mNmU3ODJmNDExNjg/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/d9343882-f6b0-40c2-ade7-009ea5bb8087?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDkzNDM4ODItZjZiMC00MGMyLWFkZTctMDA5ZWE1YmI4MDg3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.14.0.0" + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, - "ResponseBody": "{\r\n \"name\": \"8f06369d-e0c4-4f44-8428-f6e782f41168\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-04-27T20:51:14.24Z\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "107" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -2275,16 +5244,19 @@ "15" ], "x-ms-request-id": [ - "d865f28d-48c9-4236-b1dc-7221842be50e" + "ecba273f-33c6-4258-b073-4191aa65c687" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "11922" ], "x-ms-correlation-request-id": [ - "b035e340-4ec2-4a48-8644-4633ca3cb88d" + "5622fd3a-ed67-44bf-b3f7-4799ff778bdf" ], "x-ms-routing-request-id": [ - "WESTUS2:20180427T205145Z:b035e340-4ec2-4a48-8644-4633ca3cb88d" + "BRAZILUS:20200916T013350Z:5622fd3a-ed67-44bf-b3f7-4799ff778bdf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2292,41 +5264,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Fri, 27 Apr 2018 20:51:45 GMT" + "Wed, 16 Sep 2020 01:33:49 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"d9343882-f6b0-40c2-ade7-009ea5bb8087\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:26:46.223Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/8f06369d-e0c4-4f44-8428-f6e782f41168?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY3YzA1NWMtNjMxMC00Mzc0LTk4NTItMTBlZjcxY2U1Zjg1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi84ZjA2MzY5ZC1lMGM0LTRmNDQtODQyOC1mNmU3ODJmNDExNjg/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/d9343882-f6b0-40c2-ade7-009ea5bb8087?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDkzNDM4ODItZjZiMC00MGMyLWFkZTctMDA5ZWE1YmI4MDg3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.14.0.0" + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, - "ResponseBody": "{\r\n \"name\": \"8f06369d-e0c4-4f44-8428-f6e782f41168\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-04-27T20:51:14.24Z\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "107" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -2335,16 +5304,19 @@ "15" ], "x-ms-request-id": [ - "13fcbc75-b644-4825-b351-891cc731377e" + "dd027547-5c0c-472e-8c1d-c0d4855ac900" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" + "11921" ], "x-ms-correlation-request-id": [ - "7e83e2bb-37db-4571-afe3-2f77d669771a" + "cee6a83a-416d-462a-9b25-fcf649bc0725" ], "x-ms-routing-request-id": [ - "WESTUS2:20180427T205201Z:7e83e2bb-37db-4571-afe3-2f77d669771a" + "BRAZILUS:20200916T013405Z:cee6a83a-416d-462a-9b25-fcf649bc0725" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2352,41 +5324,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Fri, 27 Apr 2018 20:52:00 GMT" + "Wed, 16 Sep 2020 01:34:04 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"d9343882-f6b0-40c2-ade7-009ea5bb8087\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:26:46.223Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/8f06369d-e0c4-4f44-8428-f6e782f41168?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY3YzA1NWMtNjMxMC00Mzc0LTk4NTItMTBlZjcxY2U1Zjg1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi84ZjA2MzY5ZC1lMGM0LTRmNDQtODQyOC1mNmU3ODJmNDExNjg/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/d9343882-f6b0-40c2-ade7-009ea5bb8087?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDkzNDM4ODItZjZiMC00MGMyLWFkZTctMDA5ZWE1YmI4MDg3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.14.0.0" + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, - "ResponseBody": "{\r\n \"name\": \"8f06369d-e0c4-4f44-8428-f6e782f41168\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-04-27T20:51:14.24Z\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "107" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -2395,16 +5364,19 @@ "15" ], "x-ms-request-id": [ - "ce696926-afba-4db3-8d64-feb7fb4f8960" + "7de30507-ef1a-44b5-9e21-2829fe9e6e87" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "11920" ], "x-ms-correlation-request-id": [ - "2b6b261b-f900-4f31-bf7a-6df6edce7175" + "1ccc1987-028d-48bd-a79c-b87733ccc4d3" ], "x-ms-routing-request-id": [ - "WESTUS2:20180427T205216Z:2b6b261b-f900-4f31-bf7a-6df6edce7175" + "BRAZILUS:20200916T013420Z:1ccc1987-028d-48bd-a79c-b87733ccc4d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2412,41 +5384,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Fri, 27 Apr 2018 20:52:16 GMT" + "Wed, 16 Sep 2020 01:34:20 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"d9343882-f6b0-40c2-ade7-009ea5bb8087\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:26:46.223Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/8f06369d-e0c4-4f44-8428-f6e782f41168?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY3YzA1NWMtNjMxMC00Mzc0LTk4NTItMTBlZjcxY2U1Zjg1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi84ZjA2MzY5ZC1lMGM0LTRmNDQtODQyOC1mNmU3ODJmNDExNjg/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/d9343882-f6b0-40c2-ade7-009ea5bb8087?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDkzNDM4ODItZjZiMC00MGMyLWFkZTctMDA5ZWE1YmI4MDg3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.14.0.0" + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, - "ResponseBody": "{\r\n \"name\": \"8f06369d-e0c4-4f44-8428-f6e782f41168\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-04-27T20:51:14.24Z\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "107" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -2455,16 +5424,19 @@ "15" ], "x-ms-request-id": [ - "bdc4a37b-d6ca-468a-a754-5b1782df1a94" + "fe7af89f-757b-425e-aaa4-cf61c9883b60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "11919" ], "x-ms-correlation-request-id": [ - "2bafa6ff-9388-47d2-8d1d-17106093a533" + "86591753-6cd0-4895-9abd-1bf2a2f5f1ee" ], "x-ms-routing-request-id": [ - "WESTUS2:20180427T205231Z:2bafa6ff-9388-47d2-8d1d-17106093a533" + "BRAZILUS:20200916T013435Z:86591753-6cd0-4895-9abd-1bf2a2f5f1ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2472,41 +5444,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Fri, 27 Apr 2018 20:52:31 GMT" + "Wed, 16 Sep 2020 01:34:34 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"d9343882-f6b0-40c2-ade7-009ea5bb8087\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:26:46.223Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/8f06369d-e0c4-4f44-8428-f6e782f41168?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY3YzA1NWMtNjMxMC00Mzc0LTk4NTItMTBlZjcxY2U1Zjg1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi84ZjA2MzY5ZC1lMGM0LTRmNDQtODQyOC1mNmU3ODJmNDExNjg/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/d9343882-f6b0-40c2-ade7-009ea5bb8087?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDkzNDM4ODItZjZiMC00MGMyLWFkZTctMDA5ZWE1YmI4MDg3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.14.0.0" + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, - "ResponseBody": "{\r\n \"name\": \"8f06369d-e0c4-4f44-8428-f6e782f41168\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-04-27T20:51:14.24Z\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "107" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -2515,16 +5484,19 @@ "15" ], "x-ms-request-id": [ - "c70d44a2-7345-4f95-9476-da8294315f1a" + "786c2a4a-f03e-4bc7-a184-0ba2e610b3ff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "11918" ], "x-ms-correlation-request-id": [ - "8e9d17d6-43fc-46b5-9b27-6f591626fdfd" + "1cd37edd-f88c-4bbe-818c-f50772ac2162" ], "x-ms-routing-request-id": [ - "WESTUS2:20180427T205246Z:8e9d17d6-43fc-46b5-9b27-6f591626fdfd" + "BRAZILUS:20200916T013450Z:1cd37edd-f88c-4bbe-818c-f50772ac2162" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2532,41 +5504,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Fri, 27 Apr 2018 20:52:46 GMT" + "Wed, 16 Sep 2020 01:34:50 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"d9343882-f6b0-40c2-ade7-009ea5bb8087\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:26:46.223Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/8f06369d-e0c4-4f44-8428-f6e782f41168?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY3YzA1NWMtNjMxMC00Mzc0LTk4NTItMTBlZjcxY2U1Zjg1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi84ZjA2MzY5ZC1lMGM0LTRmNDQtODQyOC1mNmU3ODJmNDExNjg/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/d9343882-f6b0-40c2-ade7-009ea5bb8087?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDkzNDM4ODItZjZiMC00MGMyLWFkZTctMDA5ZWE1YmI4MDg3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.14.0.0" + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, - "ResponseBody": "{\r\n \"name\": \"8f06369d-e0c4-4f44-8428-f6e782f41168\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-04-27T20:51:14.24Z\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "107" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -2575,16 +5544,19 @@ "15" ], "x-ms-request-id": [ - "4ddf64f4-4032-44ad-b0a4-a32f7cd4a9fb" + "8c2eb114-afc4-4650-bf7c-f35d98b54484" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "11932" ], "x-ms-correlation-request-id": [ - "62d644f1-75b0-4792-8ab1-553f098baefe" + "48ec282d-fae8-42b4-844c-0260babdb1e8" ], "x-ms-routing-request-id": [ - "WESTUS2:20180427T205302Z:62d644f1-75b0-4792-8ab1-553f098baefe" + "BRAZILUS:20200916T013505Z:48ec282d-fae8-42b4-844c-0260babdb1e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2592,41 +5564,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Fri, 27 Apr 2018 20:53:01 GMT" + "Wed, 16 Sep 2020 01:35:04 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"d9343882-f6b0-40c2-ade7-009ea5bb8087\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:26:46.223Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/8f06369d-e0c4-4f44-8428-f6e782f41168?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY3YzA1NWMtNjMxMC00Mzc0LTk4NTItMTBlZjcxY2U1Zjg1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi84ZjA2MzY5ZC1lMGM0LTRmNDQtODQyOC1mNmU3ODJmNDExNjg/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/d9343882-f6b0-40c2-ade7-009ea5bb8087?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDkzNDM4ODItZjZiMC00MGMyLWFkZTctMDA5ZWE1YmI4MDg3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.14.0.0" + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, - "ResponseBody": "{\r\n \"name\": \"8f06369d-e0c4-4f44-8428-f6e782f41168\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-04-27T20:51:14.24Z\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "107" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -2635,16 +5604,19 @@ "15" ], "x-ms-request-id": [ - "be276636-ca30-48e2-a76c-5d754003a083" + "5ac40511-9c77-4d72-8400-4c6c4a09a18e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" + "11931" ], "x-ms-correlation-request-id": [ - "819c02df-c6ed-46ca-be50-8cc30faf435d" + "824a37ee-2102-4ca0-a7aa-e7b5509b6484" ], "x-ms-routing-request-id": [ - "WESTUS2:20180427T205318Z:819c02df-c6ed-46ca-be50-8cc30faf435d" + "BRAZILUS:20200916T013520Z:824a37ee-2102-4ca0-a7aa-e7b5509b6484" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2652,41 +5624,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Fri, 27 Apr 2018 20:53:17 GMT" + "Wed, 16 Sep 2020 01:35:20 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"d9343882-f6b0-40c2-ade7-009ea5bb8087\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:26:46.223Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/8f06369d-e0c4-4f44-8428-f6e782f41168?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY3YzA1NWMtNjMxMC00Mzc0LTk4NTItMTBlZjcxY2U1Zjg1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi84ZjA2MzY5ZC1lMGM0LTRmNDQtODQyOC1mNmU3ODJmNDExNjg/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/d9343882-f6b0-40c2-ade7-009ea5bb8087?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDkzNDM4ODItZjZiMC00MGMyLWFkZTctMDA5ZWE1YmI4MDg3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.14.0.0" + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, - "ResponseBody": "{\r\n \"name\": \"8f06369d-e0c4-4f44-8428-f6e782f41168\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-04-27T20:51:14.24Z\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "107" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -2695,16 +5664,19 @@ "15" ], "x-ms-request-id": [ - "e20b794d-acef-4553-86f8-6ebbe51ac401" + "e5aa63c5-1ae4-44b2-a823-195b2c4a0a7d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "11930" ], "x-ms-correlation-request-id": [ - "40df4c21-e0d9-46ee-955a-1bd356dc7357" + "2b9ccaee-032d-42a7-a48d-ac5621ebbf30" ], "x-ms-routing-request-id": [ - "WESTUS2:20180427T205333Z:40df4c21-e0d9-46ee-955a-1bd356dc7357" + "BRAZILUS:20200916T013536Z:2b9ccaee-032d-42a7-a48d-ac5621ebbf30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2712,41 +5684,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Fri, 27 Apr 2018 20:53:32 GMT" + "Wed, 16 Sep 2020 01:35:35 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"d9343882-f6b0-40c2-ade7-009ea5bb8087\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:26:46.223Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/8f06369d-e0c4-4f44-8428-f6e782f41168?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY3YzA1NWMtNjMxMC00Mzc0LTk4NTItMTBlZjcxY2U1Zjg1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi84ZjA2MzY5ZC1lMGM0LTRmNDQtODQyOC1mNmU3ODJmNDExNjg/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/d9343882-f6b0-40c2-ade7-009ea5bb8087?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDkzNDM4ODItZjZiMC00MGMyLWFkZTctMDA5ZWE1YmI4MDg3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.14.0.0" + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, - "ResponseBody": "{\r\n \"name\": \"8f06369d-e0c4-4f44-8428-f6e782f41168\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-04-27T20:51:14.24Z\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "107" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -2755,16 +5724,19 @@ "15" ], "x-ms-request-id": [ - "e5ad1392-6357-4216-b925-479bb7d2a34d" + "20cb4d5a-e488-458d-a05e-870c26389521" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "11929" ], "x-ms-correlation-request-id": [ - "bd85e930-9079-4b00-a569-fe8c10883914" + "549e4180-a028-4647-8889-c52c3fdc47d4" ], "x-ms-routing-request-id": [ - "WESTUS2:20180427T205348Z:bd85e930-9079-4b00-a569-fe8c10883914" + "BRAZILUS:20200916T013551Z:549e4180-a028-4647-8889-c52c3fdc47d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2772,41 +5744,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Fri, 27 Apr 2018 20:53:48 GMT" + "Wed, 16 Sep 2020 01:35:50 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"d9343882-f6b0-40c2-ade7-009ea5bb8087\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:26:46.223Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/8f06369d-e0c4-4f44-8428-f6e782f41168?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY3YzA1NWMtNjMxMC00Mzc0LTk4NTItMTBlZjcxY2U1Zjg1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi84ZjA2MzY5ZC1lMGM0LTRmNDQtODQyOC1mNmU3ODJmNDExNjg/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/d9343882-f6b0-40c2-ade7-009ea5bb8087?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDkzNDM4ODItZjZiMC00MGMyLWFkZTctMDA5ZWE1YmI4MDg3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.14.0.0" + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, - "ResponseBody": "{\r\n \"name\": \"8f06369d-e0c4-4f44-8428-f6e782f41168\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-04-27T20:51:14.24Z\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "107" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -2815,16 +5784,19 @@ "15" ], "x-ms-request-id": [ - "a9f273e6-4bf4-40ea-a11a-1230611413d1" + "c84f7f5f-3a13-4e5c-b143-32726bd7307b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" + "11928" ], "x-ms-correlation-request-id": [ - "a46c05d7-e098-4a6d-98c2-ef20222a73f1" + "212b6c40-e623-447a-ae54-322234d4d604" ], "x-ms-routing-request-id": [ - "WESTUS2:20180427T205403Z:a46c05d7-e098-4a6d-98c2-ef20222a73f1" + "BRAZILUS:20200916T013606Z:212b6c40-e623-447a-ae54-322234d4d604" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2832,41 +5804,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Fri, 27 Apr 2018 20:54:02 GMT" + "Wed, 16 Sep 2020 01:36:05 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"d9343882-f6b0-40c2-ade7-009ea5bb8087\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:26:46.223Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/8f06369d-e0c4-4f44-8428-f6e782f41168?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY3YzA1NWMtNjMxMC00Mzc0LTk4NTItMTBlZjcxY2U1Zjg1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi84ZjA2MzY5ZC1lMGM0LTRmNDQtODQyOC1mNmU3ODJmNDExNjg/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/d9343882-f6b0-40c2-ade7-009ea5bb8087?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDkzNDM4ODItZjZiMC00MGMyLWFkZTctMDA5ZWE1YmI4MDg3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.14.0.0" + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, - "ResponseBody": "{\r\n \"name\": \"8f06369d-e0c4-4f44-8428-f6e782f41168\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-04-27T20:51:14.24Z\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "107" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -2875,16 +5844,19 @@ "15" ], "x-ms-request-id": [ - "0cc41151-c091-43fb-8315-acd0a6cd5c09" + "0985f87c-e374-40e8-bd51-057becc61af6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "11927" ], "x-ms-correlation-request-id": [ - "4e7f32ff-6529-417c-b17f-6c87bcf9b8e4" + "6efb1af2-6c22-4dec-ab2d-d4c9082e574d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180427T205418Z:4e7f32ff-6529-417c-b17f-6c87bcf9b8e4" + "BRAZILUS:20200916T013621Z:6efb1af2-6c22-4dec-ab2d-d4c9082e574d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2892,41 +5864,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Fri, 27 Apr 2018 20:54:18 GMT" + "Wed, 16 Sep 2020 01:36:21 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"d9343882-f6b0-40c2-ade7-009ea5bb8087\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-16T01:26:46.223Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/8f06369d-e0c4-4f44-8428-f6e782f41168?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY3YzA1NWMtNjMxMC00Mzc0LTk4NTItMTBlZjcxY2U1Zjg1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi84ZjA2MzY5ZC1lMGM0LTRmNDQtODQyOC1mNmU3ODJmNDExNjg/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/d9343882-f6b0-40c2-ade7-009ea5bb8087?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDkzNDM4ODItZjZiMC00MGMyLWFkZTctMDA5ZWE1YmI4MDg3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.14.0.0" + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, - "ResponseBody": "{\r\n \"name\": \"8f06369d-e0c4-4f44-8428-f6e782f41168\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2018-04-27T20:51:14.24Z\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "106" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -2935,16 +5904,19 @@ "15" ], "x-ms-request-id": [ - "066f78e0-2ffc-4308-8b57-d477cb2d0d28" + "e8301bc5-aa8c-4c06-96af-d2e6cf1e6ac8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" + "11926" ], "x-ms-correlation-request-id": [ - "11d58c4f-9bdc-4941-b29e-6e5b2ee0dc01" + "e7adf66a-d256-4a32-be84-dd78e68d4a91" ], "x-ms-routing-request-id": [ - "WESTUS2:20180427T205434Z:11d58c4f-9bdc-4941-b29e-6e5b2ee0dc01" + "BRAZILUS:20200916T013636Z:e7adf66a-d256-4a32-be84-dd78e68d4a91" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2952,56 +5924,56 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Fri, 27 Apr 2018 20:54:33 GMT" + "Wed, 16 Sep 2020 01:36:36 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"d9343882-f6b0-40c2-ade7-009ea5bb8087\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-16T01:26:46.223Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/resourceGroups/payi-test/providers/Microsoft.Sql/servers/payi-testsvr/databases/powershell_db_deleted_vcore?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY3YzA1NWMtNjMxMC00Mzc0LTk4NTItMTBlZjcxY2U1Zjg1L3Jlc291cmNlR3JvdXBzL3BheWktdGVzdC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BheWktdGVzdHN2ci9kYXRhYmFzZXMvcG93ZXJzaGVsbF9kYl9kZWxldGVkX3Zjb3JlP2FwaS12ZXJzaW9uPTIwMTctMTAtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/servers/ps4341/databases/powershell_db_deleted_vcore?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3BzNjMwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNDM0MS9kYXRhYmFzZXMvcG93ZXJzaGVsbF9kYl9kZWxldGVkX3Zjb3JlP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2633.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.14.0.0" + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen4\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen4\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"e418a82d-cbca-4799-8ed5-cb24870bcd7a\",\r\n \"creationDate\": \"2018-04-27T20:51:14.99Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen4_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen4_2\",\r\n \"defaultSecondaryLocation\": \"East Asia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2018-04-27T21:24:03.363Z\",\r\n \"readScale\": \"Disabled\",\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen4\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen4\",\r\n \"capacity\": 2\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/df7c055c-6310-4374-9852-10ef71ce5f85/resourceGroups/payi-test/providers/Microsoft.Sql/servers/payi-testsvr/databases/powershell_db_deleted_vcore\",\r\n \"name\": \"powershell_db_deleted_vcore\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "927" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "a976201d-d3e4-4564-b982-fea1c4ea6f19" + "4005256e-0770-48d9-927a-198ec313895d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" + "11925" ], "x-ms-correlation-request-id": [ - "9da9093b-d04b-46d4-ad4d-6ad93a95a3dc" + "4f38d1a4-bc1f-4040-9040-257a6752124f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180427T205435Z:9da9093b-d04b-46d4-ad4d-6ad93a95a3dc" + "BRAZILUS:20200916T013636Z:4f38d1a4-bc1f-4040-9040-257a6752124f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3009,23 +5981,31 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Fri, 27 Apr 2018 20:54:34 GMT" + "Wed, 16 Sep 2020 01:36:36 GMT" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "1025" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"d16d3676-fbb4-4340-b6e2-df1eb77e1568\",\r\n \"creationDate\": \"2020-09-16T01:35:59.35Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 10307502080,\r\n \"earliestRestoreDate\": \"2020-09-16T02:05:59.35Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/ps6306/providers/Microsoft.Sql/servers/ps4341/databases/powershell_db_deleted_vcore\",\r\n \"name\": \"powershell_db_deleted_vcore\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 } ], - "Names": {}, + "Names": { + "Test-RestoreDeletedDatabaseBackup": [ + "ps6306", + "ps4341", + "ps6031" + ] + }, "Variables": { - "SubscriptionId": "df7c055c-6310-4374-9852-10ef71ce5f85", - "User": "payi@microsoft.com", - "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47" + "SubscriptionId": "b75889fa-6661-44e0-a844-cd96ec938991" } } \ No newline at end of file diff --git a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudStretchTests/TestStretchDatabaseUpdate.json b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudStretchTests/TestStretchDatabaseUpdate.json index fd0aa89ecd5e..fac1c68d773b 100644 --- a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudStretchTests/TestStretchDatabaseUpdate.json +++ b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudStretchTests/TestStretchDatabaseUpdate.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9a9c8dad-504c-4d53-866a-2e7996c1b591" + "c0d13a25-5ee5-4b72-9b77-f3c8c0f150ef" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -27,16 +27,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11989" ], "x-ms-request-id": [ - "8db00422-9eca-4894-a9ce-19a3d6fcf115" + "bf6fdad2-eea5-4051-9108-4a380661a68b" ], "x-ms-correlation-request-id": [ - "8db00422-9eca-4894-a9ce-19a3d6fcf115" + "bf6fdad2-eea5-4051-9108-4a380661a68b" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T104442Z:8db00422-9eca-4894-a9ce-19a3d6fcf115" + "WESTUS:20200925T002732Z:bf6fdad2-eea5-4051-9108-4a380661a68b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:44:41 GMT" + "Fri, 25 Sep 2020 00:27:31 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -61,19 +61,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps7070?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzNzA3MD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps9543?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzOTU0Mz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d4993229-961b-4210-8d07-caea15fbcbe0" + "24f66c00-265f-4d6c-bd38-47d49fce2f5a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -96,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "ccf7098a-f42d-45e9-b9cd-0754861e9dca" + "0c40ebda-98ea-49fe-a2aa-160af911783b" ], "x-ms-correlation-request-id": [ - "ccf7098a-f42d-45e9-b9cd-0754861e9dca" + "0c40ebda-98ea-49fe-a2aa-160af911783b" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T104443Z:ccf7098a-f42d-45e9-b9cd-0754861e9dca" + "WESTUS:20200925T002733Z:0c40ebda-98ea-49fe-a2aa-160af911783b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:44:42 GMT" + "Fri, 25 Sep 2020 00:27:32 GMT" ], "Content-Length": [ "165" @@ -123,23 +123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070\",\r\n \"name\": \"ps7070\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543\",\r\n \"name\": \"ps9543\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/servers/ps7831?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzA3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzgzMT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/servers/ps6075?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjA3NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f29b7ce1-4cb2-4011-b7bd-d06004b981a9" + "6ed2d570-a897-40af-88b2-f80c5521fca7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -156,13 +156,13 @@ "gateway" ], "x-ms-request-id": [ - "ef2aa2cc-21d6-4f0d-a5cb-6b88d9ef125f" + "19ea7208-892e-4785-bec8-9982fc9d1a9f" ], "x-ms-correlation-request-id": [ - "ef2aa2cc-21d6-4f0d-a5cb-6b88d9ef125f" + "19ea7208-892e-4785-bec8-9982fc9d1a9f" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T104443Z:ef2aa2cc-21d6-4f0d-a5cb-6b88d9ef125f" + "WESTUS:20200925T002733Z:19ea7208-892e-4785-bec8-9982fc9d1a9f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -171,7 +171,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:44:42 GMT" + "Fri, 25 Sep 2020 00:27:33 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -183,17 +183,17 @@ "206" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps7831' under resource group 'ps7070' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps6075' under resource group 'ps9543' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/servers/ps7831?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzA3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzgzMT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/servers/ps6075?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjA3NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -207,7 +207,7 @@ "no-cache" ], "x-ms-request-id": [ - "987ffe25-5e04-49d4-b76d-8ea1a02ae6af" + "d9392890-3d8f-4251-94c6-0b369a183760" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -216,10 +216,10 @@ "11991" ], "x-ms-correlation-request-id": [ - "5b3dcea3-8f50-4514-9fb6-21e7793597ec" + "0e0d172e-9083-422f-a7e3-b9b3f170f037" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T104531Z:5b3dcea3-8f50-4514-9fb6-21e7793597ec" + "WESTUS:20200925T002822Z:0e0d172e-9083-422f-a7e3-b9b3f170f037" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -228,7 +228,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:45:31 GMT" + "Fri, 25 Sep 2020 00:28:21 GMT" ], "Content-Length": [ "408" @@ -240,23 +240,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps7831.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/servers/ps7831\",\r\n \"name\": \"ps7831\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps6075.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/servers/ps6075\",\r\n \"name\": \"ps6075\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/servers/ps7831?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzA3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzgzMT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/servers/ps6075?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjA3NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "36f1b70b-1940-4788-897d-c9d14db1c156" + "ef611f4c-b617-480b-a1e8-832b3d192fbd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -270,7 +270,7 @@ "no-cache" ], "x-ms-request-id": [ - "96341dfb-dbc2-4994-b437-dc60df537a8d" + "88cf3dc7-0221-4ef4-808c-ec3280d0cde4" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -279,10 +279,10 @@ "11990" ], "x-ms-correlation-request-id": [ - "e9d50d53-4865-492e-8ffc-cba7a7672f29" + "906a4985-9d2a-4048-b6b4-d86f7aeca583" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T104532Z:e9d50d53-4865-492e-8ffc-cba7a7672f29" + "WESTUS:20200925T002822Z:906a4985-9d2a-4048-b6b4-d86f7aeca583" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -291,7 +291,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:45:31 GMT" + "Fri, 25 Sep 2020 00:28:21 GMT" ], "Content-Length": [ "408" @@ -303,23 +303,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps7831.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/servers/ps7831\",\r\n \"name\": \"ps7831\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps6075.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/servers/ps6075\",\r\n \"name\": \"ps6075\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/servers/ps7831?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzA3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzgzMT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/servers/ps6075?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjA3NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7adfb6ba-0e4c-407d-9786-2b8a5eb51736" + "26a09822-f30e-4820-af38-b62d5e26fa3d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -333,7 +333,7 @@ "no-cache" ], "x-ms-request-id": [ - "4db3672b-fac1-4c2a-9afc-708f56597bdb" + "a6a44840-e39c-4d7a-a23f-9a963daac6ad" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -342,10 +342,73 @@ "11988" ], "x-ms-correlation-request-id": [ - "8668ab67-a389-4bc8-bfab-09e51070cc01" + "163e6b1d-f88f-47f6-935b-b805c8d27feb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200925T002822Z:163e6b1d-f88f-47f6-935b-b805c8d27feb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 25 Sep 2020 00:28:22 GMT" + ], + "Content-Length": [ + "408" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps6075.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/servers/ps6075\",\r\n \"name\": \"ps6075\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/servers/ps6075?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjA3NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aaba7a3f-ba0b-472c-9f81-b378ff90d61e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "745e9ad2-5d27-4b32-ad8c-880db9708516" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "x-ms-correlation-request-id": [ + "42042210-e870-45ca-a5a6-ae2df4768f7b" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T104532Z:8668ab67-a389-4bc8-bfab-09e51070cc01" + "WESTUS:20200925T003232Z:42042210-e870-45ca-a5a6-ae2df4768f7b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -354,7 +417,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:45:31 GMT" + "Fri, 25 Sep 2020 00:32:31 GMT" ], "Content-Length": [ "408" @@ -366,23 +429,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps7831.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/servers/ps7831\",\r\n \"name\": \"ps7831\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps6075.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/servers/ps6075\",\r\n \"name\": \"ps6075\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/servers/ps7831?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzA3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzgzMT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/servers/ps6075?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjA3NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5a83145f-c30e-4ee9-b30a-2eac35568a0a" + "7232a0af-9333-46a3-9ef8-c24d580355f9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -402,16 +465,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/locations/eastus/serverOperationResults/b192cb86-7805-47bb-9b44-34bbe4d0cb67?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/locations/eastus/serverOperationResults/c07edf38-485a-47cc-9824-1267d94cbb75?api-version=2019-06-01-preview" ], "Retry-After": [ "1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/locations/eastus/serverAzureAsyncOperation/b192cb86-7805-47bb-9b44-34bbe4d0cb67?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/locations/eastus/serverAzureAsyncOperation/c07edf38-485a-47cc-9824-1267d94cbb75?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "b192cb86-7805-47bb-9b44-34bbe4d0cb67" + "c07edf38-485a-47cc-9824-1267d94cbb75" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -420,10 +483,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "0c83bf23-e147-4970-8120-075cb52dde05" + "e31c142c-455c-485d-9954-a379b7e6c5da" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T104446Z:0c83bf23-e147-4970-8120-075cb52dde05" + "WESTUS:20200925T002736Z:e31c142c-455c-485d-9954-a379b7e6c5da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,10 +495,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:44:45 GMT" + "Fri, 25 Sep 2020 00:27:35 GMT" ], "Content-Length": [ - "74" + "70" ], "Content-Type": [ "application/json; charset=utf-8" @@ -444,17 +507,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-14T10:44:45.867Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-25T00:27:36Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/locations/eastus/serverAzureAsyncOperation/b192cb86-7805-47bb-9b44-34bbe4d0cb67?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzA3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vYjE5MmNiODYtNzgwNS00N2JiLTliNDQtMzRiYmU0ZDBjYjY3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/locations/eastus/serverAzureAsyncOperation/c07edf38-485a-47cc-9824-1267d94cbb75?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vYzA3ZWRmMzgtNDg1YS00N2NjLTk4MjQtMTI2N2Q5NGNiYjc1P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -471,7 +534,7 @@ "1" ], "x-ms-request-id": [ - "c9d1bf6a-cfbb-4381-a544-40d26a6b497f" + "38cb8092-8a87-4c9e-abad-f8f4e0f84e3f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -480,10 +543,10 @@ "11998" ], "x-ms-correlation-request-id": [ - "23e13a7b-2847-46b4-b062-161f78e40494" + "4407f4db-158c-4eac-a0bb-0f4ae446f57e" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T104447Z:23e13a7b-2847-46b4-b062-161f78e40494" + "WESTUS:20200925T002737Z:4407f4db-158c-4eac-a0bb-0f4ae446f57e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -492,10 +555,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:44:47 GMT" + "Fri, 25 Sep 2020 00:27:37 GMT" ], "Content-Length": [ - "108" + "104" ], "Content-Type": [ "application/json; charset=utf-8" @@ -504,17 +567,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"b192cb86-7805-47bb-9b44-34bbe4d0cb67\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T10:44:45.867Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"c07edf38-485a-47cc-9824-1267d94cbb75\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:27:36Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/locations/eastus/serverAzureAsyncOperation/b192cb86-7805-47bb-9b44-34bbe4d0cb67?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzA3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vYjE5MmNiODYtNzgwNS00N2JiLTliNDQtMzRiYmU0ZDBjYjY3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/locations/eastus/serverAzureAsyncOperation/c07edf38-485a-47cc-9824-1267d94cbb75?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vYzA3ZWRmMzgtNDg1YS00N2NjLTk4MjQtMTI2N2Q5NGNiYjc1P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -531,7 +594,7 @@ "1" ], "x-ms-request-id": [ - "c0a0c5b1-ffa9-4db6-b772-28000172da32" + "cf851b97-eeb9-4862-8367-80db251a5d1b" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -540,10 +603,10 @@ "11997" ], "x-ms-correlation-request-id": [ - "8418cc14-ade0-4d09-988d-4f2d01fe6012" + "b0d649b7-0731-404e-905f-99da0a5564a2" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T104448Z:8418cc14-ade0-4d09-988d-4f2d01fe6012" + "WESTUS:20200925T002738Z:b0d649b7-0731-404e-905f-99da0a5564a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -552,10 +615,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:44:48 GMT" + "Fri, 25 Sep 2020 00:27:38 GMT" ], "Content-Length": [ - "108" + "104" ], "Content-Type": [ "application/json; charset=utf-8" @@ -564,17 +627,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"b192cb86-7805-47bb-9b44-34bbe4d0cb67\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T10:44:45.867Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"c07edf38-485a-47cc-9824-1267d94cbb75\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:27:36Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/locations/eastus/serverAzureAsyncOperation/b192cb86-7805-47bb-9b44-34bbe4d0cb67?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzA3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vYjE5MmNiODYtNzgwNS00N2JiLTliNDQtMzRiYmU0ZDBjYjY3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/locations/eastus/serverAzureAsyncOperation/c07edf38-485a-47cc-9824-1267d94cbb75?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vYzA3ZWRmMzgtNDg1YS00N2NjLTk4MjQtMTI2N2Q5NGNiYjc1P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -591,7 +654,7 @@ "1" ], "x-ms-request-id": [ - "fb481496-2be9-47d7-b3ed-14cca08b6cde" + "a17311c1-d8a0-4e56-a637-d19a7d9d5ee6" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -600,10 +663,10 @@ "11996" ], "x-ms-correlation-request-id": [ - "e03e6c88-baf6-4218-87ee-beb6681abd18" + "f19cae0c-fbf9-4891-9a5f-37b617a98e96" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T104449Z:e03e6c88-baf6-4218-87ee-beb6681abd18" + "WESTUS:20200925T002739Z:f19cae0c-fbf9-4891-9a5f-37b617a98e96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -612,10 +675,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:44:49 GMT" + "Fri, 25 Sep 2020 00:27:39 GMT" ], "Content-Length": [ - "108" + "104" ], "Content-Type": [ "application/json; charset=utf-8" @@ -624,17 +687,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"b192cb86-7805-47bb-9b44-34bbe4d0cb67\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T10:44:45.867Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"c07edf38-485a-47cc-9824-1267d94cbb75\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:27:36Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/locations/eastus/serverAzureAsyncOperation/b192cb86-7805-47bb-9b44-34bbe4d0cb67?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzA3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vYjE5MmNiODYtNzgwNS00N2JiLTliNDQtMzRiYmU0ZDBjYjY3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/locations/eastus/serverAzureAsyncOperation/c07edf38-485a-47cc-9824-1267d94cbb75?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vYzA3ZWRmMzgtNDg1YS00N2NjLTk4MjQtMTI2N2Q5NGNiYjc1P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -651,7 +714,7 @@ "1" ], "x-ms-request-id": [ - "95c073c3-4296-4097-b0e5-36362c5f699a" + "3d515a15-fe26-46fc-aaf4-5466eff80e10" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -660,10 +723,10 @@ "11995" ], "x-ms-correlation-request-id": [ - "a81c3c76-a897-408e-a80a-64d086e1839c" + "00f3f249-34ed-48e5-8506-da6059f80a0c" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T104450Z:a81c3c76-a897-408e-a80a-64d086e1839c" + "WESTUS:20200925T002740Z:00f3f249-34ed-48e5-8506-da6059f80a0c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -672,10 +735,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:44:50 GMT" + "Fri, 25 Sep 2020 00:27:40 GMT" ], "Content-Length": [ - "108" + "104" ], "Content-Type": [ "application/json; charset=utf-8" @@ -684,17 +747,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"b192cb86-7805-47bb-9b44-34bbe4d0cb67\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T10:44:45.867Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"c07edf38-485a-47cc-9824-1267d94cbb75\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:27:36Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/locations/eastus/serverAzureAsyncOperation/b192cb86-7805-47bb-9b44-34bbe4d0cb67?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzA3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vYjE5MmNiODYtNzgwNS00N2JiLTliNDQtMzRiYmU0ZDBjYjY3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/locations/eastus/serverAzureAsyncOperation/c07edf38-485a-47cc-9824-1267d94cbb75?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vYzA3ZWRmMzgtNDg1YS00N2NjLTk4MjQtMTI2N2Q5NGNiYjc1P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -711,7 +774,7 @@ "20" ], "x-ms-request-id": [ - "645c7622-e4dd-41c9-87e3-92b894bfc2be" + "59dd9e2b-51fb-4991-9337-c60c80e10e6f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -720,10 +783,10 @@ "11994" ], "x-ms-correlation-request-id": [ - "fd7d9eec-168e-4681-ab1b-ccec79c9cff5" + "9757178a-0954-4cf4-8b1b-320639781ba7" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T104451Z:fd7d9eec-168e-4681-ab1b-ccec79c9cff5" + "WESTUS:20200925T002741Z:9757178a-0954-4cf4-8b1b-320639781ba7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -732,10 +795,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:44:51 GMT" + "Fri, 25 Sep 2020 00:27:41 GMT" ], "Content-Length": [ - "108" + "104" ], "Content-Type": [ "application/json; charset=utf-8" @@ -744,17 +807,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"b192cb86-7805-47bb-9b44-34bbe4d0cb67\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T10:44:45.867Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"c07edf38-485a-47cc-9824-1267d94cbb75\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:27:36Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/locations/eastus/serverAzureAsyncOperation/b192cb86-7805-47bb-9b44-34bbe4d0cb67?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzA3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vYjE5MmNiODYtNzgwNS00N2JiLTliNDQtMzRiYmU0ZDBjYjY3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/locations/eastus/serverAzureAsyncOperation/c07edf38-485a-47cc-9824-1267d94cbb75?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vYzA3ZWRmMzgtNDg1YS00N2NjLTk4MjQtMTI2N2Q5NGNiYjc1P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -771,7 +834,7 @@ "20" ], "x-ms-request-id": [ - "34ae6b83-5547-4698-b686-d4338ce7c7da" + "9071d713-7464-4c08-9ae6-e73a3725c863" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -780,10 +843,10 @@ "11993" ], "x-ms-correlation-request-id": [ - "e9a1a22d-7c6b-4303-b86a-d6aefd03b65c" + "892ffa63-f628-4354-9c60-63b3aa1a0c4a" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T104511Z:e9a1a22d-7c6b-4303-b86a-d6aefd03b65c" + "WESTUS:20200925T002801Z:892ffa63-f628-4354-9c60-63b3aa1a0c4a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -792,10 +855,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:45:11 GMT" + "Fri, 25 Sep 2020 00:28:01 GMT" ], "Content-Length": [ - "108" + "104" ], "Content-Type": [ "application/json; charset=utf-8" @@ -804,17 +867,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"b192cb86-7805-47bb-9b44-34bbe4d0cb67\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T10:44:45.867Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"c07edf38-485a-47cc-9824-1267d94cbb75\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:27:36Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/locations/eastus/serverAzureAsyncOperation/b192cb86-7805-47bb-9b44-34bbe4d0cb67?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzA3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vYjE5MmNiODYtNzgwNS00N2JiLTliNDQtMzRiYmU0ZDBjYjY3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/locations/eastus/serverAzureAsyncOperation/c07edf38-485a-47cc-9824-1267d94cbb75?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vYzA3ZWRmMzgtNDg1YS00N2NjLTk4MjQtMTI2N2Q5NGNiYjc1P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -831,7 +894,7 @@ "15" ], "x-ms-request-id": [ - "5b865b89-8ca2-449a-a1a7-36a8ddf14c46" + "c47ec86e-1565-4fc1-a792-6d4d9968cc91" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -840,10 +903,10 @@ "11992" ], "x-ms-correlation-request-id": [ - "6774d742-9649-42b5-a6cf-233f8865c999" + "3ea5335e-11a2-484c-b113-1a542880d414" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T104531Z:6774d742-9649-42b5-a6cf-233f8865c999" + "WESTUS:20200925T002821Z:3ea5335e-11a2-484c-b113-1a542880d414" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -852,10 +915,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:45:31 GMT" + "Fri, 25 Sep 2020 00:28:21 GMT" ], "Content-Length": [ - "107" + "103" ], "Content-Type": [ "application/json; charset=utf-8" @@ -864,23 +927,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"b192cb86-7805-47bb-9b44-34bbe4d0cb67\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-14T10:44:45.867Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"c07edf38-485a-47cc-9824-1267d94cbb75\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-25T00:27:36Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/servers/ps7831/databases/ps4541?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzA3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzgzMS9kYXRhYmFzZXMvcHM0NTQxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/servers/ps6075/databases/ps4860?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjA3NS9kYXRhYmFzZXMvcHM0ODYwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "53f9d981-d322-44fe-8398-0fb4322a92eb" + "748f3511-2122-439f-aa1c-cfa02d2de164" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -897,13 +960,13 @@ "gateway" ], "x-ms-request-id": [ - "4f2513bf-7a32-4de8-8141-74cb6247988b" + "590a2d9a-0e4e-4597-b25b-53d79634eeb1" ], "x-ms-correlation-request-id": [ - "4f2513bf-7a32-4de8-8141-74cb6247988b" + "590a2d9a-0e4e-4597-b25b-53d79634eeb1" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T104532Z:4f2513bf-7a32-4de8-8141-74cb6247988b" + "WESTUS:20200925T002822Z:590a2d9a-0e4e-4597-b25b-53d79634eeb1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -912,7 +975,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:45:31 GMT" + "Fri, 25 Sep 2020 00:28:21 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -924,17 +987,17 @@ "223" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps7831/databases/ps4541' under resource group 'ps7070' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps6075/databases/ps4860' under resource group 'ps9543' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/servers/ps7831/databases/ps4541?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzA3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzgzMS9kYXRhYmFzZXMvcHM0NTQxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/servers/ps6075/databases/ps4860?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjA3NS9kYXRhYmFzZXMvcHM0ODYwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -948,19 +1011,19 @@ "no-cache" ], "x-ms-request-id": [ - "08411b94-a2bf-4572-b3b3-116c821f279d" + "bd3faf6b-9cb2-42e5-8c9f-b35cd5128165" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11971" ], "x-ms-correlation-request-id": [ - "767a858c-35d8-4b0d-ad20-20068e315237" + "4c3c8d84-b465-4361-920a-7040c0dbbe1f" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T105052Z:767a858c-35d8-4b0d-ad20-20068e315237" + "WESTUS:20200925T003232Z:4c3c8d84-b465-4361-920a-7040c0dbbe1f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -969,7 +1032,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:50:51 GMT" + "Fri, 25 Sep 2020 00:32:31 GMT" ], "Content-Length": [ "797" @@ -981,23 +1044,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Stretch\",\r\n \"tier\": \"Stretch\",\r\n \"capacity\": 750\r\n },\r\n \"kind\": \"v12.0,user,stretch\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"dc13274e-c8b5-469a-b283-53d962073427\",\r\n \"creationDate\": \"2020-09-14T10:50:37.777Z\",\r\n \"currentServiceObjectiveName\": \"DS100\",\r\n \"requestedServiceObjectiveName\": \"DS100\",\r\n \"defaultSecondaryLocation\": \"westus\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Stretch\",\r\n \"tier\": \"Stretch\",\r\n \"capacity\": 750\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/servers/ps7831/databases/ps4541\",\r\n \"name\": \"ps4541\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Stretch\",\r\n \"tier\": \"Stretch\",\r\n \"capacity\": 750\r\n },\r\n \"kind\": \"v12.0,user,stretch\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"dd8c2cfb-80e3-4cc2-b224-e039a4cfe8ba\",\r\n \"creationDate\": \"2020-09-25T00:32:22.153Z\",\r\n \"currentServiceObjectiveName\": \"DS100\",\r\n \"requestedServiceObjectiveName\": \"DS100\",\r\n \"defaultSecondaryLocation\": \"westus\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Stretch\",\r\n \"tier\": \"Stretch\",\r\n \"capacity\": 750\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/servers/ps6075/databases/ps4860\",\r\n \"name\": \"ps4860\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/servers/ps7831/databases/ps4541?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzA3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzgzMS9kYXRhYmFzZXMvcHM0NTQxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/servers/ps6075/databases/ps4860?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjA3NS9kYXRhYmFzZXMvcHM0ODYwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ebc8ce07-eaa4-48ed-a1ec-636227413aea" + "f2beae6e-9015-4783-87dc-76caa61ab843" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1011,19 +1074,19 @@ "no-cache" ], "x-ms-request-id": [ - "06e7d584-ea41-4fa8-b6ed-3f0527fd6f51" + "981a57e1-eaab-4902-961b-0648238667ce" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11969" ], "x-ms-correlation-request-id": [ - "e5aa7855-7b72-43ba-8b67-5e080e19b53f" + "0fde2009-fe08-4a0d-bc4f-3b30a828a05f" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T105052Z:e5aa7855-7b72-43ba-8b67-5e080e19b53f" + "WESTUS:20200925T003232Z:0fde2009-fe08-4a0d-bc4f-3b30a828a05f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1032,7 +1095,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:50:52 GMT" + "Fri, 25 Sep 2020 00:32:31 GMT" ], "Content-Length": [ "797" @@ -1044,23 +1107,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Stretch\",\r\n \"tier\": \"Stretch\",\r\n \"capacity\": 750\r\n },\r\n \"kind\": \"v12.0,user,stretch\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"dc13274e-c8b5-469a-b283-53d962073427\",\r\n \"creationDate\": \"2020-09-14T10:50:37.777Z\",\r\n \"currentServiceObjectiveName\": \"DS100\",\r\n \"requestedServiceObjectiveName\": \"DS100\",\r\n \"defaultSecondaryLocation\": \"westus\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Stretch\",\r\n \"tier\": \"Stretch\",\r\n \"capacity\": 750\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/servers/ps7831/databases/ps4541\",\r\n \"name\": \"ps4541\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Stretch\",\r\n \"tier\": \"Stretch\",\r\n \"capacity\": 750\r\n },\r\n \"kind\": \"v12.0,user,stretch\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"dd8c2cfb-80e3-4cc2-b224-e039a4cfe8ba\",\r\n \"creationDate\": \"2020-09-25T00:32:22.153Z\",\r\n \"currentServiceObjectiveName\": \"DS100\",\r\n \"requestedServiceObjectiveName\": \"DS100\",\r\n \"defaultSecondaryLocation\": \"westus\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Stretch\",\r\n \"tier\": \"Stretch\",\r\n \"capacity\": 750\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/servers/ps6075/databases/ps4860\",\r\n \"name\": \"ps4860\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/servers/ps7831/databases/ps4541?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzA3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzgzMS9kYXRhYmFzZXMvcHM0NTQxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/servers/ps6075/databases/ps4860?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjA3NS9kYXRhYmFzZXMvcHM0ODYwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4b8c83fa-1b34-4bb0-b3cd-6a5235b15902" + "94386fe7-b932-48f8-a17a-67a4aa71cf4f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1074,19 +1137,19 @@ "no-cache" ], "x-ms-request-id": [ - "8c989a5a-b275-4b95-b49f-7b09c3a2c71f" + "3fb65bf7-52a0-43a2-aeaa-8eaee136a49f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11968" ], "x-ms-correlation-request-id": [ - "43d9215b-a0e1-4cac-a418-04efd767ba9b" + "e731c67b-71fe-4f56-b39f-40abcc0f4b22" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T105052Z:43d9215b-a0e1-4cac-a418-04efd767ba9b" + "WESTUS:20200925T003232Z:e731c67b-71fe-4f56-b39f-40abcc0f4b22" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1095,7 +1158,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:50:52 GMT" + "Fri, 25 Sep 2020 00:32:31 GMT" ], "Content-Length": [ "797" @@ -1107,17 +1170,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Stretch\",\r\n \"tier\": \"Stretch\",\r\n \"capacity\": 750\r\n },\r\n \"kind\": \"v12.0,user,stretch\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"dc13274e-c8b5-469a-b283-53d962073427\",\r\n \"creationDate\": \"2020-09-14T10:50:37.777Z\",\r\n \"currentServiceObjectiveName\": \"DS100\",\r\n \"requestedServiceObjectiveName\": \"DS100\",\r\n \"defaultSecondaryLocation\": \"westus\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Stretch\",\r\n \"tier\": \"Stretch\",\r\n \"capacity\": 750\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/servers/ps7831/databases/ps4541\",\r\n \"name\": \"ps4541\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Stretch\",\r\n \"tier\": \"Stretch\",\r\n \"capacity\": 750\r\n },\r\n \"kind\": \"v12.0,user,stretch\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"dd8c2cfb-80e3-4cc2-b224-e039a4cfe8ba\",\r\n \"creationDate\": \"2020-09-25T00:32:22.153Z\",\r\n \"currentServiceObjectiveName\": \"DS100\",\r\n \"requestedServiceObjectiveName\": \"DS100\",\r\n \"defaultSecondaryLocation\": \"westus\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Stretch\",\r\n \"tier\": \"Stretch\",\r\n \"capacity\": 750\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/servers/ps6075/databases/ps4860\",\r\n \"name\": \"ps4860\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/servers/ps7831/databases/ps4541?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzA3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzgzMS9kYXRhYmFzZXMvcHM0NTQxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/servers/ps6075/databases/ps4860?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjA3NS9kYXRhYmFzZXMvcHM0ODYwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1131,19 +1194,19 @@ "no-cache" ], "x-ms-request-id": [ - "e9b49c27-642f-45bd-bd2f-62ce625b6b3e" + "61d8915c-0e7f-4dee-99f3-0d6a396dffbc" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" + "11959" ], "x-ms-correlation-request-id": [ - "1bf1bce7-84fc-4591-9893-71519b1ff7d1" + "91b7cd8e-2ba6-4e7c-926f-0c745622f91e" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T105309Z:1bf1bce7-84fc-4591-9893-71519b1ff7d1" + "WESTUS:20200925T003434Z:91b7cd8e-2ba6-4e7c-926f-0c745622f91e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1152,7 +1215,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:53:09 GMT" + "Fri, 25 Sep 2020 00:34:33 GMT" ], "Content-Length": [ "799" @@ -1164,23 +1227,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Stretch\",\r\n \"tier\": \"Stretch\",\r\n \"capacity\": 1500\r\n },\r\n \"kind\": \"v12.0,user,stretch\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"dc13274e-c8b5-469a-b283-53d962073427\",\r\n \"creationDate\": \"2020-09-14T10:50:37.777Z\",\r\n \"currentServiceObjectiveName\": \"DS200\",\r\n \"requestedServiceObjectiveName\": \"DS200\",\r\n \"defaultSecondaryLocation\": \"westus\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Stretch\",\r\n \"tier\": \"Stretch\",\r\n \"capacity\": 1500\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/servers/ps7831/databases/ps4541\",\r\n \"name\": \"ps4541\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Stretch\",\r\n \"tier\": \"Stretch\",\r\n \"capacity\": 1500\r\n },\r\n \"kind\": \"v12.0,user,stretch\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"dd8c2cfb-80e3-4cc2-b224-e039a4cfe8ba\",\r\n \"creationDate\": \"2020-09-25T00:32:22.153Z\",\r\n \"currentServiceObjectiveName\": \"DS200\",\r\n \"requestedServiceObjectiveName\": \"DS200\",\r\n \"defaultSecondaryLocation\": \"westus\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Stretch\",\r\n \"tier\": \"Stretch\",\r\n \"capacity\": 1500\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/servers/ps6075/databases/ps4860\",\r\n \"name\": \"ps4860\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/servers/ps7831/databases/ps4541?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzA3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzgzMS9kYXRhYmFzZXMvcHM0NTQxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/servers/ps6075/databases/ps4860?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjA3NS9kYXRhYmFzZXMvcHM0ODYwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"DS100\",\r\n \"tier\": \"Stretch\"\r\n },\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"readScale\": \"\"\r\n },\r\n \"location\": \"eastus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d89e6304-0da8-4da0-99a2-4ba657742bc4" + "520dcbd0-1462-4c9e-993a-208f7af2921e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1200,16 +1263,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/locations/eastus/databaseOperationResults/dc2b648f-dd74-4cc4-a498-b62157b82faa?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/locations/eastus/databaseOperationResults/316d32df-db97-4be7-9c24-77040a372fa5?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/dc2b648f-dd74-4cc4-a498-b62157b82faa?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/316d32df-db97-4be7-9c24-77040a372fa5?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "dc2b648f-dd74-4cc4-a498-b62157b82faa" + "316d32df-db97-4be7-9c24-77040a372fa5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1218,10 +1281,10 @@ "1198" ], "x-ms-correlation-request-id": [ - "f2a19c93-2bae-4689-984f-04268eb1c3f4" + "a3e6a989-2ab4-40ed-b7f1-222705aa1afe" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T104533Z:f2a19c93-2bae-4689-984f-04268eb1c3f4" + "WESTUS:20200925T002829Z:a3e6a989-2ab4-40ed-b7f1-222705aa1afe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1230,10 +1293,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:45:33 GMT" + "Fri, 25 Sep 2020 00:28:29 GMT" ], "Content-Length": [ - "76" + "75" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1242,23 +1305,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2020-09-14T10:45:33.587Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2020-09-25T00:28:29.62Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/servers/ps7831/databases/ps4541?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzA3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzgzMS9kYXRhYmFzZXMvcHM0NTQxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/servers/ps6075/databases/ps4860?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjA3NS9kYXRhYmFzZXMvcHM0ODYwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"DS200\",\r\n \"tier\": \"Stretch\"\r\n },\r\n \"properties\": {\r\n \"maxSizeBytes\": 268435456000,\r\n \"readScale\": \"Disabled\"\r\n },\r\n \"location\": \"eastus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3be75086-1799-420a-88ed-0e23f6425bf1" + "7e1637fa-3f53-4f50-af06-e9003ad9985e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1278,16 +1341,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/locations/eastus/databaseOperationResults/759d5b94-1521-4c96-b43c-43c587cef64e?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/locations/eastus/databaseOperationResults/c4da8a04-3077-48e4-b0ba-b876f6cb6a17?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/759d5b94-1521-4c96-b43c-43c587cef64e?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/c4da8a04-3077-48e4-b0ba-b876f6cb6a17?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "ad084bdf-b82a-4d51-bde9-743411ea7d88" + "c4da8a04-3077-48e4-b0ba-b876f6cb6a17" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1296,10 +1359,10 @@ "1197" ], "x-ms-correlation-request-id": [ - "c343ae91-2790-4338-b74e-e1fe4312c9bb" + "6d0708da-3c6e-4a5f-8c13-949dfcbfbbe5" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T105053Z:c343ae91-2790-4338-b74e-e1fe4312c9bb" + "WESTUS:20200925T003233Z:6d0708da-3c6e-4a5f-8c13-949dfcbfbbe5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1308,10 +1371,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:50:52 GMT" + "Fri, 25 Sep 2020 00:32:32 GMT" ], "Content-Length": [ - "76" + "75" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1320,17 +1383,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-09-14T10:50:53.127Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-09-25T00:32:33.05Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/dc2b648f-dd74-4cc4-a498-b62157b82faa?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzA3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9kYzJiNjQ4Zi1kZDc0LTRjYzQtYTQ5OC1iNjIxNTdiODJmYWE/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/316d32df-db97-4be7-9c24-77040a372fa5?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8zMTZkMzJkZi1kYjk3LTRiZTctOWMyNC03NzA0MGEzNzJmYTU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1347,7 +1410,7 @@ "15" ], "x-ms-request-id": [ - "2e793656-eae8-4fe6-a925-ca8afcf8e09a" + "2fc1813c-7466-4f69-96ac-1b96203d5969" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1356,10 +1419,10 @@ "11987" ], "x-ms-correlation-request-id": [ - "0aad002b-d57a-4d7f-b17a-eb38b84519c5" + "6992855c-362c-4d78-ba59-25c6f91162d3" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T104549Z:0aad002b-d57a-4d7f-b17a-eb38b84519c5" + "WESTUS:20200925T002844Z:6992855c-362c-4d78-ba59-25c6f91162d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1368,10 +1431,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:45:48 GMT" + "Fri, 25 Sep 2020 00:28:44 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1380,17 +1443,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"dc2b648f-dd74-4cc4-a498-b62157b82faa\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T10:45:33.587Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"316d32df-db97-4be7-9c24-77040a372fa5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:28:29.62Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/dc2b648f-dd74-4cc4-a498-b62157b82faa?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzA3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9kYzJiNjQ4Zi1kZDc0LTRjYzQtYTQ5OC1iNjIxNTdiODJmYWE/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/316d32df-db97-4be7-9c24-77040a372fa5?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8zMTZkMzJkZi1kYjk3LTRiZTctOWMyNC03NzA0MGEzNzJmYTU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1407,7 +1470,7 @@ "15" ], "x-ms-request-id": [ - "f10d80be-3e3b-4702-8f47-fad0271310ca" + "ac1b8ca9-046f-4381-8094-d057ab1b8099" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1416,10 +1479,10 @@ "11986" ], "x-ms-correlation-request-id": [ - "2d8d1daf-1e40-4602-93f4-711aff9eed19" + "a62ac861-df6a-44f7-bf81-7763280273c6" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T104604Z:2d8d1daf-1e40-4602-93f4-711aff9eed19" + "WESTUS:20200925T002859Z:a62ac861-df6a-44f7-bf81-7763280273c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1428,10 +1491,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:46:03 GMT" + "Fri, 25 Sep 2020 00:28:59 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1440,17 +1503,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"dc2b648f-dd74-4cc4-a498-b62157b82faa\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T10:45:33.587Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"316d32df-db97-4be7-9c24-77040a372fa5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:28:29.62Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/dc2b648f-dd74-4cc4-a498-b62157b82faa?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzA3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9kYzJiNjQ4Zi1kZDc0LTRjYzQtYTQ5OC1iNjIxNTdiODJmYWE/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/316d32df-db97-4be7-9c24-77040a372fa5?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8zMTZkMzJkZi1kYjk3LTRiZTctOWMyNC03NzA0MGEzNzJmYTU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1467,7 +1530,7 @@ "15" ], "x-ms-request-id": [ - "a4f33f1e-c75d-4b56-bf6b-8291a96f7b90" + "b0afcb14-6035-4307-ba8f-9396c8945979" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1476,10 +1539,10 @@ "11985" ], "x-ms-correlation-request-id": [ - "763acc27-7b52-4fd2-aad9-9c180fb22025" + "9742c1b9-adb1-4f05-bd56-b2edc25c29be" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T104619Z:763acc27-7b52-4fd2-aad9-9c180fb22025" + "WESTUS:20200925T002915Z:9742c1b9-adb1-4f05-bd56-b2edc25c29be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1488,10 +1551,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:46:18 GMT" + "Fri, 25 Sep 2020 00:29:14 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1500,17 +1563,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"dc2b648f-dd74-4cc4-a498-b62157b82faa\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T10:45:33.587Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"316d32df-db97-4be7-9c24-77040a372fa5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:28:29.62Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/dc2b648f-dd74-4cc4-a498-b62157b82faa?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzA3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9kYzJiNjQ4Zi1kZDc0LTRjYzQtYTQ5OC1iNjIxNTdiODJmYWE/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/316d32df-db97-4be7-9c24-77040a372fa5?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8zMTZkMzJkZi1kYjk3LTRiZTctOWMyNC03NzA0MGEzNzJmYTU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1527,7 +1590,7 @@ "15" ], "x-ms-request-id": [ - "3ee952ef-4928-4172-9b06-3ad62ae8e15e" + "aa44b3fe-e409-4f06-979c-4c44459025b2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1536,10 +1599,10 @@ "11984" ], "x-ms-correlation-request-id": [ - "0395564f-cd04-4ac8-a80d-dfc98e36f2e4" + "cb51ce17-5fc2-4bf2-b639-99527a38fbcd" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T104634Z:0395564f-cd04-4ac8-a80d-dfc98e36f2e4" + "WESTUS:20200925T002930Z:cb51ce17-5fc2-4bf2-b639-99527a38fbcd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1548,10 +1611,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:46:33 GMT" + "Fri, 25 Sep 2020 00:29:29 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1560,17 +1623,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"dc2b648f-dd74-4cc4-a498-b62157b82faa\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T10:45:33.587Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"316d32df-db97-4be7-9c24-77040a372fa5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:28:29.62Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/dc2b648f-dd74-4cc4-a498-b62157b82faa?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzA3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9kYzJiNjQ4Zi1kZDc0LTRjYzQtYTQ5OC1iNjIxNTdiODJmYWE/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/316d32df-db97-4be7-9c24-77040a372fa5?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8zMTZkMzJkZi1kYjk3LTRiZTctOWMyNC03NzA0MGEzNzJmYTU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1587,7 +1650,7 @@ "15" ], "x-ms-request-id": [ - "ce8406b4-f6e7-404e-92f5-467b3a8d593e" + "30f1860e-610e-4a60-9c3e-c12ea22cdecc" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1596,10 +1659,10 @@ "11983" ], "x-ms-correlation-request-id": [ - "ae223c3a-28bd-4fba-9b90-09e429ce3215" + "3df531bf-35e5-4bf6-ac6b-436705e7a492" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T104649Z:ae223c3a-28bd-4fba-9b90-09e429ce3215" + "WESTUS:20200925T002945Z:3df531bf-35e5-4bf6-ac6b-436705e7a492" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1608,10 +1671,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:46:49 GMT" + "Fri, 25 Sep 2020 00:29:45 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1620,17 +1683,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"dc2b648f-dd74-4cc4-a498-b62157b82faa\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T10:45:33.587Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"316d32df-db97-4be7-9c24-77040a372fa5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:28:29.62Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/dc2b648f-dd74-4cc4-a498-b62157b82faa?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzA3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9kYzJiNjQ4Zi1kZDc0LTRjYzQtYTQ5OC1iNjIxNTdiODJmYWE/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/316d32df-db97-4be7-9c24-77040a372fa5?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8zMTZkMzJkZi1kYjk3LTRiZTctOWMyNC03NzA0MGEzNzJmYTU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1647,7 +1710,7 @@ "15" ], "x-ms-request-id": [ - "0c7f2aa8-9d24-42fa-9bc4-c6113454c5d6" + "1446803f-76df-4bd0-9fd4-a0d69b51e8df" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1656,10 +1719,10 @@ "11982" ], "x-ms-correlation-request-id": [ - "abe11fb6-9b08-40f0-a683-ebe3c65cc5ce" + "40b87aa7-1f00-405b-b6b2-48106077b85f" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T104704Z:abe11fb6-9b08-40f0-a683-ebe3c65cc5ce" + "WESTUS:20200925T003000Z:40b87aa7-1f00-405b-b6b2-48106077b85f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1668,10 +1731,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:47:04 GMT" + "Fri, 25 Sep 2020 00:30:00 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1680,17 +1743,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"dc2b648f-dd74-4cc4-a498-b62157b82faa\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T10:45:33.587Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"316d32df-db97-4be7-9c24-77040a372fa5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:28:29.62Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/dc2b648f-dd74-4cc4-a498-b62157b82faa?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzA3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9kYzJiNjQ4Zi1kZDc0LTRjYzQtYTQ5OC1iNjIxNTdiODJmYWE/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/316d32df-db97-4be7-9c24-77040a372fa5?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8zMTZkMzJkZi1kYjk3LTRiZTctOWMyNC03NzA0MGEzNzJmYTU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1707,7 +1770,7 @@ "15" ], "x-ms-request-id": [ - "3fa61d37-a504-4741-9f87-74410b3b453d" + "e4ba1cbd-ca6a-4eea-9a7a-5607a34d8c09" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1716,10 +1779,10 @@ "11981" ], "x-ms-correlation-request-id": [ - "77984591-be14-4716-842c-232154867c92" + "470bca75-2ef6-42fd-a49a-4219fd4cf517" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T104720Z:77984591-be14-4716-842c-232154867c92" + "WESTUS:20200925T003015Z:470bca75-2ef6-42fd-a49a-4219fd4cf517" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1728,10 +1791,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:47:19 GMT" + "Fri, 25 Sep 2020 00:30:15 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1740,17 +1803,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"dc2b648f-dd74-4cc4-a498-b62157b82faa\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T10:45:33.587Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"316d32df-db97-4be7-9c24-77040a372fa5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:28:29.62Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/dc2b648f-dd74-4cc4-a498-b62157b82faa?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzA3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9kYzJiNjQ4Zi1kZDc0LTRjYzQtYTQ5OC1iNjIxNTdiODJmYWE/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/316d32df-db97-4be7-9c24-77040a372fa5?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8zMTZkMzJkZi1kYjk3LTRiZTctOWMyNC03NzA0MGEzNzJmYTU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1767,7 +1830,7 @@ "15" ], "x-ms-request-id": [ - "0e954af0-4693-4bb2-b3bb-1c451b5427aa" + "c476ab92-b9c2-4677-8f47-a1d29541c2cd" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1776,10 +1839,10 @@ "11980" ], "x-ms-correlation-request-id": [ - "0d986ee6-e987-4c19-938f-83a2f3ec576d" + "c257115a-71ed-48df-962d-ea57d3bc367d" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T104735Z:0d986ee6-e987-4c19-938f-83a2f3ec576d" + "WESTUS:20200925T003030Z:c257115a-71ed-48df-962d-ea57d3bc367d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1788,10 +1851,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:47:34 GMT" + "Fri, 25 Sep 2020 00:30:30 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1800,17 +1863,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"dc2b648f-dd74-4cc4-a498-b62157b82faa\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T10:45:33.587Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"316d32df-db97-4be7-9c24-77040a372fa5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:28:29.62Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/dc2b648f-dd74-4cc4-a498-b62157b82faa?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzA3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9kYzJiNjQ4Zi1kZDc0LTRjYzQtYTQ5OC1iNjIxNTdiODJmYWE/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/316d32df-db97-4be7-9c24-77040a372fa5?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8zMTZkMzJkZi1kYjk3LTRiZTctOWMyNC03NzA0MGEzNzJmYTU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1827,7 +1890,7 @@ "15" ], "x-ms-request-id": [ - "b91f617a-d2c2-498b-8dbe-1c920c4feb9e" + "ca9d3513-8c49-45e5-8501-d481054d5425" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1836,10 +1899,10 @@ "11979" ], "x-ms-correlation-request-id": [ - "18ac2d9a-1fa0-44d5-9a44-f84d00226fa0" + "cbd6a236-d031-437a-97dd-107c9efa18b1" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T104750Z:18ac2d9a-1fa0-44d5-9a44-f84d00226fa0" + "WESTUS:20200925T003046Z:cbd6a236-d031-437a-97dd-107c9efa18b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1848,10 +1911,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:47:50 GMT" + "Fri, 25 Sep 2020 00:30:45 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1860,17 +1923,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"dc2b648f-dd74-4cc4-a498-b62157b82faa\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T10:45:33.587Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"316d32df-db97-4be7-9c24-77040a372fa5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:28:29.62Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/dc2b648f-dd74-4cc4-a498-b62157b82faa?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzA3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9kYzJiNjQ4Zi1kZDc0LTRjYzQtYTQ5OC1iNjIxNTdiODJmYWE/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/316d32df-db97-4be7-9c24-77040a372fa5?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8zMTZkMzJkZi1kYjk3LTRiZTctOWMyNC03NzA0MGEzNzJmYTU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1887,7 +1950,7 @@ "15" ], "x-ms-request-id": [ - "12dfdb1d-ff63-4d76-b5a5-c91dfa1741bd" + "01ee5054-3fac-4be6-a6a2-929327547c5b" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1896,10 +1959,10 @@ "11978" ], "x-ms-correlation-request-id": [ - "8fc4a021-9fd3-4e97-b1ec-fa0cf078d0c8" + "1a53576a-836e-4692-8314-a0c9e7f076b6" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T104805Z:8fc4a021-9fd3-4e97-b1ec-fa0cf078d0c8" + "WESTUS:20200925T003101Z:1a53576a-836e-4692-8314-a0c9e7f076b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1908,10 +1971,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:48:05 GMT" + "Fri, 25 Sep 2020 00:31:00 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1920,17 +1983,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"dc2b648f-dd74-4cc4-a498-b62157b82faa\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T10:45:33.587Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"316d32df-db97-4be7-9c24-77040a372fa5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:28:29.62Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/dc2b648f-dd74-4cc4-a498-b62157b82faa?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzA3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9kYzJiNjQ4Zi1kZDc0LTRjYzQtYTQ5OC1iNjIxNTdiODJmYWE/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/316d32df-db97-4be7-9c24-77040a372fa5?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8zMTZkMzJkZi1kYjk3LTRiZTctOWMyNC03NzA0MGEzNzJmYTU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1947,7 +2010,7 @@ "15" ], "x-ms-request-id": [ - "00788fe2-5278-4f46-90cf-a2e840aec962" + "8f1d78e5-f2ed-4b6a-9fe8-5b101c139148" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1956,10 +2019,10 @@ "11977" ], "x-ms-correlation-request-id": [ - "12923ff7-0678-4f02-b5d4-6593e08803e5" + "b4187fe1-ff40-406a-90c0-9cbf80df3e94" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T104820Z:12923ff7-0678-4f02-b5d4-6593e08803e5" + "WESTUS:20200925T003116Z:b4187fe1-ff40-406a-90c0-9cbf80df3e94" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1968,10 +2031,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:48:20 GMT" + "Fri, 25 Sep 2020 00:31:15 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1980,17 +2043,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"dc2b648f-dd74-4cc4-a498-b62157b82faa\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T10:45:33.587Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"316d32df-db97-4be7-9c24-77040a372fa5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:28:29.62Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/dc2b648f-dd74-4cc4-a498-b62157b82faa?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzA3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9kYzJiNjQ4Zi1kZDc0LTRjYzQtYTQ5OC1iNjIxNTdiODJmYWE/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/316d32df-db97-4be7-9c24-77040a372fa5?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8zMTZkMzJkZi1kYjk3LTRiZTctOWMyNC03NzA0MGEzNzJmYTU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2007,7 +2070,7 @@ "15" ], "x-ms-request-id": [ - "88d2f00b-ce0d-4932-b209-e87d9dfb3057" + "4539850e-df35-4ace-a527-f571fd26aa03" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2016,10 +2079,10 @@ "11976" ], "x-ms-correlation-request-id": [ - "6cbc285d-25a8-4c53-852a-61baf1c31010" + "07ec56d8-0466-426a-993d-a07cc772fef0" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T104836Z:6cbc285d-25a8-4c53-852a-61baf1c31010" + "WESTUS:20200925T003131Z:07ec56d8-0466-426a-993d-a07cc772fef0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2028,10 +2091,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:48:35 GMT" + "Fri, 25 Sep 2020 00:31:30 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2040,17 +2103,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"dc2b648f-dd74-4cc4-a498-b62157b82faa\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T10:45:33.587Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"316d32df-db97-4be7-9c24-77040a372fa5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:28:29.62Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/dc2b648f-dd74-4cc4-a498-b62157b82faa?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzA3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9kYzJiNjQ4Zi1kZDc0LTRjYzQtYTQ5OC1iNjIxNTdiODJmYWE/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/316d32df-db97-4be7-9c24-77040a372fa5?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8zMTZkMzJkZi1kYjk3LTRiZTctOWMyNC03NzA0MGEzNzJmYTU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2067,7 +2130,7 @@ "15" ], "x-ms-request-id": [ - "3a7ab0ff-522e-4967-8a6e-c3d6c05f5d19" + "fafee4f5-71ac-4995-b92c-d01d42ed5cbd" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2076,10 +2139,10 @@ "11975" ], "x-ms-correlation-request-id": [ - "7677860f-de39-4a93-9f0a-f0189a44b78b" + "f797349d-c3a6-409c-8e86-e384852219d2" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T104851Z:7677860f-de39-4a93-9f0a-f0189a44b78b" + "WESTUS:20200925T003146Z:f797349d-c3a6-409c-8e86-e384852219d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2088,10 +2151,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:48:50 GMT" + "Fri, 25 Sep 2020 00:31:45 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2100,17 +2163,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"dc2b648f-dd74-4cc4-a498-b62157b82faa\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T10:45:33.587Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"316d32df-db97-4be7-9c24-77040a372fa5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:28:29.62Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/dc2b648f-dd74-4cc4-a498-b62157b82faa?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzA3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9kYzJiNjQ4Zi1kZDc0LTRjYzQtYTQ5OC1iNjIxNTdiODJmYWE/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/316d32df-db97-4be7-9c24-77040a372fa5?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8zMTZkMzJkZi1kYjk3LTRiZTctOWMyNC03NzA0MGEzNzJmYTU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2127,7 +2190,7 @@ "15" ], "x-ms-request-id": [ - "c5a7cd91-8967-4a8a-a1a3-5c2d3d890195" + "fc1446c3-9e92-42a7-b5d7-0ae9df334cc3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2136,70 +2199,10 @@ "11974" ], "x-ms-correlation-request-id": [ - "c7c1d3a7-76d0-4af0-9436-312685a6ebc3" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T104906Z:c7c1d3a7-76d0-4af0-9436-312685a6ebc3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 14 Sep 2020 10:49:06 GMT" - ], - "Content-Length": [ - "108" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"dc2b648f-dd74-4cc4-a498-b62157b82faa\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T10:45:33.587Z\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/dc2b648f-dd74-4cc4-a498-b62157b82faa?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzA3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9kYzJiNjQ4Zi1kZDc0LTRjYzQtYTQ5OC1iNjIxNTdiODJmYWE/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "59947f5a-b0da-4a2a-9adc-64fa1506251e" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-correlation-request-id": [ - "dedd2126-cc3e-4b45-9cec-cee2d8ba06c5" + "2cc81bc7-2a63-4b72-80e3-c07d501251ce" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T104921Z:dedd2126-cc3e-4b45-9cec-cee2d8ba06c5" + "WESTUS:20200925T003201Z:2cc81bc7-2a63-4b72-80e3-c07d501251ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2208,10 +2211,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:49:21 GMT" + "Fri, 25 Sep 2020 00:32:00 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2220,17 +2223,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"dc2b648f-dd74-4cc4-a498-b62157b82faa\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T10:45:33.587Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"316d32df-db97-4be7-9c24-77040a372fa5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:28:29.62Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/dc2b648f-dd74-4cc4-a498-b62157b82faa?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzA3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9kYzJiNjQ4Zi1kZDc0LTRjYzQtYTQ5OC1iNjIxNTdiODJmYWE/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/316d32df-db97-4be7-9c24-77040a372fa5?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8zMTZkMzJkZi1kYjk3LTRiZTctOWMyNC03NzA0MGEzNzJmYTU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2247,19 +2250,19 @@ "15" ], "x-ms-request-id": [ - "77fbc76d-8736-4ab5-8e66-1f276b0e3591" + "6643c17a-4622-4847-83a5-aec6763d80f4" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11973" ], "x-ms-correlation-request-id": [ - "208d1ded-5cd5-44ff-a276-b1ad6595f4e9" + "e926f7e1-395b-4351-ad0c-aeca61bf82f7" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T104936Z:208d1ded-5cd5-44ff-a276-b1ad6595f4e9" + "WESTUS:20200925T003216Z:e926f7e1-395b-4351-ad0c-aeca61bf82f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2268,10 +2271,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:49:36 GMT" + "Fri, 25 Sep 2020 00:32:15 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2280,17 +2283,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"dc2b648f-dd74-4cc4-a498-b62157b82faa\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T10:45:33.587Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"316d32df-db97-4be7-9c24-77040a372fa5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:28:29.62Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/dc2b648f-dd74-4cc4-a498-b62157b82faa?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzA3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9kYzJiNjQ4Zi1kZDc0LTRjYzQtYTQ5OC1iNjIxNTdiODJmYWE/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/316d32df-db97-4be7-9c24-77040a372fa5?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8zMTZkMzJkZi1kYjk3LTRiZTctOWMyNC03NzA0MGEzNzJmYTU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2307,19 +2310,19 @@ "15" ], "x-ms-request-id": [ - "6087073e-2b20-42fa-bb06-6ca643795531" + "63fac6c8-b17e-41e5-8e57-fbfe1d803a84" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11972" ], "x-ms-correlation-request-id": [ - "197de69c-6227-493f-9653-cc61ec826918" + "8d4bd636-ba6f-4125-b91c-5fa8bdddf4f2" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T104951Z:197de69c-6227-493f-9653-cc61ec826918" + "WESTUS:20200925T003231Z:8d4bd636-ba6f-4125-b91c-5fa8bdddf4f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2328,10 +2331,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:49:51 GMT" + "Fri, 25 Sep 2020 00:32:31 GMT" ], "Content-Length": [ - "108" + "106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2340,17 +2343,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"dc2b648f-dd74-4cc4-a498-b62157b82faa\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T10:45:33.587Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"316d32df-db97-4be7-9c24-77040a372fa5\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-25T00:28:29.62Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/dc2b648f-dd74-4cc4-a498-b62157b82faa?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzA3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9kYzJiNjQ4Zi1kZDc0LTRjYzQtYTQ5OC1iNjIxNTdiODJmYWE/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/c4da8a04-3077-48e4-b0ba-b876f6cb6a17?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9jNGRhOGEwNC0zMDc3LTQ4ZTQtYjBiYS1iODc2ZjZjYjZhMTc/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2367,19 +2370,19 @@ "15" ], "x-ms-request-id": [ - "a03a2119-f92b-49ee-afe2-3aafbeacd5ba" + "66985a5e-765a-4b3f-ae86-489b56ddd4f9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11967" ], "x-ms-correlation-request-id": [ - "67da815c-6af6-4597-819d-7decced8ee37" + "b3b7b882-9b3c-41be-a7b3-2050a5db06df" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T105006Z:67da815c-6af6-4597-819d-7decced8ee37" + "WESTUS:20200925T003248Z:b3b7b882-9b3c-41be-a7b3-2050a5db06df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2388,10 +2391,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:50:06 GMT" + "Fri, 25 Sep 2020 00:32:48 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2400,17 +2403,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"dc2b648f-dd74-4cc4-a498-b62157b82faa\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T10:45:33.587Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"c4da8a04-3077-48e4-b0ba-b876f6cb6a17\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:32:33.05Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/dc2b648f-dd74-4cc4-a498-b62157b82faa?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzA3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9kYzJiNjQ4Zi1kZDc0LTRjYzQtYTQ5OC1iNjIxNTdiODJmYWE/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/c4da8a04-3077-48e4-b0ba-b876f6cb6a17?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9jNGRhOGEwNC0zMDc3LTQ4ZTQtYjBiYS1iODc2ZjZjYjZhMTc/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2427,19 +2430,19 @@ "15" ], "x-ms-request-id": [ - "761b0959-0396-497e-87d0-c164d3bd3fd5" + "9e9870a0-a42d-4bfc-b84b-0ac61b3b0927" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11966" ], "x-ms-correlation-request-id": [ - "58e1e83b-8050-4e67-be60-03980effc3b8" + "026ff150-90ad-4bbf-ba08-064eca7dc020" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T105022Z:58e1e83b-8050-4e67-be60-03980effc3b8" + "WESTUS:20200925T003303Z:026ff150-90ad-4bbf-ba08-064eca7dc020" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2448,10 +2451,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:50:21 GMT" + "Fri, 25 Sep 2020 00:33:03 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2460,17 +2463,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"dc2b648f-dd74-4cc4-a498-b62157b82faa\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T10:45:33.587Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"c4da8a04-3077-48e4-b0ba-b876f6cb6a17\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:32:33.05Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/dc2b648f-dd74-4cc4-a498-b62157b82faa?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzA3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9kYzJiNjQ4Zi1kZDc0LTRjYzQtYTQ5OC1iNjIxNTdiODJmYWE/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/c4da8a04-3077-48e4-b0ba-b876f6cb6a17?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9jNGRhOGEwNC0zMDc3LTQ4ZTQtYjBiYS1iODc2ZjZjYjZhMTc/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2487,19 +2490,19 @@ "15" ], "x-ms-request-id": [ - "195d04d3-d40f-4648-8e08-95645dba00e3" + "f326a304-3ce7-4f81-9d02-057cd48a6482" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11965" ], "x-ms-correlation-request-id": [ - "fd76f34f-9b56-4253-a5e0-956e2bbd2498" + "7d40a406-961f-42ee-bfc9-f0c0b2beeaa8" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T105037Z:fd76f34f-9b56-4253-a5e0-956e2bbd2498" + "WESTUS:20200925T003318Z:7d40a406-961f-42ee-bfc9-f0c0b2beeaa8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2508,10 +2511,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:50:36 GMT" + "Fri, 25 Sep 2020 00:33:18 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2520,17 +2523,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"dc2b648f-dd74-4cc4-a498-b62157b82faa\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T10:45:33.587Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"c4da8a04-3077-48e4-b0ba-b876f6cb6a17\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:32:33.05Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/dc2b648f-dd74-4cc4-a498-b62157b82faa?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzA3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9kYzJiNjQ4Zi1kZDc0LTRjYzQtYTQ5OC1iNjIxNTdiODJmYWE/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/c4da8a04-3077-48e4-b0ba-b876f6cb6a17?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9jNGRhOGEwNC0zMDc3LTQ4ZTQtYjBiYS1iODc2ZjZjYjZhMTc/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2547,19 +2550,19 @@ "15" ], "x-ms-request-id": [ - "0fb4ab7a-b98a-47de-8a2a-a1bcd74736c1" + "a3ddfc0b-4700-4804-ad28-cd5212402ae8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11964" ], "x-ms-correlation-request-id": [ - "d0aedd41-583b-4c36-a0fb-31b90e9a4017" + "631ccabb-50aa-4afa-a2b9-352469cc26fa" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T105052Z:d0aedd41-583b-4c36-a0fb-31b90e9a4017" + "WESTUS:20200925T003333Z:631ccabb-50aa-4afa-a2b9-352469cc26fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2568,7 +2571,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:50:51 GMT" + "Fri, 25 Sep 2020 00:33:33 GMT" ], "Content-Length": [ "107" @@ -2580,17 +2583,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"dc2b648f-dd74-4cc4-a498-b62157b82faa\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-14T10:45:33.587Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"c4da8a04-3077-48e4-b0ba-b876f6cb6a17\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:32:33.05Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/759d5b94-1521-4c96-b43c-43c587cef64e?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzA3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi83NTlkNWI5NC0xNTIxLTRjOTYtYjQzYy00M2M1ODdjZWY2NGU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/c4da8a04-3077-48e4-b0ba-b876f6cb6a17?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9jNGRhOGEwNC0zMDc3LTQ4ZTQtYjBiYS1iODc2ZjZjYjZhMTc/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2607,7 +2610,7 @@ "15" ], "x-ms-request-id": [ - "1511ab15-43eb-4740-862d-26949edee0c6" + "cbfc7155-bd81-47f3-912e-d8845d1c7dc3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2616,10 +2619,10 @@ "11963" ], "x-ms-correlation-request-id": [ - "b56107e8-10b6-490b-bf76-1a2c0f4da7bc" + "ab6d3e1e-11cf-4dad-af0f-a143e70fd0ed" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T105108Z:b56107e8-10b6-490b-bf76-1a2c0f4da7bc" + "WESTUS:20200925T003348Z:ab6d3e1e-11cf-4dad-af0f-a143e70fd0ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2628,10 +2631,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:51:07 GMT" + "Fri, 25 Sep 2020 00:33:48 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2640,17 +2643,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"759d5b94-1521-4c96-b43c-43c587cef64e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T10:50:53.127Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"c4da8a04-3077-48e4-b0ba-b876f6cb6a17\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:32:33.05Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/759d5b94-1521-4c96-b43c-43c587cef64e?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzA3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi83NTlkNWI5NC0xNTIxLTRjOTYtYjQzYy00M2M1ODdjZWY2NGU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/c4da8a04-3077-48e4-b0ba-b876f6cb6a17?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9jNGRhOGEwNC0zMDc3LTQ4ZTQtYjBiYS1iODc2ZjZjYjZhMTc/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2667,7 +2670,7 @@ "15" ], "x-ms-request-id": [ - "7fc5310d-eb1a-4a31-9f55-2e45624fb893" + "cca91fd1-7b4a-47d8-8753-ca72da5f0e4e" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2676,10 +2679,10 @@ "11962" ], "x-ms-correlation-request-id": [ - "647a72b0-e75d-4509-9351-0063ed3e653e" + "ded761f4-1579-47c1-a180-f348f0f0d3ff" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T105123Z:647a72b0-e75d-4509-9351-0063ed3e653e" + "WESTUS:20200925T003403Z:ded761f4-1579-47c1-a180-f348f0f0d3ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2688,10 +2691,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:51:22 GMT" + "Fri, 25 Sep 2020 00:34:03 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2700,17 +2703,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"759d5b94-1521-4c96-b43c-43c587cef64e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T10:50:53.127Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"c4da8a04-3077-48e4-b0ba-b876f6cb6a17\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:32:33.05Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/759d5b94-1521-4c96-b43c-43c587cef64e?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzA3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi83NTlkNWI5NC0xNTIxLTRjOTYtYjQzYy00M2M1ODdjZWY2NGU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/c4da8a04-3077-48e4-b0ba-b876f6cb6a17?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9jNGRhOGEwNC0zMDc3LTQ4ZTQtYjBiYS1iODc2ZjZjYjZhMTc/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2727,7 +2730,7 @@ "15" ], "x-ms-request-id": [ - "541d0a75-8a94-4eca-813d-c4139608032b" + "f6500331-aa1b-4136-adc1-060457627efb" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2736,10 +2739,10 @@ "11961" ], "x-ms-correlation-request-id": [ - "8485243b-64b1-40e0-ac6b-7845a33e1f5d" + "4bf45a0d-7ab4-45b4-98a9-164ad007fec2" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T105138Z:8485243b-64b1-40e0-ac6b-7845a33e1f5d" + "WESTUS:20200925T003419Z:4bf45a0d-7ab4-45b4-98a9-164ad007fec2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2748,10 +2751,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:51:38 GMT" + "Fri, 25 Sep 2020 00:34:18 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2760,17 +2763,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"759d5b94-1521-4c96-b43c-43c587cef64e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T10:50:53.127Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"c4da8a04-3077-48e4-b0ba-b876f6cb6a17\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:32:33.05Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/759d5b94-1521-4c96-b43c-43c587cef64e?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzA3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi83NTlkNWI5NC0xNTIxLTRjOTYtYjQzYy00M2M1ODdjZWY2NGU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9543/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/c4da8a04-3077-48e4-b0ba-b876f6cb6a17?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9jNGRhOGEwNC0zMDc3LTQ4ZTQtYjBiYS1iODc2ZjZjYjZhMTc/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2787,7 +2790,7 @@ "15" ], "x-ms-request-id": [ - "5bbdddc5-2a1f-41b2-a977-7e04e8747a0d" + "68aad34d-8b11-4a8b-862b-646e41f1aa54" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2796,10 +2799,10 @@ "11960" ], "x-ms-correlation-request-id": [ - "8623a728-e021-4409-a724-2cd9b57704d6" + "44a6fe7d-726a-4fda-a14d-2f63c482c1c4" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T105153Z:8623a728-e021-4409-a724-2cd9b57704d6" + "WESTUS:20200925T003434Z:44a6fe7d-726a-4fda-a14d-2f63c482c1c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2808,10 +2811,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:51:53 GMT" + "Fri, 25 Sep 2020 00:34:33 GMT" ], "Content-Length": [ - "108" + "106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2820,80 +2823,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"759d5b94-1521-4c96-b43c-43c587cef64e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T10:50:53.127Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"c4da8a04-3077-48e4-b0ba-b876f6cb6a17\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-25T00:32:33.05Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/759d5b94-1521-4c96-b43c-43c587cef64e?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzA3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi83NTlkNWI5NC0xNTIxLTRjOTYtYjQzYy00M2M1ODdjZWY2NGU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps9543?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzOTU0Mz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "7d323a26-8249-44ee-a7bb-aa549103d1dd" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" - ], - "x-ms-correlation-request-id": [ - "3b49ff8e-9537-4232-b1c4-80b8096d7397" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T105209Z:3b49ff8e-9537-4232-b1c4-80b8096d7397" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 14 Sep 2020 10:52:08 GMT" - ], - "Content-Length": [ - "108" + "x-ms-client-request-id": [ + "15cdb73b-f770-4460-b659-f9c72521a4d3" ], - "Content-Type": [ - "application/json; charset=utf-8" + "Accept-Language": [ + "en-US" ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"759d5b94-1521-4c96-b43c-43c587cef64e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T10:50:53.127Z\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/759d5b94-1521-4c96-b43c-43c587cef64e?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzA3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi83NTlkNWI5NC0xNTIxLTRjOTYtYjQzYy00M2M1ODdjZWY2NGU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" ] }, "ResponseHeaders": { @@ -2903,23 +2852,23 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], "Retry-After": [ "15" ], - "x-ms-request-id": [ - "98720281-f6e8-4a2f-887f-3b9596cd7383" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" + "x-ms-request-id": [ + "08fd41a1-10f2-4205-b8ab-0aaf495e49e4" ], "x-ms-correlation-request-id": [ - "1c17b83e-e445-4dbe-a866-ba0fa42ddd58" + "08fd41a1-10f2-4205-b8ab-0aaf495e49e4" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T105224Z:1c17b83e-e445-4dbe-a866-ba0fa42ddd58" + "WESTUS:20200925T003436Z:08fd41a1-10f2-4205-b8ab-0aaf495e49e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2928,32 +2877,29 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:52:24 GMT" - ], - "Content-Length": [ - "108" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Fri, 25 Sep 2020 00:34:35 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"name\": \"759d5b94-1521-4c96-b43c-43c587cef64e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T10:50:53.127Z\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/759d5b94-1521-4c96-b43c-43c587cef64e?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzA3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi83NTlkNWI5NC0xNTIxLTRjOTYtYjQzYy00M2M1ODdjZWY2NGU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMU5ETXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" ] }, "ResponseHeaders": { @@ -2963,23 +2909,23 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], "Retry-After": [ "15" ], - "x-ms-request-id": [ - "01bea7ee-7fd8-402e-ba38-acbba01d9f64" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" + "11999" + ], + "x-ms-request-id": [ + "febdea9a-8a6d-4f88-9b25-5ad119dd6386" ], "x-ms-correlation-request-id": [ - "4ba97e62-ce27-464a-a7c8-5ef41ab4065d" + "febdea9a-8a6d-4f88-9b25-5ad119dd6386" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T105239Z:4ba97e62-ce27-464a-a7c8-5ef41ab4065d" + "WESTUS:20200925T003451Z:febdea9a-8a6d-4f88-9b25-5ad119dd6386" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2988,32 +2934,29 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:52:39 GMT" - ], - "Content-Length": [ - "108" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Fri, 25 Sep 2020 00:34:50 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"name\": \"759d5b94-1521-4c96-b43c-43c587cef64e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T10:50:53.127Z\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/759d5b94-1521-4c96-b43c-43c587cef64e?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzA3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi83NTlkNWI5NC0xNTIxLTRjOTYtYjQzYy00M2M1ODdjZWY2NGU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMU5ETXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" ] }, "ResponseHeaders": { @@ -3023,23 +2966,23 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], "Retry-After": [ "15" ], - "x-ms-request-id": [ - "89b9f9d6-f13d-4db9-8544-2275d7915619" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" + "11998" + ], + "x-ms-request-id": [ + "75fcddd3-a575-436d-8a44-10d302d046f5" ], "x-ms-correlation-request-id": [ - "18b2e666-310c-417f-a975-025f25175a0a" + "75fcddd3-a575-436d-8a44-10d302d046f5" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T105254Z:18b2e666-310c-417f-a975-025f25175a0a" + "WESTUS:20200925T003506Z:75fcddd3-a575-436d-8a44-10d302d046f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3048,32 +2991,29 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:52:54 GMT" - ], - "Content-Length": [ - "108" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Fri, 25 Sep 2020 00:35:05 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"name\": \"759d5b94-1521-4c96-b43c-43c587cef64e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T10:50:53.127Z\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7070/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/759d5b94-1521-4c96-b43c-43c587cef64e?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzA3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi83NTlkNWI5NC0xNTIxLTRjOTYtYjQzYy00M2M1ODdjZWY2NGU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMU5ETXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" ] }, "ResponseHeaders": { @@ -3083,23 +3023,23 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], "Retry-After": [ "15" ], - "x-ms-request-id": [ - "37538f24-b43b-4287-b636-48bad58182be" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" + "11997" + ], + "x-ms-request-id": [ + "c4261947-7efe-4f53-a316-26f9158924b5" ], "x-ms-correlation-request-id": [ - "75de57b8-aff7-4d5a-90ce-eea2e7b1513e" + "c4261947-7efe-4f53-a316-26f9158924b5" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T105309Z:75de57b8-aff7-4d5a-90ce-eea2e7b1513e" + "WESTUS:20200925T003521Z:c4261947-7efe-4f53-a316-26f9158924b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3108,35 +3048,26 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:53:09 GMT" - ], - "Content-Length": [ - "107" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Fri, 25 Sep 2020 00:35:21 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"name\": \"759d5b94-1521-4c96-b43c-43c587cef64e\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-14T10:50:53.127Z\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps7070?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzNzA3MD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMU5ETXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "57fec487-eaa0-4e5a-a13d-ca9fa2de8733" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3150,22 +3081,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcwNzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" ], "x-ms-request-id": [ - "6fbeefc8-a15f-4d10-81c5-8ff6ab9f4530" + "4f61f2ad-fd26-4093-89da-15e2e386a011" ], "x-ms-correlation-request-id": [ - "6fbeefc8-a15f-4d10-81c5-8ff6ab9f4530" + "4f61f2ad-fd26-4093-89da-15e2e386a011" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T105311Z:6fbeefc8-a15f-4d10-81c5-8ff6ab9f4530" + "WESTUS:20200925T003536Z:4f61f2ad-fd26-4093-89da-15e2e386a011" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3174,7 +3105,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:53:11 GMT" + "Fri, 25 Sep 2020 00:35:36 GMT" ], "Expires": [ "-1" @@ -3187,13 +3118,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcwNzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjd056QXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMU5ETXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3207,22 +3138,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcwNzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11995" ], "x-ms-request-id": [ - "4bcddc90-2cc8-4a61-924f-0b9ea8d44e29" + "670ee56b-203f-4151-9c1f-02614be5585b" ], "x-ms-correlation-request-id": [ - "4bcddc90-2cc8-4a61-924f-0b9ea8d44e29" + "670ee56b-203f-4151-9c1f-02614be5585b" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T105326Z:4bcddc90-2cc8-4a61-924f-0b9ea8d44e29" + "WESTUS:20200925T003551Z:670ee56b-203f-4151-9c1f-02614be5585b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3231,7 +3162,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:53:26 GMT" + "Fri, 25 Sep 2020 00:35:51 GMT" ], "Expires": [ "-1" @@ -3244,13 +3175,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcwNzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjd056QXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMU5ETXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3264,22 +3195,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcwNzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11994" ], "x-ms-request-id": [ - "80a5e880-4fdf-4eab-99f9-f6ee63ef6992" + "662fd853-c726-40c4-b7db-bd29845984c5" ], "x-ms-correlation-request-id": [ - "80a5e880-4fdf-4eab-99f9-f6ee63ef6992" + "662fd853-c726-40c4-b7db-bd29845984c5" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T105341Z:80a5e880-4fdf-4eab-99f9-f6ee63ef6992" + "WESTUS:20200925T003607Z:662fd853-c726-40c4-b7db-bd29845984c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3288,7 +3219,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:53:41 GMT" + "Fri, 25 Sep 2020 00:36:06 GMT" ], "Expires": [ "-1" @@ -3301,13 +3232,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcwNzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjd056QXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMU5ETXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3321,22 +3252,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcwNzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11993" ], "x-ms-request-id": [ - "d278a789-8737-4708-92ac-dea5904a9439" + "5a2abc0e-e28e-409b-af0d-f0651c4badc7" ], "x-ms-correlation-request-id": [ - "d278a789-8737-4708-92ac-dea5904a9439" + "5a2abc0e-e28e-409b-af0d-f0651c4badc7" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T105356Z:d278a789-8737-4708-92ac-dea5904a9439" + "WESTUS:20200925T003622Z:5a2abc0e-e28e-409b-af0d-f0651c4badc7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3345,7 +3276,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:53:56 GMT" + "Fri, 25 Sep 2020 00:36:21 GMT" ], "Expires": [ "-1" @@ -3358,13 +3289,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcwNzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjd056QXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMU5ETXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3378,22 +3309,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcwNzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11992" ], "x-ms-request-id": [ - "1bc3ef6d-c70a-4b6a-92dc-8a096841467a" + "9efc122f-0d9f-47c6-90da-553132f13e93" ], "x-ms-correlation-request-id": [ - "1bc3ef6d-c70a-4b6a-92dc-8a096841467a" + "9efc122f-0d9f-47c6-90da-553132f13e93" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T105412Z:1bc3ef6d-c70a-4b6a-92dc-8a096841467a" + "WESTUS:20200925T003637Z:9efc122f-0d9f-47c6-90da-553132f13e93" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3402,7 +3333,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:54:11 GMT" + "Fri, 25 Sep 2020 00:36:36 GMT" ], "Expires": [ "-1" @@ -3415,13 +3346,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcwNzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjd056QXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMU5ETXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3435,22 +3366,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcwNzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11991" ], "x-ms-request-id": [ - "2919ff3b-1490-4ef4-a2ad-aa19661b376f" + "f9aab6f4-c85b-41e8-9c3d-38adbcd952a3" ], "x-ms-correlation-request-id": [ - "2919ff3b-1490-4ef4-a2ad-aa19661b376f" + "f9aab6f4-c85b-41e8-9c3d-38adbcd952a3" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T105427Z:2919ff3b-1490-4ef4-a2ad-aa19661b376f" + "WESTUS:20200925T003652Z:f9aab6f4-c85b-41e8-9c3d-38adbcd952a3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3459,7 +3390,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:54:26 GMT" + "Fri, 25 Sep 2020 00:36:52 GMT" ], "Expires": [ "-1" @@ -3472,13 +3403,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcwNzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjd056QXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMU5ETXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3492,22 +3423,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcwNzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11990" ], "x-ms-request-id": [ - "7b99eae6-c98f-42b4-8631-6d06f0031f3d" + "cd638bd6-ea31-40d3-a2fd-cc5bbcae6c82" ], "x-ms-correlation-request-id": [ - "7b99eae6-c98f-42b4-8631-6d06f0031f3d" + "cd638bd6-ea31-40d3-a2fd-cc5bbcae6c82" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T105442Z:7b99eae6-c98f-42b4-8631-6d06f0031f3d" + "WESTUS:20200925T003707Z:cd638bd6-ea31-40d3-a2fd-cc5bbcae6c82" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3516,7 +3447,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:54:41 GMT" + "Fri, 25 Sep 2020 00:37:07 GMT" ], "Expires": [ "-1" @@ -3529,13 +3460,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcwNzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjd056QXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMU5ETXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3549,22 +3480,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcwNzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11989" ], "x-ms-request-id": [ - "fe0d70d6-9121-4b45-81c0-886ae31d07b5" + "5f3fc82b-11c2-45e4-874c-5268a9e658b6" ], "x-ms-correlation-request-id": [ - "fe0d70d6-9121-4b45-81c0-886ae31d07b5" + "5f3fc82b-11c2-45e4-874c-5268a9e658b6" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T105457Z:fe0d70d6-9121-4b45-81c0-886ae31d07b5" + "WESTUS:20200925T003722Z:5f3fc82b-11c2-45e4-874c-5268a9e658b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3573,7 +3504,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:54:57 GMT" + "Fri, 25 Sep 2020 00:37:22 GMT" ], "Expires": [ "-1" @@ -3586,13 +3517,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcwNzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjd056QXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMU5ETXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3606,22 +3537,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcwNzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11988" ], "x-ms-request-id": [ - "f30726ba-33b9-4ed4-8be6-f0825407a60f" + "a0e97677-deec-45aa-a60a-2a7946efb08d" ], "x-ms-correlation-request-id": [ - "f30726ba-33b9-4ed4-8be6-f0825407a60f" + "a0e97677-deec-45aa-a60a-2a7946efb08d" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T105512Z:f30726ba-33b9-4ed4-8be6-f0825407a60f" + "WESTUS:20200925T003738Z:a0e97677-deec-45aa-a60a-2a7946efb08d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3630,7 +3561,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:55:12 GMT" + "Fri, 25 Sep 2020 00:37:37 GMT" ], "Expires": [ "-1" @@ -3643,13 +3574,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcwNzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjd056QXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMU5ETXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3663,22 +3594,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcwNzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11987" ], "x-ms-request-id": [ - "6219968f-ec55-492f-ba83-cfc107431a51" + "a936f08d-fa96-4723-a8f6-86b8fbb993f7" ], "x-ms-correlation-request-id": [ - "6219968f-ec55-492f-ba83-cfc107431a51" + "a936f08d-fa96-4723-a8f6-86b8fbb993f7" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T105528Z:6219968f-ec55-492f-ba83-cfc107431a51" + "WESTUS:20200925T003753Z:a936f08d-fa96-4723-a8f6-86b8fbb993f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3687,7 +3618,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:55:27 GMT" + "Fri, 25 Sep 2020 00:37:53 GMT" ], "Expires": [ "-1" @@ -3700,13 +3631,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcwNzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjd056QXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMU5ETXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3720,16 +3651,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11986" ], "x-ms-request-id": [ - "f4129976-2558-4a38-b829-4817e8b45c86" + "d0718faf-8667-4015-b84b-24f2f9e851f4" ], "x-ms-correlation-request-id": [ - "f4129976-2558-4a38-b829-4817e8b45c86" + "d0718faf-8667-4015-b84b-24f2f9e851f4" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T105543Z:f4129976-2558-4a38-b829-4817e8b45c86" + "WESTUS:20200925T003808Z:d0718faf-8667-4015-b84b-24f2f9e851f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3738,7 +3669,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:55:42 GMT" + "Fri, 25 Sep 2020 00:38:08 GMT" ], "Expires": [ "-1" @@ -3751,13 +3682,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcwNzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjd056QXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMU5ETXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3771,16 +3702,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11985" ], "x-ms-request-id": [ - "215349fe-af42-4390-b5a0-4379dd660f52" + "363fc0b0-ed55-4b5d-9bbd-d4c73255cfeb" ], "x-ms-correlation-request-id": [ - "215349fe-af42-4390-b5a0-4379dd660f52" + "363fc0b0-ed55-4b5d-9bbd-d4c73255cfeb" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T105543Z:215349fe-af42-4390-b5a0-4379dd660f52" + "WESTUS:20200925T003808Z:363fc0b0-ed55-4b5d-9bbd-d4c73255cfeb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3789,7 +3720,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 10:55:42 GMT" + "Fri, 25 Sep 2020 00:38:08 GMT" ], "Expires": [ "-1" @@ -3804,9 +3735,9 @@ ], "Names": { "Test-UpdateStretchDatabase": [ - "ps7070", - "ps7831", - "ps4541" + "ps9543", + "ps6075", + "ps4860" ] }, "Variables": { diff --git a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseCancelOperation.json b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseCancelOperation.json index 5b7648448439..7e8f0b64d4e5 100644 --- a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseCancelOperation.json +++ b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseCancelOperation.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8e0d524d-35f6-4637-9862-f7ab9636b470" + "364b74b8-d8c3-475a-9a79-7c975576fb50" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -30,16 +30,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11970" ], "x-ms-request-id": [ - "827bab1c-3558-4742-abe3-c99db536d7dc" + "50f4c2f7-b520-45b9-93fd-d42aca4f8275" ], "x-ms-correlation-request-id": [ - "827bab1c-3558-4742-abe3-c99db536d7dc" + "50f4c2f7-b520-45b9-93fd-d42aca4f8275" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T050412Z:827bab1c-3558-4742-abe3-c99db536d7dc" + "WESTUS:20200925T014513Z:50f4c2f7-b520-45b9-93fd-d42aca4f8275" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -48,7 +48,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:04:11 GMT" + "Fri, 25 Sep 2020 01:45:12 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -64,19 +64,19 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps9101?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzOTEwMT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps4023?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzNDAyMz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "63b723dc-52f2-4268-8bdb-7ebdce136d95" + "9c5c40d9-8dec-49af-b05a-3245fa3958f2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -96,16 +96,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-request-id": [ - "021e61dc-7c08-432f-b97d-14c24ecb61ba" + "7ded1a74-103a-4922-bd0f-9f775455a40f" ], "x-ms-correlation-request-id": [ - "021e61dc-7c08-432f-b97d-14c24ecb61ba" + "7ded1a74-103a-4922-bd0f-9f775455a40f" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T050412Z:021e61dc-7c08-432f-b97d-14c24ecb61ba" + "WESTUS:20200925T014513Z:7ded1a74-103a-4922-bd0f-9f775455a40f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -114,7 +114,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:04:12 GMT" + "Fri, 25 Sep 2020 01:45:12 GMT" ], "Content-Length": [ "165" @@ -126,23 +126,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9101\",\r\n \"name\": \"ps9101\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4023\",\r\n \"name\": \"ps4023\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9101/providers/Microsoft.Sql/servers/ps8866?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTEwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODg2Nj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4023/providers/Microsoft.Sql/servers/ps6117?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDAyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjExNz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "45234d94-f305-4c21-a239-16ef5e64c8d1" + "87ef33dd-7cc7-4c0a-887e-25740d8af086" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -159,13 +159,13 @@ "gateway" ], "x-ms-request-id": [ - "1da045f5-7dd7-4286-a2d2-6d8147734fb8" + "b4b8b0a1-c623-4bfb-acc8-285cfd0a581e" ], "x-ms-correlation-request-id": [ - "1da045f5-7dd7-4286-a2d2-6d8147734fb8" + "b4b8b0a1-c623-4bfb-acc8-285cfd0a581e" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T050412Z:1da045f5-7dd7-4286-a2d2-6d8147734fb8" + "WESTUS:20200925T014513Z:b4b8b0a1-c623-4bfb-acc8-285cfd0a581e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -174,7 +174,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:04:12 GMT" + "Fri, 25 Sep 2020 01:45:13 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -186,17 +186,17 @@ "206" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps8866' under resource group 'ps9101' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps6117' under resource group 'ps4023' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9101/providers/Microsoft.Sql/servers/ps8866?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTEwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODg2Nj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4023/providers/Microsoft.Sql/servers/ps6117?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDAyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjExNz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -210,19 +210,19 @@ "no-cache" ], "x-ms-request-id": [ - "bbc8a75e-10b6-4f08-a120-c6c148ae224e" + "d850e6ba-04c9-445e-97a4-cf26f07ea259" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11990" ], "x-ms-correlation-request-id": [ - "8a38a23d-b866-4cdc-b881-111ed9c6e724" + "f4a58b35-b7fb-48f5-916a-19319dd43243" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T050458Z:8a38a23d-b866-4cdc-b881-111ed9c6e724" + "WESTUS:20200925T014619Z:f4a58b35-b7fb-48f5-916a-19319dd43243" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -231,7 +231,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:04:58 GMT" + "Fri, 25 Sep 2020 01:46:18 GMT" ], "Content-Length": [ "408" @@ -243,23 +243,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps8866.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9101/providers/Microsoft.Sql/servers/ps8866\",\r\n \"name\": \"ps8866\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps6117.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4023/providers/Microsoft.Sql/servers/ps6117\",\r\n \"name\": \"ps6117\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9101/providers/Microsoft.Sql/servers/ps8866?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTEwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODg2Nj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4023/providers/Microsoft.Sql/servers/ps6117?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDAyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjExNz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dee3835a-65b3-4628-990f-2f1c40c02baf" + "81970244-6cd7-40a4-a2d4-54f63453c2c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -273,19 +273,82 @@ "no-cache" ], "x-ms-request-id": [ - "93b1f4ec-3184-47a7-a9d8-837a8e38852f" + "1cdcf750-e772-48ac-9a16-f33008c56a65" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11989" + ], + "x-ms-correlation-request-id": [ + "8fe126d4-58d7-4316-8fd9-9e44b5f9ade2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200925T014619Z:8fe126d4-58d7-4316-8fd9-9e44b5f9ade2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 25 Sep 2020 01:46:18 GMT" + ], + "Content-Length": [ + "408" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps6117.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4023/providers/Microsoft.Sql/servers/ps6117\",\r\n \"name\": \"ps6117\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4023/providers/Microsoft.Sql/servers/ps6117?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDAyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjExNz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4da2b173-e15b-4d9a-98df-be841d29c635" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "03908eba-e4fc-4be7-abe8-397603e071ad" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" ], "x-ms-correlation-request-id": [ - "3b6d2fb4-413e-47eb-9e19-06f69eea4219" + "3d873d1d-9305-43e5-acca-f292bd7f4f49" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T050458Z:3b6d2fb4-413e-47eb-9e19-06f69eea4219" + "WESTUS:20200925T014619Z:3d873d1d-9305-43e5-acca-f292bd7f4f49" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -294,7 +357,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:04:58 GMT" + "Fri, 25 Sep 2020 01:46:18 GMT" ], "Content-Length": [ "408" @@ -306,23 +369,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps8866.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9101/providers/Microsoft.Sql/servers/ps8866\",\r\n \"name\": \"ps8866\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps6117.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4023/providers/Microsoft.Sql/servers/ps6117\",\r\n \"name\": \"ps6117\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9101/providers/Microsoft.Sql/servers/ps8866?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTEwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODg2Nj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4023/providers/Microsoft.Sql/servers/ps6117?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDAyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjExNz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b7e951e5-0990-4568-9f64-bfd4f050de82" + "72154890-995b-494c-9892-ada7b02d3131" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -336,19 +399,19 @@ "no-cache" ], "x-ms-request-id": [ - "4ab29783-216a-4b45-93f0-1353b39cc562" + "912d08db-0e90-4548-a3ae-23e0ae32a28e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11982" ], "x-ms-correlation-request-id": [ - "bf72e25a-2c04-44d5-85ab-ce2c21efcfa5" + "d9d4074d-89f6-4da4-92c5-b82a73683a96" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T050458Z:bf72e25a-2c04-44d5-85ab-ce2c21efcfa5" + "WESTUS:20200925T014705Z:d9d4074d-89f6-4da4-92c5-b82a73683a96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -357,7 +420,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:04:58 GMT" + "Fri, 25 Sep 2020 01:47:04 GMT" ], "Content-Length": [ "408" @@ -369,23 +432,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps8866.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9101/providers/Microsoft.Sql/servers/ps8866\",\r\n \"name\": \"ps8866\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps6117.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4023/providers/Microsoft.Sql/servers/ps6117\",\r\n \"name\": \"ps6117\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9101/providers/Microsoft.Sql/servers/ps8866?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTEwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODg2Nj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4023/providers/Microsoft.Sql/servers/ps6117?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDAyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjExNz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fc671f35-4e26-4211-8180-21d5a0c95c32" + "33f4c770-e995-4923-8f10-afb8f6fd89ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -405,16 +468,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9101/providers/Microsoft.Sql/locations/westus/serverOperationResults/d1f9bdf5-0f47-451b-b947-aed8e543378d?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4023/providers/Microsoft.Sql/locations/westus/serverOperationResults/185f025d-9d81-4907-be47-5219f9fe96db?api-version=2019-06-01-preview" ], "Retry-After": [ "1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9101/providers/Microsoft.Sql/locations/westus/serverAzureAsyncOperation/d1f9bdf5-0f47-451b-b947-aed8e543378d?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4023/providers/Microsoft.Sql/locations/westus/serverAzureAsyncOperation/185f025d-9d81-4907-be47-5219f9fe96db?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "d1f9bdf5-0f47-451b-b947-aed8e543378d" + "185f025d-9d81-4907-be47-5219f9fe96db" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -423,10 +486,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "711e25c4-6f45-4269-8ae7-da70a05162ae" + "eca1e276-0eb1-4bab-a26c-42b6bb6b6492" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T050413Z:711e25c4-6f45-4269-8ae7-da70a05162ae" + "WESTUS:20200925T014513Z:eca1e276-0eb1-4bab-a26c-42b6bb6b6492" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -435,10 +498,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:04:12 GMT" + "Fri, 25 Sep 2020 01:45:13 GMT" ], "Content-Length": [ - "74" + "72" ], "Content-Type": [ "application/json; charset=utf-8" @@ -447,17 +510,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-13T05:04:12.933Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-25T01:45:13.8Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9101/providers/Microsoft.Sql/locations/westus/serverAzureAsyncOperation/d1f9bdf5-0f47-451b-b947-aed8e543378d?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTEwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vZDFmOWJkZjUtMGY0Ny00NTFiLWI5NDctYWVkOGU1NDMzNzhkP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4023/providers/Microsoft.Sql/locations/westus/serverAzureAsyncOperation/185f025d-9d81-4907-be47-5219f9fe96db?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDAyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vMTg1ZjAyNWQtOWQ4MS00OTA3LWJlNDctNTIxOWY5ZmU5NmRiP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -474,7 +537,7 @@ "1" ], "x-ms-request-id": [ - "4f6ac1ff-1c67-4fa6-8567-6bb5ce3bad5a" + "5ee726bf-f16e-4d9f-b75b-4a36b88fd9a0" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -483,10 +546,10 @@ "11998" ], "x-ms-correlation-request-id": [ - "9b4368fa-b4fe-4767-a511-5a04d137860a" + "d0d9403f-0085-4a08-9d43-14c6cd96c10b" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T050414Z:9b4368fa-b4fe-4767-a511-5a04d137860a" + "WESTUS:20200925T014514Z:d0d9403f-0085-4a08-9d43-14c6cd96c10b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -495,10 +558,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:04:13 GMT" + "Fri, 25 Sep 2020 01:45:14 GMT" ], "Content-Length": [ - "108" + "106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -507,17 +570,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d1f9bdf5-0f47-451b-b947-aed8e543378d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T05:04:12.933Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"185f025d-9d81-4907-be47-5219f9fe96db\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:45:13.8Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9101/providers/Microsoft.Sql/locations/westus/serverAzureAsyncOperation/d1f9bdf5-0f47-451b-b947-aed8e543378d?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTEwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vZDFmOWJkZjUtMGY0Ny00NTFiLWI5NDctYWVkOGU1NDMzNzhkP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4023/providers/Microsoft.Sql/locations/westus/serverAzureAsyncOperation/185f025d-9d81-4907-be47-5219f9fe96db?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDAyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vMTg1ZjAyNWQtOWQ4MS00OTA3LWJlNDctNTIxOWY5ZmU5NmRiP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -534,7 +597,7 @@ "1" ], "x-ms-request-id": [ - "10bbacf4-488a-4792-8142-0409627b31f2" + "104ec610-96dd-4f8a-8ae1-a261a282745a" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -543,10 +606,10 @@ "11997" ], "x-ms-correlation-request-id": [ - "dabe08e3-c600-4b7f-875e-a246f95d624a" + "e0c6ec23-2b6c-4545-bd8d-6a8c1366d22f" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T050415Z:dabe08e3-c600-4b7f-875e-a246f95d624a" + "WESTUS:20200925T014515Z:e0c6ec23-2b6c-4545-bd8d-6a8c1366d22f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -555,10 +618,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:04:14 GMT" + "Fri, 25 Sep 2020 01:45:15 GMT" ], "Content-Length": [ - "108" + "106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -567,17 +630,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d1f9bdf5-0f47-451b-b947-aed8e543378d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T05:04:12.933Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"185f025d-9d81-4907-be47-5219f9fe96db\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:45:13.8Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9101/providers/Microsoft.Sql/locations/westus/serverAzureAsyncOperation/d1f9bdf5-0f47-451b-b947-aed8e543378d?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTEwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vZDFmOWJkZjUtMGY0Ny00NTFiLWI5NDctYWVkOGU1NDMzNzhkP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4023/providers/Microsoft.Sql/locations/westus/serverAzureAsyncOperation/185f025d-9d81-4907-be47-5219f9fe96db?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDAyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vMTg1ZjAyNWQtOWQ4MS00OTA3LWJlNDctNTIxOWY5ZmU5NmRiP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -594,7 +657,7 @@ "1" ], "x-ms-request-id": [ - "177ea43a-f4a1-40d6-ada3-61bb5a93d16a" + "1b2a351b-2d2b-4530-8306-378643f24077" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -603,10 +666,10 @@ "11996" ], "x-ms-correlation-request-id": [ - "c5701a8b-193b-4291-8df0-6a76d8a74918" + "d0874d89-0fb6-4594-97a8-dc0e972078be" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T050416Z:c5701a8b-193b-4291-8df0-6a76d8a74918" + "WESTUS:20200925T014516Z:d0874d89-0fb6-4594-97a8-dc0e972078be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -615,10 +678,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:04:15 GMT" + "Fri, 25 Sep 2020 01:45:16 GMT" ], "Content-Length": [ - "108" + "106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -627,17 +690,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d1f9bdf5-0f47-451b-b947-aed8e543378d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T05:04:12.933Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"185f025d-9d81-4907-be47-5219f9fe96db\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:45:13.8Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9101/providers/Microsoft.Sql/locations/westus/serverAzureAsyncOperation/d1f9bdf5-0f47-451b-b947-aed8e543378d?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTEwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vZDFmOWJkZjUtMGY0Ny00NTFiLWI5NDctYWVkOGU1NDMzNzhkP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4023/providers/Microsoft.Sql/locations/westus/serverAzureAsyncOperation/185f025d-9d81-4907-be47-5219f9fe96db?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDAyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vMTg1ZjAyNWQtOWQ4MS00OTA3LWJlNDctNTIxOWY5ZmU5NmRiP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -654,7 +717,7 @@ "1" ], "x-ms-request-id": [ - "b884db70-d909-41cb-aebe-5fe97649820f" + "3cbeb6d5-5e8a-4865-ab90-1ba8bcf279af" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -663,10 +726,10 @@ "11995" ], "x-ms-correlation-request-id": [ - "4eeff284-e3af-438e-adf9-d659bb8925f7" + "3661ca63-969f-48fe-a3b6-448296c37654" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T050417Z:4eeff284-e3af-438e-adf9-d659bb8925f7" + "WESTUS:20200925T014518Z:3661ca63-969f-48fe-a3b6-448296c37654" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -675,10 +738,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:04:16 GMT" + "Fri, 25 Sep 2020 01:45:17 GMT" ], "Content-Length": [ - "108" + "106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -687,17 +750,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d1f9bdf5-0f47-451b-b947-aed8e543378d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T05:04:12.933Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"185f025d-9d81-4907-be47-5219f9fe96db\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:45:13.8Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9101/providers/Microsoft.Sql/locations/westus/serverAzureAsyncOperation/d1f9bdf5-0f47-451b-b947-aed8e543378d?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTEwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vZDFmOWJkZjUtMGY0Ny00NTFiLWI5NDctYWVkOGU1NDMzNzhkP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4023/providers/Microsoft.Sql/locations/westus/serverAzureAsyncOperation/185f025d-9d81-4907-be47-5219f9fe96db?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDAyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vMTg1ZjAyNWQtOWQ4MS00OTA3LWJlNDctNTIxOWY5ZmU5NmRiP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -714,7 +777,7 @@ "20" ], "x-ms-request-id": [ - "bf8daa38-f0e7-4e5d-a5b2-86a79bab1acb" + "d8dd669d-a437-4534-be49-e3ac68e3a0fe" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -723,10 +786,10 @@ "11994" ], "x-ms-correlation-request-id": [ - "61a2f35d-1bd7-4ceb-82da-fa16816f929c" + "d643fe0c-4ca0-48b9-bcbf-03043805cb0b" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T050418Z:61a2f35d-1bd7-4ceb-82da-fa16816f929c" + "WESTUS:20200925T014519Z:d643fe0c-4ca0-48b9-bcbf-03043805cb0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -735,10 +798,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:04:18 GMT" + "Fri, 25 Sep 2020 01:45:18 GMT" ], "Content-Length": [ - "108" + "106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -747,17 +810,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d1f9bdf5-0f47-451b-b947-aed8e543378d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T05:04:12.933Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"185f025d-9d81-4907-be47-5219f9fe96db\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:45:13.8Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9101/providers/Microsoft.Sql/locations/westus/serverAzureAsyncOperation/d1f9bdf5-0f47-451b-b947-aed8e543378d?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTEwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vZDFmOWJkZjUtMGY0Ny00NTFiLWI5NDctYWVkOGU1NDMzNzhkP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4023/providers/Microsoft.Sql/locations/westus/serverAzureAsyncOperation/185f025d-9d81-4907-be47-5219f9fe96db?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDAyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vMTg1ZjAyNWQtOWQ4MS00OTA3LWJlNDctNTIxOWY5ZmU5NmRiP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -774,7 +837,7 @@ "20" ], "x-ms-request-id": [ - "082e9b22-81b5-4b46-bef9-d61d6da23cae" + "98509262-b05f-4bb1-96b8-ac89b67dfcc9" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -783,10 +846,10 @@ "11993" ], "x-ms-correlation-request-id": [ - "416cfc19-8d2f-42a6-8497-dda360ff5909" + "c1603c36-ebe2-4e42-a25d-00241b28502a" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T050438Z:416cfc19-8d2f-42a6-8497-dda360ff5909" + "WESTUS:20200925T014539Z:c1603c36-ebe2-4e42-a25d-00241b28502a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -795,10 +858,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:04:37 GMT" + "Fri, 25 Sep 2020 01:45:38 GMT" ], "Content-Length": [ - "108" + "106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -807,17 +870,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d1f9bdf5-0f47-451b-b947-aed8e543378d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T05:04:12.933Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"185f025d-9d81-4907-be47-5219f9fe96db\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:45:13.8Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9101/providers/Microsoft.Sql/locations/westus/serverAzureAsyncOperation/d1f9bdf5-0f47-451b-b947-aed8e543378d?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTEwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vZDFmOWJkZjUtMGY0Ny00NTFiLWI5NDctYWVkOGU1NDMzNzhkP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4023/providers/Microsoft.Sql/locations/westus/serverAzureAsyncOperation/185f025d-9d81-4907-be47-5219f9fe96db?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDAyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vMTg1ZjAyNWQtOWQ4MS00OTA3LWJlNDctNTIxOWY5ZmU5NmRiP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -831,10 +894,10 @@ "no-cache" ], "Retry-After": [ - "15" + "20" ], "x-ms-request-id": [ - "2045da07-0a6f-4ab0-9c2c-76e93ea6adf8" + "922ceddc-6a6b-430d-be3e-d22df36049ce" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -843,10 +906,10 @@ "11992" ], "x-ms-correlation-request-id": [ - "83d6f200-232b-403f-9c8f-1816d69d3fc9" + "c8d40065-72cd-4511-8128-a043f58cd698" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T050458Z:83d6f200-232b-403f-9c8f-1816d69d3fc9" + "WESTUS:20200925T014559Z:c8d40065-72cd-4511-8128-a043f58cd698" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -855,10 +918,70 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:04:58 GMT" + "Fri, 25 Sep 2020 01:45:58 GMT" ], "Content-Length": [ - "107" + "106" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"185f025d-9d81-4907-be47-5219f9fe96db\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:45:13.8Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4023/providers/Microsoft.Sql/locations/westus/serverAzureAsyncOperation/185f025d-9d81-4907-be47-5219f9fe96db?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDAyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vMTg1ZjAyNWQtOWQ4MS00OTA3LWJlNDctNTIxOWY5ZmU5NmRiP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "c6437c73-4e38-47aa-a505-4ee6b8d0bd13" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "c4b26ec6-d717-4e18-9891-07aa95583945" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200925T014619Z:c4b26ec6-d717-4e18-9891-07aa95583945" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 25 Sep 2020 01:46:18 GMT" + ], + "Content-Length": [ + "105" ], "Content-Type": [ "application/json; charset=utf-8" @@ -867,23 +990,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d1f9bdf5-0f47-451b-b947-aed8e543378d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-13T05:04:12.933Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"185f025d-9d81-4907-be47-5219f9fe96db\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-25T01:45:13.8Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9101/providers/Microsoft.Sql/servers/ps8866/databases/ps4300?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTEwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODg2Ni9kYXRhYmFzZXMvcHM0MzAwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4023/providers/Microsoft.Sql/servers/ps6117/databases/ps7150?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDAyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjExNy9kYXRhYmFzZXMvcHM3MTUwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3f9a28a0-6609-4d0d-b3be-a58e4c4dcb80" + "01865d3e-d319-4c3c-a57f-df0bcaefd41f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -900,13 +1023,13 @@ "gateway" ], "x-ms-request-id": [ - "853084ca-6445-45f1-a8d9-f04da1745bbd" + "23ac9a59-d9b6-46df-8647-2d4f0f03e282" ], "x-ms-correlation-request-id": [ - "853084ca-6445-45f1-a8d9-f04da1745bbd" + "23ac9a59-d9b6-46df-8647-2d4f0f03e282" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T050458Z:853084ca-6445-45f1-a8d9-f04da1745bbd" + "WESTUS:20200925T014619Z:23ac9a59-d9b6-46df-8647-2d4f0f03e282" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -915,7 +1038,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:04:58 GMT" + "Fri, 25 Sep 2020 01:46:18 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -927,17 +1050,17 @@ "223" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps8866/databases/ps4300' under resource group 'ps9101' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps6117/databases/ps7150' under resource group 'ps4023' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9101/providers/Microsoft.Sql/servers/ps8866/databases/ps4300?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTEwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODg2Ni9kYXRhYmFzZXMvcHM0MzAwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4023/providers/Microsoft.Sql/servers/ps6117/databases/ps7150?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDAyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjExNy9kYXRhYmFzZXMvcHM3MTUwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -951,19 +1074,19 @@ "no-cache" ], "x-ms-request-id": [ - "e85f5d5e-9554-4d4d-8a02-21f62778e74a" + "56198709-a3bc-4b12-800a-ea1c27f62933" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11983" ], "x-ms-correlation-request-id": [ - "dbcddb0e-c030-4c74-9179-fdde024ce2f5" + "7846fc1b-be7d-4fe0-ad2c-58ae663a5796" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T050544Z:dbcddb0e-c030-4c74-9179-fdde024ce2f5" + "WESTUS:20200925T014704Z:7846fc1b-be7d-4fe0-ad2c-58ae663a5796" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -972,10 +1095,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:05:43 GMT" + "Fri, 25 Sep 2020 01:47:04 GMT" ], "Content-Length": [ - "854" + "856" ], "Content-Type": [ "application/json; charset=utf-8" @@ -984,23 +1107,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"68a915ea-c745-4a3d-8608-5f324416bdfe\",\r\n \"creationDate\": \"2020-09-13T05:05:36.23Z\",\r\n \"currentServiceObjectiveName\": \"S0\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"defaultSecondaryLocation\": \"eastus\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-13T05:35:36.23Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9101/providers/Microsoft.Sql/servers/ps8866/databases/ps4300\",\r\n \"name\": \"ps4300\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"fc6facc3-c970-4089-9916-03273d043a9d\",\r\n \"creationDate\": \"2020-09-25T01:46:56.973Z\",\r\n \"currentServiceObjectiveName\": \"S0\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"defaultSecondaryLocation\": \"eastus\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-25T02:16:56.973Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4023/providers/Microsoft.Sql/servers/ps6117/databases/ps7150\",\r\n \"name\": \"ps7150\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9101/providers/Microsoft.Sql/servers/ps8866/databases/ps4300?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTEwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODg2Ni9kYXRhYmFzZXMvcHM0MzAwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4023/providers/Microsoft.Sql/servers/ps6117/databases/ps7150?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDAyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjExNy9kYXRhYmFzZXMvcHM3MTUwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "53ee92c4-4bc4-4e94-b412-7fd6a0a1ae1e" + "7c1577e5-a30f-4b2a-a9ee-e6be5fd7fe62" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1014,19 +1137,19 @@ "no-cache" ], "x-ms-request-id": [ - "b2cfb3b5-b394-4ba1-845c-7c95a7560b91" + "f9125b8d-429e-4209-9e2f-4ad8eddf6a34" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11981" ], "x-ms-correlation-request-id": [ - "a732379d-6c56-4a92-883d-c777f105ba26" + "77d5e3fd-5f22-4d83-970c-c390ebb6baf4" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T050544Z:a732379d-6c56-4a92-883d-c777f105ba26" + "WESTUS:20200925T014705Z:77d5e3fd-5f22-4d83-970c-c390ebb6baf4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1035,10 +1158,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:05:43 GMT" + "Fri, 25 Sep 2020 01:47:05 GMT" ], "Content-Length": [ - "854" + "856" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1047,23 +1170,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"68a915ea-c745-4a3d-8608-5f324416bdfe\",\r\n \"creationDate\": \"2020-09-13T05:05:36.23Z\",\r\n \"currentServiceObjectiveName\": \"S0\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"defaultSecondaryLocation\": \"eastus\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-13T05:35:36.23Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9101/providers/Microsoft.Sql/servers/ps8866/databases/ps4300\",\r\n \"name\": \"ps4300\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"fc6facc3-c970-4089-9916-03273d043a9d\",\r\n \"creationDate\": \"2020-09-25T01:46:56.973Z\",\r\n \"currentServiceObjectiveName\": \"S0\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"defaultSecondaryLocation\": \"eastus\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-25T02:16:56.973Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4023/providers/Microsoft.Sql/servers/ps6117/databases/ps7150\",\r\n \"name\": \"ps7150\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9101/providers/Microsoft.Sql/servers/ps8866/databases/ps4300?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTEwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODg2Ni9kYXRhYmFzZXMvcHM0MzAwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4023/providers/Microsoft.Sql/servers/ps6117/databases/ps7150?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDAyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjExNy9kYXRhYmFzZXMvcHM3MTUwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ee469140-2844-4999-bc09-c4c23585898e" + "02cd14ce-af12-4c22-8f63-eb2f9db84186" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1077,19 +1200,19 @@ "no-cache" ], "x-ms-request-id": [ - "00d9b520-0ec3-45b9-9765-f00c0ddfca11" + "b888a89c-be89-4d8d-a891-a46a8145ecd3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11980" ], "x-ms-correlation-request-id": [ - "b44cef06-84df-44da-9f53-4a470852866d" + "e1bcd059-82d1-4396-8bda-dc01fe808e86" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T050544Z:b44cef06-84df-44da-9f53-4a470852866d" + "WESTUS:20200925T014705Z:e1bcd059-82d1-4396-8bda-dc01fe808e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1098,10 +1221,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:05:43 GMT" + "Fri, 25 Sep 2020 01:47:05 GMT" ], "Content-Length": [ - "854" + "856" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1110,17 +1233,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"68a915ea-c745-4a3d-8608-5f324416bdfe\",\r\n \"creationDate\": \"2020-09-13T05:05:36.23Z\",\r\n \"currentServiceObjectiveName\": \"S0\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"defaultSecondaryLocation\": \"eastus\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-13T05:35:36.23Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9101/providers/Microsoft.Sql/servers/ps8866/databases/ps4300\",\r\n \"name\": \"ps4300\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"fc6facc3-c970-4089-9916-03273d043a9d\",\r\n \"creationDate\": \"2020-09-25T01:46:56.973Z\",\r\n \"currentServiceObjectiveName\": \"S0\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"defaultSecondaryLocation\": \"eastus\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-25T02:16:56.973Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4023/providers/Microsoft.Sql/servers/ps6117/databases/ps7150\",\r\n \"name\": \"ps7150\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9101/providers/Microsoft.Sql/servers/ps8866/databases/ps4300?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTEwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODg2Ni9kYXRhYmFzZXMvcHM0MzAwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4023/providers/Microsoft.Sql/servers/ps6117/databases/ps7150?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDAyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjExNy9kYXRhYmFzZXMvcHM3MTUwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1134,19 +1257,19 @@ "no-cache" ], "x-ms-request-id": [ - "6e74fc5f-ee88-4a99-aaa8-40273e08580a" + "ab1c25ef-312d-480e-89c1-187413d4bcd8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11976" ], "x-ms-correlation-request-id": [ - "df78b295-9675-4c5a-ba9b-7b666c3d18ab" + "c99cdcc5-4aa9-4e4d-b151-b5b7ffa9006b" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T050631Z:df78b295-9675-4c5a-ba9b-7b666c3d18ab" + "WESTUS:20200925T014750Z:c99cdcc5-4aa9-4e4d-b151-b5b7ffa9006b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1155,10 +1278,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:06:31 GMT" + "Fri, 25 Sep 2020 01:47:50 GMT" ], "Content-Length": [ - "854" + "856" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1167,23 +1290,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 20\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"68a915ea-c745-4a3d-8608-5f324416bdfe\",\r\n \"creationDate\": \"2020-09-13T05:05:36.23Z\",\r\n \"currentServiceObjectiveName\": \"S1\",\r\n \"requestedServiceObjectiveName\": \"S1\",\r\n \"defaultSecondaryLocation\": \"eastus\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-13T05:35:36.23Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 20\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9101/providers/Microsoft.Sql/servers/ps8866/databases/ps4300\",\r\n \"name\": \"ps4300\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 20\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"fc6facc3-c970-4089-9916-03273d043a9d\",\r\n \"creationDate\": \"2020-09-25T01:46:56.973Z\",\r\n \"currentServiceObjectiveName\": \"S1\",\r\n \"requestedServiceObjectiveName\": \"S1\",\r\n \"defaultSecondaryLocation\": \"eastus\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-25T02:16:56.973Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 20\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4023/providers/Microsoft.Sql/servers/ps6117/databases/ps7150\",\r\n \"name\": \"ps7150\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9101/providers/Microsoft.Sql/servers/ps8866/databases/ps4300?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTEwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODg2Ni9kYXRhYmFzZXMvcHM0MzAwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4023/providers/Microsoft.Sql/servers/ps6117/databases/ps7150?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDAyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjExNy9kYXRhYmFzZXMvcHM3MTUwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"maxSizeBytes\": 268435456000,\r\n \"readScale\": \"\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1fd880b4-d8b4-4aed-a3bb-d02c9ba1689e" + "aee5228e-80ff-415c-8ad6-76c4310ffe80" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1203,16 +1326,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9101/providers/Microsoft.Sql/locations/westus/databaseOperationResults/3ccda5e7-0476-4217-aee2-ca63a88a0c05?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4023/providers/Microsoft.Sql/locations/westus/databaseOperationResults/0da20a07-f566-40a4-9da3-6e2b090ea466?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9101/providers/Microsoft.Sql/locations/westus/databaseAzureAsyncOperation/3ccda5e7-0476-4217-aee2-ca63a88a0c05?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4023/providers/Microsoft.Sql/locations/westus/databaseAzureAsyncOperation/0da20a07-f566-40a4-9da3-6e2b090ea466?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "3ccda5e7-0476-4217-aee2-ca63a88a0c05" + "0da20a07-f566-40a4-9da3-6e2b090ea466" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1221,10 +1344,10 @@ "1198" ], "x-ms-correlation-request-id": [ - "f1315103-2104-40e7-a79d-5bb8608acac7" + "3b10d92c-160f-42bd-8bc3-9545adf19b7a" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T050459Z:f1315103-2104-40e7-a79d-5bb8608acac7" + "WESTUS:20200925T014619Z:3b10d92c-160f-42bd-8bc3-9545adf19b7a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1233,7 +1356,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:04:58 GMT" + "Fri, 25 Sep 2020 01:46:18 GMT" ], "Content-Length": [ "75" @@ -1245,23 +1368,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2020-09-13T05:04:59.09Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2020-09-25T01:46:19.69Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9101/providers/Microsoft.Sql/servers/ps8866/databases/ps4300?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTEwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODg2Ni9kYXRhYmFzZXMvcHM0MzAwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4023/providers/Microsoft.Sql/servers/ps6117/databases/ps7150?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDAyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjExNy9kYXRhYmFzZXMvcHM3MTUwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"maxSizeBytes\": 0,\r\n \"readScale\": \"Disabled\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "672ca051-019c-4b19-bba8-32480403ea77" + "acf7ae1e-c798-448d-9930-cc823c2e7273" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1281,16 +1404,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9101/providers/Microsoft.Sql/locations/westus/databaseOperationResults/a2bfab21-b44a-498b-a782-d07bf901a780?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4023/providers/Microsoft.Sql/locations/westus/databaseOperationResults/c17d4980-900b-46e8-98e8-519d3cf52697?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9101/providers/Microsoft.Sql/locations/westus/databaseAzureAsyncOperation/a2bfab21-b44a-498b-a782-d07bf901a780?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4023/providers/Microsoft.Sql/locations/westus/databaseAzureAsyncOperation/c17d4980-900b-46e8-98e8-519d3cf52697?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "a2bfab21-b44a-498b-a782-d07bf901a780" + "c17d4980-900b-46e8-98e8-519d3cf52697" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1299,10 +1422,10 @@ "1197" ], "x-ms-correlation-request-id": [ - "72ac526e-73ee-442d-9090-0cab727615f9" + "30627aad-0d78-48a6-8205-c0d903548d7d" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T050546Z:72ac526e-73ee-442d-9090-0cab727615f9" + "WESTUS:20200925T014705Z:30627aad-0d78-48a6-8205-c0d903548d7d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1311,10 +1434,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:05:45 GMT" + "Fri, 25 Sep 2020 01:47:05 GMT" ], "Content-Length": [ - "75" + "76" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1323,17 +1446,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-09-13T05:05:44.56Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-09-25T01:47:05.253Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9101/providers/Microsoft.Sql/locations/westus/databaseAzureAsyncOperation/3ccda5e7-0476-4217-aee2-ca63a88a0c05?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTEwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8zY2NkYTVlNy0wNDc2LTQyMTctYWVlMi1jYTYzYTg4YTBjMDU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4023/providers/Microsoft.Sql/locations/westus/databaseAzureAsyncOperation/0da20a07-f566-40a4-9da3-6e2b090ea466?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDAyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8wZGEyMGEwNy1mNTY2LTQwYTQtOWRhMy02ZTJiMDkwZWE0NjY/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1350,19 +1473,19 @@ "15" ], "x-ms-request-id": [ - "969dcec8-c864-47f7-8505-b12e1ce5a66c" + "dc02dfb0-5e96-42dc-a11b-a26baccec670" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11986" ], "x-ms-correlation-request-id": [ - "d5fed9d1-cee6-498a-a178-b8ee978d3a0d" + "aa7e33fa-608b-47b7-baf5-7674ce469fd7" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T050514Z:d5fed9d1-cee6-498a-a178-b8ee978d3a0d" + "WESTUS:20200925T014634Z:aa7e33fa-608b-47b7-baf5-7674ce469fd7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1371,7 +1494,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:05:13 GMT" + "Fri, 25 Sep 2020 01:46:33 GMT" ], "Content-Length": [ "107" @@ -1383,17 +1506,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"3ccda5e7-0476-4217-aee2-ca63a88a0c05\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T05:04:59.09Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"0da20a07-f566-40a4-9da3-6e2b090ea466\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:46:19.69Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9101/providers/Microsoft.Sql/locations/westus/databaseAzureAsyncOperation/3ccda5e7-0476-4217-aee2-ca63a88a0c05?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTEwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8zY2NkYTVlNy0wNDc2LTQyMTctYWVlMi1jYTYzYTg4YTBjMDU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4023/providers/Microsoft.Sql/locations/westus/databaseAzureAsyncOperation/0da20a07-f566-40a4-9da3-6e2b090ea466?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDAyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8wZGEyMGEwNy1mNTY2LTQwYTQtOWRhMy02ZTJiMDkwZWE0NjY/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1410,19 +1533,19 @@ "15" ], "x-ms-request-id": [ - "82f4c60d-25a7-4236-bdab-2f79cc757b3d" + "58c80e2f-5a89-44cc-bdc2-6819bec2cc57" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11985" ], "x-ms-correlation-request-id": [ - "e9b38dc6-991e-4806-bd2c-64c8c41687ec" + "1c39644f-a835-4a62-b4a0-9ae023fd903f" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T050529Z:e9b38dc6-991e-4806-bd2c-64c8c41687ec" + "WESTUS:20200925T014649Z:1c39644f-a835-4a62-b4a0-9ae023fd903f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1431,7 +1554,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:05:28 GMT" + "Fri, 25 Sep 2020 01:46:48 GMT" ], "Content-Length": [ "107" @@ -1443,17 +1566,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"3ccda5e7-0476-4217-aee2-ca63a88a0c05\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T05:04:59.09Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"0da20a07-f566-40a4-9da3-6e2b090ea466\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:46:19.69Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9101/providers/Microsoft.Sql/locations/westus/databaseAzureAsyncOperation/3ccda5e7-0476-4217-aee2-ca63a88a0c05?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTEwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8zY2NkYTVlNy0wNDc2LTQyMTctYWVlMi1jYTYzYTg4YTBjMDU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4023/providers/Microsoft.Sql/locations/westus/databaseAzureAsyncOperation/0da20a07-f566-40a4-9da3-6e2b090ea466?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDAyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8wZGEyMGEwNy1mNTY2LTQwYTQtOWRhMy02ZTJiMDkwZWE0NjY/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1470,19 +1593,19 @@ "15" ], "x-ms-request-id": [ - "0d7fa6bf-cec9-4177-8297-1a24f2acfb2c" + "e556355a-5842-468b-9078-e699249f6393" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11984" ], "x-ms-correlation-request-id": [ - "e35a8e41-705a-41dd-870b-173744cfbda9" + "55771e33-0013-4c6b-b263-fdd4828b7fd2" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T050544Z:e35a8e41-705a-41dd-870b-173744cfbda9" + "WESTUS:20200925T014704Z:55771e33-0013-4c6b-b263-fdd4828b7fd2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1491,7 +1614,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:05:43 GMT" + "Fri, 25 Sep 2020 01:47:04 GMT" ], "Content-Length": [ "106" @@ -1503,17 +1626,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"3ccda5e7-0476-4217-aee2-ca63a88a0c05\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-13T05:04:59.09Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"0da20a07-f566-40a4-9da3-6e2b090ea466\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-25T01:46:19.69Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9101/providers/Microsoft.Sql/locations/westus/databaseAzureAsyncOperation/a2bfab21-b44a-498b-a782-d07bf901a780?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTEwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9hMmJmYWIyMS1iNDRhLTQ5OGItYTc4Mi1kMDdiZjkwMWE3ODA/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4023/providers/Microsoft.Sql/locations/westus/databaseAzureAsyncOperation/c17d4980-900b-46e8-98e8-519d3cf52697?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDAyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9jMTdkNDk4MC05MDBiLTQ2ZTgtOThlOC01MTlkM2NmNTI2OTc/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1530,19 +1653,19 @@ "15" ], "x-ms-request-id": [ - "286d62a6-3557-41b1-99e4-e8da01089dcf" + "5f4a1c45-ca37-4d66-a616-dffb27a5df4e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11979" ], "x-ms-correlation-request-id": [ - "570f0af7-066b-4686-91b5-283f9dbaecd2" + "ae67907a-ba06-4236-865f-0bbe0f711a8b" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T050601Z:570f0af7-066b-4686-91b5-283f9dbaecd2" + "WESTUS:20200925T014720Z:ae67907a-ba06-4236-865f-0bbe0f711a8b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1551,10 +1674,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:06:00 GMT" + "Fri, 25 Sep 2020 01:47:20 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1563,17 +1686,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2bfab21-b44a-498b-a782-d07bf901a780\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T05:05:44.56Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"c17d4980-900b-46e8-98e8-519d3cf52697\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:47:05.253Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9101/providers/Microsoft.Sql/locations/westus/databaseAzureAsyncOperation/a2bfab21-b44a-498b-a782-d07bf901a780?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTEwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9hMmJmYWIyMS1iNDRhLTQ5OGItYTc4Mi1kMDdiZjkwMWE3ODA/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4023/providers/Microsoft.Sql/locations/westus/databaseAzureAsyncOperation/c17d4980-900b-46e8-98e8-519d3cf52697?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDAyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9jMTdkNDk4MC05MDBiLTQ2ZTgtOThlOC01MTlkM2NmNTI2OTc/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1590,19 +1713,19 @@ "15" ], "x-ms-request-id": [ - "b7213a1e-1243-4b50-8ec1-3abe59c36a04" + "ecc0f624-5cd3-4fa4-848a-36edaf9bf863" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11978" ], "x-ms-correlation-request-id": [ - "3fd49a65-2212-4007-b9ba-e8349a24db3f" + "26ff15ad-7c4d-4501-a616-84d1ffe366c0" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T050616Z:3fd49a65-2212-4007-b9ba-e8349a24db3f" + "WESTUS:20200925T014735Z:26ff15ad-7c4d-4501-a616-84d1ffe366c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1611,10 +1734,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:06:15 GMT" + "Fri, 25 Sep 2020 01:47:35 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1623,17 +1746,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2bfab21-b44a-498b-a782-d07bf901a780\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T05:05:44.56Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"c17d4980-900b-46e8-98e8-519d3cf52697\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:47:05.253Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9101/providers/Microsoft.Sql/locations/westus/databaseAzureAsyncOperation/a2bfab21-b44a-498b-a782-d07bf901a780?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTEwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9hMmJmYWIyMS1iNDRhLTQ5OGItYTc4Mi1kMDdiZjkwMWE3ODA/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4023/providers/Microsoft.Sql/locations/westus/databaseAzureAsyncOperation/c17d4980-900b-46e8-98e8-519d3cf52697?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDAyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9jMTdkNDk4MC05MDBiLTQ2ZTgtOThlOC01MTlkM2NmNTI2OTc/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1650,19 +1773,19 @@ "15" ], "x-ms-request-id": [ - "92723380-de98-4119-93d4-6c406545274a" + "5ad8dba2-a0ab-4a43-969d-f25b77fbbf6f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11977" ], "x-ms-correlation-request-id": [ - "0680159c-cb7c-43c3-9267-d1ab7f8ecfc0" + "8e907f1c-d16c-4e20-8c0b-ad3dfffdd1b1" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T050631Z:0680159c-cb7c-43c3-9267-d1ab7f8ecfc0" + "WESTUS:20200925T014750Z:8e907f1c-d16c-4e20-8c0b-ad3dfffdd1b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1671,10 +1794,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:06:31 GMT" + "Fri, 25 Sep 2020 01:47:50 GMT" ], "Content-Length": [ - "106" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1683,23 +1806,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2bfab21-b44a-498b-a782-d07bf901a780\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-13T05:05:44.56Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"c17d4980-900b-46e8-98e8-519d3cf52697\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-25T01:47:05.253Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9101/providers/Microsoft.Sql/servers/ps8866/databases/ps4300/operations?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTEwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODg2Ni9kYXRhYmFzZXMvcHM0MzAwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4023/providers/Microsoft.Sql/servers/ps6117/databases/ps7150/operations?api-version=2017-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDAyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjExNy9kYXRhYmFzZXMvcHM3MTUwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "395c50ef-1126-479c-b3a3-0e3ba2d8a70e" + "5860a3a7-9957-4246-b669-61b58bb3fef4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1713,19 +1836,19 @@ "no-cache" ], "x-ms-request-id": [ - "17e181ad-728f-441c-a208-281d13403770" + "209debfd-0a94-4bde-aa14-97f54980c6e9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11975" ], "x-ms-correlation-request-id": [ - "a2556435-985d-4105-9704-1e304cdbc6d3" + "53fc4a8e-d935-4a85-8703-d63543d345d2" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T050632Z:a2556435-985d-4105-9704-1e304cdbc6d3" + "WESTUS:20200925T014750Z:53fc4a8e-d935-4a85-8703-d63543d345d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1734,10 +1857,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:06:32 GMT" + "Fri, 25 Sep 2020 01:47:50 GMT" ], "Content-Length": [ - "514" + "515" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1746,23 +1869,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"databaseName\": \"ps4300\",\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"operationFriendlyName\": \"ALTER DATABASE\",\r\n \"percentComplete\": 100,\r\n \"serverName\": \"ps8866\",\r\n \"startTime\": \"2020-09-13T05:05:44.56Z\",\r\n \"state\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9101/providers/Microsoft.Sql/servers/ps8866/databases/ps4300/operations/a2bfab21-b44a-498b-a782-d07bf901a780\",\r\n \"name\": \"a2bfab21-b44a-498b-a782-d07bf901a780\",\r\n \"type\": \"Microsoft.Sql/servers/databases/operations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"databaseName\": \"ps7150\",\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"operationFriendlyName\": \"ALTER DATABASE\",\r\n \"percentComplete\": 100,\r\n \"serverName\": \"ps6117\",\r\n \"startTime\": \"2020-09-25T01:47:05.253Z\",\r\n \"state\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4023/providers/Microsoft.Sql/servers/ps6117/databases/ps7150/operations/c17d4980-900b-46e8-98e8-519d3cf52697\",\r\n \"name\": \"c17d4980-900b-46e8-98e8-519d3cf52697\",\r\n \"type\": \"Microsoft.Sql/servers/databases/operations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9101/providers/Microsoft.Sql/servers/ps8866/databases/ps4300/operations?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTEwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODg2Ni9kYXRhYmFzZXMvcHM0MzAwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4023/providers/Microsoft.Sql/servers/ps6117/databases/ps7150/operations?api-version=2017-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDAyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjExNy9kYXRhYmFzZXMvcHM3MTUwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a7a36dd7-adab-4cf6-8657-9d07cf160e21" + "7bc7c8f4-4561-4682-b847-61556fa82486" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1776,19 +1899,19 @@ "no-cache" ], "x-ms-request-id": [ - "5295d834-381a-4a3c-a95e-70d2738b67db" + "688350fd-656a-4dd0-90d7-e384bf365d98" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11974" ], "x-ms-correlation-request-id": [ - "9c6de535-9f85-4840-86f5-34ace4d3ace6" + "407c2e41-5402-45db-8d12-f56744997412" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T050632Z:9c6de535-9f85-4840-86f5-34ace4d3ace6" + "WESTUS:20200925T014750Z:407c2e41-5402-45db-8d12-f56744997412" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1797,10 +1920,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:06:32 GMT" + "Fri, 25 Sep 2020 01:47:50 GMT" ], "Content-Length": [ - "514" + "515" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1809,23 +1932,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"databaseName\": \"ps4300\",\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"operationFriendlyName\": \"ALTER DATABASE\",\r\n \"percentComplete\": 100,\r\n \"serverName\": \"ps8866\",\r\n \"startTime\": \"2020-09-13T05:05:44.56Z\",\r\n \"state\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9101/providers/Microsoft.Sql/servers/ps8866/databases/ps4300/operations/a2bfab21-b44a-498b-a782-d07bf901a780\",\r\n \"name\": \"a2bfab21-b44a-498b-a782-d07bf901a780\",\r\n \"type\": \"Microsoft.Sql/servers/databases/operations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"databaseName\": \"ps7150\",\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"operationFriendlyName\": \"ALTER DATABASE\",\r\n \"percentComplete\": 100,\r\n \"serverName\": \"ps6117\",\r\n \"startTime\": \"2020-09-25T01:47:05.253Z\",\r\n \"state\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4023/providers/Microsoft.Sql/servers/ps6117/databases/ps7150/operations/c17d4980-900b-46e8-98e8-519d3cf52697\",\r\n \"name\": \"c17d4980-900b-46e8-98e8-519d3cf52697\",\r\n \"type\": \"Microsoft.Sql/servers/databases/operations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9101/providers/Microsoft.Sql/servers/ps8866/databases/ps4300/operations/a2bfab21-b44a-498b-a782-d07bf901a780/cancel?api-version=2017-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTEwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODg2Ni9kYXRhYmFzZXMvcHM0MzAwL29wZXJhdGlvbnMvYTJiZmFiMjEtYjQ0YS00OThiLWE3ODItZDA3YmY5MDFhNzgwL2NhbmNlbD9hcGktdmVyc2lvbj0yMDE3LTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4023/providers/Microsoft.Sql/servers/ps6117/databases/ps7150/operations/c17d4980-900b-46e8-98e8-519d3cf52697/cancel?api-version=2017-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDAyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjExNy9kYXRhYmFzZXMvcHM3MTUwL29wZXJhdGlvbnMvYzE3ZDQ5ODAtOTAwYi00NmU4LTk4ZTgtNTE5ZDNjZjUyNjk3L2NhbmNlbD9hcGktdmVyc2lvbj0yMDE3LTEwLTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6b280438-9b7a-43e4-a286-ba417f342f08" + "a19f8989-9703-4ba2-a995-5d6c6b06dcfe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1839,7 +1962,7 @@ "no-cache" ], "x-ms-request-id": [ - "b62593af-8538-4121-9011-e380e2f89fca" + "909cf85a-beaf-46e0-84d5-91d5f964926b" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1848,10 +1971,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "c74269a4-4916-4274-b478-6a6d47ed9b25" + "ee46b676-5486-41e4-a2d0-8f9b101f52c5" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T050632Z:c74269a4-4916-4274-b478-6a6d47ed9b25" + "WESTUS:20200925T014750Z:ee46b676-5486-41e4-a2d0-8f9b101f52c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1860,7 +1983,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:06:32 GMT" + "Fri, 25 Sep 2020 01:47:50 GMT" ], "Content-Length": [ "150" @@ -1872,23 +1995,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"CannotCancelOperation\",\r\n \"message\": \"Cannot cancel management operation 'a2bfab21-b44a-498b-a782-d07bf901a780' in the current state.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"CannotCancelOperation\",\r\n \"message\": \"Cannot cancel management operation 'c17d4980-900b-46e8-98e8-519d3cf52697' in the current state.\"\r\n }\r\n}", "StatusCode": 409 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps9101?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzOTEwMT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps4023?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzNDAyMz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c3317620-9e33-4f46-bc0c-e2013e4aa0cf" + "5bad722d-8789-4c7a-a115-eeda3476dc52" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -1902,7 +2025,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkxMDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwMjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1911,13 +2034,13 @@ "14999" ], "x-ms-request-id": [ - "9e5e7f68-3cc7-45cf-8cb5-de6e4e3f70d7" + "5f6c1809-99ec-4b46-9b8d-69d8e02d7d4c" ], "x-ms-correlation-request-id": [ - "9e5e7f68-3cc7-45cf-8cb5-de6e4e3f70d7" + "5f6c1809-99ec-4b46-9b8d-69d8e02d7d4c" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T050632Z:9e5e7f68-3cc7-45cf-8cb5-de6e4e3f70d7" + "WESTUS:20200925T014751Z:5f6c1809-99ec-4b46-9b8d-69d8e02d7d4c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1926,7 +2049,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:06:31 GMT" + "Fri, 25 Sep 2020 01:47:50 GMT" ], "Expires": [ "-1" @@ -1939,13 +2062,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkxMDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreE1ERXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwMjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd01qTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -1959,7 +2082,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkxMDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwMjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1968,13 +2091,13 @@ "11999" ], "x-ms-request-id": [ - "fe05fbb0-491c-4faf-9ca0-c6b25dfcd2f8" + "6c10b4e6-1846-4f44-8701-65e8172e748a" ], "x-ms-correlation-request-id": [ - "fe05fbb0-491c-4faf-9ca0-c6b25dfcd2f8" + "6c10b4e6-1846-4f44-8701-65e8172e748a" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T050647Z:fe05fbb0-491c-4faf-9ca0-c6b25dfcd2f8" + "WESTUS:20200925T014806Z:6c10b4e6-1846-4f44-8701-65e8172e748a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1983,7 +2106,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:06:47 GMT" + "Fri, 25 Sep 2020 01:48:05 GMT" ], "Expires": [ "-1" @@ -1996,13 +2119,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkxMDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreE1ERXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwMjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd01qTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -2016,7 +2139,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkxMDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwMjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2025,13 +2148,13 @@ "11998" ], "x-ms-request-id": [ - "78a16576-639c-4872-b0d8-3da070939e84" + "752e12bc-c71c-4f6a-b72e-c844b2da210d" ], "x-ms-correlation-request-id": [ - "78a16576-639c-4872-b0d8-3da070939e84" + "752e12bc-c71c-4f6a-b72e-c844b2da210d" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T050702Z:78a16576-639c-4872-b0d8-3da070939e84" + "WESTUS:20200925T014821Z:752e12bc-c71c-4f6a-b72e-c844b2da210d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2040,7 +2163,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:07:02 GMT" + "Fri, 25 Sep 2020 01:48:20 GMT" ], "Expires": [ "-1" @@ -2053,13 +2176,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkxMDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreE1ERXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwMjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd01qTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -2073,7 +2196,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkxMDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwMjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2082,13 +2205,13 @@ "11997" ], "x-ms-request-id": [ - "c365f5e5-87ac-4912-8302-2a5706dcc6c2" + "8f18d1c1-a74f-4124-9bd5-d9ffc4864b62" ], "x-ms-correlation-request-id": [ - "c365f5e5-87ac-4912-8302-2a5706dcc6c2" + "8f18d1c1-a74f-4124-9bd5-d9ffc4864b62" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T050717Z:c365f5e5-87ac-4912-8302-2a5706dcc6c2" + "WESTUS:20200925T014836Z:8f18d1c1-a74f-4124-9bd5-d9ffc4864b62" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2097,7 +2220,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:07:17 GMT" + "Fri, 25 Sep 2020 01:48:35 GMT" ], "Expires": [ "-1" @@ -2110,13 +2233,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkxMDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreE1ERXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwMjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd01qTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -2130,7 +2253,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkxMDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwMjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2139,13 +2262,13 @@ "11996" ], "x-ms-request-id": [ - "5919db3f-24c5-41b7-986c-8757dffd0d10" + "78d1f8f1-f025-4a87-9cf8-96a28dcec5d0" ], "x-ms-correlation-request-id": [ - "5919db3f-24c5-41b7-986c-8757dffd0d10" + "78d1f8f1-f025-4a87-9cf8-96a28dcec5d0" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T050732Z:5919db3f-24c5-41b7-986c-8757dffd0d10" + "WESTUS:20200925T014851Z:78d1f8f1-f025-4a87-9cf8-96a28dcec5d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2154,7 +2277,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:07:32 GMT" + "Fri, 25 Sep 2020 01:48:50 GMT" ], "Expires": [ "-1" @@ -2167,13 +2290,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkxMDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreE1ERXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwMjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd01qTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -2187,7 +2310,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkxMDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwMjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2196,13 +2319,13 @@ "11995" ], "x-ms-request-id": [ - "713b3f23-e96e-4164-aadb-e0fcdc7b2d15" + "3d5cac0a-1b04-4326-a791-adc4f2769c85" ], "x-ms-correlation-request-id": [ - "713b3f23-e96e-4164-aadb-e0fcdc7b2d15" + "3d5cac0a-1b04-4326-a791-adc4f2769c85" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T050747Z:713b3f23-e96e-4164-aadb-e0fcdc7b2d15" + "WESTUS:20200925T014906Z:3d5cac0a-1b04-4326-a791-adc4f2769c85" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2211,7 +2334,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:07:47 GMT" + "Fri, 25 Sep 2020 01:49:05 GMT" ], "Expires": [ "-1" @@ -2224,13 +2347,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkxMDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreE1ERXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwMjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd01qTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -2244,7 +2367,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkxMDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwMjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2253,13 +2376,13 @@ "11994" ], "x-ms-request-id": [ - "bb15e44d-d208-4d18-9c01-073bbff4fe61" + "89c5ee0c-890d-4b8a-a6ee-481cc5616d7a" ], "x-ms-correlation-request-id": [ - "bb15e44d-d208-4d18-9c01-073bbff4fe61" + "89c5ee0c-890d-4b8a-a6ee-481cc5616d7a" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T050802Z:bb15e44d-d208-4d18-9c01-073bbff4fe61" + "WESTUS:20200925T014921Z:89c5ee0c-890d-4b8a-a6ee-481cc5616d7a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2268,7 +2391,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:08:02 GMT" + "Fri, 25 Sep 2020 01:49:21 GMT" ], "Expires": [ "-1" @@ -2281,13 +2404,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkxMDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreE1ERXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwMjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd01qTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -2304,13 +2427,13 @@ "11993" ], "x-ms-request-id": [ - "68d152dc-755f-4feb-b073-c2cb7da1b354" + "d6970e64-35a1-4364-9682-5aaec4cc77d3" ], "x-ms-correlation-request-id": [ - "68d152dc-755f-4feb-b073-c2cb7da1b354" + "d6970e64-35a1-4364-9682-5aaec4cc77d3" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T050817Z:68d152dc-755f-4feb-b073-c2cb7da1b354" + "WESTUS:20200925T014936Z:d6970e64-35a1-4364-9682-5aaec4cc77d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2319,7 +2442,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:08:17 GMT" + "Fri, 25 Sep 2020 01:49:36 GMT" ], "Expires": [ "-1" @@ -2332,13 +2455,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkxMDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreE1ERXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwMjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd01qTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -2355,13 +2478,13 @@ "11992" ], "x-ms-request-id": [ - "013a19b7-5f16-48da-bc05-83652fcd2649" + "eea5b158-4c90-4eef-8281-c01134e6395c" ], "x-ms-correlation-request-id": [ - "013a19b7-5f16-48da-bc05-83652fcd2649" + "eea5b158-4c90-4eef-8281-c01134e6395c" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T050817Z:013a19b7-5f16-48da-bc05-83652fcd2649" + "WESTUS:20200925T014936Z:eea5b158-4c90-4eef-8281-c01134e6395c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2370,7 +2493,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:08:17 GMT" + "Fri, 25 Sep 2020 01:49:36 GMT" ], "Expires": [ "-1" @@ -2385,9 +2508,9 @@ ], "Names": { "Test-CancelDatabaseOperation": [ - "ps9101", - "ps8866", - "ps4300" + "ps4023", + "ps6117", + "ps7150" ] }, "Variables": { diff --git a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseRename.json b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseRename.json index 2c316ebae994..63598ce626e0 100644 --- a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseRename.json +++ b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseRename.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps2364?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzMjM2ND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps6853?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzNjg1Mz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6af88cbb-bae0-4ece-abab-cf05ffb31f08" + "db6bbd1e-bc03-4f26-8208-20c9e561b35a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "c9eb84bf-3f7e-4f22-8b4a-2bd0b4f3ec2e" + "93b4b6c2-87f8-40b9-b547-41b4b49a5fb0" ], "x-ms-correlation-request-id": [ - "c9eb84bf-3f7e-4f22-8b4a-2bd0b4f3ec2e" + "93b4b6c2-87f8-40b9-b547-41b4b49a5fb0" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T154227Z:c9eb84bf-3f7e-4f22-8b4a-2bd0b4f3ec2e" + "WESTUS:20200925T014132Z:93b4b6c2-87f8-40b9-b547-41b4b49a5fb0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:42:27 GMT" + "Fri, 25 Sep 2020 01:41:31 GMT" ], "Content-Length": [ "172" @@ -63,23 +63,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2364\",\r\n \"name\": \"ps2364\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6853\",\r\n \"name\": \"ps6853\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2364/providers/Microsoft.Sql/servers/ps6534?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM2NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjUzND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6853/providers/Microsoft.Sql/servers/ps971?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTcxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fc5605e9-4c68-4c38-a6ad-2a529d27764a" + "e7abfaba-9c7a-4e1e-91d9-1d57f273518c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "35ca42e4-4979-42a6-96e0-ec4c9d13a9c4" + "704082e2-af03-4747-bd7f-30761525098a" ], "x-ms-correlation-request-id": [ - "35ca42e4-4979-42a6-96e0-ec4c9d13a9c4" + "704082e2-af03-4747-bd7f-30761525098a" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T154227Z:35ca42e4-4979-42a6-96e0-ec4c9d13a9c4" + "WESTUS:20200925T014132Z:704082e2-af03-4747-bd7f-30761525098a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:42:26 GMT" + "Fri, 25 Sep 2020 01:41:31 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -120,20 +120,20 @@ "-1" ], "Content-Length": [ - "206" + "205" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps6534' under resource group 'ps2364' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps971' under resource group 'ps6853' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2364/providers/Microsoft.Sql/servers/ps6534?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM2NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjUzND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6853/providers/Microsoft.Sql/servers/ps971?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTcxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -147,7 +147,7 @@ "no-cache" ], "x-ms-request-id": [ - "0982f8d1-a807-4abd-bccd-f7290e5399f5" + "4d4f317e-c8cb-4ced-9cbf-b36ca434128f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -156,10 +156,10 @@ "11992" ], "x-ms-correlation-request-id": [ - "32778d9b-5082-4a41-8955-76e7729976f1" + "e8219865-1c69-42c4-b98d-34a5be300ed6" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T154314Z:32778d9b-5082-4a41-8955-76e7729976f1" + "WESTUS:20200925T014219Z:e8219865-1c69-42c4-b98d-34a5be300ed6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -168,10 +168,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:43:14 GMT" + "Fri, 25 Sep 2020 01:42:19 GMT" ], "Content-Length": [ - "415" + "412" ], "Content-Type": [ "application/json; charset=utf-8" @@ -180,23 +180,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps6534.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2364/providers/Microsoft.Sql/servers/ps6534\",\r\n \"name\": \"ps6534\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps971.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6853/providers/Microsoft.Sql/servers/ps971\",\r\n \"name\": \"ps971\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2364/providers/Microsoft.Sql/servers/ps6534?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM2NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjUzND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6853/providers/Microsoft.Sql/servers/ps971?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTcxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "415f2df5-4254-45c6-b188-db3f2dbcdf09" + "61cd9c36-5a17-4497-afea-b8828074a768" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -210,7 +210,7 @@ "no-cache" ], "x-ms-request-id": [ - "7df8026f-fc51-4be7-89fb-ea4be364129b" + "3876f52f-b063-4c14-b922-2531406f532b" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -219,10 +219,10 @@ "11991" ], "x-ms-correlation-request-id": [ - "c41bca4c-fd55-4329-85c1-865cff64f6c3" + "31407bc8-c6fb-4695-bcbf-fb00cab472e9" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T154315Z:c41bca4c-fd55-4329-85c1-865cff64f6c3" + "WESTUS:20200925T014219Z:31407bc8-c6fb-4695-bcbf-fb00cab472e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -231,10 +231,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:43:14 GMT" + "Fri, 25 Sep 2020 01:42:19 GMT" ], "Content-Length": [ - "415" + "412" ], "Content-Type": [ "application/json; charset=utf-8" @@ -243,23 +243,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps6534.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2364/providers/Microsoft.Sql/servers/ps6534\",\r\n \"name\": \"ps6534\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps971.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6853/providers/Microsoft.Sql/servers/ps971\",\r\n \"name\": \"ps971\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2364/providers/Microsoft.Sql/servers/ps6534?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM2NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjUzND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6853/providers/Microsoft.Sql/servers/ps971?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTcxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5e62801a-de4f-4d39-a5c2-4eb5d3bd1d30" + "07a87ade-a127-41e7-a4f6-ce244342dc4f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -273,7 +273,7 @@ "no-cache" ], "x-ms-request-id": [ - "6201cf14-a6a2-4dc3-b616-4e0262227198" + "f72235c4-e288-4ce5-b5da-647ed36fe727" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -282,10 +282,136 @@ "11989" ], "x-ms-correlation-request-id": [ - "d5249ea8-543e-48e9-b2d1-5449342aeab5" + "a2b1d56f-b9f9-4bce-9903-6d2cc30d9568" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200925T014219Z:a2b1d56f-b9f9-4bce-9903-6d2cc30d9568" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 25 Sep 2020 01:42:19 GMT" + ], + "Content-Length": [ + "412" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps971.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6853/providers/Microsoft.Sql/servers/ps971\",\r\n \"name\": \"ps971\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6853/providers/Microsoft.Sql/servers/ps971?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTcxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c119eed6-6659-4fa3-95c3-d063ffdfea69" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cf848651-ac70-4af6-ad48-74a5b57abaa3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "1e3a92c6-66a8-4cdd-a9bc-4a42103a516f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200925T014306Z:1e3a92c6-66a8-4cdd-a9bc-4a42103a516f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 25 Sep 2020 01:43:05 GMT" + ], + "Content-Length": [ + "412" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps971.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6853/providers/Microsoft.Sql/servers/ps971\",\r\n \"name\": \"ps971\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6853/providers/Microsoft.Sql/servers/ps971?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTcxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5bef5994-5fce-4835-971c-7f6271cce42c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a2bba57a-2607-4406-a463-fd0bd55ceac9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-correlation-request-id": [ + "c0aab20f-6953-467f-a4a8-e4cd0e0625c7" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T154315Z:d5249ea8-543e-48e9-b2d1-5449342aeab5" + "WESTUS:20200925T014315Z:c0aab20f-6953-467f-a4a8-e4cd0e0625c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -294,10 +420,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:43:15 GMT" + "Fri, 25 Sep 2020 01:43:15 GMT" ], "Content-Length": [ - "415" + "412" ], "Content-Type": [ "application/json; charset=utf-8" @@ -306,23 +432,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps6534.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2364/providers/Microsoft.Sql/servers/ps6534\",\r\n \"name\": \"ps6534\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps971.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6853/providers/Microsoft.Sql/servers/ps971\",\r\n \"name\": \"ps971\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2364/providers/Microsoft.Sql/servers/ps6534?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM2NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjUzND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6853/providers/Microsoft.Sql/servers/ps971?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTcxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6314edc9-73b2-4088-9fc6-225b097c5726" + "3e39c50e-b679-494c-b683-19308aca4aae" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -342,16 +468,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2364/providers/Microsoft.Sql/locations/southeastasia/serverOperationResults/c5c6b094-373e-40af-8c78-1717acfabc74?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6853/providers/Microsoft.Sql/locations/southeastasia/serverOperationResults/d1086ce9-69e4-4438-a8a3-8a31e8e90d0d?api-version=2019-06-01-preview" ], "Retry-After": [ "1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2364/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/c5c6b094-373e-40af-8c78-1717acfabc74?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6853/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/d1086ce9-69e4-4438-a8a3-8a31e8e90d0d?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "c5c6b094-373e-40af-8c78-1717acfabc74" + "d1086ce9-69e4-4438-a8a3-8a31e8e90d0d" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -360,10 +486,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "0a798246-0a68-4a5f-b9f0-a7f610aebffa" + "7539de88-7451-4096-939c-a59c2e3d0596" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T154228Z:0a798246-0a68-4a5f-b9f0-a7f610aebffa" + "WESTUS:20200925T014133Z:7539de88-7451-4096-939c-a59c2e3d0596" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -372,7 +498,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:42:27 GMT" + "Fri, 25 Sep 2020 01:41:32 GMT" ], "Content-Length": [ "74" @@ -384,17 +510,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-13T15:42:28.557Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-25T01:41:33.447Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2364/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/c5c6b094-373e-40af-8c78-1717acfabc74?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM2NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2M1YzZiMDk0LTM3M2UtNDBhZi04Yzc4LTE3MTdhY2ZhYmM3ND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6853/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/d1086ce9-69e4-4438-a8a3-8a31e8e90d0d?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2QxMDg2Y2U5LTY5ZTQtNDQzOC1hOGEzLThhMzFlOGU5MGQwZD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -411,7 +537,7 @@ "1" ], "x-ms-request-id": [ - "e997436c-ff99-4e2d-aae6-5e01d26007e5" + "21ec4664-ba4d-4677-a922-73212cb5b784" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -420,10 +546,10 @@ "11998" ], "x-ms-correlation-request-id": [ - "2001893b-ecb0-4d79-a351-bc47db2d67b3" + "451d1baa-33b3-4f99-8d47-5862eb44d013" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T154230Z:2001893b-ecb0-4d79-a351-bc47db2d67b3" + "WESTUS:20200925T014134Z:451d1baa-33b3-4f99-8d47-5862eb44d013" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,7 +558,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:42:29 GMT" + "Fri, 25 Sep 2020 01:41:34 GMT" ], "Content-Length": [ "108" @@ -444,17 +570,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"c5c6b094-373e-40af-8c78-1717acfabc74\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T15:42:28.557Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"d1086ce9-69e4-4438-a8a3-8a31e8e90d0d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:41:33.447Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2364/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/c5c6b094-373e-40af-8c78-1717acfabc74?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM2NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2M1YzZiMDk0LTM3M2UtNDBhZi04Yzc4LTE3MTdhY2ZhYmM3ND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6853/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/d1086ce9-69e4-4438-a8a3-8a31e8e90d0d?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2QxMDg2Y2U5LTY5ZTQtNDQzOC1hOGEzLThhMzFlOGU5MGQwZD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -471,7 +597,7 @@ "1" ], "x-ms-request-id": [ - "74622c00-b81b-462f-8f93-b0dbbea13f62" + "5c38e6f6-b539-40bc-a98d-3c411afe56e3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -480,10 +606,10 @@ "11997" ], "x-ms-correlation-request-id": [ - "f718bf17-72ad-4607-b1dc-f8631ae964a4" + "b8a1d943-85b7-421d-bf8a-598c4508c3ef" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T154231Z:f718bf17-72ad-4607-b1dc-f8631ae964a4" + "WESTUS:20200925T014136Z:b8a1d943-85b7-421d-bf8a-598c4508c3ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -492,7 +618,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:42:30 GMT" + "Fri, 25 Sep 2020 01:41:35 GMT" ], "Content-Length": [ "108" @@ -504,17 +630,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"c5c6b094-373e-40af-8c78-1717acfabc74\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T15:42:28.557Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"d1086ce9-69e4-4438-a8a3-8a31e8e90d0d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:41:33.447Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2364/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/c5c6b094-373e-40af-8c78-1717acfabc74?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM2NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2M1YzZiMDk0LTM3M2UtNDBhZi04Yzc4LTE3MTdhY2ZhYmM3ND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6853/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/d1086ce9-69e4-4438-a8a3-8a31e8e90d0d?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2QxMDg2Y2U5LTY5ZTQtNDQzOC1hOGEzLThhMzFlOGU5MGQwZD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -531,7 +657,7 @@ "1" ], "x-ms-request-id": [ - "6da33373-476d-4395-9365-7d7c2e6e583c" + "b87f1911-c701-42b9-95d1-9c305fc88b24" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -540,10 +666,10 @@ "11996" ], "x-ms-correlation-request-id": [ - "a5620775-d517-4bf2-ade0-0d8b827a657f" + "10f6c82c-e11c-492e-b73e-c292e6afe058" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T154232Z:a5620775-d517-4bf2-ade0-0d8b827a657f" + "WESTUS:20200925T014137Z:10f6c82c-e11c-492e-b73e-c292e6afe058" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -552,7 +678,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:42:31 GMT" + "Fri, 25 Sep 2020 01:41:36 GMT" ], "Content-Length": [ "108" @@ -564,17 +690,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"c5c6b094-373e-40af-8c78-1717acfabc74\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T15:42:28.557Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"d1086ce9-69e4-4438-a8a3-8a31e8e90d0d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:41:33.447Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2364/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/c5c6b094-373e-40af-8c78-1717acfabc74?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM2NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2M1YzZiMDk0LTM3M2UtNDBhZi04Yzc4LTE3MTdhY2ZhYmM3ND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6853/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/d1086ce9-69e4-4438-a8a3-8a31e8e90d0d?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2QxMDg2Y2U5LTY5ZTQtNDQzOC1hOGEzLThhMzFlOGU5MGQwZD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -591,7 +717,7 @@ "20" ], "x-ms-request-id": [ - "36c26595-ffac-4f8a-a43c-d4f97de4bc1e" + "e3f4a504-1771-48b3-a85c-ffd3e6b2bd71" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -600,10 +726,10 @@ "11995" ], "x-ms-correlation-request-id": [ - "e9b6c765-b0d5-4242-899d-4352a6f743c2" + "44b1389f-efb1-4926-9d9d-ce3c4ba3ead9" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T154233Z:e9b6c765-b0d5-4242-899d-4352a6f743c2" + "WESTUS:20200925T014138Z:44b1389f-efb1-4926-9d9d-ce3c4ba3ead9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -612,7 +738,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:42:32 GMT" + "Fri, 25 Sep 2020 01:41:37 GMT" ], "Content-Length": [ "108" @@ -624,17 +750,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"c5c6b094-373e-40af-8c78-1717acfabc74\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T15:42:28.557Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"d1086ce9-69e4-4438-a8a3-8a31e8e90d0d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:41:33.447Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2364/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/c5c6b094-373e-40af-8c78-1717acfabc74?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM2NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2M1YzZiMDk0LTM3M2UtNDBhZi04Yzc4LTE3MTdhY2ZhYmM3ND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6853/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/d1086ce9-69e4-4438-a8a3-8a31e8e90d0d?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2QxMDg2Y2U5LTY5ZTQtNDQzOC1hOGEzLThhMzFlOGU5MGQwZD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -651,7 +777,7 @@ "20" ], "x-ms-request-id": [ - "cd8f5d01-4302-46cf-a066-b2c5e17ac5e0" + "3461f1d3-d567-4e7d-8d45-a934601a6398" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -660,10 +786,10 @@ "11994" ], "x-ms-correlation-request-id": [ - "667bd5d6-5729-4ece-8f21-a29f77724a84" + "826f5856-6ab4-4e49-bcdb-f2e244e02f1f" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T154253Z:667bd5d6-5729-4ece-8f21-a29f77724a84" + "WESTUS:20200925T014158Z:826f5856-6ab4-4e49-bcdb-f2e244e02f1f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -672,7 +798,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:42:53 GMT" + "Fri, 25 Sep 2020 01:41:58 GMT" ], "Content-Length": [ "108" @@ -684,17 +810,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"c5c6b094-373e-40af-8c78-1717acfabc74\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T15:42:28.557Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"d1086ce9-69e4-4438-a8a3-8a31e8e90d0d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:41:33.447Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2364/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/c5c6b094-373e-40af-8c78-1717acfabc74?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM2NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2M1YzZiMDk0LTM3M2UtNDBhZi04Yzc4LTE3MTdhY2ZhYmM3ND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6853/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/d1086ce9-69e4-4438-a8a3-8a31e8e90d0d?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2QxMDg2Y2U5LTY5ZTQtNDQzOC1hOGEzLThhMzFlOGU5MGQwZD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -711,7 +837,7 @@ "15" ], "x-ms-request-id": [ - "f085f5eb-d647-471b-af49-5d0036e7c3ba" + "e150be46-feb2-44b9-b5c6-78303dbd33b7" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -720,10 +846,10 @@ "11993" ], "x-ms-correlation-request-id": [ - "571e7d05-c104-4e03-9f79-95e31e1ee598" + "ddc7adb6-6b4f-4545-a73c-e51eca8605e5" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T154314Z:571e7d05-c104-4e03-9f79-95e31e1ee598" + "WESTUS:20200925T014218Z:ddc7adb6-6b4f-4545-a73c-e51eca8605e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -732,7 +858,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:43:14 GMT" + "Fri, 25 Sep 2020 01:42:18 GMT" ], "Content-Length": [ "107" @@ -744,23 +870,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"c5c6b094-373e-40af-8c78-1717acfabc74\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-13T15:42:28.557Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"d1086ce9-69e4-4438-a8a3-8a31e8e90d0d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-25T01:41:33.447Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2364/providers/Microsoft.Sql/servers/ps6534/databases/ps4377?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM2NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjUzNC9kYXRhYmFzZXMvcHM0Mzc3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6853/providers/Microsoft.Sql/servers/ps971/databases/ps7448?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTcxL2RhdGFiYXNlcy9wczc0NDg/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "63cf64ab-edab-4886-9076-bdca6abf9b2d" + "854a511b-2370-4446-9a9d-98872483f2a6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -777,13 +903,13 @@ "gateway" ], "x-ms-request-id": [ - "212e02c6-c404-4285-94cc-dfea73f5f389" + "60f26eaf-9102-4d6a-a8ae-f5ae0107686b" ], "x-ms-correlation-request-id": [ - "212e02c6-c404-4285-94cc-dfea73f5f389" + "60f26eaf-9102-4d6a-a8ae-f5ae0107686b" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T154315Z:212e02c6-c404-4285-94cc-dfea73f5f389" + "WESTUS:20200925T014219Z:60f26eaf-9102-4d6a-a8ae-f5ae0107686b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -792,7 +918,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:43:15 GMT" + "Fri, 25 Sep 2020 01:42:19 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -801,20 +927,20 @@ "-1" ], "Content-Length": [ - "223" + "222" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps6534/databases/ps4377' under resource group 'ps2364' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps971/databases/ps7448' under resource group 'ps6853' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2364/providers/Microsoft.Sql/servers/ps6534/databases/ps4377?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM2NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjUzNC9kYXRhYmFzZXMvcHM0Mzc3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6853/providers/Microsoft.Sql/servers/ps971/databases/ps7448?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTcxL2RhdGFiYXNlcy9wczc0NDg/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -828,7 +954,7 @@ "no-cache" ], "x-ms-request-id": [ - "62869b37-a138-4e24-8f14-2921b27a7c9d" + "aa220c3d-e190-4cbc-a78a-661d8f0b1701" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -837,10 +963,10 @@ "11985" ], "x-ms-correlation-request-id": [ - "4334ffe0-0275-40a9-9dd4-65f8f8e9f160" + "978a6cf3-714d-43c4-af07-8cabffafdd57" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T154402Z:4334ffe0-0275-40a9-9dd4-65f8f8e9f160" + "WESTUS:20200925T014306Z:978a6cf3-714d-43c4-af07-8cabffafdd57" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -849,10 +975,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:44:01 GMT" + "Fri, 25 Sep 2020 01:43:05 GMT" ], "Content-Length": [ - "983" + "982" ], "Content-Type": [ "application/json; charset=utf-8" @@ -861,23 +987,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 1073741824,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"6803a710-eca1-4725-8ef0-7f4aa0386957\",\r\n \"creationDate\": \"2020-09-13T15:43:50.253Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 321912832,\r\n \"earliestRestoreDate\": \"2020-09-13T16:13:50.253Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2364/providers/Microsoft.Sql/servers/ps6534/databases/ps4377\",\r\n \"name\": \"ps4377\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 1073741824,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"af6c200b-600b-4010-bf7f-190799965421\",\r\n \"creationDate\": \"2020-09-25T01:43:01.127Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 321912832,\r\n \"earliestRestoreDate\": \"2020-09-25T02:13:01.127Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6853/providers/Microsoft.Sql/servers/ps971/databases/ps7448\",\r\n \"name\": \"ps7448\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2364/providers/Microsoft.Sql/servers/ps6534/databases/ps4377?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM2NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjUzNC9kYXRhYmFzZXMvcHM0Mzc3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6853/providers/Microsoft.Sql/servers/ps971/databases/ps7448?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTcxL2RhdGFiYXNlcy9wczc0NDg/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e8b79e0d-74e2-4702-9c63-55fd2ecd072f" + "f21188eb-6090-4cef-ab2f-0e995850437c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -891,19 +1017,19 @@ "no-cache" ], "x-ms-request-id": [ - "37b38169-cdef-4f54-9a67-4e81c2575171" + "b6af700b-c22e-48fe-88c8-0fea0f0cf263" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11983" ], "x-ms-correlation-request-id": [ - "0be48216-ef0b-4570-ba35-ce09b2344741" + "62def2b5-7f86-4707-892f-33d5fe4ba94a" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T154402Z:0be48216-ef0b-4570-ba35-ce09b2344741" + "WESTUS:20200925T014306Z:62def2b5-7f86-4707-892f-33d5fe4ba94a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -912,10 +1038,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:44:01 GMT" + "Fri, 25 Sep 2020 01:43:06 GMT" ], "Content-Length": [ - "983" + "982" ], "Content-Type": [ "application/json; charset=utf-8" @@ -924,23 +1050,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 1073741824,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"6803a710-eca1-4725-8ef0-7f4aa0386957\",\r\n \"creationDate\": \"2020-09-13T15:43:50.253Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 321912832,\r\n \"earliestRestoreDate\": \"2020-09-13T16:13:50.253Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2364/providers/Microsoft.Sql/servers/ps6534/databases/ps4377\",\r\n \"name\": \"ps4377\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 1073741824,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"af6c200b-600b-4010-bf7f-190799965421\",\r\n \"creationDate\": \"2020-09-25T01:43:01.127Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 321912832,\r\n \"earliestRestoreDate\": \"2020-09-25T02:13:01.127Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6853/providers/Microsoft.Sql/servers/ps971/databases/ps7448\",\r\n \"name\": \"ps7448\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2364/providers/Microsoft.Sql/servers/ps6534/databases/ps4377?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM2NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjUzNC9kYXRhYmFzZXMvcHM0Mzc3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6853/providers/Microsoft.Sql/servers/ps971/databases/ps7448?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTcxL2RhdGFiYXNlcy9wczc0NDg/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7f0074af-1903-49ef-af9d-6f8089196285" + "d1e04f3b-1731-4298-9e08-f696547b33fa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -954,19 +1080,19 @@ "no-cache" ], "x-ms-request-id": [ - "1fb2857e-1e6e-4cc7-9b7d-bea6f65aa860" + "ac3772e4-30b4-4306-bfe3-1a0d2a0349d6" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11982" ], "x-ms-correlation-request-id": [ - "8825795b-b8b1-4770-832e-516597a5feb1" + "f7a8b46b-5b1f-4521-9238-a7d70ff57709" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T154402Z:8825795b-b8b1-4770-832e-516597a5feb1" + "WESTUS:20200925T014306Z:f7a8b46b-5b1f-4521-9238-a7d70ff57709" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -975,10 +1101,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:44:02 GMT" + "Fri, 25 Sep 2020 01:43:06 GMT" ], "Content-Length": [ - "983" + "982" ], "Content-Type": [ "application/json; charset=utf-8" @@ -987,23 +1113,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 1073741824,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"6803a710-eca1-4725-8ef0-7f4aa0386957\",\r\n \"creationDate\": \"2020-09-13T15:43:50.253Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 321912832,\r\n \"earliestRestoreDate\": \"2020-09-13T16:13:50.253Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2364/providers/Microsoft.Sql/servers/ps6534/databases/ps4377\",\r\n \"name\": \"ps4377\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 1073741824,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"af6c200b-600b-4010-bf7f-190799965421\",\r\n \"creationDate\": \"2020-09-25T01:43:01.127Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 321912832,\r\n \"earliestRestoreDate\": \"2020-09-25T02:13:01.127Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6853/providers/Microsoft.Sql/servers/ps971/databases/ps7448\",\r\n \"name\": \"ps7448\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2364/providers/Microsoft.Sql/servers/ps6534/databases/ps4377?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM2NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjUzNC9kYXRhYmFzZXMvcHM0Mzc3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6853/providers/Microsoft.Sql/servers/ps971/databases/ps7448?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTcxL2RhdGFiYXNlcy9wczc0NDg/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "85833368-73d0-4c40-93c4-b6202ab2312a" + "d33db94f-7ce8-40fa-b682-631b92f30b3d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1020,13 +1146,13 @@ "gateway" ], "x-ms-request-id": [ - "9cdfc37b-aca8-49f1-84cd-df891f7b52d1" + "744722de-1e50-40e2-8397-cb9ca0b3153a" ], "x-ms-correlation-request-id": [ - "9cdfc37b-aca8-49f1-84cd-df891f7b52d1" + "744722de-1e50-40e2-8397-cb9ca0b3153a" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T154413Z:9cdfc37b-aca8-49f1-84cd-df891f7b52d1" + "WESTUS:20200925T014315Z:744722de-1e50-40e2-8397-cb9ca0b3153a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1035,7 +1161,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:44:13 GMT" + "Fri, 25 Sep 2020 01:43:14 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1044,26 +1170,26 @@ "-1" ], "Content-Length": [ - "223" + "222" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps6534/databases/ps4377' under resource group 'ps2364' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps971/databases/ps7448' under resource group 'ps6853' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2364/providers/Microsoft.Sql/servers/ps6534/databases/ps4377?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM2NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjUzNC9kYXRhYmFzZXMvcHM0Mzc3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6853/providers/Microsoft.Sql/servers/ps971/databases/ps7448?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTcxL2RhdGFiYXNlcy9wczc0NDg/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7c5134f1-f219-40f4-a5b2-7e315250aa80" + "8b35f00c-de8c-4616-a1e3-cf59ffed6db9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1080,13 +1206,13 @@ "gateway" ], "x-ms-request-id": [ - "88007151-e272-4221-a992-661e4fa40328" + "6b6b68a6-6f84-438e-b3b5-653ec39dc204" ], "x-ms-correlation-request-id": [ - "88007151-e272-4221-a992-661e4fa40328" + "6b6b68a6-6f84-438e-b3b5-653ec39dc204" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T154421Z:88007151-e272-4221-a992-661e4fa40328" + "WESTUS:20200925T014323Z:6b6b68a6-6f84-438e-b3b5-653ec39dc204" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1095,7 +1221,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:44:20 GMT" + "Fri, 25 Sep 2020 01:43:23 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1104,26 +1230,26 @@ "-1" ], "Content-Length": [ - "223" + "222" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps6534/databases/ps4377' under resource group 'ps2364' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps971/databases/ps7448' under resource group 'ps6853' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2364/providers/Microsoft.Sql/servers/ps6534/databases/ps4377?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM2NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjUzNC9kYXRhYmFzZXMvcHM0Mzc3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6853/providers/Microsoft.Sql/servers/ps971/databases/ps7448?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTcxL2RhdGFiYXNlcy9wczc0NDg/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": 1073741824,\r\n \"readScale\": \"\"\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9d35bee8-7f0a-4155-a4e2-0027e219b38a" + "a532b3ee-2645-41ea-9741-7192c9b2f787" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1143,16 +1269,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2364/providers/Microsoft.Sql/locations/southeastasia/databaseOperationResults/52e35e97-64cd-48d6-bf63-152aeef0b8e0?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6853/providers/Microsoft.Sql/locations/southeastasia/databaseOperationResults/49970375-4286-4ed0-93c4-9a396c5f983c?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2364/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/52e35e97-64cd-48d6-bf63-152aeef0b8e0?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6853/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/49970375-4286-4ed0-93c4-9a396c5f983c?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "52e35e97-64cd-48d6-bf63-152aeef0b8e0" + "49970375-4286-4ed0-93c4-9a396c5f983c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1161,10 +1287,10 @@ "1198" ], "x-ms-correlation-request-id": [ - "1c93af9d-e274-46ec-9961-f30dae909aa7" + "557d2d1c-4c66-4093-8c6b-09e6797752d4" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T154316Z:1c93af9d-e274-46ec-9961-f30dae909aa7" + "WESTUS:20200925T014220Z:557d2d1c-4c66-4093-8c6b-09e6797752d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1173,7 +1299,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:43:15 GMT" + "Fri, 25 Sep 2020 01:42:20 GMT" ], "Content-Length": [ "76" @@ -1185,17 +1311,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2020-09-13T15:43:16.113Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2020-09-25T01:42:20.267Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2364/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/52e35e97-64cd-48d6-bf63-152aeef0b8e0?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM2NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNTJlMzVlOTctNjRjZC00OGQ2LWJmNjMtMTUyYWVlZjBiOGUwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6853/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/49970375-4286-4ed0-93c4-9a396c5f983c?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNDk5NzAzNzUtNDI4Ni00ZWQwLTkzYzQtOWEzOTZjNWY5ODNjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1212,7 +1338,7 @@ "15" ], "x-ms-request-id": [ - "542e4a0c-b99e-4ada-872c-d41514cb6e9f" + "cfc7c8f7-b132-4dce-9b13-6eeeef80ad68" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1221,10 +1347,10 @@ "11988" ], "x-ms-correlation-request-id": [ - "6da7e5dc-f5c9-47c3-8ce4-99d34f095e04" + "ff3b20b1-eb31-4e11-a840-221a399e65c4" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T154331Z:6da7e5dc-f5c9-47c3-8ce4-99d34f095e04" + "WESTUS:20200925T014235Z:ff3b20b1-eb31-4e11-a840-221a399e65c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1233,7 +1359,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:43:31 GMT" + "Fri, 25 Sep 2020 01:42:35 GMT" ], "Content-Length": [ "108" @@ -1245,17 +1371,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"52e35e97-64cd-48d6-bf63-152aeef0b8e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T15:43:16.113Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"49970375-4286-4ed0-93c4-9a396c5f983c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:42:20.267Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2364/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/52e35e97-64cd-48d6-bf63-152aeef0b8e0?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM2NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNTJlMzVlOTctNjRjZC00OGQ2LWJmNjMtMTUyYWVlZjBiOGUwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6853/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/49970375-4286-4ed0-93c4-9a396c5f983c?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNDk5NzAzNzUtNDI4Ni00ZWQwLTkzYzQtOWEzOTZjNWY5ODNjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1272,7 +1398,7 @@ "15" ], "x-ms-request-id": [ - "befaa448-284e-4bd9-b2c4-a0c497606ea8" + "e1a22fb3-ca5b-45e4-b27f-35b721a739f7" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1281,10 +1407,10 @@ "11987" ], "x-ms-correlation-request-id": [ - "87e1fb3d-8b76-4c7b-aad8-c3b353092e66" + "5b685e85-9f48-44e3-b6bb-80d8082578a7" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T154346Z:87e1fb3d-8b76-4c7b-aad8-c3b353092e66" + "WESTUS:20200925T014250Z:5b685e85-9f48-44e3-b6bb-80d8082578a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1293,7 +1419,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:43:46 GMT" + "Fri, 25 Sep 2020 01:42:50 GMT" ], "Content-Length": [ "108" @@ -1305,17 +1431,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"52e35e97-64cd-48d6-bf63-152aeef0b8e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T15:43:16.113Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"49970375-4286-4ed0-93c4-9a396c5f983c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:42:20.267Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2364/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/52e35e97-64cd-48d6-bf63-152aeef0b8e0?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM2NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNTJlMzVlOTctNjRjZC00OGQ2LWJmNjMtMTUyYWVlZjBiOGUwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6853/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/49970375-4286-4ed0-93c4-9a396c5f983c?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNDk5NzAzNzUtNDI4Ni00ZWQwLTkzYzQtOWEzOTZjNWY5ODNjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1332,7 +1458,7 @@ "15" ], "x-ms-request-id": [ - "f5aa7c31-ac6d-4fa2-9662-5ad715613056" + "a3c77cc6-3b66-458c-8547-977f3c97aeae" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1341,10 +1467,10 @@ "11986" ], "x-ms-correlation-request-id": [ - "84ed1f48-7f61-4809-9d2f-0b2e6f4b792a" + "08730981-4c95-4794-8890-8f8969ce9589" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T154401Z:84ed1f48-7f61-4809-9d2f-0b2e6f4b792a" + "WESTUS:20200925T014306Z:08730981-4c95-4794-8890-8f8969ce9589" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1353,7 +1479,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:44:01 GMT" + "Fri, 25 Sep 2020 01:43:05 GMT" ], "Content-Length": [ "107" @@ -1365,23 +1491,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"52e35e97-64cd-48d6-bf63-152aeef0b8e0\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-13T15:43:16.113Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"49970375-4286-4ed0-93c4-9a396c5f983c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-25T01:42:20.267Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2364/providers/Microsoft.Sql/servers/ps6534/databases/ps4377/move?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM2NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjUzNC9kYXRhYmFzZXMvcHM0Mzc3L21vdmU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6853/providers/Microsoft.Sql/servers/ps971/databases/ps7448/move?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTcxL2RhdGFiYXNlcy9wczc0NDgvbW92ZT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2364/providers/Microsoft.Sql/servers/ps6534/databases/name2\"\r\n}", + "RequestBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6853/providers/Microsoft.Sql/servers/ps971/databases/name2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d639581b-9510-4115-aaa6-8c5088d56db6" + "01e100f7-2949-48f0-8f9e-49bb0d47ff05" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1390,7 +1516,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "144" + "143" ] }, "ResponseHeaders": { @@ -1401,7 +1527,7 @@ "no-cache" ], "x-ms-request-id": [ - "80cbb27b-7033-4bd9-bce9-825db71c3b43" + "89613f5c-7361-4278-9fec-6f047e84b0ed" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1410,10 +1536,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "39fd38df-5e3d-4fc8-a19f-6d721ed6f152" + "053e7adf-3b68-4443-9313-1bd4755b5fcc" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T154413Z:39fd38df-5e3d-4fc8-a19f-6d721ed6f152" + "WESTUS:20200925T014315Z:053e7adf-3b68-4443-9313-1bd4755b5fcc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1422,7 +1548,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:44:12 GMT" + "Fri, 25 Sep 2020 01:43:14 GMT" ], "Expires": [ "-1" @@ -1435,19 +1561,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2364/providers/Microsoft.Sql/servers/ps6534/databases/name2?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM2NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjUzNC9kYXRhYmFzZXMvbmFtZTI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6853/providers/Microsoft.Sql/servers/ps971/databases/name2?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTcxL2RhdGFiYXNlcy9uYW1lMj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f4123099-354c-41f5-91f1-87a9a7b78b98" + "f9e97b91-5b2e-4eba-99a0-c2969856e648" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1461,19 +1587,19 @@ "no-cache" ], "x-ms-request-id": [ - "435d9144-b80f-486b-a65b-4d9300aef427" + "45d6987c-b1a0-4261-a249-ba7571efb79b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11981" ], "x-ms-correlation-request-id": [ - "9a249cf3-60a2-4791-a112-b5adfd091201" + "fecc098d-a23d-443f-985d-0b82fb41d960" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T154413Z:9a249cf3-60a2-4791-a112-b5adfd091201" + "WESTUS:20200925T014315Z:fecc098d-a23d-443f-985d-0b82fb41d960" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1482,10 +1608,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:44:13 GMT" + "Fri, 25 Sep 2020 01:43:14 GMT" ], "Content-Length": [ - "973" + "972" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1494,23 +1620,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 1073741824,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"6803a710-eca1-4725-8ef0-7f4aa0386957\",\r\n \"creationDate\": \"2020-09-13T15:43:50.253Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 0,\r\n \"earliestRestoreDate\": \"2020-09-13T16:13:50.253Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2364/providers/Microsoft.Sql/servers/ps6534/databases/name2\",\r\n \"name\": \"name2\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 1073741824,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"af6c200b-600b-4010-bf7f-190799965421\",\r\n \"creationDate\": \"2020-09-25T01:43:01.127Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 0,\r\n \"earliestRestoreDate\": \"2020-09-25T02:13:01.127Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6853/providers/Microsoft.Sql/servers/ps971/databases/name2\",\r\n \"name\": \"name2\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2364/providers/Microsoft.Sql/servers/ps6534/databases/name2?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM2NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjUzNC9kYXRhYmFzZXMvbmFtZTI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6853/providers/Microsoft.Sql/servers/ps971/databases/name2?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTcxL2RhdGFiYXNlcy9uYW1lMj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4e47c33f-4e52-477b-81df-72be043be880" + "475f15d8-7ac2-46ea-a90b-6f0cb9463a58" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1524,19 +1650,19 @@ "no-cache" ], "x-ms-request-id": [ - "6319ce71-0c28-4f02-b643-4c8f80b2ea5b" + "f94d1d28-4528-4340-8925-9316773bfe9d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11979" ], "x-ms-correlation-request-id": [ - "205f3d35-75ff-41c6-8f46-644ba61eaa94" + "96eb930c-bdca-4409-aaa5-3bbffc01370e" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T154414Z:205f3d35-75ff-41c6-8f46-644ba61eaa94" + "WESTUS:20200925T014315Z:96eb930c-bdca-4409-aaa5-3bbffc01370e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1545,10 +1671,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:44:13 GMT" + "Fri, 25 Sep 2020 01:43:15 GMT" ], "Content-Length": [ - "973" + "972" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1557,23 +1683,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 1073741824,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"6803a710-eca1-4725-8ef0-7f4aa0386957\",\r\n \"creationDate\": \"2020-09-13T15:43:50.253Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 0,\r\n \"earliestRestoreDate\": \"2020-09-13T16:13:50.253Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2364/providers/Microsoft.Sql/servers/ps6534/databases/name2\",\r\n \"name\": \"name2\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 1073741824,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"af6c200b-600b-4010-bf7f-190799965421\",\r\n \"creationDate\": \"2020-09-25T01:43:01.127Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 0,\r\n \"earliestRestoreDate\": \"2020-09-25T02:13:01.127Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6853/providers/Microsoft.Sql/servers/ps971/databases/name2\",\r\n \"name\": \"name2\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2364/providers/Microsoft.Sql/servers/ps6534/databases/name2?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM2NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjUzNC9kYXRhYmFzZXMvbmFtZTI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6853/providers/Microsoft.Sql/servers/ps971/databases/name2?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTcxL2RhdGFiYXNlcy9uYW1lMj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2795fee4-3f1f-4b61-af65-4cf1f26492c9" + "015ec5fd-2dd7-491e-a034-560eee765dcd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1587,19 +1713,19 @@ "no-cache" ], "x-ms-request-id": [ - "9be129df-295a-4a7d-9d75-b97c5d67efdc" + "9a889628-ce25-4775-bdff-fc7bc0d5b753" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11977" ], "x-ms-correlation-request-id": [ - "c95b6e7b-6aec-45b2-ad64-e0bca08e37d7" + "6de7bfde-c074-42c9-a7bf-76e4ef43db7b" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T154414Z:c95b6e7b-6aec-45b2-ad64-e0bca08e37d7" + "WESTUS:20200925T014316Z:6de7bfde-c074-42c9-a7bf-76e4ef43db7b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1608,10 +1734,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:44:13 GMT" + "Fri, 25 Sep 2020 01:43:15 GMT" ], "Content-Length": [ - "973" + "972" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1620,23 +1746,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 1073741824,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"6803a710-eca1-4725-8ef0-7f4aa0386957\",\r\n \"creationDate\": \"2020-09-13T15:43:50.253Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 0,\r\n \"earliestRestoreDate\": \"2020-09-13T16:13:50.253Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2364/providers/Microsoft.Sql/servers/ps6534/databases/name2\",\r\n \"name\": \"name2\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 1073741824,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"af6c200b-600b-4010-bf7f-190799965421\",\r\n \"creationDate\": \"2020-09-25T01:43:01.127Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 0,\r\n \"earliestRestoreDate\": \"2020-09-25T02:13:01.127Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6853/providers/Microsoft.Sql/servers/ps971/databases/name2\",\r\n \"name\": \"name2\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2364/providers/Microsoft.Sql/servers/ps6534/databases/name2?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM2NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjUzNC9kYXRhYmFzZXMvbmFtZTI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6853/providers/Microsoft.Sql/servers/ps971/databases/name2?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTcxL2RhdGFiYXNlcy9uYW1lMj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f5d853c-1d7e-430d-8304-41790b71311d" + "02ea69fb-0253-4775-886b-96c5a39803ba" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1650,19 +1776,19 @@ "no-cache" ], "x-ms-request-id": [ - "942c81b6-359d-4adc-956e-8b268f2ca1cf" + "ce8a149f-17e5-4b2c-a24d-6df5eeb70f93" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11976" ], "x-ms-correlation-request-id": [ - "93ee2883-dcd4-4d37-84bf-0678f92d359b" + "d1b5bcb5-2923-481e-bcc0-fe5648c0fb72" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T154414Z:93ee2883-dcd4-4d37-84bf-0678f92d359b" + "WESTUS:20200925T014316Z:d1b5bcb5-2923-481e-bcc0-fe5648c0fb72" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1671,10 +1797,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:44:13 GMT" + "Fri, 25 Sep 2020 01:43:15 GMT" ], "Content-Length": [ - "973" + "972" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1683,23 +1809,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 1073741824,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"6803a710-eca1-4725-8ef0-7f4aa0386957\",\r\n \"creationDate\": \"2020-09-13T15:43:50.253Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 0,\r\n \"earliestRestoreDate\": \"2020-09-13T16:13:50.253Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2364/providers/Microsoft.Sql/servers/ps6534/databases/name2\",\r\n \"name\": \"name2\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 1073741824,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"af6c200b-600b-4010-bf7f-190799965421\",\r\n \"creationDate\": \"2020-09-25T01:43:01.127Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 0,\r\n \"earliestRestoreDate\": \"2020-09-25T02:13:01.127Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6853/providers/Microsoft.Sql/servers/ps971/databases/name2\",\r\n \"name\": \"name2\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2364/providers/Microsoft.Sql/servers/ps6534/databases/name2?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM2NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjUzNC9kYXRhYmFzZXMvbmFtZTI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6853/providers/Microsoft.Sql/servers/ps971/databases/name2?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTcxL2RhdGFiYXNlcy9uYW1lMj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fffad3aa-a764-4803-8ef6-b246726776ba" + "92368589-0cae-4ec3-a9c9-28e1e25e2928" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1716,13 +1842,13 @@ "gateway" ], "x-ms-request-id": [ - "9b9ce704-34d5-47ef-b736-18396458a31a" + "7c217afc-eea6-4452-a32c-5b97af5ce160" ], "x-ms-correlation-request-id": [ - "9b9ce704-34d5-47ef-b736-18396458a31a" + "7c217afc-eea6-4452-a32c-5b97af5ce160" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T154421Z:9b9ce704-34d5-47ef-b736-18396458a31a" + "WESTUS:20200925T014323Z:7c217afc-eea6-4452-a32c-5b97af5ce160" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1731,7 +1857,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:44:20 GMT" + "Fri, 25 Sep 2020 01:43:23 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1740,26 +1866,26 @@ "-1" ], "Content-Length": [ - "222" + "221" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps6534/databases/name2' under resource group 'ps2364' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps971/databases/name2' under resource group 'ps6853' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2364/providers/Microsoft.Sql/servers/ps6534/databases/name2/move?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM2NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjUzNC9kYXRhYmFzZXMvbmFtZTIvbW92ZT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6853/providers/Microsoft.Sql/servers/ps971/databases/name2/move?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTcxL2RhdGFiYXNlcy9uYW1lMi9tb3ZlP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2364/providers/Microsoft.Sql/servers/ps6534/databases/name3\"\r\n}", + "RequestBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6853/providers/Microsoft.Sql/servers/ps971/databases/name3\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "102550b4-68bc-4f63-a7ec-5f1dba2a20fd" + "f9feb070-cf78-4be8-b09e-f73cad136fb6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1768,7 +1894,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "144" + "143" ] }, "ResponseHeaders": { @@ -1779,7 +1905,7 @@ "no-cache" ], "x-ms-request-id": [ - "12e500f2-0342-4e74-adf6-49ecce0d7079" + "4a36f3ad-2d04-4758-8d65-40347cf34db4" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1788,10 +1914,10 @@ "1198" ], "x-ms-correlation-request-id": [ - "8d85dd12-41ac-4453-a82a-1b8d40412d7c" + "3067f0f1-01d9-4eac-85b3-08f4041f4c86" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T154421Z:8d85dd12-41ac-4453-a82a-1b8d40412d7c" + "WESTUS:20200925T014323Z:3067f0f1-01d9-4eac-85b3-08f4041f4c86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1800,7 +1926,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:44:20 GMT" + "Fri, 25 Sep 2020 01:43:22 GMT" ], "Expires": [ "-1" @@ -1813,19 +1939,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2364/providers/Microsoft.Sql/servers/ps6534/databases/name3?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM2NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjUzNC9kYXRhYmFzZXMvbmFtZTM/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6853/providers/Microsoft.Sql/servers/ps971/databases/name3?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTcxL2RhdGFiYXNlcy9uYW1lMz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d6417bdc-ff20-4010-aea4-6036c2f65dfa" + "237dceae-578f-4273-ac01-05095d88db51" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1839,19 +1965,19 @@ "no-cache" ], "x-ms-request-id": [ - "ddb02e02-e92c-496a-8189-3c60550fddbe" + "0fb0c015-5b3a-4d8f-af63-a7ddd792b931" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11975" ], "x-ms-correlation-request-id": [ - "9dc667be-2627-483b-abbd-857e19d39f15" + "83843805-6ec9-4144-902f-c50c8504c7bb" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T154421Z:9dc667be-2627-483b-abbd-857e19d39f15" + "WESTUS:20200925T014323Z:83843805-6ec9-4144-902f-c50c8504c7bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1860,10 +1986,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:44:20 GMT" + "Fri, 25 Sep 2020 01:43:22 GMT" ], "Content-Length": [ - "973" + "972" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1872,23 +1998,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 1073741824,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"6803a710-eca1-4725-8ef0-7f4aa0386957\",\r\n \"creationDate\": \"2020-09-13T15:43:50.253Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 0,\r\n \"earliestRestoreDate\": \"2020-09-13T16:13:50.253Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2364/providers/Microsoft.Sql/servers/ps6534/databases/name3\",\r\n \"name\": \"name3\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 1073741824,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"af6c200b-600b-4010-bf7f-190799965421\",\r\n \"creationDate\": \"2020-09-25T01:43:01.127Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 0,\r\n \"earliestRestoreDate\": \"2020-09-25T02:13:01.127Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6853/providers/Microsoft.Sql/servers/ps971/databases/name3\",\r\n \"name\": \"name3\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2364/providers/Microsoft.Sql/servers/ps6534/databases/name3?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM2NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjUzNC9kYXRhYmFzZXMvbmFtZTM/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6853/providers/Microsoft.Sql/servers/ps971/databases/name3?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTcxL2RhdGFiYXNlcy9uYW1lMz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7e3e16ec-67d9-4f09-8a65-496ab18c25ed" + "34d647bf-e1d0-4f02-865b-7d0930a6d71b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1902,19 +2028,19 @@ "no-cache" ], "x-ms-request-id": [ - "ed080359-52c1-4af6-a162-95d42a7d405c" + "1cb2c29b-9e4a-4496-a872-c457a36d28cd" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11972" ], "x-ms-correlation-request-id": [ - "25447bad-4e1f-401e-a48f-99a14f208b11" + "c0317a8b-e694-41e8-a4b6-c4ffc75e3f98" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T154421Z:25447bad-4e1f-401e-a48f-99a14f208b11" + "WESTUS:20200925T014323Z:c0317a8b-e694-41e8-a4b6-c4ffc75e3f98" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1923,10 +2049,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:44:20 GMT" + "Fri, 25 Sep 2020 01:43:23 GMT" ], "Content-Length": [ - "973" + "972" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1935,23 +2061,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 1073741824,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"6803a710-eca1-4725-8ef0-7f4aa0386957\",\r\n \"creationDate\": \"2020-09-13T15:43:50.253Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 0,\r\n \"earliestRestoreDate\": \"2020-09-13T16:13:50.253Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2364/providers/Microsoft.Sql/servers/ps6534/databases/name3\",\r\n \"name\": \"name3\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 1073741824,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"af6c200b-600b-4010-bf7f-190799965421\",\r\n \"creationDate\": \"2020-09-25T01:43:01.127Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 0,\r\n \"earliestRestoreDate\": \"2020-09-25T02:13:01.127Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6853/providers/Microsoft.Sql/servers/ps971/databases/name3\",\r\n \"name\": \"name3\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps2364?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzMjM2ND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps6853?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzNjg1Mz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d40ed9aa-5169-4e20-a5a4-9f8b86513f32" + "caa2ed61-57d2-4300-89d2-e9e1c1dcd433" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -1965,7 +2091,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4NTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1974,13 +2100,13 @@ "14999" ], "x-ms-request-id": [ - "ade52f02-c525-4316-b1b2-1969373de486" + "74091284-441c-4bc8-9b25-b10e9b606300" ], "x-ms-correlation-request-id": [ - "ade52f02-c525-4316-b1b2-1969373de486" + "74091284-441c-4bc8-9b25-b10e9b606300" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T154422Z:ade52f02-c525-4316-b1b2-1969373de486" + "WESTUS:20200925T014324Z:74091284-441c-4bc8-9b25-b10e9b606300" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1989,7 +2115,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:44:22 GMT" + "Fri, 25 Sep 2020 01:43:24 GMT" ], "Expires": [ "-1" @@ -2002,13 +2128,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJek5qUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4NTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNE5UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -2022,7 +2148,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4NTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2031,13 +2157,13 @@ "11999" ], "x-ms-request-id": [ - "2cd99e9e-6829-4aaf-8fb2-04e0c81dbe56" + "38d1580d-c475-4ad6-b1f8-ef07b415beef" ], "x-ms-correlation-request-id": [ - "2cd99e9e-6829-4aaf-8fb2-04e0c81dbe56" + "38d1580d-c475-4ad6-b1f8-ef07b415beef" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T154437Z:2cd99e9e-6829-4aaf-8fb2-04e0c81dbe56" + "WESTUS:20200925T014339Z:38d1580d-c475-4ad6-b1f8-ef07b415beef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2046,7 +2172,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:44:37 GMT" + "Fri, 25 Sep 2020 01:43:39 GMT" ], "Expires": [ "-1" @@ -2059,13 +2185,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJek5qUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4NTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNE5UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -2079,7 +2205,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4NTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2088,13 +2214,13 @@ "11998" ], "x-ms-request-id": [ - "4462d9e3-e18e-490b-80d2-cb18cad7b278" + "059c8165-318b-4d3c-a463-2656b7697416" ], "x-ms-correlation-request-id": [ - "4462d9e3-e18e-490b-80d2-cb18cad7b278" + "059c8165-318b-4d3c-a463-2656b7697416" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T154452Z:4462d9e3-e18e-490b-80d2-cb18cad7b278" + "WESTUS:20200925T014355Z:059c8165-318b-4d3c-a463-2656b7697416" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2103,7 +2229,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:44:52 GMT" + "Fri, 25 Sep 2020 01:43:54 GMT" ], "Expires": [ "-1" @@ -2116,13 +2242,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJek5qUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4NTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNE5UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -2136,7 +2262,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4NTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2145,13 +2271,13 @@ "11997" ], "x-ms-request-id": [ - "963e9970-a606-4fc6-a836-9dabd0491e3d" + "7b2d5b3f-3e7a-4a32-94d3-9bb35f4e14cd" ], "x-ms-correlation-request-id": [ - "963e9970-a606-4fc6-a836-9dabd0491e3d" + "7b2d5b3f-3e7a-4a32-94d3-9bb35f4e14cd" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T154507Z:963e9970-a606-4fc6-a836-9dabd0491e3d" + "WESTUS:20200925T014410Z:7b2d5b3f-3e7a-4a32-94d3-9bb35f4e14cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2160,7 +2286,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:45:07 GMT" + "Fri, 25 Sep 2020 01:44:09 GMT" ], "Expires": [ "-1" @@ -2173,13 +2299,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJek5qUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4NTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNE5UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -2193,7 +2319,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4NTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2202,13 +2328,13 @@ "11996" ], "x-ms-request-id": [ - "81c9ab78-18fd-4c39-a819-ccdb12ff8ef7" + "b0db9dd9-be90-4bb9-91b2-b85d4f5d7535" ], "x-ms-correlation-request-id": [ - "81c9ab78-18fd-4c39-a819-ccdb12ff8ef7" + "b0db9dd9-be90-4bb9-91b2-b85d4f5d7535" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T154522Z:81c9ab78-18fd-4c39-a819-ccdb12ff8ef7" + "WESTUS:20200925T014425Z:b0db9dd9-be90-4bb9-91b2-b85d4f5d7535" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2217,7 +2343,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:45:22 GMT" + "Fri, 25 Sep 2020 01:44:24 GMT" ], "Expires": [ "-1" @@ -2230,13 +2356,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJek5qUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4NTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNE5UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -2250,7 +2376,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4NTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2259,13 +2385,13 @@ "11995" ], "x-ms-request-id": [ - "527d5fd9-9b41-474d-a470-9de8f1776da7" + "e82d0be0-6f95-4025-b0ab-746a8cb45f76" ], "x-ms-correlation-request-id": [ - "527d5fd9-9b41-474d-a470-9de8f1776da7" + "e82d0be0-6f95-4025-b0ab-746a8cb45f76" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T154537Z:527d5fd9-9b41-474d-a470-9de8f1776da7" + "WESTUS:20200925T014440Z:e82d0be0-6f95-4025-b0ab-746a8cb45f76" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2274,7 +2400,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:45:37 GMT" + "Fri, 25 Sep 2020 01:44:39 GMT" ], "Expires": [ "-1" @@ -2287,13 +2413,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJek5qUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4NTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNE5UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -2307,7 +2433,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4NTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2316,13 +2442,13 @@ "11994" ], "x-ms-request-id": [ - "051358f5-7856-4468-83c9-515172eae729" + "896c73b3-e815-491c-9a2a-9ad2482bdaca" ], "x-ms-correlation-request-id": [ - "051358f5-7856-4468-83c9-515172eae729" + "896c73b3-e815-491c-9a2a-9ad2482bdaca" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T154552Z:051358f5-7856-4468-83c9-515172eae729" + "WESTUS:20200925T014455Z:896c73b3-e815-491c-9a2a-9ad2482bdaca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2331,7 +2457,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:45:52 GMT" + "Fri, 25 Sep 2020 01:44:54 GMT" ], "Expires": [ "-1" @@ -2344,13 +2470,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJek5qUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4NTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNE5UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -2367,13 +2493,13 @@ "11993" ], "x-ms-request-id": [ - "33494117-5583-4224-958a-86538d3fc1e8" + "d08475a9-43b4-48c7-af1d-2a591ba81b19" ], "x-ms-correlation-request-id": [ - "33494117-5583-4224-958a-86538d3fc1e8" + "d08475a9-43b4-48c7-af1d-2a591ba81b19" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T154607Z:33494117-5583-4224-958a-86538d3fc1e8" + "WESTUS:20200925T014510Z:d08475a9-43b4-48c7-af1d-2a591ba81b19" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2382,7 +2508,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:46:07 GMT" + "Fri, 25 Sep 2020 01:45:10 GMT" ], "Expires": [ "-1" @@ -2395,13 +2521,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJek5qUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4NTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNE5UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -2418,13 +2544,13 @@ "11992" ], "x-ms-request-id": [ - "d4b2d0a4-2522-4033-b6ce-953df95b2a51" + "d0ba4e99-f458-4433-b111-174db0b0838b" ], "x-ms-correlation-request-id": [ - "d4b2d0a4-2522-4033-b6ce-953df95b2a51" + "d0ba4e99-f458-4433-b111-174db0b0838b" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T154608Z:d4b2d0a4-2522-4033-b6ce-953df95b2a51" + "WESTUS:20200925T014510Z:d0ba4e99-f458-4433-b111-174db0b0838b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2433,7 +2559,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:46:07 GMT" + "Fri, 25 Sep 2020 01:45:10 GMT" ], "Expires": [ "-1" @@ -2448,9 +2574,9 @@ ], "Names": { "Test-RenameDatabase": [ - "ps2364", - "ps6534", - "ps4377" + "ps6853", + "ps971", + "ps7448" ] }, "Variables": { diff --git a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseUpdate.json b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseUpdate.json index 29a2fa6aca81..688fbe0a836a 100644 --- a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseUpdate.json +++ b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseUpdate.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps1650?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzMTY1MD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps1327?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzMTMyNz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0ddaff00-a377-42bd-92c3-90cec75f6aa3" + "774a2d4f-b7e4-480c-bbda-4019668c7921" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1199" ], "x-ms-request-id": [ - "828fd5cb-19d0-4131-8d1a-165d5a98011e" + "4b0b888c-769f-412e-97e2-eb10ddfceadc" ], "x-ms-correlation-request-id": [ - "828fd5cb-19d0-4131-8d1a-165d5a98011e" + "4b0b888c-769f-412e-97e2-eb10ddfceadc" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163227Z:828fd5cb-19d0-4131-8d1a-165d5a98011e" + "WESTUS:20200925T012125Z:4b0b888c-769f-412e-97e2-eb10ddfceadc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:32:27 GMT" + "Fri, 25 Sep 2020 01:21:24 GMT" ], "Content-Length": [ "172" @@ -63,23 +63,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650\",\r\n \"name\": \"ps1650\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327\",\r\n \"name\": \"ps1327\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/servers/ps888?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODg4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/servers/ps2055?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjA1NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "93443f27-7f09-49e5-947f-b0d0a6fb9cf4" + "4d763cd6-e96b-4e70-98c7-8659797671a6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "05dda099-437a-4356-9f42-9ff929f85a6d" + "d546eef4-fa96-4553-ad03-583e1cec4486" ], "x-ms-correlation-request-id": [ - "05dda099-437a-4356-9f42-9ff929f85a6d" + "d546eef4-fa96-4553-ad03-583e1cec4486" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163228Z:05dda099-437a-4356-9f42-9ff929f85a6d" + "WESTUS:20200925T012125Z:d546eef4-fa96-4553-ad03-583e1cec4486" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:32:27 GMT" + "Fri, 25 Sep 2020 01:21:25 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -120,20 +120,20 @@ "-1" ], "Content-Length": [ - "205" + "206" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps888' under resource group 'ps1650' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps2055' under resource group 'ps1327' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/servers/ps888?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODg4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/servers/ps2055?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjA1NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -147,7 +147,7 @@ "no-cache" ], "x-ms-request-id": [ - "1ba17f9f-f203-49d4-8e01-2ac9aaced5e1" + "1bc4cde9-256a-496a-9b0c-886e0a41f8d7" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -156,10 +156,10 @@ "11992" ], "x-ms-correlation-request-id": [ - "c90f53db-d143-44e8-a558-4c440e439881" + "7c6db354-3f30-4909-b0c2-01b7d8606205" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163315Z:c90f53db-d143-44e8-a558-4c440e439881" + "WESTUS:20200925T012212Z:7c6db354-3f30-4909-b0c2-01b7d8606205" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -168,10 +168,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:33:14 GMT" + "Fri, 25 Sep 2020 01:22:11 GMT" ], "Content-Length": [ - "412" + "415" ], "Content-Type": [ "application/json; charset=utf-8" @@ -180,23 +180,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps888.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/servers/ps888\",\r\n \"name\": \"ps888\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps2055.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/servers/ps2055\",\r\n \"name\": \"ps2055\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/servers/ps888?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODg4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/servers/ps2055?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjA1NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f6681f70-62e7-46bd-9c05-1a8984c8df3a" + "c63729a4-fd18-441c-9135-d56a234b513d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -210,7 +210,7 @@ "no-cache" ], "x-ms-request-id": [ - "6a0dd73b-1952-4736-bad5-0850b2c02b17" + "daee7f1f-ad2a-445b-b025-0d7388b37f1d" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -219,10 +219,10 @@ "11991" ], "x-ms-correlation-request-id": [ - "b6373eca-3076-4eef-b32b-a07548733134" + "4f17d592-c6aa-4d83-b52a-0f3e44615f92" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163315Z:b6373eca-3076-4eef-b32b-a07548733134" + "WESTUS:20200925T012212Z:4f17d592-c6aa-4d83-b52a-0f3e44615f92" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -231,10 +231,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:33:14 GMT" + "Fri, 25 Sep 2020 01:22:12 GMT" ], "Content-Length": [ - "412" + "415" ], "Content-Type": [ "application/json; charset=utf-8" @@ -243,23 +243,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps888.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/servers/ps888\",\r\n \"name\": \"ps888\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps2055.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/servers/ps2055\",\r\n \"name\": \"ps2055\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/servers/ps888?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODg4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/servers/ps2055?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjA1NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e4a7548f-e6ff-4298-90d8-e62f92b37506" + "1a8d55ef-755d-4282-bb45-07ea44acc0a3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -273,7 +273,7 @@ "no-cache" ], "x-ms-request-id": [ - "667f5807-101a-40c2-af40-c61b3a7fc121" + "a084b1cd-99a9-4d52-9177-3bd14b123b89" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -282,10 +282,10 @@ "11989" ], "x-ms-correlation-request-id": [ - "7dbc68df-6c78-4765-9c58-387308c86baf" + "7ae00582-46ed-4af5-859c-fbcc57195a54" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163315Z:7dbc68df-6c78-4765-9c58-387308c86baf" + "WESTUS:20200925T012213Z:7ae00582-46ed-4af5-859c-fbcc57195a54" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -294,10 +294,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:33:14 GMT" + "Fri, 25 Sep 2020 01:22:12 GMT" ], "Content-Length": [ - "412" + "415" ], "Content-Type": [ "application/json; charset=utf-8" @@ -306,23 +306,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps888.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/servers/ps888\",\r\n \"name\": \"ps888\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps2055.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/servers/ps2055\",\r\n \"name\": \"ps2055\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/servers/ps888?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODg4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/servers/ps2055?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjA1NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a56f610d-ab0d-476d-805a-20d1667b89f0" + "9ab9e2e8-327b-4ab3-b0a7-a9f85a02f26b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -336,19 +336,19 @@ "no-cache" ], "x-ms-request-id": [ - "37af349f-dd16-4dd6-b6e4-7d94853d7389" + "ebe3c383-efd6-44b4-ba6d-faf986482b09" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11983" ], "x-ms-correlation-request-id": [ - "908bdf89-be0d-4722-8510-4606e5ca451f" + "de7fd560-d158-4969-a358-a96646199fa6" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163539Z:908bdf89-be0d-4722-8510-4606e5ca451f" + "WESTUS:20200925T012315Z:de7fd560-d158-4969-a358-a96646199fa6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -357,10 +357,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:35:38 GMT" + "Fri, 25 Sep 2020 01:23:15 GMT" ], "Content-Length": [ - "412" + "415" ], "Content-Type": [ "application/json; charset=utf-8" @@ -369,23 +369,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps888.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/servers/ps888\",\r\n \"name\": \"ps888\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps2055.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/servers/ps2055\",\r\n \"name\": \"ps2055\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/servers/ps888?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODg4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/servers/ps2055?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjA1NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7b71e294-34e5-402c-ad80-5049239c8b87" + "4721b517-2451-4da5-b906-c162e8598dd6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -399,19 +399,19 @@ "no-cache" ], "x-ms-request-id": [ - "c42872e8-c8c6-431d-9d9b-1daecbedb74b" + "d60f0af9-d631-493f-9487-6007b25ac74f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11976" ], "x-ms-correlation-request-id": [ - "7ccadf11-72be-4bfc-b1cc-f302895256f9" + "7240fa0b-b579-476e-ac67-9fc7446ab877" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163539Z:7ccadf11-72be-4bfc-b1cc-f302895256f9" + "WESTUS:20200925T012402Z:7240fa0b-b579-476e-ac67-9fc7446ab877" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -420,10 +420,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:35:38 GMT" + "Fri, 25 Sep 2020 01:24:02 GMT" ], "Content-Length": [ - "412" + "415" ], "Content-Type": [ "application/json; charset=utf-8" @@ -432,23 +432,212 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps888.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/servers/ps888\",\r\n \"name\": \"ps888\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps2055.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/servers/ps2055\",\r\n \"name\": \"ps2055\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/servers/ps888?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODg4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/servers/ps2055?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjA1NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "86b79b0b-0a54-4b46-a09c-141e288a6470" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d9f127e9-12b7-48fb-9efc-b5e781ea0474" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-correlation-request-id": [ + "4966a8d5-a3ba-467b-a0a6-98838718ff11" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200925T012449Z:4966a8d5-a3ba-467b-a0a6-98838718ff11" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 25 Sep 2020 01:24:49 GMT" + ], + "Content-Length": [ + "415" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps2055.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/servers/ps2055\",\r\n \"name\": \"ps2055\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/servers/ps2055?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjA1NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "40841071-8100-4f40-a61d-8d1342a302d7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "71fde570-186f-4b1b-83e9-c24f2e19d9f1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-correlation-request-id": [ + "a15562c7-44ee-45e5-8cbd-dc29b1b886e5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200925T012450Z:a15562c7-44ee-45e5-8cbd-dc29b1b886e5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 25 Sep 2020 01:24:49 GMT" + ], + "Content-Length": [ + "415" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps2055.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/servers/ps2055\",\r\n \"name\": \"ps2055\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/servers/ps2055?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjA1NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "45a54e89-93cd-483e-8874-b5f1190cd122" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d40db8c2-b16f-41b5-994d-5440855545af" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11958" + ], + "x-ms-correlation-request-id": [ + "c03645c4-66b2-48ae-935a-868dd07e07a0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200925T012639Z:c03645c4-66b2-48ae-935a-868dd07e07a0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 25 Sep 2020 01:26:39 GMT" + ], + "Content-Length": [ + "415" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps2055.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/servers/ps2055\",\r\n \"name\": \"ps2055\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/servers/ps2055?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjA1NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "094d50db-dc47-49d0-99ab-9f8a671b5106" + "ee5bebec-4c8d-47a0-8a43-0cecc4416be8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -468,16 +657,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/locations/southeastasia/serverOperationResults/da3523e8-83a2-4357-8a9c-522da650c7de?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/locations/southeastasia/serverOperationResults/28b5b829-a14b-42cf-9ad6-8adfae85fa00?api-version=2019-06-01-preview" ], "Retry-After": [ "1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/da3523e8-83a2-4357-8a9c-522da650c7de?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/28b5b829-a14b-42cf-9ad6-8adfae85fa00?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "da3523e8-83a2-4357-8a9c-522da650c7de" + "28b5b829-a14b-42cf-9ad6-8adfae85fa00" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -486,10 +675,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "870237bb-95e7-49ff-8444-40c4d2d79131" + "2e2feada-6057-43e1-85cc-17e3cdd64824" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163229Z:870237bb-95e7-49ff-8444-40c4d2d79131" + "WESTUS:20200925T012127Z:2e2feada-6057-43e1-85cc-17e3cdd64824" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -498,10 +687,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:32:28 GMT" + "Fri, 25 Sep 2020 01:21:26 GMT" ], "Content-Length": [ - "73" + "74" ], "Content-Type": [ "application/json; charset=utf-8" @@ -510,17 +699,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-13T16:32:29.28Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-25T01:21:26.887Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/da3523e8-83a2-4357-8a9c-522da650c7de?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2RhMzUyM2U4LTgzYTItNDM1Ny04YTljLTUyMmRhNjUwYzdkZT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/28b5b829-a14b-42cf-9ad6-8adfae85fa00?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzI4YjViODI5LWExNGItNDJjZi05YWQ2LThhZGZhZTg1ZmEwMD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -537,7 +726,7 @@ "1" ], "x-ms-request-id": [ - "12f25814-2466-4369-b81f-b3d466dbddde" + "7403b43a-dee7-43b2-a851-390752d3bf00" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -546,10 +735,10 @@ "11998" ], "x-ms-correlation-request-id": [ - "17cfe5eb-9fb9-4786-b5f9-09b68cdde548" + "aef38dfa-bf5b-4693-8624-5f9be6dfe97e" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163230Z:17cfe5eb-9fb9-4786-b5f9-09b68cdde548" + "WESTUS:20200925T012128Z:aef38dfa-bf5b-4693-8624-5f9be6dfe97e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -558,10 +747,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:32:30 GMT" + "Fri, 25 Sep 2020 01:21:27 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -570,17 +759,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"da3523e8-83a2-4357-8a9c-522da650c7de\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T16:32:29.28Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"28b5b829-a14b-42cf-9ad6-8adfae85fa00\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:21:26.887Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/da3523e8-83a2-4357-8a9c-522da650c7de?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2RhMzUyM2U4LTgzYTItNDM1Ny04YTljLTUyMmRhNjUwYzdkZT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/28b5b829-a14b-42cf-9ad6-8adfae85fa00?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzI4YjViODI5LWExNGItNDJjZi05YWQ2LThhZGZhZTg1ZmEwMD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -597,7 +786,7 @@ "1" ], "x-ms-request-id": [ - "f2987d8f-4479-4b3a-bbf5-98652a1db560" + "77666c29-4cfa-455a-9006-501afc72c102" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -606,10 +795,10 @@ "11997" ], "x-ms-correlation-request-id": [ - "e57af8b4-1fa7-48ee-bf0b-fd4c1ca62054" + "ef5d287a-13c0-4244-a0f5-d1414b007b31" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163231Z:e57af8b4-1fa7-48ee-bf0b-fd4c1ca62054" + "WESTUS:20200925T012129Z:ef5d287a-13c0-4244-a0f5-d1414b007b31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -618,10 +807,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:32:31 GMT" + "Fri, 25 Sep 2020 01:21:29 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -630,17 +819,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"da3523e8-83a2-4357-8a9c-522da650c7de\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T16:32:29.28Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"28b5b829-a14b-42cf-9ad6-8adfae85fa00\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:21:26.887Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/da3523e8-83a2-4357-8a9c-522da650c7de?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2RhMzUyM2U4LTgzYTItNDM1Ny04YTljLTUyMmRhNjUwYzdkZT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/28b5b829-a14b-42cf-9ad6-8adfae85fa00?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzI4YjViODI5LWExNGItNDJjZi05YWQ2LThhZGZhZTg1ZmEwMD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -657,7 +846,7 @@ "1" ], "x-ms-request-id": [ - "10634a92-74e0-4acd-8f10-4035483df38a" + "a85792e6-bc9e-4f7a-a036-5168056028ee" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -666,10 +855,10 @@ "11996" ], "x-ms-correlation-request-id": [ - "74475630-4bb0-433c-b524-3778ea1893d6" + "2f350cdc-efe1-4cb2-bc54-31567c52f818" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163233Z:74475630-4bb0-433c-b524-3778ea1893d6" + "WESTUS:20200925T012130Z:2f350cdc-efe1-4cb2-bc54-31567c52f818" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -678,10 +867,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:32:32 GMT" + "Fri, 25 Sep 2020 01:21:30 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -690,17 +879,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"da3523e8-83a2-4357-8a9c-522da650c7de\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T16:32:29.28Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"28b5b829-a14b-42cf-9ad6-8adfae85fa00\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:21:26.887Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/da3523e8-83a2-4357-8a9c-522da650c7de?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2RhMzUyM2U4LTgzYTItNDM1Ny04YTljLTUyMmRhNjUwYzdkZT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/28b5b829-a14b-42cf-9ad6-8adfae85fa00?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzI4YjViODI5LWExNGItNDJjZi05YWQ2LThhZGZhZTg1ZmEwMD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -717,7 +906,7 @@ "20" ], "x-ms-request-id": [ - "10a9a421-7d44-43d1-97cf-db1a80a99192" + "43ac15de-7ff3-4e42-b7c6-90851003eaf7" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -726,10 +915,10 @@ "11995" ], "x-ms-correlation-request-id": [ - "7346a3a8-58d0-4f0f-b5ce-fb610c28423d" + "15fd6013-1cf6-46f5-b782-17ed82836d86" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163234Z:7346a3a8-58d0-4f0f-b5ce-fb610c28423d" + "WESTUS:20200925T012132Z:15fd6013-1cf6-46f5-b782-17ed82836d86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -738,10 +927,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:32:33 GMT" + "Fri, 25 Sep 2020 01:21:31 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -750,17 +939,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"da3523e8-83a2-4357-8a9c-522da650c7de\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T16:32:29.28Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"28b5b829-a14b-42cf-9ad6-8adfae85fa00\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:21:26.887Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/da3523e8-83a2-4357-8a9c-522da650c7de?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2RhMzUyM2U4LTgzYTItNDM1Ny04YTljLTUyMmRhNjUwYzdkZT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/28b5b829-a14b-42cf-9ad6-8adfae85fa00?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzI4YjViODI5LWExNGItNDJjZi05YWQ2LThhZGZhZTg1ZmEwMD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -777,7 +966,7 @@ "20" ], "x-ms-request-id": [ - "8fec7ae0-fb28-4dc5-a070-81cc0a581ac2" + "a8195728-7d03-49ef-adbf-9512bf6e7264" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -786,10 +975,10 @@ "11994" ], "x-ms-correlation-request-id": [ - "3954dc07-6e3c-4709-b874-d061332a818a" + "11edf7ea-be69-4f48-bd9f-d1190a750d93" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163254Z:3954dc07-6e3c-4709-b874-d061332a818a" + "WESTUS:20200925T012152Z:11edf7ea-be69-4f48-bd9f-d1190a750d93" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -798,10 +987,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:32:53 GMT" + "Fri, 25 Sep 2020 01:21:51 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -810,17 +999,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"da3523e8-83a2-4357-8a9c-522da650c7de\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T16:32:29.28Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"28b5b829-a14b-42cf-9ad6-8adfae85fa00\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:21:26.887Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/da3523e8-83a2-4357-8a9c-522da650c7de?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2RhMzUyM2U4LTgzYTItNDM1Ny04YTljLTUyMmRhNjUwYzdkZT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/28b5b829-a14b-42cf-9ad6-8adfae85fa00?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzI4YjViODI5LWExNGItNDJjZi05YWQ2LThhZGZhZTg1ZmEwMD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -837,7 +1026,7 @@ "15" ], "x-ms-request-id": [ - "4520cc7d-9508-40d0-98b8-c38c3dd92f23" + "a2801d0f-41d8-42a1-abb1-76ce65aa1f49" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -846,10 +1035,10 @@ "11993" ], "x-ms-correlation-request-id": [ - "05c8def3-3dab-4f32-88b0-35ad92bb67ff" + "632493d3-431f-44ac-ac2e-93e3604764f3" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163314Z:05c8def3-3dab-4f32-88b0-35ad92bb67ff" + "WESTUS:20200925T012212Z:632493d3-431f-44ac-ac2e-93e3604764f3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -858,10 +1047,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:33:13 GMT" + "Fri, 25 Sep 2020 01:22:11 GMT" ], "Content-Length": [ - "106" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -870,23 +1059,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"da3523e8-83a2-4357-8a9c-522da650c7de\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-13T16:32:29.28Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"28b5b829-a14b-42cf-9ad6-8adfae85fa00\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-25T01:21:26.887Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/servers/ps888/databases/ps2917?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODg4L2RhdGFiYXNlcy9wczI5MTc/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/servers/ps2055/databases/ps8265?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjA1NS9kYXRhYmFzZXMvcHM4MjY1P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "36340ef2-47b0-4e0e-b55a-72b619909dd3" + "eab96617-82e7-4fdd-8cfe-2ad1c2d4a911" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -903,13 +1092,13 @@ "gateway" ], "x-ms-request-id": [ - "a2aa7455-629e-470f-b363-7bc35c320499" + "9b42cbd1-686c-458a-970a-48640b88c11d" ], "x-ms-correlation-request-id": [ - "a2aa7455-629e-470f-b363-7bc35c320499" + "9b42cbd1-686c-458a-970a-48640b88c11d" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163315Z:a2aa7455-629e-470f-b363-7bc35c320499" + "WESTUS:20200925T012213Z:9b42cbd1-686c-458a-970a-48640b88c11d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -918,7 +1107,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:33:14 GMT" + "Fri, 25 Sep 2020 01:22:12 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -927,20 +1116,20 @@ "-1" ], "Content-Length": [ - "222" + "223" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps888/databases/ps2917' under resource group 'ps1650' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps2055/databases/ps8265' under resource group 'ps1327' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/servers/ps888/databases/ps2917?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODg4L2RhdGFiYXNlcy9wczI5MTc/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/servers/ps2055/databases/ps8265?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjA1NS9kYXRhYmFzZXMvcHM4MjY1P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -954,19 +1143,19 @@ "no-cache" ], "x-ms-request-id": [ - "8914a6a7-d6a7-4e6c-a434-2edf9a603d6a" + "7c68abba-62ee-42db-ab72-9fd5103e2c86" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11984" ], "x-ms-correlation-request-id": [ - "9a1e9387-11dd-4b9e-a64e-febc7461f30e" + "24d9101b-d616-492c-ae8f-49f785f1d4ec" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163403Z:9a1e9387-11dd-4b9e-a64e-febc7461f30e" + "WESTUS:20200925T012315Z:24d9101b-d616-492c-ae8f-49f785f1d4ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -975,10 +1164,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:34:03 GMT" + "Fri, 25 Sep 2020 01:23:15 GMT" ], "Content-Length": [ - "856" + "865" ], "Content-Type": [ "application/json; charset=utf-8" @@ -987,23 +1176,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"19e54955-8682-46cd-979a-ba304f83d2a5\",\r\n \"creationDate\": \"2020-09-13T16:33:59Z\",\r\n \"currentServiceObjectiveName\": \"S0\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-13T17:03:59Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/servers/ps888/databases/ps2917\",\r\n \"name\": \"ps2917\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"b9069b43-922d-41c9-8142-969fecc431d8\",\r\n \"creationDate\": \"2020-09-25T01:23:01.823Z\",\r\n \"currentServiceObjectiveName\": \"S0\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-25T01:53:01.823Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/servers/ps2055/databases/ps8265\",\r\n \"name\": \"ps8265\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/servers/ps888/databases/ps2917?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODg4L2RhdGFiYXNlcy9wczI5MTc/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/servers/ps2055/databases/ps8265?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjA1NS9kYXRhYmFzZXMvcHM4MjY1P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "176b207e-63de-4610-8bdb-ae8355643c5c" + "9fb77607-0462-4589-b9cd-538633289818" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1017,19 +1206,19 @@ "no-cache" ], "x-ms-request-id": [ - "1f7e0cb9-d73e-4d62-aed7-6da427bf2a2c" + "3f403152-5101-4cee-994b-9642b31c5c73" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11982" ], "x-ms-correlation-request-id": [ - "8d1050a1-6fad-4745-bb81-75499aba59db" + "7fbf6854-c685-4dbb-a568-d319f610f8be" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163403Z:8d1050a1-6fad-4745-bb81-75499aba59db" + "WESTUS:20200925T012315Z:7fbf6854-c685-4dbb-a568-d319f610f8be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1038,10 +1227,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:34:03 GMT" + "Fri, 25 Sep 2020 01:23:15 GMT" ], "Content-Length": [ - "856" + "865" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1050,23 +1239,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"19e54955-8682-46cd-979a-ba304f83d2a5\",\r\n \"creationDate\": \"2020-09-13T16:33:59Z\",\r\n \"currentServiceObjectiveName\": \"S0\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-13T17:03:59Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/servers/ps888/databases/ps2917\",\r\n \"name\": \"ps2917\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"b9069b43-922d-41c9-8142-969fecc431d8\",\r\n \"creationDate\": \"2020-09-25T01:23:01.823Z\",\r\n \"currentServiceObjectiveName\": \"S0\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-25T01:53:01.823Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/servers/ps2055/databases/ps8265\",\r\n \"name\": \"ps8265\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/servers/ps888/databases/ps2917?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODg4L2RhdGFiYXNlcy9wczI5MTc/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/servers/ps2055/databases/ps8265?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjA1NS9kYXRhYmFzZXMvcHM4MjY1P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5e106eac-3308-40a4-885f-8b6580fdb479" + "6277898f-3c9f-42f1-9abb-875fd4dfacd8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1080,19 +1269,19 @@ "no-cache" ], "x-ms-request-id": [ - "3f1f3a41-6267-4fd5-bcda-5d5b3996d8bc" + "f4901845-56d0-4eb5-90fe-48f10986a7e7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11981" ], "x-ms-correlation-request-id": [ - "819f813a-a873-4dec-a3cd-05f668fe5183" + "f53624fa-8c3e-45fb-8d75-5f25469ac3a1" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163403Z:819f813a-a873-4dec-a3cd-05f668fe5183" + "WESTUS:20200925T012316Z:f53624fa-8c3e-45fb-8d75-5f25469ac3a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1101,10 +1290,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:34:03 GMT" + "Fri, 25 Sep 2020 01:23:16 GMT" ], "Content-Length": [ - "856" + "865" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1113,17 +1302,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"19e54955-8682-46cd-979a-ba304f83d2a5\",\r\n \"creationDate\": \"2020-09-13T16:33:59Z\",\r\n \"currentServiceObjectiveName\": \"S0\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-13T17:03:59Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/servers/ps888/databases/ps2917\",\r\n \"name\": \"ps2917\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"b9069b43-922d-41c9-8142-969fecc431d8\",\r\n \"creationDate\": \"2020-09-25T01:23:01.823Z\",\r\n \"currentServiceObjectiveName\": \"S0\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-25T01:53:01.823Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/servers/ps2055/databases/ps8265\",\r\n \"name\": \"ps8265\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/servers/ps888/databases/ps2917?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODg4L2RhdGFiYXNlcy9wczI5MTc/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/servers/ps2055/databases/ps8265?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjA1NS9kYXRhYmFzZXMvcHM4MjY1P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1137,19 +1326,19 @@ "no-cache" ], "x-ms-request-id": [ - "ac4f6073-f800-46e4-8626-ae1252656b24" + "501aab6a-6c14-4fd8-b9d2-d9060272135d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11977" ], "x-ms-correlation-request-id": [ - "4aa4a838-462b-4b16-ab80-3bd8f9bd1021" + "84ad30dc-c621-4542-af63-a3b61464c61f" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163451Z:4aa4a838-462b-4b16-ab80-3bd8f9bd1021" + "WESTUS:20200925T012402Z:84ad30dc-c621-4542-af63-a3b61464c61f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1158,10 +1347,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:34:51 GMT" + "Fri, 25 Sep 2020 01:24:02 GMT" ], "Content-Length": [ - "881" + "890" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1170,23 +1359,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 5\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 1073741824,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"19e54955-8682-46cd-979a-ba304f83d2a5\",\r\n \"creationDate\": \"2020-09-13T16:33:59Z\",\r\n \"currentServiceObjectiveName\": \"Basic\",\r\n \"requestedServiceObjectiveName\": \"Basic\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-13T17:03:59Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 5\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"tag_key\": \"tag_new_value\"\r\n },\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/servers/ps888/databases/ps2917\",\r\n \"name\": \"ps2917\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 5\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 1073741824,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"b9069b43-922d-41c9-8142-969fecc431d8\",\r\n \"creationDate\": \"2020-09-25T01:23:01.823Z\",\r\n \"currentServiceObjectiveName\": \"Basic\",\r\n \"requestedServiceObjectiveName\": \"Basic\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-25T01:53:01.823Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 5\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"tag_key\": \"tag_new_value\"\r\n },\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/servers/ps2055/databases/ps8265\",\r\n \"name\": \"ps8265\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/servers/ps888/databases/ps2917?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODg4L2RhdGFiYXNlcy9wczI5MTc/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/servers/ps2055/databases/ps8265?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjA1NS9kYXRhYmFzZXMvcHM4MjY1P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f822d244-959c-40ad-a41a-63e54d487ba4" + "466a63e5-0c89-4abc-9f0e-7631cb7ebbfc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1200,19 +1389,19 @@ "no-cache" ], "x-ms-request-id": [ - "567d25b8-f98a-47cb-84ef-025d037560f8" + "685e2876-f2c7-4437-a5e0-583050ad343a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11975" ], "x-ms-correlation-request-id": [ - "d66da483-979b-4763-8aca-7ad7862d997f" + "0313d4e6-ce17-4dd9-9b6c-ebb2a5ccf9d2" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163452Z:d66da483-979b-4763-8aca-7ad7862d997f" + "WESTUS:20200925T012403Z:0313d4e6-ce17-4dd9-9b6c-ebb2a5ccf9d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1221,10 +1410,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:34:51 GMT" + "Fri, 25 Sep 2020 01:24:02 GMT" ], "Content-Length": [ - "881" + "890" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1233,23 +1422,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 5\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 1073741824,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"19e54955-8682-46cd-979a-ba304f83d2a5\",\r\n \"creationDate\": \"2020-09-13T16:33:59Z\",\r\n \"currentServiceObjectiveName\": \"Basic\",\r\n \"requestedServiceObjectiveName\": \"Basic\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-13T17:03:59Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 5\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"tag_key\": \"tag_new_value\"\r\n },\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/servers/ps888/databases/ps2917\",\r\n \"name\": \"ps2917\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 5\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 1073741824,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"b9069b43-922d-41c9-8142-969fecc431d8\",\r\n \"creationDate\": \"2020-09-25T01:23:01.823Z\",\r\n \"currentServiceObjectiveName\": \"Basic\",\r\n \"requestedServiceObjectiveName\": \"Basic\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-25T01:53:01.823Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 5\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"tag_key\": \"tag_new_value\"\r\n },\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/servers/ps2055/databases/ps8265\",\r\n \"name\": \"ps8265\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/servers/ps888/databases/ps2917?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODg4L2RhdGFiYXNlcy9wczI5MTc/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/servers/ps2055/databases/ps8265?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjA1NS9kYXRhYmFzZXMvcHM4MjY1P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5c847275-9b5e-4baa-bc7d-b5d4f32a59ae" + "ff1e498d-0106-4a3a-969e-abe1947c3f49" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1263,19 +1452,19 @@ "no-cache" ], "x-ms-request-id": [ - "61e8fa17-9f5c-49c3-9285-d4d187ca3a4f" + "3fb9d1e6-a1e6-4883-a98a-738c873e777f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11974" ], "x-ms-correlation-request-id": [ - "87ddb8a7-a468-4273-9007-8c266fb91fd8" + "057f8f06-7c7b-46b9-ba04-6debca1e6354" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163452Z:87ddb8a7-a468-4273-9007-8c266fb91fd8" + "WESTUS:20200925T012403Z:057f8f06-7c7b-46b9-ba04-6debca1e6354" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1284,10 +1473,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:34:51 GMT" + "Fri, 25 Sep 2020 01:24:02 GMT" ], "Content-Length": [ - "881" + "890" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1296,17 +1485,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 5\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 1073741824,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"19e54955-8682-46cd-979a-ba304f83d2a5\",\r\n \"creationDate\": \"2020-09-13T16:33:59Z\",\r\n \"currentServiceObjectiveName\": \"Basic\",\r\n \"requestedServiceObjectiveName\": \"Basic\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-13T17:03:59Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 5\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"tag_key\": \"tag_new_value\"\r\n },\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/servers/ps888/databases/ps2917\",\r\n \"name\": \"ps2917\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 5\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 1073741824,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"b9069b43-922d-41c9-8142-969fecc431d8\",\r\n \"creationDate\": \"2020-09-25T01:23:01.823Z\",\r\n \"currentServiceObjectiveName\": \"Basic\",\r\n \"requestedServiceObjectiveName\": \"Basic\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-25T01:53:01.823Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 5\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"tag_key\": \"tag_new_value\"\r\n },\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/servers/ps2055/databases/ps8265\",\r\n \"name\": \"ps8265\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/servers/ps888/databases/ps2917?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODg4L2RhdGFiYXNlcy9wczI5MTc/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/servers/ps2055/databases/ps8265?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjA1NS9kYXRhYmFzZXMvcHM4MjY1P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1320,19 +1509,19 @@ "no-cache" ], "x-ms-request-id": [ - "8ef19e89-00a5-4b4a-abfb-63dd0b7ddeed" + "e9cf3cce-93b1-4721-900d-882518565930" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11970" ], "x-ms-correlation-request-id": [ - "43cd76d9-7297-4292-aa72-c7c000a66c6d" + "93a7d62b-1319-4cfd-b2c6-9cb070308168" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163539Z:43cd76d9-7297-4292-aa72-c7c000a66c6d" + "WESTUS:20200925T012449Z:93a7d62b-1319-4cfd-b2c6-9cb070308168" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1341,10 +1530,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:35:38 GMT" + "Fri, 25 Sep 2020 01:24:48 GMT" ], "Content-Length": [ - "892" + "901" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1353,23 +1542,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 20\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 107374182400,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"19e54955-8682-46cd-979a-ba304f83d2a5\",\r\n \"creationDate\": \"2020-09-13T16:33:59Z\",\r\n \"currentServiceObjectiveName\": \"S1\",\r\n \"requestedServiceObjectiveName\": \"S1\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-13T17:03:59Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 20\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"tag_key\": \"tag_new_value2\"\r\n },\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/servers/ps888/databases/ps2917\",\r\n \"name\": \"ps2917\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 20\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 107374182400,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"b9069b43-922d-41c9-8142-969fecc431d8\",\r\n \"creationDate\": \"2020-09-25T01:23:01.823Z\",\r\n \"currentServiceObjectiveName\": \"S1\",\r\n \"requestedServiceObjectiveName\": \"S1\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-25T01:53:01.823Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 20\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"tag_key\": \"tag_new_value2\"\r\n },\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/servers/ps2055/databases/ps8265\",\r\n \"name\": \"ps8265\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/servers/ps888/databases/ps2917?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODg4L2RhdGFiYXNlcy9wczI5MTc/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/servers/ps2055/databases/ps8265?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjA1NS9kYXRhYmFzZXMvcHM4MjY1P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"maxSizeBytes\": 268435456000,\r\n \"readScale\": \"\"\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1f81e658-d4ec-4c75-aac8-835baad3c1fe" + "1681bde6-9833-4cf5-b37e-b94ccaeefe17" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1389,16 +1578,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/locations/southeastasia/databaseOperationResults/6d16be47-6666-45d1-8326-0b9cedf4aed5?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/locations/southeastasia/databaseOperationResults/c375ba78-2519-48c6-9c1b-8a4ebb692d13?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/6d16be47-6666-45d1-8326-0b9cedf4aed5?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/c375ba78-2519-48c6-9c1b-8a4ebb692d13?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "6d16be47-6666-45d1-8326-0b9cedf4aed5" + "c375ba78-2519-48c6-9c1b-8a4ebb692d13" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1407,10 +1596,10 @@ "1198" ], "x-ms-correlation-request-id": [ - "29494dc9-392e-4c17-9bc9-cb78869d58eb" + "f1285b2a-3b57-4ca8-b7af-1c08d169585f" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163316Z:29494dc9-392e-4c17-9bc9-cb78869d58eb" + "WESTUS:20200925T012214Z:f1285b2a-3b57-4ca8-b7af-1c08d169585f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1419,10 +1608,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:33:15 GMT" + "Fri, 25 Sep 2020 01:22:13 GMT" ], "Content-Length": [ - "75" + "76" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1431,23 +1620,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2020-09-13T16:33:16.36Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2020-09-25T01:22:13.887Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/servers/ps888/databases/ps2917?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODg4L2RhdGFiYXNlcy9wczI5MTc/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/servers/ps2055/databases/ps8265?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjA1NS9kYXRhYmFzZXMvcHM4MjY1P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"maxSizeBytes\": 1073741824,\r\n \"readScale\": \"Disabled\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"tag_key\": \"tag_new_value\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c4e73dec-f432-40e3-bf18-166b381b91e8" + "05874f5b-2b69-4f10-8487-ba4fa84ef538" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1467,16 +1656,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/locations/southeastasia/databaseOperationResults/bf6da168-6c01-49b3-aa5e-b13a3d885c58?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/locations/southeastasia/databaseOperationResults/f6f37e16-2ee3-4eed-a938-a7c4af190394?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/bf6da168-6c01-49b3-aa5e-b13a3d885c58?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/f6f37e16-2ee3-4eed-a938-a7c4af190394?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "bf6da168-6c01-49b3-aa5e-b13a3d885c58" + "f6f37e16-2ee3-4eed-a938-a7c4af190394" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1485,10 +1674,10 @@ "1197" ], "x-ms-correlation-request-id": [ - "aca185a9-8d5f-4f52-9172-d6e23ad7cbe2" + "5ee8048b-ba64-4137-a22e-73d9dbc507fb" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163405Z:aca185a9-8d5f-4f52-9172-d6e23ad7cbe2" + "WESTUS:20200925T012316Z:5ee8048b-ba64-4137-a22e-73d9dbc507fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1497,7 +1686,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:34:05 GMT" + "Fri, 25 Sep 2020 01:23:16 GMT" ], "Content-Length": [ "76" @@ -1509,23 +1698,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-09-13T16:34:05.577Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-09-25T01:23:16.533Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/servers/ps888/databases/ps2917?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODg4L2RhdGFiYXNlcy9wczI5MTc/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/servers/ps2055/databases/ps8265?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjA1NS9kYXRhYmFzZXMvcHM4MjY1P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"maxSizeBytes\": 107374182400,\r\n \"readScale\": \"Disabled\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"tag_key\": \"tag_new_value2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e6a98d20-4b89-447c-b820-affb0a41be0b" + "22c24de2-e203-4a24-845c-a43bf62a94ee" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1545,16 +1734,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/locations/southeastasia/databaseOperationResults/93000144-dedc-4527-9f7f-1fb70dff204c?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/locations/southeastasia/databaseOperationResults/8134dc4a-aeb4-4ac9-8629-6266c3eef414?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/93000144-dedc-4527-9f7f-1fb70dff204c?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/8134dc4a-aeb4-4ac9-8629-6266c3eef414?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "93000144-dedc-4527-9f7f-1fb70dff204c" + "8134dc4a-aeb4-4ac9-8629-6266c3eef414" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1563,10 +1752,10 @@ "1196" ], "x-ms-correlation-request-id": [ - "9e9ca744-fd16-4651-b247-fd68a622e255" + "d1c7a0ab-5978-4bc8-a32a-bc4a8bbaacac" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163453Z:9e9ca744-fd16-4651-b247-fd68a622e255" + "WESTUS:20200925T012403Z:d1c7a0ab-5978-4bc8-a32a-bc4a8bbaacac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1575,7 +1764,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:34:52 GMT" + "Fri, 25 Sep 2020 01:24:03 GMT" ], "Content-Length": [ "76" @@ -1587,17 +1776,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-09-13T16:34:52.753Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-09-25T01:24:03.557Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/6d16be47-6666-45d1-8326-0b9cedf4aed5?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNmQxNmJlNDctNjY2Ni00NWQxLTgzMjYtMGI5Y2VkZjRhZWQ1P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/c375ba78-2519-48c6-9c1b-8a4ebb692d13?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYzM3NWJhNzgtMjUxOS00OGM2LTljMWItOGE0ZWJiNjkyZDEzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1614,7 +1803,7 @@ "15" ], "x-ms-request-id": [ - "47259710-8ffd-4001-825c-bcbc9c4c408b" + "93f61eff-bfdd-4f2d-b9af-2d12661b4669" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1623,10 +1812,10 @@ "11988" ], "x-ms-correlation-request-id": [ - "dfc84b58-72e8-440c-8499-59c548d9cbe1" + "713d3a75-d060-49f0-bf8e-a21c21379cf8" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163331Z:dfc84b58-72e8-440c-8499-59c548d9cbe1" + "WESTUS:20200925T012229Z:713d3a75-d060-49f0-bf8e-a21c21379cf8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1635,10 +1824,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:33:31 GMT" + "Fri, 25 Sep 2020 01:22:28 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1647,17 +1836,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"6d16be47-6666-45d1-8326-0b9cedf4aed5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T16:33:16.36Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"c375ba78-2519-48c6-9c1b-8a4ebb692d13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:22:13.887Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/6d16be47-6666-45d1-8326-0b9cedf4aed5?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNmQxNmJlNDctNjY2Ni00NWQxLTgzMjYtMGI5Y2VkZjRhZWQ1P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/c375ba78-2519-48c6-9c1b-8a4ebb692d13?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYzM3NWJhNzgtMjUxOS00OGM2LTljMWItOGE0ZWJiNjkyZDEzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1674,7 +1863,7 @@ "15" ], "x-ms-request-id": [ - "51d11ab1-d4d5-4e83-a5b1-25482f959044" + "2d7a3b66-2846-4247-83ee-46af28128236" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1683,10 +1872,10 @@ "11987" ], "x-ms-correlation-request-id": [ - "7349758c-77a7-4013-86bf-f60335fddead" + "9769e278-051d-499f-aa76-92f2a620e82c" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163347Z:7349758c-77a7-4013-86bf-f60335fddead" + "WESTUS:20200925T012244Z:9769e278-051d-499f-aa76-92f2a620e82c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1695,10 +1884,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:33:47 GMT" + "Fri, 25 Sep 2020 01:22:43 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1707,17 +1896,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"6d16be47-6666-45d1-8326-0b9cedf4aed5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T16:33:16.36Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"c375ba78-2519-48c6-9c1b-8a4ebb692d13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:22:13.887Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/6d16be47-6666-45d1-8326-0b9cedf4aed5?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNmQxNmJlNDctNjY2Ni00NWQxLTgzMjYtMGI5Y2VkZjRhZWQ1P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/c375ba78-2519-48c6-9c1b-8a4ebb692d13?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYzM3NWJhNzgtMjUxOS00OGM2LTljMWItOGE0ZWJiNjkyZDEzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1734,7 +1923,7 @@ "15" ], "x-ms-request-id": [ - "f2e20d3c-57ec-446b-bce1-2d77f09a5fa9" + "66728d3c-2e11-4330-9e7f-1fbd14850734" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1743,10 +1932,10 @@ "11986" ], "x-ms-correlation-request-id": [ - "135a0a6c-562b-417e-9934-e783fbe3ad4d" + "b8afcf83-6f4a-4bd2-80e8-5e3ce3d8cd35" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163402Z:135a0a6c-562b-417e-9934-e783fbe3ad4d" + "WESTUS:20200925T012259Z:b8afcf83-6f4a-4bd2-80e8-5e3ce3d8cd35" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1755,10 +1944,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:34:02 GMT" + "Fri, 25 Sep 2020 01:22:59 GMT" ], "Content-Length": [ - "106" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1767,17 +1956,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"6d16be47-6666-45d1-8326-0b9cedf4aed5\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-13T16:33:16.36Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"c375ba78-2519-48c6-9c1b-8a4ebb692d13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:22:13.887Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/bf6da168-6c01-49b3-aa5e-b13a3d885c58?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYmY2ZGExNjgtNmMwMS00OWIzLWFhNWUtYjEzYTNkODg1YzU4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/c375ba78-2519-48c6-9c1b-8a4ebb692d13?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYzM3NWJhNzgtMjUxOS00OGM2LTljMWItOGE0ZWJiNjkyZDEzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1794,19 +1983,79 @@ "15" ], "x-ms-request-id": [ - "602fd31e-e5b3-4467-90ef-2814fc89418b" + "89f1632a-ebf5-4bea-addf-2409ceebf779" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11985" + ], + "x-ms-correlation-request-id": [ + "8790e85b-149b-44cb-9098-795eaa80b8b8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200925T012315Z:8790e85b-149b-44cb-9098-795eaa80b8b8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 25 Sep 2020 01:23:15 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"c375ba78-2519-48c6-9c1b-8a4ebb692d13\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-25T01:22:13.887Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/f6f37e16-2ee3-4eed-a938-a7c4af190394?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZjZmMzdlMTYtMmVlMy00ZWVkLWE5MzgtYTdjNGFmMTkwMzk0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "8f5af4f6-7bd3-42a0-b276-1375d494b9fb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" ], "x-ms-correlation-request-id": [ - "734401bf-2036-4e54-873b-0f08bb5f89f6" + "91ac9b41-1ed4-45c8-8fbd-b39c9cb529dc" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163421Z:734401bf-2036-4e54-873b-0f08bb5f89f6" + "WESTUS:20200925T012331Z:91ac9b41-1ed4-45c8-8fbd-b39c9cb529dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1815,7 +2064,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:34:20 GMT" + "Fri, 25 Sep 2020 01:23:31 GMT" ], "Content-Length": [ "108" @@ -1827,17 +2076,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"bf6da168-6c01-49b3-aa5e-b13a3d885c58\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T16:34:05.577Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"f6f37e16-2ee3-4eed-a938-a7c4af190394\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:23:16.533Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/bf6da168-6c01-49b3-aa5e-b13a3d885c58?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYmY2ZGExNjgtNmMwMS00OWIzLWFhNWUtYjEzYTNkODg1YzU4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/f6f37e16-2ee3-4eed-a938-a7c4af190394?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZjZmMzdlMTYtMmVlMy00ZWVkLWE5MzgtYTdjNGFmMTkwMzk0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1854,19 +2103,19 @@ "15" ], "x-ms-request-id": [ - "b20ea515-ff52-433d-a8b2-5d91baf08363" + "261da01b-d5ff-4ee3-abac-eda080878a69" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11979" ], "x-ms-correlation-request-id": [ - "7221ed21-d747-4349-800d-5aea75944454" + "c547c80f-5bf7-46aa-844e-ed3fb997793a" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163436Z:7221ed21-d747-4349-800d-5aea75944454" + "WESTUS:20200925T012347Z:c547c80f-5bf7-46aa-844e-ed3fb997793a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1875,7 +2124,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:34:35 GMT" + "Fri, 25 Sep 2020 01:23:46 GMT" ], "Content-Length": [ "108" @@ -1887,17 +2136,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"bf6da168-6c01-49b3-aa5e-b13a3d885c58\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T16:34:05.577Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"f6f37e16-2ee3-4eed-a938-a7c4af190394\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:23:16.533Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/bf6da168-6c01-49b3-aa5e-b13a3d885c58?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYmY2ZGExNjgtNmMwMS00OWIzLWFhNWUtYjEzYTNkODg1YzU4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/f6f37e16-2ee3-4eed-a938-a7c4af190394?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZjZmMzdlMTYtMmVlMy00ZWVkLWE5MzgtYTdjNGFmMTkwMzk0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1914,19 +2163,19 @@ "15" ], "x-ms-request-id": [ - "ea230964-e7b9-4cc8-9a5c-510c606d7e8f" + "1420b5b1-4136-4224-9ddb-e79f6275b676" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11978" ], "x-ms-correlation-request-id": [ - "c2f03021-2687-4ba2-8897-9e538ad4833c" + "3adb7017-731a-4c51-8f8b-eebe42e4ecd2" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163451Z:c2f03021-2687-4ba2-8897-9e538ad4833c" + "WESTUS:20200925T012402Z:3adb7017-731a-4c51-8f8b-eebe42e4ecd2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1935,7 +2184,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:34:51 GMT" + "Fri, 25 Sep 2020 01:24:01 GMT" ], "Content-Length": [ "107" @@ -1947,17 +2196,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"bf6da168-6c01-49b3-aa5e-b13a3d885c58\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-13T16:34:05.577Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"f6f37e16-2ee3-4eed-a938-a7c4af190394\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-25T01:23:16.533Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/93000144-dedc-4527-9f7f-1fb70dff204c?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vOTMwMDAxNDQtZGVkYy00NTI3LTlmN2YtMWZiNzBkZmYyMDRjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/8134dc4a-aeb4-4ac9-8629-6266c3eef414?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vODEzNGRjNGEtYWViNC00YWM5LTg2MjktNjI2NmMzZWVmNDE0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1974,19 +2223,19 @@ "15" ], "x-ms-request-id": [ - "af9c3096-db25-4bce-a39c-ce5b3be11d9d" + "6b2e0998-f18e-4d3b-9c32-f13814534e51" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11973" ], "x-ms-correlation-request-id": [ - "8a2eaacb-3748-422a-b5a9-5dafe0d74929" + "e8dd4354-d634-4a38-8d48-461b35dde950" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163508Z:8a2eaacb-3748-422a-b5a9-5dafe0d74929" + "WESTUS:20200925T012418Z:e8dd4354-d634-4a38-8d48-461b35dde950" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1995,7 +2244,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:35:07 GMT" + "Fri, 25 Sep 2020 01:24:18 GMT" ], "Content-Length": [ "108" @@ -2007,17 +2256,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"93000144-dedc-4527-9f7f-1fb70dff204c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T16:34:52.753Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"8134dc4a-aeb4-4ac9-8629-6266c3eef414\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:24:03.557Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/93000144-dedc-4527-9f7f-1fb70dff204c?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vOTMwMDAxNDQtZGVkYy00NTI3LTlmN2YtMWZiNzBkZmYyMDRjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/8134dc4a-aeb4-4ac9-8629-6266c3eef414?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vODEzNGRjNGEtYWViNC00YWM5LTg2MjktNjI2NmMzZWVmNDE0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2034,19 +2283,19 @@ "15" ], "x-ms-request-id": [ - "0d828fca-6d10-4769-9958-914714d1a5b9" + "bf5e98f0-8409-4d96-8d8e-ad77a12fd4f4" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11972" ], "x-ms-correlation-request-id": [ - "3e5d4d63-c7c4-41f2-ba6c-344cccaff5ee" + "4f9d2794-d8ae-47f9-8be4-957147ab8698" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163523Z:3e5d4d63-c7c4-41f2-ba6c-344cccaff5ee" + "WESTUS:20200925T012434Z:4f9d2794-d8ae-47f9-8be4-957147ab8698" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2055,7 +2304,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:35:22 GMT" + "Fri, 25 Sep 2020 01:24:33 GMT" ], "Content-Length": [ "108" @@ -2067,17 +2316,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"93000144-dedc-4527-9f7f-1fb70dff204c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T16:34:52.753Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"8134dc4a-aeb4-4ac9-8629-6266c3eef414\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:24:03.557Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/93000144-dedc-4527-9f7f-1fb70dff204c?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vOTMwMDAxNDQtZGVkYy00NTI3LTlmN2YtMWZiNzBkZmYyMDRjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/8134dc4a-aeb4-4ac9-8629-6266c3eef414?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vODEzNGRjNGEtYWViNC00YWM5LTg2MjktNjI2NmMzZWVmNDE0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2094,19 +2343,19 @@ "15" ], "x-ms-request-id": [ - "f2dc9f7e-d541-4321-a695-844da84b19f1" + "d7ec75a0-40f0-465e-b8f4-bf3440bca7f6" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11971" ], "x-ms-correlation-request-id": [ - "72d27c2e-22b5-4eb7-ae2b-be6e5bf57605" + "0722f4dd-0308-421e-866c-bd37a77fc681" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163538Z:72d27c2e-22b5-4eb7-ae2b-be6e5bf57605" + "WESTUS:20200925T012449Z:0722f4dd-0308-421e-866c-bd37a77fc681" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2115,7 +2364,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:35:37 GMT" + "Fri, 25 Sep 2020 01:24:48 GMT" ], "Content-Length": [ "107" @@ -2127,23 +2376,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"93000144-dedc-4527-9f7f-1fb70dff204c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-13T16:34:52.753Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"8134dc4a-aeb4-4ac9-8629-6266c3eef414\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-25T01:24:03.557Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/servers/ps888/databases/ps5269?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODg4L2RhdGFiYXNlcy9wczUyNjk/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/servers/ps2055/databases/ps5543?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjA1NS9kYXRhYmFzZXMvcHM1NTQzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3c0a52d3-dbb0-4a02-bd19-c0a6a1b6b253" + "a27fa1a8-ee6d-4ddb-927f-1d0146e9471d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2160,13 +2409,13 @@ "gateway" ], "x-ms-request-id": [ - "7adf7836-6342-47a6-a884-ea3caf457081" + "c1ad4cb9-42ca-41d7-9c42-961669f35f1b" ], "x-ms-correlation-request-id": [ - "7adf7836-6342-47a6-a884-ea3caf457081" + "c1ad4cb9-42ca-41d7-9c42-961669f35f1b" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163539Z:7adf7836-6342-47a6-a884-ea3caf457081" + "WESTUS:20200925T012449Z:c1ad4cb9-42ca-41d7-9c42-961669f35f1b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2175,7 +2424,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:35:38 GMT" + "Fri, 25 Sep 2020 01:24:49 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2184,20 +2433,20 @@ "-1" ], "Content-Length": [ - "222" + "223" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps888/databases/ps5269' under resource group 'ps1650' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps2055/databases/ps5543' under resource group 'ps1327' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/servers/ps888/databases/ps5269?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODg4L2RhdGFiYXNlcy9wczUyNjk/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/servers/ps2055/databases/ps5543?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjA1NS9kYXRhYmFzZXMvcHM1NTQzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2211,19 +2460,19 @@ "no-cache" ], "x-ms-request-id": [ - "8b4fde32-c51c-479f-a20f-67aa6766ffdf" + "5e462200-d42e-448b-8142-41cfc3970905" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11959" ], "x-ms-correlation-request-id": [ - "fc56d215-f6d4-4b67-bf7f-c48057892e31" + "bcd90c72-6d53-4716-869d-1596501c3055" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163712Z:fc56d215-f6d4-4b67-bf7f-c48057892e31" + "WESTUS:20200925T012639Z:bcd90c72-6d53-4716-869d-1596501c3055" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2232,10 +2481,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:37:11 GMT" + "Fri, 25 Sep 2020 01:26:38 GMT" ], "Content-Length": [ - "834" + "836" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2244,23 +2493,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"DataWarehouse\",\r\n \"tier\": \"DataWarehouse\",\r\n \"capacity\": 750\r\n },\r\n \"kind\": \"v12.0,user,datawarehouse\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"cace53e9-6b40-46e7-8179-4f0a1523b9c3\",\r\n \"creationDate\": \"2020-09-13T16:37:07.71Z\",\r\n \"currentServiceObjectiveName\": \"DW100\",\r\n \"requestedServiceObjectiveName\": \"DW100\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"DataWarehouse\",\r\n \"tier\": \"DataWarehouse\",\r\n \"capacity\": 750\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/servers/ps888/databases/ps5269\",\r\n \"name\": \"ps5269\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"DataWarehouse\",\r\n \"tier\": \"DataWarehouse\",\r\n \"capacity\": 750\r\n },\r\n \"kind\": \"v12.0,user,datawarehouse\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"570246b1-95ad-4330-98d2-1ec9921c35d3\",\r\n \"creationDate\": \"2020-09-25T01:26:28.123Z\",\r\n \"currentServiceObjectiveName\": \"DW100\",\r\n \"requestedServiceObjectiveName\": \"DW100\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"DataWarehouse\",\r\n \"tier\": \"DataWarehouse\",\r\n \"capacity\": 750\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/servers/ps2055/databases/ps5543\",\r\n \"name\": \"ps5543\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/servers/ps888/databases/ps5269?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODg4L2RhdGFiYXNlcy9wczUyNjk/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/servers/ps2055/databases/ps5543?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjA1NS9kYXRhYmFzZXMvcHM1NTQzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e2d3ce32-0ffd-42b9-a78e-c73349be2488" + "1b7491b6-e4d0-47b0-8ca4-1c38fa6e72bb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2274,19 +2523,19 @@ "no-cache" ], "x-ms-request-id": [ - "262e3e34-23bb-40bf-b319-9e56a1bf1654" + "b5338c85-f8bc-4db6-88f0-7f756acaf3f4" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" + "11957" ], "x-ms-correlation-request-id": [ - "ac1b0d64-8e22-47e5-ad76-ddc1e4de25c1" + "4afc24e6-9a97-4229-b4a7-f6c731baf22a" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163712Z:ac1b0d64-8e22-47e5-ad76-ddc1e4de25c1" + "WESTUS:20200925T012639Z:4afc24e6-9a97-4229-b4a7-f6c731baf22a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2295,10 +2544,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:37:12 GMT" + "Fri, 25 Sep 2020 01:26:39 GMT" ], "Content-Length": [ - "834" + "836" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2307,23 +2556,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"DataWarehouse\",\r\n \"tier\": \"DataWarehouse\",\r\n \"capacity\": 750\r\n },\r\n \"kind\": \"v12.0,user,datawarehouse\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"cace53e9-6b40-46e7-8179-4f0a1523b9c3\",\r\n \"creationDate\": \"2020-09-13T16:37:07.71Z\",\r\n \"currentServiceObjectiveName\": \"DW100\",\r\n \"requestedServiceObjectiveName\": \"DW100\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"DataWarehouse\",\r\n \"tier\": \"DataWarehouse\",\r\n \"capacity\": 750\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/servers/ps888/databases/ps5269\",\r\n \"name\": \"ps5269\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"DataWarehouse\",\r\n \"tier\": \"DataWarehouse\",\r\n \"capacity\": 750\r\n },\r\n \"kind\": \"v12.0,user,datawarehouse\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"570246b1-95ad-4330-98d2-1ec9921c35d3\",\r\n \"creationDate\": \"2020-09-25T01:26:28.123Z\",\r\n \"currentServiceObjectiveName\": \"DW100\",\r\n \"requestedServiceObjectiveName\": \"DW100\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"DataWarehouse\",\r\n \"tier\": \"DataWarehouse\",\r\n \"capacity\": 750\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/servers/ps2055/databases/ps5543\",\r\n \"name\": \"ps5543\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/servers/ps888/databases/ps5269?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODg4L2RhdGFiYXNlcy9wczUyNjk/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/servers/ps2055/databases/ps5543?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjA1NS9kYXRhYmFzZXMvcHM1NTQzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "25514b5d-8ffc-46b2-bb7a-c5345a073a0f" + "36f6ab25-81c1-4fbb-ae0f-9c0a57dfc2e8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2337,19 +2586,19 @@ "no-cache" ], "x-ms-request-id": [ - "a36c012b-740e-4f63-af1d-b7ea51120f58" + "0972842f-d277-43cd-9cf1-6841ad631bc0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" + "11956" ], "x-ms-correlation-request-id": [ - "086e0a21-6863-492a-bb20-7ce8b56834fb" + "8895caf6-ca61-4bf1-b740-a9ae24db8a62" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163712Z:086e0a21-6863-492a-bb20-7ce8b56834fb" + "WESTUS:20200925T012639Z:8895caf6-ca61-4bf1-b740-a9ae24db8a62" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2358,10 +2607,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:37:12 GMT" + "Fri, 25 Sep 2020 01:26:39 GMT" ], "Content-Length": [ - "834" + "836" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2370,17 +2619,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"DataWarehouse\",\r\n \"tier\": \"DataWarehouse\",\r\n \"capacity\": 750\r\n },\r\n \"kind\": \"v12.0,user,datawarehouse\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"cace53e9-6b40-46e7-8179-4f0a1523b9c3\",\r\n \"creationDate\": \"2020-09-13T16:37:07.71Z\",\r\n \"currentServiceObjectiveName\": \"DW100\",\r\n \"requestedServiceObjectiveName\": \"DW100\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"DataWarehouse\",\r\n \"tier\": \"DataWarehouse\",\r\n \"capacity\": 750\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/servers/ps888/databases/ps5269\",\r\n \"name\": \"ps5269\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"DataWarehouse\",\r\n \"tier\": \"DataWarehouse\",\r\n \"capacity\": 750\r\n },\r\n \"kind\": \"v12.0,user,datawarehouse\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"570246b1-95ad-4330-98d2-1ec9921c35d3\",\r\n \"creationDate\": \"2020-09-25T01:26:28.123Z\",\r\n \"currentServiceObjectiveName\": \"DW100\",\r\n \"requestedServiceObjectiveName\": \"DW100\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"DataWarehouse\",\r\n \"tier\": \"DataWarehouse\",\r\n \"capacity\": 750\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/servers/ps2055/databases/ps5543\",\r\n \"name\": \"ps5543\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/servers/ps888/databases/ps5269?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODg4L2RhdGFiYXNlcy9wczUyNjk/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/servers/ps2055/databases/ps5543?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjA1NS9kYXRhYmFzZXMvcHM1NTQzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2394,19 +2643,19 @@ "no-cache" ], "x-ms-request-id": [ - "9ea7ca00-fb2c-478e-88ab-4dbab4e006aa" + "579b0ff7-424e-4a11-b28b-bd07ef6551ce" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11951" + "11946" ], "x-ms-correlation-request-id": [ - "bb9ae084-02a1-438b-8e10-0fc466fc6f49" + "5cf8d6ad-96c2-4949-849f-dddbc34f1533" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163930Z:bb9ae084-02a1-438b-8e10-0fc466fc6f49" + "WESTUS:20200925T012857Z:5cf8d6ad-96c2-4949-849f-dddbc34f1533" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2415,10 +2664,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:39:30 GMT" + "Fri, 25 Sep 2020 01:28:57 GMT" ], "Content-Length": [ - "836" + "838" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2427,23 +2676,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"DataWarehouse\",\r\n \"tier\": \"DataWarehouse\",\r\n \"capacity\": 1500\r\n },\r\n \"kind\": \"v12.0,user,datawarehouse\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"cace53e9-6b40-46e7-8179-4f0a1523b9c3\",\r\n \"creationDate\": \"2020-09-13T16:37:07.71Z\",\r\n \"currentServiceObjectiveName\": \"DW200\",\r\n \"requestedServiceObjectiveName\": \"DW200\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"DataWarehouse\",\r\n \"tier\": \"DataWarehouse\",\r\n \"capacity\": 1500\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/servers/ps888/databases/ps5269\",\r\n \"name\": \"ps5269\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"DataWarehouse\",\r\n \"tier\": \"DataWarehouse\",\r\n \"capacity\": 1500\r\n },\r\n \"kind\": \"v12.0,user,datawarehouse\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"570246b1-95ad-4330-98d2-1ec9921c35d3\",\r\n \"creationDate\": \"2020-09-25T01:26:28.123Z\",\r\n \"currentServiceObjectiveName\": \"DW200\",\r\n \"requestedServiceObjectiveName\": \"DW200\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"DataWarehouse\",\r\n \"tier\": \"DataWarehouse\",\r\n \"capacity\": 1500\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/servers/ps2055/databases/ps5543\",\r\n \"name\": \"ps5543\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/servers/ps888/databases/ps5269?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODg4L2RhdGFiYXNlcy9wczUyNjk/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/servers/ps2055/databases/ps5543?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjA1NS9kYXRhYmFzZXMvcHM1NTQzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"DW100\",\r\n \"tier\": \"DataWarehouse\"\r\n },\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"readScale\": \"\"\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "83692a5f-9575-4cf9-97e6-e262aa66d766" + "fc548fc5-757b-4e2c-be68-ab7cc2b43c14" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2463,16 +2712,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/locations/southeastasia/databaseOperationResults/e7eb1108-65d2-4da1-9400-39f3133adf13?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/locations/southeastasia/databaseOperationResults/98e80700-a8de-464b-a714-03902250b27a?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/e7eb1108-65d2-4da1-9400-39f3133adf13?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/98e80700-a8de-464b-a714-03902250b27a?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "e7eb1108-65d2-4da1-9400-39f3133adf13" + "98e80700-a8de-464b-a714-03902250b27a" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2481,10 +2730,10 @@ "1195" ], "x-ms-correlation-request-id": [ - "aaa8807a-d601-43e2-9729-6e01203c31a1" + "ca4e52b6-318d-4d71-a653-47f4274dcd8e" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163540Z:aaa8807a-d601-43e2-9729-6e01203c31a1" + "WESTUS:20200925T012451Z:ca4e52b6-318d-4d71-a653-47f4274dcd8e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2493,7 +2742,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:35:39 GMT" + "Fri, 25 Sep 2020 01:24:50 GMT" ], "Content-Length": [ "75" @@ -2505,23 +2754,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2020-09-13T16:35:40.32Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2020-09-25T01:24:50.98Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/servers/ps888/databases/ps5269?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODg4L2RhdGFiYXNlcy9wczUyNjk/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/servers/ps2055/databases/ps5543?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjA1NS9kYXRhYmFzZXMvcHM1NTQzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"DW200\",\r\n \"tier\": \"DataWarehouse\"\r\n },\r\n \"properties\": {\r\n \"maxSizeBytes\": 268435456000,\r\n \"readScale\": \"Disabled\"\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a846c442-3e2d-486b-898f-d4e8205068d1" + "fdf128f7-7b5b-4c33-9195-0fd4f3061cc1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2541,16 +2790,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/locations/southeastasia/databaseOperationResults/eb4c75ac-daf7-4b1b-850f-4df9dc155867?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/locations/southeastasia/databaseOperationResults/1bb881df-0978-4d77-9fbf-1ac0a4eab242?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/eb4c75ac-daf7-4b1b-850f-4df9dc155867?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/1bb881df-0978-4d77-9fbf-1ac0a4eab242?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "eb4c75ac-daf7-4b1b-850f-4df9dc155867" + "1bb881df-0978-4d77-9fbf-1ac0a4eab242" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2559,10 +2808,10 @@ "1194" ], "x-ms-correlation-request-id": [ - "cf29ee88-114d-49db-949e-77df83c6fa4e" + "04ea9aa9-fc4e-4e9b-a449-bb6c46a820a4" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163713Z:cf29ee88-114d-49db-949e-77df83c6fa4e" + "WESTUS:20200925T012640Z:04ea9aa9-fc4e-4e9b-a449-bb6c46a820a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2571,10 +2820,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:37:12 GMT" + "Fri, 25 Sep 2020 01:26:40 GMT" ], "Content-Length": [ - "75" + "76" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2583,17 +2832,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-09-13T16:37:13.04Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-09-25T01:26:40.283Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/e7eb1108-65d2-4da1-9400-39f3133adf13?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdlYjExMDgtNjVkMi00ZGExLTk0MDAtMzlmMzEzM2FkZjEzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/98e80700-a8de-464b-a714-03902250b27a?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vOThlODA3MDAtYThkZS00NjRiLWE3MTQtMDM5MDIyNTBiMjdhP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2610,19 +2859,19 @@ "15" ], "x-ms-request-id": [ - "d7b3404c-753d-4c80-87b3-d3099c0b4ae5" + "98fcecec-7a71-449b-bf5d-5e65555568ba" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11966" ], "x-ms-correlation-request-id": [ - "f46c1f59-f73a-440a-ba94-176466ab4ba1" + "659775de-a85c-410a-8b1c-2651cef8bcb5" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163555Z:f46c1f59-f73a-440a-ba94-176466ab4ba1" + "WESTUS:20200925T012506Z:659775de-a85c-410a-8b1c-2651cef8bcb5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2631,7 +2880,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:35:54 GMT" + "Fri, 25 Sep 2020 01:25:05 GMT" ], "Content-Length": [ "107" @@ -2643,17 +2892,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"e7eb1108-65d2-4da1-9400-39f3133adf13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T16:35:40.32Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"98e80700-a8de-464b-a714-03902250b27a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:24:50.98Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/e7eb1108-65d2-4da1-9400-39f3133adf13?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdlYjExMDgtNjVkMi00ZGExLTk0MDAtMzlmMzEzM2FkZjEzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/98e80700-a8de-464b-a714-03902250b27a?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vOThlODA3MDAtYThkZS00NjRiLWE3MTQtMDM5MDIyNTBiMjdhP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2670,19 +2919,19 @@ "15" ], "x-ms-request-id": [ - "dcc8a06e-d188-4774-b46b-eeaf27151030" + "ab2f1a71-cb2a-439e-b319-ad4252d867ef" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11965" ], "x-ms-correlation-request-id": [ - "86b4123b-30f7-44d3-95af-f9c2f50cd27d" + "790385e5-60eb-4ad5-a095-310340efb01f" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163610Z:86b4123b-30f7-44d3-95af-f9c2f50cd27d" + "WESTUS:20200925T012521Z:790385e5-60eb-4ad5-a095-310340efb01f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2691,7 +2940,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:36:10 GMT" + "Fri, 25 Sep 2020 01:25:21 GMT" ], "Content-Length": [ "107" @@ -2703,17 +2952,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"e7eb1108-65d2-4da1-9400-39f3133adf13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T16:35:40.32Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"98e80700-a8de-464b-a714-03902250b27a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:24:50.98Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/e7eb1108-65d2-4da1-9400-39f3133adf13?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdlYjExMDgtNjVkMi00ZGExLTk0MDAtMzlmMzEzM2FkZjEzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/98e80700-a8de-464b-a714-03902250b27a?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vOThlODA3MDAtYThkZS00NjRiLWE3MTQtMDM5MDIyNTBiMjdhP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2730,19 +2979,19 @@ "15" ], "x-ms-request-id": [ - "171bf7b4-0e07-4e10-a5e4-761bcc2bb9a7" + "40708677-8015-41e5-82a4-507b7eaa461a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11964" ], "x-ms-correlation-request-id": [ - "62620543-dae2-456a-b91a-340aa2cf38f7" + "e8c6b4d2-5737-4332-b403-673648a674a7" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163626Z:62620543-dae2-456a-b91a-340aa2cf38f7" + "WESTUS:20200925T012537Z:e8c6b4d2-5737-4332-b403-673648a674a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2751,7 +3000,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:36:26 GMT" + "Fri, 25 Sep 2020 01:25:37 GMT" ], "Content-Length": [ "107" @@ -2763,17 +3012,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"e7eb1108-65d2-4da1-9400-39f3133adf13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T16:35:40.32Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"98e80700-a8de-464b-a714-03902250b27a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:24:50.98Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/e7eb1108-65d2-4da1-9400-39f3133adf13?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdlYjExMDgtNjVkMi00ZGExLTk0MDAtMzlmMzEzM2FkZjEzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/98e80700-a8de-464b-a714-03902250b27a?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vOThlODA3MDAtYThkZS00NjRiLWE3MTQtMDM5MDIyNTBiMjdhP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2790,19 +3039,19 @@ "15" ], "x-ms-request-id": [ - "3cee77ed-8d22-43b3-99d7-d11aa2ba5287" + "41c69650-36f0-4046-b1d3-b464c347fd46" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11963" ], "x-ms-correlation-request-id": [ - "96578846-1fa1-442d-9c2b-b7a46b42bb05" + "e65d38a3-f2d1-477b-b093-8cc8fe26e3bf" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163641Z:96578846-1fa1-442d-9c2b-b7a46b42bb05" + "WESTUS:20200925T012552Z:e65d38a3-f2d1-477b-b093-8cc8fe26e3bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2811,7 +3060,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:36:41 GMT" + "Fri, 25 Sep 2020 01:25:52 GMT" ], "Content-Length": [ "107" @@ -2823,17 +3072,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"e7eb1108-65d2-4da1-9400-39f3133adf13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T16:35:40.32Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"98e80700-a8de-464b-a714-03902250b27a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:24:50.98Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/e7eb1108-65d2-4da1-9400-39f3133adf13?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdlYjExMDgtNjVkMi00ZGExLTk0MDAtMzlmMzEzM2FkZjEzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/98e80700-a8de-464b-a714-03902250b27a?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vOThlODA3MDAtYThkZS00NjRiLWE3MTQtMDM5MDIyNTBiMjdhP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2850,19 +3099,19 @@ "15" ], "x-ms-request-id": [ - "91b84f65-f458-4f9c-a06e-9c6ae3ccadea" + "d8b2221d-744b-432d-b197-ea003cf13510" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11962" ], "x-ms-correlation-request-id": [ - "d29474a7-ce35-4eef-86a5-0ec8537d1e2b" + "5b28bc5f-83c8-4a9c-b3f3-827b2358d109" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163656Z:d29474a7-ce35-4eef-86a5-0ec8537d1e2b" + "WESTUS:20200925T012608Z:5b28bc5f-83c8-4a9c-b3f3-827b2358d109" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2871,7 +3120,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:36:56 GMT" + "Fri, 25 Sep 2020 01:26:07 GMT" ], "Content-Length": [ "107" @@ -2883,17 +3132,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"e7eb1108-65d2-4da1-9400-39f3133adf13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T16:35:40.32Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"98e80700-a8de-464b-a714-03902250b27a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:24:50.98Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/e7eb1108-65d2-4da1-9400-39f3133adf13?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZTdlYjExMDgtNjVkMi00ZGExLTk0MDAtMzlmMzEzM2FkZjEzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/98e80700-a8de-464b-a714-03902250b27a?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vOThlODA3MDAtYThkZS00NjRiLWE3MTQtMDM5MDIyNTBiMjdhP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2910,19 +3159,19 @@ "15" ], "x-ms-request-id": [ - "7c8b7c6b-cc62-42df-b532-7159aabb7404" + "d91e8787-b1ea-461f-b407-fe562341a572" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11961" ], "x-ms-correlation-request-id": [ - "720af6ed-5a72-4d99-be68-892e763878cd" + "610a5989-d29e-4f12-abac-5c2362be76fe" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163711Z:720af6ed-5a72-4d99-be68-892e763878cd" + "WESTUS:20200925T012623Z:610a5989-d29e-4f12-abac-5c2362be76fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2931,10 +3180,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:37:11 GMT" + "Fri, 25 Sep 2020 01:26:23 GMT" ], "Content-Length": [ - "106" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2943,17 +3192,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"e7eb1108-65d2-4da1-9400-39f3133adf13\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-13T16:35:40.32Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"98e80700-a8de-464b-a714-03902250b27a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:24:50.98Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/eb4c75ac-daf7-4b1b-850f-4df9dc155867?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZWI0Yzc1YWMtZGFmNy00YjFiLTg1MGYtNGRmOWRjMTU1ODY3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/98e80700-a8de-464b-a714-03902250b27a?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vOThlODA3MDAtYThkZS00NjRiLWE3MTQtMDM5MDIyNTBiMjdhP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2970,7 +3219,7 @@ "15" ], "x-ms-request-id": [ - "e261a1a5-c5ab-4bc3-ad7e-25d2a33fd7f6" + "c1d16d40-8059-4e3c-9727-ca37ac94e0cc" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2979,10 +3228,10 @@ "11960" ], "x-ms-correlation-request-id": [ - "fc74767f-c70d-40d7-8735-bfe8bf04c24d" + "04306458-5a7b-48e7-972f-02714a46c5e4" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163728Z:fc74767f-c70d-40d7-8735-bfe8bf04c24d" + "WESTUS:20200925T012639Z:04306458-5a7b-48e7-972f-02714a46c5e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2991,10 +3240,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:37:27 GMT" + "Fri, 25 Sep 2020 01:26:38 GMT" ], "Content-Length": [ - "107" + "106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3003,17 +3252,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"eb4c75ac-daf7-4b1b-850f-4df9dc155867\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T16:37:13.04Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"98e80700-a8de-464b-a714-03902250b27a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-25T01:24:50.98Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/eb4c75ac-daf7-4b1b-850f-4df9dc155867?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZWI0Yzc1YWMtZGFmNy00YjFiLTg1MGYtNGRmOWRjMTU1ODY3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/1bb881df-0978-4d77-9fbf-1ac0a4eab242?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMWJiODgxZGYtMDk3OC00ZDc3LTlmYmYtMWFjMGE0ZWFiMjQyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -3030,19 +3279,19 @@ "15" ], "x-ms-request-id": [ - "2ebaab36-e37e-4a88-af6f-3564b19cf7f9" + "94dc7411-6f9d-4106-8dec-7a15f893cbe1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11955" ], "x-ms-correlation-request-id": [ - "41bf8eac-1a18-4c85-bb4f-fa052eb50824" + "e0ecedc8-dd22-4ee3-a4d3-fe3be82b0dc4" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163743Z:41bf8eac-1a18-4c85-bb4f-fa052eb50824" + "WESTUS:20200925T012655Z:e0ecedc8-dd22-4ee3-a4d3-fe3be82b0dc4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3051,10 +3300,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:37:42 GMT" + "Fri, 25 Sep 2020 01:26:55 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3063,17 +3312,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"eb4c75ac-daf7-4b1b-850f-4df9dc155867\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T16:37:13.04Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"1bb881df-0978-4d77-9fbf-1ac0a4eab242\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:26:40.283Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/eb4c75ac-daf7-4b1b-850f-4df9dc155867?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZWI0Yzc1YWMtZGFmNy00YjFiLTg1MGYtNGRmOWRjMTU1ODY3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/1bb881df-0978-4d77-9fbf-1ac0a4eab242?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMWJiODgxZGYtMDk3OC00ZDc3LTlmYmYtMWFjMGE0ZWFiMjQyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -3090,19 +3339,19 @@ "15" ], "x-ms-request-id": [ - "87a0827b-cb86-45f6-a497-885852a92e6c" + "0095962b-2519-4387-8373-83ac900fb5cd" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" + "11954" ], "x-ms-correlation-request-id": [ - "91f89bc0-4a5e-4682-ad5c-381c9a2cd825" + "ebcc6268-8c00-44a6-bb4c-90faf7f511ff" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163758Z:91f89bc0-4a5e-4682-ad5c-381c9a2cd825" + "WESTUS:20200925T012711Z:ebcc6268-8c00-44a6-bb4c-90faf7f511ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3111,10 +3360,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:37:58 GMT" + "Fri, 25 Sep 2020 01:27:10 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3123,17 +3372,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"eb4c75ac-daf7-4b1b-850f-4df9dc155867\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T16:37:13.04Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"1bb881df-0978-4d77-9fbf-1ac0a4eab242\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:26:40.283Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/eb4c75ac-daf7-4b1b-850f-4df9dc155867?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZWI0Yzc1YWMtZGFmNy00YjFiLTg1MGYtNGRmOWRjMTU1ODY3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/1bb881df-0978-4d77-9fbf-1ac0a4eab242?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMWJiODgxZGYtMDk3OC00ZDc3LTlmYmYtMWFjMGE0ZWFiMjQyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -3150,19 +3399,19 @@ "15" ], "x-ms-request-id": [ - "0be88179-b0be-4020-810b-a0469dc88161" + "0556aba3-2a59-4949-8b3b-8c8303e8d95e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" + "11953" ], "x-ms-correlation-request-id": [ - "2a20f29b-3b27-4f45-ac82-de9afd9715ba" + "614befc5-4852-47e7-a2b0-755baad3ce2a" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163814Z:2a20f29b-3b27-4f45-ac82-de9afd9715ba" + "WESTUS:20200925T012726Z:614befc5-4852-47e7-a2b0-755baad3ce2a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3171,10 +3420,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:38:13 GMT" + "Fri, 25 Sep 2020 01:27:25 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3183,17 +3432,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"eb4c75ac-daf7-4b1b-850f-4df9dc155867\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T16:37:13.04Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"1bb881df-0978-4d77-9fbf-1ac0a4eab242\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:26:40.283Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/eb4c75ac-daf7-4b1b-850f-4df9dc155867?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZWI0Yzc1YWMtZGFmNy00YjFiLTg1MGYtNGRmOWRjMTU1ODY3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/1bb881df-0978-4d77-9fbf-1ac0a4eab242?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMWJiODgxZGYtMDk3OC00ZDc3LTlmYmYtMWFjMGE0ZWFiMjQyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -3210,19 +3459,19 @@ "15" ], "x-ms-request-id": [ - "827c6990-d299-4277-bcfe-4b68b128edc4" + "99abcf4c-4f3a-4257-83b3-88ac98624502" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" + "11952" ], "x-ms-correlation-request-id": [ - "28dfed56-35ba-4a59-8a6e-71a6d505129c" + "a392ec72-91c2-4bf3-bbc1-4d49ad9fd3ed" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163829Z:28dfed56-35ba-4a59-8a6e-71a6d505129c" + "WESTUS:20200925T012741Z:a392ec72-91c2-4bf3-bbc1-4d49ad9fd3ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3231,10 +3480,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:38:28 GMT" + "Fri, 25 Sep 2020 01:27:40 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3243,17 +3492,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"eb4c75ac-daf7-4b1b-850f-4df9dc155867\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T16:37:13.04Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"1bb881df-0978-4d77-9fbf-1ac0a4eab242\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:26:40.283Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/eb4c75ac-daf7-4b1b-850f-4df9dc155867?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZWI0Yzc1YWMtZGFmNy00YjFiLTg1MGYtNGRmOWRjMTU1ODY3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/1bb881df-0978-4d77-9fbf-1ac0a4eab242?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMWJiODgxZGYtMDk3OC00ZDc3LTlmYmYtMWFjMGE0ZWFiMjQyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -3270,19 +3519,19 @@ "15" ], "x-ms-request-id": [ - "2bca983a-4580-4011-b201-7db1ee1fba8c" + "14c97d2e-fc66-43ce-8ef9-f7f43ade6565" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" + "11951" ], "x-ms-correlation-request-id": [ - "574819ac-9a72-4511-acaa-e0d216e36637" + "4694d53d-0df2-4069-98ac-dc9b3bdf0491" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163844Z:574819ac-9a72-4511-acaa-e0d216e36637" + "WESTUS:20200925T012756Z:4694d53d-0df2-4069-98ac-dc9b3bdf0491" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3291,10 +3540,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:38:44 GMT" + "Fri, 25 Sep 2020 01:27:55 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3303,17 +3552,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"eb4c75ac-daf7-4b1b-850f-4df9dc155867\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T16:37:13.04Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"1bb881df-0978-4d77-9fbf-1ac0a4eab242\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:26:40.283Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/eb4c75ac-daf7-4b1b-850f-4df9dc155867?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZWI0Yzc1YWMtZGFmNy00YjFiLTg1MGYtNGRmOWRjMTU1ODY3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/1bb881df-0978-4d77-9fbf-1ac0a4eab242?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMWJiODgxZGYtMDk3OC00ZDc3LTlmYmYtMWFjMGE0ZWFiMjQyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -3330,19 +3579,19 @@ "15" ], "x-ms-request-id": [ - "76a93919-328a-4463-98ca-0f838a0c99a3" + "9e7a79f3-9f67-4772-8874-ab34797bc959" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" + "11950" ], "x-ms-correlation-request-id": [ - "8ec878aa-1393-470c-bb83-d448c93fd327" + "61adcbd2-a5af-42cd-af90-dfbd6931c54d" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163859Z:8ec878aa-1393-470c-bb83-d448c93fd327" + "WESTUS:20200925T012811Z:61adcbd2-a5af-42cd-af90-dfbd6931c54d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3351,10 +3600,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:38:59 GMT" + "Fri, 25 Sep 2020 01:28:11 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3363,17 +3612,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"eb4c75ac-daf7-4b1b-850f-4df9dc155867\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T16:37:13.04Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"1bb881df-0978-4d77-9fbf-1ac0a4eab242\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:26:40.283Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/eb4c75ac-daf7-4b1b-850f-4df9dc155867?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZWI0Yzc1YWMtZGFmNy00YjFiLTg1MGYtNGRmOWRjMTU1ODY3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/1bb881df-0978-4d77-9fbf-1ac0a4eab242?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMWJiODgxZGYtMDk3OC00ZDc3LTlmYmYtMWFjMGE0ZWFiMjQyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -3390,19 +3639,79 @@ "15" ], "x-ms-request-id": [ - "044b78ee-d971-4257-92dd-44a4270cb489" + "91b5f23a-fa50-4c3a-b348-6d5ef14d4920" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" + "11949" + ], + "x-ms-correlation-request-id": [ + "ed845265-98a7-453f-af64-25e04331218b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200925T012827Z:ed845265-98a7-453f-af64-25e04331218b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 25 Sep 2020 01:28:27 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"1bb881df-0978-4d77-9fbf-1ac0a4eab242\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:26:40.283Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/1bb881df-0978-4d77-9fbf-1ac0a4eab242?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMWJiODgxZGYtMDk3OC00ZDc3LTlmYmYtMWFjMGE0ZWFiMjQyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "5b08edf3-0a49-40aa-919a-3a896dd9bfef" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11948" + ], "x-ms-correlation-request-id": [ - "98f47843-e20a-43b0-bac9-c0e2839b5b54" + "567a1983-1a97-4056-b685-a31352f11902" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163915Z:98f47843-e20a-43b0-bac9-c0e2839b5b54" + "WESTUS:20200925T012842Z:567a1983-1a97-4056-b685-a31352f11902" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3411,10 +3720,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:39:14 GMT" + "Fri, 25 Sep 2020 01:28:42 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3423,17 +3732,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"eb4c75ac-daf7-4b1b-850f-4df9dc155867\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T16:37:13.04Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"1bb881df-0978-4d77-9fbf-1ac0a4eab242\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:26:40.283Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1650/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/eb4c75ac-daf7-4b1b-850f-4df9dc155867?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZWI0Yzc1YWMtZGFmNy00YjFiLTg1MGYtNGRmOWRjMTU1ODY3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1327/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/1bb881df-0978-4d77-9fbf-1ac0a4eab242?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMWJiODgxZGYtMDk3OC00ZDc3LTlmYmYtMWFjMGE0ZWFiMjQyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -3450,19 +3759,19 @@ "15" ], "x-ms-request-id": [ - "033677af-9093-42de-82b9-763361450c88" + "67f99a9f-f7e4-4c48-8d17-2109202d5748" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11952" + "11947" ], "x-ms-correlation-request-id": [ - "39eeb6b1-50f6-4f70-a46e-f915c159ec1f" + "27b06427-0717-4a3e-8a5b-0d08ef653483" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163930Z:39eeb6b1-50f6-4f70-a46e-f915c159ec1f" + "WESTUS:20200925T012857Z:27b06427-0717-4a3e-8a5b-0d08ef653483" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3471,10 +3780,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:39:30 GMT" + "Fri, 25 Sep 2020 01:28:57 GMT" ], "Content-Length": [ - "106" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3483,23 +3792,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"eb4c75ac-daf7-4b1b-850f-4df9dc155867\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-13T16:37:13.04Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"1bb881df-0978-4d77-9fbf-1ac0a4eab242\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-25T01:26:40.283Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps1650?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzMTY1MD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps1327?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzMTMyNz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fcba65c4-b0bb-40d6-bdb4-07f5a0b6833b" + "f6af6779-90fb-44f4-9388-589bc7e5bc41" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3513,7 +3822,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2NTAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEzMjctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3522,13 +3831,13 @@ "14999" ], "x-ms-request-id": [ - "25d38cde-834a-400d-8d2a-50037ed903d9" + "944c346a-3f0b-40a4-b4e5-c286887a28a7" ], "x-ms-correlation-request-id": [ - "25d38cde-834a-400d-8d2a-50037ed903d9" + "944c346a-3f0b-40a4-b4e5-c286887a28a7" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163931Z:25d38cde-834a-400d-8d2a-50037ed903d9" + "WESTUS:20200925T012858Z:944c346a-3f0b-40a4-b4e5-c286887a28a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3537,7 +3846,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:39:31 GMT" + "Fri, 25 Sep 2020 01:28:58 GMT" ], "Expires": [ "-1" @@ -3550,13 +3859,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2NTAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk5UQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEzMjctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFek1qY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3570,22 +3879,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2NTAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEzMjctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "33e58c2f-9e22-46a0-bf23-814d0e3dab7f" + "c71c0b80-f2cd-4ef0-b78e-e986a2db1f71" ], "x-ms-correlation-request-id": [ - "33e58c2f-9e22-46a0-bf23-814d0e3dab7f" + "c71c0b80-f2cd-4ef0-b78e-e986a2db1f71" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T163946Z:33e58c2f-9e22-46a0-bf23-814d0e3dab7f" + "WESTUS:20200925T012913Z:c71c0b80-f2cd-4ef0-b78e-e986a2db1f71" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3594,7 +3903,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:39:46 GMT" + "Fri, 25 Sep 2020 01:29:13 GMT" ], "Expires": [ "-1" @@ -3607,13 +3916,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2NTAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk5UQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEzMjctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFek1qY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3627,22 +3936,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2NTAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEzMjctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-request-id": [ - "b0687b3c-95b1-4900-be7b-4b0b66989173" + "5cf1f165-b65e-4f28-b5d3-417d752e52b7" ], "x-ms-correlation-request-id": [ - "b0687b3c-95b1-4900-be7b-4b0b66989173" + "5cf1f165-b65e-4f28-b5d3-417d752e52b7" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T164001Z:b0687b3c-95b1-4900-be7b-4b0b66989173" + "WESTUS:20200925T012929Z:5cf1f165-b65e-4f28-b5d3-417d752e52b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3651,7 +3960,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:40:01 GMT" + "Fri, 25 Sep 2020 01:29:28 GMT" ], "Expires": [ "-1" @@ -3664,13 +3973,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2NTAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk5UQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEzMjctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFek1qY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3684,22 +3993,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2NTAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEzMjctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-request-id": [ - "17387700-b087-4244-9c8d-af89f3baf729" + "b0e880b3-0d5a-4ce0-92e3-2ae2583398bd" ], "x-ms-correlation-request-id": [ - "17387700-b087-4244-9c8d-af89f3baf729" + "b0e880b3-0d5a-4ce0-92e3-2ae2583398bd" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T164016Z:17387700-b087-4244-9c8d-af89f3baf729" + "WESTUS:20200925T012944Z:b0e880b3-0d5a-4ce0-92e3-2ae2583398bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3708,7 +4017,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:40:16 GMT" + "Fri, 25 Sep 2020 01:29:44 GMT" ], "Expires": [ "-1" @@ -3721,13 +4030,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2NTAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk5UQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEzMjctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFek1qY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3741,22 +4050,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2NTAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEzMjctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-request-id": [ - "560ae684-4a19-4831-b060-99fea6fff2b6" + "a09ad419-e259-4275-bfdd-2dbef48056a3" ], "x-ms-correlation-request-id": [ - "560ae684-4a19-4831-b060-99fea6fff2b6" + "a09ad419-e259-4275-bfdd-2dbef48056a3" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T164032Z:560ae684-4a19-4831-b060-99fea6fff2b6" + "WESTUS:20200925T012959Z:a09ad419-e259-4275-bfdd-2dbef48056a3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3765,7 +4074,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:40:31 GMT" + "Fri, 25 Sep 2020 01:29:59 GMT" ], "Expires": [ "-1" @@ -3778,13 +4087,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2NTAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk5UQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEzMjctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFek1qY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3798,22 +4107,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2NTAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEzMjctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-request-id": [ - "888f56b1-90e3-442f-ae24-e05d66dc65ec" + "1e5c3bef-0e2f-47bd-bbcf-73eedebbcb28" ], "x-ms-correlation-request-id": [ - "888f56b1-90e3-442f-ae24-e05d66dc65ec" + "1e5c3bef-0e2f-47bd-bbcf-73eedebbcb28" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T164047Z:888f56b1-90e3-442f-ae24-e05d66dc65ec" + "WESTUS:20200925T013014Z:1e5c3bef-0e2f-47bd-bbcf-73eedebbcb28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3822,7 +4131,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:40:46 GMT" + "Fri, 25 Sep 2020 01:30:13 GMT" ], "Expires": [ "-1" @@ -3835,13 +4144,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2NTAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk5UQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEzMjctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFek1qY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3855,22 +4164,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2NTAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEzMjctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11993" ], "x-ms-request-id": [ - "6f571157-94c0-4923-bef4-905d66621098" + "0288966e-62e0-451f-8d09-007c2e080ce6" ], "x-ms-correlation-request-id": [ - "6f571157-94c0-4923-bef4-905d66621098" + "0288966e-62e0-451f-8d09-007c2e080ce6" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T164102Z:6f571157-94c0-4923-bef4-905d66621098" + "WESTUS:20200925T013029Z:0288966e-62e0-451f-8d09-007c2e080ce6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3879,7 +4188,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:41:02 GMT" + "Fri, 25 Sep 2020 01:30:28 GMT" ], "Expires": [ "-1" @@ -3892,13 +4201,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2NTAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk5UQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEzMjctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFek1qY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3912,22 +4221,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2NTAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEzMjctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11992" ], "x-ms-request-id": [ - "e474f088-b8bc-4542-bbc3-145f4674be6a" + "268cb9e4-4d35-4aad-aee8-16aed555dfaa" ], "x-ms-correlation-request-id": [ - "e474f088-b8bc-4542-bbc3-145f4674be6a" + "268cb9e4-4d35-4aad-aee8-16aed555dfaa" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T164117Z:e474f088-b8bc-4542-bbc3-145f4674be6a" + "WESTUS:20200925T013044Z:268cb9e4-4d35-4aad-aee8-16aed555dfaa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3936,7 +4245,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:41:17 GMT" + "Fri, 25 Sep 2020 01:30:43 GMT" ], "Expires": [ "-1" @@ -3949,13 +4258,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2NTAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk5UQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEzMjctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFek1qY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3969,22 +4278,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2NTAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEzMjctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11991" ], "x-ms-request-id": [ - "75c37b8a-c840-4941-92d5-b092a921f3c4" + "d9a3dbbc-070f-4471-946c-5a912f38c670" ], "x-ms-correlation-request-id": [ - "75c37b8a-c840-4941-92d5-b092a921f3c4" + "d9a3dbbc-070f-4471-946c-5a912f38c670" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T164132Z:75c37b8a-c840-4941-92d5-b092a921f3c4" + "WESTUS:20200925T013059Z:d9a3dbbc-070f-4471-946c-5a912f38c670" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3993,7 +4302,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:41:31 GMT" + "Fri, 25 Sep 2020 01:30:58 GMT" ], "Expires": [ "-1" @@ -4006,13 +4315,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2NTAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk5UQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEzMjctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFek1qY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -4026,22 +4335,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2NTAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEzMjctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11990" ], "x-ms-request-id": [ - "5221a42b-92ab-4fd4-9e81-b9d1ca89c962" + "2109509e-b0a1-44ef-8cab-22d8947a63bf" ], "x-ms-correlation-request-id": [ - "5221a42b-92ab-4fd4-9e81-b9d1ca89c962" + "2109509e-b0a1-44ef-8cab-22d8947a63bf" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T164147Z:5221a42b-92ab-4fd4-9e81-b9d1ca89c962" + "WESTUS:20200925T013114Z:2109509e-b0a1-44ef-8cab-22d8947a63bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4050,7 +4359,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:41:46 GMT" + "Fri, 25 Sep 2020 01:31:13 GMT" ], "Expires": [ "-1" @@ -4063,13 +4372,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2NTAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk5UQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEzMjctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFek1qY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -4083,22 +4392,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2NTAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEzMjctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11989" ], "x-ms-request-id": [ - "1cd2d57b-c7ee-42f5-b2a4-96f28c91c7b2" + "b95d8e3f-3a6d-4630-83cb-4c955c2711cb" ], "x-ms-correlation-request-id": [ - "1cd2d57b-c7ee-42f5-b2a4-96f28c91c7b2" + "b95d8e3f-3a6d-4630-83cb-4c955c2711cb" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T164202Z:1cd2d57b-c7ee-42f5-b2a4-96f28c91c7b2" + "WESTUS:20200925T013129Z:b95d8e3f-3a6d-4630-83cb-4c955c2711cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4107,7 +4416,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:42:01 GMT" + "Fri, 25 Sep 2020 01:31:28 GMT" ], "Expires": [ "-1" @@ -4120,13 +4429,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2NTAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk5UQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEzMjctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFek1qY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -4140,16 +4449,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11988" ], "x-ms-request-id": [ - "978b62ad-ffec-43ac-862e-0417beb6612a" + "fcbd6742-dc4f-4b4a-998a-f77df4470df6" ], "x-ms-correlation-request-id": [ - "978b62ad-ffec-43ac-862e-0417beb6612a" + "fcbd6742-dc4f-4b4a-998a-f77df4470df6" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T164217Z:978b62ad-ffec-43ac-862e-0417beb6612a" + "WESTUS:20200925T013144Z:fcbd6742-dc4f-4b4a-998a-f77df4470df6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4158,7 +4467,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:42:16 GMT" + "Fri, 25 Sep 2020 01:31:43 GMT" ], "Expires": [ "-1" @@ -4171,13 +4480,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2NTAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk5UQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEzMjctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFek1qY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -4191,16 +4500,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11987" ], "x-ms-request-id": [ - "fe8617ec-ca26-4179-a420-3397f3cf2bf2" + "dc268767-c382-4214-892c-9c5618d9779f" ], "x-ms-correlation-request-id": [ - "fe8617ec-ca26-4179-a420-3397f3cf2bf2" + "dc268767-c382-4214-892c-9c5618d9779f" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T164217Z:fe8617ec-ca26-4179-a420-3397f3cf2bf2" + "WESTUS:20200925T013144Z:dc268767-c382-4214-892c-9c5618d9779f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4209,7 +4518,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 16:42:16 GMT" + "Fri, 25 Sep 2020 01:31:43 GMT" ], "Expires": [ "-1" @@ -4224,10 +4533,10 @@ ], "Names": { "Test-UpdateDatabase": [ - "ps1650", - "ps888", - "ps2917", - "ps5269" + "ps1327", + "ps2055", + "ps8265", + "ps5543" ] }, "Variables": { diff --git a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseUpdateWithZoneRedundancy.json b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseUpdateWithZoneRedundancy.json index 5baad8884c33..64d9300805bd 100644 --- a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseUpdateWithZoneRedundancy.json +++ b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseUpdateWithZoneRedundancy.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ab90b11e-ca8c-4f78-9c4b-c5146b1882a5" + "f4139cb7-d89e-4ff1-b6a2-738d5392525d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -30,13 +30,13 @@ "11999" ], "x-ms-request-id": [ - "8a8b2b9c-5bf9-4a70-a05a-7bacf84fcdce" + "dae20cc9-c9bf-4e05-a662-1f96f6990011" ], "x-ms-correlation-request-id": [ - "8a8b2b9c-5bf9-4a70-a05a-7bacf84fcdce" + "dae20cc9-c9bf-4e05-a662-1f96f6990011" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T172634Z:8a8b2b9c-5bf9-4a70-a05a-7bacf84fcdce" + "WESTUS:20200925T010348Z:dae20cc9-c9bf-4e05-a662-1f96f6990011" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:26:33 GMT" + "Fri, 25 Sep 2020 01:03:48 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -61,19 +61,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps6173?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzNjE3Mz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps5993?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzNTk5Mz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West Europe\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "90eb2c54-8681-4789-bd12-0eef6c09a80f" + "5c5e44b1-a7c4-46c2-9a26-972e01a99ad0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -96,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "73a47f41-ca3b-47fd-bc93-4afa338fe0d6" + "dfef89a5-a0d1-4f32-a984-8354b7f0cdb4" ], "x-ms-correlation-request-id": [ - "73a47f41-ca3b-47fd-bc93-4afa338fe0d6" + "dfef89a5-a0d1-4f32-a984-8354b7f0cdb4" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T172636Z:73a47f41-ca3b-47fd-bc93-4afa338fe0d6" + "WESTUS:20200925T010350Z:dfef89a5-a0d1-4f32-a984-8354b7f0cdb4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:26:36 GMT" + "Fri, 25 Sep 2020 01:03:50 GMT" ], "Content-Length": [ "169" @@ -123,23 +123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173\",\r\n \"name\": \"ps6173\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993\",\r\n \"name\": \"ps5993\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/servers/ps504?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjE3My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNTA0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/servers/ps1697?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTY5Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3e3a7ef9-f45b-4e7b-b20a-6ac872613a86" + "76b4ad82-b438-4d68-b3eb-ed7fdaa48643" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -156,13 +156,13 @@ "gateway" ], "x-ms-request-id": [ - "c4dd4b94-cc8a-4286-8b3b-8d8f51c73c13" + "459cca8d-da3d-4a3c-8d79-842fd370a240" ], "x-ms-correlation-request-id": [ - "c4dd4b94-cc8a-4286-8b3b-8d8f51c73c13" + "459cca8d-da3d-4a3c-8d79-842fd370a240" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T172637Z:c4dd4b94-cc8a-4286-8b3b-8d8f51c73c13" + "WESTUS:20200925T010351Z:459cca8d-da3d-4a3c-8d79-842fd370a240" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -171,7 +171,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:26:36 GMT" + "Fri, 25 Sep 2020 01:03:50 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -180,20 +180,20 @@ "-1" ], "Content-Length": [ - "205" + "206" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps504' under resource group 'ps6173' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps1697' under resource group 'ps5993' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/servers/ps504?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjE3My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNTA0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/servers/ps1697?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTY5Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -207,19 +207,19 @@ "no-cache" ], "x-ms-request-id": [ - "fe1afe1f-c633-4d09-9c21-cd1cb4a7e3c5" + "60892b43-8c12-4131-97c6-7aea7904dd17" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11990" ], "x-ms-correlation-request-id": [ - "a4a4f3c6-2ee2-46d9-93e0-d4203cad20ba" + "528d1ca0-9f4b-4543-ab0e-9be8580e6703" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T172729Z:a4a4f3c6-2ee2-46d9-93e0-d4203cad20ba" + "WESTUS:20200925T010502Z:528d1ca0-9f4b-4543-ab0e-9be8580e6703" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -228,10 +228,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:27:29 GMT" + "Fri, 25 Sep 2020 01:05:02 GMT" ], "Content-Length": [ - "409" + "412" ], "Content-Type": [ "application/json; charset=utf-8" @@ -240,23 +240,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps504.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/servers/ps504\",\r\n \"name\": \"ps504\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps1697.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/servers/ps1697\",\r\n \"name\": \"ps1697\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/servers/ps504?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjE3My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNTA0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/servers/ps1697?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTY5Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3813c4b2-d6e2-430c-b97d-9b74731e48bb" + "1a1f4974-c66c-4efc-be56-3e3ea66f9c95" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -270,19 +270,19 @@ "no-cache" ], "x-ms-request-id": [ - "5ac1aed8-1c74-4395-bd1b-db91559a7eff" + "d02a2987-ef82-4d14-a2d0-8c2cb6ce555b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11989" ], "x-ms-correlation-request-id": [ - "d5550250-1333-4fd8-9607-53adb4c5c49d" + "d369bddf-da17-45d9-917b-4cf85a5563f2" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T172730Z:d5550250-1333-4fd8-9607-53adb4c5c49d" + "WESTUS:20200925T010503Z:d369bddf-da17-45d9-917b-4cf85a5563f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -291,10 +291,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:27:30 GMT" + "Fri, 25 Sep 2020 01:05:02 GMT" ], "Content-Length": [ - "409" + "412" ], "Content-Type": [ "application/json; charset=utf-8" @@ -303,23 +303,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps504.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/servers/ps504\",\r\n \"name\": \"ps504\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps1697.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/servers/ps1697\",\r\n \"name\": \"ps1697\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/servers/ps504?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjE3My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNTA0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/servers/ps1697?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTY5Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f7df97a8-3b23-40bb-bbba-d1d68a248a0e" + "a778e727-1fc2-43b7-855b-f0ba46e7683c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -333,19 +333,19 @@ "no-cache" ], "x-ms-request-id": [ - "f415c177-901d-48fc-ad51-154bf0664846" + "b6d848d1-6e5d-4ba4-b224-b0c4fcac3736" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11987" ], "x-ms-correlation-request-id": [ - "af1fd665-2ae0-459c-bdec-4a80050b59dc" + "151746dd-3197-4401-9e79-8c87e1b60d53" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T172730Z:af1fd665-2ae0-459c-bdec-4a80050b59dc" + "WESTUS:20200925T010503Z:151746dd-3197-4401-9e79-8c87e1b60d53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -354,10 +354,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:27:30 GMT" + "Fri, 25 Sep 2020 01:05:02 GMT" ], "Content-Length": [ - "409" + "412" ], "Content-Type": [ "application/json; charset=utf-8" @@ -366,23 +366,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps504.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/servers/ps504\",\r\n \"name\": \"ps504\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps1697.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/servers/ps1697\",\r\n \"name\": \"ps1697\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/servers/ps504?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjE3My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNTA0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/servers/ps1697?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTY5Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1928f96-398e-4937-bd53-6a29e78283f3" + "e72dfd4c-c641-40de-ab6e-aa6bcbd10e47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -396,19 +396,19 @@ "no-cache" ], "x-ms-request-id": [ - "fbc318da-3b50-4d32-8fcc-cfe185f881a4" + "7ca9e977-8575-4dd5-853e-0cab5d928e39" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11979" ], "x-ms-correlation-request-id": [ - "9f984443-c1d5-4ea3-bc3b-d380d69845cf" + "3963f657-863f-4782-9553-28b4acb5197d" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T172851Z:9f984443-c1d5-4ea3-bc3b-d380d69845cf" + "WESTUS:20200925T010638Z:3963f657-863f-4782-9553-28b4acb5197d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -417,10 +417,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:28:50 GMT" + "Fri, 25 Sep 2020 01:06:38 GMT" ], "Content-Length": [ - "409" + "412" ], "Content-Type": [ "application/json; charset=utf-8" @@ -429,23 +429,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps504.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/servers/ps504\",\r\n \"name\": \"ps504\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps1697.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/servers/ps1697\",\r\n \"name\": \"ps1697\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/servers/ps504?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjE3My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNTA0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/servers/ps1697?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTY5Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "313a3b23-5a33-4a3a-bb41-990ff551d65d" + "7028a794-278b-4e57-ad37-d60191987a97" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -459,19 +459,145 @@ "no-cache" ], "x-ms-request-id": [ - "500ae3e9-f9a4-40db-8c1e-756cd3f063eb" + "63bd2284-bcd0-45b8-aa87-a93e884342b9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11977" + ], + "x-ms-correlation-request-id": [ + "82023078-0bfb-491b-9b7d-5dc39b8e14aa" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200925T010639Z:82023078-0bfb-491b-9b7d-5dc39b8e14aa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 25 Sep 2020 01:06:38 GMT" + ], + "Content-Length": [ + "412" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps1697.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/servers/ps1697\",\r\n \"name\": \"ps1697\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/servers/ps1697?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTY5Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "206675d4-417e-470c-ab6c-751b387be2db" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "01bd9321-28fa-4620-aabf-2027f2ad7ac9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "x-ms-correlation-request-id": [ + "b18e9367-0612-4d5f-914c-b85841d3faa7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200925T010759Z:b18e9367-0612-4d5f-914c-b85841d3faa7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 25 Sep 2020 01:07:59 GMT" + ], + "Content-Length": [ + "412" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps1697.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/servers/ps1697\",\r\n \"name\": \"ps1697\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/servers/ps1697?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTY5Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5ed9b458-a5b4-48e3-b86c-b23e62f9cf52" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "64fa7df7-ba34-4fa2-b171-00df3387b16b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11957" ], "x-ms-correlation-request-id": [ - "9dad3f3f-6e16-4183-a055-9b51f0bc51a3" + "6f0d6905-7034-460a-b333-27bca5622cf3" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T172851Z:9dad3f3f-6e16-4183-a055-9b51f0bc51a3" + "WESTUS:20200925T011018Z:6f0d6905-7034-460a-b333-27bca5622cf3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -480,10 +606,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:28:51 GMT" + "Fri, 25 Sep 2020 01:10:18 GMT" ], "Content-Length": [ - "409" + "412" ], "Content-Type": [ "application/json; charset=utf-8" @@ -492,23 +618,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps504.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/servers/ps504\",\r\n \"name\": \"ps504\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps1697.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/servers/ps1697\",\r\n \"name\": \"ps1697\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/servers/ps504?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjE3My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNTA0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/servers/ps1697?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTY5Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"West Europe\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d176d400-4059-466c-8bd8-f5f72a5058e9" + "9bd54e38-3ae9-41ba-b07e-d8190a6b6ca6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -528,16 +654,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/locations/westeurope/serverOperationResults/d7873210-0f97-4bc9-9a90-7c11e70dceb5?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/locations/westeurope/serverOperationResults/b214206a-12db-4baa-9a1f-d0cb78c2cdd3?api-version=2019-06-01-preview" ], "Retry-After": [ "1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/d7873210-0f97-4bc9-9a90-7c11e70dceb5?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/b214206a-12db-4baa-9a1f-d0cb78c2cdd3?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "d7873210-0f97-4bc9-9a90-7c11e70dceb5" + "b214206a-12db-4baa-9a1f-d0cb78c2cdd3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -546,10 +672,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "de377d8d-c175-4f76-ad78-b0904386e8b0" + "d3a5bfb5-a9d5-48bc-82d5-49fa327412a1" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T172643Z:de377d8d-c175-4f76-ad78-b0904386e8b0" + "WESTUS:20200925T010356Z:d3a5bfb5-a9d5-48bc-82d5-49fa327412a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -558,10 +684,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:26:42 GMT" + "Fri, 25 Sep 2020 01:03:55 GMT" ], "Content-Length": [ - "73" + "74" ], "Content-Type": [ "application/json; charset=utf-8" @@ -570,17 +696,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-13T17:26:43.05Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-25T01:03:55.953Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/d7873210-0f97-4bc9-9a90-7c11e70dceb5?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjE3My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2Q3ODczMjEwLTBmOTctNGJjOS05YTkwLTdjMTFlNzBkY2ViNT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/b214206a-12db-4baa-9a1f-d0cb78c2cdd3?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2IyMTQyMDZhLTEyZGItNGJhYS05YTFmLWQwY2I3OGMyY2RkMz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -597,7 +723,7 @@ "1" ], "x-ms-request-id": [ - "ead377d5-e8bf-4338-b8a2-a265fb957a98" + "4b975528-b167-427a-8ea1-0d72c80f7536" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -606,10 +732,10 @@ "11998" ], "x-ms-correlation-request-id": [ - "ab9fe736-e325-4f81-9897-aa709903c0fa" + "384d52f5-3f42-483a-9358-ec2a2a9ad1d3" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T172644Z:ab9fe736-e325-4f81-9897-aa709903c0fa" + "WESTUS:20200925T010357Z:384d52f5-3f42-483a-9358-ec2a2a9ad1d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -618,10 +744,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:26:43 GMT" + "Fri, 25 Sep 2020 01:03:57 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -630,17 +756,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d7873210-0f97-4bc9-9a90-7c11e70dceb5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T17:26:43.05Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"b214206a-12db-4baa-9a1f-d0cb78c2cdd3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:03:55.953Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/d7873210-0f97-4bc9-9a90-7c11e70dceb5?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjE3My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2Q3ODczMjEwLTBmOTctNGJjOS05YTkwLTdjMTFlNzBkY2ViNT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/b214206a-12db-4baa-9a1f-d0cb78c2cdd3?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2IyMTQyMDZhLTEyZGItNGJhYS05YTFmLWQwY2I3OGMyY2RkMz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -657,7 +783,7 @@ "1" ], "x-ms-request-id": [ - "8b3583e3-a0e0-4e6e-ad9f-84bdd40b3bf5" + "70b67714-31fc-4f93-be24-3a32d2578096" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -666,10 +792,10 @@ "11997" ], "x-ms-correlation-request-id": [ - "131ddc1a-e4fd-4c41-a5ef-336acbaa96b6" + "40ceae83-8b59-4692-b561-adea80993299" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T172645Z:131ddc1a-e4fd-4c41-a5ef-336acbaa96b6" + "WESTUS:20200925T010358Z:40ceae83-8b59-4692-b561-adea80993299" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -678,10 +804,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:26:44 GMT" + "Fri, 25 Sep 2020 01:03:58 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -690,17 +816,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d7873210-0f97-4bc9-9a90-7c11e70dceb5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T17:26:43.05Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"b214206a-12db-4baa-9a1f-d0cb78c2cdd3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:03:55.953Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/d7873210-0f97-4bc9-9a90-7c11e70dceb5?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjE3My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2Q3ODczMjEwLTBmOTctNGJjOS05YTkwLTdjMTFlNzBkY2ViNT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/b214206a-12db-4baa-9a1f-d0cb78c2cdd3?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2IyMTQyMDZhLTEyZGItNGJhYS05YTFmLWQwY2I3OGMyY2RkMz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -717,7 +843,7 @@ "1" ], "x-ms-request-id": [ - "ca1956c1-dc90-434f-95f0-b2161bc1c94a" + "93f00b70-be82-40c5-b496-0054d50b0fab" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -726,10 +852,10 @@ "11996" ], "x-ms-correlation-request-id": [ - "d28aa738-5f82-4ca1-8e1f-33961c24e32e" + "b823ddf3-79fd-4e2b-99e5-f9ace39556c4" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T172646Z:d28aa738-5f82-4ca1-8e1f-33961c24e32e" + "WESTUS:20200925T010359Z:b823ddf3-79fd-4e2b-99e5-f9ace39556c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -738,10 +864,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:26:46 GMT" + "Fri, 25 Sep 2020 01:03:59 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -750,17 +876,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d7873210-0f97-4bc9-9a90-7c11e70dceb5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T17:26:43.05Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"b214206a-12db-4baa-9a1f-d0cb78c2cdd3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:03:55.953Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/d7873210-0f97-4bc9-9a90-7c11e70dceb5?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjE3My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2Q3ODczMjEwLTBmOTctNGJjOS05YTkwLTdjMTFlNzBkY2ViNT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/b214206a-12db-4baa-9a1f-d0cb78c2cdd3?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2IyMTQyMDZhLTEyZGItNGJhYS05YTFmLWQwY2I3OGMyY2RkMz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -777,7 +903,7 @@ "1" ], "x-ms-request-id": [ - "ee7e4715-6a96-46b5-9ce2-e59b22e6434c" + "81955058-f294-4ba0-9bbe-5c6021be9c97" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -786,10 +912,10 @@ "11995" ], "x-ms-correlation-request-id": [ - "381fdc79-a82c-45ff-b962-6e93202d1a02" + "5a4aaa42-4222-42aa-9cb4-e0e629bb1dbb" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T172648Z:381fdc79-a82c-45ff-b962-6e93202d1a02" + "WESTUS:20200925T010400Z:5a4aaa42-4222-42aa-9cb4-e0e629bb1dbb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -798,10 +924,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:26:47 GMT" + "Fri, 25 Sep 2020 01:04:00 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -810,17 +936,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d7873210-0f97-4bc9-9a90-7c11e70dceb5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T17:26:43.05Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"b214206a-12db-4baa-9a1f-d0cb78c2cdd3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:03:55.953Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/d7873210-0f97-4bc9-9a90-7c11e70dceb5?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjE3My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2Q3ODczMjEwLTBmOTctNGJjOS05YTkwLTdjMTFlNzBkY2ViNT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/b214206a-12db-4baa-9a1f-d0cb78c2cdd3?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2IyMTQyMDZhLTEyZGItNGJhYS05YTFmLWQwY2I3OGMyY2RkMz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -837,7 +963,7 @@ "20" ], "x-ms-request-id": [ - "59179950-1389-4bcc-bf03-5d1a0de81268" + "132669b2-4a8e-4ccd-b751-f70ae7363ac9" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -846,10 +972,10 @@ "11994" ], "x-ms-correlation-request-id": [ - "6c9c10f9-df87-4c86-9d4f-d29e19df1702" + "2e011c91-4ab2-4e57-9f63-e164dd5a1a65" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T172649Z:6c9c10f9-df87-4c86-9d4f-d29e19df1702" + "WESTUS:20200925T010402Z:2e011c91-4ab2-4e57-9f63-e164dd5a1a65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -858,10 +984,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:26:48 GMT" + "Fri, 25 Sep 2020 01:04:01 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -870,17 +996,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d7873210-0f97-4bc9-9a90-7c11e70dceb5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T17:26:43.05Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"b214206a-12db-4baa-9a1f-d0cb78c2cdd3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:03:55.953Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/d7873210-0f97-4bc9-9a90-7c11e70dceb5?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjE3My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2Q3ODczMjEwLTBmOTctNGJjOS05YTkwLTdjMTFlNzBkY2ViNT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/b214206a-12db-4baa-9a1f-d0cb78c2cdd3?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2IyMTQyMDZhLTEyZGItNGJhYS05YTFmLWQwY2I3OGMyY2RkMz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -897,7 +1023,7 @@ "20" ], "x-ms-request-id": [ - "55909f28-8e5f-475d-ba83-5fd46bdb72e0" + "af56f187-c54b-4216-9760-d97cf3e20c78" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -906,10 +1032,10 @@ "11993" ], "x-ms-correlation-request-id": [ - "66675f06-5b4b-4b81-a5b3-6a47a9ef8f5a" + "0613ea96-36d3-4d64-a67a-3c5cad0e04d8" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T172709Z:66675f06-5b4b-4b81-a5b3-6a47a9ef8f5a" + "WESTUS:20200925T010422Z:0613ea96-36d3-4d64-a67a-3c5cad0e04d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -918,10 +1044,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:27:08 GMT" + "Fri, 25 Sep 2020 01:04:21 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -930,17 +1056,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d7873210-0f97-4bc9-9a90-7c11e70dceb5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T17:26:43.05Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"b214206a-12db-4baa-9a1f-d0cb78c2cdd3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:03:55.953Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/d7873210-0f97-4bc9-9a90-7c11e70dceb5?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjE3My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2Q3ODczMjEwLTBmOTctNGJjOS05YTkwLTdjMTFlNzBkY2ViNT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/b214206a-12db-4baa-9a1f-d0cb78c2cdd3?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2IyMTQyMDZhLTEyZGItNGJhYS05YTFmLWQwY2I3OGMyY2RkMz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -954,10 +1080,10 @@ "no-cache" ], "Retry-After": [ - "15" + "20" ], "x-ms-request-id": [ - "0722e962-b598-44d9-8bf9-e3f16205b419" + "9fb92721-ae65-4458-9bc1-36bddfb6e7cd" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -966,10 +1092,10 @@ "11992" ], "x-ms-correlation-request-id": [ - "499f83ba-80be-4be4-8f32-4fec10a4c155" + "d2796b67-b320-4202-a787-dcbfd144edae" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T172729Z:499f83ba-80be-4be4-8f32-4fec10a4c155" + "WESTUS:20200925T010442Z:d2796b67-b320-4202-a787-dcbfd144edae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -978,10 +1104,70 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:27:29 GMT" + "Fri, 25 Sep 2020 01:04:41 GMT" ], "Content-Length": [ - "106" + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"b214206a-12db-4baa-9a1f-d0cb78c2cdd3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:03:55.953Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/b214206a-12db-4baa-9a1f-d0cb78c2cdd3?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2IyMTQyMDZhLTEyZGItNGJhYS05YTFmLWQwY2I3OGMyY2RkMz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "b61dcf81-3236-4b0b-a7c4-7380b3e3d9ed" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "984f319a-0b02-4b18-b8a1-e4abaa2363ff" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200925T010502Z:984f319a-0b02-4b18-b8a1-e4abaa2363ff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 25 Sep 2020 01:05:02 GMT" + ], + "Content-Length": [ + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -990,23 +1176,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d7873210-0f97-4bc9-9a90-7c11e70dceb5\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-13T17:26:43.05Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"b214206a-12db-4baa-9a1f-d0cb78c2cdd3\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-25T01:03:55.953Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/servers/ps504/databases/ps166?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjE3My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNTA0L2RhdGFiYXNlcy9wczE2Nj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/servers/ps1697/databases/ps7206?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTY5Ny9kYXRhYmFzZXMvcHM3MjA2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d0b8bce2-5613-420e-9125-468444a5ba7d" + "5c3df082-2b04-4ec0-a068-9cde70c3da35" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1023,13 +1209,13 @@ "gateway" ], "x-ms-request-id": [ - "efdc8000-532f-47e3-9a60-f5c0543e71b7" + "fc2f03e9-36a6-4ebc-95a0-51eeac0af62a" ], "x-ms-correlation-request-id": [ - "efdc8000-532f-47e3-9a60-f5c0543e71b7" + "fc2f03e9-36a6-4ebc-95a0-51eeac0af62a" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T172730Z:efdc8000-532f-47e3-9a60-f5c0543e71b7" + "WESTUS:20200925T010503Z:fc2f03e9-36a6-4ebc-95a0-51eeac0af62a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1038,7 +1224,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:27:30 GMT" + "Fri, 25 Sep 2020 01:05:02 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1047,20 +1233,20 @@ "-1" ], "Content-Length": [ - "221" + "223" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps504/databases/ps166' under resource group 'ps6173' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps1697/databases/ps7206' under resource group 'ps5993' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/servers/ps504/databases/ps166?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjE3My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNTA0L2RhdGFiYXNlcy9wczE2Nj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/servers/ps1697/databases/ps7206?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTY5Ny9kYXRhYmFzZXMvcHM3MjA2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1074,19 +1260,19 @@ "no-cache" ], "x-ms-request-id": [ - "6b7a3b1d-cef0-4803-a260-13d84cbf2438" + "20dfbf3b-fc2a-4f28-b684-ea5852882578" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11980" ], "x-ms-correlation-request-id": [ - "3a006365-e553-4764-9563-e0bb4feaf350" + "d9014e8a-191c-451e-bac6-c67a5d41fc0d" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T172851Z:3a006365-e553-4764-9563-e0bb4feaf350" + "WESTUS:20200925T010638Z:d9014e8a-191c-451e-bac6-c67a5d41fc0d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1095,10 +1281,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:28:50 GMT" + "Fri, 25 Sep 2020 01:06:38 GMT" ], "Content-Length": [ - "859" + "862" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1107,23 +1293,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"a7908321-ee69-4786-9a93-b008ec9a48c0\",\r\n \"creationDate\": \"2020-09-13T17:28:44.363Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-13T17:58:44.363Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/servers/ps504/databases/ps166\",\r\n \"name\": \"ps166\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"324ff496-de5d-45e8-b477-b73accbe95d1\",\r\n \"creationDate\": \"2020-09-25T01:06:34.967Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-25T01:36:34.967Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/servers/ps1697/databases/ps7206\",\r\n \"name\": \"ps7206\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/servers/ps504/databases/ps166?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjE3My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNTA0L2RhdGFiYXNlcy9wczE2Nj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/servers/ps1697/databases/ps7206?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTY5Ny9kYXRhYmFzZXMvcHM3MjA2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1a18420-cf9e-4ccb-aa34-44f5a8ce5cac" + "d37f0f1c-78ec-43c0-bf6c-366e6122afca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1137,19 +1323,19 @@ "no-cache" ], "x-ms-request-id": [ - "7543cafd-4680-4e3b-a44d-657a604a1e3d" + "bcc10946-4b34-4544-bc1e-aa163aa461d5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11969" ], "x-ms-correlation-request-id": [ - "2ac6af7b-a536-4278-a942-b6afede05949" + "42bc38ad-2681-4cc9-a864-cdf381d39a3b" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T173011Z:2ac6af7b-a536-4278-a942-b6afede05949" + "WESTUS:20200925T010759Z:42bc38ad-2681-4cc9-a864-cdf381d39a3b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1158,10 +1344,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:30:11 GMT" + "Fri, 25 Sep 2020 01:07:59 GMT" ], "Content-Length": [ - "859" + "862" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1170,23 +1356,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"a7908321-ee69-4786-9a93-b008ec9a48c0\",\r\n \"creationDate\": \"2020-09-13T17:28:44.363Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-13T17:58:44.363Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/servers/ps504/databases/ps166\",\r\n \"name\": \"ps166\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"324ff496-de5d-45e8-b477-b73accbe95d1\",\r\n \"creationDate\": \"2020-09-25T01:06:34.967Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-25T01:36:34.967Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/servers/ps1697/databases/ps7206\",\r\n \"name\": \"ps7206\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/servers/ps504/databases/ps166?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjE3My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNTA0L2RhdGFiYXNlcy9wczE2Nj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/servers/ps1697/databases/ps7206?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTY5Ny9kYXRhYmFzZXMvcHM3MjA2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "70048c71-215c-47c4-ac2a-cbb246c27a91" + "5e249d0e-3434-46c4-a83f-a6e063b72376" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1200,19 +1386,19 @@ "no-cache" ], "x-ms-request-id": [ - "bdee7464-828c-4cc6-87e1-16b300575e63" + "dc65e64c-f039-4e8d-bdad-3d26c0c79ecd" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11968" ], "x-ms-correlation-request-id": [ - "1e2f80d1-1b23-424c-867f-4b1376136715" + "ebd9e934-9f57-4b62-9a1f-58729c41005a" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T173011Z:1e2f80d1-1b23-424c-867f-4b1376136715" + "WESTUS:20200925T010800Z:ebd9e934-9f57-4b62-9a1f-58729c41005a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1221,10 +1407,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:30:11 GMT" + "Fri, 25 Sep 2020 01:08:00 GMT" ], "Content-Length": [ - "859" + "862" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1233,17 +1419,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"a7908321-ee69-4786-9a93-b008ec9a48c0\",\r\n \"creationDate\": \"2020-09-13T17:28:44.363Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-13T17:58:44.363Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/servers/ps504/databases/ps166\",\r\n \"name\": \"ps166\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"324ff496-de5d-45e8-b477-b73accbe95d1\",\r\n \"creationDate\": \"2020-09-25T01:06:34.967Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-25T01:36:34.967Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/servers/ps1697/databases/ps7206\",\r\n \"name\": \"ps7206\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/servers/ps504/databases/ps166?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjE3My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNTA0L2RhdGFiYXNlcy9wczE2Nj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/servers/ps1697/databases/ps7206?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTY5Ny9kYXRhYmFzZXMvcHM3MjA2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1257,19 +1443,19 @@ "no-cache" ], "x-ms-request-id": [ - "73d0796b-d8b3-496e-897e-d7f3000641ff" + "52c6d238-81f7-4c02-9514-305801d4284d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" + "11958" ], "x-ms-correlation-request-id": [ - "264ab496-89dc-48e4-85eb-00af79b239ac" + "2e1f9b1f-f5f0-46d7-a501-0100f479414c" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T173215Z:264ab496-89dc-48e4-85eb-00af79b239ac" + "WESTUS:20200925T011018Z:2e1f9b1f-f5f0-46d7-a501-0100f479414c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1278,10 +1464,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:32:14 GMT" + "Fri, 25 Sep 2020 01:10:18 GMT" ], "Content-Length": [ - "859" + "862" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1290,23 +1476,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"a7908321-ee69-4786-9a93-b008ec9a48c0\",\r\n \"creationDate\": \"2020-09-13T17:28:44.363Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": true,\r\n \"earliestRestoreDate\": \"2020-09-13T17:58:44.363Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/servers/ps504/databases/ps166\",\r\n \"name\": \"ps166\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"324ff496-de5d-45e8-b477-b73accbe95d1\",\r\n \"creationDate\": \"2020-09-25T01:06:34.967Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": true,\r\n \"earliestRestoreDate\": \"2020-09-25T01:36:34.967Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/servers/ps1697/databases/ps7206\",\r\n \"name\": \"ps7206\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/servers/ps504/databases/ps166?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjE3My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNTA0L2RhdGFiYXNlcy9wczE2Nj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/servers/ps1697/databases/ps7206?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTY5Ny9kYXRhYmFzZXMvcHM3MjA2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"properties\": {\r\n \"maxSizeBytes\": 0,\r\n \"readScale\": \"\"\r\n },\r\n \"location\": \"westeurope\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "33ff1654-52b5-4928-a35b-fcfe7ecc05ee" + "554412e8-5203-410d-bfb2-a8fc60de36e0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1326,16 +1512,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/locations/westeurope/databaseOperationResults/5a71f770-a1c4-4796-b0c9-3d1b11b2a7a3?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/locations/westeurope/databaseOperationResults/52971c5e-0a15-4c1a-ace0-e73271992fc2?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/5a71f770-a1c4-4796-b0c9-3d1b11b2a7a3?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/52971c5e-0a15-4c1a-ace0-e73271992fc2?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "5a71f770-a1c4-4796-b0c9-3d1b11b2a7a3" + "52971c5e-0a15-4c1a-ace0-e73271992fc2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1344,10 +1530,10 @@ "1198" ], "x-ms-correlation-request-id": [ - "b8932e53-52dc-4376-85e3-c4f4992bdd78" + "d852a944-6607-4396-bfbc-009387d8849b" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T172734Z:b8932e53-52dc-4376-85e3-c4f4992bdd78" + "WESTUS:20200925T010506Z:d852a944-6607-4396-bfbc-009387d8849b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1356,10 +1542,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:27:34 GMT" + "Fri, 25 Sep 2020 01:05:05 GMT" ], "Content-Length": [ - "76" + "75" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1368,23 +1554,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2020-09-13T17:27:34.097Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2020-09-25T01:05:06.61Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/servers/ps504/databases/ps166?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjE3My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNTA0L2RhdGFiYXNlcy9wczE2Nj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/servers/ps1697/databases/ps7206?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTY5Ny9kYXRhYmFzZXMvcHM3MjA2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": 0,\r\n \"zoneRedundant\": true,\r\n \"readScale\": \"Disabled\"\r\n },\r\n \"location\": \"westeurope\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "457445b4-def9-4af7-9fde-227f001e07ad" + "33bbf157-a31c-44be-bf23-55849d4dfa16" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1404,16 +1590,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/locations/westeurope/databaseOperationResults/2eab5d0a-4f15-460c-a4b1-f40b34ebd9a8?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/locations/westeurope/databaseOperationResults/9b6451aa-8000-4d42-93e5-a80925355fc0?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/2eab5d0a-4f15-460c-a4b1-f40b34ebd9a8?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/9b6451aa-8000-4d42-93e5-a80925355fc0?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "c9ec3472-8c13-4326-8ff2-94b95d24358c" + "9b6451aa-8000-4d42-93e5-a80925355fc0" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1422,10 +1608,10 @@ "1196" ], "x-ms-correlation-request-id": [ - "76137414-e0b2-447e-a886-443b48de744d" + "46f81b75-e992-40e7-903b-7dde237c1e49" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T173012Z:76137414-e0b2-447e-a886-443b48de744d" + "WESTUS:20200925T010800Z:46f81b75-e992-40e7-903b-7dde237c1e49" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1434,7 +1620,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:30:12 GMT" + "Fri, 25 Sep 2020 01:08:00 GMT" ], "Content-Length": [ "76" @@ -1446,17 +1632,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-09-13T17:30:12.833Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-09-25T01:08:00.853Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/5a71f770-a1c4-4796-b0c9-3d1b11b2a7a3?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjE3My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNWE3MWY3NzAtYTFjNC00Nzk2LWIwYzktM2QxYjExYjJhN2EzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/52971c5e-0a15-4c1a-ace0-e73271992fc2?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNTI5NzFjNWUtMGExNS00YzFhLWFjZTAtZTczMjcxOTkyZmMyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1473,19 +1659,19 @@ "15" ], "x-ms-request-id": [ - "f8d68386-3eff-4a6a-b9c9-405afcde879d" + "dcfe112e-4400-4664-bacb-c01f266aa15e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11986" ], "x-ms-correlation-request-id": [ - "2ad7a6b4-2c15-49c0-b4e3-d6d11513a8b9" + "d6b441fd-b561-4b0f-8896-e07db057535f" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T172749Z:2ad7a6b4-2c15-49c0-b4e3-d6d11513a8b9" + "WESTUS:20200925T010521Z:d6b441fd-b561-4b0f-8896-e07db057535f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1494,10 +1680,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:27:49 GMT" + "Fri, 25 Sep 2020 01:05:21 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1506,17 +1692,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"5a71f770-a1c4-4796-b0c9-3d1b11b2a7a3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T17:27:34.097Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"52971c5e-0a15-4c1a-ace0-e73271992fc2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:05:06.61Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/5a71f770-a1c4-4796-b0c9-3d1b11b2a7a3?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjE3My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNWE3MWY3NzAtYTFjNC00Nzk2LWIwYzktM2QxYjExYjJhN2EzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/52971c5e-0a15-4c1a-ace0-e73271992fc2?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNTI5NzFjNWUtMGExNS00YzFhLWFjZTAtZTczMjcxOTkyZmMyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1533,19 +1719,19 @@ "15" ], "x-ms-request-id": [ - "a59a4ab2-2aad-4ba3-b047-4199989b901e" + "e9ee8543-01de-4181-bb6e-064974958d49" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11985" ], "x-ms-correlation-request-id": [ - "74a41f08-089e-4d44-97ef-9e5161d404ff" + "66e59fd0-41cc-4d66-b845-8cf54f0ab012" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T172805Z:74a41f08-089e-4d44-97ef-9e5161d404ff" + "WESTUS:20200925T010537Z:66e59fd0-41cc-4d66-b845-8cf54f0ab012" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1554,10 +1740,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:28:04 GMT" + "Fri, 25 Sep 2020 01:05:36 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1566,17 +1752,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"5a71f770-a1c4-4796-b0c9-3d1b11b2a7a3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T17:27:34.097Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"52971c5e-0a15-4c1a-ace0-e73271992fc2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:05:06.61Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/5a71f770-a1c4-4796-b0c9-3d1b11b2a7a3?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjE3My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNWE3MWY3NzAtYTFjNC00Nzk2LWIwYzktM2QxYjExYjJhN2EzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/52971c5e-0a15-4c1a-ace0-e73271992fc2?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNTI5NzFjNWUtMGExNS00YzFhLWFjZTAtZTczMjcxOTkyZmMyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1593,19 +1779,19 @@ "15" ], "x-ms-request-id": [ - "2ac2ede8-2b0e-4e12-825b-8f09190e845c" + "9dcd68cc-78af-4bb4-89fc-eb93d2807df7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11984" ], "x-ms-correlation-request-id": [ - "605f903e-acb5-404f-8ecc-a70f04c2ed49" + "82a0a6a3-7ed3-438b-807f-00197262e7b2" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T172820Z:605f903e-acb5-404f-8ecc-a70f04c2ed49" + "WESTUS:20200925T010552Z:82a0a6a3-7ed3-438b-807f-00197262e7b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1614,10 +1800,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:28:19 GMT" + "Fri, 25 Sep 2020 01:05:51 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1626,17 +1812,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"5a71f770-a1c4-4796-b0c9-3d1b11b2a7a3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T17:27:34.097Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"52971c5e-0a15-4c1a-ace0-e73271992fc2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:05:06.61Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/5a71f770-a1c4-4796-b0c9-3d1b11b2a7a3?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjE3My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNWE3MWY3NzAtYTFjNC00Nzk2LWIwYzktM2QxYjExYjJhN2EzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/52971c5e-0a15-4c1a-ace0-e73271992fc2?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNTI5NzFjNWUtMGExNS00YzFhLWFjZTAtZTczMjcxOTkyZmMyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1653,19 +1839,19 @@ "15" ], "x-ms-request-id": [ - "1287bb95-c548-4cfd-ae31-466ee0a3aa2e" + "25b5b30b-7855-44da-9dfe-c4baea7e0366" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11983" ], "x-ms-correlation-request-id": [ - "e7a615c4-3507-4393-b3df-5bb26871a252" + "865d9dec-b29d-48a5-958b-8d0fd1eb3182" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T172835Z:e7a615c4-3507-4393-b3df-5bb26871a252" + "WESTUS:20200925T010608Z:865d9dec-b29d-48a5-958b-8d0fd1eb3182" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1674,10 +1860,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:28:35 GMT" + "Fri, 25 Sep 2020 01:06:07 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1686,17 +1872,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"5a71f770-a1c4-4796-b0c9-3d1b11b2a7a3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T17:27:34.097Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"52971c5e-0a15-4c1a-ace0-e73271992fc2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:05:06.61Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/5a71f770-a1c4-4796-b0c9-3d1b11b2a7a3?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjE3My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNWE3MWY3NzAtYTFjNC00Nzk2LWIwYzktM2QxYjExYjJhN2EzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/52971c5e-0a15-4c1a-ace0-e73271992fc2?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNTI5NzFjNWUtMGExNS00YzFhLWFjZTAtZTczMjcxOTkyZmMyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1713,19 +1899,19 @@ "15" ], "x-ms-request-id": [ - "28910c71-55d3-4b0e-bd07-bd1ae6988a22" + "ceea9d4d-f680-4bdb-9c80-88d68b04ceef" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11982" ], "x-ms-correlation-request-id": [ - "e003b866-0e7d-44c2-b020-ecb666431580" + "5f528e1a-9df6-44c4-908d-ff9a12bc24fa" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T172850Z:e003b866-0e7d-44c2-b020-ecb666431580" + "WESTUS:20200925T010623Z:5f528e1a-9df6-44c4-908d-ff9a12bc24fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1734,7 +1920,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:28:50 GMT" + "Fri, 25 Sep 2020 01:06:22 GMT" ], "Content-Length": [ "107" @@ -1746,23 +1932,83 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"5a71f770-a1c4-4796-b0c9-3d1b11b2a7a3\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-13T17:27:34.097Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"52971c5e-0a15-4c1a-ace0-e73271992fc2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:05:06.61Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/52971c5e-0a15-4c1a-ace0-e73271992fc2?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNTI5NzFjNWUtMGExNS00YzFhLWFjZTAtZTczMjcxOTkyZmMyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "eda6cc35-e99b-40a6-a253-0151813d6125" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-correlation-request-id": [ + "a71649d9-fd01-4ab9-9800-b27243d48218" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200925T010638Z:a71649d9-fd01-4ab9-9800-b27243d48218" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 25 Sep 2020 01:06:38 GMT" + ], + "Content-Length": [ + "106" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"52971c5e-0a15-4c1a-ace0-e73271992fc2\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-25T01:05:06.61Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/servers/ps504/databases/ps7129?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjE3My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNTA0L2RhdGFiYXNlcy9wczcxMjk/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/servers/ps1697/databases/ps9801?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTY5Ny9kYXRhYmFzZXMvcHM5ODAxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "63b712d0-1c70-4394-910f-040e4f95d3b4" + "692e6d50-b411-4709-bca4-ca797c22bf60" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1779,13 +2025,13 @@ "gateway" ], "x-ms-request-id": [ - "0eb7b0b7-9b9c-486f-b028-4a8e86876df2" + "248539ad-2f23-4c17-8563-4dc1b3f0823b" ], "x-ms-correlation-request-id": [ - "0eb7b0b7-9b9c-486f-b028-4a8e86876df2" + "248539ad-2f23-4c17-8563-4dc1b3f0823b" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T172851Z:0eb7b0b7-9b9c-486f-b028-4a8e86876df2" + "WESTUS:20200925T010639Z:248539ad-2f23-4c17-8563-4dc1b3f0823b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1794,7 +2040,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:28:50 GMT" + "Fri, 25 Sep 2020 01:06:38 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1803,20 +2049,20 @@ "-1" ], "Content-Length": [ - "222" + "223" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps504/databases/ps7129' under resource group 'ps6173' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps1697/databases/ps9801' under resource group 'ps5993' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/servers/ps504/databases/ps7129?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjE3My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNTA0L2RhdGFiYXNlcy9wczcxMjk/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/servers/ps1697/databases/ps9801?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTY5Ny9kYXRhYmFzZXMvcHM5ODAxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1830,19 +2076,19 @@ "no-cache" ], "x-ms-request-id": [ - "a9ca80a7-71f6-4636-b331-310166b559e3" + "c57a6f08-0482-4c93-afd9-2e25691324d1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11971" ], "x-ms-correlation-request-id": [ - "9d3b2a11-fe6c-4cba-98f1-740c7f8d726c" + "78ed8500-0768-42a5-a21d-4f2370c036ff" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T173011Z:9d3b2a11-fe6c-4cba-98f1-740c7f8d726c" + "WESTUS:20200925T010759Z:78ed8500-0768-42a5-a21d-4f2370c036ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1851,10 +2097,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:30:11 GMT" + "Fri, 25 Sep 2020 01:07:59 GMT" ], "Content-Length": [ - "860" + "861" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1863,23 +2109,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"383b562b-2565-49c0-9082-d5a2a3fb132b\",\r\n \"creationDate\": \"2020-09-13T17:30:05.833Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": true,\r\n \"earliestRestoreDate\": \"2020-09-13T18:00:05.833Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/servers/ps504/databases/ps7129\",\r\n \"name\": \"ps7129\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"7c461ffb-21f7-4b01-b979-cede52f30744\",\r\n \"creationDate\": \"2020-09-25T01:07:53.873Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": true,\r\n \"earliestRestoreDate\": \"2020-09-25T01:37:53.873Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/servers/ps1697/databases/ps9801\",\r\n \"name\": \"ps9801\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/servers/ps504/databases/ps7129?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjE3My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNTA0L2RhdGFiYXNlcy9wczcxMjk/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/servers/ps1697/databases/ps9801?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTY5Ny9kYXRhYmFzZXMvcHM5ODAxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fa2735ac-00c5-4ea0-bd0e-0a5c44dcd6ef" + "8f515adb-5731-4934-a1a9-8d00d3d022fe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1893,19 +2139,19 @@ "no-cache" ], "x-ms-request-id": [ - "1dd48b1a-8f5b-4d60-8a4a-6d2cdca95ebd" + "73ac317b-f4e1-486a-a572-d994b1c60787" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" + "11956" ], "x-ms-correlation-request-id": [ - "5b70e4e7-85d8-4811-8f92-fd068151cc06" + "81a3d8f5-e042-4400-9054-d4f28732295a" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T173215Z:5b70e4e7-85d8-4811-8f92-fd068151cc06" + "WESTUS:20200925T011019Z:81a3d8f5-e042-4400-9054-d4f28732295a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1914,10 +2160,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:32:14 GMT" + "Fri, 25 Sep 2020 01:10:18 GMT" ], "Content-Length": [ - "856" + "857" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1926,23 +2172,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"383b562b-2565-49c0-9082-d5a2a3fb132b\",\r\n \"creationDate\": \"2020-09-13T17:30:05.833Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": true,\r\n \"earliestRestoreDate\": \"2020-09-13T17:31:46Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/servers/ps504/databases/ps7129\",\r\n \"name\": \"ps7129\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"7c461ffb-21f7-4b01-b979-cede52f30744\",\r\n \"creationDate\": \"2020-09-25T01:07:53.873Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": true,\r\n \"earliestRestoreDate\": \"2020-09-25T01:09:06Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/servers/ps1697/databases/ps9801\",\r\n \"name\": \"ps9801\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/servers/ps504/databases/ps7129?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjE3My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNTA0L2RhdGFiYXNlcy9wczcxMjk/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/servers/ps1697/databases/ps9801?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTY5Ny9kYXRhYmFzZXMvcHM5ODAxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fbd2a609-a447-4d54-a5b0-9cd7ca385e4c" + "8cd29366-50cd-485b-a10c-410766e94a96" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1956,19 +2202,19 @@ "no-cache" ], "x-ms-request-id": [ - "8035cfd0-e9bc-4853-9b11-d2cc119b7566" + "6c687123-8f37-4c18-aadb-d094af86e48e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "11955" ], "x-ms-correlation-request-id": [ - "ef7933d5-c521-40b3-9099-bc1368f84ee4" + "204e0b5b-b74b-4676-a044-ff3c1b7c2e20" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T173216Z:ef7933d5-c521-40b3-9099-bc1368f84ee4" + "WESTUS:20200925T011019Z:204e0b5b-b74b-4676-a044-ff3c1b7c2e20" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1977,10 +2223,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:32:15 GMT" + "Fri, 25 Sep 2020 01:10:19 GMT" ], "Content-Length": [ - "856" + "857" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1989,17 +2235,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"383b562b-2565-49c0-9082-d5a2a3fb132b\",\r\n \"creationDate\": \"2020-09-13T17:30:05.833Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": true,\r\n \"earliestRestoreDate\": \"2020-09-13T17:31:46Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/servers/ps504/databases/ps7129\",\r\n \"name\": \"ps7129\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"7c461ffb-21f7-4b01-b979-cede52f30744\",\r\n \"creationDate\": \"2020-09-25T01:07:53.873Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": true,\r\n \"earliestRestoreDate\": \"2020-09-25T01:09:06Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/servers/ps1697/databases/ps9801\",\r\n \"name\": \"ps9801\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/servers/ps504/databases/ps7129?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjE3My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNTA0L2RhdGFiYXNlcy9wczcxMjk/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/servers/ps1697/databases/ps9801?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTY5Ny9kYXRhYmFzZXMvcHM5ODAxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2013,19 +2259,19 @@ "no-cache" ], "x-ms-request-id": [ - "628f2c30-548a-49dd-b288-177fcaafa579" + "edf39166-12c2-4177-8530-bb169cd080e6" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11950" + "11947" ], "x-ms-correlation-request-id": [ - "75c13fda-b055-49bf-9df9-9ae0d3446613" + "384fd3d7-51a0-4943-9930-5abfff151244" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T173434Z:75c13fda-b055-49bf-9df9-9ae0d3446613" + "WESTUS:20200925T011207Z:384fd3d7-51a0-4943-9930-5abfff151244" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2034,10 +2280,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:34:34 GMT" + "Fri, 25 Sep 2020 01:12:07 GMT" ], "Content-Length": [ - "858" + "859" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2046,23 +2292,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"383b562b-2565-49c0-9082-d5a2a3fb132b\",\r\n \"creationDate\": \"2020-09-13T17:30:05.833Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-13T17:31:46Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/servers/ps504/databases/ps7129\",\r\n \"name\": \"ps7129\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"7c461ffb-21f7-4b01-b979-cede52f30744\",\r\n \"creationDate\": \"2020-09-25T01:07:53.873Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-25T01:09:06Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/servers/ps1697/databases/ps9801\",\r\n \"name\": \"ps9801\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/servers/ps504/databases/ps7129?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjE3My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNTA0L2RhdGFiYXNlcy9wczcxMjk/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/servers/ps1697/databases/ps9801?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTY5Ny9kYXRhYmFzZXMvcHM5ODAxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"properties\": {\r\n \"maxSizeBytes\": 0,\r\n \"zoneRedundant\": true,\r\n \"readScale\": \"\"\r\n },\r\n \"location\": \"westeurope\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fbba72fb-9d9c-4556-9c24-9b03aff19513" + "6de365be-88a6-4288-a080-f26e0d920e16" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2082,16 +2328,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/locations/westeurope/databaseOperationResults/c29928ed-3c45-4633-94c2-1488619bff5f?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/locations/westeurope/databaseOperationResults/21988c9c-10cb-462e-adc8-f0c528537464?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/c29928ed-3c45-4633-94c2-1488619bff5f?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/21988c9c-10cb-462e-adc8-f0c528537464?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "c29928ed-3c45-4633-94c2-1488619bff5f" + "21988c9c-10cb-462e-adc8-f0c528537464" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2100,10 +2346,10 @@ "1197" ], "x-ms-correlation-request-id": [ - "4d5eb27d-321a-4af4-ba82-7bb4ab90a7b7" + "8389555d-50b0-41e5-b75d-bc995a730955" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T172855Z:4d5eb27d-321a-4af4-ba82-7bb4ab90a7b7" + "WESTUS:20200925T010642Z:8389555d-50b0-41e5-b75d-bc995a730955" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2112,10 +2358,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:28:54 GMT" + "Fri, 25 Sep 2020 01:06:42 GMT" ], "Content-Length": [ - "76" + "75" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2124,23 +2370,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2020-09-13T17:28:55.023Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2020-09-25T01:06:42.25Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/servers/ps504/databases/ps7129?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjE3My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNTA0L2RhdGFiYXNlcy9wczcxMjk/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/servers/ps1697/databases/ps9801?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTY5Ny9kYXRhYmFzZXMvcHM5ODAxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": 0,\r\n \"zoneRedundant\": false,\r\n \"readScale\": \"Disabled\"\r\n },\r\n \"location\": \"westeurope\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5b0a5f60-9534-479f-aa02-69884fe1e3b7" + "1b9cd5a1-acf3-4690-b833-e3674287e3d4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2160,16 +2406,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/locations/westeurope/databaseOperationResults/19bba45d-41e8-45f1-95f2-fb1cecf37612?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/locations/westeurope/databaseOperationResults/fdfedb2b-f696-43b9-b9d9-d68048d6f3ab?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/19bba45d-41e8-45f1-95f2-fb1cecf37612?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/fdfedb2b-f696-43b9-b9d9-d68048d6f3ab?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "4223edf1-2c36-4a94-b1c6-ed7a60f2247a" + "fdfedb2b-f696-43b9-b9d9-d68048d6f3ab" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2178,10 +2424,10 @@ "1195" ], "x-ms-correlation-request-id": [ - "4766d1c0-b5c8-464e-ac71-34a794ccca2a" + "1985572b-5642-42a9-b19b-af81b8756b83" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T173217Z:4766d1c0-b5c8-464e-ac71-34a794ccca2a" + "WESTUS:20200925T011020Z:1985572b-5642-42a9-b19b-af81b8756b83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2190,7 +2436,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:32:16 GMT" + "Fri, 25 Sep 2020 01:10:20 GMT" ], "Content-Length": [ "76" @@ -2202,17 +2448,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-09-13T17:32:17.147Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-09-25T01:10:20.093Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/c29928ed-3c45-4633-94c2-1488619bff5f?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjE3My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYzI5OTI4ZWQtM2M0NS00NjMzLTk0YzItMTQ4ODYxOWJmZjVmP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/21988c9c-10cb-462e-adc8-f0c528537464?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMjE5ODhjOWMtMTBjYi00NjJlLWFkYzgtZjBjNTI4NTM3NDY0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2229,79 +2475,19 @@ "15" ], "x-ms-request-id": [ - "0a5f9dca-2c1a-4767-b200-669cdd6d3437" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "41986e6a-751b-4b9a-ac15-8657d65f0b80" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" - ], - "x-ms-correlation-request-id": [ - "bdaab128-418d-42f0-bae6-1e3be6116a64" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200913T172910Z:bdaab128-418d-42f0-bae6-1e3be6116a64" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sun, 13 Sep 2020 17:29:09 GMT" - ], - "Content-Length": [ - "108" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"c29928ed-3c45-4633-94c2-1488619bff5f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T17:28:55.023Z\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/c29928ed-3c45-4633-94c2-1488619bff5f?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjE3My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYzI5OTI4ZWQtM2M0NS00NjMzLTk0YzItMTQ4ODYxOWJmZjVmP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "a5f225cb-f884-4195-ac82-b1d831787760" + "11976" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" - ], "x-ms-correlation-request-id": [ - "239c535d-7e66-4fe0-9a3e-6f8f01e593fd" + "de7293a2-74b7-431c-8349-fc984aa86b11" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T172925Z:239c535d-7e66-4fe0-9a3e-6f8f01e593fd" + "WESTUS:20200925T010657Z:de7293a2-74b7-431c-8349-fc984aa86b11" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2310,10 +2496,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:29:24 GMT" + "Fri, 25 Sep 2020 01:06:57 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2322,17 +2508,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"c29928ed-3c45-4633-94c2-1488619bff5f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T17:28:55.023Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"21988c9c-10cb-462e-adc8-f0c528537464\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:06:42.25Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/c29928ed-3c45-4633-94c2-1488619bff5f?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjE3My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYzI5OTI4ZWQtM2M0NS00NjMzLTk0YzItMTQ4ODYxOWJmZjVmP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/21988c9c-10cb-462e-adc8-f0c528537464?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMjE5ODhjOWMtMTBjYi00NjJlLWFkYzgtZjBjNTI4NTM3NDY0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2349,19 +2535,19 @@ "15" ], "x-ms-request-id": [ - "3f8d4a1f-8e98-4377-99de-a7c0687d884d" + "0492c234-53bb-483b-9ccf-fdffdc1afdd4" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11975" ], "x-ms-correlation-request-id": [ - "9766b953-fc58-43dc-89d2-af05c9a38dd7" + "039c8874-22a3-44e6-99fe-c9b78c868d83" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T172940Z:9766b953-fc58-43dc-89d2-af05c9a38dd7" + "WESTUS:20200925T010713Z:039c8874-22a3-44e6-99fe-c9b78c868d83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2370,10 +2556,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:29:39 GMT" + "Fri, 25 Sep 2020 01:07:12 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2382,17 +2568,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"c29928ed-3c45-4633-94c2-1488619bff5f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T17:28:55.023Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"21988c9c-10cb-462e-adc8-f0c528537464\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:06:42.25Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/c29928ed-3c45-4633-94c2-1488619bff5f?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjE3My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYzI5OTI4ZWQtM2M0NS00NjMzLTk0YzItMTQ4ODYxOWJmZjVmP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/21988c9c-10cb-462e-adc8-f0c528537464?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMjE5ODhjOWMtMTBjYi00NjJlLWFkYzgtZjBjNTI4NTM3NDY0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2409,19 +2595,19 @@ "15" ], "x-ms-request-id": [ - "3241dde7-b476-4397-a320-ad8ea3ddd101" + "06bee001-54c7-4aa1-8406-a43a3e369e47" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11974" ], "x-ms-correlation-request-id": [ - "98cf7dc8-440d-4a3c-8f68-430564f63ea2" + "6a288404-e4ec-4249-99b2-fc47f3a3138d" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T172956Z:98cf7dc8-440d-4a3c-8f68-430564f63ea2" + "WESTUS:20200925T010728Z:6a288404-e4ec-4249-99b2-fc47f3a3138d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2430,10 +2616,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:29:55 GMT" + "Fri, 25 Sep 2020 01:07:27 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2442,17 +2628,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"c29928ed-3c45-4633-94c2-1488619bff5f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T17:28:55.023Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"21988c9c-10cb-462e-adc8-f0c528537464\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:06:42.25Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/c29928ed-3c45-4633-94c2-1488619bff5f?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjE3My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYzI5OTI4ZWQtM2M0NS00NjMzLTk0YzItMTQ4ODYxOWJmZjVmP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/21988c9c-10cb-462e-adc8-f0c528537464?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMjE5ODhjOWMtMTBjYi00NjJlLWFkYzgtZjBjNTI4NTM3NDY0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2469,19 +2655,19 @@ "15" ], "x-ms-request-id": [ - "fd34becc-603c-4e12-8717-ee9668605a39" + "20ef7ce0-1265-469b-81de-0e7a1983c1b7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11973" ], "x-ms-correlation-request-id": [ - "38f3cdab-45bd-45d1-a48b-4339f09e3a25" + "db519f31-d541-4ea4-b5f5-711da8040103" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T173011Z:38f3cdab-45bd-45d1-a48b-4339f09e3a25" + "WESTUS:20200925T010743Z:db519f31-d541-4ea4-b5f5-711da8040103" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2490,7 +2676,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:30:11 GMT" + "Fri, 25 Sep 2020 01:07:43 GMT" ], "Content-Length": [ "107" @@ -2502,17 +2688,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"c29928ed-3c45-4633-94c2-1488619bff5f\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-13T17:28:55.023Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"21988c9c-10cb-462e-adc8-f0c528537464\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:06:42.25Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/2eab5d0a-4f15-460c-a4b1-f40b34ebd9a8?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjE3My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMmVhYjVkMGEtNGYxNS00NjBjLWE0YjEtZjQwYjM0ZWJkOWE4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/21988c9c-10cb-462e-adc8-f0c528537464?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMjE5ODhjOWMtMTBjYi00NjJlLWFkYzgtZjBjNTI4NTM3NDY0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2529,19 +2715,19 @@ "15" ], "x-ms-request-id": [ - "8de92bf0-2fe1-4689-b6e1-b448f07f5810" + "a07aae8b-00de-49df-b50b-6d25f8616f2a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11972" ], "x-ms-correlation-request-id": [ - "a4b69ca3-dacf-49cf-9b41-04a8318aa777" + "842223d8-ca11-43be-a71f-c5202c659837" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T173028Z:a4b69ca3-dacf-49cf-9b41-04a8318aa777" + "WESTUS:20200925T010759Z:842223d8-ca11-43be-a71f-c5202c659837" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2550,10 +2736,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:30:27 GMT" + "Fri, 25 Sep 2020 01:07:59 GMT" ], "Content-Length": [ - "108" + "106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2562,17 +2748,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"2eab5d0a-4f15-460c-a4b1-f40b34ebd9a8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T17:30:12.833Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"21988c9c-10cb-462e-adc8-f0c528537464\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-25T01:06:42.25Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/2eab5d0a-4f15-460c-a4b1-f40b34ebd9a8?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjE3My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMmVhYjVkMGEtNGYxNS00NjBjLWE0YjEtZjQwYjM0ZWJkOWE4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/9b6451aa-8000-4d42-93e5-a80925355fc0?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vOWI2NDUxYWEtODAwMC00ZDQyLTkzZTUtYTgwOTI1MzU1ZmMwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2589,19 +2775,19 @@ "15" ], "x-ms-request-id": [ - "aaa311c1-5b17-4805-b19e-dd2665e7ca7f" + "24993791-01b7-4759-b299-f1a39837a599" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11967" ], "x-ms-correlation-request-id": [ - "a1c2c54c-2266-45fa-8e65-64cf19c712af" + "b6ef58d5-c21a-4722-b6cc-a903445fb62a" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T173043Z:a1c2c54c-2266-45fa-8e65-64cf19c712af" + "WESTUS:20200925T010816Z:b6ef58d5-c21a-4722-b6cc-a903445fb62a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2610,7 +2796,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:30:42 GMT" + "Fri, 25 Sep 2020 01:08:16 GMT" ], "Content-Length": [ "108" @@ -2622,17 +2808,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"2eab5d0a-4f15-460c-a4b1-f40b34ebd9a8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T17:30:12.833Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"9b6451aa-8000-4d42-93e5-a80925355fc0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:08:00.853Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/2eab5d0a-4f15-460c-a4b1-f40b34ebd9a8?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjE3My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMmVhYjVkMGEtNGYxNS00NjBjLWE0YjEtZjQwYjM0ZWJkOWE4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/9b6451aa-8000-4d42-93e5-a80925355fc0?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vOWI2NDUxYWEtODAwMC00ZDQyLTkzZTUtYTgwOTI1MzU1ZmMwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2649,19 +2835,19 @@ "15" ], "x-ms-request-id": [ - "bd166fe2-1206-47e1-941b-15368484edb1" + "edea38a9-2a63-4235-b74c-6f988fee7b6b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11966" ], "x-ms-correlation-request-id": [ - "1a5ba6ff-f754-4082-beed-3d781abe88f9" + "87b48f34-43dc-46b2-8495-81c072c2bf95" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T173058Z:1a5ba6ff-f754-4082-beed-3d781abe88f9" + "WESTUS:20200925T010831Z:87b48f34-43dc-46b2-8495-81c072c2bf95" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2670,7 +2856,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:30:58 GMT" + "Fri, 25 Sep 2020 01:08:31 GMT" ], "Content-Length": [ "108" @@ -2682,17 +2868,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"2eab5d0a-4f15-460c-a4b1-f40b34ebd9a8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T17:30:12.833Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"9b6451aa-8000-4d42-93e5-a80925355fc0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:08:00.853Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/2eab5d0a-4f15-460c-a4b1-f40b34ebd9a8?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjE3My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMmVhYjVkMGEtNGYxNS00NjBjLWE0YjEtZjQwYjM0ZWJkOWE4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/9b6451aa-8000-4d42-93e5-a80925355fc0?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vOWI2NDUxYWEtODAwMC00ZDQyLTkzZTUtYTgwOTI1MzU1ZmMwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2709,19 +2895,19 @@ "15" ], "x-ms-request-id": [ - "bc9b44e8-9368-40a9-9e70-dd5a57c54103" + "28db3ed7-8751-4807-9e44-0b2717854133" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11965" ], "x-ms-correlation-request-id": [ - "92aa45b5-f6f8-47fb-8215-a3164ec959b2" + "b9ba5df6-0e04-45a9-b4ef-7a5dce8e676b" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T173113Z:92aa45b5-f6f8-47fb-8215-a3164ec959b2" + "WESTUS:20200925T010846Z:b9ba5df6-0e04-45a9-b4ef-7a5dce8e676b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2730,7 +2916,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:31:13 GMT" + "Fri, 25 Sep 2020 01:08:46 GMT" ], "Content-Length": [ "108" @@ -2742,17 +2928,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"2eab5d0a-4f15-460c-a4b1-f40b34ebd9a8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T17:30:12.833Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"9b6451aa-8000-4d42-93e5-a80925355fc0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:08:00.853Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/2eab5d0a-4f15-460c-a4b1-f40b34ebd9a8?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjE3My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMmVhYjVkMGEtNGYxNS00NjBjLWE0YjEtZjQwYjM0ZWJkOWE4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/9b6451aa-8000-4d42-93e5-a80925355fc0?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vOWI2NDUxYWEtODAwMC00ZDQyLTkzZTUtYTgwOTI1MzU1ZmMwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2769,19 +2955,19 @@ "15" ], "x-ms-request-id": [ - "76fc100c-834f-4a93-9b0b-5a90381c634f" + "d5d8489b-35ea-4ae5-8a9d-786533e732b7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11964" ], "x-ms-correlation-request-id": [ - "e91a9811-3478-4698-8ca1-d2f885befd9a" + "4d12bfc1-f6c4-496e-8219-1a0ef61d79d8" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T173129Z:e91a9811-3478-4698-8ca1-d2f885befd9a" + "WESTUS:20200925T010902Z:4d12bfc1-f6c4-496e-8219-1a0ef61d79d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2790,7 +2976,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:31:28 GMT" + "Fri, 25 Sep 2020 01:09:01 GMT" ], "Content-Length": [ "108" @@ -2802,17 +2988,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"2eab5d0a-4f15-460c-a4b1-f40b34ebd9a8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T17:30:12.833Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"9b6451aa-8000-4d42-93e5-a80925355fc0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:08:00.853Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/2eab5d0a-4f15-460c-a4b1-f40b34ebd9a8?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjE3My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMmVhYjVkMGEtNGYxNS00NjBjLWE0YjEtZjQwYjM0ZWJkOWE4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/9b6451aa-8000-4d42-93e5-a80925355fc0?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vOWI2NDUxYWEtODAwMC00ZDQyLTkzZTUtYTgwOTI1MzU1ZmMwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2829,19 +3015,19 @@ "15" ], "x-ms-request-id": [ - "f76ce9cb-fa0f-4979-9043-0a82480d0263" + "4164bccb-abab-40ac-80a0-f6348844dcdf" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11963" ], "x-ms-correlation-request-id": [ - "c3c83f1d-6791-4d9f-b701-9df91fd5356e" + "6bbefc59-4a3e-4939-ac91-9f58713fa442" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T173144Z:c3c83f1d-6791-4d9f-b701-9df91fd5356e" + "WESTUS:20200925T010917Z:6bbefc59-4a3e-4939-ac91-9f58713fa442" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2850,7 +3036,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:31:44 GMT" + "Fri, 25 Sep 2020 01:09:16 GMT" ], "Content-Length": [ "108" @@ -2862,17 +3048,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"2eab5d0a-4f15-460c-a4b1-f40b34ebd9a8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T17:30:12.833Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"9b6451aa-8000-4d42-93e5-a80925355fc0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:08:00.853Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/2eab5d0a-4f15-460c-a4b1-f40b34ebd9a8?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjE3My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMmVhYjVkMGEtNGYxNS00NjBjLWE0YjEtZjQwYjM0ZWJkOWE4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/9b6451aa-8000-4d42-93e5-a80925355fc0?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vOWI2NDUxYWEtODAwMC00ZDQyLTkzZTUtYTgwOTI1MzU1ZmMwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2889,19 +3075,19 @@ "15" ], "x-ms-request-id": [ - "23bbc0ca-452d-4c64-98d9-885efcf1d1f4" + "b8b736c0-4917-4c75-9f15-4944bc6efb6b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11962" ], "x-ms-correlation-request-id": [ - "7e419f73-f93c-4a91-a5b5-85dc78b2c1bd" + "1fed6eaa-b189-4d07-8a01-5f31306d4e65" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T173200Z:7e419f73-f93c-4a91-a5b5-85dc78b2c1bd" + "WESTUS:20200925T010932Z:1fed6eaa-b189-4d07-8a01-5f31306d4e65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2910,7 +3096,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:31:59 GMT" + "Fri, 25 Sep 2020 01:09:31 GMT" ], "Content-Length": [ "108" @@ -2922,17 +3108,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"2eab5d0a-4f15-460c-a4b1-f40b34ebd9a8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T17:30:12.833Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"9b6451aa-8000-4d42-93e5-a80925355fc0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:08:00.853Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/2eab5d0a-4f15-460c-a4b1-f40b34ebd9a8?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjE3My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMmVhYjVkMGEtNGYxNS00NjBjLWE0YjEtZjQwYjM0ZWJkOWE4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/9b6451aa-8000-4d42-93e5-a80925355fc0?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vOWI2NDUxYWEtODAwMC00ZDQyLTkzZTUtYTgwOTI1MzU1ZmMwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2949,19 +3135,19 @@ "15" ], "x-ms-request-id": [ - "727cda61-d828-4415-b455-ad33968f2f7f" + "aa6cf725-3565-4d4c-a890-3b33103b0698" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11961" ], "x-ms-correlation-request-id": [ - "299c79d5-19a9-40b5-9297-2e2e1ac2075f" + "f230a85a-b391-4d25-afcf-73a02c7c8a0a" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T173215Z:299c79d5-19a9-40b5-9297-2e2e1ac2075f" + "WESTUS:20200925T010947Z:f230a85a-b391-4d25-afcf-73a02c7c8a0a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2970,10 +3156,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:32:14 GMT" + "Fri, 25 Sep 2020 01:09:47 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2982,17 +3168,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"2eab5d0a-4f15-460c-a4b1-f40b34ebd9a8\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-13T17:30:12.833Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"9b6451aa-8000-4d42-93e5-a80925355fc0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:08:00.853Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/19bba45d-41e8-45f1-95f2-fb1cecf37612?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjE3My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMTliYmE0NWQtNDFlOC00NWYxLTk1ZjItZmIxY2VjZjM3NjEyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/9b6451aa-8000-4d42-93e5-a80925355fc0?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vOWI2NDUxYWEtODAwMC00ZDQyLTkzZTUtYTgwOTI1MzU1ZmMwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -3009,19 +3195,19 @@ "15" ], "x-ms-request-id": [ - "6745f1db-38ee-4a21-9477-5ca23fca5be9" + "c2f755fc-bb26-46aa-b8f3-bff67ee61ecd" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11960" ], "x-ms-correlation-request-id": [ - "e7c7525b-bb0a-40d5-938e-2b937524cdd9" + "6d21321e-cca3-4820-8178-bebe0eb3af30" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T173232Z:e7c7525b-bb0a-40d5-938e-2b937524cdd9" + "WESTUS:20200925T011003Z:6d21321e-cca3-4820-8178-bebe0eb3af30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3030,7 +3216,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:32:32 GMT" + "Fri, 25 Sep 2020 01:10:03 GMT" ], "Content-Length": [ "108" @@ -3042,17 +3228,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"19bba45d-41e8-45f1-95f2-fb1cecf37612\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T17:32:17.147Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"9b6451aa-8000-4d42-93e5-a80925355fc0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:08:00.853Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/19bba45d-41e8-45f1-95f2-fb1cecf37612?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjE3My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMTliYmE0NWQtNDFlOC00NWYxLTk1ZjItZmIxY2VjZjM3NjEyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/9b6451aa-8000-4d42-93e5-a80925355fc0?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vOWI2NDUxYWEtODAwMC00ZDQyLTkzZTUtYTgwOTI1MzU1ZmMwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -3069,19 +3255,19 @@ "15" ], "x-ms-request-id": [ - "fec49316-eef4-468f-a89b-aa6f80346967" + "7784ecfd-db9a-4660-8b02-999367c19593" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" + "11959" ], "x-ms-correlation-request-id": [ - "8adcdcd7-539e-439c-94ab-9e9ecc658968" + "362ddd56-90da-489b-8bae-d75c2d721547" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T173247Z:8adcdcd7-539e-439c-94ab-9e9ecc658968" + "WESTUS:20200925T011018Z:362ddd56-90da-489b-8bae-d75c2d721547" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3090,10 +3276,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:32:47 GMT" + "Fri, 25 Sep 2020 01:10:18 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3102,17 +3288,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"19bba45d-41e8-45f1-95f2-fb1cecf37612\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T17:32:17.147Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"9b6451aa-8000-4d42-93e5-a80925355fc0\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-25T01:08:00.853Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/19bba45d-41e8-45f1-95f2-fb1cecf37612?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjE3My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMTliYmE0NWQtNDFlOC00NWYxLTk1ZjItZmIxY2VjZjM3NjEyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/fdfedb2b-f696-43b9-b9d9-d68048d6f3ab?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZmRmZWRiMmItZjY5Ni00M2I5LWI5ZDktZDY4MDQ4ZDZmM2FiP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -3129,19 +3315,19 @@ "15" ], "x-ms-request-id": [ - "3d9c39c2-8664-4e26-9180-e4c74c36f42e" + "d9f156ec-f168-41d3-b6bf-fa77dd936362" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" + "11954" ], "x-ms-correlation-request-id": [ - "4fbc51c4-ea4d-4af9-9c71-a32a1cb07d3d" + "546d33d9-e164-414d-8aa8-7a14d3894aef" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T173302Z:4fbc51c4-ea4d-4af9-9c71-a32a1cb07d3d" + "WESTUS:20200925T011035Z:546d33d9-e164-414d-8aa8-7a14d3894aef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3150,7 +3336,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:33:02 GMT" + "Fri, 25 Sep 2020 01:10:35 GMT" ], "Content-Length": [ "108" @@ -3162,17 +3348,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"19bba45d-41e8-45f1-95f2-fb1cecf37612\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T17:32:17.147Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"fdfedb2b-f696-43b9-b9d9-d68048d6f3ab\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:10:20.093Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/19bba45d-41e8-45f1-95f2-fb1cecf37612?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjE3My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMTliYmE0NWQtNDFlOC00NWYxLTk1ZjItZmIxY2VjZjM3NjEyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/fdfedb2b-f696-43b9-b9d9-d68048d6f3ab?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZmRmZWRiMmItZjY5Ni00M2I5LWI5ZDktZDY4MDQ4ZDZmM2FiP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -3189,19 +3375,19 @@ "15" ], "x-ms-request-id": [ - "8099dfa1-4a82-496b-b6c8-780dd5ae3a9b" + "c6793090-de48-4326-bf01-5f0072adc686" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" + "11953" ], "x-ms-correlation-request-id": [ - "39b1b2a0-3473-40bb-9909-5e847fae8635" + "697ccbd6-975f-4db6-93a1-ed6e71fa2525" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T173318Z:39b1b2a0-3473-40bb-9909-5e847fae8635" + "WESTUS:20200925T011050Z:697ccbd6-975f-4db6-93a1-ed6e71fa2525" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3210,7 +3396,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:33:17 GMT" + "Fri, 25 Sep 2020 01:10:50 GMT" ], "Content-Length": [ "108" @@ -3222,17 +3408,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"19bba45d-41e8-45f1-95f2-fb1cecf37612\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T17:32:17.147Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"fdfedb2b-f696-43b9-b9d9-d68048d6f3ab\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:10:20.093Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/19bba45d-41e8-45f1-95f2-fb1cecf37612?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjE3My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMTliYmE0NWQtNDFlOC00NWYxLTk1ZjItZmIxY2VjZjM3NjEyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/fdfedb2b-f696-43b9-b9d9-d68048d6f3ab?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZmRmZWRiMmItZjY5Ni00M2I5LWI5ZDktZDY4MDQ4ZDZmM2FiP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -3249,19 +3435,19 @@ "15" ], "x-ms-request-id": [ - "46f15075-ae8b-4462-878b-28b5f87d0782" + "e9ffddb4-bd34-47b2-9324-48c0624ef7b5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" + "11952" ], "x-ms-correlation-request-id": [ - "00d7891f-d574-4715-a952-250a0cd27b30" + "66658cca-7992-4422-bc33-47672382e3e4" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T173333Z:00d7891f-d574-4715-a952-250a0cd27b30" + "WESTUS:20200925T011105Z:66658cca-7992-4422-bc33-47672382e3e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3270,7 +3456,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:33:33 GMT" + "Fri, 25 Sep 2020 01:11:05 GMT" ], "Content-Length": [ "108" @@ -3282,17 +3468,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"19bba45d-41e8-45f1-95f2-fb1cecf37612\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T17:32:17.147Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"fdfedb2b-f696-43b9-b9d9-d68048d6f3ab\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:10:20.093Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/19bba45d-41e8-45f1-95f2-fb1cecf37612?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjE3My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMTliYmE0NWQtNDFlOC00NWYxLTk1ZjItZmIxY2VjZjM3NjEyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/fdfedb2b-f696-43b9-b9d9-d68048d6f3ab?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZmRmZWRiMmItZjY5Ni00M2I5LWI5ZDktZDY4MDQ4ZDZmM2FiP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -3309,19 +3495,19 @@ "15" ], "x-ms-request-id": [ - "3ce316e8-b8e9-43ba-8a66-93837373824a" + "81ae36f8-ba75-4b6b-bab9-59e96bb2bed4" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" + "11951" ], "x-ms-correlation-request-id": [ - "f4407cba-ebfd-45f3-8d3d-23f560e7a7f9" + "4056d87c-84ac-42b8-b2be-51f2cd484ee5" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T173348Z:f4407cba-ebfd-45f3-8d3d-23f560e7a7f9" + "WESTUS:20200925T011121Z:4056d87c-84ac-42b8-b2be-51f2cd484ee5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3330,7 +3516,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:33:48 GMT" + "Fri, 25 Sep 2020 01:11:20 GMT" ], "Content-Length": [ "108" @@ -3342,17 +3528,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"19bba45d-41e8-45f1-95f2-fb1cecf37612\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T17:32:17.147Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"fdfedb2b-f696-43b9-b9d9-d68048d6f3ab\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:10:20.093Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/19bba45d-41e8-45f1-95f2-fb1cecf37612?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjE3My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMTliYmE0NWQtNDFlOC00NWYxLTk1ZjItZmIxY2VjZjM3NjEyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/fdfedb2b-f696-43b9-b9d9-d68048d6f3ab?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZmRmZWRiMmItZjY5Ni00M2I5LWI5ZDktZDY4MDQ4ZDZmM2FiP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -3369,19 +3555,19 @@ "15" ], "x-ms-request-id": [ - "ef9026fc-cacf-46ec-a48f-daf214c6a703" + "55960b55-e002-456e-a9c3-7d12c8f5560d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" + "11950" ], "x-ms-correlation-request-id": [ - "5631c428-b44b-45f5-a79f-121ff5adba15" + "014e7325-8e06-4a91-a93d-8178cfb51392" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T173404Z:5631c428-b44b-45f5-a79f-121ff5adba15" + "WESTUS:20200925T011136Z:014e7325-8e06-4a91-a93d-8178cfb51392" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3390,7 +3576,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:34:03 GMT" + "Fri, 25 Sep 2020 01:11:35 GMT" ], "Content-Length": [ "108" @@ -3402,17 +3588,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"19bba45d-41e8-45f1-95f2-fb1cecf37612\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T17:32:17.147Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"fdfedb2b-f696-43b9-b9d9-d68048d6f3ab\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:10:20.093Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/19bba45d-41e8-45f1-95f2-fb1cecf37612?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjE3My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMTliYmE0NWQtNDFlOC00NWYxLTk1ZjItZmIxY2VjZjM3NjEyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/fdfedb2b-f696-43b9-b9d9-d68048d6f3ab?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZmRmZWRiMmItZjY5Ni00M2I5LWI5ZDktZDY4MDQ4ZDZmM2FiP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -3429,19 +3615,19 @@ "15" ], "x-ms-request-id": [ - "e3111fc9-86f2-4c72-97f0-e0549c243fc7" + "ebb80870-89a9-4ab8-a8fc-e5396500248b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11952" + "11949" ], "x-ms-correlation-request-id": [ - "1fb1c502-1e0e-45ca-b1c0-3e09dd66c43e" + "e8087915-2c86-4727-995d-8a15f4a8b819" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T173419Z:1fb1c502-1e0e-45ca-b1c0-3e09dd66c43e" + "WESTUS:20200925T011151Z:e8087915-2c86-4727-995d-8a15f4a8b819" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3450,7 +3636,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:34:18 GMT" + "Fri, 25 Sep 2020 01:11:51 GMT" ], "Content-Length": [ "108" @@ -3462,17 +3648,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"19bba45d-41e8-45f1-95f2-fb1cecf37612\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T17:32:17.147Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"fdfedb2b-f696-43b9-b9d9-d68048d6f3ab\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:10:20.093Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6173/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/19bba45d-41e8-45f1-95f2-fb1cecf37612?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjE3My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMTliYmE0NWQtNDFlOC00NWYxLTk1ZjItZmIxY2VjZjM3NjEyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5993/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/fdfedb2b-f696-43b9-b9d9-d68048d6f3ab?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTk5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZmRmZWRiMmItZjY5Ni00M2I5LWI5ZDktZDY4MDQ4ZDZmM2FiP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -3489,19 +3675,19 @@ "15" ], "x-ms-request-id": [ - "64972f89-1650-42c7-b1bf-a9122a41a8ae" + "e232c284-25b2-4b70-9a76-e98cacb54e85" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11951" + "11948" ], "x-ms-correlation-request-id": [ - "bc3386c0-4329-43e3-9a12-3c7950377065" + "8b0b9069-6fe3-45fe-99e4-b9e84683dfe2" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T173434Z:bc3386c0-4329-43e3-9a12-3c7950377065" + "WESTUS:20200925T011207Z:8b0b9069-6fe3-45fe-99e4-b9e84683dfe2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3510,7 +3696,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:34:33 GMT" + "Fri, 25 Sep 2020 01:12:07 GMT" ], "Content-Length": [ "107" @@ -3522,23 +3708,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"19bba45d-41e8-45f1-95f2-fb1cecf37612\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-13T17:32:17.147Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"fdfedb2b-f696-43b9-b9d9-d68048d6f3ab\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-25T01:10:20.093Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps6173?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzNjE3Mz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps5993?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzNTk5Mz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2fc524fd-b05a-402c-8c5e-7f960fd8f3a8" + "00023ba1-c533-4121-92be-41d670436e81" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3552,7 +3738,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYxNzMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5OTMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3561,13 +3747,13 @@ "14999" ], "x-ms-request-id": [ - "00ccd141-cd4e-4a84-bef4-5261d66ae07f" + "4d8aabb0-041a-42be-848c-2a752314fecf" ], "x-ms-correlation-request-id": [ - "00ccd141-cd4e-4a84-bef4-5261d66ae07f" + "4d8aabb0-041a-42be-848c-2a752314fecf" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T173438Z:00ccd141-cd4e-4a84-bef4-5261d66ae07f" + "WESTUS:20200925T011211Z:4d8aabb0-041a-42be-848c-2a752314fecf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3576,7 +3762,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:34:37 GMT" + "Fri, 25 Sep 2020 01:12:10 GMT" ], "Expires": [ "-1" @@ -3589,13 +3775,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYxNzMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeE56TXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5OTMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNU9UTXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3609,7 +3795,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYxNzMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5OTMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3618,13 +3804,13 @@ "11999" ], "x-ms-request-id": [ - "c6461aa4-027f-4d68-be71-1699ffd6b9f2" + "47ed5934-15b2-4a34-b6e0-4f03c7543209" ], "x-ms-correlation-request-id": [ - "c6461aa4-027f-4d68-be71-1699ffd6b9f2" + "47ed5934-15b2-4a34-b6e0-4f03c7543209" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T173453Z:c6461aa4-027f-4d68-be71-1699ffd6b9f2" + "WESTUS:20200925T011226Z:47ed5934-15b2-4a34-b6e0-4f03c7543209" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3633,7 +3819,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:34:52 GMT" + "Fri, 25 Sep 2020 01:12:25 GMT" ], "Expires": [ "-1" @@ -3646,13 +3832,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYxNzMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeE56TXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5OTMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNU9UTXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3666,7 +3852,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYxNzMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5OTMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3675,13 +3861,13 @@ "11998" ], "x-ms-request-id": [ - "2d1c4969-3969-4815-8953-504934f60e64" + "2f870af1-f868-42ee-bc7d-e3f4fb0cfc68" ], "x-ms-correlation-request-id": [ - "2d1c4969-3969-4815-8953-504934f60e64" + "2f870af1-f868-42ee-bc7d-e3f4fb0cfc68" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T173508Z:2d1c4969-3969-4815-8953-504934f60e64" + "WESTUS:20200925T011241Z:2f870af1-f868-42ee-bc7d-e3f4fb0cfc68" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3690,7 +3876,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:35:07 GMT" + "Fri, 25 Sep 2020 01:12:40 GMT" ], "Expires": [ "-1" @@ -3703,13 +3889,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYxNzMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeE56TXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5OTMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNU9UTXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3723,7 +3909,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYxNzMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5OTMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3732,13 +3918,13 @@ "11997" ], "x-ms-request-id": [ - "6973c896-07ba-400d-a574-f662da7513f5" + "816b8a41-0e62-4694-88d1-5d8dd32726f6" ], "x-ms-correlation-request-id": [ - "6973c896-07ba-400d-a574-f662da7513f5" + "816b8a41-0e62-4694-88d1-5d8dd32726f6" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T173524Z:6973c896-07ba-400d-a574-f662da7513f5" + "WESTUS:20200925T011257Z:816b8a41-0e62-4694-88d1-5d8dd32726f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3747,7 +3933,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:35:23 GMT" + "Fri, 25 Sep 2020 01:12:57 GMT" ], "Expires": [ "-1" @@ -3760,13 +3946,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYxNzMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeE56TXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5OTMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNU9UTXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3780,7 +3966,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYxNzMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5OTMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3789,13 +3975,13 @@ "11996" ], "x-ms-request-id": [ - "83461c05-148a-4f2b-af4c-94f0f05ebb2f" + "3960d502-cdd9-444a-a52d-8096ede63426" ], "x-ms-correlation-request-id": [ - "83461c05-148a-4f2b-af4c-94f0f05ebb2f" + "3960d502-cdd9-444a-a52d-8096ede63426" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T173539Z:83461c05-148a-4f2b-af4c-94f0f05ebb2f" + "WESTUS:20200925T011312Z:3960d502-cdd9-444a-a52d-8096ede63426" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3804,7 +3990,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:35:39 GMT" + "Fri, 25 Sep 2020 01:13:12 GMT" ], "Expires": [ "-1" @@ -3817,13 +4003,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYxNzMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeE56TXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5OTMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNU9UTXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3837,7 +4023,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYxNzMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5OTMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3846,13 +4032,13 @@ "11995" ], "x-ms-request-id": [ - "30ab26c3-91d3-43ee-847a-334769e08488" + "9fa0c754-25ee-486b-ad2f-c07b420c283a" ], "x-ms-correlation-request-id": [ - "30ab26c3-91d3-43ee-847a-334769e08488" + "9fa0c754-25ee-486b-ad2f-c07b420c283a" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T173554Z:30ab26c3-91d3-43ee-847a-334769e08488" + "WESTUS:20200925T011327Z:9fa0c754-25ee-486b-ad2f-c07b420c283a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3861,7 +4047,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:35:54 GMT" + "Fri, 25 Sep 2020 01:13:27 GMT" ], "Expires": [ "-1" @@ -3874,13 +4060,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYxNzMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeE56TXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5OTMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNU9UTXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3894,7 +4080,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYxNzMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5OTMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3903,13 +4089,13 @@ "11994" ], "x-ms-request-id": [ - "8a965d80-f787-432e-9f86-b1b1056fde5e" + "57929427-a509-4294-9b64-5835a3ff61ab" ], "x-ms-correlation-request-id": [ - "8a965d80-f787-432e-9f86-b1b1056fde5e" + "57929427-a509-4294-9b64-5835a3ff61ab" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T173610Z:8a965d80-f787-432e-9f86-b1b1056fde5e" + "WESTUS:20200925T011343Z:57929427-a509-4294-9b64-5835a3ff61ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3918,7 +4104,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:36:09 GMT" + "Fri, 25 Sep 2020 01:13:42 GMT" ], "Expires": [ "-1" @@ -3931,13 +4117,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYxNzMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeE56TXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5OTMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNU9UTXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3954,13 +4140,13 @@ "11993" ], "x-ms-request-id": [ - "86e3eb17-fde4-4a5f-98ac-0b4dcdf17343" + "0820b383-dc54-4c3c-b29c-f71c9903f14c" ], "x-ms-correlation-request-id": [ - "86e3eb17-fde4-4a5f-98ac-0b4dcdf17343" + "0820b383-dc54-4c3c-b29c-f71c9903f14c" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T173625Z:86e3eb17-fde4-4a5f-98ac-0b4dcdf17343" + "WESTUS:20200925T011358Z:0820b383-dc54-4c3c-b29c-f71c9903f14c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3969,7 +4155,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:36:25 GMT" + "Fri, 25 Sep 2020 01:13:58 GMT" ], "Expires": [ "-1" @@ -3982,13 +4168,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYxNzMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeE56TXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5OTMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNU9UTXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -4005,13 +4191,13 @@ "11992" ], "x-ms-request-id": [ - "543aa3dd-9a3e-4183-a945-a029c3c1fa40" + "3bd4838f-3dff-40c4-ab44-cf052069b2db" ], "x-ms-correlation-request-id": [ - "543aa3dd-9a3e-4183-a945-a029c3c1fa40" + "3bd4838f-3dff-40c4-ab44-cf052069b2db" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T173625Z:543aa3dd-9a3e-4183-a945-a029c3c1fa40" + "WESTUS:20200925T011358Z:3bd4838f-3dff-40c4-ab44-cf052069b2db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4020,7 +4206,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 17:36:25 GMT" + "Fri, 25 Sep 2020 01:13:58 GMT" ], "Expires": [ "-1" @@ -4035,10 +4221,10 @@ ], "Names": { "Test-UpdateDatabaseWithZoneRedundant": [ - "ps6173", - "ps504", - "ps166", - "ps7129" + "ps5993", + "ps1697", + "ps7206", + "ps9801" ] }, "Variables": { diff --git a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseUpdateWithZoneRedundancyNotSpecified.json b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseUpdateWithZoneRedundancyNotSpecified.json index a9155cbe00b2..37fec4824ef2 100644 --- a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseUpdateWithZoneRedundancyNotSpecified.json +++ b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseUpdateWithZoneRedundancyNotSpecified.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps641?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzNjQxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps2?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzMj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "229e18e1-51a1-4817-ae99-e28966d9340a" + "d5b51375-5294-49a4-87ae-10facc39cecc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1195" ], "x-ms-request-id": [ - "24f84986-25b3-4a77-83d9-994a08385237" + "94f7f344-6a9d-48de-9306-022c80dadf2d" ], "x-ms-correlation-request-id": [ - "24f84986-25b3-4a77-83d9-994a08385237" + "94f7f344-6a9d-48de-9306-022c80dadf2d" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T153732Z:24f84986-25b3-4a77-83d9-994a08385237" + "WESTUS:20200925T013150Z:94f7f344-6a9d-48de-9306-022c80dadf2d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:37:31 GMT" + "Fri, 25 Sep 2020 01:31:49 GMT" ], "Content-Length": [ - "170" + "166" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,23 +63,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps641\",\r\n \"name\": \"ps641\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2\",\r\n \"name\": \"ps2\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps641/providers/Microsoft.Sql/servers/ps4681?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHM0NjgxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2/providers/Microsoft.Sql/servers/ps1511?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTUxMT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1cdbcde2-5d2f-4dd7-9f75-c35c0c8de344" + "1d76824b-a640-4949-a5c9-901cf057f956" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "376ae5a8-0272-4e4f-9006-97f4430279bb" + "a146e377-3d0f-403c-ae3a-8a3e98985819" ], "x-ms-correlation-request-id": [ - "376ae5a8-0272-4e4f-9006-97f4430279bb" + "a146e377-3d0f-403c-ae3a-8a3e98985819" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T153733Z:376ae5a8-0272-4e4f-9006-97f4430279bb" + "WESTUS:20200925T013151Z:a146e377-3d0f-403c-ae3a-8a3e98985819" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:37:32 GMT" + "Fri, 25 Sep 2020 01:31:51 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -120,20 +120,20 @@ "-1" ], "Content-Length": [ - "205" + "203" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps4681' under resource group 'ps641' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps1511' under resource group 'ps2' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps641/providers/Microsoft.Sql/servers/ps4681?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHM0NjgxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2/providers/Microsoft.Sql/servers/ps1511?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTUxMT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -147,19 +147,19 @@ "no-cache" ], "x-ms-request-id": [ - "ca17611d-2f15-49a5-b575-b4aeae643e17" + "10e1f7f9-0b16-4d35-88c3-d2b500f5202a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11970" ], "x-ms-correlation-request-id": [ - "8e460a74-ae0e-43ff-8265-c9c2297b5700" + "41f0a2b9-533d-4501-ad8c-87146f3298cd" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T153825Z:8e460a74-ae0e-43ff-8265-c9c2297b5700" + "WESTUS:20200925T013242Z:41f0a2b9-533d-4501-ad8c-87146f3298cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -168,10 +168,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:38:25 GMT" + "Fri, 25 Sep 2020 01:32:42 GMT" ], "Content-Length": [ - "414" + "412" ], "Content-Type": [ "application/json; charset=utf-8" @@ -180,23 +180,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps4681.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps641/providers/Microsoft.Sql/servers/ps4681\",\r\n \"name\": \"ps4681\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps1511.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2/providers/Microsoft.Sql/servers/ps1511\",\r\n \"name\": \"ps1511\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps641/providers/Microsoft.Sql/servers/ps4681?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHM0NjgxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2/providers/Microsoft.Sql/servers/ps1511?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTUxMT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d9f6ade-7ea5-4b12-8fde-fcecafc92a66" + "859405c2-d4f3-456e-8109-5dd353dc064b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -210,19 +210,19 @@ "no-cache" ], "x-ms-request-id": [ - "5adacc02-1559-4556-a479-ef0cff2dd213" + "81e90cb6-c819-46d7-8b87-9727e1ea1487" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11969" ], "x-ms-correlation-request-id": [ - "3241d676-1de7-4a9e-bd34-6816d3d8b1ec" + "0b29486a-d9d5-4aa7-98ca-8fcc60f3f3bd" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T153825Z:3241d676-1de7-4a9e-bd34-6816d3d8b1ec" + "WESTUS:20200925T013243Z:0b29486a-d9d5-4aa7-98ca-8fcc60f3f3bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -231,10 +231,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:38:25 GMT" + "Fri, 25 Sep 2020 01:32:42 GMT" ], "Content-Length": [ - "414" + "412" ], "Content-Type": [ "application/json; charset=utf-8" @@ -243,23 +243,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps4681.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps641/providers/Microsoft.Sql/servers/ps4681\",\r\n \"name\": \"ps4681\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps1511.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2/providers/Microsoft.Sql/servers/ps1511\",\r\n \"name\": \"ps1511\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps641/providers/Microsoft.Sql/servers/ps4681?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHM0NjgxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2/providers/Microsoft.Sql/servers/ps1511?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTUxMT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0b30e5e3-d8b4-49bb-bff0-55b31bf06f80" + "8c5ea06e-587e-438b-b9f5-b2afe590ba55" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -273,19 +273,19 @@ "no-cache" ], "x-ms-request-id": [ - "bc6f8007-3e4e-49e3-9cf9-249efb9df28b" + "352a0c26-6a89-45c6-918a-1ea549b31028" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11967" ], "x-ms-correlation-request-id": [ - "86b562d9-1831-44cc-9fe2-ca2fd8bddea8" + "d816a625-ddaa-4bbb-885a-557cc11ff5f1" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T153826Z:86b562d9-1831-44cc-9fe2-ca2fd8bddea8" + "WESTUS:20200925T013243Z:d816a625-ddaa-4bbb-885a-557cc11ff5f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -294,10 +294,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:38:26 GMT" + "Fri, 25 Sep 2020 01:32:43 GMT" ], "Content-Length": [ - "414" + "412" ], "Content-Type": [ "application/json; charset=utf-8" @@ -306,23 +306,86 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps4681.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps641/providers/Microsoft.Sql/servers/ps4681\",\r\n \"name\": \"ps4681\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps1511.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2/providers/Microsoft.Sql/servers/ps1511\",\r\n \"name\": \"ps1511\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps641/providers/Microsoft.Sql/servers/ps4681?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHM0NjgxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2/providers/Microsoft.Sql/servers/ps1511?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTUxMT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "faa05150-8814-45bf-911c-7bceda6f95ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "56cafe68-f2ea-443e-8f8d-21bb43cee4e1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11960" + ], + "x-ms-correlation-request-id": [ + "ac69854e-36bd-4a5f-88b8-53f8642781bb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200925T013403Z:ac69854e-36bd-4a5f-88b8-53f8642781bb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 25 Sep 2020 01:34:03 GMT" + ], + "Content-Length": [ + "412" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps1511.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2/providers/Microsoft.Sql/servers/ps1511\",\r\n \"name\": \"ps1511\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2/providers/Microsoft.Sql/servers/ps1511?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTUxMT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b038584e-26e1-4d24-88a3-0aba28756152" + "166235b7-a6ec-4ab9-a470-5638a6970b63" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -342,16 +405,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps641/providers/Microsoft.Sql/locations/southeastasia/serverOperationResults/e01f72f7-120b-442f-aa60-2574e3037f33?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2/providers/Microsoft.Sql/locations/southeastasia/serverOperationResults/f87e82c5-129f-4c2e-accb-7a3d9525e64b?api-version=2019-06-01-preview" ], "Retry-After": [ "1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps641/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/e01f72f7-120b-442f-aa60-2574e3037f33?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/f87e82c5-129f-4c2e-accb-7a3d9525e64b?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "e01f72f7-120b-442f-aa60-2574e3037f33" + "f87e82c5-129f-4c2e-accb-7a3d9525e64b" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -360,10 +423,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "be49899d-6eb4-48ca-bc6b-8a39c0e1fa95" + "86a24315-3b66-4fbf-acdb-b8098c72f288" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T153739Z:be49899d-6eb4-48ca-bc6b-8a39c0e1fa95" + "WESTUS:20200925T013157Z:86a24315-3b66-4fbf-acdb-b8098c72f288" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -372,10 +435,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:37:38 GMT" + "Fri, 25 Sep 2020 01:31:57 GMT" ], "Content-Length": [ - "74" + "73" ], "Content-Type": [ "application/json; charset=utf-8" @@ -384,17 +447,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-13T15:37:39.547Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-25T01:31:57.13Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps641/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/e01f72f7-120b-442f-aa60-2574e3037f33?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vZTAxZjcyZjctMTIwYi00NDJmLWFhNjAtMjU3NGUzMDM3ZjMzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/f87e82c5-129f-4c2e-accb-7a3d9525e64b?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2Y4N2U4MmM1LTEyOWYtNGMyZS1hY2NiLTdhM2Q5NTI1ZTY0Yj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -411,19 +474,19 @@ "1" ], "x-ms-request-id": [ - "79703e15-2384-4e99-b24b-0fc9299a5fb8" + "41e81497-8656-480c-8949-98781854ec9a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11976" ], "x-ms-correlation-request-id": [ - "a2af06fe-fe5c-45ba-a431-5fc592b494cb" + "ba875a13-6664-42ec-82a6-db6056d4390c" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T153741Z:a2af06fe-fe5c-45ba-a431-5fc592b494cb" + "WESTUS:20200925T013158Z:ba875a13-6664-42ec-82a6-db6056d4390c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,10 +495,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:37:40 GMT" + "Fri, 25 Sep 2020 01:31:58 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -444,17 +507,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"e01f72f7-120b-442f-aa60-2574e3037f33\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T15:37:39.547Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"f87e82c5-129f-4c2e-accb-7a3d9525e64b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:31:57.13Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps641/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/e01f72f7-120b-442f-aa60-2574e3037f33?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vZTAxZjcyZjctMTIwYi00NDJmLWFhNjAtMjU3NGUzMDM3ZjMzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/f87e82c5-129f-4c2e-accb-7a3d9525e64b?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2Y4N2U4MmM1LTEyOWYtNGMyZS1hY2NiLTdhM2Q5NTI1ZTY0Yj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -471,19 +534,19 @@ "1" ], "x-ms-request-id": [ - "10caa7de-ab15-4ef6-8de6-3bb3ff80d3a1" + "7d740461-7c1d-4ed3-b327-e9ccb2ea246c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11975" ], "x-ms-correlation-request-id": [ - "19a4728f-53b6-417f-b472-d5ba477101ce" + "2a882457-255a-4fd7-968d-2cf00acd284c" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T153742Z:19a4728f-53b6-417f-b472-d5ba477101ce" + "WESTUS:20200925T013159Z:2a882457-255a-4fd7-968d-2cf00acd284c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -492,10 +555,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:37:41 GMT" + "Fri, 25 Sep 2020 01:31:59 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -504,17 +567,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"e01f72f7-120b-442f-aa60-2574e3037f33\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T15:37:39.547Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"f87e82c5-129f-4c2e-accb-7a3d9525e64b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:31:57.13Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps641/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/e01f72f7-120b-442f-aa60-2574e3037f33?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vZTAxZjcyZjctMTIwYi00NDJmLWFhNjAtMjU3NGUzMDM3ZjMzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/f87e82c5-129f-4c2e-accb-7a3d9525e64b?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2Y4N2U4MmM1LTEyOWYtNGMyZS1hY2NiLTdhM2Q5NTI1ZTY0Yj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -531,19 +594,19 @@ "1" ], "x-ms-request-id": [ - "2dbfc597-3f1e-48b4-8a44-d9ec9b36a1e8" + "21807eef-1c55-4cec-9341-a2cc8e046acf" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11974" ], "x-ms-correlation-request-id": [ - "bb2f77a0-336a-48ac-aa64-f0845faeb0e0" + "a7672a75-822e-4863-af4b-95e01f3ea8b2" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T153743Z:bb2f77a0-336a-48ac-aa64-f0845faeb0e0" + "WESTUS:20200925T013200Z:a7672a75-822e-4863-af4b-95e01f3ea8b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -552,10 +615,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:37:42 GMT" + "Fri, 25 Sep 2020 01:32:00 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -564,17 +627,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"e01f72f7-120b-442f-aa60-2574e3037f33\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T15:37:39.547Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"f87e82c5-129f-4c2e-accb-7a3d9525e64b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:31:57.13Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps641/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/e01f72f7-120b-442f-aa60-2574e3037f33?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vZTAxZjcyZjctMTIwYi00NDJmLWFhNjAtMjU3NGUzMDM3ZjMzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/f87e82c5-129f-4c2e-accb-7a3d9525e64b?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2Y4N2U4MmM1LTEyOWYtNGMyZS1hY2NiLTdhM2Q5NTI1ZTY0Yj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -591,19 +654,19 @@ "20" ], "x-ms-request-id": [ - "941ddcad-38fd-465a-9f3b-9285cccb688e" + "a23016a2-ed5b-43b4-9205-b08a13b1e30e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11973" ], "x-ms-correlation-request-id": [ - "c1e45f0c-e2a0-4b21-9b20-96fb249a336c" + "ae2a9fd6-8fe4-4ad6-8953-12c462a1982e" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T153744Z:c1e45f0c-e2a0-4b21-9b20-96fb249a336c" + "WESTUS:20200925T013202Z:ae2a9fd6-8fe4-4ad6-8953-12c462a1982e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -612,10 +675,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:37:43 GMT" + "Fri, 25 Sep 2020 01:32:02 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -624,17 +687,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"e01f72f7-120b-442f-aa60-2574e3037f33\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T15:37:39.547Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"f87e82c5-129f-4c2e-accb-7a3d9525e64b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:31:57.13Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps641/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/e01f72f7-120b-442f-aa60-2574e3037f33?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vZTAxZjcyZjctMTIwYi00NDJmLWFhNjAtMjU3NGUzMDM3ZjMzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/f87e82c5-129f-4c2e-accb-7a3d9525e64b?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2Y4N2U4MmM1LTEyOWYtNGMyZS1hY2NiLTdhM2Q5NTI1ZTY0Yj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -651,19 +714,19 @@ "20" ], "x-ms-request-id": [ - "09665119-d6ce-4c14-9d53-05977685f82c" + "56cdf325-db21-4506-a003-055e3f18e2ed" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11972" ], "x-ms-correlation-request-id": [ - "cee89325-fe1c-4255-86c2-1cbac219ee78" + "489af5cf-6a2b-4e5d-83df-97b60a660684" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T153805Z:cee89325-fe1c-4255-86c2-1cbac219ee78" + "WESTUS:20200925T013222Z:489af5cf-6a2b-4e5d-83df-97b60a660684" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -672,10 +735,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:38:04 GMT" + "Fri, 25 Sep 2020 01:32:22 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -684,17 +747,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"e01f72f7-120b-442f-aa60-2574e3037f33\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T15:37:39.547Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"f87e82c5-129f-4c2e-accb-7a3d9525e64b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:31:57.13Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps641/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/e01f72f7-120b-442f-aa60-2574e3037f33?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vZTAxZjcyZjctMTIwYi00NDJmLWFhNjAtMjU3NGUzMDM3ZjMzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/f87e82c5-129f-4c2e-accb-7a3d9525e64b?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2Y4N2U4MmM1LTEyOWYtNGMyZS1hY2NiLTdhM2Q5NTI1ZTY0Yj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -711,19 +774,19 @@ "15" ], "x-ms-request-id": [ - "582fe39e-f509-4c26-9e44-6523d53dec34" + "96435632-c130-4d8a-8a2a-38ab62bc943f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11971" ], "x-ms-correlation-request-id": [ - "e8358875-9bb7-4400-b9b7-f5187e6cb096" + "33c60c2e-e046-45fe-898a-bd81efce57c2" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T153825Z:e8358875-9bb7-4400-b9b7-f5187e6cb096" + "WESTUS:20200925T013242Z:33c60c2e-e046-45fe-898a-bd81efce57c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -732,10 +795,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:38:25 GMT" + "Fri, 25 Sep 2020 01:32:42 GMT" ], "Content-Length": [ - "107" + "106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -744,23 +807,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"e01f72f7-120b-442f-aa60-2574e3037f33\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-13T15:37:39.547Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"f87e82c5-129f-4c2e-accb-7a3d9525e64b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-25T01:31:57.13Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps641/providers/Microsoft.Sql/servers/ps4681/databases/ps4718?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHM0NjgxL2RhdGFiYXNlcy9wczQ3MTg/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2/providers/Microsoft.Sql/servers/ps1511/databases/ps2366?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTUxMS9kYXRhYmFzZXMvcHMyMzY2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3e9f34d7-4d8b-44d3-a37e-dd53e341c7d7" + "cd5d056c-7b63-4f94-9387-579734c3d68a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -777,13 +840,13 @@ "gateway" ], "x-ms-request-id": [ - "097f0778-1722-4c0e-ab83-0d4a33e70b60" + "0b4caa98-1de8-4791-8cbe-d99ee37b717c" ], "x-ms-correlation-request-id": [ - "097f0778-1722-4c0e-ab83-0d4a33e70b60" + "0b4caa98-1de8-4791-8cbe-d99ee37b717c" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T153826Z:097f0778-1722-4c0e-ab83-0d4a33e70b60" + "WESTUS:20200925T013243Z:0b4caa98-1de8-4791-8cbe-d99ee37b717c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -792,7 +855,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:38:25 GMT" + "Fri, 25 Sep 2020 01:32:43 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -801,20 +864,20 @@ "-1" ], "Content-Length": [ - "222" + "220" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps4681/databases/ps4718' under resource group 'ps641' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps1511/databases/ps2366' under resource group 'ps2' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps641/providers/Microsoft.Sql/servers/ps4681/databases/ps4718?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHM0NjgxL2RhdGFiYXNlcy9wczQ3MTg/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2/providers/Microsoft.Sql/servers/ps1511/databases/ps2366?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTUxMS9kYXRhYmFzZXMvcHMyMzY2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -828,19 +891,19 @@ "no-cache" ], "x-ms-request-id": [ - "42c136e0-c9ba-49ff-8b1c-6575aaf68736" + "209f6d2b-50c1-4aa0-8475-fb581b3f96d9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11961" ], "x-ms-correlation-request-id": [ - "a46dac2e-a6f2-4113-a75a-08f805d65bb7" + "4632b087-46bb-4ce7-b0a8-40f0e9c0619a" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T153931Z:a46dac2e-a6f2-4113-a75a-08f805d65bb7" + "WESTUS:20200925T013403Z:4632b087-46bb-4ce7-b0a8-40f0e9c0619a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -849,10 +912,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:39:30 GMT" + "Fri, 25 Sep 2020 01:34:03 GMT" ], "Content-Length": [ - "860" + "856" ], "Content-Type": [ "application/json; charset=utf-8" @@ -861,23 +924,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"0ea9ccff-203a-487d-a82d-e29acb7ce15d\",\r\n \"creationDate\": \"2020-09-13T15:39:26.413Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": true,\r\n \"earliestRestoreDate\": \"2020-09-13T16:09:26.413Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps641/providers/Microsoft.Sql/servers/ps4681/databases/ps4718\",\r\n \"name\": \"ps4718\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"00ee31d0-c498-4025-b164-d49b347b40cd\",\r\n \"creationDate\": \"2020-09-25T01:33:48.08Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": true,\r\n \"earliestRestoreDate\": \"2020-09-25T02:03:48.08Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2/providers/Microsoft.Sql/servers/ps1511/databases/ps2366\",\r\n \"name\": \"ps2366\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps641/providers/Microsoft.Sql/servers/ps4681/databases/ps4718?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHM0NjgxL2RhdGFiYXNlcy9wczQ3MTg/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2/providers/Microsoft.Sql/servers/ps1511/databases/ps2366?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTUxMS9kYXRhYmFzZXMvcHMyMzY2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eec71a45-e03b-4b7d-af09-e785a3049af6" + "8c153d9f-0cd0-43ae-beca-6af29d123ce5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -891,19 +954,19 @@ "no-cache" ], "x-ms-request-id": [ - "15883780-d177-402f-8b57-2e58a6917f8d" + "10634fc5-af9c-4cbd-85dc-d63eb4729e7c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11959" ], "x-ms-correlation-request-id": [ - "635a5476-c406-45b9-829c-4485936cfd1c" + "419c42a0-9a9b-4bb2-851b-b9198bda2baa" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T153931Z:635a5476-c406-45b9-829c-4485936cfd1c" + "WESTUS:20200925T013404Z:419c42a0-9a9b-4bb2-851b-b9198bda2baa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -912,10 +975,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:39:30 GMT" + "Fri, 25 Sep 2020 01:34:04 GMT" ], "Content-Length": [ - "860" + "856" ], "Content-Type": [ "application/json; charset=utf-8" @@ -924,23 +987,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"0ea9ccff-203a-487d-a82d-e29acb7ce15d\",\r\n \"creationDate\": \"2020-09-13T15:39:26.413Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": true,\r\n \"earliestRestoreDate\": \"2020-09-13T16:09:26.413Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps641/providers/Microsoft.Sql/servers/ps4681/databases/ps4718\",\r\n \"name\": \"ps4718\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"00ee31d0-c498-4025-b164-d49b347b40cd\",\r\n \"creationDate\": \"2020-09-25T01:33:48.08Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": true,\r\n \"earliestRestoreDate\": \"2020-09-25T02:03:48.08Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2/providers/Microsoft.Sql/servers/ps1511/databases/ps2366\",\r\n \"name\": \"ps2366\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps641/providers/Microsoft.Sql/servers/ps4681/databases/ps4718?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHM0NjgxL2RhdGFiYXNlcy9wczQ3MTg/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2/providers/Microsoft.Sql/servers/ps1511/databases/ps2366?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTUxMS9kYXRhYmFzZXMvcHMyMzY2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "30a25de9-3252-466d-b44b-e16c579a40ea" + "f8897bd1-4f5f-466f-8941-b1a5a67b602b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -954,19 +1017,19 @@ "no-cache" ], "x-ms-request-id": [ - "7e9ad4e3-6124-4118-88c2-cda8f52a45f2" + "6dd713ac-74ce-456d-8a03-ff36e047ce8e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11958" ], "x-ms-correlation-request-id": [ - "26782a07-e571-4f56-bf9c-9ff3335045b1" + "f8d83503-33f9-4b00-9d0d-55fc886587fb" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T153931Z:26782a07-e571-4f56-bf9c-9ff3335045b1" + "WESTUS:20200925T013404Z:f8d83503-33f9-4b00-9d0d-55fc886587fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -975,10 +1038,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:39:30 GMT" + "Fri, 25 Sep 2020 01:34:04 GMT" ], "Content-Length": [ - "860" + "856" ], "Content-Type": [ "application/json; charset=utf-8" @@ -987,17 +1050,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"0ea9ccff-203a-487d-a82d-e29acb7ce15d\",\r\n \"creationDate\": \"2020-09-13T15:39:26.413Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": true,\r\n \"earliestRestoreDate\": \"2020-09-13T16:09:26.413Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps641/providers/Microsoft.Sql/servers/ps4681/databases/ps4718\",\r\n \"name\": \"ps4718\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"00ee31d0-c498-4025-b164-d49b347b40cd\",\r\n \"creationDate\": \"2020-09-25T01:33:48.08Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": true,\r\n \"earliestRestoreDate\": \"2020-09-25T02:03:48.08Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2/providers/Microsoft.Sql/servers/ps1511/databases/ps2366\",\r\n \"name\": \"ps2366\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps641/providers/Microsoft.Sql/servers/ps4681/databases/ps4718?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHM0NjgxL2RhdGFiYXNlcy9wczQ3MTg/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2/providers/Microsoft.Sql/servers/ps1511/databases/ps2366?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTUxMS9kYXRhYmFzZXMvcHMyMzY2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1011,19 +1074,19 @@ "no-cache" ], "x-ms-request-id": [ - "4a6bbd6c-558c-41c6-86d5-eefa152da20c" + "7639a512-efba-435c-8dfe-465f64a7a820" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11956" ], "x-ms-correlation-request-id": [ - "70b388ee-4fe0-4146-b21a-1cd5abf8d9ad" + "2573bfab-feda-4fd8-bf18-6edafd89db6e" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T153948Z:70b388ee-4fe0-4146-b21a-1cd5abf8d9ad" + "WESTUS:20200925T013420Z:2573bfab-feda-4fd8-bf18-6edafd89db6e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1032,10 +1095,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:39:47 GMT" + "Fri, 25 Sep 2020 01:34:20 GMT" ], "Content-Length": [ - "897" + "893" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1044,23 +1107,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"0ea9ccff-203a-487d-a82d-e29acb7ce15d\",\r\n \"creationDate\": \"2020-09-13T15:39:26.413Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": true,\r\n \"earliestRestoreDate\": \"2020-09-13T16:09:26.413Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"tag_key\": \"tag_new_value2\"\r\n },\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps641/providers/Microsoft.Sql/servers/ps4681/databases/ps4718\",\r\n \"name\": \"ps4718\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"00ee31d0-c498-4025-b164-d49b347b40cd\",\r\n \"creationDate\": \"2020-09-25T01:33:48.08Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": true,\r\n \"earliestRestoreDate\": \"2020-09-25T02:03:48.08Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"tag_key\": \"tag_new_value2\"\r\n },\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2/providers/Microsoft.Sql/servers/ps1511/databases/ps2366\",\r\n \"name\": \"ps2366\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps641/providers/Microsoft.Sql/servers/ps4681/databases/ps4718?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHM0NjgxL2RhdGFiYXNlcy9wczQ3MTg/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2/providers/Microsoft.Sql/servers/ps1511/databases/ps2366?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTUxMS9kYXRhYmFzZXMvcHMyMzY2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"properties\": {\r\n \"maxSizeBytes\": 0,\r\n \"zoneRedundant\": true,\r\n \"readScale\": \"\"\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "419055b7-7c57-4a7f-8de9-8ced410eeaba" + "accb61a9-b9bc-4c2f-a279-41fd3fd0cd54" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1080,16 +1143,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps641/providers/Microsoft.Sql/locations/southeastasia/databaseOperationResults/e229d0c5-6d69-4292-9956-0926b9f8c399?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2/providers/Microsoft.Sql/locations/southeastasia/databaseOperationResults/3a60cbde-4da8-474c-a713-2230a0cbb4e3?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps641/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/e229d0c5-6d69-4292-9956-0926b9f8c399?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/3a60cbde-4da8-474c-a713-2230a0cbb4e3?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "e229d0c5-6d69-4292-9956-0926b9f8c399" + "3a60cbde-4da8-474c-a713-2230a0cbb4e3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1098,10 +1161,10 @@ "1198" ], "x-ms-correlation-request-id": [ - "2f1ac2b7-1a41-4b49-887e-6a9c3860fcee" + "b0b4f96e-9d72-4362-bf95-a544c559cfcf" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T153829Z:2f1ac2b7-1a41-4b49-887e-6a9c3860fcee" + "WESTUS:20200925T013247Z:b0b4f96e-9d72-4362-bf95-a544c559cfcf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1110,10 +1173,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:38:29 GMT" + "Fri, 25 Sep 2020 01:32:46 GMT" ], "Content-Length": [ - "75" + "76" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1122,23 +1185,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2020-09-13T15:38:29.74Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2020-09-25T01:32:46.857Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps641/providers/Microsoft.Sql/servers/ps4681/databases/ps4718?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHM0NjgxL2RhdGFiYXNlcy9wczQ3MTg/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2/providers/Microsoft.Sql/servers/ps1511/databases/ps2366?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTUxMS9kYXRhYmFzZXMvcHMyMzY2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": 0,\r\n \"readScale\": \"Disabled\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"tag_key\": \"tag_new_value2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "68f2a980-0c5b-45a4-995d-648068c0484a" + "28be3e4d-3007-416c-8e22-d890327d6273" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1158,16 +1221,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps641/providers/Microsoft.Sql/locations/southeastasia/databaseOperationResults/8c5fed4d-8144-4d41-8112-7c930f148791?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2/providers/Microsoft.Sql/locations/southeastasia/databaseOperationResults/b66948f9-b440-443a-9e40-ed1dfc3cb8ce?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps641/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/8c5fed4d-8144-4d41-8112-7c930f148791?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/b66948f9-b440-443a-9e40-ed1dfc3cb8ce?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "8c5fed4d-8144-4d41-8112-7c930f148791" + "b66948f9-b440-443a-9e40-ed1dfc3cb8ce" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1176,10 +1239,10 @@ "1197" ], "x-ms-correlation-request-id": [ - "07c779a2-76ac-4a0e-9e3e-66b3601156bb" + "49b0f29d-e4ac-42f5-b282-a783c2f0ac82" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T153932Z:07c779a2-76ac-4a0e-9e3e-66b3601156bb" + "WESTUS:20200925T013405Z:49b0f29d-e4ac-42f5-b282-a783c2f0ac82" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1188,10 +1251,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:39:32 GMT" + "Fri, 25 Sep 2020 01:34:05 GMT" ], "Content-Length": [ - "75" + "76" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1200,17 +1263,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-09-13T15:39:32.71Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-09-25T01:34:05.277Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps641/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/e229d0c5-6d69-4292-9956-0926b9f8c399?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9lMjI5ZDBjNS02ZDY5LTQyOTItOTk1Ni0wOTI2YjlmOGMzOTk/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/3a60cbde-4da8-474c-a713-2230a0cbb4e3?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vM2E2MGNiZGUtNGRhOC00NzRjLWE3MTMtMjIzMGEwY2JiNGUzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1227,19 +1290,19 @@ "15" ], "x-ms-request-id": [ - "7ef24691-35d4-409a-805a-7f4183e84316" + "303c7732-83de-4026-93b3-783163899809" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11966" ], "x-ms-correlation-request-id": [ - "5d3b4d2d-de9a-43c0-a0e0-88cac194c94d" + "4de3c5ae-7890-4f70-8162-f9254e3954b2" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T153845Z:5d3b4d2d-de9a-43c0-a0e0-88cac194c94d" + "WESTUS:20200925T013302Z:4de3c5ae-7890-4f70-8162-f9254e3954b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1248,10 +1311,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:38:44 GMT" + "Fri, 25 Sep 2020 01:33:01 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1260,17 +1323,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"e229d0c5-6d69-4292-9956-0926b9f8c399\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T15:38:29.74Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"3a60cbde-4da8-474c-a713-2230a0cbb4e3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:32:46.857Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps641/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/e229d0c5-6d69-4292-9956-0926b9f8c399?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9lMjI5ZDBjNS02ZDY5LTQyOTItOTk1Ni0wOTI2YjlmOGMzOTk/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/3a60cbde-4da8-474c-a713-2230a0cbb4e3?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vM2E2MGNiZGUtNGRhOC00NzRjLWE3MTMtMjIzMGEwY2JiNGUzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1287,19 +1350,19 @@ "15" ], "x-ms-request-id": [ - "29ddb6fa-323f-4eb9-83b3-f2e73cc9009e" + "de982a90-ab92-4534-a9df-ba5322ef866d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11965" ], "x-ms-correlation-request-id": [ - "97b67462-ee99-4027-ab2f-77d4c3d91eb1" + "503c64a6-e689-4bb1-874e-3a6d135724a2" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T153900Z:97b67462-ee99-4027-ab2f-77d4c3d91eb1" + "WESTUS:20200925T013317Z:503c64a6-e689-4bb1-874e-3a6d135724a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1308,10 +1371,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:38:59 GMT" + "Fri, 25 Sep 2020 01:33:16 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1320,17 +1383,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"e229d0c5-6d69-4292-9956-0926b9f8c399\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T15:38:29.74Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"3a60cbde-4da8-474c-a713-2230a0cbb4e3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:32:46.857Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps641/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/e229d0c5-6d69-4292-9956-0926b9f8c399?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9lMjI5ZDBjNS02ZDY5LTQyOTItOTk1Ni0wOTI2YjlmOGMzOTk/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/3a60cbde-4da8-474c-a713-2230a0cbb4e3?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vM2E2MGNiZGUtNGRhOC00NzRjLWE3MTMtMjIzMGEwY2JiNGUzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1347,19 +1410,19 @@ "15" ], "x-ms-request-id": [ - "8eeec7bc-8657-470b-a1b2-8ae14f6be4eb" + "8672acfd-a5fe-46a4-b04c-f3604c9a90e9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11964" ], "x-ms-correlation-request-id": [ - "36c786d2-4653-4108-93b8-37aaf67ecdec" + "343b308a-c025-41bc-8290-28d622bd43c0" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T153915Z:36c786d2-4653-4108-93b8-37aaf67ecdec" + "WESTUS:20200925T013332Z:343b308a-c025-41bc-8290-28d622bd43c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1368,10 +1431,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:39:15 GMT" + "Fri, 25 Sep 2020 01:33:31 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1380,17 +1443,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"e229d0c5-6d69-4292-9956-0926b9f8c399\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T15:38:29.74Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"3a60cbde-4da8-474c-a713-2230a0cbb4e3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:32:46.857Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps641/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/e229d0c5-6d69-4292-9956-0926b9f8c399?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9lMjI5ZDBjNS02ZDY5LTQyOTItOTk1Ni0wOTI2YjlmOGMzOTk/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/3a60cbde-4da8-474c-a713-2230a0cbb4e3?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vM2E2MGNiZGUtNGRhOC00NzRjLWE3MTMtMjIzMGEwY2JiNGUzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1407,19 +1470,19 @@ "15" ], "x-ms-request-id": [ - "cd267560-26aa-4366-a2bd-1b5ae32afe40" + "51888a3f-852c-49ec-be50-42c7b0f9888e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11963" ], "x-ms-correlation-request-id": [ - "f0826549-7e7d-49c4-afed-0b55412db5af" + "ec54d829-de31-4bfe-8f23-84340b46cc36" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T153930Z:f0826549-7e7d-49c4-afed-0b55412db5af" + "WESTUS:20200925T013348Z:ec54d829-de31-4bfe-8f23-84340b46cc36" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1428,10 +1491,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:39:30 GMT" + "Fri, 25 Sep 2020 01:33:48 GMT" ], "Content-Length": [ - "106" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1440,17 +1503,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"e229d0c5-6d69-4292-9956-0926b9f8c399\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-13T15:38:29.74Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"3a60cbde-4da8-474c-a713-2230a0cbb4e3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:32:46.857Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps641/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/8c5fed4d-8144-4d41-8112-7c930f148791?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi84YzVmZWQ0ZC04MTQ0LTRkNDEtODExMi03YzkzMGYxNDg3OTE/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/3a60cbde-4da8-474c-a713-2230a0cbb4e3?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vM2E2MGNiZGUtNGRhOC00NzRjLWE3MTMtMjIzMGEwY2JiNGUzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1467,19 +1530,19 @@ "15" ], "x-ms-request-id": [ - "4f768107-2189-4a63-9d7c-edaae1909f9c" + "c6406b65-2580-4930-8842-418073e8dd28" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11962" ], "x-ms-correlation-request-id": [ - "2a51117a-92a5-47df-9fcb-5bef288f69a5" + "fbf6fa5a-40e9-4052-bae4-ecb71115d2dd" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T153948Z:2a51117a-92a5-47df-9fcb-5bef288f69a5" + "WESTUS:20200925T013403Z:fbf6fa5a-40e9-4052-bae4-ecb71115d2dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1488,10 +1551,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:39:47 GMT" + "Fri, 25 Sep 2020 01:34:03 GMT" ], "Content-Length": [ - "106" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1500,23 +1563,83 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"8c5fed4d-8144-4d41-8112-7c930f148791\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-13T15:39:32.71Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"3a60cbde-4da8-474c-a713-2230a0cbb4e3\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-25T01:32:46.857Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps641?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzNjQxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/b66948f9-b440-443a-9e40-ed1dfc3cb8ce?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYjY2OTQ4ZjktYjQ0MC00NDNhLTllNDAtZWQxZGZjM2NiOGNlP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "5d8def8e-bc5c-4e47-95d1-6e67699fdbe3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11957" + ], + "x-ms-correlation-request-id": [ + "34b532f3-828d-4ada-a406-7338118ce43e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200925T013420Z:34b532f3-828d-4ada-a406-7338118ce43e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 25 Sep 2020 01:34:20 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"b66948f9-b440-443a-9e40-ed1dfc3cb8ce\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-25T01:34:05.277Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps2?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzMj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e936a306-48d0-4ae9-8321-2f2b6a6b7636" + "e4094a74-452f-4e9b-8ce7-6c699e3eaa2c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -1530,7 +1653,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzItU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1539,13 +1662,13 @@ "14999" ], "x-ms-request-id": [ - "97140e4e-cbcd-4be0-901f-1d705c35e3be" + "3410329a-b96f-40ec-8281-b54d05bb66c7" ], "x-ms-correlation-request-id": [ - "97140e4e-cbcd-4be0-901f-1d705c35e3be" + "3410329a-b96f-40ec-8281-b54d05bb66c7" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T153952Z:97140e4e-cbcd-4be0-901f-1d705c35e3be" + "WESTUS:20200925T013425Z:3410329a-b96f-40ec-8281-b54d05bb66c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1554,7 +1677,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:39:52 GMT" + "Fri, 25 Sep 2020 01:34:25 GMT" ], "Expires": [ "-1" @@ -1567,13 +1690,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZME1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzItU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJdFUwOVZWRWhGUVZOVVFWTkpRU0lzSW1wdllreHZZMkYwYVc5dUlqb2ljMjkxZEdobFlYTjBZWE5wWVNKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -1587,7 +1710,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzItU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1596,13 +1719,13 @@ "11999" ], "x-ms-request-id": [ - "052ab620-6cf6-4f19-bc19-10605c5e3365" + "4d20f24f-9b11-4179-9911-2656e05b0214" ], "x-ms-correlation-request-id": [ - "052ab620-6cf6-4f19-bc19-10605c5e3365" + "4d20f24f-9b11-4179-9911-2656e05b0214" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T154008Z:052ab620-6cf6-4f19-bc19-10605c5e3365" + "WESTUS:20200925T013440Z:4d20f24f-9b11-4179-9911-2656e05b0214" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1611,7 +1734,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:40:07 GMT" + "Fri, 25 Sep 2020 01:34:40 GMT" ], "Expires": [ "-1" @@ -1624,13 +1747,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZME1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzItU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJdFUwOVZWRWhGUVZOVVFWTkpRU0lzSW1wdllreHZZMkYwYVc5dUlqb2ljMjkxZEdobFlYTjBZWE5wWVNKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -1644,7 +1767,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzItU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1653,13 +1776,13 @@ "11998" ], "x-ms-request-id": [ - "6aea4661-545c-42c1-be09-ea20d1556ab1" + "ec3ab1ea-0796-4c23-a866-41dcd440c75d" ], "x-ms-correlation-request-id": [ - "6aea4661-545c-42c1-be09-ea20d1556ab1" + "ec3ab1ea-0796-4c23-a866-41dcd440c75d" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T154023Z:6aea4661-545c-42c1-be09-ea20d1556ab1" + "WESTUS:20200925T013456Z:ec3ab1ea-0796-4c23-a866-41dcd440c75d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1668,7 +1791,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:40:23 GMT" + "Fri, 25 Sep 2020 01:34:56 GMT" ], "Expires": [ "-1" @@ -1681,13 +1804,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZME1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzItU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJdFUwOVZWRWhGUVZOVVFWTkpRU0lzSW1wdllreHZZMkYwYVc5dUlqb2ljMjkxZEdobFlYTjBZWE5wWVNKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -1701,7 +1824,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzItU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1710,13 +1833,13 @@ "11997" ], "x-ms-request-id": [ - "9fb1aa21-52d9-4430-a55f-f0cac9ea8eb5" + "c273c24a-027c-4cf7-922c-500b8073cf0a" ], "x-ms-correlation-request-id": [ - "9fb1aa21-52d9-4430-a55f-f0cac9ea8eb5" + "c273c24a-027c-4cf7-922c-500b8073cf0a" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T154039Z:9fb1aa21-52d9-4430-a55f-f0cac9ea8eb5" + "WESTUS:20200925T013511Z:c273c24a-027c-4cf7-922c-500b8073cf0a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1725,7 +1848,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:40:38 GMT" + "Fri, 25 Sep 2020 01:35:11 GMT" ], "Expires": [ "-1" @@ -1738,13 +1861,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZME1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzItU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJdFUwOVZWRWhGUVZOVVFWTkpRU0lzSW1wdllreHZZMkYwYVc5dUlqb2ljMjkxZEdobFlYTjBZWE5wWVNKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -1758,7 +1881,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzItU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1767,13 +1890,13 @@ "11996" ], "x-ms-request-id": [ - "e82eb6bf-2041-4088-84d2-43800fc9b65d" + "c58b8593-14d3-4bf1-a9fd-8d045bce60ef" ], "x-ms-correlation-request-id": [ - "e82eb6bf-2041-4088-84d2-43800fc9b65d" + "c58b8593-14d3-4bf1-a9fd-8d045bce60ef" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T154054Z:e82eb6bf-2041-4088-84d2-43800fc9b65d" + "WESTUS:20200925T013527Z:c58b8593-14d3-4bf1-a9fd-8d045bce60ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1782,7 +1905,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:40:53 GMT" + "Fri, 25 Sep 2020 01:35:26 GMT" ], "Expires": [ "-1" @@ -1795,13 +1918,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZME1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzItU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJdFUwOVZWRWhGUVZOVVFWTkpRU0lzSW1wdllreHZZMkYwYVc5dUlqb2ljMjkxZEdobFlYTjBZWE5wWVNKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -1815,7 +1938,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzItU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1824,13 +1947,13 @@ "11995" ], "x-ms-request-id": [ - "932a3229-ca16-4c12-9de0-0935e3fa6736" + "20f847a0-f3ef-41f9-a8e0-5e4adbfc7769" ], "x-ms-correlation-request-id": [ - "932a3229-ca16-4c12-9de0-0935e3fa6736" + "20f847a0-f3ef-41f9-a8e0-5e4adbfc7769" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T154110Z:932a3229-ca16-4c12-9de0-0935e3fa6736" + "WESTUS:20200925T013542Z:20f847a0-f3ef-41f9-a8e0-5e4adbfc7769" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1839,7 +1962,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:41:09 GMT" + "Fri, 25 Sep 2020 01:35:41 GMT" ], "Expires": [ "-1" @@ -1852,13 +1975,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZME1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzItU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJdFUwOVZWRWhGUVZOVVFWTkpRU0lzSW1wdllreHZZMkYwYVc5dUlqb2ljMjkxZEdobFlYTjBZWE5wWVNKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -1872,7 +1995,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzItU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1881,13 +2004,13 @@ "11994" ], "x-ms-request-id": [ - "f9435678-c1b8-4c61-86fe-25574b697580" + "939ddde3-811a-4891-b32f-d059e759b1ed" ], "x-ms-correlation-request-id": [ - "f9435678-c1b8-4c61-86fe-25574b697580" + "939ddde3-811a-4891-b32f-d059e759b1ed" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T154125Z:f9435678-c1b8-4c61-86fe-25574b697580" + "WESTUS:20200925T013557Z:939ddde3-811a-4891-b32f-d059e759b1ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1896,7 +2019,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:41:24 GMT" + "Fri, 25 Sep 2020 01:35:57 GMT" ], "Expires": [ "-1" @@ -1909,13 +2032,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZME1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzItU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJdFUwOVZWRWhGUVZOVVFWTkpRU0lzSW1wdllreHZZMkYwYVc5dUlqb2ljMjkxZEdobFlYTjBZWE5wWVNKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -1928,17 +2051,23 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzItU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], "x-ms-request-id": [ - "8d6912bc-b653-40c7-bed9-fdf5b0ae7935" + "365fe44b-3a21-4bb0-92e0-3b44fb3e003f" ], "x-ms-correlation-request-id": [ - "8d6912bc-b653-40c7-bed9-fdf5b0ae7935" + "365fe44b-3a21-4bb0-92e0-3b44fb3e003f" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T154140Z:8d6912bc-b653-40c7-bed9-fdf5b0ae7935" + "WESTUS:20200925T013613Z:365fe44b-3a21-4bb0-92e0-3b44fb3e003f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1947,7 +2076,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:41:39 GMT" + "Fri, 25 Sep 2020 01:36:12 GMT" ], "Expires": [ "-1" @@ -1957,16 +2086,16 @@ ] }, "ResponseBody": "", - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZME1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzItU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJdFUwOVZWRWhGUVZOVVFWTkpRU0lzSW1wdllreHZZMkYwYVc5dUlqb2ljMjkxZEdobFlYTjBZWE5wWVNKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -1979,17 +2108,182 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzItU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], "x-ms-request-id": [ - "aaf34c8e-e3ad-4b4f-abd0-9a5ca7d1a60d" + "2f2336f2-607e-4d78-9046-c5c9e3bccbd6" + ], + "x-ms-correlation-request-id": [ + "2f2336f2-607e-4d78-9046-c5c9e3bccbd6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200925T013628Z:2f2336f2-607e-4d78-9046-c5c9e3bccbd6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 25 Sep 2020 01:36:27 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzItU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJdFUwOVZWRWhGUVZOVVFWTkpRU0lzSW1wdllreHZZMkYwYVc5dUlqb2ljMjkxZEdobFlYTjBZWE5wWVNKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzItU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "2c749014-09e7-4882-b10f-080b2f8b6348" + ], + "x-ms-correlation-request-id": [ + "2c749014-09e7-4882-b10f-080b2f8b6348" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200925T013643Z:2c749014-09e7-4882-b10f-080b2f8b6348" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 25 Sep 2020 01:36:43 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzItU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJdFUwOVZWRWhGUVZOVVFWTkpRU0lzSW1wdllreHZZMkYwYVc5dUlqb2ljMjkxZEdobFlYTjBZWE5wWVNKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "c62b69a5-74c0-49c9-a306-8f23176acc08" + ], + "x-ms-correlation-request-id": [ + "c62b69a5-74c0-49c9-a306-8f23176acc08" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200925T013659Z:c62b69a5-74c0-49c9-a306-8f23176acc08" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 25 Sep 2020 01:36:58 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzItU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJdFUwOVZWRWhGUVZOVVFWTkpRU0lzSW1wdllreHZZMkYwYVc5dUlqb2ljMjkxZEdobFlYTjBZWE5wWVNKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "22250d7d-88d6-4a34-978e-2366f7855f82" ], "x-ms-correlation-request-id": [ - "aaf34c8e-e3ad-4b4f-abd0-9a5ca7d1a60d" + "22250d7d-88d6-4a34-978e-2366f7855f82" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T154141Z:aaf34c8e-e3ad-4b4f-abd0-9a5ca7d1a60d" + "WESTUS:20200925T013659Z:22250d7d-88d6-4a34-978e-2366f7855f82" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1998,7 +2292,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 15:41:40 GMT" + "Fri, 25 Sep 2020 01:36:58 GMT" ], "Expires": [ "-1" @@ -2013,9 +2307,9 @@ ], "Names": { "Test-UpdateDatabaseWithZoneRedundantNotSpecified": [ - "ps641", - "ps4681", - "ps4718" + "ps2", + "ps1511", + "ps2366" ] }, "Variables": { diff --git a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestUpdateServerlessDatabase.json b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestUpdateServerlessDatabase.json index 55a19adab213..d615f0a7beed 100644 --- a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestUpdateServerlessDatabase.json +++ b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestUpdateServerlessDatabase.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7a0e27ee-d29d-4ab5-8841-4c55749747e6" + "f28eabe2-6e6c-499d-ac92-508ff3525ec3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -30,13 +30,13 @@ "11999" ], "x-ms-request-id": [ - "970c39f8-ca3f-48a9-860a-213752a01c76" + "7223980f-51a6-465c-b27f-26aa6d12c1b0" ], "x-ms-correlation-request-id": [ - "970c39f8-ca3f-48a9-860a-213752a01c76" + "7223980f-51a6-465c-b27f-26aa6d12c1b0" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T042807Z:970c39f8-ca3f-48a9-860a-213752a01c76" + "WESTUS:20200925T011404Z:7223980f-51a6-465c-b27f-26aa6d12c1b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:28:06 GMT" + "Fri, 25 Sep 2020 01:14:03 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54,26 +54,26 @@ "-1" ], "Content-Length": [ - "126333" + "128274" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e4ab13ed-33cb-41b4-9140-6e264582cf85\",\r\n \"roleDefinitionId\": \"ec3ddc95-44dc-47a2-9926-5e9f5ffd44ec\"\r\n },\r\n {\r\n \"applicationId\": \"0130cc9f-7ac5-4026-bd5f-80a08a54e6d9\",\r\n \"roleDefinitionId\": \"45e8abf8-0ec4-44f3-9c37-cff4f7779302\"\r\n },\r\n {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n {\r\n \"applicationId\": \"76c7f279-7959-468f-8943-3954880e0d8c\",\r\n \"roleDefinitionId\": \"7f7513a8-73f9-4c5f-97a2-c41f0ea783ef\"\r\n },\r\n {\r\n \"applicationId\": \"022907d3-0f1b-48f7-badc-1ba6abab6d66\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/keys\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/encryptionProtector\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceEncryptionProtectorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceEncryptionProtectorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/tdeCertificates\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/communicationLinks\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administrators\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverAdministratorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverAdministratorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/geoBackupPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/backupLongTermRetentionPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/backupShortTermRetentionPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/automaticTuning\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/automaticTuning\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/transparentDataEncryption\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingSettings\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingSettings\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/extendedAuditingSettings\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-09-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/jobAccounts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/jobAgents\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/jobAgents/jobs\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/jobAgents/jobs/steps\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/jobAgents/jobs/executions\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/disasterRecoveryConfiguration\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/dnsAliases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/failoverGroups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/aggregatedDatabaseMetrics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries/queryText\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPools/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/extensions\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPoolEstimates\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditRecords\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentScans\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/workloadGroups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/databases/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentSettings\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessment\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/recommendedSensitivityLabels\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups/syncMembers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/syncAgents\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"instancePools\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/importExportOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/importExportAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instancePoolOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instancePoolAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/administrators\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/databases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/recoverableDatabases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/metrics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/metricDefinitions\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/databases/backupLongTermRetentionPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/sqlAgent\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstancePrivateEndpointConnectionProxyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstancePrivateEndpointConnectionProxyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstancePrivateEndpointConnectionOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstancePrivateEndpointConnectionAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionManagedInstances\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionManagedInstanceBackups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceLongTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceLongTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionManagedInstanceBackupOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionManagedInstanceBackupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseCompleteRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseCompleteRestoreOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/tdeCertificates\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualClusters\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualClusterAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualClusterOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncMemberOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncAgentOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncDatabaseIds\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedShortTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedShortTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/notifyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e4ab13ed-33cb-41b4-9140-6e264582cf85\",\r\n \"roleDefinitionId\": \"ec3ddc95-44dc-47a2-9926-5e9f5ffd44ec\"\r\n },\r\n {\r\n \"applicationId\": \"0130cc9f-7ac5-4026-bd5f-80a08a54e6d9\",\r\n \"roleDefinitionId\": \"45e8abf8-0ec4-44f3-9c37-cff4f7779302\"\r\n },\r\n {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n {\r\n \"applicationId\": \"76c7f279-7959-468f-8943-3954880e0d8c\",\r\n \"roleDefinitionId\": \"7f7513a8-73f9-4c5f-97a2-c41f0ea783ef\"\r\n },\r\n {\r\n \"applicationId\": \"022907d3-0f1b-48f7-badc-1ba6abab6d66\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/keys\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/encryptionProtector\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceEncryptionProtectorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceEncryptionProtectorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/tdeCertificates\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/communicationLinks\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administrators\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverAdministratorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverAdministratorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/geoBackupPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/backupLongTermRetentionPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/backupShortTermRetentionPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/automaticTuning\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/automaticTuning\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/transparentDataEncryption\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingSettings\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingSettings\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/extendedAuditingSettings\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-09-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/jobAccounts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/jobAgents\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/jobAgents/jobs\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/jobAgents/jobs/steps\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/jobAgents/jobs/executions\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/disasterRecoveryConfiguration\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/dnsAliases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/failoverGroups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/aggregatedDatabaseMetrics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries/queryText\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPools/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/extensions\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPoolEstimates\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditRecords\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentScans\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/workloadGroups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/databases/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentSettings\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessment\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/recommendedSensitivityLabels\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups/syncMembers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/syncAgents\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"instancePools\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/importExportOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/importExportAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instancePoolOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instancePoolAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/administrators\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/databases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/recoverableDatabases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/metrics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/metricDefinitions\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/databases/backupLongTermRetentionPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/sqlAgent\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstancePrivateEndpointConnectionProxyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstancePrivateEndpointConnectionProxyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstancePrivateEndpointConnectionOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstancePrivateEndpointConnectionAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionManagedInstances\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionManagedInstanceBackups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceLongTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceLongTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionManagedInstanceBackupOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionManagedInstanceBackupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseCompleteRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseCompleteRestoreOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/tdeCertificates\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualClusters\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualClusterAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualClusterOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncMemberOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncAgentOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncDatabaseIds\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedShortTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedShortTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/notifyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverTrustGroups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverTrustGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverTrustGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps793?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzNzkzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps9496?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzOTQ5Nj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "bf31fdee-0410-4f3a-ab9f-259583fa62d4" + "73e25e5e-fee6-451c-80fc-bafe0ae808cc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -96,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "c4d6fa9e-238f-4501-9679-9951e4a100f5" + "3a272226-937d-4d39-a834-c0e9bbba9cb6" ], "x-ms-correlation-request-id": [ - "c4d6fa9e-238f-4501-9679-9951e4a100f5" + "3a272226-937d-4d39-a834-c0e9bbba9cb6" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T042808Z:c4d6fa9e-238f-4501-9679-9951e4a100f5" + "WESTUS:20200925T011405Z:3a272226-937d-4d39-a834-c0e9bbba9cb6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,10 +111,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:28:07 GMT" + "Fri, 25 Sep 2020 01:14:05 GMT" ], "Content-Length": [ - "166" + "168" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,23 +123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793\",\r\n \"name\": \"ps793\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496\",\r\n \"name\": \"ps9496\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/servers/ps1204?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMxMjA0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/servers/ps311?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMzExP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4acf6f6f-0b1d-43a6-b8e6-991626eb25ce" + "d4153dd0-1de0-4a89-9a87-8fa61fc49e90" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -156,13 +156,13 @@ "gateway" ], "x-ms-request-id": [ - "722a5500-3fb0-4cbb-b2b6-2caac777d569" + "c4e93114-8040-4415-8d3b-5f8bd227d9d0" ], "x-ms-correlation-request-id": [ - "722a5500-3fb0-4cbb-b2b6-2caac777d569" + "c4e93114-8040-4415-8d3b-5f8bd227d9d0" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T042809Z:722a5500-3fb0-4cbb-b2b6-2caac777d569" + "WESTUS:20200925T011406Z:c4e93114-8040-4415-8d3b-5f8bd227d9d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -171,7 +171,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:28:09 GMT" + "Fri, 25 Sep 2020 01:14:05 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -183,17 +183,17 @@ "205" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps1204' under resource group 'ps793' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps311' under resource group 'ps9496' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/servers/ps1204?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMxMjA0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/servers/ps311?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMzExP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -207,19 +207,19 @@ "no-cache" ], "x-ms-request-id": [ - "8eb65255-756d-478a-9882-1214a9a8ded9" + "2765399c-735a-45a0-a31a-535380c2dfa5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11990" ], "x-ms-correlation-request-id": [ - "96f461a1-88b3-4283-b5b5-bb34b641a755" + "5b289df2-44ad-4ac5-8cbd-217c12f3734d" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T042859Z:96f461a1-88b3-4283-b5b5-bb34b641a755" + "WESTUS:20200925T011517Z:5b289df2-44ad-4ac5-8cbd-217c12f3734d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -228,10 +228,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:28:59 GMT" + "Fri, 25 Sep 2020 01:15:17 GMT" ], "Content-Length": [ - "410" + "408" ], "Content-Type": [ "application/json; charset=utf-8" @@ -240,23 +240,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps1204.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"japaneast\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/servers/ps1204\",\r\n \"name\": \"ps1204\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps311.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"japaneast\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/servers/ps311\",\r\n \"name\": \"ps311\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/servers/ps1204?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMxMjA0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/servers/ps311?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMzExP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5715f620-0a83-4283-bd94-118518d34765" + "5f790f08-1af1-4921-a477-e38c42640a05" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -270,19 +270,82 @@ "no-cache" ], "x-ms-request-id": [ - "275eb8ad-0186-46e2-811a-8409d8b7fabf" + "d973fc40-984f-495e-9c62-63609207df1a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11989" + ], + "x-ms-correlation-request-id": [ + "8806dc11-fcd3-4fdb-a048-bd7724de9ff0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200925T011517Z:8806dc11-fcd3-4fdb-a048-bd7724de9ff0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 25 Sep 2020 01:15:17 GMT" + ], + "Content-Length": [ + "408" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps311.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"japaneast\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/servers/ps311\",\r\n \"name\": \"ps311\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/servers/ps311?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMzExP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7d68e4bc-83f5-4044-ac28-c004c70b669b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f2c032b5-c400-473a-95b6-6a459854439b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" ], "x-ms-correlation-request-id": [ - "02e54e61-0189-4fc6-a5f8-5b493363b9c0" + "2bc6f18e-a0e7-4d0d-84b3-82ae89827832" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T042859Z:02e54e61-0189-4fc6-a5f8-5b493363b9c0" + "WESTUS:20200925T011518Z:2bc6f18e-a0e7-4d0d-84b3-82ae89827832" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -291,10 +354,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:28:59 GMT" + "Fri, 25 Sep 2020 01:15:17 GMT" ], "Content-Length": [ - "410" + "408" ], "Content-Type": [ "application/json; charset=utf-8" @@ -303,23 +366,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps1204.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"japaneast\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/servers/ps1204\",\r\n \"name\": \"ps1204\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps311.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"japaneast\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/servers/ps311\",\r\n \"name\": \"ps311\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/servers/ps1204?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMxMjA0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/servers/ps311?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMzExP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4c6f1f74-8176-472f-864f-2c71a23a80db" + "31212632-5a83-4e37-9058-cedd4eed5204" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -333,19 +396,19 @@ "no-cache" ], "x-ms-request-id": [ - "91a2156a-8ec7-454f-9238-1eef33cc0599" + "b68c69c9-5548-4c70-8164-30fa92377321" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11982" ], "x-ms-correlation-request-id": [ - "14b6f01c-3079-44cf-b91d-201473b2664c" + "56e43dbd-b8ab-415f-8874-1d858e608e5a" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T042900Z:14b6f01c-3079-44cf-b91d-201473b2664c" + "WESTUS:20200925T011606Z:56e43dbd-b8ab-415f-8874-1d858e608e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -354,10 +417,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:29:00 GMT" + "Fri, 25 Sep 2020 01:16:06 GMT" ], "Content-Length": [ - "410" + "408" ], "Content-Type": [ "application/json; charset=utf-8" @@ -366,23 +429,212 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps1204.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"japaneast\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/servers/ps1204\",\r\n \"name\": \"ps1204\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps311.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"japaneast\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/servers/ps311\",\r\n \"name\": \"ps311\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/servers/ps1204?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMxMjA0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/servers/ps311?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMzExP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f7ed6ca4-6701-4216-9f61-80f01129918d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "aada6736-135f-4e5a-b32c-139ef22d8d7a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-correlation-request-id": [ + "cf608908-a611-456e-bac0-6624f7adc689" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200925T011623Z:cf608908-a611-456e-bac0-6624f7adc689" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 25 Sep 2020 01:16:22 GMT" + ], + "Content-Length": [ + "408" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps311.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"japaneast\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/servers/ps311\",\r\n \"name\": \"ps311\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/servers/ps311?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMzExP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5e0b75c8-f88d-426f-8ef3-e104946a1a87" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c6d296e0-6a75-40b5-b1f2-d47568006f90" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-correlation-request-id": [ + "22453a46-f634-4b55-946f-43e0ff52d15d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200925T011811Z:22453a46-f634-4b55-946f-43e0ff52d15d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 25 Sep 2020 01:18:10 GMT" + ], + "Content-Length": [ + "408" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps311.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"japaneast\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/servers/ps311\",\r\n \"name\": \"ps311\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/servers/ps311?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMzExP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0ad389f4-4c41-4424-9cb0-0d231e0be789" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a68e5b4e-db40-4f4a-9a48-e183f4c9a325" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11958" + ], + "x-ms-correlation-request-id": [ + "67333703-4b4d-4822-8d57-eebc3755be09" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200925T011913Z:67333703-4b4d-4822-8d57-eebc3755be09" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 25 Sep 2020 01:19:13 GMT" + ], + "Content-Length": [ + "408" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps311.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"japaneast\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/servers/ps311\",\r\n \"name\": \"ps311\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/servers/ps311?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMzExP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"Japan East\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a352edfe-52ec-47bc-9421-0b1e59e52700" + "da80f54e-af6f-46ec-9606-45fef1aeadcd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -402,16 +654,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/locations/japaneast/serverOperationResults/631585f2-ed69-4ad4-93ce-5be4a02d488e?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/locations/japaneast/serverOperationResults/c3656f40-9d57-424b-ba2c-f5062d9192da?api-version=2019-06-01-preview" ], "Retry-After": [ "1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/locations/japaneast/serverAzureAsyncOperation/631585f2-ed69-4ad4-93ce-5be4a02d488e?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/locations/japaneast/serverAzureAsyncOperation/c3656f40-9d57-424b-ba2c-f5062d9192da?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "631585f2-ed69-4ad4-93ce-5be4a02d488e" + "c3656f40-9d57-424b-ba2c-f5062d9192da" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -420,10 +672,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "7d0c3903-2ff1-4cb2-9d95-339cc22f94ab" + "483112a7-73c8-48c7-9d02-1f0152e25329" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T042813Z:7d0c3903-2ff1-4cb2-9d95-339cc22f94ab" + "WESTUS:20200925T011410Z:483112a7-73c8-48c7-9d02-1f0152e25329" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,7 +684,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:28:12 GMT" + "Fri, 25 Sep 2020 01:14:09 GMT" ], "Content-Length": [ "73" @@ -444,17 +696,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-13T04:28:13.22Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-25T01:14:10.45Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/locations/japaneast/serverAzureAsyncOperation/631585f2-ed69-4ad4-93ce-5be4a02d488e?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9qYXBhbmVhc3Qvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi82MzE1ODVmMi1lZDY5LTRhZDQtOTNjZS01YmU0YTAyZDQ4OGU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/locations/japaneast/serverAzureAsyncOperation/c3656f40-9d57-424b-ba2c-f5062d9192da?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvamFwYW5lYXN0L3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vYzM2NTZmNDAtOWQ1Ny00MjRiLWJhMmMtZjUwNjJkOTE5MmRhP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -471,7 +723,7 @@ "1" ], "x-ms-request-id": [ - "b2f410b8-17a8-4df5-aac7-bbabcae0e114" + "ad6345dc-4455-4bdf-bc2b-59d75564ab81" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -480,10 +732,10 @@ "11998" ], "x-ms-correlation-request-id": [ - "17cc0481-c08d-46cd-81c9-bb6a6a06083d" + "a960ad44-0074-4ce1-abb4-002d48dcd26d" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T042814Z:17cc0481-c08d-46cd-81c9-bb6a6a06083d" + "WESTUS:20200925T011411Z:a960ad44-0074-4ce1-abb4-002d48dcd26d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -492,7 +744,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:28:14 GMT" + "Fri, 25 Sep 2020 01:14:11 GMT" ], "Content-Length": [ "107" @@ -504,17 +756,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"631585f2-ed69-4ad4-93ce-5be4a02d488e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T04:28:13.22Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"c3656f40-9d57-424b-ba2c-f5062d9192da\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:14:10.45Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/locations/japaneast/serverAzureAsyncOperation/631585f2-ed69-4ad4-93ce-5be4a02d488e?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9qYXBhbmVhc3Qvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi82MzE1ODVmMi1lZDY5LTRhZDQtOTNjZS01YmU0YTAyZDQ4OGU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/locations/japaneast/serverAzureAsyncOperation/c3656f40-9d57-424b-ba2c-f5062d9192da?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvamFwYW5lYXN0L3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vYzM2NTZmNDAtOWQ1Ny00MjRiLWJhMmMtZjUwNjJkOTE5MmRhP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -531,7 +783,7 @@ "1" ], "x-ms-request-id": [ - "d3665f9b-451a-4148-acd2-4b733c0ac2b1" + "98d3e9bf-4fcb-4797-89bf-b5fbc64b6d4e" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -540,10 +792,10 @@ "11997" ], "x-ms-correlation-request-id": [ - "815725ce-463f-4d55-9675-f31874b6d524" + "a18c09d8-7f76-493a-bb41-b8c38a58cb19" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T042815Z:815725ce-463f-4d55-9675-f31874b6d524" + "WESTUS:20200925T011412Z:a18c09d8-7f76-493a-bb41-b8c38a58cb19" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -552,7 +804,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:28:15 GMT" + "Fri, 25 Sep 2020 01:14:12 GMT" ], "Content-Length": [ "107" @@ -564,17 +816,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"631585f2-ed69-4ad4-93ce-5be4a02d488e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T04:28:13.22Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"c3656f40-9d57-424b-ba2c-f5062d9192da\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:14:10.45Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/locations/japaneast/serverAzureAsyncOperation/631585f2-ed69-4ad4-93ce-5be4a02d488e?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9qYXBhbmVhc3Qvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi82MzE1ODVmMi1lZDY5LTRhZDQtOTNjZS01YmU0YTAyZDQ4OGU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/locations/japaneast/serverAzureAsyncOperation/c3656f40-9d57-424b-ba2c-f5062d9192da?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvamFwYW5lYXN0L3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vYzM2NTZmNDAtOWQ1Ny00MjRiLWJhMmMtZjUwNjJkOTE5MmRhP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -591,7 +843,7 @@ "1" ], "x-ms-request-id": [ - "7873d966-30c6-41a9-a316-e29e92a1bb14" + "2daef7ac-bf60-4f1a-8a50-1b2f9fb140e2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -600,10 +852,10 @@ "11996" ], "x-ms-correlation-request-id": [ - "cb77b3f8-f398-404d-a4b1-c976952f2fdd" + "17e73eb2-172c-4b39-a1a9-8017e3d77531" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T042816Z:cb77b3f8-f398-404d-a4b1-c976952f2fdd" + "WESTUS:20200925T011414Z:17e73eb2-172c-4b39-a1a9-8017e3d77531" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -612,7 +864,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:28:16 GMT" + "Fri, 25 Sep 2020 01:14:13 GMT" ], "Content-Length": [ "107" @@ -624,17 +876,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"631585f2-ed69-4ad4-93ce-5be4a02d488e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T04:28:13.22Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"c3656f40-9d57-424b-ba2c-f5062d9192da\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:14:10.45Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/locations/japaneast/serverAzureAsyncOperation/631585f2-ed69-4ad4-93ce-5be4a02d488e?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9qYXBhbmVhc3Qvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi82MzE1ODVmMi1lZDY5LTRhZDQtOTNjZS01YmU0YTAyZDQ4OGU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/locations/japaneast/serverAzureAsyncOperation/c3656f40-9d57-424b-ba2c-f5062d9192da?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvamFwYW5lYXN0L3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vYzM2NTZmNDAtOWQ1Ny00MjRiLWJhMmMtZjUwNjJkOTE5MmRhP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -651,7 +903,7 @@ "1" ], "x-ms-request-id": [ - "5d601eec-79f0-46cd-8d75-76550357d1af" + "14246039-fa01-4551-a380-df1a65a1078d" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -660,10 +912,10 @@ "11995" ], "x-ms-correlation-request-id": [ - "f15bf961-2c77-4a8c-9579-435d529c079e" + "4622128a-97ff-4bdb-b98c-920cc2f69c6e" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T042818Z:f15bf961-2c77-4a8c-9579-435d529c079e" + "WESTUS:20200925T011415Z:4622128a-97ff-4bdb-b98c-920cc2f69c6e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -672,7 +924,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:28:17 GMT" + "Fri, 25 Sep 2020 01:14:14 GMT" ], "Content-Length": [ "107" @@ -684,17 +936,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"631585f2-ed69-4ad4-93ce-5be4a02d488e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T04:28:13.22Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"c3656f40-9d57-424b-ba2c-f5062d9192da\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:14:10.45Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/locations/japaneast/serverAzureAsyncOperation/631585f2-ed69-4ad4-93ce-5be4a02d488e?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9qYXBhbmVhc3Qvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi82MzE1ODVmMi1lZDY5LTRhZDQtOTNjZS01YmU0YTAyZDQ4OGU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/locations/japaneast/serverAzureAsyncOperation/c3656f40-9d57-424b-ba2c-f5062d9192da?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvamFwYW5lYXN0L3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vYzM2NTZmNDAtOWQ1Ny00MjRiLWJhMmMtZjUwNjJkOTE5MmRhP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -711,7 +963,7 @@ "20" ], "x-ms-request-id": [ - "1312217f-e8eb-4080-8cd1-d60416b6a299" + "6a926965-f835-47a4-b76d-f46150afadd5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -720,10 +972,10 @@ "11994" ], "x-ms-correlation-request-id": [ - "0c163e63-2226-4ab4-9b41-2765be8f9b77" + "c1269515-0c96-4214-b838-49b6657a4675" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T042819Z:0c163e63-2226-4ab4-9b41-2765be8f9b77" + "WESTUS:20200925T011416Z:c1269515-0c96-4214-b838-49b6657a4675" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -732,7 +984,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:28:18 GMT" + "Fri, 25 Sep 2020 01:14:15 GMT" ], "Content-Length": [ "107" @@ -744,17 +996,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"631585f2-ed69-4ad4-93ce-5be4a02d488e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T04:28:13.22Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"c3656f40-9d57-424b-ba2c-f5062d9192da\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:14:10.45Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/locations/japaneast/serverAzureAsyncOperation/631585f2-ed69-4ad4-93ce-5be4a02d488e?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9qYXBhbmVhc3Qvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi82MzE1ODVmMi1lZDY5LTRhZDQtOTNjZS01YmU0YTAyZDQ4OGU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/locations/japaneast/serverAzureAsyncOperation/c3656f40-9d57-424b-ba2c-f5062d9192da?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvamFwYW5lYXN0L3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vYzM2NTZmNDAtOWQ1Ny00MjRiLWJhMmMtZjUwNjJkOTE5MmRhP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -771,7 +1023,7 @@ "20" ], "x-ms-request-id": [ - "ba2f0c33-3749-4941-9a6d-561ff26f5ca6" + "a8bc4325-55ef-4cfb-adf7-3e26c40dd710" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -780,10 +1032,10 @@ "11993" ], "x-ms-correlation-request-id": [ - "88bd054e-5080-48f7-a59d-00eaafb31ff9" + "de040e20-9c83-4a37-b805-0ecd694c3f41" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T042839Z:88bd054e-5080-48f7-a59d-00eaafb31ff9" + "WESTUS:20200925T011436Z:de040e20-9c83-4a37-b805-0ecd694c3f41" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -792,7 +1044,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:28:38 GMT" + "Fri, 25 Sep 2020 01:14:35 GMT" ], "Content-Length": [ "107" @@ -804,17 +1056,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"631585f2-ed69-4ad4-93ce-5be4a02d488e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T04:28:13.22Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"c3656f40-9d57-424b-ba2c-f5062d9192da\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:14:10.45Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/locations/japaneast/serverAzureAsyncOperation/631585f2-ed69-4ad4-93ce-5be4a02d488e?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9qYXBhbmVhc3Qvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi82MzE1ODVmMi1lZDY5LTRhZDQtOTNjZS01YmU0YTAyZDQ4OGU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/locations/japaneast/serverAzureAsyncOperation/c3656f40-9d57-424b-ba2c-f5062d9192da?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvamFwYW5lYXN0L3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vYzM2NTZmNDAtOWQ1Ny00MjRiLWJhMmMtZjUwNjJkOTE5MmRhP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -828,10 +1080,10 @@ "no-cache" ], "Retry-After": [ - "15" + "20" ], "x-ms-request-id": [ - "46f3f9bc-f408-4965-bf9f-5e26b3f9a3c5" + "e817673c-d220-48f6-8424-306539b856fb" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -840,10 +1092,10 @@ "11992" ], "x-ms-correlation-request-id": [ - "4726bc01-ccdf-4a6a-8883-8d99dcf791c7" + "9db2ac50-a669-4de8-8a7e-e099b95a725e" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T042859Z:4726bc01-ccdf-4a6a-8883-8d99dcf791c7" + "WESTUS:20200925T011457Z:9db2ac50-a669-4de8-8a7e-e099b95a725e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -852,7 +1104,67 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:28:59 GMT" + "Fri, 25 Sep 2020 01:14:57 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"c3656f40-9d57-424b-ba2c-f5062d9192da\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:14:10.45Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/locations/japaneast/serverAzureAsyncOperation/c3656f40-9d57-424b-ba2c-f5062d9192da?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvamFwYW5lYXN0L3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vYzM2NTZmNDAtOWQ1Ny00MjRiLWJhMmMtZjUwNjJkOTE5MmRhP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "6f8a62aa-1e2f-4711-8508-049ad154bf84" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "17b57266-d518-4c34-aa2d-4872556cd620" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200925T011517Z:17b57266-d518-4c34-aa2d-4872556cd620" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 25 Sep 2020 01:15:17 GMT" ], "Content-Length": [ "106" @@ -864,23 +1176,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"631585f2-ed69-4ad4-93ce-5be4a02d488e\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-13T04:28:13.22Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"c3656f40-9d57-424b-ba2c-f5062d9192da\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-25T01:14:10.45Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/servers/ps1204/databases/ps4755?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMxMjA0L2RhdGFiYXNlcy9wczQ3NTU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/servers/ps311/databases/ps8249?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMzExL2RhdGFiYXNlcy9wczgyNDk/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f2b1b219-0940-4119-8e3f-a917a043f78a" + "5018c63a-c4db-462d-b7c7-eb4a6c4ae977" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -897,13 +1209,13 @@ "gateway" ], "x-ms-request-id": [ - "d774e337-17fb-4479-9986-baebafdb9b51" + "94833574-3980-4e80-a6da-5a0bc132abbb" ], "x-ms-correlation-request-id": [ - "d774e337-17fb-4479-9986-baebafdb9b51" + "94833574-3980-4e80-a6da-5a0bc132abbb" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T042900Z:d774e337-17fb-4479-9986-baebafdb9b51" + "WESTUS:20200925T011518Z:94833574-3980-4e80-a6da-5a0bc132abbb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -912,7 +1224,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:28:59 GMT" + "Fri, 25 Sep 2020 01:15:17 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -924,17 +1236,17 @@ "222" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps1204/databases/ps4755' under resource group 'ps793' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps311/databases/ps8249' under resource group 'ps9496' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/servers/ps1204/databases/ps4755?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMxMjA0L2RhdGFiYXNlcy9wczQ3NTU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/servers/ps311/databases/ps8249?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMzExL2RhdGFiYXNlcy9wczgyNDk/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -948,19 +1260,19 @@ "no-cache" ], "x-ms-request-id": [ - "45dbef4e-b8b0-414a-a2de-21fc31a24cef" + "60a90394-cf71-4368-b070-69e84003ec9b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11983" ], "x-ms-correlation-request-id": [ - "1556a8c4-dca7-4604-a4bb-b73461c1b9df" + "e2d2e912-cf91-411e-b4ce-a76fd2740f85" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T042947Z:1556a8c4-dca7-4604-a4bb-b73461c1b9df" + "WESTUS:20200925T011606Z:e2d2e912-cf91-411e-b4ce-a76fd2740f85" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -969,10 +1281,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:29:47 GMT" + "Fri, 25 Sep 2020 01:16:05 GMT" ], "Content-Length": [ - "1009" + "1011" ], "Content-Type": [ "application/json; charset=utf-8" @@ -981,23 +1293,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_S_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore,serverless\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"2b7973ef-0515-4470-99f7-0605eadb687e\",\r\n \"creationDate\": \"2020-09-13T04:29:34.15Z\",\r\n \"currentServiceObjectiveName\": \"GP_S_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_S_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"japanwest\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"maxLogSizeBytes\": 80530636800,\r\n \"earliestRestoreDate\": \"2020-09-13T04:59:34.15Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_S_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"autoPauseDelay\": 60,\r\n \"storageAccountType\": \"GRS\",\r\n \"minCapacity\": 0.5\r\n },\r\n \"location\": \"japaneast\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/servers/ps1204/databases/ps4755\",\r\n \"name\": \"ps4755\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_S_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore,serverless\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"067f299f-c29e-4129-9372-1d6e51fd1b27\",\r\n \"creationDate\": \"2020-09-25T01:15:56.207Z\",\r\n \"currentServiceObjectiveName\": \"GP_S_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_S_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"japanwest\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"maxLogSizeBytes\": 80530636800,\r\n \"earliestRestoreDate\": \"2020-09-25T01:45:56.207Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_S_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"autoPauseDelay\": 60,\r\n \"storageAccountType\": \"GRS\",\r\n \"minCapacity\": 0.5\r\n },\r\n \"location\": \"japaneast\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/servers/ps311/databases/ps8249\",\r\n \"name\": \"ps8249\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/servers/ps1204/databases/ps4755?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMxMjA0L2RhdGFiYXNlcy9wczQ3NTU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/servers/ps311/databases/ps8249?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMzExL2RhdGFiYXNlcy9wczgyNDk/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fff25f7b-c77c-427f-bc54-e8f6b185dde8" + "7baf0b17-ca9d-4aa1-b514-7d879f180f1a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1011,19 +1323,19 @@ "no-cache" ], "x-ms-request-id": [ - "0b1ed0b4-d60d-4ffa-8730-885a59a3eefc" + "32bbef0d-a784-4e36-9030-077c3438c893" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11981" ], "x-ms-correlation-request-id": [ - "9e822339-2271-4599-9838-4aa334342ca2" + "0b21b6ce-c304-41a4-aa90-2e90e05c8a3c" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T042947Z:9e822339-2271-4599-9838-4aa334342ca2" + "WESTUS:20200925T011606Z:0b21b6ce-c304-41a4-aa90-2e90e05c8a3c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1032,10 +1344,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:29:47 GMT" + "Fri, 25 Sep 2020 01:16:06 GMT" ], "Content-Length": [ - "1009" + "1011" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1044,23 +1356,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_S_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore,serverless\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"2b7973ef-0515-4470-99f7-0605eadb687e\",\r\n \"creationDate\": \"2020-09-13T04:29:34.15Z\",\r\n \"currentServiceObjectiveName\": \"GP_S_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_S_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"japanwest\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"maxLogSizeBytes\": 80530636800,\r\n \"earliestRestoreDate\": \"2020-09-13T04:59:34.15Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_S_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"autoPauseDelay\": 60,\r\n \"storageAccountType\": \"GRS\",\r\n \"minCapacity\": 0.5\r\n },\r\n \"location\": \"japaneast\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/servers/ps1204/databases/ps4755\",\r\n \"name\": \"ps4755\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_S_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore,serverless\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"067f299f-c29e-4129-9372-1d6e51fd1b27\",\r\n \"creationDate\": \"2020-09-25T01:15:56.207Z\",\r\n \"currentServiceObjectiveName\": \"GP_S_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_S_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"japanwest\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"maxLogSizeBytes\": 80530636800,\r\n \"earliestRestoreDate\": \"2020-09-25T01:45:56.207Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_S_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"autoPauseDelay\": 60,\r\n \"storageAccountType\": \"GRS\",\r\n \"minCapacity\": 0.5\r\n },\r\n \"location\": \"japaneast\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/servers/ps311/databases/ps8249\",\r\n \"name\": \"ps8249\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/servers/ps1204/databases/ps4755?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMxMjA0L2RhdGFiYXNlcy9wczQ3NTU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/servers/ps311/databases/ps8249?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMzExL2RhdGFiYXNlcy9wczgyNDk/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b5148eba-9aaa-49df-9774-1f95a283225e" + "6c16047b-58cd-40d0-8e79-ed936b1ca411" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1074,19 +1386,19 @@ "no-cache" ], "x-ms-request-id": [ - "5555b1a7-f9e2-4f29-8bb5-134a44b601eb" + "eea1b5d2-cede-4182-b4a9-a92c76a2e429" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11980" ], "x-ms-correlation-request-id": [ - "b1e42b0f-0df7-44a8-9ddf-3cb6f6ff5df7" + "bade95ca-5592-478b-b9df-ff21fcd04266" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T042948Z:b1e42b0f-0df7-44a8-9ddf-3cb6f6ff5df7" + "WESTUS:20200925T011607Z:bade95ca-5592-478b-b9df-ff21fcd04266" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1095,10 +1407,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:29:47 GMT" + "Fri, 25 Sep 2020 01:16:06 GMT" ], "Content-Length": [ - "1009" + "1011" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1107,17 +1419,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_S_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore,serverless\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"2b7973ef-0515-4470-99f7-0605eadb687e\",\r\n \"creationDate\": \"2020-09-13T04:29:34.15Z\",\r\n \"currentServiceObjectiveName\": \"GP_S_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_S_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"japanwest\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"maxLogSizeBytes\": 80530636800,\r\n \"earliestRestoreDate\": \"2020-09-13T04:59:34.15Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_S_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"autoPauseDelay\": 60,\r\n \"storageAccountType\": \"GRS\",\r\n \"minCapacity\": 0.5\r\n },\r\n \"location\": \"japaneast\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/servers/ps1204/databases/ps4755\",\r\n \"name\": \"ps4755\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_S_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore,serverless\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"067f299f-c29e-4129-9372-1d6e51fd1b27\",\r\n \"creationDate\": \"2020-09-25T01:15:56.207Z\",\r\n \"currentServiceObjectiveName\": \"GP_S_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_S_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"japanwest\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"maxLogSizeBytes\": 80530636800,\r\n \"earliestRestoreDate\": \"2020-09-25T01:45:56.207Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_S_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"autoPauseDelay\": 60,\r\n \"storageAccountType\": \"GRS\",\r\n \"minCapacity\": 0.5\r\n },\r\n \"location\": \"japaneast\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/servers/ps311/databases/ps8249\",\r\n \"name\": \"ps8249\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/servers/ps1204/databases/ps4755?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMxMjA0L2RhdGFiYXNlcy9wczQ3NTU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/servers/ps311/databases/ps8249?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMzExL2RhdGFiYXNlcy9wczgyNDk/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1131,19 +1443,19 @@ "no-cache" ], "x-ms-request-id": [ - "6357f3cf-e597-4dcb-b4c3-9041b1a709bf" + "1a9c7e63-9b25-49da-a1cc-4be7b33e203a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11978" ], "x-ms-correlation-request-id": [ - "83792942-cece-4ca3-a173-56c3765486c1" + "71a0af44-ec2f-40be-9ec6-b00c27d89297" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T043004Z:83792942-cece-4ca3-a173-56c3765486c1" + "WESTUS:20200925T011623Z:71a0af44-ec2f-40be-9ec6-b00c27d89297" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1152,10 +1464,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:30:03 GMT" + "Fri, 25 Sep 2020 01:16:22 GMT" ], "Content-Length": [ - "999" + "1001" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1164,23 +1476,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_S_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore,serverless\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"2b7973ef-0515-4470-99f7-0605eadb687e\",\r\n \"creationDate\": \"2020-09-13T04:29:34.15Z\",\r\n \"currentServiceObjectiveName\": \"GP_S_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_S_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"japanwest\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"maxLogSizeBytes\": 0,\r\n \"earliestRestoreDate\": \"2020-09-13T04:59:34.15Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_S_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"autoPauseDelay\": 60,\r\n \"storageAccountType\": \"GRS\",\r\n \"minCapacity\": 0.5\r\n },\r\n \"location\": \"japaneast\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/servers/ps1204/databases/ps4755\",\r\n \"name\": \"ps4755\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_S_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore,serverless\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"067f299f-c29e-4129-9372-1d6e51fd1b27\",\r\n \"creationDate\": \"2020-09-25T01:15:56.207Z\",\r\n \"currentServiceObjectiveName\": \"GP_S_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_S_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"japanwest\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"maxLogSizeBytes\": 0,\r\n \"earliestRestoreDate\": \"2020-09-25T01:45:56.207Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_S_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"autoPauseDelay\": 60,\r\n \"storageAccountType\": \"GRS\",\r\n \"minCapacity\": 0.5\r\n },\r\n \"location\": \"japaneast\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/servers/ps311/databases/ps8249\",\r\n \"name\": \"ps8249\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/servers/ps1204/databases/ps4755?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMxMjA0L2RhdGFiYXNlcy9wczQ3NTU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/servers/ps311/databases/ps8249?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMzExL2RhdGFiYXNlcy9wczgyNDk/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6bc34b8d-05a9-4d2b-8152-d8ed7e33569c" + "c0db2563-ddde-4505-8892-da6d65e83fdf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1194,19 +1506,19 @@ "no-cache" ], "x-ms-request-id": [ - "d1c85bf0-3e84-4daf-81cd-f3d0bbda6338" + "aa1c3619-1a04-4196-8410-84da86dd1c3b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11976" ], "x-ms-correlation-request-id": [ - "1d177183-d3da-458b-acfd-0e5cdcaad781" + "914a950a-6514-4a6c-b5fc-fc228d120d16" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T043004Z:1d177183-d3da-458b-acfd-0e5cdcaad781" + "WESTUS:20200925T011623Z:914a950a-6514-4a6c-b5fc-fc228d120d16" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1215,10 +1527,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:30:03 GMT" + "Fri, 25 Sep 2020 01:16:22 GMT" ], "Content-Length": [ - "999" + "1001" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1227,23 +1539,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_S_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore,serverless\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"2b7973ef-0515-4470-99f7-0605eadb687e\",\r\n \"creationDate\": \"2020-09-13T04:29:34.15Z\",\r\n \"currentServiceObjectiveName\": \"GP_S_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_S_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"japanwest\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"maxLogSizeBytes\": 0,\r\n \"earliestRestoreDate\": \"2020-09-13T04:59:34.15Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_S_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"autoPauseDelay\": 60,\r\n \"storageAccountType\": \"GRS\",\r\n \"minCapacity\": 0.5\r\n },\r\n \"location\": \"japaneast\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/servers/ps1204/databases/ps4755\",\r\n \"name\": \"ps4755\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_S_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore,serverless\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"067f299f-c29e-4129-9372-1d6e51fd1b27\",\r\n \"creationDate\": \"2020-09-25T01:15:56.207Z\",\r\n \"currentServiceObjectiveName\": \"GP_S_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_S_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"japanwest\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"maxLogSizeBytes\": 0,\r\n \"earliestRestoreDate\": \"2020-09-25T01:45:56.207Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_S_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"autoPauseDelay\": 60,\r\n \"storageAccountType\": \"GRS\",\r\n \"minCapacity\": 0.5\r\n },\r\n \"location\": \"japaneast\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/servers/ps311/databases/ps8249\",\r\n \"name\": \"ps8249\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/servers/ps1204/databases/ps4755?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMxMjA0L2RhdGFiYXNlcy9wczQ3NTU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/servers/ps311/databases/ps8249?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMzExL2RhdGFiYXNlcy9wczgyNDk/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d348bd24-d533-46c7-a66c-2420125df4b3" + "b1264fb1-2abc-4f4f-b089-7038e52b46df" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1257,19 +1569,19 @@ "no-cache" ], "x-ms-request-id": [ - "e4352606-7cbf-491d-8360-fdc8288f0764" + "de7f93d8-fd04-4cde-b4f5-6818fea5ef1a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11975" ], "x-ms-correlation-request-id": [ - "1c7b22d1-f1e8-456a-8632-9786363baac1" + "cfb265d5-c6cd-4f2d-935a-553c61dc82d0" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T043004Z:1c7b22d1-f1e8-456a-8632-9786363baac1" + "WESTUS:20200925T011623Z:cfb265d5-c6cd-4f2d-935a-553c61dc82d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1278,10 +1590,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:30:03 GMT" + "Fri, 25 Sep 2020 01:16:22 GMT" ], "Content-Length": [ - "999" + "1001" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1290,17 +1602,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_S_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore,serverless\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"2b7973ef-0515-4470-99f7-0605eadb687e\",\r\n \"creationDate\": \"2020-09-13T04:29:34.15Z\",\r\n \"currentServiceObjectiveName\": \"GP_S_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_S_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"japanwest\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"maxLogSizeBytes\": 0,\r\n \"earliestRestoreDate\": \"2020-09-13T04:59:34.15Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_S_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"autoPauseDelay\": 60,\r\n \"storageAccountType\": \"GRS\",\r\n \"minCapacity\": 0.5\r\n },\r\n \"location\": \"japaneast\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/servers/ps1204/databases/ps4755\",\r\n \"name\": \"ps4755\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_S_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore,serverless\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"067f299f-c29e-4129-9372-1d6e51fd1b27\",\r\n \"creationDate\": \"2020-09-25T01:15:56.207Z\",\r\n \"currentServiceObjectiveName\": \"GP_S_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_S_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"japanwest\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"maxLogSizeBytes\": 0,\r\n \"earliestRestoreDate\": \"2020-09-25T01:45:56.207Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_S_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"autoPauseDelay\": 60,\r\n \"storageAccountType\": \"GRS\",\r\n \"minCapacity\": 0.5\r\n },\r\n \"location\": \"japaneast\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/servers/ps311/databases/ps8249\",\r\n \"name\": \"ps8249\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/servers/ps1204/databases/ps4755?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMxMjA0L2RhdGFiYXNlcy9wczQ3NTU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/servers/ps311/databases/ps8249?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMzExL2RhdGFiYXNlcy9wczgyNDk/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1314,19 +1626,19 @@ "no-cache" ], "x-ms-request-id": [ - "bc4dae30-0324-48fc-807a-20fd52629203" + "da0773fe-752b-4cd8-aa9c-aa0820c0b448" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11967" ], "x-ms-correlation-request-id": [ - "8a69700c-3bc3-454a-9922-cdabd4fc0097" + "82383fbe-2c2c-43df-9ef8-94b016f44c36" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T043151Z:8a69700c-3bc3-454a-9922-cdabd4fc0097" + "WESTUS:20200925T011810Z:82383fbe-2c2c-43df-9ef8-94b016f44c36" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1335,10 +1647,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:31:51 GMT" + "Fri, 25 Sep 2020 01:18:10 GMT" ], "Content-Length": [ - "857" + "859" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1347,23 +1659,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"2b7973ef-0515-4470-99f7-0605eadb687e\",\r\n \"creationDate\": \"2020-09-13T04:29:34.15Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"japanwest\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-13T04:59:34.15Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"japaneast\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/servers/ps1204/databases/ps4755\",\r\n \"name\": \"ps4755\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"067f299f-c29e-4129-9372-1d6e51fd1b27\",\r\n \"creationDate\": \"2020-09-25T01:15:56.207Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"japanwest\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-25T01:45:56.207Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"japaneast\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/servers/ps311/databases/ps8249\",\r\n \"name\": \"ps8249\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/servers/ps1204/databases/ps4755?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMxMjA0L2RhdGFiYXNlcy9wczQ3NTU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/servers/ps311/databases/ps8249?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMzExL2RhdGFiYXNlcy9wczgyNDk/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "523db274-1df3-4247-af23-005208793b31" + "3ac29a8a-b895-49ff-bd65-c3fec4ecbf16" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1377,19 +1689,19 @@ "no-cache" ], "x-ms-request-id": [ - "ed819dd9-41f2-47bd-b70a-d651b44c99a4" + "173d09d3-af2a-4a80-9a4d-99c0d9bf29fe" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11965" ], "x-ms-correlation-request-id": [ - "ce641d10-26e2-437a-83de-6ddff97e427b" + "8bb3961e-c937-4fda-8afa-e03f3f8c1a78" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T043151Z:ce641d10-26e2-437a-83de-6ddff97e427b" + "WESTUS:20200925T011811Z:8bb3961e-c937-4fda-8afa-e03f3f8c1a78" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1398,10 +1710,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:31:51 GMT" + "Fri, 25 Sep 2020 01:18:10 GMT" ], "Content-Length": [ - "857" + "859" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1410,23 +1722,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"2b7973ef-0515-4470-99f7-0605eadb687e\",\r\n \"creationDate\": \"2020-09-13T04:29:34.15Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"japanwest\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-13T04:59:34.15Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"japaneast\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/servers/ps1204/databases/ps4755\",\r\n \"name\": \"ps4755\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"067f299f-c29e-4129-9372-1d6e51fd1b27\",\r\n \"creationDate\": \"2020-09-25T01:15:56.207Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"japanwest\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-25T01:45:56.207Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"japaneast\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/servers/ps311/databases/ps8249\",\r\n \"name\": \"ps8249\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/servers/ps1204/databases/ps4755?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMxMjA0L2RhdGFiYXNlcy9wczQ3NTU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/servers/ps311/databases/ps8249?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMzExL2RhdGFiYXNlcy9wczgyNDk/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c16402bc-e724-4d0e-bfe9-f1423d12a15f" + "57be9fd6-9351-49a3-aae9-c8f61aa49001" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1440,19 +1752,19 @@ "no-cache" ], "x-ms-request-id": [ - "c641218f-13b2-4deb-b973-4dfafcc145c9" + "29e601fa-9212-4e5a-8c9c-66092b66e14a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11964" ], "x-ms-correlation-request-id": [ - "d6c75baf-c852-45d4-babb-49906638e3b0" + "149fa5a9-f828-4e0a-92ad-ccf857d588c0" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T043152Z:d6c75baf-c852-45d4-babb-49906638e3b0" + "WESTUS:20200925T011811Z:149fa5a9-f828-4e0a-92ad-ccf857d588c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1461,10 +1773,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:31:51 GMT" + "Fri, 25 Sep 2020 01:18:10 GMT" ], "Content-Length": [ - "857" + "859" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1473,17 +1785,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"2b7973ef-0515-4470-99f7-0605eadb687e\",\r\n \"creationDate\": \"2020-09-13T04:29:34.15Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"japanwest\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-13T04:59:34.15Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"japaneast\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/servers/ps1204/databases/ps4755\",\r\n \"name\": \"ps4755\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"067f299f-c29e-4129-9372-1d6e51fd1b27\",\r\n \"creationDate\": \"2020-09-25T01:15:56.207Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"japanwest\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-25T01:45:56.207Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"japaneast\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/servers/ps311/databases/ps8249\",\r\n \"name\": \"ps8249\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/servers/ps1204/databases/ps4755?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMxMjA0L2RhdGFiYXNlcy9wczQ3NTU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/servers/ps311/databases/ps8249?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMzExL2RhdGFiYXNlcy9wczgyNDk/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1497,19 +1809,19 @@ "no-cache" ], "x-ms-request-id": [ - "7a56f4a2-46a1-405c-85a5-31b2b5e819f4" + "966de947-7c50-4c98-a60e-92684fbd59e6" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11959" ], "x-ms-correlation-request-id": [ - "3fb0bb77-9d47-4930-b827-7ef708b0d79e" + "b648fd22-32a0-48eb-99e8-615ce1820d87" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T043253Z:3fb0bb77-9d47-4930-b827-7ef708b0d79e" + "WESTUS:20200925T011913Z:b648fd22-32a0-48eb-99e8-615ce1820d87" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1518,10 +1830,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:32:52 GMT" + "Fri, 25 Sep 2020 01:19:13 GMT" ], "Content-Length": [ - "1009" + "1011" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1530,23 +1842,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_S_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore,serverless\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"2b7973ef-0515-4470-99f7-0605eadb687e\",\r\n \"creationDate\": \"2020-09-13T04:29:34.15Z\",\r\n \"currentServiceObjectiveName\": \"GP_S_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_S_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"japanwest\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"maxLogSizeBytes\": 80530636800,\r\n \"earliestRestoreDate\": \"2020-09-13T04:59:34.15Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_S_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"autoPauseDelay\": 60,\r\n \"storageAccountType\": \"GRS\",\r\n \"minCapacity\": 0.5\r\n },\r\n \"location\": \"japaneast\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/servers/ps1204/databases/ps4755\",\r\n \"name\": \"ps4755\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_S_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore,serverless\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"067f299f-c29e-4129-9372-1d6e51fd1b27\",\r\n \"creationDate\": \"2020-09-25T01:15:56.207Z\",\r\n \"currentServiceObjectiveName\": \"GP_S_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_S_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"japanwest\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"maxLogSizeBytes\": 80530636800,\r\n \"earliestRestoreDate\": \"2020-09-25T01:45:56.207Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_S_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"autoPauseDelay\": 60,\r\n \"storageAccountType\": \"GRS\",\r\n \"minCapacity\": 0.5\r\n },\r\n \"location\": \"japaneast\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/servers/ps311/databases/ps8249\",\r\n \"name\": \"ps8249\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/servers/ps1204/databases/ps4755?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMxMjA0L2RhdGFiYXNlcy9wczQ3NTU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/servers/ps311/databases/ps8249?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMzExL2RhdGFiYXNlcy9wczgyNDk/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "50f38b43-a142-4c5a-aa4a-881e864772b1" + "60234f26-6e91-4243-9d83-8b2eaf7ee48a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1560,19 +1872,19 @@ "no-cache" ], "x-ms-request-id": [ - "221f9972-7ea5-4b30-8367-de5a0027881b" + "952057f1-e14b-4ddb-b9b1-44a7d2f905d4" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" + "11957" ], "x-ms-correlation-request-id": [ - "7e247449-8c13-4047-b6ef-a143fbfe23b5" + "8a504bdf-5976-4b19-9722-5676d7905f49" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T043253Z:7e247449-8c13-4047-b6ef-a143fbfe23b5" + "WESTUS:20200925T011913Z:8a504bdf-5976-4b19-9722-5676d7905f49" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1581,10 +1893,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:32:53 GMT" + "Fri, 25 Sep 2020 01:19:13 GMT" ], "Content-Length": [ - "1009" + "1011" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1593,23 +1905,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_S_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore,serverless\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"2b7973ef-0515-4470-99f7-0605eadb687e\",\r\n \"creationDate\": \"2020-09-13T04:29:34.15Z\",\r\n \"currentServiceObjectiveName\": \"GP_S_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_S_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"japanwest\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"maxLogSizeBytes\": 80530636800,\r\n \"earliestRestoreDate\": \"2020-09-13T04:59:34.15Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_S_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"autoPauseDelay\": 60,\r\n \"storageAccountType\": \"GRS\",\r\n \"minCapacity\": 0.5\r\n },\r\n \"location\": \"japaneast\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/servers/ps1204/databases/ps4755\",\r\n \"name\": \"ps4755\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_S_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore,serverless\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"067f299f-c29e-4129-9372-1d6e51fd1b27\",\r\n \"creationDate\": \"2020-09-25T01:15:56.207Z\",\r\n \"currentServiceObjectiveName\": \"GP_S_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_S_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"japanwest\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"maxLogSizeBytes\": 80530636800,\r\n \"earliestRestoreDate\": \"2020-09-25T01:45:56.207Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_S_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"autoPauseDelay\": 60,\r\n \"storageAccountType\": \"GRS\",\r\n \"minCapacity\": 0.5\r\n },\r\n \"location\": \"japaneast\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/servers/ps311/databases/ps8249\",\r\n \"name\": \"ps8249\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/servers/ps1204/databases/ps4755?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMxMjA0L2RhdGFiYXNlcy9wczQ3NTU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/servers/ps311/databases/ps8249?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMzExL2RhdGFiYXNlcy9wczgyNDk/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "387d4bb7-39b4-4bd7-9cbc-a4901de5d577" + "6a68cd99-e51d-490d-8214-82459cd21b47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1623,19 +1935,19 @@ "no-cache" ], "x-ms-request-id": [ - "d85e8061-cad1-42dd-bb91-c4f614f4a106" + "da5d4019-dff7-44df-b705-60e959999305" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" + "11956" ], "x-ms-correlation-request-id": [ - "30188602-5890-4201-99a6-e729243bac95" + "2219bf1a-a290-40f9-957d-8f3c60f23391" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T043254Z:30188602-5890-4201-99a6-e729243bac95" + "WESTUS:20200925T011913Z:2219bf1a-a290-40f9-957d-8f3c60f23391" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1644,10 +1956,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:32:53 GMT" + "Fri, 25 Sep 2020 01:19:13 GMT" ], "Content-Length": [ - "1009" + "1011" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1656,17 +1968,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_S_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore,serverless\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"2b7973ef-0515-4470-99f7-0605eadb687e\",\r\n \"creationDate\": \"2020-09-13T04:29:34.15Z\",\r\n \"currentServiceObjectiveName\": \"GP_S_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_S_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"japanwest\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"maxLogSizeBytes\": 80530636800,\r\n \"earliestRestoreDate\": \"2020-09-13T04:59:34.15Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_S_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"autoPauseDelay\": 60,\r\n \"storageAccountType\": \"GRS\",\r\n \"minCapacity\": 0.5\r\n },\r\n \"location\": \"japaneast\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/servers/ps1204/databases/ps4755\",\r\n \"name\": \"ps4755\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_S_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore,serverless\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"067f299f-c29e-4129-9372-1d6e51fd1b27\",\r\n \"creationDate\": \"2020-09-25T01:15:56.207Z\",\r\n \"currentServiceObjectiveName\": \"GP_S_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_S_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"japanwest\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"maxLogSizeBytes\": 80530636800,\r\n \"earliestRestoreDate\": \"2020-09-25T01:45:56.207Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_S_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"autoPauseDelay\": 60,\r\n \"storageAccountType\": \"GRS\",\r\n \"minCapacity\": 0.5\r\n },\r\n \"location\": \"japaneast\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/servers/ps311/databases/ps8249\",\r\n \"name\": \"ps8249\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/servers/ps1204/databases/ps4755?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMxMjA0L2RhdGFiYXNlcy9wczQ3NTU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/servers/ps311/databases/ps8249?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMzExL2RhdGFiYXNlcy9wczgyNDk/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1680,19 +1992,19 @@ "no-cache" ], "x-ms-request-id": [ - "84cba5f1-e92d-4f38-b9c9-1859d0931c14" + "04a21493-9fc2-4003-9067-603b7d07a60e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11954" ], "x-ms-correlation-request-id": [ - "d1dc5f9f-58c1-463c-9433-92bdac9e0213" + "4c4973ba-f2d1-48a4-8cef-a0c9ef112a3c" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T043310Z:d1dc5f9f-58c1-463c-9433-92bdac9e0213" + "WESTUS:20200925T011929Z:4c4973ba-f2d1-48a4-8cef-a0c9ef112a3c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1701,10 +2013,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:33:09 GMT" + "Fri, 25 Sep 2020 01:19:29 GMT" ], "Content-Length": [ - "1011" + "1013" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1713,23 +2025,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_S_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore,serverless\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"2b7973ef-0515-4470-99f7-0605eadb687e\",\r\n \"creationDate\": \"2020-09-13T04:29:34.15Z\",\r\n \"currentServiceObjectiveName\": \"GP_S_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_S_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"japanwest\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"maxLogSizeBytes\": 80530636800,\r\n \"earliestRestoreDate\": \"2020-09-13T04:59:34.15Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_S_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"autoPauseDelay\": 1440,\r\n \"storageAccountType\": \"GRS\",\r\n \"minCapacity\": 2.0\r\n },\r\n \"location\": \"japaneast\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/servers/ps1204/databases/ps4755\",\r\n \"name\": \"ps4755\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_S_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore,serverless\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"067f299f-c29e-4129-9372-1d6e51fd1b27\",\r\n \"creationDate\": \"2020-09-25T01:15:56.207Z\",\r\n \"currentServiceObjectiveName\": \"GP_S_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_S_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"japanwest\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"maxLogSizeBytes\": 80530636800,\r\n \"earliestRestoreDate\": \"2020-09-25T01:45:56.207Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_S_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"autoPauseDelay\": 1440,\r\n \"storageAccountType\": \"GRS\",\r\n \"minCapacity\": 2.0\r\n },\r\n \"location\": \"japaneast\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/servers/ps311/databases/ps8249\",\r\n \"name\": \"ps8249\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/servers/ps1204/databases/ps4755?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMxMjA0L2RhdGFiYXNlcy9wczQ3NTU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/servers/ps311/databases/ps8249?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMzExL2RhdGFiYXNlcy9wczgyNDk/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_S\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"maxSizeBytes\": 268435456000,\r\n \"readScale\": \"\"\r\n },\r\n \"location\": \"japaneast\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "68a1d542-5815-41ad-9817-47de30d8a706" + "c3c95879-ac1b-43d6-bc8c-8e5eeab4a989" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1749,16 +2061,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/locations/japaneast/databaseOperationResults/c794fb06-8382-4531-ae21-83461fcae684?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/locations/japaneast/databaseOperationResults/f9004104-1725-4e34-b950-39d3a829d011?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/locations/japaneast/databaseAzureAsyncOperation/c794fb06-8382-4531-ae21-83461fcae684?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/locations/japaneast/databaseAzureAsyncOperation/f9004104-1725-4e34-b950-39d3a829d011?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "c794fb06-8382-4531-ae21-83461fcae684" + "f9004104-1725-4e34-b950-39d3a829d011" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1767,10 +2079,10 @@ "1198" ], "x-ms-correlation-request-id": [ - "198823bb-4706-44ef-92f4-7e20dd062d72" + "87dc37d9-456f-43df-85f5-5079bb1f90bb" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T042901Z:198823bb-4706-44ef-92f4-7e20dd062d72" + "WESTUS:20200925T011520Z:87dc37d9-456f-43df-85f5-5079bb1f90bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1779,10 +2091,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:29:01 GMT" + "Fri, 25 Sep 2020 01:15:20 GMT" ], "Content-Length": [ - "76" + "75" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1791,23 +2103,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2020-09-13T04:29:01.867Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2020-09-25T01:15:20.86Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/servers/ps1204/databases/ps4755?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMxMjA0L2RhdGFiYXNlcy9wczQ3NTU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/servers/ps311/databases/ps8249?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMzExL2RhdGFiYXNlcy9wczgyNDk/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": 0,\r\n \"readScale\": \"Disabled\"\r\n },\r\n \"location\": \"japaneast\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "527403db-6d28-465e-a55b-d4158649b673" + "577b2021-d68a-4f67-812a-3b33fbd8d2d2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1827,16 +2139,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/locations/japaneast/databaseOperationResults/43bc71f0-8af6-44f8-bf9e-749afc662e96?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/locations/japaneast/databaseOperationResults/16a07262-f440-4d53-9c89-9a4f85872ccd?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/locations/japaneast/databaseAzureAsyncOperation/43bc71f0-8af6-44f8-bf9e-749afc662e96?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/locations/japaneast/databaseAzureAsyncOperation/16a07262-f440-4d53-9c89-9a4f85872ccd?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "33c881cf-a057-4e0f-b1ca-c84617dd19c0" + "16a07262-f440-4d53-9c89-9a4f85872ccd" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1845,10 +2157,10 @@ "1197" ], "x-ms-correlation-request-id": [ - "adad6a17-3ef2-4604-a76b-eff63e320f3e" + "f1340789-26b6-4089-96d7-e9a8c9d070e0" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T042948Z:adad6a17-3ef2-4604-a76b-eff63e320f3e" + "WESTUS:20200925T011607Z:f1340789-26b6-4089-96d7-e9a8c9d070e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1857,7 +2169,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:29:48 GMT" + "Fri, 25 Sep 2020 01:16:07 GMT" ], "Content-Length": [ "75" @@ -1869,23 +2181,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-09-13T04:29:48.65Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-09-25T01:16:07.74Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/servers/ps1204/databases/ps4755?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMxMjA0L2RhdGFiYXNlcy9wczQ3NTU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/servers/ps311/databases/ps8249?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMzExL2RhdGFiYXNlcy9wczgyNDk/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"properties\": {\r\n \"maxSizeBytes\": 0,\r\n \"readScale\": \"Disabled\"\r\n },\r\n \"location\": \"japaneast\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "79f5864a-4e81-4d02-a5dc-4ff003e03c93" + "67b39a2a-9477-420c-8a6e-8096a7fc6ae3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1905,16 +2217,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/locations/japaneast/databaseOperationResults/369f8d50-b4fb-4745-8665-35ffa8ccd0ca?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/locations/japaneast/databaseOperationResults/59606a07-d45b-40cd-ab0c-365f8968ca98?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/locations/japaneast/databaseAzureAsyncOperation/369f8d50-b4fb-4745-8665-35ffa8ccd0ca?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/locations/japaneast/databaseAzureAsyncOperation/59606a07-d45b-40cd-ab0c-365f8968ca98?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "608356d0-ad8c-4702-8b33-9d1e185cc395" + "59606a07-d45b-40cd-ab0c-365f8968ca98" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1923,10 +2235,10 @@ "1196" ], "x-ms-correlation-request-id": [ - "b2f46bdb-49a7-445b-8a6e-af55212dde19" + "1c7e5939-55e5-40b7-8fad-b400eab64652" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T043005Z:b2f46bdb-49a7-445b-8a6e-af55212dde19" + "WESTUS:20200925T011624Z:1c7e5939-55e5-40b7-8fad-b400eab64652" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1935,7 +2247,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:30:04 GMT" + "Fri, 25 Sep 2020 01:16:23 GMT" ], "Content-Length": [ "76" @@ -1947,23 +2259,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-09-13T04:30:05.153Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-09-25T01:16:24.523Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/servers/ps1204/databases/ps4755?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMxMjA0L2RhdGFiYXNlcy9wczQ3NTU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/servers/ps311/databases/ps8249?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMzExL2RhdGFiYXNlcy9wczgyNDk/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_S\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"maxSizeBytes\": 0,\r\n \"readScale\": \"Disabled\"\r\n },\r\n \"location\": \"japaneast\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0880eaeb-83d7-4d11-8207-adc73e4b8ec2" + "29a85b01-891b-4258-b472-63e52a673efb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1983,16 +2295,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/locations/japaneast/databaseOperationResults/1310673c-7183-48d0-b57e-2675c6735780?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/locations/japaneast/databaseOperationResults/9063e500-95df-447c-870c-06521340496c?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/locations/japaneast/databaseAzureAsyncOperation/1310673c-7183-48d0-b57e-2675c6735780?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/locations/japaneast/databaseAzureAsyncOperation/9063e500-95df-447c-870c-06521340496c?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "582992cd-129e-4506-a3eb-3ab135f72510" + "9063e500-95df-447c-870c-06521340496c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2001,10 +2313,10 @@ "1195" ], "x-ms-correlation-request-id": [ - "ee878c02-9785-4b96-9600-7d2a0a170edf" + "fa924e80-bc98-42b4-87bd-ee52684cdec8" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T043152Z:ee878c02-9785-4b96-9600-7d2a0a170edf" + "WESTUS:20200925T011812Z:fa924e80-bc98-42b4-87bd-ee52684cdec8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2013,10 +2325,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:31:52 GMT" + "Fri, 25 Sep 2020 01:18:11 GMT" ], "Content-Length": [ - "75" + "76" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2025,23 +2337,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-09-13T04:31:52.68Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-09-25T01:18:12.097Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/servers/ps1204/databases/ps4755?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMxMjA0L2RhdGFiYXNlcy9wczQ3NTU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/servers/ps311/databases/ps8249?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMzExL2RhdGFiYXNlcy9wczgyNDk/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_S\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"maxSizeBytes\": 0,\r\n \"readScale\": \"Disabled\",\r\n \"autoPauseDelay\": 1440,\r\n \"minCapacity\": 2.0\r\n },\r\n \"location\": \"japaneast\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b463bc14-a14f-41a5-a968-40439aaf2dde" + "7350dc6f-eae4-4d04-9bf2-5a5501303c0e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2061,16 +2373,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/locations/japaneast/databaseOperationResults/5ef826b2-73ee-4e99-b82d-a397f5d1aaae?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/locations/japaneast/databaseOperationResults/ee630cd4-8587-462d-b525-52a10dcf4a59?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/locations/japaneast/databaseAzureAsyncOperation/5ef826b2-73ee-4e99-b82d-a397f5d1aaae?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/locations/japaneast/databaseAzureAsyncOperation/ee630cd4-8587-462d-b525-52a10dcf4a59?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "d06e9e45-9370-4da3-ac5d-8ae508994b48" + "ee630cd4-8587-462d-b525-52a10dcf4a59" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2079,10 +2391,10 @@ "1194" ], "x-ms-correlation-request-id": [ - "6bbadb00-cb35-4b2d-91c3-755138ac9c7e" + "b3af582d-fe0f-41bb-ae9f-53412e7419f3" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T043254Z:6bbadb00-cb35-4b2d-91c3-755138ac9c7e" + "WESTUS:20200925T011914Z:b3af582d-fe0f-41bb-ae9f-53412e7419f3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2091,7 +2403,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:32:54 GMT" + "Fri, 25 Sep 2020 01:19:14 GMT" ], "Content-Length": [ "76" @@ -2103,17 +2415,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-09-13T04:32:54.783Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-09-25T01:19:14.547Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/locations/japaneast/databaseAzureAsyncOperation/c794fb06-8382-4531-ae21-83461fcae684?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9qYXBhbmVhc3QvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uL2M3OTRmYjA2LTgzODItNDUzMS1hZTIxLTgzNDYxZmNhZTY4ND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/locations/japaneast/databaseAzureAsyncOperation/f9004104-1725-4e34-b950-39d3a829d011?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvamFwYW5lYXN0L2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9mOTAwNDEwNC0xNzI1LTRlMzQtYjk1MC0zOWQzYTgyOWQwMTE/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2130,19 +2442,19 @@ "15" ], "x-ms-request-id": [ - "00598f0f-d67c-4c11-9365-32f0736c051a" + "f6c123bd-a01a-4a6a-b341-7ec4fcd517f7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11986" ], "x-ms-correlation-request-id": [ - "2feb0edf-c1b7-4c93-8547-aed096b0377b" + "10eae2f3-0a2b-40e2-b436-e0234d41daca" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T042917Z:2feb0edf-c1b7-4c93-8547-aed096b0377b" + "WESTUS:20200925T011536Z:10eae2f3-0a2b-40e2-b436-e0234d41daca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2151,10 +2463,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:29:16 GMT" + "Fri, 25 Sep 2020 01:15:35 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2163,17 +2475,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"c794fb06-8382-4531-ae21-83461fcae684\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T04:29:01.867Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"f9004104-1725-4e34-b950-39d3a829d011\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:15:20.86Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/locations/japaneast/databaseAzureAsyncOperation/c794fb06-8382-4531-ae21-83461fcae684?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9qYXBhbmVhc3QvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uL2M3OTRmYjA2LTgzODItNDUzMS1hZTIxLTgzNDYxZmNhZTY4ND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/locations/japaneast/databaseAzureAsyncOperation/f9004104-1725-4e34-b950-39d3a829d011?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvamFwYW5lYXN0L2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9mOTAwNDEwNC0xNzI1LTRlMzQtYjk1MC0zOWQzYTgyOWQwMTE/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2190,19 +2502,19 @@ "15" ], "x-ms-request-id": [ - "f3c62529-1131-4441-ba82-de002c3abb3d" + "2c709288-2b91-4993-ad80-6899b4bc118f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11985" ], "x-ms-correlation-request-id": [ - "5142d728-2dbe-47fa-9cbf-f4e51533d9d4" + "b8b72934-b94c-4a17-bc04-848936fbe2c2" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T042932Z:5142d728-2dbe-47fa-9cbf-f4e51533d9d4" + "WESTUS:20200925T011551Z:b8b72934-b94c-4a17-bc04-848936fbe2c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2211,10 +2523,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:29:31 GMT" + "Fri, 25 Sep 2020 01:15:50 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2223,17 +2535,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"c794fb06-8382-4531-ae21-83461fcae684\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T04:29:01.867Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"f9004104-1725-4e34-b950-39d3a829d011\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:15:20.86Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/locations/japaneast/databaseAzureAsyncOperation/c794fb06-8382-4531-ae21-83461fcae684?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9qYXBhbmVhc3QvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uL2M3OTRmYjA2LTgzODItNDUzMS1hZTIxLTgzNDYxZmNhZTY4ND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/locations/japaneast/databaseAzureAsyncOperation/f9004104-1725-4e34-b950-39d3a829d011?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvamFwYW5lYXN0L2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9mOTAwNDEwNC0xNzI1LTRlMzQtYjk1MC0zOWQzYTgyOWQwMTE/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2250,19 +2562,19 @@ "15" ], "x-ms-request-id": [ - "001182de-4cba-494a-b0ba-cd4b61898b42" + "1944134f-e5ec-4a7a-9d26-f94dd01fca50" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11984" ], "x-ms-correlation-request-id": [ - "1a51b50f-691c-40fa-9302-8a994e95f9d9" + "bdb40815-db52-498b-9f56-a8228001ad92" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T042947Z:1a51b50f-691c-40fa-9302-8a994e95f9d9" + "WESTUS:20200925T011606Z:bdb40815-db52-498b-9f56-a8228001ad92" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2271,10 +2583,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:29:46 GMT" + "Fri, 25 Sep 2020 01:16:05 GMT" ], "Content-Length": [ - "107" + "106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2283,17 +2595,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"c794fb06-8382-4531-ae21-83461fcae684\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-13T04:29:01.867Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"f9004104-1725-4e34-b950-39d3a829d011\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-25T01:15:20.86Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/locations/japaneast/databaseAzureAsyncOperation/43bc71f0-8af6-44f8-bf9e-749afc662e96?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9qYXBhbmVhc3QvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uLzQzYmM3MWYwLThhZjYtNDRmOC1iZjllLTc0OWFmYzY2MmU5Nj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/locations/japaneast/databaseAzureAsyncOperation/16a07262-f440-4d53-9c89-9a4f85872ccd?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvamFwYW5lYXN0L2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8xNmEwNzI2Mi1mNDQwLTRkNTMtOWM4OS05YTRmODU4NzJjY2Q/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2310,19 +2622,19 @@ "15" ], "x-ms-request-id": [ - "b7ff0edd-9aa3-4db5-9f82-55dc264a4825" + "25080395-c2c0-41ce-af7b-44fda7bee70d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11979" ], "x-ms-correlation-request-id": [ - "4d61a49e-96aa-4e64-b5fc-8493b47db24a" + "06175ce6-7442-4d4e-aa11-d5fb03bbf5a6" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T043003Z:4d61a49e-96aa-4e64-b5fc-8493b47db24a" + "WESTUS:20200925T011623Z:06175ce6-7442-4d4e-aa11-d5fb03bbf5a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2331,7 +2643,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:30:03 GMT" + "Fri, 25 Sep 2020 01:16:22 GMT" ], "Content-Length": [ "106" @@ -2343,17 +2655,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"43bc71f0-8af6-44f8-bf9e-749afc662e96\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-13T04:29:48.65Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"16a07262-f440-4d53-9c89-9a4f85872ccd\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-25T01:16:07.74Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/locations/japaneast/databaseAzureAsyncOperation/369f8d50-b4fb-4745-8665-35ffa8ccd0ca?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9qYXBhbmVhc3QvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uLzM2OWY4ZDUwLWI0ZmItNDc0NS04NjY1LTM1ZmZhOGNjZDBjYT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/locations/japaneast/databaseAzureAsyncOperation/59606a07-d45b-40cd-ab0c-365f8968ca98?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvamFwYW5lYXN0L2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi81OTYwNmEwNy1kNDViLTQwY2QtYWIwYy0zNjVmODk2OGNhOTg/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2370,19 +2682,19 @@ "15" ], "x-ms-request-id": [ - "f0ff6a59-4005-4fc3-a31f-32cd4ffe847b" + "6d2a3e6a-3c81-4100-922a-f2694d1a3dff" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11974" ], "x-ms-correlation-request-id": [ - "bcf2c3c1-05f2-4f7c-ae85-71108fff9572" + "c1067cc9-7803-47fc-8699-54e5e3094831" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T043020Z:bcf2c3c1-05f2-4f7c-ae85-71108fff9572" + "WESTUS:20200925T011639Z:c1067cc9-7803-47fc-8699-54e5e3094831" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2391,7 +2703,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:30:19 GMT" + "Fri, 25 Sep 2020 01:16:38 GMT" ], "Content-Length": [ "108" @@ -2403,17 +2715,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"369f8d50-b4fb-4745-8665-35ffa8ccd0ca\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T04:30:05.153Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"59606a07-d45b-40cd-ab0c-365f8968ca98\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:16:24.523Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/locations/japaneast/databaseAzureAsyncOperation/369f8d50-b4fb-4745-8665-35ffa8ccd0ca?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9qYXBhbmVhc3QvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uLzM2OWY4ZDUwLWI0ZmItNDc0NS04NjY1LTM1ZmZhOGNjZDBjYT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/locations/japaneast/databaseAzureAsyncOperation/59606a07-d45b-40cd-ab0c-365f8968ca98?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvamFwYW5lYXN0L2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi81OTYwNmEwNy1kNDViLTQwY2QtYWIwYy0zNjVmODk2OGNhOTg/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2430,19 +2742,19 @@ "15" ], "x-ms-request-id": [ - "57531f76-801a-4ce6-aa76-a45dc4eafe71" + "05ea5add-b2c3-4547-9114-cdc2040f130f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11973" ], "x-ms-correlation-request-id": [ - "c4b635a1-bd65-419a-bfb3-a85a88d4f5f3" + "31c1b9a9-1d2a-4dc9-b587-c89200e30685" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T043035Z:c4b635a1-bd65-419a-bfb3-a85a88d4f5f3" + "WESTUS:20200925T011654Z:31c1b9a9-1d2a-4dc9-b587-c89200e30685" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2451,7 +2763,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:30:34 GMT" + "Fri, 25 Sep 2020 01:16:54 GMT" ], "Content-Length": [ "108" @@ -2463,17 +2775,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"369f8d50-b4fb-4745-8665-35ffa8ccd0ca\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T04:30:05.153Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"59606a07-d45b-40cd-ab0c-365f8968ca98\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:16:24.523Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/locations/japaneast/databaseAzureAsyncOperation/369f8d50-b4fb-4745-8665-35ffa8ccd0ca?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9qYXBhbmVhc3QvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uLzM2OWY4ZDUwLWI0ZmItNDc0NS04NjY1LTM1ZmZhOGNjZDBjYT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/locations/japaneast/databaseAzureAsyncOperation/59606a07-d45b-40cd-ab0c-365f8968ca98?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvamFwYW5lYXN0L2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi81OTYwNmEwNy1kNDViLTQwY2QtYWIwYy0zNjVmODk2OGNhOTg/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2490,19 +2802,19 @@ "15" ], "x-ms-request-id": [ - "d63f23cd-86b7-48c3-aab4-2c3718bfa901" + "1d349065-464a-4215-98dd-4d856cee6358" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11972" ], "x-ms-correlation-request-id": [ - "42bdaf2f-4d78-49bc-9acc-39c87739aba9" + "56382c90-edb0-483f-b3f4-46a0ce145cf5" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T043050Z:42bdaf2f-4d78-49bc-9acc-39c87739aba9" + "WESTUS:20200925T011710Z:56382c90-edb0-483f-b3f4-46a0ce145cf5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2511,7 +2823,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:30:49 GMT" + "Fri, 25 Sep 2020 01:17:09 GMT" ], "Content-Length": [ "108" @@ -2523,17 +2835,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"369f8d50-b4fb-4745-8665-35ffa8ccd0ca\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T04:30:05.153Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"59606a07-d45b-40cd-ab0c-365f8968ca98\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:16:24.523Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/locations/japaneast/databaseAzureAsyncOperation/369f8d50-b4fb-4745-8665-35ffa8ccd0ca?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9qYXBhbmVhc3QvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uLzM2OWY4ZDUwLWI0ZmItNDc0NS04NjY1LTM1ZmZhOGNjZDBjYT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/locations/japaneast/databaseAzureAsyncOperation/59606a07-d45b-40cd-ab0c-365f8968ca98?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvamFwYW5lYXN0L2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi81OTYwNmEwNy1kNDViLTQwY2QtYWIwYy0zNjVmODk2OGNhOTg/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2550,19 +2862,19 @@ "15" ], "x-ms-request-id": [ - "de417f52-9c0a-4847-b073-6af6b46d58da" + "d3684ff0-ae19-4280-b5ef-6df0d05608eb" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11971" ], "x-ms-correlation-request-id": [ - "79430653-f13a-4220-a5dc-a5799ca64782" + "a08a18bd-9adc-4bcd-be32-7da1a8815c57" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T043105Z:79430653-f13a-4220-a5dc-a5799ca64782" + "WESTUS:20200925T011725Z:a08a18bd-9adc-4bcd-be32-7da1a8815c57" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2571,7 +2883,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:31:05 GMT" + "Fri, 25 Sep 2020 01:17:24 GMT" ], "Content-Length": [ "108" @@ -2583,17 +2895,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"369f8d50-b4fb-4745-8665-35ffa8ccd0ca\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T04:30:05.153Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"59606a07-d45b-40cd-ab0c-365f8968ca98\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:16:24.523Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/locations/japaneast/databaseAzureAsyncOperation/369f8d50-b4fb-4745-8665-35ffa8ccd0ca?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9qYXBhbmVhc3QvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uLzM2OWY4ZDUwLWI0ZmItNDc0NS04NjY1LTM1ZmZhOGNjZDBjYT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/locations/japaneast/databaseAzureAsyncOperation/59606a07-d45b-40cd-ab0c-365f8968ca98?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvamFwYW5lYXN0L2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi81OTYwNmEwNy1kNDViLTQwY2QtYWIwYy0zNjVmODk2OGNhOTg/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2610,19 +2922,19 @@ "15" ], "x-ms-request-id": [ - "076d4e42-f1d0-4d53-baa1-84747cbcb78e" + "b873d41f-1094-4409-81d1-bd24aa3ae9e9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11970" ], "x-ms-correlation-request-id": [ - "18a3fc80-253e-4197-b4e0-4fab9b752cbe" + "e4fdc517-ec40-43c2-b74e-a8ae5af940be" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T043121Z:18a3fc80-253e-4197-b4e0-4fab9b752cbe" + "WESTUS:20200925T011740Z:e4fdc517-ec40-43c2-b74e-a8ae5af940be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2631,7 +2943,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:31:20 GMT" + "Fri, 25 Sep 2020 01:17:40 GMT" ], "Content-Length": [ "108" @@ -2643,17 +2955,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"369f8d50-b4fb-4745-8665-35ffa8ccd0ca\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T04:30:05.153Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"59606a07-d45b-40cd-ab0c-365f8968ca98\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:16:24.523Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/locations/japaneast/databaseAzureAsyncOperation/369f8d50-b4fb-4745-8665-35ffa8ccd0ca?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9qYXBhbmVhc3QvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uLzM2OWY4ZDUwLWI0ZmItNDc0NS04NjY1LTM1ZmZhOGNjZDBjYT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/locations/japaneast/databaseAzureAsyncOperation/59606a07-d45b-40cd-ab0c-365f8968ca98?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvamFwYW5lYXN0L2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi81OTYwNmEwNy1kNDViLTQwY2QtYWIwYy0zNjVmODk2OGNhOTg/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2670,19 +2982,19 @@ "15" ], "x-ms-request-id": [ - "3223df20-702b-48de-8680-cc2cdb85b2fb" + "1d8b88a3-eccf-4296-9b66-fbd2357a8bcb" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11969" ], "x-ms-correlation-request-id": [ - "708a0c78-97d6-471b-9b61-6a74b348d449" + "7c074c7e-f2fb-4bb1-812d-56989839b6ec" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T043136Z:708a0c78-97d6-471b-9b61-6a74b348d449" + "WESTUS:20200925T011755Z:7c074c7e-f2fb-4bb1-812d-56989839b6ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2691,7 +3003,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:31:35 GMT" + "Fri, 25 Sep 2020 01:17:55 GMT" ], "Content-Length": [ "108" @@ -2703,17 +3015,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"369f8d50-b4fb-4745-8665-35ffa8ccd0ca\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T04:30:05.153Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"59606a07-d45b-40cd-ab0c-365f8968ca98\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:16:24.523Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/locations/japaneast/databaseAzureAsyncOperation/369f8d50-b4fb-4745-8665-35ffa8ccd0ca?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9qYXBhbmVhc3QvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uLzM2OWY4ZDUwLWI0ZmItNDc0NS04NjY1LTM1ZmZhOGNjZDBjYT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/locations/japaneast/databaseAzureAsyncOperation/59606a07-d45b-40cd-ab0c-365f8968ca98?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvamFwYW5lYXN0L2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi81OTYwNmEwNy1kNDViLTQwY2QtYWIwYy0zNjVmODk2OGNhOTg/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2730,19 +3042,19 @@ "15" ], "x-ms-request-id": [ - "a2146f89-be46-4558-878b-1e90c320e439" + "55994e67-1f2c-4d40-a5e9-f8746ebb91fa" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11968" ], "x-ms-correlation-request-id": [ - "6f4456cb-3c2b-4eec-bb4b-ce881b9a9184" + "e3fe3fa6-f154-4db7-8bbb-ab72019411ec" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T043151Z:6f4456cb-3c2b-4eec-bb4b-ce881b9a9184" + "WESTUS:20200925T011810Z:e3fe3fa6-f154-4db7-8bbb-ab72019411ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2751,7 +3063,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:31:51 GMT" + "Fri, 25 Sep 2020 01:18:10 GMT" ], "Content-Length": [ "107" @@ -2763,17 +3075,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"369f8d50-b4fb-4745-8665-35ffa8ccd0ca\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-13T04:30:05.153Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"59606a07-d45b-40cd-ab0c-365f8968ca98\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-25T01:16:24.523Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/locations/japaneast/databaseAzureAsyncOperation/1310673c-7183-48d0-b57e-2675c6735780?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9qYXBhbmVhc3QvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uLzEzMTA2NzNjLTcxODMtNDhkMC1iNTdlLTI2NzVjNjczNTc4MD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/locations/japaneast/databaseAzureAsyncOperation/9063e500-95df-447c-870c-06521340496c?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvamFwYW5lYXN0L2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi85MDYzZTUwMC05NWRmLTQ0N2MtODcwYy0wNjUyMTM0MDQ5NmM/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2790,19 +3102,19 @@ "15" ], "x-ms-request-id": [ - "46277bbc-a047-4d4e-b243-962e24b033c8" + "8785a84f-b4d0-4d34-964c-e797e64c5acb" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" - ], "x-ms-correlation-request-id": [ - "1293571c-bd0c-4a83-9df0-e04fb9a1db67" + "28d6ffda-c9a9-4f28-a9ca-5a95ed35115b" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T043208Z:1293571c-bd0c-4a83-9df0-e04fb9a1db67" + "WESTUS:20200925T011827Z:28d6ffda-c9a9-4f28-a9ca-5a95ed35115b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2811,10 +3123,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:32:07 GMT" + "Fri, 25 Sep 2020 01:18:26 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2823,17 +3135,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1310673c-7183-48d0-b57e-2675c6735780\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T04:31:52.68Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"9063e500-95df-447c-870c-06521340496c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:18:12.097Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/locations/japaneast/databaseAzureAsyncOperation/1310673c-7183-48d0-b57e-2675c6735780?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9qYXBhbmVhc3QvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uLzEzMTA2NzNjLTcxODMtNDhkMC1iNTdlLTI2NzVjNjczNTc4MD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/locations/japaneast/databaseAzureAsyncOperation/9063e500-95df-447c-870c-06521340496c?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvamFwYW5lYXN0L2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi85MDYzZTUwMC05NWRmLTQ0N2MtODcwYy0wNjUyMTM0MDQ5NmM/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2850,19 +3162,19 @@ "15" ], "x-ms-request-id": [ - "28c309d0-6d48-4713-b17a-b01e5a535029" + "56879e0e-9283-46dd-9d3a-3966767cc9ad" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11962" ], "x-ms-correlation-request-id": [ - "34af7216-0311-482c-af90-49b21a3f2999" + "c89aec10-f42b-4c85-b499-a1883151149d" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T043223Z:34af7216-0311-482c-af90-49b21a3f2999" + "WESTUS:20200925T011842Z:c89aec10-f42b-4c85-b499-a1883151149d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2871,10 +3183,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:32:22 GMT" + "Fri, 25 Sep 2020 01:18:41 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2883,17 +3195,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1310673c-7183-48d0-b57e-2675c6735780\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T04:31:52.68Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"9063e500-95df-447c-870c-06521340496c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:18:12.097Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/locations/japaneast/databaseAzureAsyncOperation/1310673c-7183-48d0-b57e-2675c6735780?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9qYXBhbmVhc3QvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uLzEzMTA2NzNjLTcxODMtNDhkMC1iNTdlLTI2NzVjNjczNTc4MD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/locations/japaneast/databaseAzureAsyncOperation/9063e500-95df-447c-870c-06521340496c?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvamFwYW5lYXN0L2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi85MDYzZTUwMC05NWRmLTQ0N2MtODcwYy0wNjUyMTM0MDQ5NmM/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2910,19 +3222,19 @@ "15" ], "x-ms-request-id": [ - "3727de40-3bbc-4a70-990b-de56ecf57f24" + "41a21a8e-241c-42c0-b428-0e85ea537a64" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11961" ], "x-ms-correlation-request-id": [ - "50c7a1fc-0727-42a8-8bdc-0356dcac634b" + "e7788f4b-05cd-4a32-9997-4ffd80c3232e" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T043238Z:50c7a1fc-0727-42a8-8bdc-0356dcac634b" + "WESTUS:20200925T011858Z:e7788f4b-05cd-4a32-9997-4ffd80c3232e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2931,10 +3243,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:32:37 GMT" + "Fri, 25 Sep 2020 01:18:58 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2943,17 +3255,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1310673c-7183-48d0-b57e-2675c6735780\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T04:31:52.68Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"9063e500-95df-447c-870c-06521340496c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:18:12.097Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/locations/japaneast/databaseAzureAsyncOperation/1310673c-7183-48d0-b57e-2675c6735780?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9qYXBhbmVhc3QvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uLzEzMTA2NzNjLTcxODMtNDhkMC1iNTdlLTI2NzVjNjczNTc4MD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/locations/japaneast/databaseAzureAsyncOperation/9063e500-95df-447c-870c-06521340496c?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvamFwYW5lYXN0L2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi85MDYzZTUwMC05NWRmLTQ0N2MtODcwYy0wNjUyMTM0MDQ5NmM/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2970,19 +3282,19 @@ "15" ], "x-ms-request-id": [ - "c8fb5d43-48ac-4ba7-8d15-06aefeace659" + "15846349-c3a0-40bc-9cfc-7ed5ead4f13c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11960" ], "x-ms-correlation-request-id": [ - "df1e3b5a-023f-46ca-a232-26a75fbb2709" + "f2007713-a204-4caf-b854-8e639c76f229" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T043253Z:df1e3b5a-023f-46ca-a232-26a75fbb2709" + "WESTUS:20200925T011913Z:f2007713-a204-4caf-b854-8e639c76f229" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2991,10 +3303,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:32:52 GMT" + "Fri, 25 Sep 2020 01:19:13 GMT" ], "Content-Length": [ - "106" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3003,17 +3315,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1310673c-7183-48d0-b57e-2675c6735780\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-13T04:31:52.68Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"9063e500-95df-447c-870c-06521340496c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-25T01:18:12.097Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps793/providers/Microsoft.Sql/locations/japaneast/databaseAzureAsyncOperation/5ef826b2-73ee-4e99-b82d-a397f5d1aaae?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9qYXBhbmVhc3QvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uLzVlZjgyNmIyLTczZWUtNGU5OS1iODJkLWEzOTdmNWQxYWFhZT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9496/providers/Microsoft.Sql/locations/japaneast/databaseAzureAsyncOperation/ee630cd4-8587-462d-b525-52a10dcf4a59?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvamFwYW5lYXN0L2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9lZTYzMGNkNC04NTg3LTQ2MmQtYjUyNS01MmExMGRjZjRhNTk/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -3030,19 +3342,19 @@ "15" ], "x-ms-request-id": [ - "fbe3a24f-be9c-4b76-be8b-614483c8201b" + "5fa89ae9-6b25-4760-bb80-17c10a734e98" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "11955" ], "x-ms-correlation-request-id": [ - "981fd114-b0f9-4189-92cf-3129e028ef25" + "6a3b41fa-249d-468b-a2f2-de4199422e00" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T043310Z:981fd114-b0f9-4189-92cf-3129e028ef25" + "WESTUS:20200925T011929Z:6a3b41fa-249d-468b-a2f2-de4199422e00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3051,7 +3363,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:33:09 GMT" + "Fri, 25 Sep 2020 01:19:29 GMT" ], "Content-Length": [ "107" @@ -3063,23 +3375,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"5ef826b2-73ee-4e99-b82d-a397f5d1aaae\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-13T04:32:54.783Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"ee630cd4-8587-462d-b525-52a10dcf4a59\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-25T01:19:14.547Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps793?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzNzkzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps9496?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzOTQ5Nj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d507617-9777-4793-887e-f0f50606813a" + "084a500c-5bd4-4261-ae7e-bb6f4408192b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3093,7 +3405,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc5My1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0OTYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3102,13 +3414,13 @@ "14999" ], "x-ms-request-id": [ - "83350b35-35df-4367-bb75-88042023b43c" + "d7c530a7-52ed-49c1-9693-3885ea3cae74" ], "x-ms-correlation-request-id": [ - "83350b35-35df-4367-bb75-88042023b43c" + "d7c530a7-52ed-49c1-9693-3885ea3cae74" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T043313Z:83350b35-35df-4367-bb75-88042023b43c" + "WESTUS:20200925T011932Z:d7c530a7-52ed-49c1-9693-3885ea3cae74" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3117,7 +3429,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:33:12 GMT" + "Fri, 25 Sep 2020 01:19:32 GMT" ], "Expires": [ "-1" @@ -3130,13 +3442,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc5My1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNU15MUtRVkJCVGtWQlUxUWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltcGhjR0Z1WldGemRDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0OTYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprME9UWXRTa0ZRUVU1RlFWTlVJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnFZWEJoYm1WaGMzUWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3150,22 +3462,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc5My1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0OTYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11963" ], "x-ms-request-id": [ - "f712dcab-e0fb-46e5-b165-449af2a7a3b2" + "ec1517e2-01a9-4de6-ae39-885e5ded7004" ], "x-ms-correlation-request-id": [ - "f712dcab-e0fb-46e5-b165-449af2a7a3b2" + "ec1517e2-01a9-4de6-ae39-885e5ded7004" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T043328Z:f712dcab-e0fb-46e5-b165-449af2a7a3b2" + "WESTUS:20200925T011948Z:ec1517e2-01a9-4de6-ae39-885e5ded7004" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3174,7 +3486,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:33:27 GMT" + "Fri, 25 Sep 2020 01:19:47 GMT" ], "Expires": [ "-1" @@ -3187,13 +3499,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc5My1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNU15MUtRVkJCVGtWQlUxUWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltcGhjR0Z1WldGemRDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0OTYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprME9UWXRTa0ZRUVU1RlFWTlVJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnFZWEJoYm1WaGMzUWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3207,22 +3519,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc5My1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0OTYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11962" ], "x-ms-request-id": [ - "63ea0166-4465-41e9-9906-9be769a884ed" + "82ca4ded-42e7-4195-9ec1-6cfbef5e7d66" ], "x-ms-correlation-request-id": [ - "63ea0166-4465-41e9-9906-9be769a884ed" + "82ca4ded-42e7-4195-9ec1-6cfbef5e7d66" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T043343Z:63ea0166-4465-41e9-9906-9be769a884ed" + "WESTUS:20200925T012003Z:82ca4ded-42e7-4195-9ec1-6cfbef5e7d66" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3231,7 +3543,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:33:42 GMT" + "Fri, 25 Sep 2020 01:20:02 GMT" ], "Expires": [ "-1" @@ -3244,13 +3556,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc5My1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNU15MUtRVkJCVGtWQlUxUWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltcGhjR0Z1WldGemRDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0OTYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprME9UWXRTa0ZRUVU1RlFWTlVJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnFZWEJoYm1WaGMzUWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3264,22 +3576,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc5My1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0OTYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11961" ], "x-ms-request-id": [ - "58aa0cea-287d-42de-98ad-71a57363a1a0" + "61b54b5e-3b0e-4525-b120-975114e11213" ], "x-ms-correlation-request-id": [ - "58aa0cea-287d-42de-98ad-71a57363a1a0" + "61b54b5e-3b0e-4525-b120-975114e11213" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T043358Z:58aa0cea-287d-42de-98ad-71a57363a1a0" + "WESTUS:20200925T012018Z:61b54b5e-3b0e-4525-b120-975114e11213" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3288,7 +3600,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:33:57 GMT" + "Fri, 25 Sep 2020 01:20:17 GMT" ], "Expires": [ "-1" @@ -3301,13 +3613,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc5My1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNU15MUtRVkJCVGtWQlUxUWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltcGhjR0Z1WldGemRDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0OTYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprME9UWXRTa0ZRUVU1RlFWTlVJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnFZWEJoYm1WaGMzUWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3321,22 +3633,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc5My1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0OTYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11960" ], "x-ms-request-id": [ - "be7d00bc-123a-40ac-96b1-dbfe7559e828" + "6b58464b-b754-4097-a184-8f341fce2011" ], "x-ms-correlation-request-id": [ - "be7d00bc-123a-40ac-96b1-dbfe7559e828" + "6b58464b-b754-4097-a184-8f341fce2011" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T043414Z:be7d00bc-123a-40ac-96b1-dbfe7559e828" + "WESTUS:20200925T012033Z:6b58464b-b754-4097-a184-8f341fce2011" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3345,7 +3657,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:34:14 GMT" + "Fri, 25 Sep 2020 01:20:32 GMT" ], "Expires": [ "-1" @@ -3358,13 +3670,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc5My1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNU15MUtRVkJCVGtWQlUxUWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltcGhjR0Z1WldGemRDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0OTYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprME9UWXRTa0ZRUVU1RlFWTlVJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnFZWEJoYm1WaGMzUWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3378,22 +3690,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc5My1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0OTYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11959" ], "x-ms-request-id": [ - "d62db674-bc31-4c35-9c8c-85dad49fbc42" + "21185432-5752-4511-b74c-6b4d04cd91c6" ], "x-ms-correlation-request-id": [ - "d62db674-bc31-4c35-9c8c-85dad49fbc42" + "21185432-5752-4511-b74c-6b4d04cd91c6" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T043429Z:d62db674-bc31-4c35-9c8c-85dad49fbc42" + "WESTUS:20200925T012049Z:21185432-5752-4511-b74c-6b4d04cd91c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3402,7 +3714,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:34:29 GMT" + "Fri, 25 Sep 2020 01:20:49 GMT" ], "Expires": [ "-1" @@ -3415,13 +3727,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc5My1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNU15MUtRVkJCVGtWQlUxUWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltcGhjR0Z1WldGemRDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0OTYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprME9UWXRTa0ZRUVU1RlFWTlVJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnFZWEJoYm1WaGMzUWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3435,22 +3747,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc5My1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0OTYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11958" ], "x-ms-request-id": [ - "ed92952d-f3e8-428a-9fa3-72dfb4eac5d4" + "e78bd5c6-ba84-4d8c-802c-f5b3d5085fb5" ], "x-ms-correlation-request-id": [ - "ed92952d-f3e8-428a-9fa3-72dfb4eac5d4" + "e78bd5c6-ba84-4d8c-802c-f5b3d5085fb5" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T043444Z:ed92952d-f3e8-428a-9fa3-72dfb4eac5d4" + "WESTUS:20200925T012104Z:e78bd5c6-ba84-4d8c-802c-f5b3d5085fb5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3459,7 +3771,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:34:44 GMT" + "Fri, 25 Sep 2020 01:21:04 GMT" ], "Expires": [ "-1" @@ -3472,13 +3784,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc5My1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNU15MUtRVkJCVGtWQlUxUWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltcGhjR0Z1WldGemRDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0OTYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprME9UWXRTa0ZRUVU1RlFWTlVJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnFZWEJoYm1WaGMzUWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3492,16 +3804,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11957" ], "x-ms-request-id": [ - "b9f87dbb-2b70-4c73-a972-166af22ac986" + "4c628aa5-6710-487f-a996-34e11cea8b36" ], "x-ms-correlation-request-id": [ - "b9f87dbb-2b70-4c73-a972-166af22ac986" + "4c628aa5-6710-487f-a996-34e11cea8b36" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T043459Z:b9f87dbb-2b70-4c73-a972-166af22ac986" + "WESTUS:20200925T012119Z:4c628aa5-6710-487f-a996-34e11cea8b36" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3510,7 +3822,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:34:59 GMT" + "Fri, 25 Sep 2020 01:21:19 GMT" ], "Expires": [ "-1" @@ -3523,13 +3835,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc5My1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNU15MUtRVkJCVGtWQlUxUWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltcGhjR0Z1WldGemRDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0OTYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprME9UWXRTa0ZRUVU1RlFWTlVJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnFZWEJoYm1WaGMzUWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3543,16 +3855,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11956" ], "x-ms-request-id": [ - "4b24443c-0a7f-427b-a7d7-b2d7cae1ce1d" + "ec84c4da-21c2-4700-a825-dddb3693c257" ], "x-ms-correlation-request-id": [ - "4b24443c-0a7f-427b-a7d7-b2d7cae1ce1d" + "ec84c4da-21c2-4700-a825-dddb3693c257" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T043500Z:4b24443c-0a7f-427b-a7d7-b2d7cae1ce1d" + "WESTUS:20200925T012119Z:ec84c4da-21c2-4700-a825-dddb3693c257" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3561,7 +3873,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:34:59 GMT" + "Fri, 25 Sep 2020 01:21:19 GMT" ], "Expires": [ "-1" @@ -3576,9 +3888,9 @@ ], "Names": { "Test-UpdateServerlessDatabase": [ - "ps793", - "ps1204", - "ps4755" + "ps9496", + "ps311", + "ps8249" ] }, "Variables": { diff --git a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestVcoreDatabaseUpdate.json b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestVcoreDatabaseUpdate.json index b68d5dfa84b6..4cc39d474eac 100644 --- a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestVcoreDatabaseUpdate.json +++ b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestVcoreDatabaseUpdate.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps5133?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzNTEzMz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps692?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzNjkyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "80e62ad0-a99b-41fb-beb5-61fc9fdb0ca2" + "1a2d8ea2-a81b-49ca-a202-f59a9ebd5d44" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "9b4fb01b-cfff-4879-ae2e-c7b664538290" + "f171aa78-baae-4633-9b8d-1e241f7f5235" ], "x-ms-correlation-request-id": [ - "9b4fb01b-cfff-4879-ae2e-c7b664538290" + "f171aa78-baae-4633-9b8d-1e241f7f5235" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T051635Z:9b4fb01b-cfff-4879-ae2e-c7b664538290" + "WESTUS:20200925T014940Z:f171aa78-baae-4633-9b8d-1e241f7f5235" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:16:34 GMT" + "Fri, 25 Sep 2020 01:49:39 GMT" ], "Content-Length": [ - "172" + "170" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,23 +63,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133\",\r\n \"name\": \"ps5133\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692\",\r\n \"name\": \"ps692\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/servers/ps7893?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzg5Mz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMzNTgyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "870b7ef9-2bc0-4f54-86f7-c36c9a6d6d51" + "619fc9c6-c151-43d9-891a-9d4f961e4c57" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "068fac1b-b243-4b62-999b-b130003c84ba" + "6fde9602-19fe-4c80-aceb-b08f0f8337d9" ], "x-ms-correlation-request-id": [ - "068fac1b-b243-4b62-999b-b130003c84ba" + "6fde9602-19fe-4c80-aceb-b08f0f8337d9" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T051635Z:068fac1b-b243-4b62-999b-b130003c84ba" + "WESTUS:20200925T014940Z:6fde9602-19fe-4c80-aceb-b08f0f8337d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:16:34 GMT" + "Fri, 25 Sep 2020 01:49:40 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -120,20 +120,20 @@ "-1" ], "Content-Length": [ - "206" + "205" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps7893' under resource group 'ps5133' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps3582' under resource group 'ps692' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/servers/ps7893?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzg5Mz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMzNTgyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -147,7 +147,7 @@ "no-cache" ], "x-ms-request-id": [ - "9fbe5875-6111-4cc5-9b77-942f967246d6" + "ac7f27df-5b10-42dc-8f60-8fd7cc98c395" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -156,10 +156,10 @@ "11991" ], "x-ms-correlation-request-id": [ - "d9163337-88a1-4c64-af28-012144e60919" + "16658cb9-ef8a-4db8-ba5c-7d35ad13892b" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T051722Z:d9163337-88a1-4c64-af28-012144e60919" + "WESTUS:20200925T015027Z:16658cb9-ef8a-4db8-ba5c-7d35ad13892b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -168,10 +168,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:17:22 GMT" + "Fri, 25 Sep 2020 01:50:26 GMT" ], "Content-Length": [ - "415" + "414" ], "Content-Type": [ "application/json; charset=utf-8" @@ -180,23 +180,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps7893.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/servers/ps7893\",\r\n \"name\": \"ps7893\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps3582.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582\",\r\n \"name\": \"ps3582\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/servers/ps7893?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzg5Mz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMzNTgyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c76bea0c-efd2-4e56-951b-cbbcb79d2e93" + "49102a69-d0e6-48f3-b52a-eaad5df2561a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -210,7 +210,7 @@ "no-cache" ], "x-ms-request-id": [ - "30534c85-2fe8-43f0-8acc-5bf9755c775e" + "716a1f91-3ba2-480b-8a39-741c99af3a66" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -219,10 +219,10 @@ "11990" ], "x-ms-correlation-request-id": [ - "9cf352e3-500c-470a-9b37-3cf9648649b0" + "ce391652-5c87-4e4e-843a-5c43c8bbe4a5" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T051722Z:9cf352e3-500c-470a-9b37-3cf9648649b0" + "WESTUS:20200925T015027Z:ce391652-5c87-4e4e-843a-5c43c8bbe4a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -231,10 +231,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:17:22 GMT" + "Fri, 25 Sep 2020 01:50:26 GMT" ], "Content-Length": [ - "415" + "414" ], "Content-Type": [ "application/json; charset=utf-8" @@ -243,23 +243,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps7893.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/servers/ps7893\",\r\n \"name\": \"ps7893\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps3582.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582\",\r\n \"name\": \"ps3582\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/servers/ps7893?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzg5Mz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMzNTgyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ea1e00f4-e95e-4ee0-a755-f9de340ebdbb" + "47f807a8-8c44-4d91-91f7-2a7d9ed5efde" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -273,7 +273,7 @@ "no-cache" ], "x-ms-request-id": [ - "5b3ab72b-0a7f-4167-9f85-17b3a0a0f510" + "b3567a88-24cb-4e0e-bcae-40c13284c82d" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -282,10 +282,10 @@ "11988" ], "x-ms-correlation-request-id": [ - "7f5d103a-e83d-4c9b-8704-9530780f43af" + "32ab2858-cc23-45a6-82c5-68e328ed5096" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T051722Z:7f5d103a-e83d-4c9b-8704-9530780f43af" + "WESTUS:20200925T015027Z:32ab2858-cc23-45a6-82c5-68e328ed5096" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -294,10 +294,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:17:22 GMT" + "Fri, 25 Sep 2020 01:50:27 GMT" ], "Content-Length": [ - "415" + "414" ], "Content-Type": [ "application/json; charset=utf-8" @@ -306,23 +306,338 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps7893.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/servers/ps7893\",\r\n \"name\": \"ps7893\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps3582.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582\",\r\n \"name\": \"ps3582\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/servers/ps7893?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzg5Mz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMzNTgyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5f26948e-8626-4032-946a-cec5c5c32432" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e41de0e8-315f-4367-b3a5-aadcf323d41d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-correlation-request-id": [ + "9f680e41-df65-465a-ba51-e336e6e5a229" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200925T015113Z:9f680e41-df65-465a-ba51-e336e6e5a229" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 25 Sep 2020 01:51:13 GMT" + ], + "Content-Length": [ + "414" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps3582.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582\",\r\n \"name\": \"ps3582\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMzNTgyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "db1f0c35-7582-454f-a2f2-54349455e9c5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "56b47bc0-76d8-4f42-981f-e8471f60322b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-correlation-request-id": [ + "659ab95b-2820-4ae6-9ca1-47aa70119930" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200925T015129Z:659ab95b-2820-4ae6-9ca1-47aa70119930" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 25 Sep 2020 01:51:28 GMT" + ], + "Content-Length": [ + "414" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps3582.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582\",\r\n \"name\": \"ps3582\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMzNTgyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e54fce51-4313-4249-a473-92736eff94ff" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "59d4912d-ae67-47a7-92bf-c5d56081d3bf" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-correlation-request-id": [ + "e909f93d-02ee-402f-bd61-0a3e53d92676" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200925T015145Z:e909f93d-02ee-402f-bd61-0a3e53d92676" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 25 Sep 2020 01:51:44 GMT" + ], + "Content-Length": [ + "414" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps3582.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582\",\r\n \"name\": \"ps3582\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMzNTgyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "33b05a54-8ae3-4508-98eb-6035cdf96da2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ca253ef5-057a-4d62-ab53-ddc0f401fbdd" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11961" + ], + "x-ms-correlation-request-id": [ + "350cd005-54f8-487b-8202-97cbe224f8be" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200925T015346Z:350cd005-54f8-487b-8202-97cbe224f8be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 25 Sep 2020 01:53:46 GMT" + ], + "Content-Length": [ + "414" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps3582.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582\",\r\n \"name\": \"ps3582\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMzNTgyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0cbcb48d-d8f7-40c8-9fbe-f518c15a9dc2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9409e0d6-3f04-4cd9-9053-f15767aa6ebf" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11956" + ], + "x-ms-correlation-request-id": [ + "b473e972-c4ca-4dde-b8ed-86e6765c8e0c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200925T015402Z:b473e972-c4ca-4dde-b8ed-86e6765c8e0c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 25 Sep 2020 01:54:02 GMT" + ], + "Content-Length": [ + "414" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps3582.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582\",\r\n \"name\": \"ps3582\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMzNTgyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fa5872ac-abc2-4b83-95d7-c6682d35534c" + "7d587f7c-ed19-4fb7-8591-b630c7292c57" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -342,16 +657,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/locations/westcentralus/serverOperationResults/ea9e231b-3b1f-44bb-8004-f7690c9a02c5?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/locations/westcentralus/serverOperationResults/fd924afd-97d6-4818-8793-05e007a60611?api-version=2019-06-01-preview" ], "Retry-After": [ "1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/ea9e231b-3b1f-44bb-8004-f7690c9a02c5?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/fd924afd-97d6-4818-8793-05e007a60611?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "ea9e231b-3b1f-44bb-8004-f7690c9a02c5" + "fd924afd-97d6-4818-8793-05e007a60611" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -360,10 +675,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "40a5cad4-2ebb-4d3f-8338-b4b2b7459a81" + "62849652-ac9c-46f3-a607-ab76d46436af" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T051636Z:40a5cad4-2ebb-4d3f-8338-b4b2b7459a81" + "WESTUS:20200925T014941Z:62849652-ac9c-46f3-a607-ab76d46436af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -372,10 +687,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:16:35 GMT" + "Fri, 25 Sep 2020 01:49:41 GMT" ], "Content-Length": [ - "74" + "73" ], "Content-Type": [ "application/json; charset=utf-8" @@ -384,17 +699,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-13T05:16:36.443Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-25T01:49:41.33Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/ea9e231b-3b1f-44bb-8004-f7690c9a02c5?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2VhOWUyMzFiLTNiMWYtNDRiYi04MDA0LWY3NjkwYzlhMDJjNT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/fd924afd-97d6-4818-8793-05e007a60611?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vZmQ5MjRhZmQtOTdkNi00ODE4LTg3OTMtMDVlMDA3YTYwNjExP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -411,7 +726,7 @@ "1" ], "x-ms-request-id": [ - "5aef148f-01ad-4a7c-8739-d4ba011947e2" + "f391b773-406d-41de-a1e3-97e3e26d8da4" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -420,10 +735,10 @@ "11998" ], "x-ms-correlation-request-id": [ - "a6d88b5d-e7a3-40b7-bf71-ef9aab5f34cc" + "391da568-6e7e-4bd9-95ec-2113daf8c307" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T051637Z:a6d88b5d-e7a3-40b7-bf71-ef9aab5f34cc" + "WESTUS:20200925T014942Z:391da568-6e7e-4bd9-95ec-2113daf8c307" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,10 +747,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:16:36 GMT" + "Fri, 25 Sep 2020 01:49:42 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -444,17 +759,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ea9e231b-3b1f-44bb-8004-f7690c9a02c5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T05:16:36.443Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"fd924afd-97d6-4818-8793-05e007a60611\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:49:41.33Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/ea9e231b-3b1f-44bb-8004-f7690c9a02c5?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2VhOWUyMzFiLTNiMWYtNDRiYi04MDA0LWY3NjkwYzlhMDJjNT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/fd924afd-97d6-4818-8793-05e007a60611?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vZmQ5MjRhZmQtOTdkNi00ODE4LTg3OTMtMDVlMDA3YTYwNjExP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -471,7 +786,7 @@ "1" ], "x-ms-request-id": [ - "1847bec2-eb32-4495-9af2-c956d7266c18" + "7edc918c-82be-4b97-a16d-e02141ab5933" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -480,10 +795,10 @@ "11997" ], "x-ms-correlation-request-id": [ - "5c460e0e-8121-48c8-ad55-da939ae86101" + "db750059-00d7-41ad-bf87-5552c65a8934" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T051638Z:5c460e0e-8121-48c8-ad55-da939ae86101" + "WESTUS:20200925T014943Z:db750059-00d7-41ad-bf87-5552c65a8934" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -492,10 +807,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:16:37 GMT" + "Fri, 25 Sep 2020 01:49:43 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -504,17 +819,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ea9e231b-3b1f-44bb-8004-f7690c9a02c5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T05:16:36.443Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"fd924afd-97d6-4818-8793-05e007a60611\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:49:41.33Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/ea9e231b-3b1f-44bb-8004-f7690c9a02c5?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2VhOWUyMzFiLTNiMWYtNDRiYi04MDA0LWY3NjkwYzlhMDJjNT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/fd924afd-97d6-4818-8793-05e007a60611?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vZmQ5MjRhZmQtOTdkNi00ODE4LTg3OTMtMDVlMDA3YTYwNjExP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -531,7 +846,7 @@ "1" ], "x-ms-request-id": [ - "79323ba9-2caf-4fa1-85f8-809adc149262" + "d73db25d-52cc-4bfb-88c5-28e46289cf7c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -540,10 +855,10 @@ "11996" ], "x-ms-correlation-request-id": [ - "ca587722-1460-4409-ab90-c464c7568aa4" + "5bd55738-ec41-4f52-897b-3f0224d81eb1" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T051639Z:ca587722-1460-4409-ab90-c464c7568aa4" + "WESTUS:20200925T014944Z:5bd55738-ec41-4f52-897b-3f0224d81eb1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -552,10 +867,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:16:38 GMT" + "Fri, 25 Sep 2020 01:49:44 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -564,17 +879,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ea9e231b-3b1f-44bb-8004-f7690c9a02c5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T05:16:36.443Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"fd924afd-97d6-4818-8793-05e007a60611\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:49:41.33Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/ea9e231b-3b1f-44bb-8004-f7690c9a02c5?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2VhOWUyMzFiLTNiMWYtNDRiYi04MDA0LWY3NjkwYzlhMDJjNT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/fd924afd-97d6-4818-8793-05e007a60611?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vZmQ5MjRhZmQtOTdkNi00ODE4LTg3OTMtMDVlMDA3YTYwNjExP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -591,7 +906,7 @@ "1" ], "x-ms-request-id": [ - "013c476d-ca43-4879-be3d-0dbba3542bc7" + "9be40d4a-d841-4b0c-aabd-4887ccdf9fad" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -600,10 +915,10 @@ "11995" ], "x-ms-correlation-request-id": [ - "979bf751-8a9e-43b5-8fb0-5bdaef67d13a" + "17d2ff03-1ad7-41d4-8f97-b97f1a76fb4a" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T051640Z:979bf751-8a9e-43b5-8fb0-5bdaef67d13a" + "WESTUS:20200925T014945Z:17d2ff03-1ad7-41d4-8f97-b97f1a76fb4a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -612,10 +927,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:16:39 GMT" + "Fri, 25 Sep 2020 01:49:45 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -624,17 +939,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ea9e231b-3b1f-44bb-8004-f7690c9a02c5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T05:16:36.443Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"fd924afd-97d6-4818-8793-05e007a60611\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:49:41.33Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/ea9e231b-3b1f-44bb-8004-f7690c9a02c5?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2VhOWUyMzFiLTNiMWYtNDRiYi04MDA0LWY3NjkwYzlhMDJjNT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/fd924afd-97d6-4818-8793-05e007a60611?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vZmQ5MjRhZmQtOTdkNi00ODE4LTg3OTMtMDVlMDA3YTYwNjExP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -651,7 +966,7 @@ "20" ], "x-ms-request-id": [ - "c8e1dffb-5f4e-4480-a596-5d07f9905a95" + "005f5500-366d-4ab6-baf5-a6a5a58aa3cf" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -660,10 +975,10 @@ "11994" ], "x-ms-correlation-request-id": [ - "8099842a-0cc1-4165-a1b8-9ea4dd20e308" + "405e512b-e50e-4b39-9830-ad9925a79dae" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T051642Z:8099842a-0cc1-4165-a1b8-9ea4dd20e308" + "WESTUS:20200925T014946Z:405e512b-e50e-4b39-9830-ad9925a79dae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -672,10 +987,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:16:41 GMT" + "Fri, 25 Sep 2020 01:49:46 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -684,17 +999,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ea9e231b-3b1f-44bb-8004-f7690c9a02c5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T05:16:36.443Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"fd924afd-97d6-4818-8793-05e007a60611\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:49:41.33Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/ea9e231b-3b1f-44bb-8004-f7690c9a02c5?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2VhOWUyMzFiLTNiMWYtNDRiYi04MDA0LWY3NjkwYzlhMDJjNT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/fd924afd-97d6-4818-8793-05e007a60611?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vZmQ5MjRhZmQtOTdkNi00ODE4LTg3OTMtMDVlMDA3YTYwNjExP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -711,7 +1026,7 @@ "20" ], "x-ms-request-id": [ - "8792e51e-457d-4d0c-ab88-2450f43f253e" + "7048691c-a5c6-42d8-b47c-1aab1b50dd66" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -720,10 +1035,10 @@ "11993" ], "x-ms-correlation-request-id": [ - "aad61380-99a3-41bf-ac2a-28ea230f6be2" + "248b6758-17cd-462a-9626-18111d06d09c" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T051702Z:aad61380-99a3-41bf-ac2a-28ea230f6be2" + "WESTUS:20200925T015006Z:248b6758-17cd-462a-9626-18111d06d09c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -732,10 +1047,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:17:02 GMT" + "Fri, 25 Sep 2020 01:50:06 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -744,17 +1059,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ea9e231b-3b1f-44bb-8004-f7690c9a02c5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T05:16:36.443Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"fd924afd-97d6-4818-8793-05e007a60611\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:49:41.33Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/ea9e231b-3b1f-44bb-8004-f7690c9a02c5?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2VhOWUyMzFiLTNiMWYtNDRiYi04MDA0LWY3NjkwYzlhMDJjNT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/fd924afd-97d6-4818-8793-05e007a60611?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vZmQ5MjRhZmQtOTdkNi00ODE4LTg3OTMtMDVlMDA3YTYwNjExP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -771,7 +1086,7 @@ "15" ], "x-ms-request-id": [ - "8e9b8ffa-da2a-4081-93a1-239d5579732d" + "be752f9d-94b6-41b0-b7ff-ee10634afae2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -780,10 +1095,10 @@ "11992" ], "x-ms-correlation-request-id": [ - "e612fe8d-77a2-4497-a8e5-8c985d3ac3c8" + "749ab0f5-b867-4fa6-b1fa-25b9e402c7e6" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T051722Z:e612fe8d-77a2-4497-a8e5-8c985d3ac3c8" + "WESTUS:20200925T015027Z:749ab0f5-b867-4fa6-b1fa-25b9e402c7e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -792,10 +1107,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:17:22 GMT" + "Fri, 25 Sep 2020 01:50:26 GMT" ], "Content-Length": [ - "107" + "106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -804,23 +1119,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ea9e231b-3b1f-44bb-8004-f7690c9a02c5\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-13T05:16:36.443Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"fd924afd-97d6-4818-8793-05e007a60611\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-25T01:49:41.33Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/servers/ps7893/databases/ps6909?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzg5My9kYXRhYmFzZXMvcHM2OTA5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582/databases/ps5276?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMzNTgyL2RhdGFiYXNlcy9wczUyNzY/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f1e597f-ec6f-4881-b9bb-71779f5847dc" + "cc290d9e-2923-4f20-a924-fca053660cc0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -837,13 +1152,13 @@ "gateway" ], "x-ms-request-id": [ - "0a190583-4b45-44b8-9841-88504b87f6f2" + "c45c6fb2-1a4f-4850-9dbf-efd4f20ea25d" ], "x-ms-correlation-request-id": [ - "0a190583-4b45-44b8-9841-88504b87f6f2" + "c45c6fb2-1a4f-4850-9dbf-efd4f20ea25d" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T051722Z:0a190583-4b45-44b8-9841-88504b87f6f2" + "WESTUS:20200925T015027Z:c45c6fb2-1a4f-4850-9dbf-efd4f20ea25d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -852,7 +1167,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:17:22 GMT" + "Fri, 25 Sep 2020 01:50:26 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -861,20 +1176,20 @@ "-1" ], "Content-Length": [ - "223" + "222" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps7893/databases/ps6909' under resource group 'ps5133' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps3582/databases/ps5276' under resource group 'ps692' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/servers/ps7893/databases/ps6909?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzg5My9kYXRhYmFzZXMvcHM2OTA5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582/databases/ps5276?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMzNTgyL2RhdGFiYXNlcy9wczUyNzY/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -888,7 +1203,7 @@ "no-cache" ], "x-ms-request-id": [ - "901893db-1c87-4626-86d7-199d7631e162" + "486a3502-a755-4dc5-b84c-0454e5e4be48" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -897,10 +1212,10 @@ "11984" ], "x-ms-correlation-request-id": [ - "faeec5cd-730e-4bec-8d84-167518b1324a" + "05bddcb0-84dc-4ec2-8a65-4c19440eab1c" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T051808Z:faeec5cd-730e-4bec-8d84-167518b1324a" + "WESTUS:20200925T015113Z:05bddcb0-84dc-4ec2-8a65-4c19440eab1c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -909,10 +1224,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:18:08 GMT" + "Fri, 25 Sep 2020 01:51:12 GMT" ], "Content-Length": [ - "986" + "983" ], "Content-Type": [ "application/json; charset=utf-8" @@ -921,23 +1236,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"7868c1fd-f376-42ad-a949-273375a2a62b\",\r\n \"creationDate\": \"2020-09-13T05:18:02.587Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 80530636800,\r\n \"earliestRestoreDate\": \"2020-09-13T05:48:02.587Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/servers/ps7893/databases/ps6909\",\r\n \"name\": \"ps6909\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"65acc1af-9dbe-4344-956a-ee9cc5d67991\",\r\n \"creationDate\": \"2020-09-25T01:51:06.91Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 80530636800,\r\n \"earliestRestoreDate\": \"2020-09-25T02:21:06.91Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582/databases/ps5276\",\r\n \"name\": \"ps5276\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/servers/ps7893/databases/ps6909?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzg5My9kYXRhYmFzZXMvcHM2OTA5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582/databases/ps5276?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMzNTgyL2RhdGFiYXNlcy9wczUyNzY/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c1954353-1525-4ad1-aced-3d9e9c3847ac" + "02160ddb-5d2a-4498-86b7-6cae37776319" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -951,19 +1266,19 @@ "no-cache" ], "x-ms-request-id": [ - "f2606092-e8f9-486b-82f6-4ff3b5967436" + "86028154-eecc-4405-80a0-48f27d19c56e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11982" ], "x-ms-correlation-request-id": [ - "0259208c-a357-480c-8656-6de81b41769f" + "5ff51b6d-16f4-4829-a070-1a81f9e4587d" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T051808Z:0259208c-a357-480c-8656-6de81b41769f" + "WESTUS:20200925T015113Z:5ff51b6d-16f4-4829-a070-1a81f9e4587d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -972,10 +1287,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:18:08 GMT" + "Fri, 25 Sep 2020 01:51:13 GMT" ], "Content-Length": [ - "986" + "983" ], "Content-Type": [ "application/json; charset=utf-8" @@ -984,23 +1299,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"7868c1fd-f376-42ad-a949-273375a2a62b\",\r\n \"creationDate\": \"2020-09-13T05:18:02.587Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 80530636800,\r\n \"earliestRestoreDate\": \"2020-09-13T05:48:02.587Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/servers/ps7893/databases/ps6909\",\r\n \"name\": \"ps6909\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"65acc1af-9dbe-4344-956a-ee9cc5d67991\",\r\n \"creationDate\": \"2020-09-25T01:51:06.91Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 80530636800,\r\n \"earliestRestoreDate\": \"2020-09-25T02:21:06.91Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582/databases/ps5276\",\r\n \"name\": \"ps5276\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/servers/ps7893/databases/ps6909?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzg5My9kYXRhYmFzZXMvcHM2OTA5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582/databases/ps5276?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMzNTgyL2RhdGFiYXNlcy9wczUyNzY/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d19c19df-0211-4b9a-9618-164ff51c110f" + "06c5bafa-024e-4866-b3b7-7a9b968645ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1014,19 +1329,19 @@ "no-cache" ], "x-ms-request-id": [ - "cc1a26d3-49f7-4bf1-a99e-1df4b3c3a618" + "b666cca8-72e7-4c20-8db4-db619db147c7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11981" ], "x-ms-correlation-request-id": [ - "c03ad3cf-74f9-439a-8316-271d79066d66" + "365ae4b5-0f65-44c9-9d40-d79dc9ff24f2" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T051808Z:c03ad3cf-74f9-439a-8316-271d79066d66" + "WESTUS:20200925T015113Z:365ae4b5-0f65-44c9-9d40-d79dc9ff24f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1035,10 +1350,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:18:08 GMT" + "Fri, 25 Sep 2020 01:51:13 GMT" ], "Content-Length": [ - "986" + "983" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1047,17 +1362,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"7868c1fd-f376-42ad-a949-273375a2a62b\",\r\n \"creationDate\": \"2020-09-13T05:18:02.587Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 80530636800,\r\n \"earliestRestoreDate\": \"2020-09-13T05:48:02.587Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/servers/ps7893/databases/ps6909\",\r\n \"name\": \"ps6909\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"65acc1af-9dbe-4344-956a-ee9cc5d67991\",\r\n \"creationDate\": \"2020-09-25T01:51:06.91Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 80530636800,\r\n \"earliestRestoreDate\": \"2020-09-25T02:21:06.91Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582/databases/ps5276\",\r\n \"name\": \"ps5276\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/servers/ps7893/databases/ps6909?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzg5My9kYXRhYmFzZXMvcHM2OTA5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582/databases/ps5276?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMzNTgyL2RhdGFiYXNlcy9wczUyNzY/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1071,19 +1386,19 @@ "no-cache" ], "x-ms-request-id": [ - "3cb991c9-85d7-42ad-96f2-b12bd636bf64" + "0693b855-3f6a-470c-b91e-26056938c1fd" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11979" ], "x-ms-correlation-request-id": [ - "d5f3f2a1-0de3-4166-b223-d0c948603972" + "3eaa2229-0e41-4b67-a4a7-114b7fb0e4b6" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T051824Z:d5f3f2a1-0de3-4166-b223-d0c948603972" + "WESTUS:20200925T015129Z:3eaa2229-0e41-4b67-a4a7-114b7fb0e4b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1092,10 +1407,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:18:23 GMT" + "Fri, 25 Sep 2020 01:51:28 GMT" ], "Content-Length": [ - "976" + "973" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1104,23 +1419,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"7868c1fd-f376-42ad-a949-273375a2a62b\",\r\n \"creationDate\": \"2020-09-13T05:18:02.587Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 0,\r\n \"earliestRestoreDate\": \"2020-09-13T05:48:02.587Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/servers/ps7893/databases/ps6909\",\r\n \"name\": \"ps6909\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"65acc1af-9dbe-4344-956a-ee9cc5d67991\",\r\n \"creationDate\": \"2020-09-25T01:51:06.91Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 0,\r\n \"earliestRestoreDate\": \"2020-09-25T02:21:06.91Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582/databases/ps5276\",\r\n \"name\": \"ps5276\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/servers/ps7893/databases/ps6909?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzg5My9kYXRhYmFzZXMvcHM2OTA5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582/databases/ps5276?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMzNTgyL2RhdGFiYXNlcy9wczUyNzY/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a15055a6-a525-4b40-9d90-d4ac4c850019" + "a4cf7b2c-86c5-4f81-9923-464c6601f89f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1134,19 +1449,19 @@ "no-cache" ], "x-ms-request-id": [ - "e57ae30f-7a94-481e-b632-ad3a73a8e5de" + "37fc5faf-4ef7-4683-9837-37b6b500d96e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11977" ], "x-ms-correlation-request-id": [ - "a955aa02-0f1a-45aa-9e70-470e8c14d154" + "e374c2f1-07ac-4e15-bae4-ece75650c293" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T051824Z:a955aa02-0f1a-45aa-9e70-470e8c14d154" + "WESTUS:20200925T015129Z:e374c2f1-07ac-4e15-bae4-ece75650c293" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1155,10 +1470,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:18:23 GMT" + "Fri, 25 Sep 2020 01:51:29 GMT" ], "Content-Length": [ - "976" + "973" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1167,23 +1482,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"7868c1fd-f376-42ad-a949-273375a2a62b\",\r\n \"creationDate\": \"2020-09-13T05:18:02.587Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 0,\r\n \"earliestRestoreDate\": \"2020-09-13T05:48:02.587Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/servers/ps7893/databases/ps6909\",\r\n \"name\": \"ps6909\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"65acc1af-9dbe-4344-956a-ee9cc5d67991\",\r\n \"creationDate\": \"2020-09-25T01:51:06.91Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 0,\r\n \"earliestRestoreDate\": \"2020-09-25T02:21:06.91Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582/databases/ps5276\",\r\n \"name\": \"ps5276\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/servers/ps7893/databases/ps6909?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzg5My9kYXRhYmFzZXMvcHM2OTA5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582/databases/ps5276?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMzNTgyL2RhdGFiYXNlcy9wczUyNzY/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "adf6e8f0-1427-4abf-8513-0610d65ea7e7" + "6749c4bb-1752-41b4-b1e8-15df6fea0981" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1197,19 +1512,19 @@ "no-cache" ], "x-ms-request-id": [ - "c3fcde9e-818d-4599-ad18-6f6b190095a4" + "63c498c5-7e0d-4e3c-89d7-b234e3bfdee5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11976" ], "x-ms-correlation-request-id": [ - "930a7ecb-1565-4b9b-b8e7-45023b2ce733" + "d13d1d98-bbbf-4263-9dd5-1e72d168ec10" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T051824Z:930a7ecb-1565-4b9b-b8e7-45023b2ce733" + "WESTUS:20200925T015129Z:d13d1d98-bbbf-4263-9dd5-1e72d168ec10" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1218,10 +1533,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:18:24 GMT" + "Fri, 25 Sep 2020 01:51:29 GMT" ], "Content-Length": [ - "976" + "973" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1230,17 +1545,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"7868c1fd-f376-42ad-a949-273375a2a62b\",\r\n \"creationDate\": \"2020-09-13T05:18:02.587Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 0,\r\n \"earliestRestoreDate\": \"2020-09-13T05:48:02.587Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/servers/ps7893/databases/ps6909\",\r\n \"name\": \"ps6909\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"65acc1af-9dbe-4344-956a-ee9cc5d67991\",\r\n \"creationDate\": \"2020-09-25T01:51:06.91Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 0,\r\n \"earliestRestoreDate\": \"2020-09-25T02:21:06.91Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582/databases/ps5276\",\r\n \"name\": \"ps5276\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/servers/ps7893/databases/ps6909?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzg5My9kYXRhYmFzZXMvcHM2OTA5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582/databases/ps5276?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMzNTgyL2RhdGFiYXNlcy9wczUyNzY/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1254,19 +1569,19 @@ "no-cache" ], "x-ms-request-id": [ - "d219dd76-b2ca-4190-95b8-7f145628da5d" + "e6abc0ae-7851-4582-b3c8-e25e5847bdb6" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11974" ], "x-ms-correlation-request-id": [ - "9f791d1c-7224-4606-8064-33361a33e940" + "fe1b4b1c-f34c-4acf-9dc0-20d44de6ba50" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T051840Z:9f791d1c-7224-4606-8064-33361a33e940" + "WESTUS:20200925T015145Z:fe1b4b1c-f34c-4acf-9dc0-20d44de6ba50" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1275,10 +1590,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:18:39 GMT" + "Fri, 25 Sep 2020 01:51:44 GMT" ], "Content-Length": [ - "1018" + "1015" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1287,23 +1602,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 5368709120,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"7868c1fd-f376-42ad-a949-273375a2a62b\",\r\n \"creationDate\": \"2020-09-13T05:18:02.587Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 1610612736,\r\n \"earliestRestoreDate\": \"2020-09-13T05:48:02.587Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag_key\": \"tag_new_value\"\r\n },\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/servers/ps7893/databases/ps6909\",\r\n \"name\": \"ps6909\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 5368709120,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"65acc1af-9dbe-4344-956a-ee9cc5d67991\",\r\n \"creationDate\": \"2020-09-25T01:51:06.91Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 1610612736,\r\n \"earliestRestoreDate\": \"2020-09-25T02:21:06.91Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag_key\": \"tag_new_value\"\r\n },\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582/databases/ps5276\",\r\n \"name\": \"ps5276\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/servers/ps7893/databases/ps6909?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzg5My9kYXRhYmFzZXMvcHM2OTA5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582/databases/ps5276?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMzNTgyL2RhdGFiYXNlcy9wczUyNzY/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b7ad0295-8006-4057-9d6f-80f33ee6b305" + "5c49c4d7-4a5c-4ca6-9849-886fe34072d3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1317,19 +1632,19 @@ "no-cache" ], "x-ms-request-id": [ - "07df292a-8781-4aac-8776-5fe72f034e67" + "5ed5ad75-3d09-4e4c-a2a4-d1453fb17783" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11972" ], "x-ms-correlation-request-id": [ - "c62e58ba-9ec0-489c-9a18-5bf173247711" + "99c1e555-8145-42c9-9261-a23805f635c9" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T051840Z:c62e58ba-9ec0-489c-9a18-5bf173247711" + "WESTUS:20200925T015145Z:99c1e555-8145-42c9-9261-a23805f635c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1338,10 +1653,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:18:39 GMT" + "Fri, 25 Sep 2020 01:51:44 GMT" ], "Content-Length": [ - "1018" + "1015" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1350,23 +1665,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 5368709120,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"7868c1fd-f376-42ad-a949-273375a2a62b\",\r\n \"creationDate\": \"2020-09-13T05:18:02.587Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 1610612736,\r\n \"earliestRestoreDate\": \"2020-09-13T05:48:02.587Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag_key\": \"tag_new_value\"\r\n },\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/servers/ps7893/databases/ps6909\",\r\n \"name\": \"ps6909\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 5368709120,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"65acc1af-9dbe-4344-956a-ee9cc5d67991\",\r\n \"creationDate\": \"2020-09-25T01:51:06.91Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 1610612736,\r\n \"earliestRestoreDate\": \"2020-09-25T02:21:06.91Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag_key\": \"tag_new_value\"\r\n },\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582/databases/ps5276\",\r\n \"name\": \"ps5276\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/servers/ps7893/databases/ps6909?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzg5My9kYXRhYmFzZXMvcHM2OTA5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582/databases/ps5276?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMzNTgyL2RhdGFiYXNlcy9wczUyNzY/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "498c3574-772d-426b-9159-28c0332a9998" + "9381c385-3bfa-4f04-8586-27e420591177" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1380,19 +1695,19 @@ "no-cache" ], "x-ms-request-id": [ - "cda60499-e7e3-41eb-90ed-dd353cccfb25" + "f2d4956b-cfb7-4835-bd46-f67efbe4bb92" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11971" ], "x-ms-correlation-request-id": [ - "a1c2ee43-b700-40a3-b748-5c70cdd92a45" + "c691bc07-e48c-43aa-b11c-c5b77391d05d" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T051840Z:a1c2ee43-b700-40a3-b748-5c70cdd92a45" + "WESTUS:20200925T015145Z:c691bc07-e48c-43aa-b11c-c5b77391d05d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1401,10 +1716,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:18:39 GMT" + "Fri, 25 Sep 2020 01:51:44 GMT" ], "Content-Length": [ - "1018" + "1015" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1413,17 +1728,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 5368709120,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"7868c1fd-f376-42ad-a949-273375a2a62b\",\r\n \"creationDate\": \"2020-09-13T05:18:02.587Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 1610612736,\r\n \"earliestRestoreDate\": \"2020-09-13T05:48:02.587Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag_key\": \"tag_new_value\"\r\n },\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/servers/ps7893/databases/ps6909\",\r\n \"name\": \"ps6909\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 5368709120,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"65acc1af-9dbe-4344-956a-ee9cc5d67991\",\r\n \"creationDate\": \"2020-09-25T01:51:06.91Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 1610612736,\r\n \"earliestRestoreDate\": \"2020-09-25T02:21:06.91Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag_key\": \"tag_new_value\"\r\n },\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582/databases/ps5276\",\r\n \"name\": \"ps5276\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/servers/ps7893/databases/ps6909?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzg5My9kYXRhYmFzZXMvcHM2OTA5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582/databases/ps5276?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMzNTgyL2RhdGFiYXNlcy9wczUyNzY/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1437,19 +1752,19 @@ "no-cache" ], "x-ms-request-id": [ - "a982fcce-27b1-494d-ab59-68b8e3c71e90" + "314a374d-ee6c-4d0e-a70b-7623ffeaa3fd" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11962" ], "x-ms-correlation-request-id": [ - "d068bebf-5b23-424e-8f11-ef08acf29954" + "36a266a3-8791-4c00-bea8-9b1440f0b0f7" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T052042Z:d068bebf-5b23-424e-8f11-ef08acf29954" + "WESTUS:20200925T015346Z:36a266a3-8791-4c00-bea8-9b1440f0b0f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1458,10 +1773,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:20:41 GMT" + "Fri, 25 Sep 2020 01:53:46 GMT" ], "Content-Length": [ - "1022" + "1019" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1470,23 +1785,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"BC_Gen5\",\r\n \"tier\": \"BusinessCritical\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 5368709120,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"7868c1fd-f376-42ad-a949-273375a2a62b\",\r\n \"creationDate\": \"2020-09-13T05:18:02.587Z\",\r\n \"currentServiceObjectiveName\": \"BC_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"BC_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 1610612736,\r\n \"earliestRestoreDate\": \"2020-09-13T05:48:02.587Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"BC_Gen5\",\r\n \"tier\": \"BusinessCritical\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag_key\": \"tag_new_value\"\r\n },\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/servers/ps7893/databases/ps6909\",\r\n \"name\": \"ps6909\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"BC_Gen5\",\r\n \"tier\": \"BusinessCritical\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 5368709120,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"65acc1af-9dbe-4344-956a-ee9cc5d67991\",\r\n \"creationDate\": \"2020-09-25T01:51:06.91Z\",\r\n \"currentServiceObjectiveName\": \"BC_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"BC_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 1610612736,\r\n \"earliestRestoreDate\": \"2020-09-25T02:21:06.91Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"BC_Gen5\",\r\n \"tier\": \"BusinessCritical\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag_key\": \"tag_new_value\"\r\n },\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582/databases/ps5276\",\r\n \"name\": \"ps5276\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/servers/ps7893/databases/ps6909?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzg5My9kYXRhYmFzZXMvcHM2OTA5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582/databases/ps5276?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMzNTgyL2RhdGFiYXNlcy9wczUyNzY/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0c92bb84-e39e-4de2-892e-7dc1d7d47307" + "1af341f5-e871-4495-9358-d4b8fdb2973c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1500,19 +1815,19 @@ "no-cache" ], "x-ms-request-id": [ - "1ade7b3e-eaa3-470c-9438-72da74c89222" + "3be7fc11-3cba-4c2d-9a28-927e92c4e850" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11960" ], "x-ms-correlation-request-id": [ - "26ab5ae6-df18-491d-82ed-23482de80813" + "f6862a06-12bb-4227-ba65-51b9928275fc" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T052042Z:26ab5ae6-df18-491d-82ed-23482de80813" + "WESTUS:20200925T015346Z:f6862a06-12bb-4227-ba65-51b9928275fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1521,10 +1836,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:20:41 GMT" + "Fri, 25 Sep 2020 01:53:46 GMT" ], "Content-Length": [ - "1022" + "1019" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1533,23 +1848,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"BC_Gen5\",\r\n \"tier\": \"BusinessCritical\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 5368709120,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"7868c1fd-f376-42ad-a949-273375a2a62b\",\r\n \"creationDate\": \"2020-09-13T05:18:02.587Z\",\r\n \"currentServiceObjectiveName\": \"BC_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"BC_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 1610612736,\r\n \"earliestRestoreDate\": \"2020-09-13T05:48:02.587Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"BC_Gen5\",\r\n \"tier\": \"BusinessCritical\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag_key\": \"tag_new_value\"\r\n },\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/servers/ps7893/databases/ps6909\",\r\n \"name\": \"ps6909\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"BC_Gen5\",\r\n \"tier\": \"BusinessCritical\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 5368709120,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"65acc1af-9dbe-4344-956a-ee9cc5d67991\",\r\n \"creationDate\": \"2020-09-25T01:51:06.91Z\",\r\n \"currentServiceObjectiveName\": \"BC_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"BC_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 1610612736,\r\n \"earliestRestoreDate\": \"2020-09-25T02:21:06.91Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"BC_Gen5\",\r\n \"tier\": \"BusinessCritical\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag_key\": \"tag_new_value\"\r\n },\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582/databases/ps5276\",\r\n \"name\": \"ps5276\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/servers/ps7893/databases/ps6909?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzg5My9kYXRhYmFzZXMvcHM2OTA5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582/databases/ps5276?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMzNTgyL2RhdGFiYXNlcy9wczUyNzY/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "062378d6-193a-4cad-b127-e8793d3a3557" + "66a16146-9679-456d-8f0d-c13109ad41da" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1563,19 +1878,19 @@ "no-cache" ], "x-ms-request-id": [ - "f3d74871-d76d-4bdf-9016-9ea4c47d27de" + "1bc3f4c4-10ab-452c-94aa-9bb9cf9116d4" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11959" ], "x-ms-correlation-request-id": [ - "aaa20ee8-1308-4927-93b1-b4d67c71b1cf" + "36e42c96-de3c-4b5b-9284-20132ed03ba0" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T052042Z:aaa20ee8-1308-4927-93b1-b4d67c71b1cf" + "WESTUS:20200925T015346Z:36e42c96-de3c-4b5b-9284-20132ed03ba0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1584,10 +1899,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:20:42 GMT" + "Fri, 25 Sep 2020 01:53:46 GMT" ], "Content-Length": [ - "1022" + "1019" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1596,17 +1911,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"BC_Gen5\",\r\n \"tier\": \"BusinessCritical\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 5368709120,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"7868c1fd-f376-42ad-a949-273375a2a62b\",\r\n \"creationDate\": \"2020-09-13T05:18:02.587Z\",\r\n \"currentServiceObjectiveName\": \"BC_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"BC_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 1610612736,\r\n \"earliestRestoreDate\": \"2020-09-13T05:48:02.587Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"BC_Gen5\",\r\n \"tier\": \"BusinessCritical\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag_key\": \"tag_new_value\"\r\n },\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/servers/ps7893/databases/ps6909\",\r\n \"name\": \"ps6909\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"BC_Gen5\",\r\n \"tier\": \"BusinessCritical\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 5368709120,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"65acc1af-9dbe-4344-956a-ee9cc5d67991\",\r\n \"creationDate\": \"2020-09-25T01:51:06.91Z\",\r\n \"currentServiceObjectiveName\": \"BC_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"BC_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 1610612736,\r\n \"earliestRestoreDate\": \"2020-09-25T02:21:06.91Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"BC_Gen5\",\r\n \"tier\": \"BusinessCritical\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag_key\": \"tag_new_value\"\r\n },\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582/databases/ps5276\",\r\n \"name\": \"ps5276\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/servers/ps7893/databases/ps6909?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzg5My9kYXRhYmFzZXMvcHM2OTA5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582/databases/ps5276?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMzNTgyL2RhdGFiYXNlcy9wczUyNzY/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1620,19 +1935,19 @@ "no-cache" ], "x-ms-request-id": [ - "ec82efac-1903-4b3e-acc8-22565a515895" + "64d50583-8e92-4407-9f86-4bc992675416" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" + "11957" ], "x-ms-correlation-request-id": [ - "0ef72eda-0db6-4a39-97dd-c86ebbed7694" + "aa464010-cf22-4106-bb4e-710d1950b5ba" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T052057Z:0ef72eda-0db6-4a39-97dd-c86ebbed7694" + "WESTUS:20200925T015402Z:aa464010-cf22-4106-bb4e-710d1950b5ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1641,10 +1956,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:20:57 GMT" + "Fri, 25 Sep 2020 01:54:02 GMT" ], "Content-Length": [ - "1022" + "1019" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1653,23 +1968,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"BC_Gen5\",\r\n \"tier\": \"BusinessCritical\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 5368709120,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"7868c1fd-f376-42ad-a949-273375a2a62b\",\r\n \"creationDate\": \"2020-09-13T05:18:02.587Z\",\r\n \"currentServiceObjectiveName\": \"BC_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"BC_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 1610612736,\r\n \"earliestRestoreDate\": \"2020-09-13T05:48:02.587Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"BC_Gen5\",\r\n \"tier\": \"BusinessCritical\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag_key\": \"tag_new_value\"\r\n },\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/servers/ps7893/databases/ps6909\",\r\n \"name\": \"ps6909\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"BC_Gen5\",\r\n \"tier\": \"BusinessCritical\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 5368709120,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"65acc1af-9dbe-4344-956a-ee9cc5d67991\",\r\n \"creationDate\": \"2020-09-25T01:51:06.91Z\",\r\n \"currentServiceObjectiveName\": \"BC_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"BC_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 1610612736,\r\n \"earliestRestoreDate\": \"2020-09-25T02:21:06.91Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"BC_Gen5\",\r\n \"tier\": \"BusinessCritical\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag_key\": \"tag_new_value\"\r\n },\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582/databases/ps5276\",\r\n \"name\": \"ps5276\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/servers/ps7893/databases/ps6909?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzg5My9kYXRhYmFzZXMvcHM2OTA5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582/databases/ps5276?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMzNTgyL2RhdGFiYXNlcy9wczUyNzY/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9e738876-1eb8-4669-a28d-987477a7ab6d" + "87c514ed-6482-4711-a172-d052e63a0edd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1683,19 +1998,19 @@ "no-cache" ], "x-ms-request-id": [ - "87020a8a-7562-4fb4-971a-8db974f4b65f" + "ed40e2df-4071-45f8-9423-8ee8d5a3b5ea" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "11955" ], "x-ms-correlation-request-id": [ - "8e38b444-fe57-437e-858a-06f6edf3f4af" + "3071112d-a7e3-472c-b930-7d39be72b489" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T052058Z:8e38b444-fe57-437e-858a-06f6edf3f4af" + "WESTUS:20200925T015402Z:3071112d-a7e3-472c-b930-7d39be72b489" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1704,10 +2019,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:20:57 GMT" + "Fri, 25 Sep 2020 01:54:02 GMT" ], "Content-Length": [ - "1022" + "1019" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1716,23 +2031,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"BC_Gen5\",\r\n \"tier\": \"BusinessCritical\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 5368709120,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"7868c1fd-f376-42ad-a949-273375a2a62b\",\r\n \"creationDate\": \"2020-09-13T05:18:02.587Z\",\r\n \"currentServiceObjectiveName\": \"BC_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"BC_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 1610612736,\r\n \"earliestRestoreDate\": \"2020-09-13T05:48:02.587Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"BC_Gen5\",\r\n \"tier\": \"BusinessCritical\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag_key\": \"tag_new_value\"\r\n },\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/servers/ps7893/databases/ps6909\",\r\n \"name\": \"ps6909\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"BC_Gen5\",\r\n \"tier\": \"BusinessCritical\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 5368709120,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"65acc1af-9dbe-4344-956a-ee9cc5d67991\",\r\n \"creationDate\": \"2020-09-25T01:51:06.91Z\",\r\n \"currentServiceObjectiveName\": \"BC_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"BC_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 1610612736,\r\n \"earliestRestoreDate\": \"2020-09-25T02:21:06.91Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"BC_Gen5\",\r\n \"tier\": \"BusinessCritical\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag_key\": \"tag_new_value\"\r\n },\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582/databases/ps5276\",\r\n \"name\": \"ps5276\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/servers/ps7893/databases/ps6909?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzg5My9kYXRhYmFzZXMvcHM2OTA5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582/databases/ps5276?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMzNTgyL2RhdGFiYXNlcy9wczUyNzY/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cb92e50a-c42f-48aa-9870-72796a726280" + "b5d1222b-01ba-4c4e-b596-34b7373536b7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1746,19 +2061,19 @@ "no-cache" ], "x-ms-request-id": [ - "3f044392-bba4-44d1-9b22-83ee97ad2f92" + "c97d9a2d-3498-41f7-9b93-b39c227b784d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11954" ], "x-ms-correlation-request-id": [ - "9e4c2615-d2b4-4c47-8a5e-c1a4d3cbeb17" + "25a1931f-9fb5-4b07-a475-701e331c6e1a" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T052058Z:9e4c2615-d2b4-4c47-8a5e-c1a4d3cbeb17" + "WESTUS:20200925T015402Z:25a1931f-9fb5-4b07-a475-701e331c6e1a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1767,10 +2082,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:20:57 GMT" + "Fri, 25 Sep 2020 01:54:02 GMT" ], "Content-Length": [ - "1022" + "1019" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1779,17 +2094,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"BC_Gen5\",\r\n \"tier\": \"BusinessCritical\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 5368709120,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"7868c1fd-f376-42ad-a949-273375a2a62b\",\r\n \"creationDate\": \"2020-09-13T05:18:02.587Z\",\r\n \"currentServiceObjectiveName\": \"BC_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"BC_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 1610612736,\r\n \"earliestRestoreDate\": \"2020-09-13T05:48:02.587Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"BC_Gen5\",\r\n \"tier\": \"BusinessCritical\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag_key\": \"tag_new_value\"\r\n },\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/servers/ps7893/databases/ps6909\",\r\n \"name\": \"ps6909\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"BC_Gen5\",\r\n \"tier\": \"BusinessCritical\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 5368709120,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"65acc1af-9dbe-4344-956a-ee9cc5d67991\",\r\n \"creationDate\": \"2020-09-25T01:51:06.91Z\",\r\n \"currentServiceObjectiveName\": \"BC_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"BC_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 1610612736,\r\n \"earliestRestoreDate\": \"2020-09-25T02:21:06.91Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"BC_Gen5\",\r\n \"tier\": \"BusinessCritical\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag_key\": \"tag_new_value\"\r\n },\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582/databases/ps5276\",\r\n \"name\": \"ps5276\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/servers/ps7893/databases/ps6909?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzg5My9kYXRhYmFzZXMvcHM2OTA5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582/databases/ps5276?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMzNTgyL2RhdGFiYXNlcy9wczUyNzY/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1803,19 +2118,19 @@ "no-cache" ], "x-ms-request-id": [ - "1557304e-e7f8-4111-bc9f-ef4bf40b9ac1" + "b8740258-ee00-4397-9d86-c04b242df690" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11952" + "11948" ], "x-ms-correlation-request-id": [ - "5b0dcac0-1781-428a-a5ac-52860139b5ed" + "6815824d-d771-4838-826c-ad976671c72a" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T052229Z:5b0dcac0-1781-428a-a5ac-52860139b5ed" + "WESTUS:20200925T015518Z:6815824d-d771-4838-826c-ad976671c72a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1824,10 +2139,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:22:28 GMT" + "Fri, 25 Sep 2020 01:55:17 GMT" ], "Content-Length": [ - "1018" + "1015" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1836,23 +2151,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 5368709120,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"7868c1fd-f376-42ad-a949-273375a2a62b\",\r\n \"creationDate\": \"2020-09-13T05:18:02.587Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 1610612736,\r\n \"earliestRestoreDate\": \"2020-09-13T05:48:02.587Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag_key\": \"tag_new_value\"\r\n },\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/servers/ps7893/databases/ps6909\",\r\n \"name\": \"ps6909\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 5368709120,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"65acc1af-9dbe-4344-956a-ee9cc5d67991\",\r\n \"creationDate\": \"2020-09-25T01:51:06.91Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 1610612736,\r\n \"earliestRestoreDate\": \"2020-09-25T02:21:06.91Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag_key\": \"tag_new_value\"\r\n },\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582/databases/ps5276\",\r\n \"name\": \"ps5276\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/servers/ps7893/databases/ps6909?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzg5My9kYXRhYmFzZXMvcHM2OTA5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582/databases/ps5276?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMzNTgyL2RhdGFiYXNlcy9wczUyNzY/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"GP\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"maxSizeBytes\": 268435456000,\r\n \"readScale\": \"\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3c3caf8a-dc2c-4bd1-ae59-35f42822a8d9" + "49607067-33bf-4d7a-9ecc-bf1cbe0c183f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1872,16 +2187,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/locations/westcentralus/databaseOperationResults/46dc9b68-f624-4333-88c2-5dc08315fc7c?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/locations/westcentralus/databaseOperationResults/3524e6af-1ea5-4b1f-a578-a86710bbabe6?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/46dc9b68-f624-4333-88c2-5dc08315fc7c?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/3524e6af-1ea5-4b1f-a578-a86710bbabe6?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "46dc9b68-f624-4333-88c2-5dc08315fc7c" + "3524e6af-1ea5-4b1f-a578-a86710bbabe6" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1890,10 +2205,10 @@ "1198" ], "x-ms-correlation-request-id": [ - "aaed8554-0cc5-408a-8f32-8fd0311cf3e1" + "9f2c79d5-4012-4eee-807c-650bda1ae0c7" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T051723Z:aaed8554-0cc5-408a-8f32-8fd0311cf3e1" + "WESTUS:20200925T015028Z:9f2c79d5-4012-4eee-807c-650bda1ae0c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1902,10 +2217,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:17:23 GMT" + "Fri, 25 Sep 2020 01:50:27 GMT" ], "Content-Length": [ - "75" + "76" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1914,23 +2229,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2020-09-13T05:17:23.18Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2020-09-25T01:50:27.957Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/servers/ps7893/databases/ps6909?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzg5My9kYXRhYmFzZXMvcHM2OTA5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582/databases/ps5276?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMzNTgyL2RhdGFiYXNlcy9wczUyNzY/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": 0,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"readScale\": \"Disabled\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e9746c96-1e0e-45f9-9d7f-ba89eac0c002" + "1ef9cab8-3cdb-43e6-b452-24746afbe4cf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1950,16 +2265,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/locations/westcentralus/databaseOperationResults/dbfe5589-3c9e-4136-bf09-bf6f37d576d0?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/locations/westcentralus/databaseOperationResults/8acea6e4-57cf-4392-b83e-4e82f3e9f460?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/dbfe5589-3c9e-4136-bf09-bf6f37d576d0?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/8acea6e4-57cf-4392-b83e-4e82f3e9f460?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "4fb105aa-896f-460d-9058-a4c9240959f0" + "8acea6e4-57cf-4392-b83e-4e82f3e9f460" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1968,10 +2283,10 @@ "1197" ], "x-ms-correlation-request-id": [ - "37f73527-4f56-42a2-ae58-39d34811f9d1" + "d74d3ad3-3095-4671-a37f-56f1c256120f" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T051809Z:37f73527-4f56-42a2-ae58-39d34811f9d1" + "WESTUS:20200925T015114Z:d74d3ad3-3095-4671-a37f-56f1c256120f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1980,7 +2295,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:18:08 GMT" + "Fri, 25 Sep 2020 01:51:13 GMT" ], "Content-Length": [ "76" @@ -1992,23 +2307,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-09-13T05:18:09.117Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-09-25T01:51:13.923Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/servers/ps7893/databases/ps6909?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzg5My9kYXRhYmFzZXMvcHM2OTA5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582/databases/ps5276?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMzNTgyL2RhdGFiYXNlcy9wczUyNzY/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"GP\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"maxSizeBytes\": 5368709120,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"readScale\": \"Disabled\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag_key\": \"tag_new_value\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2dd1e175-5307-4ec0-a75e-77ce0b7ff172" + "6f6c0e98-60cb-40cf-88ed-d9903613d313" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2028,16 +2343,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/locations/westcentralus/databaseOperationResults/df4b0e08-494e-496b-96f1-fae524672ebf?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/locations/westcentralus/databaseOperationResults/a4178e31-b706-44c6-b797-4e10dc954e22?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/df4b0e08-494e-496b-96f1-fae524672ebf?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/a4178e31-b706-44c6-b797-4e10dc954e22?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "2cb344bb-1b25-4f34-9d72-63b08532a883" + "a4178e31-b706-44c6-b797-4e10dc954e22" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2046,10 +2361,10 @@ "1196" ], "x-ms-correlation-request-id": [ - "2989e3b0-5faa-47e0-8da4-6d6b53d1201f" + "59162258-d155-41a0-b509-06b04a36bbca" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T051825Z:2989e3b0-5faa-47e0-8da4-6d6b53d1201f" + "WESTUS:20200925T015129Z:59162258-d155-41a0-b509-06b04a36bbca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2058,10 +2373,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:18:24 GMT" + "Fri, 25 Sep 2020 01:51:29 GMT" ], "Content-Length": [ - "75" + "76" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2070,23 +2385,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-09-13T05:18:25.04Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-09-25T01:51:29.767Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/servers/ps7893/databases/ps6909?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzg5My9kYXRhYmFzZXMvcHM2OTA5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582/databases/ps5276?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMzNTgyL2RhdGFiYXNlcy9wczUyNzY/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"BC\",\r\n \"tier\": \"BusinessCritical\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"maxSizeBytes\": 0,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"readScale\": \"Disabled\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag_key\": \"tag_new_value\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7d9d2522-968f-47a8-9dfd-d9954ef45e79" + "5a3df0f3-ca95-466c-8857-da8d1deda7e4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2106,16 +2421,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/locations/westcentralus/databaseOperationResults/1b183c6e-d9cd-4c5d-8f06-1a0cda3875d7?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/locations/westcentralus/databaseOperationResults/c9e5b43a-f0c1-4fb0-981c-eddd00f0d110?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/1b183c6e-d9cd-4c5d-8f06-1a0cda3875d7?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/c9e5b43a-f0c1-4fb0-981c-eddd00f0d110?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "5f3c3f84-6c2d-478a-b084-4c4193062ed9" + "c9e5b43a-f0c1-4fb0-981c-eddd00f0d110" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2124,10 +2439,10 @@ "1195" ], "x-ms-correlation-request-id": [ - "7b345934-d949-444c-9ab0-c97e603e5023" + "30ffd70d-9d79-4290-ad39-6e13466281b2" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T051841Z:7b345934-d949-444c-9ab0-c97e603e5023" + "WESTUS:20200925T015145Z:30ffd70d-9d79-4290-ad39-6e13466281b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2136,10 +2451,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:18:40 GMT" + "Fri, 25 Sep 2020 01:51:45 GMT" ], "Content-Length": [ - "75" + "76" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2148,23 +2463,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-09-13T05:18:40.96Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-09-25T01:51:45.517Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/servers/ps7893/databases/ps6909?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzg5My9kYXRhYmFzZXMvcHM2OTA5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582/databases/ps5276?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMzNTgyL2RhdGFiYXNlcy9wczUyNzY/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"BC\",\r\n \"tier\": \"BusinessCritical\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"maxSizeBytes\": 0,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"readScale\": \"Disabled\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag_key\": \"tag_new_value\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5da4a627-3a29-4d72-8fef-b1fb4765bdf8" + "6ce8f0b6-f640-4cc5-af20-97e939aefff5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2184,16 +2499,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/locations/westcentralus/databaseOperationResults/4398d0df-4df2-4b55-a8c7-e375467edfd3?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/locations/westcentralus/databaseOperationResults/f4a61d43-aa0d-4c42-8f63-f0241352e8e3?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/4398d0df-4df2-4b55-a8c7-e375467edfd3?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/f4a61d43-aa0d-4c42-8f63-f0241352e8e3?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "c7d3c62f-5c86-4994-9d27-8151ce5dfaaf" + "f4a61d43-aa0d-4c42-8f63-f0241352e8e3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2202,10 +2517,10 @@ "1194" ], "x-ms-correlation-request-id": [ - "14d23a6e-f83a-40b4-ba02-117ce94a5095" + "1eec2a62-1119-49d1-b6ec-bb2141f11448" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T052042Z:14d23a6e-f83a-40b4-ba02-117ce94a5095" + "WESTUS:20200925T015347Z:1eec2a62-1119-49d1-b6ec-bb2141f11448" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2214,7 +2529,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:20:42 GMT" + "Fri, 25 Sep 2020 01:53:47 GMT" ], "Content-Length": [ "76" @@ -2226,23 +2541,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-09-13T05:20:42.587Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-09-25T01:53:47.097Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/servers/ps7893/databases/ps6909?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzg5My9kYXRhYmFzZXMvcHM2OTA5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/servers/ps3582/databases/ps5276?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMzNTgyL2RhdGFiYXNlcy9wczUyNzY/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5_2\",\r\n \"tier\": \"GeneralPurpose\"\r\n },\r\n \"properties\": {\r\n \"maxSizeBytes\": 0,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"readScale\": \"Disabled\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag_key\": \"tag_new_value\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b8810706-496d-4e9d-b7cd-14613091c32b" + "99f519ad-9d32-4e9b-8eed-13990ef5a08f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2262,16 +2577,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/locations/westcentralus/databaseOperationResults/e0f47b3f-20e0-4db9-8246-f8bde40ab014?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/locations/westcentralus/databaseOperationResults/ecbe8e03-f269-4a14-997b-0992590b2d45?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/e0f47b3f-20e0-4db9-8246-f8bde40ab014?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/ecbe8e03-f269-4a14-997b-0992590b2d45?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "2beb1559-33db-45dd-aaf1-bc5818ded95b" + "ecbe8e03-f269-4a14-997b-0992590b2d45" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2280,10 +2595,10 @@ "1193" ], "x-ms-correlation-request-id": [ - "c6bff1fa-92a9-4f2e-885a-62cd627265dc" + "6c1a8ee6-aac9-4511-ba35-281fd5066a24" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T052058Z:c6bff1fa-92a9-4f2e-885a-62cd627265dc" + "WESTUS:20200925T015402Z:6c1a8ee6-aac9-4511-ba35-281fd5066a24" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2292,10 +2607,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:20:58 GMT" + "Fri, 25 Sep 2020 01:54:02 GMT" ], "Content-Length": [ - "76" + "75" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2304,17 +2619,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-09-13T05:20:58.303Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-09-25T01:54:02.94Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/46dc9b68-f624-4333-88c2-5dc08315fc7c?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNDZkYzliNjgtZjYyNC00MzMzLTg4YzItNWRjMDgzMTVmYzdjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/3524e6af-1ea5-4b1f-a578-a86710bbabe6?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8zNTI0ZTZhZi0xZWE1LTRiMWYtYTU3OC1hODY3MTBiYmFiZTY/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2331,7 +2646,7 @@ "15" ], "x-ms-request-id": [ - "17314f36-a7b4-42f0-921d-4521742d279f" + "fdf26f0b-1c27-427e-99b2-4be4a77b8cc2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2340,10 +2655,10 @@ "11987" ], "x-ms-correlation-request-id": [ - "8dd4c460-fb6e-47ac-81b2-24441552af3d" + "5e76fb71-ef6b-4a3a-a719-8b3251c782f2" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T051738Z:8dd4c460-fb6e-47ac-81b2-24441552af3d" + "WESTUS:20200925T015043Z:5e76fb71-ef6b-4a3a-a719-8b3251c782f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2352,10 +2667,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:17:37 GMT" + "Fri, 25 Sep 2020 01:50:42 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2364,17 +2679,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"46dc9b68-f624-4333-88c2-5dc08315fc7c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T05:17:23.18Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"3524e6af-1ea5-4b1f-a578-a86710bbabe6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:50:27.957Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/46dc9b68-f624-4333-88c2-5dc08315fc7c?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNDZkYzliNjgtZjYyNC00MzMzLTg4YzItNWRjMDgzMTVmYzdjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/3524e6af-1ea5-4b1f-a578-a86710bbabe6?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8zNTI0ZTZhZi0xZWE1LTRiMWYtYTU3OC1hODY3MTBiYmFiZTY/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2391,7 +2706,7 @@ "15" ], "x-ms-request-id": [ - "47de61ba-d43b-4ab5-8380-b091f2eaef56" + "992537e2-07c1-44a3-b0ed-fb8c9e9831f7" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2400,10 +2715,10 @@ "11986" ], "x-ms-correlation-request-id": [ - "6e040432-d771-472a-b870-603dcb9bd4ab" + "513d6fee-3070-450f-bc09-dd3e45704a17" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T051753Z:6e040432-d771-472a-b870-603dcb9bd4ab" + "WESTUS:20200925T015058Z:513d6fee-3070-450f-bc09-dd3e45704a17" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2412,10 +2727,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:17:52 GMT" + "Fri, 25 Sep 2020 01:50:57 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2424,17 +2739,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"46dc9b68-f624-4333-88c2-5dc08315fc7c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T05:17:23.18Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"3524e6af-1ea5-4b1f-a578-a86710bbabe6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:50:27.957Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/46dc9b68-f624-4333-88c2-5dc08315fc7c?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNDZkYzliNjgtZjYyNC00MzMzLTg4YzItNWRjMDgzMTVmYzdjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/3524e6af-1ea5-4b1f-a578-a86710bbabe6?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8zNTI0ZTZhZi0xZWE1LTRiMWYtYTU3OC1hODY3MTBiYmFiZTY/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2451,7 +2766,7 @@ "15" ], "x-ms-request-id": [ - "45ea6906-8c3a-475b-b522-daa7da48f9fb" + "00acac40-6ea5-473f-8ec5-fb2df5b698c4" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2460,70 +2775,10 @@ "11985" ], "x-ms-correlation-request-id": [ - "2e38cd56-553e-424d-bebf-121d5849f2db" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200913T051808Z:2e38cd56-553e-424d-bebf-121d5849f2db" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sun, 13 Sep 2020 05:18:07 GMT" - ], - "Content-Length": [ - "106" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"46dc9b68-f624-4333-88c2-5dc08315fc7c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-13T05:17:23.18Z\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/dbfe5589-3c9e-4136-bf09-bf6f37d576d0?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZGJmZTU1ODktM2M5ZS00MTM2LWJmMDktYmY2ZjM3ZDU3NmQwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "230126e6-a0ae-40de-bf31-56f1cae0f09a" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" - ], - "x-ms-correlation-request-id": [ - "6bfa77b7-d2d2-4631-b163-68004954b2fd" + "d92a102d-9c28-4adb-83e6-818b5b300d40" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T051824Z:6bfa77b7-d2d2-4631-b163-68004954b2fd" + "WESTUS:20200925T015113Z:d92a102d-9c28-4adb-83e6-818b5b300d40" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2532,7 +2787,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:18:23 GMT" + "Fri, 25 Sep 2020 01:51:12 GMT" ], "Content-Length": [ "107" @@ -2544,17 +2799,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"dbfe5589-3c9e-4136-bf09-bf6f37d576d0\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-13T05:18:09.117Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"3524e6af-1ea5-4b1f-a578-a86710bbabe6\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-25T01:50:27.957Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/df4b0e08-494e-496b-96f1-fae524672ebf?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZGY0YjBlMDgtNDk0ZS00OTZiLTk2ZjEtZmFlNTI0NjcyZWJmP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/8acea6e4-57cf-4392-b83e-4e82f3e9f460?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi84YWNlYTZlNC01N2NmLTQzOTItYjgzZS00ZTgyZjNlOWY0NjA/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2571,19 +2826,19 @@ "15" ], "x-ms-request-id": [ - "50c567b1-9df4-419c-bb69-9f2233db4921" + "2d7a56d5-ed63-4e33-8f67-7fc24433cfe9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11980" ], "x-ms-correlation-request-id": [ - "a07c51c0-c41b-4f93-84c5-b306914d19b8" + "62685f70-255b-4f31-b0e0-ce444ae8d57b" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T051840Z:a07c51c0-c41b-4f93-84c5-b306914d19b8" + "WESTUS:20200925T015129Z:62685f70-255b-4f31-b0e0-ce444ae8d57b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2592,10 +2847,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:18:39 GMT" + "Fri, 25 Sep 2020 01:51:28 GMT" ], "Content-Length": [ - "106" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2604,17 +2859,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"df4b0e08-494e-496b-96f1-fae524672ebf\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-13T05:18:25.04Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"8acea6e4-57cf-4392-b83e-4e82f3e9f460\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-25T01:51:13.923Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/1b183c6e-d9cd-4c5d-8f06-1a0cda3875d7?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMWIxODNjNmUtZDljZC00YzVkLThmMDYtMWEwY2RhMzg3NWQ3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/a4178e31-b706-44c6-b797-4e10dc954e22?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9hNDE3OGUzMS1iNzA2LTQ0YzYtYjc5Ny00ZTEwZGM5NTRlMjI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2631,19 +2886,19 @@ "15" ], "x-ms-request-id": [ - "e038d17b-ba0a-4e88-9fce-84aedcfc72ea" + "c75c814b-4b89-4d28-9c24-c5fac8b69e4a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11975" ], "x-ms-correlation-request-id": [ - "adf5e0f6-38b6-4238-8b4e-28af16698292" + "a6a78df3-e801-415d-8c5d-8a2f68d646cb" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T051856Z:adf5e0f6-38b6-4238-8b4e-28af16698292" + "WESTUS:20200925T015144Z:a6a78df3-e801-415d-8c5d-8a2f68d646cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2652,7 +2907,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:18:56 GMT" + "Fri, 25 Sep 2020 01:51:44 GMT" ], "Content-Length": [ "107" @@ -2664,17 +2919,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1b183c6e-d9cd-4c5d-8f06-1a0cda3875d7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T05:18:40.96Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"a4178e31-b706-44c6-b797-4e10dc954e22\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-25T01:51:29.767Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/1b183c6e-d9cd-4c5d-8f06-1a0cda3875d7?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMWIxODNjNmUtZDljZC00YzVkLThmMDYtMWEwY2RhMzg3NWQ3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/c9e5b43a-f0c1-4fb0-981c-eddd00f0d110?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9jOWU1YjQzYS1mMGMxLTRmYjAtOTgxYy1lZGRkMDBmMGQxMTA/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2691,19 +2946,19 @@ "15" ], "x-ms-request-id": [ - "1f9d639e-aa12-4f4c-abbb-d3923bdfcfee" + "40cc427c-32c8-4798-92d3-24731d0d62bc" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11970" ], "x-ms-correlation-request-id": [ - "810c0970-8003-491b-be29-09e63c94d827" + "53157248-dd9d-4794-8ffb-c7ce5b69f7da" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T051911Z:810c0970-8003-491b-be29-09e63c94d827" + "WESTUS:20200925T015200Z:53157248-dd9d-4794-8ffb-c7ce5b69f7da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2712,10 +2967,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:19:10 GMT" + "Fri, 25 Sep 2020 01:52:00 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2724,17 +2979,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1b183c6e-d9cd-4c5d-8f06-1a0cda3875d7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T05:18:40.96Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"c9e5b43a-f0c1-4fb0-981c-eddd00f0d110\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:51:45.517Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/1b183c6e-d9cd-4c5d-8f06-1a0cda3875d7?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMWIxODNjNmUtZDljZC00YzVkLThmMDYtMWEwY2RhMzg3NWQ3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/c9e5b43a-f0c1-4fb0-981c-eddd00f0d110?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9jOWU1YjQzYS1mMGMxLTRmYjAtOTgxYy1lZGRkMDBmMGQxMTA/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2751,19 +3006,19 @@ "15" ], "x-ms-request-id": [ - "40285a05-2472-44c6-8e7f-3ce292a5939f" + "03a9999e-801a-4560-a859-51230dfac7d2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11969" ], "x-ms-correlation-request-id": [ - "257ab0a3-0243-4c5e-b003-759de5090309" + "99ee292b-b270-4d5a-acf3-ad83a6b2c70e" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T051926Z:257ab0a3-0243-4c5e-b003-759de5090309" + "WESTUS:20200925T015215Z:99ee292b-b270-4d5a-acf3-ad83a6b2c70e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2772,10 +3027,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:19:25 GMT" + "Fri, 25 Sep 2020 01:52:15 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2784,17 +3039,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1b183c6e-d9cd-4c5d-8f06-1a0cda3875d7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T05:18:40.96Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"c9e5b43a-f0c1-4fb0-981c-eddd00f0d110\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:51:45.517Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/1b183c6e-d9cd-4c5d-8f06-1a0cda3875d7?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMWIxODNjNmUtZDljZC00YzVkLThmMDYtMWEwY2RhMzg3NWQ3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/c9e5b43a-f0c1-4fb0-981c-eddd00f0d110?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9jOWU1YjQzYS1mMGMxLTRmYjAtOTgxYy1lZGRkMDBmMGQxMTA/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2811,19 +3066,19 @@ "15" ], "x-ms-request-id": [ - "1dce28f2-b03c-47fe-8727-ceea037c41ca" + "ff5379a6-5cd1-4408-b959-232552344917" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11968" ], "x-ms-correlation-request-id": [ - "0748b891-1a4f-45d7-81a9-f5616e660bb6" + "48f1cfc6-d939-4369-86a2-a596c8009fa7" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T051941Z:0748b891-1a4f-45d7-81a9-f5616e660bb6" + "WESTUS:20200925T015230Z:48f1cfc6-d939-4369-86a2-a596c8009fa7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2832,10 +3087,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:19:40 GMT" + "Fri, 25 Sep 2020 01:52:30 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2844,17 +3099,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1b183c6e-d9cd-4c5d-8f06-1a0cda3875d7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T05:18:40.96Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"c9e5b43a-f0c1-4fb0-981c-eddd00f0d110\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:51:45.517Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/1b183c6e-d9cd-4c5d-8f06-1a0cda3875d7?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMWIxODNjNmUtZDljZC00YzVkLThmMDYtMWEwY2RhMzg3NWQ3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/c9e5b43a-f0c1-4fb0-981c-eddd00f0d110?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9jOWU1YjQzYS1mMGMxLTRmYjAtOTgxYy1lZGRkMDBmMGQxMTA/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2871,19 +3126,19 @@ "15" ], "x-ms-request-id": [ - "d7fd62f2-42c3-40a3-8857-71ab329ed118" + "c9acc29d-e64c-4785-bda2-446290ae3e42" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11967" ], "x-ms-correlation-request-id": [ - "9feff923-ccd0-49ed-b82f-91d1fca62b63" + "e28a7c59-a032-49e4-a861-677aff8744af" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T051956Z:9feff923-ccd0-49ed-b82f-91d1fca62b63" + "WESTUS:20200925T015245Z:e28a7c59-a032-49e4-a861-677aff8744af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2892,10 +3147,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:19:55 GMT" + "Fri, 25 Sep 2020 01:52:45 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2904,17 +3159,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1b183c6e-d9cd-4c5d-8f06-1a0cda3875d7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T05:18:40.96Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"c9e5b43a-f0c1-4fb0-981c-eddd00f0d110\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:51:45.517Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/1b183c6e-d9cd-4c5d-8f06-1a0cda3875d7?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMWIxODNjNmUtZDljZC00YzVkLThmMDYtMWEwY2RhMzg3NWQ3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/c9e5b43a-f0c1-4fb0-981c-eddd00f0d110?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9jOWU1YjQzYS1mMGMxLTRmYjAtOTgxYy1lZGRkMDBmMGQxMTA/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2931,19 +3186,19 @@ "15" ], "x-ms-request-id": [ - "7df098aa-d7ba-43b0-b822-33fe98cda68c" + "7e50749c-8b02-487e-aabd-515802c9e5c3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11966" ], "x-ms-correlation-request-id": [ - "93503ebf-3ab9-41f7-8530-ddcbf2318c7a" + "de0f928d-e420-4d08-b487-6e8a06c0794d" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T052011Z:93503ebf-3ab9-41f7-8530-ddcbf2318c7a" + "WESTUS:20200925T015301Z:de0f928d-e420-4d08-b487-6e8a06c0794d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2952,10 +3207,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:20:10 GMT" + "Fri, 25 Sep 2020 01:53:00 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2964,17 +3219,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1b183c6e-d9cd-4c5d-8f06-1a0cda3875d7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T05:18:40.96Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"c9e5b43a-f0c1-4fb0-981c-eddd00f0d110\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:51:45.517Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/1b183c6e-d9cd-4c5d-8f06-1a0cda3875d7?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMWIxODNjNmUtZDljZC00YzVkLThmMDYtMWEwY2RhMzg3NWQ3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/c9e5b43a-f0c1-4fb0-981c-eddd00f0d110?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9jOWU1YjQzYS1mMGMxLTRmYjAtOTgxYy1lZGRkMDBmMGQxMTA/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2991,19 +3246,19 @@ "15" ], "x-ms-request-id": [ - "c3a24c3a-c20f-40ac-b22d-d6eff2d4aa4b" + "f324dc7f-c9ef-405b-a3d4-c13c08d344a0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11965" ], "x-ms-correlation-request-id": [ - "cac74762-577e-4cf4-9b0e-7a6b0846e237" + "3471dd18-ef9a-4a18-8022-c1082899ccf7" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T052026Z:cac74762-577e-4cf4-9b0e-7a6b0846e237" + "WESTUS:20200925T015316Z:3471dd18-ef9a-4a18-8022-c1082899ccf7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3012,10 +3267,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:20:26 GMT" + "Fri, 25 Sep 2020 01:53:15 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3024,17 +3279,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1b183c6e-d9cd-4c5d-8f06-1a0cda3875d7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T05:18:40.96Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"c9e5b43a-f0c1-4fb0-981c-eddd00f0d110\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:51:45.517Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/1b183c6e-d9cd-4c5d-8f06-1a0cda3875d7?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMWIxODNjNmUtZDljZC00YzVkLThmMDYtMWEwY2RhMzg3NWQ3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/c9e5b43a-f0c1-4fb0-981c-eddd00f0d110?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9jOWU1YjQzYS1mMGMxLTRmYjAtOTgxYy1lZGRkMDBmMGQxMTA/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -3051,19 +3306,19 @@ "15" ], "x-ms-request-id": [ - "760f0c4b-2d49-4d47-a4bc-1d2cddbfb32b" + "d757c400-f5bd-48aa-982d-ac0546137fde" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11964" ], "x-ms-correlation-request-id": [ - "983fb14c-7782-4565-8f6d-063318415bd3" + "9e9b303d-fd4b-4a3f-af4f-123eee9edba3" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T052041Z:983fb14c-7782-4565-8f6d-063318415bd3" + "WESTUS:20200925T015331Z:9e9b303d-fd4b-4a3f-af4f-123eee9edba3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3072,10 +3327,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:20:41 GMT" + "Fri, 25 Sep 2020 01:53:31 GMT" ], "Content-Length": [ - "106" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3084,17 +3339,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1b183c6e-d9cd-4c5d-8f06-1a0cda3875d7\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-13T05:18:40.96Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"c9e5b43a-f0c1-4fb0-981c-eddd00f0d110\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:51:45.517Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/4398d0df-4df2-4b55-a8c7-e375467edfd3?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNDM5OGQwZGYtNGRmMi00YjU1LWE4YzctZTM3NTQ2N2VkZmQzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/c9e5b43a-f0c1-4fb0-981c-eddd00f0d110?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9jOWU1YjQzYS1mMGMxLTRmYjAtOTgxYy1lZGRkMDBmMGQxMTA/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -3111,19 +3366,19 @@ "15" ], "x-ms-request-id": [ - "b0ec3633-d66b-4ea0-a2cb-d727a2b25c19" + "d796cbd8-6bf6-4fad-8ef4-928d8f3968a7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" + "11963" ], "x-ms-correlation-request-id": [ - "68e1baf8-cff4-420c-88b9-38fbbfa533fc" + "8b0dbd14-0aa4-4bfd-9ae2-91818c01178b" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T052057Z:68e1baf8-cff4-420c-88b9-38fbbfa533fc" + "WESTUS:20200925T015346Z:8b0dbd14-0aa4-4bfd-9ae2-91818c01178b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3132,7 +3387,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:20:57 GMT" + "Fri, 25 Sep 2020 01:53:46 GMT" ], "Content-Length": [ "107" @@ -3144,17 +3399,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"4398d0df-4df2-4b55-a8c7-e375467edfd3\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-13T05:20:42.587Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"c9e5b43a-f0c1-4fb0-981c-eddd00f0d110\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-25T01:51:45.517Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/e0f47b3f-20e0-4db9-8246-f8bde40ab014?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZTBmNDdiM2YtMjBlMC00ZGI5LTgyNDYtZjhiZGU0MGFiMDE0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/f4a61d43-aa0d-4c42-8f63-f0241352e8e3?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9mNGE2MWQ0My1hYTBkLTRjNDItOGY2My1mMDI0MTM1MmU4ZTM/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -3171,7 +3426,7 @@ "15" ], "x-ms-request-id": [ - "52f5adfb-9f1b-436d-81e3-ab0f9c6b37f9" + "d276348a-30b8-4a4d-ba63-a4cdf86eb376" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3180,10 +3435,10 @@ "11958" ], "x-ms-correlation-request-id": [ - "3239e265-7bd7-4c3e-858f-1e1c4f0bc1bc" + "2dbfd9eb-e688-45ee-8252-f3719f908e6d" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T052113Z:3239e265-7bd7-4c3e-858f-1e1c4f0bc1bc" + "WESTUS:20200925T015402Z:2dbfd9eb-e688-45ee-8252-f3719f908e6d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3192,10 +3447,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:21:13 GMT" + "Fri, 25 Sep 2020 01:54:02 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3204,17 +3459,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"e0f47b3f-20e0-4db9-8246-f8bde40ab014\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T05:20:58.303Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"f4a61d43-aa0d-4c42-8f63-f0241352e8e3\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-25T01:53:47.097Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/e0f47b3f-20e0-4db9-8246-f8bde40ab014?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZTBmNDdiM2YtMjBlMC00ZGI5LTgyNDYtZjhiZGU0MGFiMDE0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/ecbe8e03-f269-4a14-997b-0992590b2d45?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9lY2JlOGUwMy1mMjY5LTRhMTQtOTk3Yi0wOTkyNTkwYjJkNDU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -3231,19 +3486,19 @@ "15" ], "x-ms-request-id": [ - "d0e44c62-77fe-4c4c-b957-c201113c09cb" + "77690bb3-0425-42b8-a276-336348b031f8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" + "11953" ], "x-ms-correlation-request-id": [ - "16324025-a6d4-4c2d-9ed3-9cdcd26acad7" + "21cf9314-95d5-4bd3-9490-02ca8799432e" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T052128Z:16324025-a6d4-4c2d-9ed3-9cdcd26acad7" + "WESTUS:20200925T015418Z:21cf9314-95d5-4bd3-9490-02ca8799432e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3252,10 +3507,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:21:28 GMT" + "Fri, 25 Sep 2020 01:54:17 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3264,17 +3519,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"e0f47b3f-20e0-4db9-8246-f8bde40ab014\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T05:20:58.303Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"ecbe8e03-f269-4a14-997b-0992590b2d45\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:54:02.94Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/e0f47b3f-20e0-4db9-8246-f8bde40ab014?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZTBmNDdiM2YtMjBlMC00ZGI5LTgyNDYtZjhiZGU0MGFiMDE0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/ecbe8e03-f269-4a14-997b-0992590b2d45?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9lY2JlOGUwMy1mMjY5LTRhMTQtOTk3Yi0wOTkyNTkwYjJkNDU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -3291,19 +3546,19 @@ "15" ], "x-ms-request-id": [ - "ee00cf97-f6ce-4983-8f40-887c806afda7" + "962260c9-cc7b-4638-a4ef-b5b2462c300a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" + "11952" ], "x-ms-correlation-request-id": [ - "20db7707-d5ba-49fb-8e5f-790b1ea4702a" + "2f5f96f6-6cb7-4f5c-b35b-86258d2f8c3d" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T052143Z:20db7707-d5ba-49fb-8e5f-790b1ea4702a" + "WESTUS:20200925T015433Z:2f5f96f6-6cb7-4f5c-b35b-86258d2f8c3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3312,10 +3567,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:21:43 GMT" + "Fri, 25 Sep 2020 01:54:32 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3324,17 +3579,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"e0f47b3f-20e0-4db9-8246-f8bde40ab014\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T05:20:58.303Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"ecbe8e03-f269-4a14-997b-0992590b2d45\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:54:02.94Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/e0f47b3f-20e0-4db9-8246-f8bde40ab014?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZTBmNDdiM2YtMjBlMC00ZGI5LTgyNDYtZjhiZGU0MGFiMDE0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/ecbe8e03-f269-4a14-997b-0992590b2d45?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9lY2JlOGUwMy1mMjY5LTRhMTQtOTk3Yi0wOTkyNTkwYjJkNDU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -3351,19 +3606,19 @@ "15" ], "x-ms-request-id": [ - "095944f2-8d90-4a36-8276-e93c6f98719b" + "8a8b08d0-5203-4f58-aaf7-b5c94c221aed" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" + "11951" ], "x-ms-correlation-request-id": [ - "5f1d623e-f723-4bb3-a284-a8464b9f7b0e" + "10a2a673-b6d6-4e31-a9fd-1181e8bb0d9f" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T052158Z:5f1d623e-f723-4bb3-a284-a8464b9f7b0e" + "WESTUS:20200925T015448Z:10a2a673-b6d6-4e31-a9fd-1181e8bb0d9f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3372,10 +3627,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:21:58 GMT" + "Fri, 25 Sep 2020 01:54:47 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3384,17 +3639,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"e0f47b3f-20e0-4db9-8246-f8bde40ab014\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T05:20:58.303Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"ecbe8e03-f269-4a14-997b-0992590b2d45\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:54:02.94Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/e0f47b3f-20e0-4db9-8246-f8bde40ab014?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZTBmNDdiM2YtMjBlMC00ZGI5LTgyNDYtZjhiZGU0MGFiMDE0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/ecbe8e03-f269-4a14-997b-0992590b2d45?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9lY2JlOGUwMy1mMjY5LTRhMTQtOTk3Yi0wOTkyNTkwYjJkNDU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -3411,19 +3666,19 @@ "15" ], "x-ms-request-id": [ - "8f12c96c-d8e1-41a3-9fec-2e71ef2ac273" + "379122a9-750e-4739-8b49-10bcfa400a72" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" + "11950" ], "x-ms-correlation-request-id": [ - "dfb60821-febb-4ea1-b7f4-1fafe730c03e" + "d9739cd8-ee8c-404f-a1e3-a8a5a983e67a" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T052213Z:dfb60821-febb-4ea1-b7f4-1fafe730c03e" + "WESTUS:20200925T015503Z:d9739cd8-ee8c-404f-a1e3-a8a5a983e67a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3432,10 +3687,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:22:13 GMT" + "Fri, 25 Sep 2020 01:55:02 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3444,17 +3699,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"e0f47b3f-20e0-4db9-8246-f8bde40ab014\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T05:20:58.303Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"ecbe8e03-f269-4a14-997b-0992590b2d45\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:54:02.94Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5133/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/e0f47b3f-20e0-4db9-8246-f8bde40ab014?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZTBmNDdiM2YtMjBlMC00ZGI5LTgyNDYtZjhiZGU0MGFiMDE0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps692/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/ecbe8e03-f269-4a14-997b-0992590b2d45?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9lY2JlOGUwMy1mMjY5LTRhMTQtOTk3Yi0wOTkyNTkwYjJkNDU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -3471,19 +3726,19 @@ "15" ], "x-ms-request-id": [ - "ec47bfbb-7770-4b38-8a2c-c90f11377b54" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" + "8477e17e-75b1-4898-b4b7-339970aa28e4" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11949" + ], "x-ms-correlation-request-id": [ - "d4f41369-55fe-4ee3-b2c5-0154b20a6ebd" + "4e157c54-6434-4c83-8f1e-f43ce6348a54" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T052229Z:d4f41369-55fe-4ee3-b2c5-0154b20a6ebd" + "WESTUS:20200925T015518Z:4e157c54-6434-4c83-8f1e-f43ce6348a54" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3492,10 +3747,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:22:28 GMT" + "Fri, 25 Sep 2020 01:55:17 GMT" ], "Content-Length": [ - "107" + "106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3504,23 +3759,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"e0f47b3f-20e0-4db9-8246-f8bde40ab014\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-13T05:20:58.303Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"ecbe8e03-f269-4a14-997b-0992590b2d45\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-25T01:54:02.94Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps5133?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzNTEzMz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps692?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzNjkyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "20c76932-97d5-49b4-8bb8-24d57ec4db7a" + "fc679450-3a55-49f4-8c0d-e86c31daafe9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3534,22 +3789,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMzMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5Mi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-request-id": [ - "e9bb3a00-6c4d-4fae-a516-705f2f55aa71" + "86ed9cef-d356-474b-81ab-807d66979724" ], "x-ms-correlation-request-id": [ - "e9bb3a00-6c4d-4fae-a516-705f2f55aa71" + "86ed9cef-d356-474b-81ab-807d66979724" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T052230Z:e9bb3a00-6c4d-4fae-a516-705f2f55aa71" + "WESTUS:20200925T015519Z:86ed9cef-d356-474b-81ab-807d66979724" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3558,7 +3813,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:22:30 GMT" + "Fri, 25 Sep 2020 01:55:18 GMT" ], "Expires": [ "-1" @@ -3571,13 +3826,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMzMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE16TXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5Mi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1pMVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3591,22 +3846,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMzMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5Mi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11999" ], "x-ms-request-id": [ - "67bfad0f-f410-4ed6-8d8b-6b3ef232fec9" + "a18d2c59-0b01-4db0-959a-28e938d95dbe" ], "x-ms-correlation-request-id": [ - "67bfad0f-f410-4ed6-8d8b-6b3ef232fec9" + "a18d2c59-0b01-4db0-959a-28e938d95dbe" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T052245Z:67bfad0f-f410-4ed6-8d8b-6b3ef232fec9" + "WESTUS:20200925T015534Z:a18d2c59-0b01-4db0-959a-28e938d95dbe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3615,7 +3870,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:22:45 GMT" + "Fri, 25 Sep 2020 01:55:34 GMT" ], "Expires": [ "-1" @@ -3628,13 +3883,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMzMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE16TXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5Mi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1pMVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3648,22 +3903,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMzMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5Mi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11998" ], "x-ms-request-id": [ - "0fb885b1-aa81-46df-838a-7dc471af9421" + "a93b208e-e12f-49e5-b319-343f8ece8677" ], "x-ms-correlation-request-id": [ - "0fb885b1-aa81-46df-838a-7dc471af9421" + "a93b208e-e12f-49e5-b319-343f8ece8677" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T052300Z:0fb885b1-aa81-46df-838a-7dc471af9421" + "WESTUS:20200925T015549Z:a93b208e-e12f-49e5-b319-343f8ece8677" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3672,7 +3927,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:23:00 GMT" + "Fri, 25 Sep 2020 01:55:49 GMT" ], "Expires": [ "-1" @@ -3685,13 +3940,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMzMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE16TXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5Mi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1pMVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3705,22 +3960,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMzMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5Mi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11997" ], "x-ms-request-id": [ - "1d25d0e6-574a-471e-af6c-1085828a6d70" + "a6d535e7-229e-4691-91b9-d5d99f988e96" ], "x-ms-correlation-request-id": [ - "1d25d0e6-574a-471e-af6c-1085828a6d70" + "a6d535e7-229e-4691-91b9-d5d99f988e96" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T052315Z:1d25d0e6-574a-471e-af6c-1085828a6d70" + "WESTUS:20200925T015604Z:a6d535e7-229e-4691-91b9-d5d99f988e96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3729,7 +3984,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:23:15 GMT" + "Fri, 25 Sep 2020 01:56:04 GMT" ], "Expires": [ "-1" @@ -3742,13 +3997,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMzMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE16TXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5Mi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1pMVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3762,22 +4017,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMzMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5Mi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11996" ], "x-ms-request-id": [ - "a2416ee8-7c17-4a9f-8370-667717387bcc" + "29705df5-040b-4ab9-b099-5855f0e73c97" ], "x-ms-correlation-request-id": [ - "a2416ee8-7c17-4a9f-8370-667717387bcc" + "29705df5-040b-4ab9-b099-5855f0e73c97" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T052330Z:a2416ee8-7c17-4a9f-8370-667717387bcc" + "WESTUS:20200925T015619Z:29705df5-040b-4ab9-b099-5855f0e73c97" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3786,7 +4041,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:23:30 GMT" + "Fri, 25 Sep 2020 01:56:19 GMT" ], "Expires": [ "-1" @@ -3799,13 +4054,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMzMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE16TXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5Mi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1pMVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3819,22 +4074,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMzMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5Mi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11995" ], "x-ms-request-id": [ - "3cb74b24-1c71-4a5a-be1f-f00b1d3c9193" + "4b7617b9-950e-43da-8b35-3d8ac084fcbe" ], "x-ms-correlation-request-id": [ - "3cb74b24-1c71-4a5a-be1f-f00b1d3c9193" + "4b7617b9-950e-43da-8b35-3d8ac084fcbe" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T052345Z:3cb74b24-1c71-4a5a-be1f-f00b1d3c9193" + "WESTUS:20200925T015635Z:4b7617b9-950e-43da-8b35-3d8ac084fcbe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3843,7 +4098,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:23:45 GMT" + "Fri, 25 Sep 2020 01:56:34 GMT" ], "Expires": [ "-1" @@ -3856,13 +4111,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMzMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE16TXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5Mi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1pMVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3876,22 +4131,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMzMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5Mi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11994" ], "x-ms-request-id": [ - "00b6b4bb-46c9-4330-8447-2087b69ff649" + "ad15ec3a-fbdf-4870-b855-ab0d16e0d2db" ], "x-ms-correlation-request-id": [ - "00b6b4bb-46c9-4330-8447-2087b69ff649" + "ad15ec3a-fbdf-4870-b855-ab0d16e0d2db" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T052400Z:00b6b4bb-46c9-4330-8447-2087b69ff649" + "WESTUS:20200925T015650Z:ad15ec3a-fbdf-4870-b855-ab0d16e0d2db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3900,7 +4155,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:24:00 GMT" + "Fri, 25 Sep 2020 01:56:49 GMT" ], "Expires": [ "-1" @@ -3913,13 +4168,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMzMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE16TXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5Mi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1pMVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3933,16 +4188,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11993" ], "x-ms-request-id": [ - "5c6401bd-993d-4bb6-97a5-fc68ec8b411c" + "e1c8e9b6-e495-43e9-9900-af18eeff3f47" ], "x-ms-correlation-request-id": [ - "5c6401bd-993d-4bb6-97a5-fc68ec8b411c" + "e1c8e9b6-e495-43e9-9900-af18eeff3f47" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T052415Z:5c6401bd-993d-4bb6-97a5-fc68ec8b411c" + "WESTUS:20200925T015705Z:e1c8e9b6-e495-43e9-9900-af18eeff3f47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3951,7 +4206,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:24:15 GMT" + "Fri, 25 Sep 2020 01:57:04 GMT" ], "Expires": [ "-1" @@ -3964,13 +4219,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMzMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE16TXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5Mi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1pMVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3984,16 +4239,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11992" ], "x-ms-request-id": [ - "837586ec-a37c-471f-91b7-39b228d17bc7" + "bcde6f33-1192-414f-9ac5-5664e6d8e7c6" ], "x-ms-correlation-request-id": [ - "837586ec-a37c-471f-91b7-39b228d17bc7" + "bcde6f33-1192-414f-9ac5-5664e6d8e7c6" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T052415Z:837586ec-a37c-471f-91b7-39b228d17bc7" + "WESTUS:20200925T015705Z:bcde6f33-1192-414f-9ac5-5664e6d8e7c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4002,7 +4257,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 05:24:15 GMT" + "Fri, 25 Sep 2020 01:57:04 GMT" ], "Expires": [ "-1" @@ -4017,9 +4272,9 @@ ], "Names": { "Test-UpdateVcoreDatabase": [ - "ps5133", - "ps7893", - "ps6909" + "ps692", + "ps3582", + "ps5276" ] }, "Variables": { diff --git a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestVcoreDatabaseUpdateWithLicenseType.json b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestVcoreDatabaseUpdateWithLicenseType.json index 5a747fefdc2a..8097d480e313 100644 --- a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestVcoreDatabaseUpdateWithLicenseType.json +++ b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestVcoreDatabaseUpdateWithLicenseType.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps5130?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzNTEzMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps3716?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzMzcxNj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7f66a14e-844b-4ee1-b203-f17560f9f364" + "81a63b75-c468-461d-a688-c266170beab3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1193" ], "x-ms-request-id": [ - "4f4d7068-efd2-4bef-8d87-a20ad48ebe56" + "198f35ad-459e-48de-98a6-96176e167de8" ], "x-ms-correlation-request-id": [ - "4f4d7068-efd2-4bef-8d87-a20ad48ebe56" + "198f35ad-459e-48de-98a6-96176e167de8" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T044557Z:4f4d7068-efd2-4bef-8d87-a20ad48ebe56" + "WESTUS:20200925T013705Z:198f35ad-459e-48de-98a6-96176e167de8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:45:57 GMT" + "Fri, 25 Sep 2020 01:37:04 GMT" ], "Content-Length": [ "172" @@ -63,23 +63,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130\",\r\n \"name\": \"ps5130\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716\",\r\n \"name\": \"ps3716\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/servers/ps9378?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTM3OD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/servers/ps2863?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjg2Mz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf92970e-be3e-4568-a960-7450da5cd827" + "79d09237-ba8b-46ab-9da3-3c0197674497" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "297bc0a8-1607-442d-bf40-66b307eed2df" + "ae769466-55c2-4248-a065-776a8bf2d159" ], "x-ms-correlation-request-id": [ - "297bc0a8-1607-442d-bf40-66b307eed2df" + "ae769466-55c2-4248-a065-776a8bf2d159" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T044558Z:297bc0a8-1607-442d-bf40-66b307eed2df" + "WESTUS:20200925T013705Z:ae769466-55c2-4248-a065-776a8bf2d159" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:45:57 GMT" + "Fri, 25 Sep 2020 01:37:04 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,17 +123,17 @@ "206" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps9378' under resource group 'ps5130' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps2863' under resource group 'ps3716' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/servers/ps9378?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTM3OD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/servers/ps2863?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjg2Mz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -147,7 +147,7 @@ "no-cache" ], "x-ms-request-id": [ - "f4ca0526-7381-416f-aa57-fd2d4378e6c1" + "d009a3dc-e058-4b8b-a27d-502bf982daf5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -156,10 +156,10 @@ "11991" ], "x-ms-correlation-request-id": [ - "04ab6217-441e-4f5b-aa92-e31628e04555" + "55482ac0-89f2-49eb-9a45-54f1d3621c9d" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T044644Z:04ab6217-441e-4f5b-aa92-e31628e04555" + "WESTUS:20200925T013752Z:55482ac0-89f2-49eb-9a45-54f1d3621c9d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -168,7 +168,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:46:44 GMT" + "Fri, 25 Sep 2020 01:37:51 GMT" ], "Content-Length": [ "415" @@ -180,23 +180,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps9378.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/servers/ps9378\",\r\n \"name\": \"ps9378\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps2863.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/servers/ps2863\",\r\n \"name\": \"ps2863\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/servers/ps9378?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTM3OD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/servers/ps2863?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjg2Mz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3adccd59-1825-42ad-8168-4432766caab7" + "786e8ee9-941b-4110-acbd-5e55da60d97f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -210,7 +210,7 @@ "no-cache" ], "x-ms-request-id": [ - "0fb1670d-2d26-4b3b-a1cf-8b6937411a31" + "72e0ec0a-cbf8-48de-ac19-1021ec8628c5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -219,10 +219,10 @@ "11990" ], "x-ms-correlation-request-id": [ - "76286c4f-c881-4d80-b444-4b10de1e668f" + "6e87f781-2790-4939-a22a-f33e5aa2cb0b" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T044644Z:76286c4f-c881-4d80-b444-4b10de1e668f" + "WESTUS:20200925T013752Z:6e87f781-2790-4939-a22a-f33e5aa2cb0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -231,7 +231,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:46:44 GMT" + "Fri, 25 Sep 2020 01:37:51 GMT" ], "Content-Length": [ "415" @@ -243,23 +243,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps9378.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/servers/ps9378\",\r\n \"name\": \"ps9378\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps2863.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/servers/ps2863\",\r\n \"name\": \"ps2863\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/servers/ps9378?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTM3OD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/servers/ps2863?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjg2Mz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "be3a8638-86e1-442f-8c20-0c65914d9a20" + "fdd5ea12-717c-48a0-a508-f5bd2af31720" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -273,7 +273,7 @@ "no-cache" ], "x-ms-request-id": [ - "627c3bdd-1c53-46ff-8980-1a7c72e0283b" + "7ad1c29d-3c1c-4d63-a391-124014074695" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -282,10 +282,10 @@ "11988" ], "x-ms-correlation-request-id": [ - "2a53e5f8-83a7-4d1b-9d8c-8f52dd92285c" + "4727742d-f083-4ba0-b657-dd628e6b0885" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T044645Z:2a53e5f8-83a7-4d1b-9d8c-8f52dd92285c" + "WESTUS:20200925T013752Z:4727742d-f083-4ba0-b657-dd628e6b0885" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -294,7 +294,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:46:44 GMT" + "Fri, 25 Sep 2020 01:37:52 GMT" ], "Content-Length": [ "415" @@ -306,23 +306,275 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps9378.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/servers/ps9378\",\r\n \"name\": \"ps9378\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps2863.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/servers/ps2863\",\r\n \"name\": \"ps2863\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/servers/ps9378?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTM3OD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/servers/ps2863?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjg2Mz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8051cde4-48d1-4100-8cb2-125d30e33dc6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "be9e83fb-19e3-43ea-9df0-693eda1a7f3a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-correlation-request-id": [ + "c59011ab-61fc-452c-a71f-ccf3eebd7902" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200925T013839Z:c59011ab-61fc-452c-a71f-ccf3eebd7902" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 25 Sep 2020 01:38:38 GMT" + ], + "Content-Length": [ + "415" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps2863.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/servers/ps2863\",\r\n \"name\": \"ps2863\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/servers/ps2863?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjg2Mz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4181ce63-d261-4e41-9631-16d80d4d7612" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9e62e8e0-3b10-4fac-b999-92fb67339659" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-correlation-request-id": [ + "c452274f-bca3-4bd4-828a-82940506bc51" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200925T013854Z:c452274f-bca3-4bd4-828a-82940506bc51" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 25 Sep 2020 01:38:54 GMT" + ], + "Content-Length": [ + "415" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps2863.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/servers/ps2863\",\r\n \"name\": \"ps2863\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/servers/ps2863?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjg2Mz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e19a8c28-98aa-4425-b4a2-1ae7c1ae1412" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "857df13a-3a76-4973-9698-5b75a0692436" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-correlation-request-id": [ + "73297817-def9-495a-aa20-4b0a87ff35e8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200925T013910Z:73297817-def9-495a-aa20-4b0a87ff35e8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 25 Sep 2020 01:39:10 GMT" + ], + "Content-Length": [ + "415" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps2863.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/servers/ps2863\",\r\n \"name\": \"ps2863\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/servers/ps2863?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjg2Mz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c7e26a99-3f8f-4082-8ffb-6336e840054c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "17ca68b8-b7b0-47a8-874e-d8615a625a62" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "x-ms-correlation-request-id": [ + "e2e1566d-9924-45f9-b8c0-8903651aa3e6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200925T013926Z:e2e1566d-9924-45f9-b8c0-8903651aa3e6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 25 Sep 2020 01:39:25 GMT" + ], + "Content-Length": [ + "415" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps2863.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/servers/ps2863\",\r\n \"name\": \"ps2863\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/servers/ps2863?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjg2Mz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9e5a4174-e4ec-4f8b-9466-8407029869a4" + "202a9ae0-0d29-4dfe-a61c-10b25aba1afe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -342,16 +594,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/locations/westcentralus/serverOperationResults/87646160-efd9-4537-b7c9-9f7b459b173f?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/locations/westcentralus/serverOperationResults/eb3d16be-ebef-4ba1-918c-4637de4fa1bc?api-version=2019-06-01-preview" ], "Retry-After": [ "1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/87646160-efd9-4537-b7c9-9f7b459b173f?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/eb3d16be-ebef-4ba1-918c-4637de4fa1bc?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "87646160-efd9-4537-b7c9-9f7b459b173f" + "eb3d16be-ebef-4ba1-918c-4637de4fa1bc" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -360,10 +612,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "a2b6aeb4-9d73-4d99-8c0e-d951bfb6b555" + "f2b20a38-8f79-4967-915c-5f11a44560d2" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T044559Z:a2b6aeb4-9d73-4d99-8c0e-d951bfb6b555" + "WESTUS:20200925T013706Z:f2b20a38-8f79-4967-915c-5f11a44560d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -372,7 +624,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:45:58 GMT" + "Fri, 25 Sep 2020 01:37:06 GMT" ], "Content-Length": [ "74" @@ -384,17 +636,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-13T04:45:59.053Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-25T01:37:06.653Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/87646160-efd9-4537-b7c9-9f7b459b173f?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzg3NjQ2MTYwLWVmZDktNDUzNy1iN2M5LTlmN2I0NTliMTczZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/eb3d16be-ebef-4ba1-918c-4637de4fa1bc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2ViM2QxNmJlLWViZWYtNGJhMS05MThjLTQ2MzdkZTRmYTFiYz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -411,7 +663,7 @@ "1" ], "x-ms-request-id": [ - "55e1d440-0791-4a7b-9586-83c5b52af585" + "5e122739-e49b-4eca-8d09-cfdf03861aa0" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -420,10 +672,10 @@ "11998" ], "x-ms-correlation-request-id": [ - "43fb5806-02f1-42b5-b601-9cf4632f07e2" + "2f91554d-1cae-461f-8343-4fc44d34d5ab" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T044600Z:43fb5806-02f1-42b5-b601-9cf4632f07e2" + "WESTUS:20200925T013707Z:2f91554d-1cae-461f-8343-4fc44d34d5ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,7 +684,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:45:59 GMT" + "Fri, 25 Sep 2020 01:37:07 GMT" ], "Content-Length": [ "108" @@ -444,17 +696,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"87646160-efd9-4537-b7c9-9f7b459b173f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T04:45:59.053Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"eb3d16be-ebef-4ba1-918c-4637de4fa1bc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:37:06.653Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/87646160-efd9-4537-b7c9-9f7b459b173f?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzg3NjQ2MTYwLWVmZDktNDUzNy1iN2M5LTlmN2I0NTliMTczZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/eb3d16be-ebef-4ba1-918c-4637de4fa1bc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2ViM2QxNmJlLWViZWYtNGJhMS05MThjLTQ2MzdkZTRmYTFiYz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -471,7 +723,7 @@ "1" ], "x-ms-request-id": [ - "fe052b82-58b1-4d81-b031-bd33cfc3a490" + "075d2096-073e-48c9-a80d-c8d2b1e374a5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -480,10 +732,10 @@ "11997" ], "x-ms-correlation-request-id": [ - "11769d9e-f142-4622-b0e0-cd070ee4b392" + "1b52a0ba-871e-47ce-a2aa-48b11303d095" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T044601Z:11769d9e-f142-4622-b0e0-cd070ee4b392" + "WESTUS:20200925T013708Z:1b52a0ba-871e-47ce-a2aa-48b11303d095" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -492,7 +744,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:46:01 GMT" + "Fri, 25 Sep 2020 01:37:08 GMT" ], "Content-Length": [ "108" @@ -504,17 +756,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"87646160-efd9-4537-b7c9-9f7b459b173f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T04:45:59.053Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"eb3d16be-ebef-4ba1-918c-4637de4fa1bc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:37:06.653Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/87646160-efd9-4537-b7c9-9f7b459b173f?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzg3NjQ2MTYwLWVmZDktNDUzNy1iN2M5LTlmN2I0NTliMTczZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/eb3d16be-ebef-4ba1-918c-4637de4fa1bc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2ViM2QxNmJlLWViZWYtNGJhMS05MThjLTQ2MzdkZTRmYTFiYz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -531,7 +783,7 @@ "1" ], "x-ms-request-id": [ - "0572afe2-0858-454e-92c5-d7306c897ab6" + "01a2fe6f-32f4-4de4-a8ac-98c755905870" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -540,10 +792,10 @@ "11996" ], "x-ms-correlation-request-id": [ - "16c0ad78-0116-4331-a4c1-ca8fbfe70e91" + "bcf55aae-f401-48bd-a1d0-dd6a1d7a39c6" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T044602Z:16c0ad78-0116-4331-a4c1-ca8fbfe70e91" + "WESTUS:20200925T013710Z:bcf55aae-f401-48bd-a1d0-dd6a1d7a39c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -552,7 +804,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:46:02 GMT" + "Fri, 25 Sep 2020 01:37:09 GMT" ], "Content-Length": [ "108" @@ -564,17 +816,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"87646160-efd9-4537-b7c9-9f7b459b173f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T04:45:59.053Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"eb3d16be-ebef-4ba1-918c-4637de4fa1bc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:37:06.653Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/87646160-efd9-4537-b7c9-9f7b459b173f?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzg3NjQ2MTYwLWVmZDktNDUzNy1iN2M5LTlmN2I0NTliMTczZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/eb3d16be-ebef-4ba1-918c-4637de4fa1bc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2ViM2QxNmJlLWViZWYtNGJhMS05MThjLTQ2MzdkZTRmYTFiYz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -591,7 +843,7 @@ "1" ], "x-ms-request-id": [ - "331f343d-24a9-4d9e-a2ae-c07edc0ccec7" + "d011791c-b8ef-45ff-a4fe-2c5b0d6655f3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -600,10 +852,10 @@ "11995" ], "x-ms-correlation-request-id": [ - "edfb3018-5c84-4bba-af4a-70f34ab7d237" + "e893e147-4e7c-4743-bc92-6acfa496088f" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T044603Z:edfb3018-5c84-4bba-af4a-70f34ab7d237" + "WESTUS:20200925T013711Z:e893e147-4e7c-4743-bc92-6acfa496088f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -612,7 +864,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:46:03 GMT" + "Fri, 25 Sep 2020 01:37:10 GMT" ], "Content-Length": [ "108" @@ -624,17 +876,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"87646160-efd9-4537-b7c9-9f7b459b173f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T04:45:59.053Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"eb3d16be-ebef-4ba1-918c-4637de4fa1bc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:37:06.653Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/87646160-efd9-4537-b7c9-9f7b459b173f?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzg3NjQ2MTYwLWVmZDktNDUzNy1iN2M5LTlmN2I0NTliMTczZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/eb3d16be-ebef-4ba1-918c-4637de4fa1bc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2ViM2QxNmJlLWViZWYtNGJhMS05MThjLTQ2MzdkZTRmYTFiYz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -651,7 +903,7 @@ "20" ], "x-ms-request-id": [ - "7cabd278-0a6d-4ef5-9ce6-722288b64556" + "900cc926-b04f-4a68-b96a-580c7f55462c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -660,10 +912,10 @@ "11994" ], "x-ms-correlation-request-id": [ - "d3d272ab-c413-4203-9777-aac44edceb79" + "01f106a0-ea86-4193-8f17-6d90bf407bf5" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T044604Z:d3d272ab-c413-4203-9777-aac44edceb79" + "WESTUS:20200925T013712Z:01f106a0-ea86-4193-8f17-6d90bf407bf5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -672,7 +924,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:46:04 GMT" + "Fri, 25 Sep 2020 01:37:11 GMT" ], "Content-Length": [ "108" @@ -684,17 +936,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"87646160-efd9-4537-b7c9-9f7b459b173f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T04:45:59.053Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"eb3d16be-ebef-4ba1-918c-4637de4fa1bc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:37:06.653Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/87646160-efd9-4537-b7c9-9f7b459b173f?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzg3NjQ2MTYwLWVmZDktNDUzNy1iN2M5LTlmN2I0NTliMTczZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/eb3d16be-ebef-4ba1-918c-4637de4fa1bc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2ViM2QxNmJlLWViZWYtNGJhMS05MThjLTQ2MzdkZTRmYTFiYz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -711,7 +963,7 @@ "20" ], "x-ms-request-id": [ - "934d0fec-b6e9-4cbc-825b-b69ac77416a0" + "9e3f1c80-c6d9-4718-ac65-ee378dace102" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -720,10 +972,10 @@ "11993" ], "x-ms-correlation-request-id": [ - "4b11331e-62a1-402a-b23d-39b68a442b50" + "1bd20a67-d650-42d2-a1a9-d034d1b2d9d7" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T044624Z:4b11331e-62a1-402a-b23d-39b68a442b50" + "WESTUS:20200925T013732Z:1bd20a67-d650-42d2-a1a9-d034d1b2d9d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -732,7 +984,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:46:24 GMT" + "Fri, 25 Sep 2020 01:37:31 GMT" ], "Content-Length": [ "108" @@ -744,17 +996,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"87646160-efd9-4537-b7c9-9f7b459b173f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T04:45:59.053Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"eb3d16be-ebef-4ba1-918c-4637de4fa1bc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:37:06.653Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/87646160-efd9-4537-b7c9-9f7b459b173f?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzg3NjQ2MTYwLWVmZDktNDUzNy1iN2M5LTlmN2I0NTliMTczZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/eb3d16be-ebef-4ba1-918c-4637de4fa1bc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2ViM2QxNmJlLWViZWYtNGJhMS05MThjLTQ2MzdkZTRmYTFiYz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -771,7 +1023,7 @@ "15" ], "x-ms-request-id": [ - "e75b1bdd-cc14-46de-a201-e04c59ff1c64" + "e8f9140b-4e62-4960-ab9a-92a74d006379" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -780,10 +1032,10 @@ "11992" ], "x-ms-correlation-request-id": [ - "457f2fdf-1ee7-468a-9ebe-6e0d25d9c5b5" + "6b088415-f892-417b-b84f-853c6aeae3f6" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T044644Z:457f2fdf-1ee7-468a-9ebe-6e0d25d9c5b5" + "WESTUS:20200925T013752Z:6b088415-f892-417b-b84f-853c6aeae3f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -792,7 +1044,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:46:44 GMT" + "Fri, 25 Sep 2020 01:37:51 GMT" ], "Content-Length": [ "107" @@ -804,23 +1056,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"87646160-efd9-4537-b7c9-9f7b459b173f\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-13T04:45:59.053Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"eb3d16be-ebef-4ba1-918c-4637de4fa1bc\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-25T01:37:06.653Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/servers/ps9378/databases/ps2239?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTM3OC9kYXRhYmFzZXMvcHMyMjM5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/servers/ps2863/databases/ps3989?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjg2My9kYXRhYmFzZXMvcHMzOTg5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fe41c811-87bd-47e2-83f6-2ad39fb8695c" + "b277a8a9-15f9-45b0-bdfc-164250528482" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -837,13 +1089,13 @@ "gateway" ], "x-ms-request-id": [ - "9d917d4c-b834-4f4e-b1f5-25596584c3cd" + "fccd2af0-7531-4ef7-b3d5-60cf1363ee29" ], "x-ms-correlation-request-id": [ - "9d917d4c-b834-4f4e-b1f5-25596584c3cd" + "fccd2af0-7531-4ef7-b3d5-60cf1363ee29" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T044645Z:9d917d4c-b834-4f4e-b1f5-25596584c3cd" + "WESTUS:20200925T013752Z:fccd2af0-7531-4ef7-b3d5-60cf1363ee29" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -852,7 +1104,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:46:44 GMT" + "Fri, 25 Sep 2020 01:37:51 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -864,17 +1116,17 @@ "223" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps9378/databases/ps2239' under resource group 'ps5130' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps2863/databases/ps3989' under resource group 'ps3716' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/servers/ps9378/databases/ps2239?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTM3OC9kYXRhYmFzZXMvcHMyMjM5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/servers/ps2863/databases/ps3989?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjg2My9kYXRhYmFzZXMvcHMzOTg5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -888,7 +1140,7 @@ "no-cache" ], "x-ms-request-id": [ - "05aa45ad-82bf-4725-8d34-83794ef236e0" + "1145f5e6-68c8-447a-8621-68c53c832f54" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -897,10 +1149,10 @@ "11984" ], "x-ms-correlation-request-id": [ - "79512a53-f0b7-426c-bbb1-bd851cf36de3" + "5d51cdee-7f39-4415-94f8-730ca002389f" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T044731Z:79512a53-f0b7-426c-bbb1-bd851cf36de3" + "WESTUS:20200925T013838Z:5d51cdee-7f39-4415-94f8-730ca002389f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -909,10 +1161,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:47:30 GMT" + "Fri, 25 Sep 2020 01:38:38 GMT" ], "Content-Length": [ - "983" + "985" ], "Content-Type": [ "application/json; charset=utf-8" @@ -921,23 +1173,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"5df4de47-66b9-4569-935c-1070d95ccd16\",\r\n \"creationDate\": \"2020-09-13T04:47:23.01Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 10307502080,\r\n \"earliestRestoreDate\": \"2020-09-13T05:17:23.01Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/servers/ps9378/databases/ps2239\",\r\n \"name\": \"ps2239\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"7c2af7fe-5121-4d79-b356-30a60d5ce534\",\r\n \"creationDate\": \"2020-09-25T01:38:36.277Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 10307502080,\r\n \"earliestRestoreDate\": \"2020-09-25T02:08:36.277Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/servers/ps2863/databases/ps3989\",\r\n \"name\": \"ps3989\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/servers/ps9378/databases/ps2239?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTM3OC9kYXRhYmFzZXMvcHMyMjM5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/servers/ps2863/databases/ps3989?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjg2My9kYXRhYmFzZXMvcHMzOTg5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e70c5958-b1f5-4baf-b23b-94f1d27b5224" + "0e0b1d34-f04f-4c3d-a28e-d8f86a6a5d87" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -951,19 +1203,19 @@ "no-cache" ], "x-ms-request-id": [ - "80c47414-cd8a-49ca-a8b1-5eb25d2b28d7" + "675a08b0-98fc-42ee-b52e-1010382f4587" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11982" ], "x-ms-correlation-request-id": [ - "ff379f06-86fe-4cff-9d12-851f913edb5a" + "fb5834da-8db7-4c17-84bc-312d9b62298a" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T044731Z:ff379f06-86fe-4cff-9d12-851f913edb5a" + "WESTUS:20200925T013839Z:fb5834da-8db7-4c17-84bc-312d9b62298a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -972,10 +1224,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:47:30 GMT" + "Fri, 25 Sep 2020 01:38:38 GMT" ], "Content-Length": [ - "983" + "985" ], "Content-Type": [ "application/json; charset=utf-8" @@ -984,23 +1236,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"5df4de47-66b9-4569-935c-1070d95ccd16\",\r\n \"creationDate\": \"2020-09-13T04:47:23.01Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 10307502080,\r\n \"earliestRestoreDate\": \"2020-09-13T05:17:23.01Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/servers/ps9378/databases/ps2239\",\r\n \"name\": \"ps2239\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"7c2af7fe-5121-4d79-b356-30a60d5ce534\",\r\n \"creationDate\": \"2020-09-25T01:38:36.277Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 10307502080,\r\n \"earliestRestoreDate\": \"2020-09-25T02:08:36.277Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/servers/ps2863/databases/ps3989\",\r\n \"name\": \"ps3989\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/servers/ps9378/databases/ps2239?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTM3OC9kYXRhYmFzZXMvcHMyMjM5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/servers/ps2863/databases/ps3989?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjg2My9kYXRhYmFzZXMvcHMzOTg5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f7cdf4ba-ff04-43d6-bcd2-dde58372b263" + "aceacee0-2f8c-4475-8244-a0bf3740c4f6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1014,19 +1266,19 @@ "no-cache" ], "x-ms-request-id": [ - "d37c4fa1-1fb8-45a9-95be-97e5352c36f1" + "308e2b1a-25ee-4aab-be0e-9a4c887de07b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11981" ], "x-ms-correlation-request-id": [ - "db3bc785-d2c8-47d1-9006-27157b093024" + "b3411eff-f30f-42fd-a2b2-7b92f5683c24" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T044731Z:db3bc785-d2c8-47d1-9006-27157b093024" + "WESTUS:20200925T013839Z:b3411eff-f30f-42fd-a2b2-7b92f5683c24" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1035,10 +1287,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:47:30 GMT" + "Fri, 25 Sep 2020 01:38:39 GMT" ], "Content-Length": [ - "983" + "985" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1047,17 +1299,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"5df4de47-66b9-4569-935c-1070d95ccd16\",\r\n \"creationDate\": \"2020-09-13T04:47:23.01Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 10307502080,\r\n \"earliestRestoreDate\": \"2020-09-13T05:17:23.01Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/servers/ps9378/databases/ps2239\",\r\n \"name\": \"ps2239\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"7c2af7fe-5121-4d79-b356-30a60d5ce534\",\r\n \"creationDate\": \"2020-09-25T01:38:36.277Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 10307502080,\r\n \"earliestRestoreDate\": \"2020-09-25T02:08:36.277Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/servers/ps2863/databases/ps3989\",\r\n \"name\": \"ps3989\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/servers/ps9378/databases/ps2239?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTM3OC9kYXRhYmFzZXMvcHMyMjM5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/servers/ps2863/databases/ps3989?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjg2My9kYXRhYmFzZXMvcHMzOTg5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1071,19 +1323,19 @@ "no-cache" ], "x-ms-request-id": [ - "88b33501-ef6b-419f-9fc5-0bd03b001f47" + "f327e647-fbeb-41c9-b664-cd21ee71f0f5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11979" ], "x-ms-correlation-request-id": [ - "d40c056b-1eec-438c-b1f8-5a0238ca5fb9" + "456f618d-3971-4604-bed4-bf997b55ff5e" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T044747Z:d40c056b-1eec-438c-b1f8-5a0238ca5fb9" + "WESTUS:20200925T013854Z:456f618d-3971-4604-bed4-bf997b55ff5e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1092,10 +1344,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:47:46 GMT" + "Fri, 25 Sep 2020 01:38:54 GMT" ], "Content-Length": [ - "973" + "975" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1104,23 +1356,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"5df4de47-66b9-4569-935c-1070d95ccd16\",\r\n \"creationDate\": \"2020-09-13T04:47:23.01Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 0,\r\n \"earliestRestoreDate\": \"2020-09-13T05:17:23.01Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/servers/ps9378/databases/ps2239\",\r\n \"name\": \"ps2239\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"7c2af7fe-5121-4d79-b356-30a60d5ce534\",\r\n \"creationDate\": \"2020-09-25T01:38:36.277Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 0,\r\n \"earliestRestoreDate\": \"2020-09-25T02:08:36.277Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/servers/ps2863/databases/ps3989\",\r\n \"name\": \"ps3989\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/servers/ps9378/databases/ps2239?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTM3OC9kYXRhYmFzZXMvcHMyMjM5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/servers/ps2863/databases/ps3989?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjg2My9kYXRhYmFzZXMvcHMzOTg5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9a5cbb70-d629-40b0-9081-f071512ce284" + "17144eb9-a472-48f1-a149-281a56226281" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1134,19 +1386,19 @@ "no-cache" ], "x-ms-request-id": [ - "d06bba73-225a-4b97-a2f6-784282bfb247" + "1a70ae43-6e72-4f3f-be89-6a42450bfc35" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11977" ], "x-ms-correlation-request-id": [ - "0939d09a-470d-4dc3-a775-8626efb2bd0f" + "d7e088c8-3e76-4c14-811a-efc833d1908e" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T044747Z:0939d09a-470d-4dc3-a775-8626efb2bd0f" + "WESTUS:20200925T013855Z:d7e088c8-3e76-4c14-811a-efc833d1908e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1155,10 +1407,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:47:46 GMT" + "Fri, 25 Sep 2020 01:38:54 GMT" ], "Content-Length": [ - "973" + "975" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1167,23 +1419,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"5df4de47-66b9-4569-935c-1070d95ccd16\",\r\n \"creationDate\": \"2020-09-13T04:47:23.01Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 0,\r\n \"earliestRestoreDate\": \"2020-09-13T05:17:23.01Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/servers/ps9378/databases/ps2239\",\r\n \"name\": \"ps2239\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"7c2af7fe-5121-4d79-b356-30a60d5ce534\",\r\n \"creationDate\": \"2020-09-25T01:38:36.277Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 0,\r\n \"earliestRestoreDate\": \"2020-09-25T02:08:36.277Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/servers/ps2863/databases/ps3989\",\r\n \"name\": \"ps3989\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/servers/ps9378/databases/ps2239?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTM3OC9kYXRhYmFzZXMvcHMyMjM5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/servers/ps2863/databases/ps3989?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjg2My9kYXRhYmFzZXMvcHMzOTg5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d7a321fa-0a7c-4ca1-ba71-376398ffb17f" + "593f0f92-c244-46d2-a852-0298c66cf85b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1197,19 +1449,19 @@ "no-cache" ], "x-ms-request-id": [ - "a0922333-d921-4d65-a1fc-360d78b8ba92" + "b23c72bf-4d5d-4f4d-be39-648083dcc0cd" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11976" ], "x-ms-correlation-request-id": [ - "b75e6917-2315-4b6c-8cb9-f032ee5af065" + "af374e0e-e262-4c7d-80b0-85699350e66e" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T044747Z:b75e6917-2315-4b6c-8cb9-f032ee5af065" + "WESTUS:20200925T013855Z:af374e0e-e262-4c7d-80b0-85699350e66e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1218,10 +1470,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:47:46 GMT" + "Fri, 25 Sep 2020 01:38:54 GMT" ], "Content-Length": [ - "973" + "975" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1230,17 +1482,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"5df4de47-66b9-4569-935c-1070d95ccd16\",\r\n \"creationDate\": \"2020-09-13T04:47:23.01Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 0,\r\n \"earliestRestoreDate\": \"2020-09-13T05:17:23.01Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/servers/ps9378/databases/ps2239\",\r\n \"name\": \"ps2239\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"7c2af7fe-5121-4d79-b356-30a60d5ce534\",\r\n \"creationDate\": \"2020-09-25T01:38:36.277Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 0,\r\n \"earliestRestoreDate\": \"2020-09-25T02:08:36.277Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/servers/ps2863/databases/ps3989\",\r\n \"name\": \"ps3989\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/servers/ps9378/databases/ps2239?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTM3OC9kYXRhYmFzZXMvcHMyMjM5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/servers/ps2863/databases/ps3989?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjg2My9kYXRhYmFzZXMvcHMzOTg5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1254,19 +1506,19 @@ "no-cache" ], "x-ms-request-id": [ - "4f541cd7-a114-4155-913f-0d4946a4b8f3" + "12a0413e-5665-4e0e-93a7-683dcbed3075" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11974" ], "x-ms-correlation-request-id": [ - "40628b3b-7c0c-4275-88ab-95b2604f6069" + "ca0bd845-6118-43fa-8808-227edf8e30c9" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T044802Z:40628b3b-7c0c-4275-88ab-95b2604f6069" + "WESTUS:20200925T013910Z:ca0bd845-6118-43fa-8808-227edf8e30c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1275,10 +1527,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:48:02 GMT" + "Fri, 25 Sep 2020 01:39:10 GMT" ], "Content-Length": [ - "977" + "979" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1287,23 +1539,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"5df4de47-66b9-4569-935c-1070d95ccd16\",\r\n \"creationDate\": \"2020-09-13T04:47:23.01Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"BasePrice\",\r\n \"maxLogSizeBytes\": 10307502080,\r\n \"earliestRestoreDate\": \"2020-09-13T05:17:23.01Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/servers/ps9378/databases/ps2239\",\r\n \"name\": \"ps2239\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"7c2af7fe-5121-4d79-b356-30a60d5ce534\",\r\n \"creationDate\": \"2020-09-25T01:38:36.277Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"BasePrice\",\r\n \"maxLogSizeBytes\": 10307502080,\r\n \"earliestRestoreDate\": \"2020-09-25T02:08:36.277Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/servers/ps2863/databases/ps3989\",\r\n \"name\": \"ps3989\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/servers/ps9378/databases/ps2239?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTM3OC9kYXRhYmFzZXMvcHMyMjM5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/servers/ps2863/databases/ps3989?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjg2My9kYXRhYmFzZXMvcHMzOTg5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fd35fadf-74d5-48fc-ba2a-19e566420607" + "3f612e45-cd38-48b2-8a42-92c7c1b7248e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1317,19 +1569,19 @@ "no-cache" ], "x-ms-request-id": [ - "f9ecb984-8327-47ab-8ffc-c652cede2208" + "e4bdf839-6d3e-48bf-baf6-058d59b3e8d9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11972" ], "x-ms-correlation-request-id": [ - "ea3f71a7-ae3a-44d4-90e3-a5910cfcff9f" + "c9ba0651-454b-4a99-bc1c-14359927079a" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T044802Z:ea3f71a7-ae3a-44d4-90e3-a5910cfcff9f" + "WESTUS:20200925T013910Z:c9ba0651-454b-4a99-bc1c-14359927079a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1338,10 +1590,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:48:02 GMT" + "Fri, 25 Sep 2020 01:39:10 GMT" ], "Content-Length": [ - "977" + "979" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1350,23 +1602,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"5df4de47-66b9-4569-935c-1070d95ccd16\",\r\n \"creationDate\": \"2020-09-13T04:47:23.01Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"BasePrice\",\r\n \"maxLogSizeBytes\": 10307502080,\r\n \"earliestRestoreDate\": \"2020-09-13T05:17:23.01Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/servers/ps9378/databases/ps2239\",\r\n \"name\": \"ps2239\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"7c2af7fe-5121-4d79-b356-30a60d5ce534\",\r\n \"creationDate\": \"2020-09-25T01:38:36.277Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"BasePrice\",\r\n \"maxLogSizeBytes\": 10307502080,\r\n \"earliestRestoreDate\": \"2020-09-25T02:08:36.277Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/servers/ps2863/databases/ps3989\",\r\n \"name\": \"ps3989\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/servers/ps9378/databases/ps2239?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTM3OC9kYXRhYmFzZXMvcHMyMjM5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/servers/ps2863/databases/ps3989?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjg2My9kYXRhYmFzZXMvcHMzOTg5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0575ddaa-bf47-45e2-ad0f-798069adfcfc" + "eec1d666-66e6-434a-979a-58f73e1ef82d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1380,19 +1632,19 @@ "no-cache" ], "x-ms-request-id": [ - "ca00f02e-4a04-41cb-8b8e-3e94af65e937" + "037bc905-7477-41dc-8c0a-7e7b1f6a76ef" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11971" ], "x-ms-correlation-request-id": [ - "5589284c-b398-4f63-be84-bae6c4aeb028" + "e162b72d-8747-4d2f-a65f-875c787423d9" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T044803Z:5589284c-b398-4f63-be84-bae6c4aeb028" + "WESTUS:20200925T013910Z:e162b72d-8747-4d2f-a65f-875c787423d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1401,10 +1653,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:48:02 GMT" + "Fri, 25 Sep 2020 01:39:10 GMT" ], "Content-Length": [ - "977" + "979" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1413,17 +1665,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"5df4de47-66b9-4569-935c-1070d95ccd16\",\r\n \"creationDate\": \"2020-09-13T04:47:23.01Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"BasePrice\",\r\n \"maxLogSizeBytes\": 10307502080,\r\n \"earliestRestoreDate\": \"2020-09-13T05:17:23.01Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/servers/ps9378/databases/ps2239\",\r\n \"name\": \"ps2239\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"7c2af7fe-5121-4d79-b356-30a60d5ce534\",\r\n \"creationDate\": \"2020-09-25T01:38:36.277Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"BasePrice\",\r\n \"maxLogSizeBytes\": 10307502080,\r\n \"earliestRestoreDate\": \"2020-09-25T02:08:36.277Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/servers/ps2863/databases/ps3989\",\r\n \"name\": \"ps3989\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/servers/ps9378/databases/ps2239?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTM3OC9kYXRhYmFzZXMvcHMyMjM5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/servers/ps2863/databases/ps3989?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjg2My9kYXRhYmFzZXMvcHMzOTg5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1437,19 +1689,19 @@ "no-cache" ], "x-ms-request-id": [ - "6aaa76a4-c046-4b03-9d22-d801e98481f3" + "c1bad838-18d2-4165-94ed-d5993c37118c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11969" ], "x-ms-correlation-request-id": [ - "38d7cc84-0348-40f3-b5e1-5e0698d4eee3" + "d351baab-19b4-41ad-8cbb-6c28abcff019" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T044818Z:38d7cc84-0348-40f3-b5e1-5e0698d4eee3" + "WESTUS:20200925T013926Z:d351baab-19b4-41ad-8cbb-6c28abcff019" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1458,10 +1710,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:48:17 GMT" + "Fri, 25 Sep 2020 01:39:25 GMT" ], "Content-Length": [ - "983" + "985" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1470,23 +1722,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"5df4de47-66b9-4569-935c-1070d95ccd16\",\r\n \"creationDate\": \"2020-09-13T04:47:23.01Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 10307502080,\r\n \"earliestRestoreDate\": \"2020-09-13T05:17:23.01Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/servers/ps9378/databases/ps2239\",\r\n \"name\": \"ps2239\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"7c2af7fe-5121-4d79-b356-30a60d5ce534\",\r\n \"creationDate\": \"2020-09-25T01:38:36.277Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 10307502080,\r\n \"earliestRestoreDate\": \"2020-09-25T02:08:36.277Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/servers/ps2863/databases/ps3989\",\r\n \"name\": \"ps3989\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/servers/ps9378/databases/ps2239?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTM3OC9kYXRhYmFzZXMvcHMyMjM5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/servers/ps2863/databases/ps3989?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjg2My9kYXRhYmFzZXMvcHMzOTg5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "266f8014-6183-4da7-8934-d0c56f2a5ee0" + "c8faf79a-20ef-4d05-af4e-513e77129218" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1500,19 +1752,19 @@ "no-cache" ], "x-ms-request-id": [ - "753b4a8a-4c0a-4246-9dec-4dd77ee8363a" + "9741d65d-955e-40d9-bc55-8eeb2d434353" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11967" ], "x-ms-correlation-request-id": [ - "1a16888b-7503-4c54-bc57-ff487a36d26b" + "d84a7672-eae2-469b-b3e5-e418ca6a60a0" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T044818Z:1a16888b-7503-4c54-bc57-ff487a36d26b" + "WESTUS:20200925T013926Z:d84a7672-eae2-469b-b3e5-e418ca6a60a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1521,10 +1773,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:48:17 GMT" + "Fri, 25 Sep 2020 01:39:25 GMT" ], "Content-Length": [ - "983" + "985" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1533,23 +1785,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"5df4de47-66b9-4569-935c-1070d95ccd16\",\r\n \"creationDate\": \"2020-09-13T04:47:23.01Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 10307502080,\r\n \"earliestRestoreDate\": \"2020-09-13T05:17:23.01Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/servers/ps9378/databases/ps2239\",\r\n \"name\": \"ps2239\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"7c2af7fe-5121-4d79-b356-30a60d5ce534\",\r\n \"creationDate\": \"2020-09-25T01:38:36.277Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 10307502080,\r\n \"earliestRestoreDate\": \"2020-09-25T02:08:36.277Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/servers/ps2863/databases/ps3989\",\r\n \"name\": \"ps3989\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/servers/ps9378/databases/ps2239?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTM3OC9kYXRhYmFzZXMvcHMyMjM5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/servers/ps2863/databases/ps3989?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjg2My9kYXRhYmFzZXMvcHMzOTg5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9c80a668-e47d-46c7-a46f-18e918115794" + "8fa866b1-592a-4e45-bf7b-1504c4b1b59d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1563,19 +1815,19 @@ "no-cache" ], "x-ms-request-id": [ - "1e442227-ea59-4cf8-9e09-787f3479b495" + "f9f473f1-0abb-4c9a-abc1-168fe2412c55" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11966" ], "x-ms-correlation-request-id": [ - "f3f232b3-99ca-45a5-ba5a-607eef2e550e" + "884376a6-f0ec-4218-aaba-c27d7cf0e977" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T044818Z:f3f232b3-99ca-45a5-ba5a-607eef2e550e" + "WESTUS:20200925T013926Z:884376a6-f0ec-4218-aaba-c27d7cf0e977" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1584,10 +1836,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:48:17 GMT" + "Fri, 25 Sep 2020 01:39:25 GMT" ], "Content-Length": [ - "983" + "985" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1596,17 +1848,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"5df4de47-66b9-4569-935c-1070d95ccd16\",\r\n \"creationDate\": \"2020-09-13T04:47:23.01Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 10307502080,\r\n \"earliestRestoreDate\": \"2020-09-13T05:17:23.01Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/servers/ps9378/databases/ps2239\",\r\n \"name\": \"ps2239\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"7c2af7fe-5121-4d79-b356-30a60d5ce534\",\r\n \"creationDate\": \"2020-09-25T01:38:36.277Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 10307502080,\r\n \"earliestRestoreDate\": \"2020-09-25T02:08:36.277Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/servers/ps2863/databases/ps3989\",\r\n \"name\": \"ps3989\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/servers/ps9378/databases/ps2239?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTM3OC9kYXRhYmFzZXMvcHMyMjM5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/servers/ps2863/databases/ps3989?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjg2My9kYXRhYmFzZXMvcHMzOTg5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1620,19 +1872,19 @@ "no-cache" ], "x-ms-request-id": [ - "de93690e-da7a-46de-82cd-89b46325eef9" + "1a9dca2e-1ff2-42c5-9e08-0ea4625c4ac2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11964" ], "x-ms-correlation-request-id": [ - "d8e3269b-9e58-4f48-975e-36289997dca3" + "a29a2377-bd7c-4c1e-aaa4-103bf177079f" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T044834Z:d8e3269b-9e58-4f48-975e-36289997dca3" + "WESTUS:20200925T013942Z:a29a2377-bd7c-4c1e-aaa4-103bf177079f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1641,10 +1893,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:48:33 GMT" + "Fri, 25 Sep 2020 01:39:41 GMT" ], "Content-Length": [ - "977" + "979" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1653,23 +1905,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"5df4de47-66b9-4569-935c-1070d95ccd16\",\r\n \"creationDate\": \"2020-09-13T04:47:23.01Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"BasePrice\",\r\n \"maxLogSizeBytes\": 10307502080,\r\n \"earliestRestoreDate\": \"2020-09-13T05:17:23.01Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/servers/ps9378/databases/ps2239\",\r\n \"name\": \"ps2239\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"7c2af7fe-5121-4d79-b356-30a60d5ce534\",\r\n \"creationDate\": \"2020-09-25T01:38:36.277Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"BasePrice\",\r\n \"maxLogSizeBytes\": 10307502080,\r\n \"earliestRestoreDate\": \"2020-09-25T02:08:36.277Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/servers/ps2863/databases/ps3989\",\r\n \"name\": \"ps3989\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/servers/ps9378/databases/ps2239?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTM3OC9kYXRhYmFzZXMvcHMyMjM5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/servers/ps2863/databases/ps3989?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjg2My9kYXRhYmFzZXMvcHMzOTg5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5_2\",\r\n \"tier\": \"GeneralPurpose\"\r\n },\r\n \"properties\": {\r\n \"maxSizeBytes\": 0,\r\n \"readScale\": \"\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ffbf4ba5-4ddc-4100-9e4c-3120e935bc02" + "41e7a34c-8d6d-43b4-9488-160fc0ae0bc1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1689,16 +1941,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/locations/westcentralus/databaseOperationResults/bfc93db0-5979-4465-8fa6-062983799188?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/locations/westcentralus/databaseOperationResults/c283da5a-51e8-4c98-8968-c854aac9ef60?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/bfc93db0-5979-4465-8fa6-062983799188?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/c283da5a-51e8-4c98-8968-c854aac9ef60?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "bfc93db0-5979-4465-8fa6-062983799188" + "c283da5a-51e8-4c98-8968-c854aac9ef60" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1707,10 +1959,10 @@ "1198" ], "x-ms-correlation-request-id": [ - "ed1ca3f9-a662-4541-b2bc-ff6c60f6e177" + "2bc5db97-1221-4b63-995a-0c4c2c45f21a" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T044645Z:ed1ca3f9-a662-4541-b2bc-ff6c60f6e177" + "WESTUS:20200925T013753Z:2bc5db97-1221-4b63-995a-0c4c2c45f21a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1719,10 +1971,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:46:45 GMT" + "Fri, 25 Sep 2020 01:37:52 GMT" ], "Content-Length": [ - "76" + "75" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1731,23 +1983,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2020-09-13T04:46:45.773Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2020-09-25T01:37:53.42Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/servers/ps9378/databases/ps2239?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTM3OC9kYXRhYmFzZXMvcHMyMjM5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/servers/ps2863/databases/ps3989?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjg2My9kYXRhYmFzZXMvcHMzOTg5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": 0,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"readScale\": \"Disabled\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a2746e78-b2f0-4707-ae32-5853f552f5ad" + "799178c0-ec1e-455e-8d9a-5f134357bc47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1767,16 +2019,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/locations/westcentralus/databaseOperationResults/486f18c6-95eb-44a5-a092-14891728c905?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/locations/westcentralus/databaseOperationResults/1dc49a4c-6deb-4b59-bb90-c1496dba380f?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/486f18c6-95eb-44a5-a092-14891728c905?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/1dc49a4c-6deb-4b59-bb90-c1496dba380f?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "b5d306de-e0c9-404e-b02b-755fcca8113c" + "1dc49a4c-6deb-4b59-bb90-c1496dba380f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1785,10 +2037,10 @@ "1197" ], "x-ms-correlation-request-id": [ - "8b0a55bf-6680-42b7-b025-c99b237d7762" + "912cb20b-ff89-4319-8158-be69eeb0eb4f" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T044731Z:8b0a55bf-6680-42b7-b025-c99b237d7762" + "WESTUS:20200925T013839Z:912cb20b-ff89-4319-8158-be69eeb0eb4f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1797,7 +2049,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:47:31 GMT" + "Fri, 25 Sep 2020 01:38:39 GMT" ], "Content-Length": [ "75" @@ -1809,23 +2061,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-09-13T04:47:31.85Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-09-25T01:38:39.56Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/servers/ps9378/databases/ps2239?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTM3OC9kYXRhYmFzZXMvcHMyMjM5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/servers/ps2863/databases/ps3989?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjg2My9kYXRhYmFzZXMvcHMzOTg5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": 0,\r\n \"licenseType\": \"BasePrice\",\r\n \"readScale\": \"Disabled\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e1717a2b-9e8e-4268-9d15-93c5a6ba3246" + "1e2719cc-ff8d-43f9-8063-894ef49471d1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1845,16 +2097,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/locations/westcentralus/databaseOperationResults/b5960b2d-9104-414a-be11-886cce54709f?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/locations/westcentralus/databaseOperationResults/3e48d2b7-4992-45c1-a422-8dcf9dae98c8?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/b5960b2d-9104-414a-be11-886cce54709f?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/3e48d2b7-4992-45c1-a422-8dcf9dae98c8?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "0be28b1b-dfd7-4878-b2b7-8ae39ade1ea1" + "3e48d2b7-4992-45c1-a422-8dcf9dae98c8" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1863,10 +2115,10 @@ "1196" ], "x-ms-correlation-request-id": [ - "b092ce7a-d6b3-4a3a-9ae3-77565baa49a1" + "92ce6daa-3bce-42e7-b366-b5ef1e5372cb" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T044747Z:b092ce7a-d6b3-4a3a-9ae3-77565baa49a1" + "WESTUS:20200925T013855Z:92ce6daa-3bce-42e7-b366-b5ef1e5372cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1875,10 +2127,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:47:46 GMT" + "Fri, 25 Sep 2020 01:38:54 GMT" ], "Content-Length": [ - "76" + "75" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1887,23 +2139,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-09-13T04:47:47.553Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-09-25T01:38:55.34Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/servers/ps9378/databases/ps2239?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTM3OC9kYXRhYmFzZXMvcHMyMjM5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/servers/ps2863/databases/ps3989?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjg2My9kYXRhYmFzZXMvcHMzOTg5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": 0,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"readScale\": \"Disabled\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "84f1e6a8-9030-4b30-b073-063eae9e0c05" + "4024b88e-281f-42d6-9de7-6c734f6d096e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1923,16 +2175,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/locations/westcentralus/databaseOperationResults/7a9e8f19-b426-4c63-ac32-f94ee30613f0?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/locations/westcentralus/databaseOperationResults/90c30f3d-1313-49f4-b58a-52f3c152af80?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/7a9e8f19-b426-4c63-ac32-f94ee30613f0?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/90c30f3d-1313-49f4-b58a-52f3c152af80?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "2424f5bf-a391-4792-b3e8-8cb1c631442b" + "90c30f3d-1313-49f4-b58a-52f3c152af80" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1941,10 +2193,10 @@ "1195" ], "x-ms-correlation-request-id": [ - "1d17ffe5-2521-4c2c-a78d-3e49459a93a4" + "4145824f-1162-4ce7-87ac-ff52c8cce58f" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T044803Z:1d17ffe5-2521-4c2c-a78d-3e49459a93a4" + "WESTUS:20200925T013911Z:4145824f-1162-4ce7-87ac-ff52c8cce58f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1953,7 +2205,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:48:02 GMT" + "Fri, 25 Sep 2020 01:39:10 GMT" ], "Content-Length": [ "76" @@ -1965,23 +2217,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-09-13T04:48:03.303Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-09-25T01:39:10.997Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/servers/ps9378/databases/ps2239?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTM3OC9kYXRhYmFzZXMvcHMyMjM5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/servers/ps2863/databases/ps3989?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjg2My9kYXRhYmFzZXMvcHMzOTg5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": 0,\r\n \"licenseType\": \"BasePrice\",\r\n \"readScale\": \"Disabled\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "18e4e475-7582-4b00-a98b-3b86af190d1f" + "b7aa0c78-af69-4482-b14d-c4c170dcb91a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2001,16 +2253,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/locations/westcentralus/databaseOperationResults/6ffe2663-fffb-4d17-9027-35d81bfe204b?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/locations/westcentralus/databaseOperationResults/5ee3b535-f465-45ff-a6e9-ac482d973f0c?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/6ffe2663-fffb-4d17-9027-35d81bfe204b?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/5ee3b535-f465-45ff-a6e9-ac482d973f0c?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "ea0d5b9b-1d4e-4d6a-a977-c80b02c591e0" + "5ee3b535-f465-45ff-a6e9-ac482d973f0c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2019,10 +2271,10 @@ "1194" ], "x-ms-correlation-request-id": [ - "48ed5751-b15a-4add-b94d-c966a4b355c7" + "c8430fd8-2ff4-4303-a11e-abd704085242" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T044818Z:48ed5751-b15a-4add-b94d-c966a4b355c7" + "WESTUS:20200925T013926Z:c8430fd8-2ff4-4303-a11e-abd704085242" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2031,7 +2283,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:48:18 GMT" + "Fri, 25 Sep 2020 01:39:26 GMT" ], "Content-Length": [ "76" @@ -2043,17 +2295,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-09-13T04:48:18.867Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-09-25T01:39:26.873Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/bfc93db0-5979-4465-8fa6-062983799188?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYmZjOTNkYjAtNTk3OS00NDY1LThmYTYtMDYyOTgzNzk5MTg4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/c283da5a-51e8-4c98-8968-c854aac9ef60?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYzI4M2RhNWEtNTFlOC00Yzk4LTg5NjgtYzg1NGFhYzllZjYwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2070,7 +2322,7 @@ "15" ], "x-ms-request-id": [ - "4956daa3-685a-4771-a76e-0195ceaa5977" + "7668c192-13bf-4ad3-9af4-fe4dacb25468" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2079,10 +2331,10 @@ "11987" ], "x-ms-correlation-request-id": [ - "3c181de4-affb-4b10-a890-75734c636957" + "d171d86e-1f68-4d63-83b3-c98350de8231" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T044701Z:3c181de4-affb-4b10-a890-75734c636957" + "WESTUS:20200925T013808Z:d171d86e-1f68-4d63-83b3-c98350de8231" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2091,10 +2343,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:47:00 GMT" + "Fri, 25 Sep 2020 01:38:07 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2103,17 +2355,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"bfc93db0-5979-4465-8fa6-062983799188\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T04:46:45.773Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"c283da5a-51e8-4c98-8968-c854aac9ef60\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:37:53.42Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/bfc93db0-5979-4465-8fa6-062983799188?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYmZjOTNkYjAtNTk3OS00NDY1LThmYTYtMDYyOTgzNzk5MTg4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/c283da5a-51e8-4c98-8968-c854aac9ef60?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYzI4M2RhNWEtNTFlOC00Yzk4LTg5NjgtYzg1NGFhYzllZjYwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2130,7 +2382,7 @@ "15" ], "x-ms-request-id": [ - "c6c5481e-259f-43d9-94b1-3e3264e33118" + "a0077ffc-71dd-4447-a1e8-21d76d45cb69" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2139,10 +2391,10 @@ "11986" ], "x-ms-correlation-request-id": [ - "b730b93e-38fe-4cdd-97d0-3ac9937542df" + "09081045-3518-4318-acef-2060ef5c2a23" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T044716Z:b730b93e-38fe-4cdd-97d0-3ac9937542df" + "WESTUS:20200925T013823Z:09081045-3518-4318-acef-2060ef5c2a23" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2151,10 +2403,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:47:15 GMT" + "Fri, 25 Sep 2020 01:38:23 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2163,17 +2415,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"bfc93db0-5979-4465-8fa6-062983799188\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-13T04:46:45.773Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"c283da5a-51e8-4c98-8968-c854aac9ef60\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T01:37:53.42Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/bfc93db0-5979-4465-8fa6-062983799188?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYmZjOTNkYjAtNTk3OS00NDY1LThmYTYtMDYyOTgzNzk5MTg4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/c283da5a-51e8-4c98-8968-c854aac9ef60?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYzI4M2RhNWEtNTFlOC00Yzk4LTg5NjgtYzg1NGFhYzllZjYwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2190,7 +2442,7 @@ "15" ], "x-ms-request-id": [ - "bf47a1dd-1bdd-4ec7-bcec-dcab22b2c428" + "fe0d3465-6ab7-49c0-b5ea-b046e452403f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2199,10 +2451,10 @@ "11985" ], "x-ms-correlation-request-id": [ - "587248b1-64a3-42d6-a651-45b5ecbc6f90" + "572c018b-efeb-432d-8be7-c6465c494899" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T044731Z:587248b1-64a3-42d6-a651-45b5ecbc6f90" + "WESTUS:20200925T013838Z:572c018b-efeb-432d-8be7-c6465c494899" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2211,10 +2463,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:47:30 GMT" + "Fri, 25 Sep 2020 01:38:38 GMT" ], "Content-Length": [ - "107" + "106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2223,17 +2475,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"bfc93db0-5979-4465-8fa6-062983799188\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-13T04:46:45.773Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"c283da5a-51e8-4c98-8968-c854aac9ef60\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-25T01:37:53.42Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/486f18c6-95eb-44a5-a092-14891728c905?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNDg2ZjE4YzYtOTVlYi00NGE1LWEwOTItMTQ4OTE3MjhjOTA1P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/1dc49a4c-6deb-4b59-bb90-c1496dba380f?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMWRjNDlhNGMtNmRlYi00YjU5LWJiOTAtYzE0OTZkYmEzODBmP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2250,19 +2502,19 @@ "15" ], "x-ms-request-id": [ - "da113f7a-357a-43a2-acb8-d18a59bf81ca" + "9d01e8ba-9447-463f-966d-5bdf1c5fe378" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11980" ], "x-ms-correlation-request-id": [ - "d2b3f515-7add-4dc5-b174-5f30bd4fc34f" + "188f8945-ca48-4a43-b117-4930798b2e78" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T044747Z:d2b3f515-7add-4dc5-b174-5f30bd4fc34f" + "WESTUS:20200925T013854Z:188f8945-ca48-4a43-b117-4930798b2e78" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2271,7 +2523,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:47:46 GMT" + "Fri, 25 Sep 2020 01:38:54 GMT" ], "Content-Length": [ "106" @@ -2283,17 +2535,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"486f18c6-95eb-44a5-a092-14891728c905\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-13T04:47:31.85Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"1dc49a4c-6deb-4b59-bb90-c1496dba380f\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-25T01:38:39.56Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/b5960b2d-9104-414a-be11-886cce54709f?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYjU5NjBiMmQtOTEwNC00MTRhLWJlMTEtODg2Y2NlNTQ3MDlmP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/3e48d2b7-4992-45c1-a422-8dcf9dae98c8?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vM2U0OGQyYjctNDk5Mi00NWMxLWE0MjItOGRjZjlkYWU5OGM4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2310,19 +2562,19 @@ "15" ], "x-ms-request-id": [ - "dd621fa9-a30c-41e0-9bec-4a15eac00a70" + "b5948a17-113e-4ca8-b638-277802c63aee" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11975" ], "x-ms-correlation-request-id": [ - "e08cc1a4-b08b-45d4-bfad-d07db4245550" + "b07a3032-895f-454d-a704-059a5bd0be88" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T044802Z:e08cc1a4-b08b-45d4-bfad-d07db4245550" + "WESTUS:20200925T013910Z:b07a3032-895f-454d-a704-059a5bd0be88" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2331,10 +2583,10 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:48:02 GMT" + "Fri, 25 Sep 2020 01:39:09 GMT" ], "Content-Length": [ - "107" + "106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2343,17 +2595,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"b5960b2d-9104-414a-be11-886cce54709f\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-13T04:47:47.553Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"3e48d2b7-4992-45c1-a422-8dcf9dae98c8\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-25T01:38:55.34Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/7a9e8f19-b426-4c63-ac32-f94ee30613f0?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vN2E5ZThmMTktYjQyNi00YzYzLWFjMzItZjk0ZWUzMDYxM2YwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/90c30f3d-1313-49f4-b58a-52f3c152af80?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vOTBjMzBmM2QtMTMxMy00OWY0LWI1OGEtNTJmM2MxNTJhZjgwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2370,19 +2622,19 @@ "15" ], "x-ms-request-id": [ - "ca71ab8e-e666-4007-828a-12534c1f002d" + "842d7685-7aa1-4874-8b72-88fdb6881db3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11970" ], "x-ms-correlation-request-id": [ - "a6c98b0b-7dd6-4cce-84e3-f50f282a23ac" + "fe6f457e-7076-497c-9edb-da53025cff46" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T044818Z:a6c98b0b-7dd6-4cce-84e3-f50f282a23ac" + "WESTUS:20200925T013926Z:fe6f457e-7076-497c-9edb-da53025cff46" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2391,7 +2643,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:48:17 GMT" + "Fri, 25 Sep 2020 01:39:25 GMT" ], "Content-Length": [ "107" @@ -2403,17 +2655,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"7a9e8f19-b426-4c63-ac32-f94ee30613f0\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-13T04:48:03.303Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"90c30f3d-1313-49f4-b58a-52f3c152af80\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-25T01:39:10.997Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5130/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/6ffe2663-fffb-4d17-9027-35d81bfe204b?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNmZmZTI2NjMtZmZmYi00ZDE3LTkwMjctMzVkODFiZmUyMDRiP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3716/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/5ee3b535-f465-45ff-a6e9-ac482d973f0c?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNWVlM2I1MzUtZjQ2NS00NWZmLWE2ZTktYWM0ODJkOTczZjBjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2430,19 +2682,19 @@ "15" ], "x-ms-request-id": [ - "d6fa8376-baec-4ed4-8f65-2de637907994" + "f8b15257-ab80-48d7-ac8a-823b10e22d79" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11965" ], "x-ms-correlation-request-id": [ - "2e534bda-7113-4645-98ef-42518b29f08d" + "7982201f-3182-45d5-acc2-a83935edc142" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T044834Z:2e534bda-7113-4645-98ef-42518b29f08d" + "WESTUS:20200925T013942Z:7982201f-3182-45d5-acc2-a83935edc142" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2451,7 +2703,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:48:33 GMT" + "Fri, 25 Sep 2020 01:39:41 GMT" ], "Content-Length": [ "107" @@ -2463,23 +2715,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"6ffe2663-fffb-4d17-9027-35d81bfe204b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-13T04:48:18.867Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"5ee3b535-f465-45ff-a6e9-ac482d973f0c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-25T01:39:26.873Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps5130?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzNTEzMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps3716?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzMzcxNj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b7e3a7b1-ce75-4263-85f0-e89e97a3177f" + "51be7d72-2aae-4452-8d09-c27ac3d25b35" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -2493,7 +2745,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM3MTYtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2502,13 +2754,13 @@ "14999" ], "x-ms-request-id": [ - "959f83be-59b9-408c-814e-1c60344228d5" + "f82a8146-3f7e-49c3-84e8-9b8f63e55ff1" ], "x-ms-correlation-request-id": [ - "959f83be-59b9-408c-814e-1c60344228d5" + "f82a8146-3f7e-49c3-84e8-9b8f63e55ff1" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T044834Z:959f83be-59b9-408c-814e-1c60344228d5" + "WESTUS:20200925T013943Z:f82a8146-3f7e-49c3-84e8-9b8f63e55ff1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2517,7 +2769,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:48:34 GMT" + "Fri, 25 Sep 2020 01:39:42 GMT" ], "Expires": [ "-1" @@ -2530,13 +2782,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE16QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM3MTYtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNM01UWXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -2550,7 +2802,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM3MTYtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2559,13 +2811,13 @@ "11999" ], "x-ms-request-id": [ - "cbd8e59b-6b3e-4181-a36b-c0b48bcbdfd4" + "22185ae3-1d3e-4bc4-80fd-cc8074d3bef7" ], "x-ms-correlation-request-id": [ - "cbd8e59b-6b3e-4181-a36b-c0b48bcbdfd4" + "22185ae3-1d3e-4bc4-80fd-cc8074d3bef7" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T044850Z:cbd8e59b-6b3e-4181-a36b-c0b48bcbdfd4" + "WESTUS:20200925T013958Z:22185ae3-1d3e-4bc4-80fd-cc8074d3bef7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2574,7 +2826,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:48:49 GMT" + "Fri, 25 Sep 2020 01:39:58 GMT" ], "Expires": [ "-1" @@ -2587,13 +2839,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE16QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM3MTYtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNM01UWXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -2607,7 +2859,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM3MTYtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2616,13 +2868,13 @@ "11998" ], "x-ms-request-id": [ - "8d0987ba-7625-42b4-822d-1be99e2d3aaf" + "11d77c88-1328-4d40-a732-116205514f1c" ], "x-ms-correlation-request-id": [ - "8d0987ba-7625-42b4-822d-1be99e2d3aaf" + "11d77c88-1328-4d40-a732-116205514f1c" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T044905Z:8d0987ba-7625-42b4-822d-1be99e2d3aaf" + "WESTUS:20200925T014013Z:11d77c88-1328-4d40-a732-116205514f1c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2631,7 +2883,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:49:04 GMT" + "Fri, 25 Sep 2020 01:40:13 GMT" ], "Expires": [ "-1" @@ -2644,13 +2896,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE16QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM3MTYtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNM01UWXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -2664,7 +2916,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM3MTYtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2673,13 +2925,13 @@ "11997" ], "x-ms-request-id": [ - "59326960-05a6-4a0c-a1de-c5f28ebba238" + "8597ebb2-292a-4254-82cf-979e1e633c17" ], "x-ms-correlation-request-id": [ - "59326960-05a6-4a0c-a1de-c5f28ebba238" + "8597ebb2-292a-4254-82cf-979e1e633c17" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T044920Z:59326960-05a6-4a0c-a1de-c5f28ebba238" + "WESTUS:20200925T014028Z:8597ebb2-292a-4254-82cf-979e1e633c17" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2688,7 +2940,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:49:19 GMT" + "Fri, 25 Sep 2020 01:40:28 GMT" ], "Expires": [ "-1" @@ -2701,13 +2953,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE16QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM3MTYtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNM01UWXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -2721,7 +2973,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM3MTYtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2730,13 +2982,13 @@ "11996" ], "x-ms-request-id": [ - "011e88c5-fbd0-4958-8534-d9a6b3087e0c" + "994ff8ba-c5e0-4c6f-bfa7-ff8697a696f4" ], "x-ms-correlation-request-id": [ - "011e88c5-fbd0-4958-8534-d9a6b3087e0c" + "994ff8ba-c5e0-4c6f-bfa7-ff8697a696f4" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T044935Z:011e88c5-fbd0-4958-8534-d9a6b3087e0c" + "WESTUS:20200925T014043Z:994ff8ba-c5e0-4c6f-bfa7-ff8697a696f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2745,7 +2997,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:49:34 GMT" + "Fri, 25 Sep 2020 01:40:43 GMT" ], "Expires": [ "-1" @@ -2758,13 +3010,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE16QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM3MTYtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNM01UWXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -2778,7 +3030,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM3MTYtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2787,13 +3039,13 @@ "11995" ], "x-ms-request-id": [ - "2a48a331-de3f-4927-bd92-2cf8936f1c4b" + "5181c53d-7aff-47a1-8325-1ff9021f9dc7" ], "x-ms-correlation-request-id": [ - "2a48a331-de3f-4927-bd92-2cf8936f1c4b" + "5181c53d-7aff-47a1-8325-1ff9021f9dc7" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T044950Z:2a48a331-de3f-4927-bd92-2cf8936f1c4b" + "WESTUS:20200925T014058Z:5181c53d-7aff-47a1-8325-1ff9021f9dc7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2802,7 +3054,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:49:49 GMT" + "Fri, 25 Sep 2020 01:40:58 GMT" ], "Expires": [ "-1" @@ -2815,13 +3067,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE16QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM3MTYtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNM01UWXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -2835,7 +3087,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM3MTYtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2844,13 +3096,13 @@ "11994" ], "x-ms-request-id": [ - "8ca8778b-4bfa-468b-bbfb-9a2310e1765b" + "45aae00f-5953-4200-929b-c8f36a332d39" ], "x-ms-correlation-request-id": [ - "8ca8778b-4bfa-468b-bbfb-9a2310e1765b" + "45aae00f-5953-4200-929b-c8f36a332d39" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T045005Z:8ca8778b-4bfa-468b-bbfb-9a2310e1765b" + "WESTUS:20200925T014113Z:45aae00f-5953-4200-929b-c8f36a332d39" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2859,7 +3111,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:50:05 GMT" + "Fri, 25 Sep 2020 01:41:13 GMT" ], "Expires": [ "-1" @@ -2872,13 +3124,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE16QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM3MTYtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNM01UWXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -2895,13 +3147,13 @@ "11993" ], "x-ms-request-id": [ - "431a4b0c-5750-4367-bf12-65ac83ba266f" + "fc625f96-5541-4cb2-93ab-ece9a6f6b585" ], "x-ms-correlation-request-id": [ - "431a4b0c-5750-4367-bf12-65ac83ba266f" + "fc625f96-5541-4cb2-93ab-ece9a6f6b585" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T045020Z:431a4b0c-5750-4367-bf12-65ac83ba266f" + "WESTUS:20200925T014128Z:fc625f96-5541-4cb2-93ab-ece9a6f6b585" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2910,7 +3162,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:50:20 GMT" + "Fri, 25 Sep 2020 01:41:28 GMT" ], "Expires": [ "-1" @@ -2923,13 +3175,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE16QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM3MTYtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNM01UWXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -2946,13 +3198,13 @@ "11992" ], "x-ms-request-id": [ - "e02b8346-ec75-4070-9d90-c03d20f0ac1d" + "5b6360b9-855f-48f6-a6ff-65736463b264" ], "x-ms-correlation-request-id": [ - "e02b8346-ec75-4070-9d90-c03d20f0ac1d" + "5b6360b9-855f-48f6-a6ff-65736463b264" ], "x-ms-routing-request-id": [ - "WESTUS:20200913T045020Z:e02b8346-ec75-4070-9d90-c03d20f0ac1d" + "WESTUS:20200925T014128Z:5b6360b9-855f-48f6-a6ff-65736463b264" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2961,7 +3213,7 @@ "nosniff" ], "Date": [ - "Sun, 13 Sep 2020 04:50:20 GMT" + "Fri, 25 Sep 2020 01:41:28 GMT" ], "Expires": [ "-1" @@ -2976,9 +3228,9 @@ ], "Names": { "Test-UpdateVcoreDatabaseLicenseType": [ - "ps5130", - "ps9378", - "ps2239" + "ps3716", + "ps2863", + "ps3989" ] }, "Variables": { diff --git a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestCreateDatabaseCopy.json b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestCreateDatabaseCopy.json index dd1e4f7c0a3b..2903a261435a 100644 --- a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestCreateDatabaseCopy.json +++ b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestCreateDatabaseCopy.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fc385431-5414-4c81-9cff-da4385211e60" + "ded9e49b-fecf-460a-9113-f6bacd8985a6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -30,13 +30,13 @@ "11999" ], "x-ms-request-id": [ - "8f310098-63a9-4012-aa7f-1c5984f14343" + "5847448c-6616-4559-9058-c9a321101f72" ], "x-ms-correlation-request-id": [ - "8f310098-63a9-4012-aa7f-1c5984f14343" + "5847448c-6616-4559-9058-c9a321101f72" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053114Z:8f310098-63a9-4012-aa7f-1c5984f14343" + "WESTUS:20200924T062057Z:5847448c-6616-4559-9058-c9a321101f72" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:31:14 GMT" + "Thu, 24 Sep 2020 06:20:56 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -61,19 +61,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps6377?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzNjM3Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps6551?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzNjU1MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West Europe\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0897f80b-17ba-4a74-a2a9-863f4beffc97" + "2d01361a-2580-4240-9859-d6f7d72792fd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -96,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "fe612285-4539-4083-bf81-edc7fe98c30f" + "91741ed6-be47-494f-aed4-2c59ae21e1da" ], "x-ms-correlation-request-id": [ - "fe612285-4539-4083-bf81-edc7fe98c30f" + "91741ed6-be47-494f-aed4-2c59ae21e1da" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053117Z:fe612285-4539-4083-bf81-edc7fe98c30f" + "WESTUS:20200924T062059Z:91741ed6-be47-494f-aed4-2c59ae21e1da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:31:16 GMT" + "Thu, 24 Sep 2020 06:20:58 GMT" ], "Content-Length": [ "169" @@ -123,23 +123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6377\",\r\n \"name\": \"ps6377\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551\",\r\n \"name\": \"ps6551\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6377/providers/Microsoft.Sql/servers/ps6932?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjM3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjkzMj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/servers/ps4565?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNDU2NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fa87d01d-0366-41ca-a9ca-c68c5f47ffeb" + "a72cdfba-b94d-4aed-82aa-c6ce3f1ca47d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -156,13 +156,13 @@ "gateway" ], "x-ms-request-id": [ - "da5a544f-6130-40cb-896e-a6abd723341f" + "004cc381-d146-4994-ada6-d5aba86a903d" ], "x-ms-correlation-request-id": [ - "da5a544f-6130-40cb-896e-a6abd723341f" + "004cc381-d146-4994-ada6-d5aba86a903d" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053117Z:da5a544f-6130-40cb-896e-a6abd723341f" + "WESTUS:20200924T062059Z:004cc381-d146-4994-ada6-d5aba86a903d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -171,7 +171,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:31:17 GMT" + "Thu, 24 Sep 2020 06:20:59 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -183,17 +183,17 @@ "206" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps6932' under resource group 'ps6377' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps4565' under resource group 'ps6551' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6377/providers/Microsoft.Sql/servers/ps6932?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjM3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjkzMj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/servers/ps4565?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNDU2NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -207,19 +207,19 @@ "no-cache" ], "x-ms-request-id": [ - "550b8a98-64a3-4375-921c-f23ca5ea15e8" + "6d23df1e-0b96-4b26-a53c-c1fe685c17f8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11991" ], "x-ms-correlation-request-id": [ - "e8e56c62-aa63-4871-9318-a7e067965eb8" + "12350a6e-15ce-4abc-b792-cde22dae6141" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053229Z:e8e56c62-aa63-4871-9318-a7e067965eb8" + "WESTUS:20200924T062209Z:12350a6e-15ce-4abc-b792-cde22dae6141" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -228,7 +228,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:32:28 GMT" + "Thu, 24 Sep 2020 06:22:09 GMT" ], "Content-Length": [ "412" @@ -240,23 +240,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps6932.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6377/providers/Microsoft.Sql/servers/ps6932\",\r\n \"name\": \"ps6932\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps4565.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/servers/ps4565\",\r\n \"name\": \"ps4565\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6377/providers/Microsoft.Sql/servers/ps6932?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjM3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjkzMj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/servers/ps4565?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNDU2NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cfc13629-bca9-4b5c-b5c2-673424164838" + "12ad46fe-ea25-48a8-af3d-bacfeb91bf77" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -270,19 +270,19 @@ "no-cache" ], "x-ms-request-id": [ - "07cc0bfc-f55e-4b63-8ace-c414e9f59855" + "9a00669e-a685-46ce-b115-efe2c88f46ba" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11990" ], "x-ms-correlation-request-id": [ - "80072006-4e7d-4a77-a25b-f1618bac21b5" + "8fbcb803-97ce-4ab8-88a1-2b179bd5b103" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053229Z:80072006-4e7d-4a77-a25b-f1618bac21b5" + "WESTUS:20200924T062209Z:8fbcb803-97ce-4ab8-88a1-2b179bd5b103" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -291,7 +291,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:32:29 GMT" + "Thu, 24 Sep 2020 06:22:09 GMT" ], "Content-Length": [ "412" @@ -303,23 +303,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps6932.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6377/providers/Microsoft.Sql/servers/ps6932\",\r\n \"name\": \"ps6932\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps4565.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/servers/ps4565\",\r\n \"name\": \"ps4565\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6377/providers/Microsoft.Sql/servers/ps6932?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjM3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjkzMj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/servers/ps4565?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNDU2NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dc098a25-41d7-42c8-8323-b40ba1974b89" + "d9d862ae-a616-4d71-ad14-ffbc0edd5463" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -333,19 +333,19 @@ "no-cache" ], "x-ms-request-id": [ - "ead8f5aa-8077-46f2-83b5-71b591795ded" + "afaf1edc-ca8b-4d01-8ab2-bb453d1910f5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11988" ], "x-ms-correlation-request-id": [ - "727745e8-7f63-4153-9802-8c7225c90c80" + "c2060ace-c316-491f-89ad-0060c919f2e7" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053231Z:727745e8-7f63-4153-9802-8c7225c90c80" + "WESTUS:20200924T062210Z:c2060ace-c316-491f-89ad-0060c919f2e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -354,7 +354,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:32:30 GMT" + "Thu, 24 Sep 2020 06:22:10 GMT" ], "Content-Length": [ "412" @@ -366,23 +366,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps6932.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6377/providers/Microsoft.Sql/servers/ps6932\",\r\n \"name\": \"ps6932\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps4565.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/servers/ps4565\",\r\n \"name\": \"ps4565\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6377/providers/Microsoft.Sql/servers/ps6932?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjM3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjkzMj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/servers/ps4565?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNDU2NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8a3b4fc6-1784-401d-9b81-159c80580164" + "85e1ddf9-3c26-4d10-80c3-cfe459484ac4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -396,19 +396,19 @@ "no-cache" ], "x-ms-request-id": [ - "c4b280f4-3acd-43fa-a953-0e7476d1514d" + "cde9db23-bcb5-4b70-af07-cb7fb5433eb2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11973" ], "x-ms-correlation-request-id": [ - "d7144391-f0d5-4491-b3b9-aac030d1447b" + "5e973dce-324a-4816-84cd-1913549bedfe" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053435Z:d7144391-f0d5-4491-b3b9-aac030d1447b" + "WESTUS:20200924T062409Z:5e973dce-324a-4816-84cd-1913549bedfe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -417,7 +417,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:34:34 GMT" + "Thu, 24 Sep 2020 06:24:08 GMT" ], "Content-Length": [ "412" @@ -429,23 +429,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps6932.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6377/providers/Microsoft.Sql/servers/ps6932\",\r\n \"name\": \"ps6932\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps4565.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/servers/ps4565\",\r\n \"name\": \"ps4565\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6377/providers/Microsoft.Sql/servers/ps6932?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjM3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjkzMj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/servers/ps4565?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNDU2NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bb81cc9e-d99c-448d-bbda-da5e42d703a5" + "eb3f5a71-5362-48d2-b4f5-38a05a88b54b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -459,19 +459,19 @@ "no-cache" ], "x-ms-request-id": [ - "0e43b29a-90bc-4445-a2c7-9896cbbf7add" + "90dd790f-2203-44fe-8915-6f4c27df1f50" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11971" ], "x-ms-correlation-request-id": [ - "e810ffc1-ec5c-4b60-a206-ded6fe94324a" + "28f655bd-ff6f-4d84-9986-df712b2437f8" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053611Z:e810ffc1-ec5c-4b60-a206-ded6fe94324a" + "WESTUS:20200924T062409Z:28f655bd-ff6f-4d84-9986-df712b2437f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -480,7 +480,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:36:11 GMT" + "Thu, 24 Sep 2020 06:24:08 GMT" ], "Content-Length": [ "412" @@ -492,23 +492,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps6932.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6377/providers/Microsoft.Sql/servers/ps6932\",\r\n \"name\": \"ps6932\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps4565.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/servers/ps4565\",\r\n \"name\": \"ps4565\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6377/providers/Microsoft.Sql/servers/ps6932?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjM3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjkzMj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/servers/ps4565?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNDU2NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5be702d0-934a-4854-8f5f-13bb5ee36e74" + "87fff653-fda7-465e-b058-fe8b0f7a64a6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -522,19 +522,19 @@ "no-cache" ], "x-ms-request-id": [ - "17a4e245-293e-4db2-934c-b023e6b99253" + "d6843f82-6a3c-45e2-bad6-3e161cd98017" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" + "11962" ], "x-ms-correlation-request-id": [ - "5be26adf-d4da-4e82-820e-a49a91abca8b" + "726c9dfc-027d-4bf2-b15b-085d733fa669" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053611Z:5be26adf-d4da-4e82-820e-a49a91abca8b" + "WESTUS:20200924T062545Z:726c9dfc-027d-4bf2-b15b-085d733fa669" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -543,7 +543,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:36:11 GMT" + "Thu, 24 Sep 2020 06:25:44 GMT" ], "Content-Length": [ "412" @@ -555,23 +555,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps6932.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6377/providers/Microsoft.Sql/servers/ps6932\",\r\n \"name\": \"ps6932\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps4565.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/servers/ps4565\",\r\n \"name\": \"ps4565\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6377/providers/Microsoft.Sql/servers/ps6932?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjM3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjkzMj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/servers/ps4565?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNDU2NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "40223145-2b82-4ee6-a5d1-aeaaa629f952" + "c1672a0e-6be1-402c-949c-f0f1772c1651" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -585,19 +585,19 @@ "no-cache" ], "x-ms-request-id": [ - "a90366a2-1690-4008-a5a2-698b736022f5" + "da131cb5-baf1-4e9b-9e30-3347405b48ee" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11946" + "11961" ], "x-ms-correlation-request-id": [ - "a2fbac5e-d6f5-404c-848b-3c71de4d732d" + "94ed5422-100f-41f5-beef-2d7420084ebc" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053903Z:a2fbac5e-d6f5-404c-848b-3c71de4d732d" + "WESTUS:20200924T062545Z:94ed5422-100f-41f5-beef-2d7420084ebc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -606,7 +606,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:39:03 GMT" + "Thu, 24 Sep 2020 06:25:44 GMT" ], "Content-Length": [ "412" @@ -618,32 +618,89 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps6932.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6377/providers/Microsoft.Sql/servers/ps6932\",\r\n \"name\": \"ps6932\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps4565.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/servers/ps4565\",\r\n \"name\": \"ps4565\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6377/providers/Microsoft.Sql/servers/ps6932?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjM3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjkzMj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"West Europe\"\r\n}", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/servers/ps4565?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNDU2NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b586cce3-ae32-41b7-bcc8-575ebbd6e989" + "77b10956-9e47-4914-a03a-fe729cb0a4b2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ec008606-5ace-42f2-96db-c073ffb44175" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11959" + ], + "x-ms-correlation-request-id": [ + "323a7165-7dd3-4243-841b-da14dbf0aaf1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T062545Z:323a7165-7dd3-4243-841b-da14dbf0aaf1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 06:25:45 GMT" + ], + "Content-Length": [ + "412" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Content-Length": [ - "155" + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps4565.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/servers/ps4565\",\r\n \"name\": \"ps4565\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/servers/ps4565?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNDU2NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "61be874b-73f6-4369-abd2-5e146f09d2a1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, "ResponseHeaders": { @@ -653,29 +710,20 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6377/providers/Microsoft.Sql/locations/westeurope/serverOperationResults/a1d1cdda-4a23-4634-9e27-8a7575c29f33?api-version=2019-06-01-preview" - ], - "Retry-After": [ - "1" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6377/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/a1d1cdda-4a23-4634-9e27-8a7575c29f33?api-version=2019-06-01-preview" - ], "x-ms-request-id": [ - "a1d1cdda-4a23-4634-9e27-8a7575c29f33" + "78828c25-8b3b-46d5-b9b9-08cf25f91b20" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11949" ], "x-ms-correlation-request-id": [ - "0d6103f2-a4fe-4ed4-9cac-3b9575225400" + "d5b8e4c2-d3b3-4c54-bab1-8c1e84b89caa" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053122Z:0d6103f2-a4fe-4ed4-9cac-3b9575225400" + "WESTUS:20200924T062721Z:d5b8e4c2-d3b3-4c54-bab1-8c1e84b89caa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -684,10 +732,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:31:22 GMT" + "Thu, 24 Sep 2020 06:27:20 GMT" ], "Content-Length": [ - "74" + "412" ], "Content-Type": [ "application/json; charset=utf-8" @@ -696,20 +744,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-14T05:31:22.587Z\"\r\n}", - "StatusCode": 202 + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps4565.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/servers/ps4565\",\r\n \"name\": \"ps4565\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6377/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/a1d1cdda-4a23-4634-9e27-8a7575c29f33?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjM3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2ExZDFjZGRhLTRhMjMtNDYzNC05ZTI3LThhNzU3NWMyOWYzMz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/servers/ps4565?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNDU2NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"West Europe\"\r\n}", "RequestHeaders": { + "x-ms-client-request-id": [ + "038713cb-3491-42b8-b55a-224badf10c1f" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "155" ] }, "ResponseHeaders": { @@ -719,23 +779,29 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/locations/westeurope/serverOperationResults/1c19ba00-73ab-4859-bc02-fc513ecd2281?api-version=2019-06-01-preview" + ], "Retry-After": [ "1" ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/1c19ba00-73ab-4859-bc02-fc513ecd2281?api-version=2019-06-01-preview" + ], "x-ms-request-id": [ - "6fbd559d-04c9-470b-bce3-7a7744911aa0" + "1c19ba00-73ab-4859-bc02-fc513ecd2281" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-correlation-request-id": [ - "87f63cb8-4630-4f2a-a2fa-173e1964be2c" + "d2362d6c-7c34-4856-9a02-f9cbfc1a4851" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053123Z:87f63cb8-4630-4f2a-a2fa-173e1964be2c" + "WESTUS:20200924T062103Z:d2362d6c-7c34-4856-9a02-f9cbfc1a4851" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -744,10 +810,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:31:23 GMT" + "Thu, 24 Sep 2020 06:21:02 GMT" ], "Content-Length": [ - "108" + "73" ], "Content-Type": [ "application/json; charset=utf-8" @@ -756,17 +822,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a1d1cdda-4a23-4634-9e27-8a7575c29f33\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:31:22.587Z\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-24T06:21:03.11Z\"\r\n}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6377/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/a1d1cdda-4a23-4634-9e27-8a7575c29f33?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjM3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2ExZDFjZGRhLTRhMjMtNDYzNC05ZTI3LThhNzU3NWMyOWYzMz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/1c19ba00-73ab-4859-bc02-fc513ecd2281?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzFjMTliYTAwLTczYWItNDg1OS1iYzAyLWZjNTEzZWNkMjI4MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -783,19 +849,19 @@ "1" ], "x-ms-request-id": [ - "c7eef26e-9250-45be-b3b4-64a118639866" + "9dabe226-c79a-48fd-b7d2-4ae5f7a993dc" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "x-ms-correlation-request-id": [ - "93b4c38f-dd14-4ed2-af8c-1a76f790f148" + "2991cbb5-db2b-47a7-90c1-475aa8c8f492" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053125Z:93b4c38f-dd14-4ed2-af8c-1a76f790f148" + "WESTUS:20200924T062104Z:2991cbb5-db2b-47a7-90c1-475aa8c8f492" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -804,10 +870,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:31:24 GMT" + "Thu, 24 Sep 2020 06:21:04 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -816,17 +882,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a1d1cdda-4a23-4634-9e27-8a7575c29f33\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:31:22.587Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"1c19ba00-73ab-4859-bc02-fc513ecd2281\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:21:03.11Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6377/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/a1d1cdda-4a23-4634-9e27-8a7575c29f33?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjM3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2ExZDFjZGRhLTRhMjMtNDYzNC05ZTI3LThhNzU3NWMyOWYzMz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/1c19ba00-73ab-4859-bc02-fc513ecd2281?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzFjMTliYTAwLTczYWItNDg1OS1iYzAyLWZjNTEzZWNkMjI4MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -843,19 +909,19 @@ "1" ], "x-ms-request-id": [ - "3097a067-3f31-4816-9c63-2014650eb0ba" + "d57038e8-cb6d-4859-85b3-7dc201d9f6eb" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11997" ], "x-ms-correlation-request-id": [ - "3db31062-12ab-440a-8ffe-37c60dfad0cd" + "1093040d-ade4-4115-b475-cb0be072eac4" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053126Z:3db31062-12ab-440a-8ffe-37c60dfad0cd" + "WESTUS:20200924T062106Z:1093040d-ade4-4115-b475-cb0be072eac4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -864,10 +930,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:31:25 GMT" + "Thu, 24 Sep 2020 06:21:05 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -876,17 +942,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a1d1cdda-4a23-4634-9e27-8a7575c29f33\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:31:22.587Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"1c19ba00-73ab-4859-bc02-fc513ecd2281\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:21:03.11Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6377/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/a1d1cdda-4a23-4634-9e27-8a7575c29f33?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjM3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2ExZDFjZGRhLTRhMjMtNDYzNC05ZTI3LThhNzU3NWMyOWYzMz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/1c19ba00-73ab-4859-bc02-fc513ecd2281?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzFjMTliYTAwLTczYWItNDg1OS1iYzAyLWZjNTEzZWNkMjI4MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -903,19 +969,19 @@ "1" ], "x-ms-request-id": [ - "a38d9084-886b-462b-a7cc-a9c896fd356a" + "98dafb65-2879-4279-869e-82272b749be9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11996" ], "x-ms-correlation-request-id": [ - "e644fb78-4b91-4c81-bcde-ebffb8afd66b" + "4bf20439-ae49-4dbc-8830-5f4d91e81022" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053127Z:e644fb78-4b91-4c81-bcde-ebffb8afd66b" + "WESTUS:20200924T062107Z:4bf20439-ae49-4dbc-8830-5f4d91e81022" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -924,10 +990,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:31:27 GMT" + "Thu, 24 Sep 2020 06:21:06 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -936,17 +1002,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a1d1cdda-4a23-4634-9e27-8a7575c29f33\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:31:22.587Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"1c19ba00-73ab-4859-bc02-fc513ecd2281\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:21:03.11Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6377/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/a1d1cdda-4a23-4634-9e27-8a7575c29f33?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjM3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2ExZDFjZGRhLTRhMjMtNDYzNC05ZTI3LThhNzU3NWMyOWYzMz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/1c19ba00-73ab-4859-bc02-fc513ecd2281?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzFjMTliYTAwLTczYWItNDg1OS1iYzAyLWZjNTEzZWNkMjI4MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -963,19 +1029,19 @@ "20" ], "x-ms-request-id": [ - "7f6a15db-34c0-447d-8d2a-d7cce6019a7c" + "a2346032-b6ab-438b-8768-fe0990d44c73" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11995" ], "x-ms-correlation-request-id": [ - "f8545576-738e-434d-99cb-43d8004bb1f0" + "bf5db907-1287-42ff-9b9e-2a9387b88635" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053128Z:f8545576-738e-434d-99cb-43d8004bb1f0" + "WESTUS:20200924T062108Z:bf5db907-1287-42ff-9b9e-2a9387b88635" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -984,10 +1050,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:31:28 GMT" + "Thu, 24 Sep 2020 06:21:07 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -996,17 +1062,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a1d1cdda-4a23-4634-9e27-8a7575c29f33\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:31:22.587Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"1c19ba00-73ab-4859-bc02-fc513ecd2281\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:21:03.11Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6377/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/a1d1cdda-4a23-4634-9e27-8a7575c29f33?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjM3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2ExZDFjZGRhLTRhMjMtNDYzNC05ZTI3LThhNzU3NWMyOWYzMz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/1c19ba00-73ab-4859-bc02-fc513ecd2281?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzFjMTliYTAwLTczYWItNDg1OS1iYzAyLWZjNTEzZWNkMjI4MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1023,19 +1089,19 @@ "20" ], "x-ms-request-id": [ - "142e4bbd-e38d-4d64-a09e-1f2e5ef93af7" + "455e75ed-e1f6-46c7-ab39-328cd091e782" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11994" ], "x-ms-correlation-request-id": [ - "7120ce17-481b-409b-8e51-52bd4220e5bc" + "1c533819-de4e-4869-ab9f-aa89194fa53b" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053148Z:7120ce17-481b-409b-8e51-52bd4220e5bc" + "WESTUS:20200924T062128Z:1c533819-de4e-4869-ab9f-aa89194fa53b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1044,10 +1110,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:31:48 GMT" + "Thu, 24 Sep 2020 06:21:27 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1056,17 +1122,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a1d1cdda-4a23-4634-9e27-8a7575c29f33\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:31:22.587Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"1c19ba00-73ab-4859-bc02-fc513ecd2281\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:21:03.11Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6377/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/a1d1cdda-4a23-4634-9e27-8a7575c29f33?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjM3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2ExZDFjZGRhLTRhMjMtNDYzNC05ZTI3LThhNzU3NWMyOWYzMz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/1c19ba00-73ab-4859-bc02-fc513ecd2281?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzFjMTliYTAwLTczYWItNDg1OS1iYzAyLWZjNTEzZWNkMjI4MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1083,19 +1149,19 @@ "20" ], "x-ms-request-id": [ - "5a96ccfc-2a07-4907-9a55-7424638d90e5" + "0bfca174-0317-4a1c-8002-163a1b93fc41" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11993" ], "x-ms-correlation-request-id": [ - "6cad363a-0b7e-4ac5-8097-b8003e5cbb5e" + "2a390fb2-e62a-4fad-90c9-89398bd78c0d" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053209Z:6cad363a-0b7e-4ac5-8097-b8003e5cbb5e" + "WESTUS:20200924T062148Z:2a390fb2-e62a-4fad-90c9-89398bd78c0d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1104,10 +1170,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:32:08 GMT" + "Thu, 24 Sep 2020 06:21:48 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1116,17 +1182,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a1d1cdda-4a23-4634-9e27-8a7575c29f33\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:31:22.587Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"1c19ba00-73ab-4859-bc02-fc513ecd2281\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:21:03.11Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6377/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/a1d1cdda-4a23-4634-9e27-8a7575c29f33?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjM3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2ExZDFjZGRhLTRhMjMtNDYzNC05ZTI3LThhNzU3NWMyOWYzMz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/1c19ba00-73ab-4859-bc02-fc513ecd2281?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzFjMTliYTAwLTczYWItNDg1OS1iYzAyLWZjNTEzZWNkMjI4MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1143,19 +1209,19 @@ "15" ], "x-ms-request-id": [ - "d4a4703d-7c71-4fc5-b302-4e2c540b598b" + "9963ff0e-869c-445a-b8cc-2132c96d65f6" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11992" ], "x-ms-correlation-request-id": [ - "c23839c3-0693-49b3-9768-70b7b828cc49" + "04056951-3bc2-4f26-aaf1-b53322bd8873" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053229Z:c23839c3-0693-49b3-9768-70b7b828cc49" + "WESTUS:20200924T062209Z:04056951-3bc2-4f26-aaf1-b53322bd8873" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1164,10 +1230,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:32:28 GMT" + "Thu, 24 Sep 2020 06:22:09 GMT" ], "Content-Length": [ - "107" + "106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1176,23 +1242,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a1d1cdda-4a23-4634-9e27-8a7575c29f33\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-14T05:31:22.587Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"1c19ba00-73ab-4859-bc02-fc513ecd2281\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-24T06:21:03.11Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6377/providers/Microsoft.Sql/servers/ps6932/databases/ps8931?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjM3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjkzMi9kYXRhYmFzZXMvcHM4OTMxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/servers/ps4565/databases/ps801?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNDU2NS9kYXRhYmFzZXMvcHM4MDE/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "49ebef80-3631-4489-9480-a91fbae07c7e" + "6d8d7043-b055-48eb-b1ec-6cdc9605feb9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1209,13 +1275,13 @@ "gateway" ], "x-ms-request-id": [ - "5b166a07-bfde-432e-bf84-c3fb1870dd58" + "0b22fff7-e20b-4582-8eac-e879845507cd" ], "x-ms-correlation-request-id": [ - "5b166a07-bfde-432e-bf84-c3fb1870dd58" + "0b22fff7-e20b-4582-8eac-e879845507cd" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053230Z:5b166a07-bfde-432e-bf84-c3fb1870dd58" + "WESTUS:20200924T062210Z:0b22fff7-e20b-4582-8eac-e879845507cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1224,7 +1290,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:32:29 GMT" + "Thu, 24 Sep 2020 06:22:10 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1233,20 +1299,20 @@ "-1" ], "Content-Length": [ - "223" + "222" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps6932/databases/ps8931' under resource group 'ps6377' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps4565/databases/ps801' under resource group 'ps6551' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6377/providers/Microsoft.Sql/servers/ps6932/databases/ps8931?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjM3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjkzMi9kYXRhYmFzZXMvcHM4OTMxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/servers/ps4565/databases/ps801?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNDU2NS9kYXRhYmFzZXMvcHM4MDE/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1260,19 +1326,19 @@ "no-cache" ], "x-ms-request-id": [ - "65e3a6ba-3884-4554-ac18-e9f10030e1a3" + "b8107006-382d-42dd-a618-07bb1dcc95f2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11984" ], "x-ms-correlation-request-id": [ - "6beffeed-c8c2-40c6-a9a0-c9079455daec" + "bd166f42-a350-46e9-bc66-ca29a3603177" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053322Z:6beffeed-c8c2-40c6-a9a0-c9079455daec" + "WESTUS:20200924T062259Z:bd166f42-a350-46e9-bc66-ca29a3603177" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1281,7 +1347,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:33:21 GMT" + "Thu, 24 Sep 2020 06:22:58 GMT" ], "Content-Length": [ "863" @@ -1293,23 +1359,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"212cebbb-e2d9-498d-b375-58ea19d23c40\",\r\n \"creationDate\": \"2020-09-14T05:33:13.25Z\",\r\n \"currentServiceObjectiveName\": \"S0\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-14T06:03:13.25Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6377/providers/Microsoft.Sql/servers/ps6932/databases/ps8931\",\r\n \"name\": \"ps8931\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"989be6b0-108d-4006-be86-fcf9e1ab6608\",\r\n \"creationDate\": \"2020-09-24T06:22:58.517Z\",\r\n \"currentServiceObjectiveName\": \"S0\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-24T06:52:58.517Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/servers/ps4565/databases/ps801\",\r\n \"name\": \"ps801\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6377/providers/Microsoft.Sql/servers/ps6932/databases/ps8931?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjM3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjkzMi9kYXRhYmFzZXMvcHM4OTMxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/servers/ps4565/databases/ps801?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNDU2NS9kYXRhYmFzZXMvcHM4MDE/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "89b9005d-7269-4855-a924-de8894ea259b" + "0699707d-fc55-4b34-abd4-6d77c8990db8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1323,19 +1389,19 @@ "no-cache" ], "x-ms-request-id": [ - "e865c410-b51a-4050-a833-9b7aa22b9d92" + "d76e500f-efdd-45c0-a60d-8ceef1861ae5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11970" ], "x-ms-correlation-request-id": [ - "e09f855a-b79c-401d-bad7-b6977d1e2c07" + "86bd448d-f582-4ca4-99b5-8a51e1877f54" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053435Z:e09f855a-b79c-401d-bad7-b6977d1e2c07" + "WESTUS:20200924T062409Z:86bd448d-f582-4ca4-99b5-8a51e1877f54" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1344,7 +1410,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:34:35 GMT" + "Thu, 24 Sep 2020 06:24:09 GMT" ], "Content-Length": [ "863" @@ -1356,23 +1422,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"212cebbb-e2d9-498d-b375-58ea19d23c40\",\r\n \"creationDate\": \"2020-09-14T05:33:13.25Z\",\r\n \"currentServiceObjectiveName\": \"S0\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-14T06:03:13.25Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6377/providers/Microsoft.Sql/servers/ps6932/databases/ps8931\",\r\n \"name\": \"ps8931\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"989be6b0-108d-4006-be86-fcf9e1ab6608\",\r\n \"creationDate\": \"2020-09-24T06:22:58.517Z\",\r\n \"currentServiceObjectiveName\": \"S0\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-24T06:52:58.517Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/servers/ps4565/databases/ps801\",\r\n \"name\": \"ps801\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6377/providers/Microsoft.Sql/servers/ps6932/databases/ps8931?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjM3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjkzMi9kYXRhYmFzZXMvcHM4OTMxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/servers/ps4565/databases/ps801?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNDU2NS9kYXRhYmFzZXMvcHM4MDE/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ce18cb3c-711d-41bf-8a99-08679fd442de" + "6d6cfecd-9300-4fb8-809a-a158afe4ef0d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1386,19 +1452,19 @@ "no-cache" ], "x-ms-request-id": [ - "49e314e5-b6fb-4b36-9103-a8c349925588" + "e765b881-070c-4d7d-9ce9-9fe7ce785dd1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11957" ], "x-ms-correlation-request-id": [ - "712014af-85f1-4f33-a7a7-c9a7620f3ff3" + "a0e01ced-692d-46a0-9310-34d811a5ef22" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053612Z:712014af-85f1-4f33-a7a7-c9a7620f3ff3" + "WESTUS:20200924T062546Z:a0e01ced-692d-46a0-9310-34d811a5ef22" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1407,7 +1473,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:36:11 GMT" + "Thu, 24 Sep 2020 06:25:45 GMT" ], "Content-Length": [ "863" @@ -1419,23 +1485,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"212cebbb-e2d9-498d-b375-58ea19d23c40\",\r\n \"creationDate\": \"2020-09-14T05:33:13.25Z\",\r\n \"currentServiceObjectiveName\": \"S0\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-14T06:03:13.25Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6377/providers/Microsoft.Sql/servers/ps6932/databases/ps8931\",\r\n \"name\": \"ps8931\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"989be6b0-108d-4006-be86-fcf9e1ab6608\",\r\n \"creationDate\": \"2020-09-24T06:22:58.517Z\",\r\n \"currentServiceObjectiveName\": \"S0\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-24T06:52:58.517Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/servers/ps4565/databases/ps801\",\r\n \"name\": \"ps801\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6377/providers/Microsoft.Sql/servers/ps6932/databases/ps8931?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjM3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjkzMi9kYXRhYmFzZXMvcHM4OTMxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/servers/ps4565/databases/ps801?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNDU2NS9kYXRhYmFzZXMvcHM4MDE/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"maxSizeBytes\": 0,\r\n \"readScale\": \"\"\r\n },\r\n \"location\": \"westeurope\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8d3f5a06-c3b2-4363-9b38-952ee2a43e49" + "2172dee1-9b0d-43dc-90d5-eabe08760842" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1455,16 +1521,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6377/providers/Microsoft.Sql/locations/westeurope/databaseOperationResults/fe1d2b87-966e-4c55-9ca8-2155d1bb80d5?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/locations/westeurope/databaseOperationResults/307798c2-2301-4494-a9b0-28be2817f054?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6377/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/fe1d2b87-966e-4c55-9ca8-2155d1bb80d5?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/307798c2-2301-4494-a9b0-28be2817f054?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "fe1d2b87-966e-4c55-9ca8-2155d1bb80d5" + "307798c2-2301-4494-a9b0-28be2817f054" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1473,10 +1539,10 @@ "1198" ], "x-ms-correlation-request-id": [ - "027bf17c-cd4a-40eb-9fb1-644dc544ca8a" + "6dfaf228-d07d-4cd0-9e94-a50e26cfe9cb" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053236Z:027bf17c-cd4a-40eb-9fb1-644dc544ca8a" + "WESTUS:20200924T062213Z:6dfaf228-d07d-4cd0-9e94-a50e26cfe9cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1485,10 +1551,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:32:36 GMT" + "Thu, 24 Sep 2020 06:22:13 GMT" ], "Content-Length": [ - "75" + "76" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1497,17 +1563,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2020-09-14T05:32:35.11Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2020-09-24T06:22:13.393Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6377/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/fe1d2b87-966e-4c55-9ca8-2155d1bb80d5?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjM3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZmUxZDJiODctOTY2ZS00YzU1LTljYTgtMjE1NWQxYmI4MGQ1P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/307798c2-2301-4494-a9b0-28be2817f054?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMzA3Nzk4YzItMjMwMS00NDk0LWE5YjAtMjhiZTI4MTdmMDU0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1524,19 +1590,19 @@ "15" ], "x-ms-request-id": [ - "1566c8bf-2d0f-453a-a56c-f140399bed8a" + "f9eebab6-f188-44ce-85c4-57a158931e31" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" - ], "x-ms-correlation-request-id": [ - "09aa5c2c-fe5e-4711-ad25-6821b92eaa9d" + "32b6c00a-5147-4677-947f-676874803d98" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053252Z:09aa5c2c-fe5e-4711-ad25-6821b92eaa9d" + "WESTUS:20200924T062228Z:32b6c00a-5147-4677-947f-676874803d98" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1545,10 +1611,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:32:51 GMT" + "Thu, 24 Sep 2020 06:22:28 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1557,17 +1623,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe1d2b87-966e-4c55-9ca8-2155d1bb80d5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:32:35.11Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"307798c2-2301-4494-a9b0-28be2817f054\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:22:13.393Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6377/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/fe1d2b87-966e-4c55-9ca8-2155d1bb80d5?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjM3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZmUxZDJiODctOTY2ZS00YzU1LTljYTgtMjE1NWQxYmI4MGQ1P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/307798c2-2301-4494-a9b0-28be2817f054?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMzA3Nzk4YzItMjMwMS00NDk0LWE5YjAtMjhiZTI4MTdmMDU0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1584,19 +1650,19 @@ "15" ], "x-ms-request-id": [ - "67cd32b7-fdc3-40a2-8b46-9d18198f50f3" + "2b4fa50b-e369-4207-83f4-34ea620ba003" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11986" ], "x-ms-correlation-request-id": [ - "8e781fea-fd56-434e-b77c-f6f0d09379bd" + "ed474bbf-6f1c-44ce-845d-402ffac0f234" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053307Z:8e781fea-fd56-434e-b77c-f6f0d09379bd" + "WESTUS:20200924T062243Z:ed474bbf-6f1c-44ce-845d-402ffac0f234" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1605,10 +1671,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:33:06 GMT" + "Thu, 24 Sep 2020 06:22:43 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1617,17 +1683,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe1d2b87-966e-4c55-9ca8-2155d1bb80d5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:32:35.11Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"307798c2-2301-4494-a9b0-28be2817f054\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:22:13.393Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6377/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/fe1d2b87-966e-4c55-9ca8-2155d1bb80d5?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjM3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZmUxZDJiODctOTY2ZS00YzU1LTljYTgtMjE1NWQxYmI4MGQ1P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/307798c2-2301-4494-a9b0-28be2817f054?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMzA3Nzk4YzItMjMwMS00NDk0LWE5YjAtMjhiZTI4MTdmMDU0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1644,19 +1710,19 @@ "15" ], "x-ms-request-id": [ - "79b867d3-143d-4b5a-b20e-d996eed51e5f" + "951cbd9f-d8cb-4ff4-869e-50db7427cdb4" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11985" ], "x-ms-correlation-request-id": [ - "e971c736-3fa6-4522-acbe-4a893c5165d2" + "06cf975c-6b58-405d-be86-0f33fac572d7" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053322Z:e971c736-3fa6-4522-acbe-4a893c5165d2" + "WESTUS:20200924T062259Z:06cf975c-6b58-405d-be86-0f33fac572d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1665,10 +1731,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:33:21 GMT" + "Thu, 24 Sep 2020 06:22:58 GMT" ], "Content-Length": [ - "106" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1677,23 +1743,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"fe1d2b87-966e-4c55-9ca8-2155d1bb80d5\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-14T05:32:35.11Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"307798c2-2301-4494-a9b0-28be2817f054\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-24T06:22:13.393Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps5907?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzNTkwNz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps2999?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzMjk5OT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West Europe\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "970a06d7-f429-4071-b4f9-fe1e66ab6654" + "ae770208-f927-4648-9492-f4c0df59b57b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -1713,16 +1779,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "441cb31f-9414-42c9-8970-3245b4e56acd" + "6eabef5f-0c62-43d2-b7c1-1f70257413b6" ], "x-ms-correlation-request-id": [ - "441cb31f-9414-42c9-8970-3245b4e56acd" + "6eabef5f-0c62-43d2-b7c1-1f70257413b6" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053324Z:441cb31f-9414-42c9-8970-3245b4e56acd" + "WESTUS:20200924T062300Z:6eabef5f-0c62-43d2-b7c1-1f70257413b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1731,7 +1797,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:33:24 GMT" + "Thu, 24 Sep 2020 06:23:00 GMT" ], "Content-Length": [ "169" @@ -1743,23 +1809,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5907\",\r\n \"name\": \"ps5907\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2999\",\r\n \"name\": \"ps2999\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5907/providers/Microsoft.Sql/servers/ps8350?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTkwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODM1MD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2999/providers/Microsoft.Sql/servers/ps2786?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjk5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjc4Nj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e0d3554c-b254-42e0-a199-ee5f43986052" + "1aeede30-49df-427c-ac4e-7bae309d21d6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1776,13 +1842,13 @@ "gateway" ], "x-ms-request-id": [ - "f1d1759c-a609-45af-9a37-e3737b218b3b" + "734cba5a-de9a-45f7-a812-51f4d2d94adb" ], "x-ms-correlation-request-id": [ - "f1d1759c-a609-45af-9a37-e3737b218b3b" + "734cba5a-de9a-45f7-a812-51f4d2d94adb" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053325Z:f1d1759c-a609-45af-9a37-e3737b218b3b" + "WESTUS:20200924T062300Z:734cba5a-de9a-45f7-a812-51f4d2d94adb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1791,7 +1857,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:33:24 GMT" + "Thu, 24 Sep 2020 06:23:00 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1803,17 +1869,17 @@ "206" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps8350' under resource group 'ps5907' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps2786' under resource group 'ps2999' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5907/providers/Microsoft.Sql/servers/ps8350?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTkwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODM1MD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2999/providers/Microsoft.Sql/servers/ps2786?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjk5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjc4Nj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1827,7 +1893,7 @@ "no-cache" ], "x-ms-request-id": [ - "1a406902-b290-45f8-b964-a23a103233cf" + "313099c0-2531-45ee-81ba-2466dc838494" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1836,10 +1902,10 @@ "11974" ], "x-ms-correlation-request-id": [ - "bf390d90-f23a-4e42-91c0-adef9029e612" + "10ae6772-2ff6-4c7e-b2cb-cbe8abffaa77" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053434Z:bf390d90-f23a-4e42-91c0-adef9029e612" + "WESTUS:20200924T062409Z:10ae6772-2ff6-4c7e-b2cb-cbe8abffaa77" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1848,7 +1914,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:34:33 GMT" + "Thu, 24 Sep 2020 06:24:08 GMT" ], "Content-Length": [ "412" @@ -1860,23 +1926,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps8350.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5907/providers/Microsoft.Sql/servers/ps8350\",\r\n \"name\": \"ps8350\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps2786.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2999/providers/Microsoft.Sql/servers/ps2786\",\r\n \"name\": \"ps2786\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5907/providers/Microsoft.Sql/servers/ps8350?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTkwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODM1MD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2999/providers/Microsoft.Sql/servers/ps2786?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjk5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjc4Nj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f025b6da-a10d-4135-a8b7-ccc05cc78116" + "ace5e176-6506-4ef4-b1d7-931f85626f29" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1890,19 +1956,19 @@ "no-cache" ], "x-ms-request-id": [ - "cd3cf27d-7d20-4cf0-86b6-9ccc01c096f0" + "ab5bf50a-7c70-4edf-ab0e-7094b879ed38" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "11958" ], "x-ms-correlation-request-id": [ - "5151d121-4a8e-49ef-bee4-373f39d7c2d9" + "0376453f-002d-412f-92a5-f97a80751391" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053612Z:5151d121-4a8e-49ef-bee4-373f39d7c2d9" + "WESTUS:20200924T062545Z:0376453f-002d-412f-92a5-f97a80751391" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1911,7 +1977,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:36:11 GMT" + "Thu, 24 Sep 2020 06:25:45 GMT" ], "Content-Length": [ "412" @@ -1923,23 +1989,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps8350.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5907/providers/Microsoft.Sql/servers/ps8350\",\r\n \"name\": \"ps8350\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps2786.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2999/providers/Microsoft.Sql/servers/ps2786\",\r\n \"name\": \"ps2786\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5907/providers/Microsoft.Sql/servers/ps8350?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTkwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODM1MD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2999/providers/Microsoft.Sql/servers/ps2786?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjk5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjc4Nj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"West Europe\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2be94853-35c5-482d-ac65-17b1231c5e1f" + "2ba78bd8-fb97-40d4-832e-b10dc5b69695" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1959,16 +2025,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5907/providers/Microsoft.Sql/locations/westeurope/serverOperationResults/5e011ac5-2bc0-470b-baa9-0b483bdb121c?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2999/providers/Microsoft.Sql/locations/westeurope/serverOperationResults/3c73c760-a218-4559-9523-f3f4da0e37a9?api-version=2019-06-01-preview" ], "Retry-After": [ "1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5907/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/5e011ac5-2bc0-470b-baa9-0b483bdb121c?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2999/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/3c73c760-a218-4559-9523-f3f4da0e37a9?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "5e011ac5-2bc0-470b-baa9-0b483bdb121c" + "3c73c760-a218-4559-9523-f3f4da0e37a9" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1977,10 +2043,10 @@ "1197" ], "x-ms-correlation-request-id": [ - "73cc6466-58cc-4107-8d00-35f2a164cf65" + "08886167-3c7a-4ad8-9268-00abe0707efe" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053328Z:73cc6466-58cc-4107-8d00-35f2a164cf65" + "WESTUS:20200924T062302Z:08886167-3c7a-4ad8-9268-00abe0707efe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1989,10 +2055,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:33:27 GMT" + "Thu, 24 Sep 2020 06:23:01 GMT" ], "Content-Length": [ - "73" + "74" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2001,17 +2067,77 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-14T05:33:28.36Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-24T06:23:02.213Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5907/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/5e011ac5-2bc0-470b-baa9-0b483bdb121c?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTkwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzVlMDExYWM1LTJiYzAtNDcwYi1iYWE5LTBiNDgzYmRiMTIxYz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2999/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/3c73c760-a218-4559-9523-f3f4da0e37a9?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjk5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzNjNzNjNzYwLWEyMTgtNDU1OS05NTIzLWYzZjRkYTBlMzdhOT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "17f73593-f2db-441b-83ef-9b014036c77e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-correlation-request-id": [ + "91fc6153-0132-4573-bf6b-3633df577e2b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T062303Z:91fc6153-0132-4573-bf6b-3633df577e2b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 06:23:03 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"3c73c760-a218-4559-9523-f3f4da0e37a9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:23:02.213Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2999/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/3c73c760-a218-4559-9523-f3f4da0e37a9?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjk5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzNjNzNjNzYwLWEyMTgtNDU1OS05NTIzLWYzZjRkYTBlMzdhOT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2028,7 +2154,7 @@ "1" ], "x-ms-request-id": [ - "bf1acad7-c167-4bb8-a05b-86635967ac29" + "00df2b56-55a7-4a6d-bc0b-b3f9bea8c4f4" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2037,10 +2163,10 @@ "11981" ], "x-ms-correlation-request-id": [ - "5deea871-e5ac-4aa3-8f23-1c4dc211a3cf" + "50c1ab7d-addc-4fdc-988a-2007b61eefcb" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053329Z:5deea871-e5ac-4aa3-8f23-1c4dc211a3cf" + "WESTUS:20200924T062304Z:50c1ab7d-addc-4fdc-988a-2007b61eefcb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2049,10 +2175,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:33:28 GMT" + "Thu, 24 Sep 2020 06:23:04 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2061,17 +2187,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"5e011ac5-2bc0-470b-baa9-0b483bdb121c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:33:28.36Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"3c73c760-a218-4559-9523-f3f4da0e37a9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:23:02.213Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5907/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/5e011ac5-2bc0-470b-baa9-0b483bdb121c?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTkwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzVlMDExYWM1LTJiYzAtNDcwYi1iYWE5LTBiNDgzYmRiMTIxYz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2999/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/3c73c760-a218-4559-9523-f3f4da0e37a9?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjk5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzNjNzNjNzYwLWEyMTgtNDU1OS05NTIzLWYzZjRkYTBlMzdhOT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2088,7 +2214,7 @@ "1" ], "x-ms-request-id": [ - "f9cca19d-eb92-4fea-9f2f-e3cd486bc7b4" + "376b4e41-99f0-4f24-8df5-89704bdeae8a" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2097,10 +2223,10 @@ "11980" ], "x-ms-correlation-request-id": [ - "86ad8fb5-dd23-4c1c-b65e-c4ff793a5405" + "c3c3f6ae-17d4-4b1e-98b7-f58a9249aba2" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053331Z:86ad8fb5-dd23-4c1c-b65e-c4ff793a5405" + "WESTUS:20200924T062305Z:c3c3f6ae-17d4-4b1e-98b7-f58a9249aba2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2109,10 +2235,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:33:30 GMT" + "Thu, 24 Sep 2020 06:23:05 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2121,17 +2247,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"5e011ac5-2bc0-470b-baa9-0b483bdb121c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:33:28.36Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"3c73c760-a218-4559-9523-f3f4da0e37a9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:23:02.213Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5907/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/5e011ac5-2bc0-470b-baa9-0b483bdb121c?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTkwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzVlMDExYWM1LTJiYzAtNDcwYi1iYWE5LTBiNDgzYmRiMTIxYz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2999/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/3c73c760-a218-4559-9523-f3f4da0e37a9?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjk5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzNjNzNjNzYwLWEyMTgtNDU1OS05NTIzLWYzZjRkYTBlMzdhOT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2148,7 +2274,7 @@ "1" ], "x-ms-request-id": [ - "0ca8d928-9cc1-41c7-8a81-6c1a9b31c798" + "dcb41d60-ee69-4ec6-bc68-620cf0601602" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2157,10 +2283,10 @@ "11979" ], "x-ms-correlation-request-id": [ - "9c0fb728-cf91-41f5-b5b6-5d941d4b0d9a" + "9a794167-f220-47b6-b3a3-bafa59d9f676" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053332Z:9c0fb728-cf91-41f5-b5b6-5d941d4b0d9a" + "WESTUS:20200924T062307Z:9a794167-f220-47b6-b3a3-bafa59d9f676" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2169,10 +2295,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:33:31 GMT" + "Thu, 24 Sep 2020 06:23:06 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2181,17 +2307,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"5e011ac5-2bc0-470b-baa9-0b483bdb121c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:33:28.36Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"3c73c760-a218-4559-9523-f3f4da0e37a9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:23:02.213Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5907/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/5e011ac5-2bc0-470b-baa9-0b483bdb121c?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTkwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzVlMDExYWM1LTJiYzAtNDcwYi1iYWE5LTBiNDgzYmRiMTIxYz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2999/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/3c73c760-a218-4559-9523-f3f4da0e37a9?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjk5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzNjNzNjNzYwLWEyMTgtNDU1OS05NTIzLWYzZjRkYTBlMzdhOT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2208,7 +2334,7 @@ "20" ], "x-ms-request-id": [ - "64c7f72b-15e5-4382-b06a-70ca0377e05b" + "5d420d48-aef2-430d-a4b7-9d180e797f0a" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2217,10 +2343,10 @@ "11978" ], "x-ms-correlation-request-id": [ - "9fdd89c8-f971-4e36-a9a7-6bf132325e01" + "7c353dfe-a182-4e35-8aec-fc1e48f4d05d" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053333Z:9fdd89c8-f971-4e36-a9a7-6bf132325e01" + "WESTUS:20200924T062308Z:7c353dfe-a182-4e35-8aec-fc1e48f4d05d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2229,10 +2355,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:33:32 GMT" + "Thu, 24 Sep 2020 06:23:07 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2241,17 +2367,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"5e011ac5-2bc0-470b-baa9-0b483bdb121c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:33:28.36Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"3c73c760-a218-4559-9523-f3f4da0e37a9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:23:02.213Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5907/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/5e011ac5-2bc0-470b-baa9-0b483bdb121c?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTkwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzVlMDExYWM1LTJiYzAtNDcwYi1iYWE5LTBiNDgzYmRiMTIxYz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2999/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/3c73c760-a218-4559-9523-f3f4da0e37a9?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjk5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzNjNzNjNzYwLWEyMTgtNDU1OS05NTIzLWYzZjRkYTBlMzdhOT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2268,7 +2394,7 @@ "20" ], "x-ms-request-id": [ - "195cacc6-ddfa-4e6f-bb0b-65b09daedc70" + "e31767e8-92a1-4739-a89b-08295cad55ba" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2277,10 +2403,10 @@ "11977" ], "x-ms-correlation-request-id": [ - "71e6faf4-5d73-47bc-a1aa-257782671e68" + "ae90697c-31ca-4336-97fc-a99f37210f08" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053353Z:71e6faf4-5d73-47bc-a1aa-257782671e68" + "WESTUS:20200924T062328Z:ae90697c-31ca-4336-97fc-a99f37210f08" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2289,10 +2415,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:33:53 GMT" + "Thu, 24 Sep 2020 06:23:28 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2301,17 +2427,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"5e011ac5-2bc0-470b-baa9-0b483bdb121c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:33:28.36Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"3c73c760-a218-4559-9523-f3f4da0e37a9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:23:02.213Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5907/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/5e011ac5-2bc0-470b-baa9-0b483bdb121c?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTkwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzVlMDExYWM1LTJiYzAtNDcwYi1iYWE5LTBiNDgzYmRiMTIxYz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2999/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/3c73c760-a218-4559-9523-f3f4da0e37a9?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjk5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzNjNzNjNzYwLWEyMTgtNDU1OS05NTIzLWYzZjRkYTBlMzdhOT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2328,7 +2454,7 @@ "20" ], "x-ms-request-id": [ - "b41605ae-2558-45a4-a9c7-e295ec05fa9d" + "f74a74b3-e826-496d-af2e-14a0ef388cca" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2337,10 +2463,10 @@ "11976" ], "x-ms-correlation-request-id": [ - "9594ba6e-e6bd-43d6-bffc-8e656fedbf32" + "830cda08-9067-4532-9a74-43c34f4d9457" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053414Z:9594ba6e-e6bd-43d6-bffc-8e656fedbf32" + "WESTUS:20200924T062348Z:830cda08-9067-4532-9a74-43c34f4d9457" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2349,10 +2475,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:34:13 GMT" + "Thu, 24 Sep 2020 06:23:48 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2361,17 +2487,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"5e011ac5-2bc0-470b-baa9-0b483bdb121c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:33:28.36Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"3c73c760-a218-4559-9523-f3f4da0e37a9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:23:02.213Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5907/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/5e011ac5-2bc0-470b-baa9-0b483bdb121c?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTkwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzVlMDExYWM1LTJiYzAtNDcwYi1iYWE5LTBiNDgzYmRiMTIxYz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2999/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/3c73c760-a218-4559-9523-f3f4da0e37a9?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjk5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzNjNzNjNzYwLWEyMTgtNDU1OS05NTIzLWYzZjRkYTBlMzdhOT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2388,7 +2514,7 @@ "15" ], "x-ms-request-id": [ - "32a4eca6-be0a-4ed0-97ee-41aab05e2308" + "b80410ea-9056-4ff6-bfe3-f3838fe17575" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2397,10 +2523,10 @@ "11975" ], "x-ms-correlation-request-id": [ - "51523b5d-2562-4ed1-82b3-60458dde5bd9" + "301c5770-a809-49fb-bd17-3907e06a2cd0" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053434Z:51523b5d-2562-4ed1-82b3-60458dde5bd9" + "WESTUS:20200924T062408Z:301c5770-a809-49fb-bd17-3907e06a2cd0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2409,10 +2535,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:34:33 GMT" + "Thu, 24 Sep 2020 06:24:08 GMT" ], "Content-Length": [ - "106" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2421,23 +2547,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"5e011ac5-2bc0-470b-baa9-0b483bdb121c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-14T05:33:28.36Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"3c73c760-a218-4559-9523-f3f4da0e37a9\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-24T06:23:02.213Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6377/providers/Microsoft.Sql/servers/ps6932/databases/ps5247?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjM3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjkzMi9kYXRhYmFzZXMvcHM1MjQ3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/servers/ps4565/databases/ps5670?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNDU2NS9kYXRhYmFzZXMvcHM1NjcwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "89db2631-9620-41fa-9d5f-5c80c52637a8" + "bd7626bc-e028-45cb-bb8d-5c036357379d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2454,13 +2580,13 @@ "gateway" ], "x-ms-request-id": [ - "1c69467a-d29f-40c3-9a67-76accccb33b0" + "9c2f2af6-d630-4162-8f0f-ffa6bc9b9039" ], "x-ms-correlation-request-id": [ - "1c69467a-d29f-40c3-9a67-76accccb33b0" + "9c2f2af6-d630-4162-8f0f-ffa6bc9b9039" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053435Z:1c69467a-d29f-40c3-9a67-76accccb33b0" + "WESTUS:20200924T062409Z:9c2f2af6-d630-4162-8f0f-ffa6bc9b9039" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2469,7 +2595,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:34:34 GMT" + "Thu, 24 Sep 2020 06:24:08 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2481,17 +2607,17 @@ "223" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps6932/databases/ps5247' under resource group 'ps6377' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps4565/databases/ps5670' under resource group 'ps6551' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6377/providers/Microsoft.Sql/servers/ps6932/databases/ps5247?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjM3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjkzMi9kYXRhYmFzZXMvcHM1MjQ3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/servers/ps4565/databases/ps5670?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNDU2NS9kYXRhYmFzZXMvcHM1NjcwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2505,19 +2631,19 @@ "no-cache" ], "x-ms-request-id": [ - "33e343f9-65bc-439b-bec5-a3037362fdd3" + "52a944ed-8742-4ba0-a62c-9ab642460161" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11963" ], "x-ms-correlation-request-id": [ - "60534499-9c46-45a9-8da8-ff0f8c20cee8" + "dfec069b-cebf-490e-8dd5-b256b86c1ef5" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053611Z:60534499-9c46-45a9-8da8-ff0f8c20cee8" + "WESTUS:20200924T062544Z:dfec069b-cebf-490e-8dd5-b256b86c1ef5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2526,7 +2652,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:36:10 GMT" + "Thu, 24 Sep 2020 06:25:44 GMT" ], "Content-Length": [ "865" @@ -2538,23 +2664,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"6b9c1fd4-819d-4095-94a4-739e7d62c9a0\",\r\n \"creationDate\": \"2020-09-14T05:36:07.913Z\",\r\n \"currentServiceObjectiveName\": \"S0\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-14T06:06:07.913Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6377/providers/Microsoft.Sql/servers/ps6932/databases/ps5247\",\r\n \"name\": \"ps5247\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"290d2f51-c2bd-440e-a4ac-45823867d6b8\",\r\n \"creationDate\": \"2020-09-24T06:25:28.787Z\",\r\n \"currentServiceObjectiveName\": \"S0\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-24T06:55:28.787Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/servers/ps4565/databases/ps5670\",\r\n \"name\": \"ps5670\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6377/providers/Microsoft.Sql/servers/ps6932/databases/ps5247?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjM3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjkzMi9kYXRhYmFzZXMvcHM1MjQ3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/servers/ps4565/databases/ps5670?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNDU2NS9kYXRhYmFzZXMvcHM1NjcwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"properties\": {\r\n \"createMode\": \"Copy\",\r\n \"sourceDatabaseId\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6377/providers/Microsoft.Sql/Servers/ps6932/databases/ps8931\"\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"properties\": {\r\n \"createMode\": \"Copy\",\r\n \"sourceDatabaseId\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/Servers/ps4565/databases/ps801\"\r\n },\r\n \"location\": \"westeurope\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "44fc4af0-b058-4eae-95d4-58575229db89" + "6480a2d5-28c3-4aaf-a3c7-7c0db454aded" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2563,7 +2689,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "323" + "322" ] }, "ResponseHeaders": { @@ -2574,16 +2700,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6377/providers/Microsoft.Sql/locations/westeurope/databaseOperationResults/ecefcef0-213d-4d97-82ac-58cd598fb46b?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/locations/westeurope/databaseOperationResults/04832510-2050-4414-b393-820f4ba943d8?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6377/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/ecefcef0-213d-4d97-82ac-58cd598fb46b?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/04832510-2050-4414-b393-820f4ba943d8?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "62f3057b-fbc6-48d3-a06c-01faafcc3cc9" + "d080baef-8bf7-46bf-9415-87724f6783ab" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2592,10 +2718,10 @@ "1196" ], "x-ms-correlation-request-id": [ - "402e66e1-44ee-47be-9930-d6a108edeb93" + "de555e42-9f5b-450a-9796-242a70474d1b" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053439Z:402e66e1-44ee-47be-9930-d6a108edeb93" + "WESTUS:20200924T062413Z:de555e42-9f5b-450a-9796-242a70474d1b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2604,7 +2730,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:34:38 GMT" + "Thu, 24 Sep 2020 06:24:12 GMT" ], "Content-Length": [ "75" @@ -2616,17 +2742,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2020-09-14T05:34:39.017Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2020-09-24T06:24:13.293Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6377/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/ecefcef0-213d-4d97-82ac-58cd598fb46b?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjM3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZWNlZmNlZjAtMjEzZC00ZDk3LTgyYWMtNThjZDU5OGZiNDZiP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/04832510-2050-4414-b393-820f4ba943d8?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMDQ4MzI1MTAtMjA1MC00NDE0LWIzOTMtODIwZjRiYTk0M2Q4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2643,19 +2769,19 @@ "15" ], "x-ms-request-id": [ - "2fdd7323-1940-451b-b45a-1198a164ba7d" + "489086de-3f46-4c11-ae29-abb737c38b92" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11969" ], "x-ms-correlation-request-id": [ - "af7a8ff8-5fe0-4b4e-ab3e-d2ac8498c39c" + "1678af5f-b59b-4167-84d7-2d1e782b3c24" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053454Z:af7a8ff8-5fe0-4b4e-ab3e-d2ac8498c39c" + "WESTUS:20200924T062428Z:1678af5f-b59b-4167-84d7-2d1e782b3c24" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2664,7 +2790,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:34:53 GMT" + "Thu, 24 Sep 2020 06:24:27 GMT" ], "Content-Length": [ "108" @@ -2676,17 +2802,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ecefcef0-213d-4d97-82ac-58cd598fb46b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:34:39.377Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"04832510-2050-4414-b393-820f4ba943d8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:24:13.557Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6377/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/ecefcef0-213d-4d97-82ac-58cd598fb46b?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjM3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZWNlZmNlZjAtMjEzZC00ZDk3LTgyYWMtNThjZDU5OGZiNDZiP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/04832510-2050-4414-b393-820f4ba943d8?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMDQ4MzI1MTAtMjA1MC00NDE0LWIzOTMtODIwZjRiYTk0M2Q4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2703,19 +2829,19 @@ "15" ], "x-ms-request-id": [ - "d4122969-0187-49c5-873b-39b47916ed7b" + "f4596695-4479-453b-9ddf-784efceb2de7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11968" ], "x-ms-correlation-request-id": [ - "493096f2-3511-4219-bb76-e9b9c9e8c1e2" + "6531928c-747e-4344-81d7-064d128d2e93" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053509Z:493096f2-3511-4219-bb76-e9b9c9e8c1e2" + "WESTUS:20200924T062443Z:6531928c-747e-4344-81d7-064d128d2e93" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2724,7 +2850,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:35:08 GMT" + "Thu, 24 Sep 2020 06:24:43 GMT" ], "Content-Length": [ "108" @@ -2736,17 +2862,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ecefcef0-213d-4d97-82ac-58cd598fb46b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:34:39.377Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"04832510-2050-4414-b393-820f4ba943d8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:24:13.557Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6377/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/ecefcef0-213d-4d97-82ac-58cd598fb46b?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjM3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZWNlZmNlZjAtMjEzZC00ZDk3LTgyYWMtNThjZDU5OGZiNDZiP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/04832510-2050-4414-b393-820f4ba943d8?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMDQ4MzI1MTAtMjA1MC00NDE0LWIzOTMtODIwZjRiYTk0M2Q4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2763,19 +2889,19 @@ "15" ], "x-ms-request-id": [ - "5bd03353-0e55-4171-a0d5-d77f8a884b22" + "d7df742d-b86b-4279-94a3-64b6939b3551" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11967" ], "x-ms-correlation-request-id": [ - "4dda9d38-72fd-46b8-b920-1f32c159e09b" + "1ebcbd5a-8ee4-4de1-89e5-a47858a9013e" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053525Z:4dda9d38-72fd-46b8-b920-1f32c159e09b" + "WESTUS:20200924T062459Z:1ebcbd5a-8ee4-4de1-89e5-a47858a9013e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2784,7 +2910,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:35:24 GMT" + "Thu, 24 Sep 2020 06:24:58 GMT" ], "Content-Length": [ "108" @@ -2796,17 +2922,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ecefcef0-213d-4d97-82ac-58cd598fb46b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:34:39.377Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"04832510-2050-4414-b393-820f4ba943d8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:24:13.557Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6377/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/ecefcef0-213d-4d97-82ac-58cd598fb46b?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjM3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZWNlZmNlZjAtMjEzZC00ZDk3LTgyYWMtNThjZDU5OGZiNDZiP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/04832510-2050-4414-b393-820f4ba943d8?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMDQ4MzI1MTAtMjA1MC00NDE0LWIzOTMtODIwZjRiYTk0M2Q4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2823,19 +2949,19 @@ "15" ], "x-ms-request-id": [ - "55888fee-24dd-4079-ba3e-f90b2a834b90" + "bfdf27ef-6c6d-49de-b31b-4693027fadf8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11966" ], "x-ms-correlation-request-id": [ - "a0f96023-f1bd-4575-a7aa-d6c84f1dabee" + "6aab0ab1-9cfe-455c-8500-7eb9d10a1098" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053540Z:a0f96023-f1bd-4575-a7aa-d6c84f1dabee" + "WESTUS:20200924T062514Z:6aab0ab1-9cfe-455c-8500-7eb9d10a1098" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2844,7 +2970,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:35:40 GMT" + "Thu, 24 Sep 2020 06:25:14 GMT" ], "Content-Length": [ "108" @@ -2856,17 +2982,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ecefcef0-213d-4d97-82ac-58cd598fb46b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:34:39.377Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"04832510-2050-4414-b393-820f4ba943d8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:24:13.557Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6377/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/ecefcef0-213d-4d97-82ac-58cd598fb46b?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjM3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZWNlZmNlZjAtMjEzZC00ZDk3LTgyYWMtNThjZDU5OGZiNDZiP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/04832510-2050-4414-b393-820f4ba943d8?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMDQ4MzI1MTAtMjA1MC00NDE0LWIzOTMtODIwZjRiYTk0M2Q4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2883,19 +3009,19 @@ "15" ], "x-ms-request-id": [ - "5eea0e55-2f9c-4244-839c-0f9a081a4127" + "78878807-c248-45ae-a45d-6f305e1298a7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11965" ], "x-ms-correlation-request-id": [ - "28a74473-2606-4e65-b7be-33aed1b0dfdc" + "86049283-f33f-4cb2-b38e-837aee19d605" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053555Z:28a74473-2606-4e65-b7be-33aed1b0dfdc" + "WESTUS:20200924T062529Z:86049283-f33f-4cb2-b38e-837aee19d605" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2904,7 +3030,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:35:55 GMT" + "Thu, 24 Sep 2020 06:25:29 GMT" ], "Content-Length": [ "108" @@ -2916,17 +3042,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ecefcef0-213d-4d97-82ac-58cd598fb46b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:34:39.377Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"04832510-2050-4414-b393-820f4ba943d8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:24:13.557Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6377/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/ecefcef0-213d-4d97-82ac-58cd598fb46b?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjM3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZWNlZmNlZjAtMjEzZC00ZDk3LTgyYWMtNThjZDU5OGZiNDZiP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/04832510-2050-4414-b393-820f4ba943d8?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMDQ4MzI1MTAtMjA1MC00NDE0LWIzOTMtODIwZjRiYTk0M2Q4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2943,19 +3069,19 @@ "15" ], "x-ms-request-id": [ - "f0df88dd-eacb-400d-a537-d149faac03c0" + "3df8d346-4b89-43fc-80d6-0c162fdcec97" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11964" ], "x-ms-correlation-request-id": [ - "1c656cc6-ebe1-4560-a7e6-3ae20a0654d2" + "b911ec31-f617-49e1-b31d-d0579b712b03" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053611Z:1c656cc6-ebe1-4560-a7e6-3ae20a0654d2" + "WESTUS:20200924T062544Z:b911ec31-f617-49e1-b31d-d0579b712b03" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2964,7 +3090,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:36:10 GMT" + "Thu, 24 Sep 2020 06:25:44 GMT" ], "Content-Length": [ "107" @@ -2976,23 +3102,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ecefcef0-213d-4d97-82ac-58cd598fb46b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-14T05:34:39.377Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"04832510-2050-4414-b393-820f4ba943d8\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-24T06:24:13.557Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5907/providers/Microsoft.Sql/servers/ps8350/databases/ps5247?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTkwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODM1MC9kYXRhYmFzZXMvcHM1MjQ3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2999/providers/Microsoft.Sql/servers/ps2786/databases/ps5670?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjk5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjc4Ni9kYXRhYmFzZXMvcHM1NjcwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "199f0db5-d10e-4948-ab06-f1fd458ab0fd" + "fed3c5a3-d2ca-4ab2-b99e-055323e72cce" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -3009,13 +3135,13 @@ "gateway" ], "x-ms-request-id": [ - "503e85b7-9b8b-4802-9f31-e6052962afe7" + "2a21e7f2-8c7b-4a2a-886f-938adf8d21c4" ], "x-ms-correlation-request-id": [ - "503e85b7-9b8b-4802-9f31-e6052962afe7" + "2a21e7f2-8c7b-4a2a-886f-938adf8d21c4" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053611Z:503e85b7-9b8b-4802-9f31-e6052962afe7" + "WESTUS:20200924T062545Z:2a21e7f2-8c7b-4a2a-886f-938adf8d21c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3024,7 +3150,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:36:11 GMT" + "Thu, 24 Sep 2020 06:25:45 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3036,17 +3162,17 @@ "223" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps8350/databases/ps5247' under resource group 'ps5907' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps2786/databases/ps5670' under resource group 'ps2999' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5907/providers/Microsoft.Sql/servers/ps8350/databases/ps5247?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTkwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODM1MC9kYXRhYmFzZXMvcHM1MjQ3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2999/providers/Microsoft.Sql/servers/ps2786/databases/ps5670?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjk5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjc4Ni9kYXRhYmFzZXMvcHM1NjcwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -3060,19 +3186,19 @@ "no-cache" ], "x-ms-request-id": [ - "180809c8-49e9-495c-bf1d-99df345cd091" + "c951aa38-473c-43d0-a659-f4fb3e2d2fec" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11947" + "11950" ], "x-ms-correlation-request-id": [ - "b42906d4-bc72-4a2a-8e69-866efdb527dd" + "07505882-7dc8-4b86-b5ae-8041daf37fae" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053903Z:b42906d4-bc72-4a2a-8e69-866efdb527dd" + "WESTUS:20200924T062720Z:07505882-7dc8-4b86-b5ae-8041daf37fae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3081,7 +3207,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:39:03 GMT" + "Thu, 24 Sep 2020 06:27:20 GMT" ], "Content-Length": [ "863" @@ -3093,23 +3219,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"d56d3d7e-7ee2-4bb5-9aeb-4d14908db5f1\",\r\n \"creationDate\": \"2020-09-14T05:38:48.84Z\",\r\n \"currentServiceObjectiveName\": \"S0\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-14T06:08:48.84Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5907/providers/Microsoft.Sql/servers/ps8350/databases/ps5247\",\r\n \"name\": \"ps5247\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"c6e37d66-4abd-41d4-9233-32de7740a71c\",\r\n \"creationDate\": \"2020-09-24T06:27:02.59Z\",\r\n \"currentServiceObjectiveName\": \"S0\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-24T06:57:02.59Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2999/providers/Microsoft.Sql/servers/ps2786/databases/ps5670\",\r\n \"name\": \"ps5670\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5907/providers/Microsoft.Sql/servers/ps8350/databases/ps5247?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTkwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODM1MC9kYXRhYmFzZXMvcHM1MjQ3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2999/providers/Microsoft.Sql/servers/ps2786/databases/ps5670?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjk5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjc4Ni9kYXRhYmFzZXMvcHM1NjcwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"properties\": {\r\n \"createMode\": \"Copy\",\r\n \"sourceDatabaseId\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6377/providers/Microsoft.Sql/Servers/ps6932/databases/ps8931\"\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"properties\": {\r\n \"createMode\": \"Copy\",\r\n \"sourceDatabaseId\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6551/providers/Microsoft.Sql/Servers/ps4565/databases/ps801\"\r\n },\r\n \"location\": \"westeurope\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "07df71b5-b53b-4f05-86e4-720c1bc73f35" + "565cdf4c-6827-42c9-b44d-7a6e2b0eb5c2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -3118,7 +3244,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "323" + "322" ] }, "ResponseHeaders": { @@ -3129,16 +3255,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5907/providers/Microsoft.Sql/locations/westeurope/databaseOperationResults/bb23d2c4-1eeb-4644-8090-81668a1fb7b8?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2999/providers/Microsoft.Sql/locations/westeurope/databaseOperationResults/c8fe53a8-672c-4421-b6d5-70d536352966?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5907/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/bb23d2c4-1eeb-4644-8090-81668a1fb7b8?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2999/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/c8fe53a8-672c-4421-b6d5-70d536352966?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "622ffb16-664a-4fee-b7e9-96f6427eac82" + "b5a30541-04d8-4982-a549-fb7924d8ff7d" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3147,10 +3273,10 @@ "1195" ], "x-ms-correlation-request-id": [ - "b045483d-d103-464f-9fcb-0448de2b0073" + "4b495aaf-8d6f-414b-87cf-504aeeddf110" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053615Z:b045483d-d103-464f-9fcb-0448de2b0073" + "WESTUS:20200924T062549Z:4b495aaf-8d6f-414b-87cf-504aeeddf110" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3159,10 +3285,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:36:15 GMT" + "Thu, 24 Sep 2020 06:25:48 GMT" ], "Content-Length": [ - "74" + "75" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3171,17 +3297,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2020-09-14T05:36:15.34Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2020-09-24T06:25:49.217Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5907/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/bb23d2c4-1eeb-4644-8090-81668a1fb7b8?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTkwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYmIyM2QyYzQtMWVlYi00NjQ0LTgwOTAtODE2NjhhMWZiN2I4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2999/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/c8fe53a8-672c-4421-b6d5-70d536352966?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjk5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYzhmZTUzYTgtNjcyYy00NDIxLWI2ZDUtNzBkNTM2MzUyOTY2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -3198,19 +3324,19 @@ "15" ], "x-ms-request-id": [ - "0940b5c1-f3f3-4308-a627-ff060643071f" + "2cdbb5c8-1005-4cbc-b187-6bd85c3fb0b7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" + "11956" ], "x-ms-correlation-request-id": [ - "4263321c-5092-4d8a-aeee-6709581d24a5" + "6d17e461-a818-4ad4-8921-3a09eb47a1f5" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053630Z:4263321c-5092-4d8a-aeee-6709581d24a5" + "WESTUS:20200924T062604Z:6d17e461-a818-4ad4-8921-3a09eb47a1f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3219,7 +3345,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:36:30 GMT" + "Thu, 24 Sep 2020 06:26:04 GMT" ], "Content-Length": [ "108" @@ -3231,17 +3357,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"bb23d2c4-1eeb-4644-8090-81668a1fb7b8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:36:15.527Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"c8fe53a8-672c-4421-b6d5-70d536352966\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:25:49.433Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5907/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/bb23d2c4-1eeb-4644-8090-81668a1fb7b8?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTkwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYmIyM2QyYzQtMWVlYi00NjQ0LTgwOTAtODE2NjhhMWZiN2I4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2999/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/c8fe53a8-672c-4421-b6d5-70d536352966?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjk5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYzhmZTUzYTgtNjcyYy00NDIxLWI2ZDUtNzBkNTM2MzUyOTY2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -3258,19 +3384,19 @@ "15" ], "x-ms-request-id": [ - "42de20df-4d1a-4cc1-b492-d25d31b6bd59" + "b4b9d269-a5ee-4714-9c3f-b743e2c068d7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" + "11955" ], "x-ms-correlation-request-id": [ - "3b937a9d-d1a3-4679-a92f-f4fd07589dc0" + "833af41f-1f63-4a99-92af-98b3334df655" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053646Z:3b937a9d-d1a3-4679-a92f-f4fd07589dc0" + "WESTUS:20200924T062619Z:833af41f-1f63-4a99-92af-98b3334df655" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3279,7 +3405,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:36:45 GMT" + "Thu, 24 Sep 2020 06:26:19 GMT" ], "Content-Length": [ "108" @@ -3291,17 +3417,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"bb23d2c4-1eeb-4644-8090-81668a1fb7b8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:36:15.527Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"c8fe53a8-672c-4421-b6d5-70d536352966\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:25:49.433Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5907/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/bb23d2c4-1eeb-4644-8090-81668a1fb7b8?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTkwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYmIyM2QyYzQtMWVlYi00NjQ0LTgwOTAtODE2NjhhMWZiN2I4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2999/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/c8fe53a8-672c-4421-b6d5-70d536352966?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjk5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYzhmZTUzYTgtNjcyYy00NDIxLWI2ZDUtNzBkNTM2MzUyOTY2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -3318,19 +3444,19 @@ "15" ], "x-ms-request-id": [ - "6befe400-dba3-48a2-8cc3-e148238b3cb7" + "d3dd0f3b-6e57-48a5-bf0a-a5703fe7c2e6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11954" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" - ], "x-ms-correlation-request-id": [ - "6d0a7a1b-2e68-4b51-9840-211449440828" + "fa76f7b5-bf25-412a-a7f5-f0bb6f98c90b" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053701Z:6d0a7a1b-2e68-4b51-9840-211449440828" + "WESTUS:20200924T062634Z:fa76f7b5-bf25-412a-a7f5-f0bb6f98c90b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3339,7 +3465,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:37:01 GMT" + "Thu, 24 Sep 2020 06:26:34 GMT" ], "Content-Length": [ "108" @@ -3351,17 +3477,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"bb23d2c4-1eeb-4644-8090-81668a1fb7b8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:36:15.527Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"c8fe53a8-672c-4421-b6d5-70d536352966\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:25:49.433Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5907/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/bb23d2c4-1eeb-4644-8090-81668a1fb7b8?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTkwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYmIyM2QyYzQtMWVlYi00NjQ0LTgwOTAtODE2NjhhMWZiN2I4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2999/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/c8fe53a8-672c-4421-b6d5-70d536352966?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjk5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYzhmZTUzYTgtNjcyYy00NDIxLWI2ZDUtNzBkNTM2MzUyOTY2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -3378,127 +3504,7 @@ "15" ], "x-ms-request-id": [ - "d37c7ac0-25b7-44cb-8344-a11f2a8c3e8f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" - ], - "x-ms-correlation-request-id": [ - "53e5d617-a5b8-4d76-9a10-1d2fade55732" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T053716Z:53e5d617-a5b8-4d76-9a10-1d2fade55732" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 14 Sep 2020 05:37:16 GMT" - ], - "Content-Length": [ - "108" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"bb23d2c4-1eeb-4644-8090-81668a1fb7b8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:36:15.527Z\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5907/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/bb23d2c4-1eeb-4644-8090-81668a1fb7b8?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTkwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYmIyM2QyYzQtMWVlYi00NjQ0LTgwOTAtODE2NjhhMWZiN2I4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "e827a3e8-610e-4450-b408-3495f248f704" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" - ], - "x-ms-correlation-request-id": [ - "717c6568-3e5f-455b-aa9f-fb5c6e27f5ba" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T053731Z:717c6568-3e5f-455b-aa9f-fb5c6e27f5ba" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 14 Sep 2020 05:37:31 GMT" - ], - "Content-Length": [ - "108" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"bb23d2c4-1eeb-4644-8090-81668a1fb7b8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:36:15.527Z\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5907/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/bb23d2c4-1eeb-4644-8090-81668a1fb7b8?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTkwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYmIyM2QyYzQtMWVlYi00NjQ0LTgwOTAtODE2NjhhMWZiN2I4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "4af1ee53-fb6b-47c9-b118-b7b608b6c264" + "13197928-c4fb-4193-99d8-b21a484276d5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3507,10 +3513,10 @@ "11953" ], "x-ms-correlation-request-id": [ - "03456532-1ff5-4f41-b4c7-91a8201e5e18" + "6aa3b78b-f769-4522-a886-c5cd28e45131" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053747Z:03456532-1ff5-4f41-b4c7-91a8201e5e18" + "WESTUS:20200924T062650Z:6aa3b78b-f769-4522-a886-c5cd28e45131" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3519,7 +3525,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:37:46 GMT" + "Thu, 24 Sep 2020 06:26:49 GMT" ], "Content-Length": [ "108" @@ -3531,17 +3537,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"bb23d2c4-1eeb-4644-8090-81668a1fb7b8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:36:15.527Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"c8fe53a8-672c-4421-b6d5-70d536352966\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:25:49.433Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5907/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/bb23d2c4-1eeb-4644-8090-81668a1fb7b8?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTkwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYmIyM2QyYzQtMWVlYi00NjQ0LTgwOTAtODE2NjhhMWZiN2I4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2999/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/c8fe53a8-672c-4421-b6d5-70d536352966?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjk5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYzhmZTUzYTgtNjcyYy00NDIxLWI2ZDUtNzBkNTM2MzUyOTY2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -3558,7 +3564,7 @@ "15" ], "x-ms-request-id": [ - "b90461a2-62c5-40cf-a122-cdc922cde783" + "67e820e1-12c3-4205-9559-f46045bcc210" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3567,10 +3573,10 @@ "11952" ], "x-ms-correlation-request-id": [ - "c402f0a1-45c9-47ba-8bd1-403c677ace1b" + "2075333f-006f-44b3-911a-fd76d32b51f2" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053802Z:c402f0a1-45c9-47ba-8bd1-403c677ace1b" + "WESTUS:20200924T062705Z:2075333f-006f-44b3-911a-fd76d32b51f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3579,7 +3585,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:38:01 GMT" + "Thu, 24 Sep 2020 06:27:04 GMT" ], "Content-Length": [ "108" @@ -3591,17 +3597,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"bb23d2c4-1eeb-4644-8090-81668a1fb7b8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:36:15.527Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"c8fe53a8-672c-4421-b6d5-70d536352966\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:25:49.433Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5907/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/bb23d2c4-1eeb-4644-8090-81668a1fb7b8?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTkwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYmIyM2QyYzQtMWVlYi00NjQ0LTgwOTAtODE2NjhhMWZiN2I4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2999/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/c8fe53a8-672c-4421-b6d5-70d536352966?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjk5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYzhmZTUzYTgtNjcyYy00NDIxLWI2ZDUtNzBkNTM2MzUyOTY2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -3618,7 +3624,7 @@ "15" ], "x-ms-request-id": [ - "afbf7ba6-073a-4b32-9214-a8aede636ae6" + "a541ad58-660f-411b-9d3e-a4607934ff00" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3627,70 +3633,10 @@ "11951" ], "x-ms-correlation-request-id": [ - "9e89c38d-eff5-4642-912b-9da42b4bdeda" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T053817Z:9e89c38d-eff5-4642-912b-9da42b4bdeda" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 14 Sep 2020 05:38:17 GMT" - ], - "Content-Length": [ - "108" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"bb23d2c4-1eeb-4644-8090-81668a1fb7b8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:36:15.527Z\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5907/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/bb23d2c4-1eeb-4644-8090-81668a1fb7b8?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTkwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYmIyM2QyYzQtMWVlYi00NjQ0LTgwOTAtODE2NjhhMWZiN2I4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "69181f77-599d-4447-8a42-a7dc22fa23a6" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11950" - ], - "x-ms-correlation-request-id": [ - "aa844022-9a90-4afd-95cd-36f7026549f9" + "6880f9a8-ac42-4db1-9c22-89a93305d31a" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053832Z:aa844022-9a90-4afd-95cd-36f7026549f9" + "WESTUS:20200924T062720Z:6880f9a8-ac42-4db1-9c22-89a93305d31a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3699,127 +3645,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:38:32 GMT" - ], - "Content-Length": [ - "108" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"bb23d2c4-1eeb-4644-8090-81668a1fb7b8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:36:15.527Z\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5907/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/bb23d2c4-1eeb-4644-8090-81668a1fb7b8?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTkwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYmIyM2QyYzQtMWVlYi00NjQ0LTgwOTAtODE2NjhhMWZiN2I4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "2ea2d79f-6349-4aea-b65c-fbb65a9651f2" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11949" - ], - "x-ms-correlation-request-id": [ - "2b45a6cb-8aa2-4e19-b3a3-cadf8d4744e9" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T053847Z:2b45a6cb-8aa2-4e19-b3a3-cadf8d4744e9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 14 Sep 2020 05:38:47 GMT" - ], - "Content-Length": [ - "108" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"bb23d2c4-1eeb-4644-8090-81668a1fb7b8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:36:15.527Z\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5907/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/bb23d2c4-1eeb-4644-8090-81668a1fb7b8?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTkwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYmIyM2QyYzQtMWVlYi00NjQ0LTgwOTAtODE2NjhhMWZiN2I4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "216fc49f-5c5c-491d-8d71-6906a6fbbf21" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11948" - ], - "x-ms-correlation-request-id": [ - "0891a0f1-5919-4b1f-aa7a-c1ff516d7b26" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T053903Z:0891a0f1-5919-4b1f-aa7a-c1ff516d7b26" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 14 Sep 2020 05:39:02 GMT" + "Thu, 24 Sep 2020 06:27:20 GMT" ], "Content-Length": [ "107" @@ -3831,23 +3657,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"bb23d2c4-1eeb-4644-8090-81668a1fb7b8\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-14T05:36:15.527Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"c8fe53a8-672c-4421-b6d5-70d536352966\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-24T06:25:49.433Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps6377?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzNjM3Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps6551?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzNjU1MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1d1a827c-4e81-4aba-acd7-509831c97647" + "f78beacc-4825-4451-9b99-b368dd045a3f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3861,22 +3687,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzNzctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1NTEtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14999" ], "x-ms-request-id": [ - "a4d9ef0f-7858-45e9-be1b-e56780c716f6" + "68899769-7ef0-4b93-a5b7-9f3dd67c9c37" ], "x-ms-correlation-request-id": [ - "a4d9ef0f-7858-45e9-be1b-e56780c716f6" + "68899769-7ef0-4b93-a5b7-9f3dd67c9c37" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053906Z:a4d9ef0f-7858-45e9-be1b-e56780c716f6" + "WESTUS:20200924T062729Z:68899769-7ef0-4b93-a5b7-9f3dd67c9c37" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3885,7 +3711,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:39:06 GMT" + "Thu, 24 Sep 2020 06:27:28 GMT" ], "Expires": [ "-1" @@ -3898,13 +3724,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzNzctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZek56Y3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1NTEtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU5URXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3918,22 +3744,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzNzctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1NTEtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11999" ], "x-ms-request-id": [ - "6f516d73-2c62-425e-955f-52dc469e8ad1" + "3b610cfc-8cc5-4d6d-9461-729bacb9c212" ], "x-ms-correlation-request-id": [ - "6f516d73-2c62-425e-955f-52dc469e8ad1" + "3b610cfc-8cc5-4d6d-9461-729bacb9c212" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053922Z:6f516d73-2c62-425e-955f-52dc469e8ad1" + "WESTUS:20200924T062744Z:3b610cfc-8cc5-4d6d-9461-729bacb9c212" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3942,7 +3768,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:39:21 GMT" + "Thu, 24 Sep 2020 06:27:44 GMT" ], "Expires": [ "-1" @@ -3955,13 +3781,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzNzctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZek56Y3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1NTEtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU5URXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3975,22 +3801,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzNzctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1NTEtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11998" ], "x-ms-request-id": [ - "4a03f671-e880-43b4-a985-764f6bffd137" + "6a7ddd9f-a28e-4279-af2c-7153913f3b6c" ], "x-ms-correlation-request-id": [ - "4a03f671-e880-43b4-a985-764f6bffd137" + "6a7ddd9f-a28e-4279-af2c-7153913f3b6c" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053937Z:4a03f671-e880-43b4-a985-764f6bffd137" + "WESTUS:20200924T062759Z:6a7ddd9f-a28e-4279-af2c-7153913f3b6c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3999,7 +3825,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:39:36 GMT" + "Thu, 24 Sep 2020 06:27:59 GMT" ], "Expires": [ "-1" @@ -4012,13 +3838,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzNzctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZek56Y3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1NTEtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU5URXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -4032,22 +3858,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzNzctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1NTEtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11997" ], "x-ms-request-id": [ - "8c5860be-94d4-43a7-823a-af6ba5556a68" + "73955a2f-86c9-4bc0-9914-90699df95496" ], "x-ms-correlation-request-id": [ - "8c5860be-94d4-43a7-823a-af6ba5556a68" + "73955a2f-86c9-4bc0-9914-90699df95496" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053952Z:8c5860be-94d4-43a7-823a-af6ba5556a68" + "WESTUS:20200924T062815Z:73955a2f-86c9-4bc0-9914-90699df95496" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4056,7 +3882,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:39:51 GMT" + "Thu, 24 Sep 2020 06:28:14 GMT" ], "Expires": [ "-1" @@ -4069,13 +3895,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzNzctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZek56Y3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1NTEtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU5URXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -4089,22 +3915,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzNzctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1NTEtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11996" ], "x-ms-request-id": [ - "c23e4eec-2680-4d46-a519-dcb46b2afdcb" + "c3e20bb8-26cf-4f34-9e1a-e2bad74c0064" ], "x-ms-correlation-request-id": [ - "c23e4eec-2680-4d46-a519-dcb46b2afdcb" + "c3e20bb8-26cf-4f34-9e1a-e2bad74c0064" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T054008Z:c23e4eec-2680-4d46-a519-dcb46b2afdcb" + "WESTUS:20200924T062830Z:c3e20bb8-26cf-4f34-9e1a-e2bad74c0064" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4113,7 +3939,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:40:07 GMT" + "Thu, 24 Sep 2020 06:28:29 GMT" ], "Expires": [ "-1" @@ -4126,13 +3952,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzNzctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZek56Y3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1NTEtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU5URXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -4146,22 +3972,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzNzctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1NTEtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11995" ], "x-ms-request-id": [ - "b2dfdb9e-6c32-40fb-8a3a-b17dd202abfc" + "f38fe69c-19b2-4d58-b51d-8df1513318cb" ], "x-ms-correlation-request-id": [ - "b2dfdb9e-6c32-40fb-8a3a-b17dd202abfc" + "f38fe69c-19b2-4d58-b51d-8df1513318cb" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T054023Z:b2dfdb9e-6c32-40fb-8a3a-b17dd202abfc" + "WESTUS:20200924T062845Z:f38fe69c-19b2-4d58-b51d-8df1513318cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4170,7 +3996,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:40:23 GMT" + "Thu, 24 Sep 2020 06:28:44 GMT" ], "Expires": [ "-1" @@ -4183,13 +4009,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzNzctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZek56Y3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1NTEtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU5URXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -4203,22 +4029,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzNzctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1NTEtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11994" ], "x-ms-request-id": [ - "d55af9b8-f167-4016-ac58-f4cf4dede5f3" + "7fa206a1-8d45-4163-8f9c-c08f82570fe9" ], "x-ms-correlation-request-id": [ - "d55af9b8-f167-4016-ac58-f4cf4dede5f3" + "7fa206a1-8d45-4163-8f9c-c08f82570fe9" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T054038Z:d55af9b8-f167-4016-ac58-f4cf4dede5f3" + "WESTUS:20200924T062901Z:7fa206a1-8d45-4163-8f9c-c08f82570fe9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4227,7 +4053,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:40:38 GMT" + "Thu, 24 Sep 2020 06:29:00 GMT" ], "Expires": [ "-1" @@ -4240,13 +4066,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzNzctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZek56Y3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1NTEtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU5URXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -4260,16 +4086,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11993" ], "x-ms-request-id": [ - "e672e2e0-1085-4514-9a76-23793767cc79" + "941da269-6edb-4fa7-82c0-51e55cfa9896" ], "x-ms-correlation-request-id": [ - "e672e2e0-1085-4514-9a76-23793767cc79" + "941da269-6edb-4fa7-82c0-51e55cfa9896" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T054054Z:e672e2e0-1085-4514-9a76-23793767cc79" + "WESTUS:20200924T062916Z:941da269-6edb-4fa7-82c0-51e55cfa9896" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4278,7 +4104,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:40:53 GMT" + "Thu, 24 Sep 2020 06:29:16 GMT" ], "Expires": [ "-1" @@ -4291,13 +4117,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzNzctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZek56Y3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1NTEtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU5URXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -4311,16 +4137,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11992" ], "x-ms-request-id": [ - "83e753ea-a6b3-469b-bed1-4423a413b04a" + "7535354e-3421-4da0-b514-9f07e2c44e90" ], "x-ms-correlation-request-id": [ - "83e753ea-a6b3-469b-bed1-4423a413b04a" + "7535354e-3421-4da0-b514-9f07e2c44e90" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T054054Z:83e753ea-a6b3-469b-bed1-4423a413b04a" + "WESTUS:20200924T062916Z:7535354e-3421-4da0-b514-9f07e2c44e90" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4329,7 +4155,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:40:54 GMT" + "Thu, 24 Sep 2020 06:29:16 GMT" ], "Expires": [ "-1" @@ -4342,19 +4168,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps5907?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzNTkwNz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps2999?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzMjk5OT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6df2cb83-7f49-46bc-90f3-973c94ad8488" + "4464dccc-c719-4f30-9835-cff08f949f18" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -4368,22 +4194,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5MDctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5OTktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14996" + "14998" ], "x-ms-request-id": [ - "f6f20401-abf8-429d-8995-8a6937770dd0" + "445ab591-1145-4436-b223-05143a6987e2" ], "x-ms-correlation-request-id": [ - "f6f20401-abf8-429d-8995-8a6937770dd0" + "445ab591-1145-4436-b223-05143a6987e2" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T054056Z:f6f20401-abf8-429d-8995-8a6937770dd0" + "WESTUS:20200924T062919Z:445ab591-1145-4436-b223-05143a6987e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4392,7 +4218,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:40:56 GMT" + "Thu, 24 Sep 2020 06:29:19 GMT" ], "Expires": [ "-1" @@ -4405,13 +4231,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5MDctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNU1EY3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5OTktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9Ua3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -4425,22 +4251,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5MDctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5OTktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11991" ], "x-ms-request-id": [ - "937e04b4-4666-4b41-b163-dd575c377dd8" + "e522f3d6-a084-4421-a173-e2707daabac8" ], "x-ms-correlation-request-id": [ - "937e04b4-4666-4b41-b163-dd575c377dd8" + "e522f3d6-a084-4421-a173-e2707daabac8" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T054112Z:937e04b4-4666-4b41-b163-dd575c377dd8" + "WESTUS:20200924T062934Z:e522f3d6-a084-4421-a173-e2707daabac8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4449,7 +4275,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:41:11 GMT" + "Thu, 24 Sep 2020 06:29:34 GMT" ], "Expires": [ "-1" @@ -4462,13 +4288,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5MDctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNU1EY3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5OTktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9Ua3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -4482,22 +4308,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5MDctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5OTktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11990" ], "x-ms-request-id": [ - "720c5491-fc53-443a-a3ef-d279388aff48" + "498c9494-9a7f-4435-8a1b-af6a820f8581" ], "x-ms-correlation-request-id": [ - "720c5491-fc53-443a-a3ef-d279388aff48" + "498c9494-9a7f-4435-8a1b-af6a820f8581" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T054127Z:720c5491-fc53-443a-a3ef-d279388aff48" + "WESTUS:20200924T062949Z:498c9494-9a7f-4435-8a1b-af6a820f8581" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4506,7 +4332,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:41:27 GMT" + "Thu, 24 Sep 2020 06:29:49 GMT" ], "Expires": [ "-1" @@ -4519,13 +4345,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5MDctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNU1EY3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5OTktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9Ua3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -4539,22 +4365,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5MDctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5OTktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11989" ], "x-ms-request-id": [ - "c5ebaef7-d40c-46c6-a86a-1dc85debf0e9" + "c848e52a-f7a3-40f2-bab6-06f2ab56e8a7" ], "x-ms-correlation-request-id": [ - "c5ebaef7-d40c-46c6-a86a-1dc85debf0e9" + "c848e52a-f7a3-40f2-bab6-06f2ab56e8a7" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T054142Z:c5ebaef7-d40c-46c6-a86a-1dc85debf0e9" + "WESTUS:20200924T063005Z:c848e52a-f7a3-40f2-bab6-06f2ab56e8a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4563,7 +4389,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:41:42 GMT" + "Thu, 24 Sep 2020 06:30:04 GMT" ], "Expires": [ "-1" @@ -4576,13 +4402,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5MDctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNU1EY3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5OTktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9Ua3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -4596,22 +4422,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5MDctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5OTktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11988" ], "x-ms-request-id": [ - "b06b7b27-9056-4163-9370-53ee2ceb8629" + "34a5137a-b9af-41bc-839b-0e60485e5c94" ], "x-ms-correlation-request-id": [ - "b06b7b27-9056-4163-9370-53ee2ceb8629" + "34a5137a-b9af-41bc-839b-0e60485e5c94" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T054158Z:b06b7b27-9056-4163-9370-53ee2ceb8629" + "WESTUS:20200924T063020Z:34a5137a-b9af-41bc-839b-0e60485e5c94" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4620,7 +4446,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:41:57 GMT" + "Thu, 24 Sep 2020 06:30:20 GMT" ], "Expires": [ "-1" @@ -4633,13 +4459,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5MDctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNU1EY3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5OTktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9Ua3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -4653,22 +4479,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5MDctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5OTktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11987" ], "x-ms-request-id": [ - "0ca4ac51-6a05-42ca-8692-3e0eab5e890f" + "0bf8fb81-385c-463e-9b49-91402dbff642" ], "x-ms-correlation-request-id": [ - "0ca4ac51-6a05-42ca-8692-3e0eab5e890f" + "0bf8fb81-385c-463e-9b49-91402dbff642" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T054213Z:0ca4ac51-6a05-42ca-8692-3e0eab5e890f" + "WESTUS:20200924T063035Z:0bf8fb81-385c-463e-9b49-91402dbff642" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4677,7 +4503,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:42:12 GMT" + "Thu, 24 Sep 2020 06:30:35 GMT" ], "Expires": [ "-1" @@ -4690,13 +4516,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5MDctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNU1EY3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5OTktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9Ua3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -4710,22 +4536,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5MDctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5OTktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11986" ], "x-ms-request-id": [ - "b63359c3-204c-432c-b861-a10aa9437349" + "680cf73c-ad14-418f-86b2-c9371c30f224" ], "x-ms-correlation-request-id": [ - "b63359c3-204c-432c-b861-a10aa9437349" + "680cf73c-ad14-418f-86b2-c9371c30f224" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T054228Z:b63359c3-204c-432c-b861-a10aa9437349" + "WESTUS:20200924T063051Z:680cf73c-ad14-418f-86b2-c9371c30f224" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4734,7 +4560,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:42:28 GMT" + "Thu, 24 Sep 2020 06:30:50 GMT" ], "Expires": [ "-1" @@ -4747,13 +4573,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5MDctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNU1EY3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5OTktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9Ua3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -4767,16 +4593,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11985" ], "x-ms-request-id": [ - "a1ee411f-4db6-468d-a944-db598f780451" + "a5ccecb4-0e10-49e2-84b5-31bd00887462" ], "x-ms-correlation-request-id": [ - "a1ee411f-4db6-468d-a944-db598f780451" + "a5ccecb4-0e10-49e2-84b5-31bd00887462" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T054244Z:a1ee411f-4db6-468d-a944-db598f780451" + "WESTUS:20200924T063106Z:a5ccecb4-0e10-49e2-84b5-31bd00887462" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4785,7 +4611,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:42:44 GMT" + "Thu, 24 Sep 2020 06:31:05 GMT" ], "Expires": [ "-1" @@ -4798,13 +4624,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5MDctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNU1EY3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5OTktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9Ua3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -4818,16 +4644,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11984" ], "x-ms-request-id": [ - "48ba2c62-6b6f-4abd-be3b-e600940a7b21" + "11b8c2c0-c7a3-4f6a-ae84-6671b5923c13" ], "x-ms-correlation-request-id": [ - "48ba2c62-6b6f-4abd-be3b-e600940a7b21" + "11b8c2c0-c7a3-4f6a-ae84-6671b5923c13" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T054244Z:48ba2c62-6b6f-4abd-be3b-e600940a7b21" + "WESTUS:20200924T063106Z:11b8c2c0-c7a3-4f6a-ae84-6671b5923c13" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4836,7 +4662,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:42:44 GMT" + "Thu, 24 Sep 2020 06:31:06 GMT" ], "Expires": [ "-1" @@ -4851,12 +4677,12 @@ ], "Names": { "Test-CreateDatabaseCopy": [ - "ps6377", - "ps6932", - "ps8931", - "ps5907", - "ps8350", - "ps5247" + "ps6551", + "ps4565", + "ps801", + "ps2999", + "ps2786", + "ps5670" ] }, "Variables": { diff --git a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestCreateDatabaseCopyWithBackupStorageRedundancy.json b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestCreateDatabaseCopyWithBackupStorageRedundancy.json new file mode 100644 index 000000000000..93ccb497b74c --- /dev/null +++ b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestCreateDatabaseCopyWithBackupStorageRedundancy.json @@ -0,0 +1,3650 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps2779?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzMjc3OT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "042c669d-267a-4732-87ad-7232d69c2fff" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "28" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "52090c2e-48cf-4d75-9c72-b235b4aa5045" + ], + "x-ms-correlation-request-id": [ + "52090c2e-48cf-4d75-9c72-b235b4aa5045" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T234726Z:52090c2e-48cf-4d75-9c72-b235b4aa5045" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:47:26 GMT" + ], + "Content-Length": [ + "165" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2779\",\r\n \"name\": \"ps2779\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2779/providers/Microsoft.Sql/servers/ps1860?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjc3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTg2MD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "32fa7883-8a1f-424a-862c-8d0bc0eac1c9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "d8a7b6ed-6e8d-4f97-bede-b51720fbf6a5" + ], + "x-ms-correlation-request-id": [ + "d8a7b6ed-6e8d-4f97-bede-b51720fbf6a5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T234726Z:d8a7b6ed-6e8d-4f97-bede-b51720fbf6a5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:47:26 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "206" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps1860' under resource group 'ps2779' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2779/providers/Microsoft.Sql/servers/ps1860?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjc3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTg2MD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3be7abfc-f151-476e-bfaa-206029231ce8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "00cf7df5-1620-4474-97eb-f99eacd16b6a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T234815Z:00cf7df5-1620-4474-97eb-f99eacd16b6a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:48:15 GMT" + ], + "Content-Length": [ + "408" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps1860.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2779/providers/Microsoft.Sql/servers/ps1860\",\r\n \"name\": \"ps1860\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2779/providers/Microsoft.Sql/servers/ps1860?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjc3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTg2MD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9a1be0e4-a403-4599-a030-99c346743b19" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e0aff75c-1c37-4c20-9e65-76de7d50b739" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "2f9457ea-e7f8-4a87-a51e-66a12ba334c8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T234816Z:2f9457ea-e7f8-4a87-a51e-66a12ba334c8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:48:15 GMT" + ], + "Content-Length": [ + "408" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps1860.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2779/providers/Microsoft.Sql/servers/ps1860\",\r\n \"name\": \"ps1860\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2779/providers/Microsoft.Sql/servers/ps1860?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjc3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTg2MD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "890c56e0-c498-4356-98c3-f57afe7b734d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "34ac7579-4bdd-487c-9c34-f31c88964001" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "a5118474-8fd9-4ca4-b50a-594025b54b78" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T234816Z:a5118474-8fd9-4ca4-b50a-594025b54b78" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:48:15 GMT" + ], + "Content-Length": [ + "408" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps1860.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2779/providers/Microsoft.Sql/servers/ps1860\",\r\n \"name\": \"ps1860\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2779/providers/Microsoft.Sql/servers/ps1860?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjc3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTg2MD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "516ba9d5-db63-49a4-988b-1e275fe66407" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4896d478-3cda-4fc5-8bba-4ab4d93be054" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-correlation-request-id": [ + "68400af0-87e9-4708-b737-3bbe4cc08765" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T234951Z:68400af0-87e9-4708-b737-3bbe4cc08765" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:49:51 GMT" + ], + "Content-Length": [ + "408" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps1860.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2779/providers/Microsoft.Sql/servers/ps1860\",\r\n \"name\": \"ps1860\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2779/providers/Microsoft.Sql/servers/ps1860?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjc3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTg2MD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fd62d678-79f8-4556-9848-b0c40cb3ac8f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1dc5bb4a-afc4-4aa3-a25d-03807ecdd026" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-correlation-request-id": [ + "23245386-b4f7-4014-836d-c3b74cf96754" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T234951Z:23245386-b4f7-4014-836d-c3b74cf96754" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:49:51 GMT" + ], + "Content-Length": [ + "408" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps1860.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2779/providers/Microsoft.Sql/servers/ps1860\",\r\n \"name\": \"ps1860\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2779/providers/Microsoft.Sql/servers/ps1860?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjc3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTg2MD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ad01f657-2bbd-4d91-b5cb-641f07282c33" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "eef64720-af30-45a3-85f2-2efbb07f04df" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" + ], + "x-ms-correlation-request-id": [ + "f2cca60d-982c-41d5-8541-0afdcee2dcf0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T235124Z:f2cca60d-982c-41d5-8541-0afdcee2dcf0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:51:23 GMT" + ], + "Content-Length": [ + "408" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps1860.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2779/providers/Microsoft.Sql/servers/ps1860\",\r\n \"name\": \"ps1860\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2779/providers/Microsoft.Sql/servers/ps1860?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjc3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTg2MD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"eastus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a7175694-267d-4e1a-ad05-8df3ab459c2e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "150" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2779/providers/Microsoft.Sql/locations/eastus/serverOperationResults/c5299e8f-aa84-4da9-84ce-949c60434eaa?api-version=2019-06-01-preview" + ], + "Retry-After": [ + "1" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2779/providers/Microsoft.Sql/locations/eastus/serverAzureAsyncOperation/c5299e8f-aa84-4da9-84ce-949c60434eaa?api-version=2019-06-01-preview" + ], + "x-ms-request-id": [ + "c5299e8f-aa84-4da9-84ce-949c60434eaa" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "fa496aa9-18a4-424b-8ed1-bc93961c6324" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T234729Z:fa496aa9-18a4-424b-8ed1-bc93961c6324" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:47:28 GMT" + ], + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-24T23:47:29.193Z\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2779/providers/Microsoft.Sql/locations/eastus/serverAzureAsyncOperation/c5299e8f-aa84-4da9-84ce-949c60434eaa?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjc3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vYzUyOTllOGYtYWE4NC00ZGE5LTg0Y2UtOTQ5YzYwNDM0ZWFhP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "866a8f11-7019-4974-989c-45c5722fb79b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "82ee0b9e-99b3-44fd-8652-0036dd23abba" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T234730Z:82ee0b9e-99b3-44fd-8652-0036dd23abba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:47:29 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"c5299e8f-aa84-4da9-84ce-949c60434eaa\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T23:47:29.193Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2779/providers/Microsoft.Sql/locations/eastus/serverAzureAsyncOperation/c5299e8f-aa84-4da9-84ce-949c60434eaa?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjc3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vYzUyOTllOGYtYWE4NC00ZGE5LTg0Y2UtOTQ5YzYwNDM0ZWFhP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "288c151f-7b6b-4af6-a190-871f31ab5fc4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "753525bb-e976-4db5-a44e-8309fdb2cf2d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T234731Z:753525bb-e976-4db5-a44e-8309fdb2cf2d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:47:30 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"c5299e8f-aa84-4da9-84ce-949c60434eaa\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T23:47:29.193Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2779/providers/Microsoft.Sql/locations/eastus/serverAzureAsyncOperation/c5299e8f-aa84-4da9-84ce-949c60434eaa?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjc3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vYzUyOTllOGYtYWE4NC00ZGE5LTg0Y2UtOTQ5YzYwNDM0ZWFhP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "00d9793c-3792-46cc-8319-0bd347ed8a05" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "dfb57497-6589-4ac4-83ee-e870c98050ad" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T234732Z:dfb57497-6589-4ac4-83ee-e870c98050ad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:47:31 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"c5299e8f-aa84-4da9-84ce-949c60434eaa\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T23:47:29.193Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2779/providers/Microsoft.Sql/locations/eastus/serverAzureAsyncOperation/c5299e8f-aa84-4da9-84ce-949c60434eaa?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjc3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vYzUyOTllOGYtYWE4NC00ZGE5LTg0Y2UtOTQ5YzYwNDM0ZWFhP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "93da9b23-e79e-4920-8da5-3533209245d8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "5fb5001b-9941-49f9-95ed-6182452c10d8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T234733Z:5fb5001b-9941-49f9-95ed-6182452c10d8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:47:32 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"c5299e8f-aa84-4da9-84ce-949c60434eaa\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T23:47:29.193Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2779/providers/Microsoft.Sql/locations/eastus/serverAzureAsyncOperation/c5299e8f-aa84-4da9-84ce-949c60434eaa?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjc3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vYzUyOTllOGYtYWE4NC00ZGE5LTg0Y2UtOTQ5YzYwNDM0ZWFhP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "b7b4a1e9-fbc9-4120-b33f-7089b58de620" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "584434e0-7ff9-433c-ab39-5ee3d7dd365a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T234734Z:584434e0-7ff9-433c-ab39-5ee3d7dd365a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:47:34 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"c5299e8f-aa84-4da9-84ce-949c60434eaa\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T23:47:29.193Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2779/providers/Microsoft.Sql/locations/eastus/serverAzureAsyncOperation/c5299e8f-aa84-4da9-84ce-949c60434eaa?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjc3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vYzUyOTllOGYtYWE4NC00ZGE5LTg0Y2UtOTQ5YzYwNDM0ZWFhP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "67b3afb8-aad5-4f49-9b26-0501aa8f788b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "303e65f5-c54d-4175-862f-f59d03f3d036" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T234755Z:303e65f5-c54d-4175-862f-f59d03f3d036" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:47:55 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"c5299e8f-aa84-4da9-84ce-949c60434eaa\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T23:47:29.193Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2779/providers/Microsoft.Sql/locations/eastus/serverAzureAsyncOperation/c5299e8f-aa84-4da9-84ce-949c60434eaa?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjc3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vYzUyOTllOGYtYWE4NC00ZGE5LTg0Y2UtOTQ5YzYwNDM0ZWFhP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "17076091-c565-4151-a95b-38edc58f8d7f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "af5fbfa4-fbf3-4005-9f8a-e3df4f1b97bc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T234815Z:af5fbfa4-fbf3-4005-9f8a-e3df4f1b97bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:48:15 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"c5299e8f-aa84-4da9-84ce-949c60434eaa\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-24T23:47:29.193Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2779/providers/Microsoft.Sql/servers/ps1860/databases/ps8558?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjc3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTg2MC9kYXRhYmFzZXMvcHM4NTU4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6deee1d1-45d4-4846-b275-48e051e440eb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "80bb12d9-2bf5-4c8c-b2a9-0a39602ac7ee" + ], + "x-ms-correlation-request-id": [ + "80bb12d9-2bf5-4c8c-b2a9-0a39602ac7ee" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T234816Z:80bb12d9-2bf5-4c8c-b2a9-0a39602ac7ee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:48:15 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "223" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps1860/databases/ps8558' under resource group 'ps2779' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2779/providers/Microsoft.Sql/servers/ps1860/databases/ps8558?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjc3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTg2MC9kYXRhYmFzZXMvcHM4NTU4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3de25796-ca2f-4cfc-8276-b99a53ff3fff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "b658ec2e-b1ab-4049-a62c-98da1991ef6f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T234903Z:b658ec2e-b1ab-4049-a62c-98da1991ef6f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:49:02 GMT" + ], + "Content-Length": [ + "856" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"63169592-259d-4d7b-828d-da3b825e9df4\",\r\n \"creationDate\": \"2020-09-24T23:48:58.273Z\",\r\n \"currentServiceObjectiveName\": \"S0\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"defaultSecondaryLocation\": \"westus\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-25T00:18:58.273Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2779/providers/Microsoft.Sql/servers/ps1860/databases/ps8558\",\r\n \"name\": \"ps8558\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2779/providers/Microsoft.Sql/servers/ps1860/databases/ps8558?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjc3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTg2MC9kYXRhYmFzZXMvcHM4NTU4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "96c6c4f1-8656-4457-9b5b-3dd08261b5bb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b519e6a1-6804-44d5-a651-89e6587b90c9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-correlation-request-id": [ + "15cb4b92-32e0-4e32-a821-862ca6ebdf83" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T234951Z:15cb4b92-32e0-4e32-a821-862ca6ebdf83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:49:51 GMT" + ], + "Content-Length": [ + "856" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"63169592-259d-4d7b-828d-da3b825e9df4\",\r\n \"creationDate\": \"2020-09-24T23:48:58.273Z\",\r\n \"currentServiceObjectiveName\": \"S0\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"defaultSecondaryLocation\": \"westus\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-25T00:18:58.273Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2779/providers/Microsoft.Sql/servers/ps1860/databases/ps8558\",\r\n \"name\": \"ps8558\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2779/providers/Microsoft.Sql/servers/ps1860/databases/ps8558?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjc3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTg2MC9kYXRhYmFzZXMvcHM4NTU4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"maxSizeBytes\": 0,\r\n \"readScale\": \"\"\r\n },\r\n \"location\": \"eastus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "faf75df0-1d8c-4fb8-8151-1fbab6b9f022" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "165" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2779/providers/Microsoft.Sql/locations/eastus/databaseOperationResults/5100a7c9-7d07-4b68-a710-2e4036a8c53e?api-version=2019-06-01-preview" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2779/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/5100a7c9-7d07-4b68-a710-2e4036a8c53e?api-version=2019-06-01-preview" + ], + "x-ms-request-id": [ + "5100a7c9-7d07-4b68-a710-2e4036a8c53e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "720a4739-fecb-4b43-83f0-276daaf7f385" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T234817Z:720a4739-fecb-4b43-83f0-276daaf7f385" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:48:17 GMT" + ], + "Content-Length": [ + "76" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2020-09-24T23:48:17.553Z\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2779/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/5100a7c9-7d07-4b68-a710-2e4036a8c53e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjc3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi81MTAwYTdjOS03ZDA3LTRiNjgtYTcxMC0yZTQwMzZhOGM1M2U/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "ad4d88d1-a802-40a2-b86c-6cf89c0c9696" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "8f25e642-21e4-4c9f-be45-3799f3312b72" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T234832Z:8f25e642-21e4-4c9f-be45-3799f3312b72" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:48:32 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"5100a7c9-7d07-4b68-a710-2e4036a8c53e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T23:48:17.553Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2779/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/5100a7c9-7d07-4b68-a710-2e4036a8c53e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjc3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi81MTAwYTdjOS03ZDA3LTRiNjgtYTcxMC0yZTQwMzZhOGM1M2U/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "d26ca951-9bae-4553-af6d-d26e0ef9eef5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "f7a050fa-8aa9-4811-a56d-3399157d9e6c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T234847Z:f7a050fa-8aa9-4811-a56d-3399157d9e6c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:48:47 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"5100a7c9-7d07-4b68-a710-2e4036a8c53e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T23:48:17.553Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2779/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/5100a7c9-7d07-4b68-a710-2e4036a8c53e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjc3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi81MTAwYTdjOS03ZDA3LTRiNjgtYTcxMC0yZTQwMzZhOGM1M2U/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "d760d2d6-43b9-4f79-ab0f-99be04328681" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "324164ff-6d25-4831-b7f7-59520bc0b5f9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T234902Z:324164ff-6d25-4831-b7f7-59520bc0b5f9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:49:02 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"5100a7c9-7d07-4b68-a710-2e4036a8c53e\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-24T23:48:17.553Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps231?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzMjMxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5c42b704-a6ed-4ce3-bbe2-835efe5b0329" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "28" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "83e6957f-e9ce-44ba-98a2-bb0424c18214" + ], + "x-ms-correlation-request-id": [ + "83e6957f-e9ce-44ba-98a2-bb0424c18214" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T234903Z:83e6957f-e9ce-44ba-98a2-bb0424c18214" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:49:03 GMT" + ], + "Content-Length": [ + "163" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps231\",\r\n \"name\": \"ps231\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps231/providers/Microsoft.Sql/servers/ps1258?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMxMjU4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "72da8133-b907-4f90-8939-b0c17c1a6206" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "111cb44c-b640-4d8d-bc12-04f40743d594" + ], + "x-ms-correlation-request-id": [ + "111cb44c-b640-4d8d-bc12-04f40743d594" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T234903Z:111cb44c-b640-4d8d-bc12-04f40743d594" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:49:03 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "205" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps1258' under resource group 'ps231' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps231/providers/Microsoft.Sql/servers/ps1258?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMxMjU4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9ad91a7a-13a0-4e8d-83a0-bf3726b543db" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-correlation-request-id": [ + "b89d6de1-6c87-4800-8a1d-27c3ce45d7ea" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T234951Z:b89d6de1-6c87-4800-8a1d-27c3ce45d7ea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:49:50 GMT" + ], + "Content-Length": [ + "407" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps1258.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps231/providers/Microsoft.Sql/servers/ps1258\",\r\n \"name\": \"ps1258\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps231/providers/Microsoft.Sql/servers/ps1258?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMxMjU4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"eastus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e54ca11c-ba4a-4032-bb7e-ae5750e4f413" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "150" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps231/providers/Microsoft.Sql/locations/eastus/serverOperationResults/6d1b591f-faf0-4180-b3f6-83131bdccc6b?api-version=2019-06-01-preview" + ], + "Retry-After": [ + "1" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps231/providers/Microsoft.Sql/locations/eastus/serverAzureAsyncOperation/6d1b591f-faf0-4180-b3f6-83131bdccc6b?api-version=2019-06-01-preview" + ], + "x-ms-request-id": [ + "6d1b591f-faf0-4180-b3f6-83131bdccc6b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "86205479-ba78-41b1-ad5d-dea60e4d09c0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T234904Z:86205479-ba78-41b1-ad5d-dea60e4d09c0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:49:04 GMT" + ], + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-24T23:49:04.923Z\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps231/providers/Microsoft.Sql/locations/eastus/serverAzureAsyncOperation/6d1b591f-faf0-4180-b3f6-83131bdccc6b?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9lYXN0dXMvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi82ZDFiNTkxZi1mYWYwLTQxODAtYjNmNi04MzEzMWJkY2NjNmI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "5e500bb0-5d62-4d33-bfcb-c6d82ca2b37c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-correlation-request-id": [ + "d7264e02-f7f4-44ed-99d9-e8ee28146a47" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T234906Z:d7264e02-f7f4-44ed-99d9-e8ee28146a47" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:49:05 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"6d1b591f-faf0-4180-b3f6-83131bdccc6b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T23:49:04.923Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps231/providers/Microsoft.Sql/locations/eastus/serverAzureAsyncOperation/6d1b591f-faf0-4180-b3f6-83131bdccc6b?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9lYXN0dXMvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi82ZDFiNTkxZi1mYWYwLTQxODAtYjNmNi04MzEzMWJkY2NjNmI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "d60fefca-e603-44a6-a75c-f5828dcd365d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-correlation-request-id": [ + "69303d45-a827-4120-b4fe-1f68e5d11bb7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T234907Z:69303d45-a827-4120-b4fe-1f68e5d11bb7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:49:06 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"6d1b591f-faf0-4180-b3f6-83131bdccc6b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T23:49:04.923Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps231/providers/Microsoft.Sql/locations/eastus/serverAzureAsyncOperation/6d1b591f-faf0-4180-b3f6-83131bdccc6b?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9lYXN0dXMvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi82ZDFiNTkxZi1mYWYwLTQxODAtYjNmNi04MzEzMWJkY2NjNmI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "0062426b-14ba-4c9f-87a3-9d4d5359cba4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-correlation-request-id": [ + "24142b39-ed20-4dc4-a7a2-688115db5611" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T234908Z:24142b39-ed20-4dc4-a7a2-688115db5611" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:49:07 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"6d1b591f-faf0-4180-b3f6-83131bdccc6b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T23:49:04.923Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps231/providers/Microsoft.Sql/locations/eastus/serverAzureAsyncOperation/6d1b591f-faf0-4180-b3f6-83131bdccc6b?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9lYXN0dXMvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi82ZDFiNTkxZi1mYWYwLTQxODAtYjNmNi04MzEzMWJkY2NjNmI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "27f17a63-f581-48e4-8338-a8923c7cc244" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-correlation-request-id": [ + "fbd62bfa-edee-4c87-a28f-2163a1d237df" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T234909Z:fbd62bfa-edee-4c87-a28f-2163a1d237df" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:49:08 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"6d1b591f-faf0-4180-b3f6-83131bdccc6b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T23:49:04.923Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps231/providers/Microsoft.Sql/locations/eastus/serverAzureAsyncOperation/6d1b591f-faf0-4180-b3f6-83131bdccc6b?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9lYXN0dXMvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi82ZDFiNTkxZi1mYWYwLTQxODAtYjNmNi04MzEzMWJkY2NjNmI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "2af81c48-989d-4089-b293-cf6c9fd8e84a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-correlation-request-id": [ + "539304a7-3bbe-493d-8bfb-630c4f732a4a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T234910Z:539304a7-3bbe-493d-8bfb-630c4f732a4a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:49:09 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"6d1b591f-faf0-4180-b3f6-83131bdccc6b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T23:49:04.923Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps231/providers/Microsoft.Sql/locations/eastus/serverAzureAsyncOperation/6d1b591f-faf0-4180-b3f6-83131bdccc6b?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9lYXN0dXMvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi82ZDFiNTkxZi1mYWYwLTQxODAtYjNmNi04MzEzMWJkY2NjNmI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "75f9bdf2-f904-4179-9f3f-a561b8196fdb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-correlation-request-id": [ + "728e450e-dde1-4d2f-89df-9a360d93972f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T234930Z:728e450e-dde1-4d2f-89df-9a360d93972f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:49:30 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"6d1b591f-faf0-4180-b3f6-83131bdccc6b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T23:49:04.923Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps231/providers/Microsoft.Sql/locations/eastus/serverAzureAsyncOperation/6d1b591f-faf0-4180-b3f6-83131bdccc6b?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9lYXN0dXMvc2VydmVyQXp1cmVBc3luY09wZXJhdGlvbi82ZDFiNTkxZi1mYWYwLTQxODAtYjNmNi04MzEzMWJkY2NjNmI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "1c9da63f-f8b7-42e0-9ee0-d119f0eb2092" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-correlation-request-id": [ + "4976f6a3-7a1e-4e75-b16b-acce357ca1b4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T234950Z:4976f6a3-7a1e-4e75-b16b-acce357ca1b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:49:50 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"6d1b591f-faf0-4180-b3f6-83131bdccc6b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-24T23:49:04.923Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2779/providers/Microsoft.Sql/servers/ps1860/databases/ps2115?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjc3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTg2MC9kYXRhYmFzZXMvcHMyMTE1P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "afce8f60-14c3-44c1-a90d-734fd51de719" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "45e8d6d8-085b-4113-be66-252cd696261d" + ], + "x-ms-correlation-request-id": [ + "45e8d6d8-085b-4113-be66-252cd696261d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T234951Z:45e8d6d8-085b-4113-be66-252cd696261d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:49:51 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "223" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps1860/databases/ps2115' under resource group 'ps2779' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2779/providers/Microsoft.Sql/servers/ps1860/databases/ps2115?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjc3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTg2MC9kYXRhYmFzZXMvcHMyMTE1P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "45d6b2ec-6a59-443e-ab60-1e44972c2c5d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], + "x-ms-correlation-request-id": [ + "62dbba33-148d-4ae0-be06-e9180eb9ee56" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T235124Z:62dbba33-148d-4ae0-be06-e9180eb9ee56" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:51:23 GMT" + ], + "Content-Length": [ + "854" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"d12abd1a-81cf-46eb-a2ef-5c3bde209c07\",\r\n \"creationDate\": \"2020-09-24T23:51:13.91Z\",\r\n \"currentServiceObjectiveName\": \"S0\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"defaultSecondaryLocation\": \"westus\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-25T00:21:13.91Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"storageAccountType\": \"ZRS\"\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2779/providers/Microsoft.Sql/servers/ps1860/databases/ps2115\",\r\n \"name\": \"ps2115\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2779/providers/Microsoft.Sql/servers/ps1860/databases/ps2115?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjc3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTg2MC9kYXRhYmFzZXMvcHMyMTE1P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "054a1169-f7cb-4287-b9d0-b37d7677dfc6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3bd07c68-e7a8-437f-8f91-1a01553b20d5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], + "x-ms-correlation-request-id": [ + "e5f10b06-ee16-42ac-9942-4a18cda1cebe" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T235124Z:e5f10b06-ee16-42ac-9942-4a18cda1cebe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:51:23 GMT" + ], + "Content-Length": [ + "854" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"d12abd1a-81cf-46eb-a2ef-5c3bde209c07\",\r\n \"creationDate\": \"2020-09-24T23:51:13.91Z\",\r\n \"currentServiceObjectiveName\": \"S0\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"defaultSecondaryLocation\": \"westus\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-25T00:21:13.91Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"storageAccountType\": \"ZRS\"\r\n },\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2779/providers/Microsoft.Sql/servers/ps1860/databases/ps2115\",\r\n \"name\": \"ps2115\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2779/providers/Microsoft.Sql/servers/ps1860/databases/ps2115?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjc3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTg2MC9kYXRhYmFzZXMvcHMyMTE1P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 10\r\n },\r\n \"properties\": {\r\n \"createMode\": \"Copy\",\r\n \"sourceDatabaseId\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2779/providers/Microsoft.Sql/Servers/ps1860/databases/ps8558\",\r\n \"storageAccountType\": \"ZRS\"\r\n },\r\n \"location\": \"eastus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eeb60c2b-45f9-44d1-8ac3-90fff09a7b28" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "353" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2779/providers/Microsoft.Sql/locations/eastus/databaseOperationResults/8ab55c02-b498-4f5f-973a-bbca827f3229?api-version=2019-06-01-preview" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2779/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8ab55c02-b498-4f5f-973a-bbca827f3229?api-version=2019-06-01-preview" + ], + "x-ms-request-id": [ + "8aa3bf15-a994-4d83-bdd0-8687b183e601" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "44aa24ff-0431-4bad-a93e-fdd0cb7e4d81" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T234952Z:44aa24ff-0431-4bad-a93e-fdd0cb7e4d81" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:49:52 GMT" + ], + "Content-Length": [ + "75" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2020-09-24T23:49:52.677Z\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2779/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8ab55c02-b498-4f5f-973a-bbca827f3229?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjc3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi84YWI1NWMwMi1iNDk4LTRmNWYtOTczYS1iYmNhODI3ZjMyMjk/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "e9a2ac59-9de0-4484-af9c-aff36cebae44" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "x-ms-correlation-request-id": [ + "402bf759-eca0-45f0-bfcb-1eb1451ceec4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T235008Z:402bf759-eca0-45f0-bfcb-1eb1451ceec4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:50:07 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"8ab55c02-b498-4f5f-973a-bbca827f3229\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T23:49:52.913Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2779/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8ab55c02-b498-4f5f-973a-bbca827f3229?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjc3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi84YWI1NWMwMi1iNDk4LTRmNWYtOTczYS1iYmNhODI3ZjMyMjk/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "4ff6ecd4-6075-488a-a6a0-833e28efe955" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-correlation-request-id": [ + "4173aef9-50fe-4cab-a8ba-02f425942ee8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T235023Z:4173aef9-50fe-4cab-a8ba-02f425942ee8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:50:22 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"8ab55c02-b498-4f5f-973a-bbca827f3229\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T23:49:52.913Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2779/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8ab55c02-b498-4f5f-973a-bbca827f3229?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjc3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi84YWI1NWMwMi1iNDk4LTRmNWYtOTczYS1iYmNhODI3ZjMyMjk/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "9c3a0110-fafc-4dd2-a4e0-67701365476b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "x-ms-correlation-request-id": [ + "f2679510-71ac-44eb-b031-adbaa66f8d9e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T235038Z:f2679510-71ac-44eb-b031-adbaa66f8d9e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:50:38 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"8ab55c02-b498-4f5f-973a-bbca827f3229\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T23:49:52.913Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2779/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8ab55c02-b498-4f5f-973a-bbca827f3229?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjc3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi84YWI1NWMwMi1iNDk4LTRmNWYtOTczYS1iYmNhODI3ZjMyMjk/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "4180d543-8522-4b2b-b9ed-e4ac26bf672d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-correlation-request-id": [ + "a7a6809c-54ec-47a1-ac90-57740c0d3ab3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T235053Z:a7a6809c-54ec-47a1-ac90-57740c0d3ab3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:50:53 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"8ab55c02-b498-4f5f-973a-bbca827f3229\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T23:49:52.913Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2779/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8ab55c02-b498-4f5f-973a-bbca827f3229?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjc3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi84YWI1NWMwMi1iNDk4LTRmNWYtOTczYS1iYmNhODI3ZjMyMjk/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "fe274e1c-20a8-4950-b6db-65921fd72c84" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-correlation-request-id": [ + "1b42c5cf-8f51-4f6d-ac3f-48e1e0b24380" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T235108Z:1b42c5cf-8f51-4f6d-ac3f-48e1e0b24380" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:51:08 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"8ab55c02-b498-4f5f-973a-bbca827f3229\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T23:49:52.913Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2779/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8ab55c02-b498-4f5f-973a-bbca827f3229?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjc3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvZWFzdHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi84YWI1NWMwMi1iNDk4LTRmNWYtOTczYS1iYmNhODI3ZjMyMjk/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "88444893-1ffc-41b9-abf3-89729e33e25c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "x-ms-correlation-request-id": [ + "3a2507c8-00e8-4d5b-89de-9f09acecc02b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T235124Z:3a2507c8-00e8-4d5b-89de-9f09acecc02b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:51:23 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"8ab55c02-b498-4f5f-973a-bbca827f3229\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-24T23:49:52.913Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps2779?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzMjc3OT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "29a0a9c2-6c2a-4170-addb-3d2d71a46059" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI3NzktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "f3081e34-0770-4de5-b513-e0ce50f74312" + ], + "x-ms-correlation-request-id": [ + "f3081e34-0770-4de5-b513-e0ce50f74312" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T235126Z:f3081e34-0770-4de5-b513-e0ce50f74312" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:51:25 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI3NzktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJM056a3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI3NzktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "c38b55eb-dceb-46de-9d10-6cc12eb055b9" + ], + "x-ms-correlation-request-id": [ + "c38b55eb-dceb-46de-9d10-6cc12eb055b9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T235141Z:c38b55eb-dceb-46de-9d10-6cc12eb055b9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:51:40 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI3NzktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJM056a3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI3NzktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "c67ce8f8-0e08-4a91-876c-d5b3ddcc86f6" + ], + "x-ms-correlation-request-id": [ + "c67ce8f8-0e08-4a91-876c-d5b3ddcc86f6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T235156Z:c67ce8f8-0e08-4a91-876c-d5b3ddcc86f6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:51:56 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI3NzktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJM056a3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI3NzktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "56d7e2ee-6b56-4abd-8b65-1c20240352de" + ], + "x-ms-correlation-request-id": [ + "56d7e2ee-6b56-4abd-8b65-1c20240352de" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T235211Z:56d7e2ee-6b56-4abd-8b65-1c20240352de" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:52:11 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI3NzktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJM056a3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI3NzktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "702efc64-f403-48b5-a721-c710ae767295" + ], + "x-ms-correlation-request-id": [ + "702efc64-f403-48b5-a721-c710ae767295" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T235227Z:702efc64-f403-48b5-a721-c710ae767295" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:52:26 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI3NzktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJM056a3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI3NzktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "3d7dc121-2e2d-437a-b716-9eed7f2404a5" + ], + "x-ms-correlation-request-id": [ + "3d7dc121-2e2d-437a-b716-9eed7f2404a5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T235242Z:3d7dc121-2e2d-437a-b716-9eed7f2404a5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:52:41 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI3NzktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJM056a3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "2bec77b4-15d5-475f-b7d0-895e71b0a061" + ], + "x-ms-correlation-request-id": [ + "2bec77b4-15d5-475f-b7d0-895e71b0a061" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T235257Z:2bec77b4-15d5-475f-b7d0-895e71b0a061" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:52:56 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI3NzktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJM056a3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "63f86041-60ec-43dc-8edd-567dc75c068c" + ], + "x-ms-correlation-request-id": [ + "63f86041-60ec-43dc-8edd-567dc75c068c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T235257Z:63f86041-60ec-43dc-8edd-567dc75c068c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:52:57 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps231?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzMjMxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4dda4d59-f9a7-4409-a7e6-a965c9bebad8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-request-id": [ + "a1624c15-f6f0-4e8a-870f-ea0ca278b94b" + ], + "x-ms-correlation-request-id": [ + "a1624c15-f6f0-4e8a-870f-ea0ca278b94b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T235258Z:a1624c15-f6f0-4e8a-870f-ea0ca278b94b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:52:58 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJek1TMUZRVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "2c5fa3f0-eb65-44bf-a2f2-3eb4b94dd917" + ], + "x-ms-correlation-request-id": [ + "2c5fa3f0-eb65-44bf-a2f2-3eb4b94dd917" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T235314Z:2c5fa3f0-eb65-44bf-a2f2-3eb4b94dd917" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:53:13 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJek1TMUZRVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "186be752-534e-4ba9-ba0b-bff5eb401813" + ], + "x-ms-correlation-request-id": [ + "186be752-534e-4ba9-ba0b-bff5eb401813" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T235329Z:186be752-534e-4ba9-ba0b-bff5eb401813" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:53:28 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJek1TMUZRVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "6dc79000-7b22-44b1-9c36-f524c3efb05a" + ], + "x-ms-correlation-request-id": [ + "6dc79000-7b22-44b1-9c36-f524c3efb05a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T235344Z:6dc79000-7b22-44b1-9c36-f524c3efb05a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:53:43 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJek1TMUZRVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "4cc18508-0867-477b-bb34-73e1ec4cd08d" + ], + "x-ms-correlation-request-id": [ + "4cc18508-0867-477b-bb34-73e1ec4cd08d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T235359Z:4cc18508-0867-477b-bb34-73e1ec4cd08d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:53:59 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJek1TMUZRVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-request-id": [ + "fc4c0c1a-3d6f-4987-a8d8-9d5b2aaa4a73" + ], + "x-ms-correlation-request-id": [ + "fc4c0c1a-3d6f-4987-a8d8-9d5b2aaa4a73" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T235414Z:fc4c0c1a-3d6f-4987-a8d8-9d5b2aaa4a73" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:54:14 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJek1TMUZRVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-request-id": [ + "bf588146-7e43-4031-affc-d5df5e59b5a6" + ], + "x-ms-correlation-request-id": [ + "bf588146-7e43-4031-affc-d5df5e59b5a6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T235430Z:bf588146-7e43-4031-affc-d5df5e59b5a6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:54:29 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJek1TMUZRVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-request-id": [ + "091086df-a17d-4658-9a0c-a9a6d358e60f" + ], + "x-ms-correlation-request-id": [ + "091086df-a17d-4658-9a0c-a9a6d358e60f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T235430Z:091086df-a17d-4658-9a0c-a9a6d358e60f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 23:54:29 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-CreateDatabaseCopyWithBackupStorageRedundancy": [ + "ps2779", + "ps1860", + "ps8558", + "ps231", + "ps1258", + "ps2115" + ] + }, + "Variables": { + "SubscriptionId": "412b782d-2511-4c6d-98f2-3ea01b1c83c3" + } +} \ No newline at end of file diff --git a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestCreateNamedSecondaryDatabase.json b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestCreateNamedSecondaryDatabase.json index 11b8ccd84009..5c62bc7a3c37 100644 --- a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestCreateNamedSecondaryDatabase.json +++ b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestCreateNamedSecondaryDatabase.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2e426c22-5feb-414c-9690-9a6a0d61f4b6" + "74254901-fdd8-4d8d-b809-168101952433" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -30,13 +30,13 @@ "11999" ], "x-ms-request-id": [ - "371ed058-85c6-4363-8a5e-494c90b681bd" + "ff0e0c3b-666c-495f-b0c8-bf8dda13fe50" ], "x-ms-correlation-request-id": [ - "371ed058-85c6-4363-8a5e-494c90b681bd" + "ff0e0c3b-666c-495f-b0c8-bf8dda13fe50" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045015Z:371ed058-85c6-4363-8a5e-494c90b681bd" + "WESTUS:20200924T055153Z:ff0e0c3b-666c-495f-b0c8-bf8dda13fe50" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:50:14 GMT" + "Thu, 24 Sep 2020 05:51:53 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -61,19 +61,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps2115?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzMjExNT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps9593?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzOTU5Mz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West Europe\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "26ee0e84-d1bd-4f69-87f3-88001cae896a" + "65245e16-52a3-48da-a470-6808c3e708e8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -96,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "2ba5bd45-a35a-4768-89d8-053abbbea79c" + "634fe9e1-53bc-433d-bc84-27d890da3159" ], "x-ms-correlation-request-id": [ - "2ba5bd45-a35a-4768-89d8-053abbbea79c" + "634fe9e1-53bc-433d-bc84-27d890da3159" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045017Z:2ba5bd45-a35a-4768-89d8-053abbbea79c" + "WESTUS:20200924T055155Z:634fe9e1-53bc-433d-bc84-27d890da3159" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:50:16 GMT" + "Thu, 24 Sep 2020 05:51:55 GMT" ], "Content-Length": [ "169" @@ -123,23 +123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2115\",\r\n \"name\": \"ps2115\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9593\",\r\n \"name\": \"ps9593\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2115/providers/Microsoft.Sql/servers/ps9184?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTE4ND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9593/providers/Microsoft.Sql/servers/ps2661?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjY2MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5b7fee49-4869-4a6a-adda-c8ee1d5d2e4a" + "27d331b5-47e1-4372-b4e6-a565d80c3eb0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -156,13 +156,13 @@ "gateway" ], "x-ms-request-id": [ - "38b7f651-d479-4ee8-a80a-c5780cf61fe1" + "b24b6968-d94b-4da6-9321-ea8529822a0e" ], "x-ms-correlation-request-id": [ - "38b7f651-d479-4ee8-a80a-c5780cf61fe1" + "b24b6968-d94b-4da6-9321-ea8529822a0e" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045018Z:38b7f651-d479-4ee8-a80a-c5780cf61fe1" + "WESTUS:20200924T055155Z:b24b6968-d94b-4da6-9321-ea8529822a0e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -171,7 +171,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:50:17 GMT" + "Thu, 24 Sep 2020 05:51:55 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -183,17 +183,17 @@ "206" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps9184' under resource group 'ps2115' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps2661' under resource group 'ps9593' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2115/providers/Microsoft.Sql/servers/ps9184?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTE4ND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9593/providers/Microsoft.Sql/servers/ps2661?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjY2MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -207,19 +207,19 @@ "no-cache" ], "x-ms-request-id": [ - "7cc16b85-eb4c-469e-9625-a13c3a9cf504" + "25e22289-659f-49ea-8e59-d411950c550b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11990" ], "x-ms-correlation-request-id": [ - "67e537b2-4c3f-4303-b5a7-32c787769aad" + "24931225-06a5-4bf9-992e-e554d47c61b2" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045108Z:67e537b2-4c3f-4303-b5a7-32c787769aad" + "WESTUS:20200924T055307Z:24931225-06a5-4bf9-992e-e554d47c61b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -228,7 +228,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:51:08 GMT" + "Thu, 24 Sep 2020 05:53:07 GMT" ], "Content-Length": [ "412" @@ -240,23 +240,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps9184.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2115/providers/Microsoft.Sql/servers/ps9184\",\r\n \"name\": \"ps9184\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps2661.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9593/providers/Microsoft.Sql/servers/ps2661\",\r\n \"name\": \"ps2661\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2115/providers/Microsoft.Sql/servers/ps9184?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTE4ND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9593/providers/Microsoft.Sql/servers/ps2661?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjY2MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4287440a-8d88-4f90-a98c-4927b26133dd" + "08c953fb-ad6c-4215-89a5-fba04c2f0d19" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -270,19 +270,19 @@ "no-cache" ], "x-ms-request-id": [ - "db55a889-2a72-4e7a-906d-4951b7199f4a" + "7f7250e7-961e-4280-98ad-6ad8810719fb" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11989" ], "x-ms-correlation-request-id": [ - "da1b297d-32a3-4437-bdd1-ce26d889b50d" + "0de3cd6b-67ca-495d-b12a-eb581c3f21f8" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045108Z:da1b297d-32a3-4437-bdd1-ce26d889b50d" + "WESTUS:20200924T055307Z:0de3cd6b-67ca-495d-b12a-eb581c3f21f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -291,7 +291,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:51:08 GMT" + "Thu, 24 Sep 2020 05:53:07 GMT" ], "Content-Length": [ "412" @@ -303,23 +303,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps9184.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2115/providers/Microsoft.Sql/servers/ps9184\",\r\n \"name\": \"ps9184\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps2661.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9593/providers/Microsoft.Sql/servers/ps2661\",\r\n \"name\": \"ps2661\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2115/providers/Microsoft.Sql/servers/ps9184?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTE4ND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9593/providers/Microsoft.Sql/servers/ps2661?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjY2MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fc03c3f0-3b23-4397-b8e4-e658581cbb00" + "8274f767-08c1-4495-9fec-2517d7232276" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -333,19 +333,19 @@ "no-cache" ], "x-ms-request-id": [ - "eb002d7f-4ebd-4884-b904-9b27c4d6bd25" + "3cbd3403-0d3d-49f3-aaa7-942281487cb6" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11987" ], "x-ms-correlation-request-id": [ - "291e2b10-1944-433c-b483-58cb63e0a5a4" + "b32979e1-e41d-4a3f-a71d-399a3c8a8e78" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045109Z:291e2b10-1944-433c-b483-58cb63e0a5a4" + "WESTUS:20200924T055308Z:b32979e1-e41d-4a3f-a71d-399a3c8a8e78" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -354,7 +354,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:51:09 GMT" + "Thu, 24 Sep 2020 05:53:07 GMT" ], "Content-Length": [ "412" @@ -366,23 +366,86 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps9184.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2115/providers/Microsoft.Sql/servers/ps9184\",\r\n \"name\": \"ps9184\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps2661.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9593/providers/Microsoft.Sql/servers/ps2661\",\r\n \"name\": \"ps2661\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2115/providers/Microsoft.Sql/servers/ps9184?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTE4ND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9593/providers/Microsoft.Sql/servers/ps2661?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjY2MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "065124d6-eedd-4500-9a48-131ef3a018ba" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f1ddab38-b187-49eb-8d6b-0f59f1947051" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-correlation-request-id": [ + "93961396-e1ba-4c37-9882-34e28fdded6e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T055520Z:93961396-e1ba-4c37-9882-34e28fdded6e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 05:55:19 GMT" + ], + "Content-Length": [ + "412" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps2661.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9593/providers/Microsoft.Sql/servers/ps2661\",\r\n \"name\": \"ps2661\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9593/providers/Microsoft.Sql/servers/ps2661?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjY2MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"West Europe\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d6670159-b0ee-41e3-ae69-4d724bf69fe0" + "6a8c5eb9-4e11-46c4-83ee-1d2f15547dd1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -402,16 +465,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2115/providers/Microsoft.Sql/locations/westeurope/serverOperationResults/53eca3e1-3073-4797-bfc3-328a9ac7bafe?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9593/providers/Microsoft.Sql/locations/westeurope/serverOperationResults/13ac393e-8297-4cc5-9cb5-b8c8a92716ba?api-version=2019-06-01-preview" ], "Retry-After": [ "1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2115/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/53eca3e1-3073-4797-bfc3-328a9ac7bafe?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9593/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/13ac393e-8297-4cc5-9cb5-b8c8a92716ba?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "53eca3e1-3073-4797-bfc3-328a9ac7bafe" + "13ac393e-8297-4cc5-9cb5-b8c8a92716ba" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -420,10 +483,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "1819023a-a9b9-49b3-ba67-5d478ce04faf" + "08dd740d-ffe9-421a-8729-dd122c165867" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045022Z:1819023a-a9b9-49b3-ba67-5d478ce04faf" + "WESTUS:20200924T055200Z:08dd740d-ffe9-421a-8729-dd122c165867" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,10 +495,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:50:21 GMT" + "Thu, 24 Sep 2020 05:52:00 GMT" ], "Content-Length": [ - "74" + "73" ], "Content-Type": [ "application/json; charset=utf-8" @@ -444,17 +507,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-14T04:50:21.983Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-24T05:52:00.79Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2115/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/53eca3e1-3073-4797-bfc3-328a9ac7bafe?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzUzZWNhM2UxLTMwNzMtNDc5Ny1iZmMzLTMyOGE5YWM3YmFmZT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9593/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/13ac393e-8297-4cc5-9cb5-b8c8a92716ba?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzEzYWMzOTNlLTgyOTctNGNjNS05Y2I1LWI4YzhhOTI3MTZiYT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -471,7 +534,7 @@ "1" ], "x-ms-request-id": [ - "e4169d46-3cde-4d46-8963-1001e59b676c" + "a3b8d4bd-c4de-4394-a28a-383159151cfd" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -480,10 +543,10 @@ "11998" ], "x-ms-correlation-request-id": [ - "f675845e-1534-4dc7-916f-1f388d082953" + "129663f9-a215-4979-be64-f44f85e209ea" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045023Z:f675845e-1534-4dc7-916f-1f388d082953" + "WESTUS:20200924T055202Z:129663f9-a215-4979-be64-f44f85e209ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -492,10 +555,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:50:22 GMT" + "Thu, 24 Sep 2020 05:52:01 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -504,17 +567,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"53eca3e1-3073-4797-bfc3-328a9ac7bafe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:50:21.983Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"13ac393e-8297-4cc5-9cb5-b8c8a92716ba\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:52:00.79Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2115/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/53eca3e1-3073-4797-bfc3-328a9ac7bafe?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzUzZWNhM2UxLTMwNzMtNDc5Ny1iZmMzLTMyOGE5YWM3YmFmZT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9593/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/13ac393e-8297-4cc5-9cb5-b8c8a92716ba?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzEzYWMzOTNlLTgyOTctNGNjNS05Y2I1LWI4YzhhOTI3MTZiYT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -531,7 +594,7 @@ "1" ], "x-ms-request-id": [ - "71c0a415-d133-425a-b5f2-8a10d66a5a2f" + "4f2126a1-0036-4bb0-a3d7-c99859525a07" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -540,10 +603,10 @@ "11997" ], "x-ms-correlation-request-id": [ - "cb2934fa-0ece-49a5-a208-c5d2c8375ab7" + "defa49a5-bf3e-463c-97c4-264178e6b02d" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045024Z:cb2934fa-0ece-49a5-a208-c5d2c8375ab7" + "WESTUS:20200924T055203Z:defa49a5-bf3e-463c-97c4-264178e6b02d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -552,10 +615,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:50:23 GMT" + "Thu, 24 Sep 2020 05:52:03 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -564,17 +627,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"53eca3e1-3073-4797-bfc3-328a9ac7bafe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:50:21.983Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"13ac393e-8297-4cc5-9cb5-b8c8a92716ba\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:52:00.79Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2115/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/53eca3e1-3073-4797-bfc3-328a9ac7bafe?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzUzZWNhM2UxLTMwNzMtNDc5Ny1iZmMzLTMyOGE5YWM3YmFmZT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9593/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/13ac393e-8297-4cc5-9cb5-b8c8a92716ba?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzEzYWMzOTNlLTgyOTctNGNjNS05Y2I1LWI4YzhhOTI3MTZiYT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -591,7 +654,7 @@ "1" ], "x-ms-request-id": [ - "495a669b-7b57-42b4-b2a3-b1ec66947d47" + "e545678f-c3de-4e2b-bb45-56ef47fcd3d6" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -600,10 +663,10 @@ "11996" ], "x-ms-correlation-request-id": [ - "640382f1-e422-422f-9274-43c55b295e49" + "0e8b4588-dd5d-4862-bd1c-861ef3a7ddf3" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045025Z:640382f1-e422-422f-9274-43c55b295e49" + "WESTUS:20200924T055204Z:0e8b4588-dd5d-4862-bd1c-861ef3a7ddf3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -612,10 +675,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:50:24 GMT" + "Thu, 24 Sep 2020 05:52:04 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -624,17 +687,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"53eca3e1-3073-4797-bfc3-328a9ac7bafe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:50:21.983Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"13ac393e-8297-4cc5-9cb5-b8c8a92716ba\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:52:00.79Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2115/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/53eca3e1-3073-4797-bfc3-328a9ac7bafe?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzUzZWNhM2UxLTMwNzMtNDc5Ny1iZmMzLTMyOGE5YWM3YmFmZT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9593/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/13ac393e-8297-4cc5-9cb5-b8c8a92716ba?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzEzYWMzOTNlLTgyOTctNGNjNS05Y2I1LWI4YzhhOTI3MTZiYT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -651,7 +714,7 @@ "1" ], "x-ms-request-id": [ - "e6dad2ee-ebe8-4601-8c9c-ecddeba41f7b" + "4b3d29d2-77ef-422c-bf28-c926ee2d9cf1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -660,10 +723,10 @@ "11995" ], "x-ms-correlation-request-id": [ - "88046937-3b82-47ed-91d8-4633f9b81e25" + "53bd2d8a-14fe-49e6-be20-fd6a2715d87f" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045026Z:88046937-3b82-47ed-91d8-4633f9b81e25" + "WESTUS:20200924T055205Z:53bd2d8a-14fe-49e6-be20-fd6a2715d87f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -672,10 +735,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:50:25 GMT" + "Thu, 24 Sep 2020 05:52:05 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -684,17 +747,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"53eca3e1-3073-4797-bfc3-328a9ac7bafe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:50:21.983Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"13ac393e-8297-4cc5-9cb5-b8c8a92716ba\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:52:00.79Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2115/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/53eca3e1-3073-4797-bfc3-328a9ac7bafe?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzUzZWNhM2UxLTMwNzMtNDc5Ny1iZmMzLTMyOGE5YWM3YmFmZT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9593/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/13ac393e-8297-4cc5-9cb5-b8c8a92716ba?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzEzYWMzOTNlLTgyOTctNGNjNS05Y2I1LWI4YzhhOTI3MTZiYT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -711,7 +774,7 @@ "20" ], "x-ms-request-id": [ - "ee784d6b-9432-4d8c-86eb-efc5546b8d1a" + "ce141cce-70e5-4fde-b48f-e7bf565b3993" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -720,10 +783,10 @@ "11994" ], "x-ms-correlation-request-id": [ - "9acb7cbb-8fff-4005-827a-f411393eff32" + "e082c77a-b95c-4be5-bce1-dee4d7ce60f1" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045028Z:9acb7cbb-8fff-4005-827a-f411393eff32" + "WESTUS:20200924T055206Z:e082c77a-b95c-4be5-bce1-dee4d7ce60f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -732,10 +795,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:50:27 GMT" + "Thu, 24 Sep 2020 05:52:06 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -744,17 +807,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"53eca3e1-3073-4797-bfc3-328a9ac7bafe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:50:21.983Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"13ac393e-8297-4cc5-9cb5-b8c8a92716ba\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:52:00.79Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2115/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/53eca3e1-3073-4797-bfc3-328a9ac7bafe?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzUzZWNhM2UxLTMwNzMtNDc5Ny1iZmMzLTMyOGE5YWM3YmFmZT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9593/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/13ac393e-8297-4cc5-9cb5-b8c8a92716ba?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzEzYWMzOTNlLTgyOTctNGNjNS05Y2I1LWI4YzhhOTI3MTZiYT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -771,7 +834,7 @@ "20" ], "x-ms-request-id": [ - "1e654b64-e0b8-4f37-aaaa-38454aae559f" + "f8b14a30-2128-4239-96e6-e6ede2d1f91f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -780,10 +843,10 @@ "11993" ], "x-ms-correlation-request-id": [ - "ba8213a4-0689-478c-af59-8e8f297122ce" + "b66b477e-d512-4ceb-98f9-0e3375ec3079" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045048Z:ba8213a4-0689-478c-af59-8e8f297122ce" + "WESTUS:20200924T055227Z:b66b477e-d512-4ceb-98f9-0e3375ec3079" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -792,10 +855,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:50:48 GMT" + "Thu, 24 Sep 2020 05:52:26 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -804,17 +867,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"53eca3e1-3073-4797-bfc3-328a9ac7bafe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:50:21.983Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"13ac393e-8297-4cc5-9cb5-b8c8a92716ba\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:52:00.79Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2115/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/53eca3e1-3073-4797-bfc3-328a9ac7bafe?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzUzZWNhM2UxLTMwNzMtNDc5Ny1iZmMzLTMyOGE5YWM3YmFmZT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9593/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/13ac393e-8297-4cc5-9cb5-b8c8a92716ba?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzEzYWMzOTNlLTgyOTctNGNjNS05Y2I1LWI4YzhhOTI3MTZiYT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -828,10 +891,10 @@ "no-cache" ], "Retry-After": [ - "15" + "20" ], "x-ms-request-id": [ - "baa12934-3448-4edc-96a4-f7657a8184cf" + "58700565-0cec-4a01-aa9b-b48b7ef7c90a" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -840,10 +903,10 @@ "11992" ], "x-ms-correlation-request-id": [ - "c955a8ec-5ef7-4897-8de3-550d5a901c55" + "31ae8c4e-4263-4c17-b6c2-7459b6f4b497" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045108Z:c955a8ec-5ef7-4897-8de3-550d5a901c55" + "WESTUS:20200924T055247Z:31ae8c4e-4263-4c17-b6c2-7459b6f4b497" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -852,7 +915,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:51:08 GMT" + "Thu, 24 Sep 2020 05:52:46 GMT" ], "Content-Length": [ "107" @@ -864,23 +927,83 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"53eca3e1-3073-4797-bfc3-328a9ac7bafe\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-14T04:50:21.983Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"13ac393e-8297-4cc5-9cb5-b8c8a92716ba\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:52:00.79Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2115/providers/Microsoft.Sql/servers/ps9184/databases/ps1184?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTE4NC9kYXRhYmFzZXMvcHMxMTg0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9593/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/13ac393e-8297-4cc5-9cb5-b8c8a92716ba?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzEzYWMzOTNlLTgyOTctNGNjNS05Y2I1LWI4YzhhOTI3MTZiYT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "a9ef7c49-ee9d-4ec2-b111-a559995aaa58" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "214b3b22-2db7-463b-a15e-48078a719a6e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T055307Z:214b3b22-2db7-463b-a15e-48078a719a6e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 05:53:06 GMT" + ], + "Content-Length": [ + "106" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"13ac393e-8297-4cc5-9cb5-b8c8a92716ba\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-24T05:52:00.79Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9593/providers/Microsoft.Sql/servers/ps2661/databases/ps7157?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjY2MS9kYXRhYmFzZXMvcHM3MTU3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5b475df8-71d1-45dc-a280-4aa8493bb204" + "9f2b8b0c-655b-40d3-8146-0168a900c963" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -897,13 +1020,13 @@ "gateway" ], "x-ms-request-id": [ - "4cef3467-4efa-4ad8-987e-1fff6a6b03da" + "3862456f-0d30-4c83-b3fe-bc952bae1817" ], "x-ms-correlation-request-id": [ - "4cef3467-4efa-4ad8-987e-1fff6a6b03da" + "3862456f-0d30-4c83-b3fe-bc952bae1817" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045109Z:4cef3467-4efa-4ad8-987e-1fff6a6b03da" + "WESTUS:20200924T055308Z:3862456f-0d30-4c83-b3fe-bc952bae1817" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -912,7 +1035,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:51:08 GMT" + "Thu, 24 Sep 2020 05:53:07 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -924,17 +1047,17 @@ "223" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps9184/databases/ps1184' under resource group 'ps2115' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps2661/databases/ps7157' under resource group 'ps9593' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2115/providers/Microsoft.Sql/servers/ps9184/databases/ps1184?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTE4NC9kYXRhYmFzZXMvcHMxMTg0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9593/providers/Microsoft.Sql/servers/ps2661/databases/ps7157?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjY2MS9kYXRhYmFzZXMvcHM3MTU3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -948,19 +1071,19 @@ "no-cache" ], "x-ms-request-id": [ - "403ba1ff-99f0-4666-8205-041c15cc6c8b" + "1d360d81-3115-4f6e-a83b-2c8d282606a1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11981" ], "x-ms-correlation-request-id": [ - "39588bb3-4824-44a9-81f7-54c0ead59336" + "5b7e0362-78aa-4f96-bfd1-86d318fb5229" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045228Z:39588bb3-4824-44a9-81f7-54c0ead59336" + "WESTUS:20200924T055428Z:5b7e0362-78aa-4f96-bfd1-86d318fb5229" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -969,10 +1092,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:52:27 GMT" + "Thu, 24 Sep 2020 05:54:28 GMT" ], "Content-Length": [ - "862" + "860" ], "Content-Type": [ "application/json; charset=utf-8" @@ -981,23 +1104,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"c726e520-25e3-4c12-be42-cf6425ed3ac1\",\r\n \"creationDate\": \"2020-09-14T04:52:20.763Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-14T05:22:20.763Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2115/providers/Microsoft.Sql/servers/ps9184/databases/ps1184\",\r\n \"name\": \"ps1184\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"4e441cd9-0308-47a8-a4aa-3cd11b636116\",\r\n \"creationDate\": \"2020-09-24T05:54:22.29Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-24T06:24:22.29Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9593/providers/Microsoft.Sql/servers/ps2661/databases/ps7157\",\r\n \"name\": \"ps7157\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2115/providers/Microsoft.Sql/servers/ps9184/databases/ps1184?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTE4NC9kYXRhYmFzZXMvcHMxMTg0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9593/providers/Microsoft.Sql/servers/ps2661/databases/ps7157?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjY2MS9kYXRhYmFzZXMvcHM3MTU3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0d3469a5-2640-4974-bae6-34c2169fd7e0" + "95291910-e74c-4ce0-b421-c05eff558a79" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1011,19 +1134,19 @@ "no-cache" ], "x-ms-request-id": [ - "5c18b1c8-c77e-48b8-a22b-6c8c2dda365f" + "8bf9ea08-58c8-4edd-bf62-8c238a5b0074" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11969" ], "x-ms-correlation-request-id": [ - "b898f0d2-14f8-484c-8c1f-3be5846d8187" + "2b2b594a-ea66-4225-b9d7-cf70bfdf6730" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045321Z:b898f0d2-14f8-484c-8c1f-3be5846d8187" + "WESTUS:20200924T055520Z:2b2b594a-ea66-4225-b9d7-cf70bfdf6730" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1032,10 +1155,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:53:20 GMT" + "Thu, 24 Sep 2020 05:55:20 GMT" ], "Content-Length": [ - "862" + "860" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1044,23 +1167,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"c726e520-25e3-4c12-be42-cf6425ed3ac1\",\r\n \"creationDate\": \"2020-09-14T04:52:20.763Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-14T05:22:20.763Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2115/providers/Microsoft.Sql/servers/ps9184/databases/ps1184\",\r\n \"name\": \"ps1184\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"4e441cd9-0308-47a8-a4aa-3cd11b636116\",\r\n \"creationDate\": \"2020-09-24T05:54:22.29Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-24T06:24:22.29Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9593/providers/Microsoft.Sql/servers/ps2661/databases/ps7157\",\r\n \"name\": \"ps7157\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2115/providers/Microsoft.Sql/servers/ps9184/databases/ps1184?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTE4NC9kYXRhYmFzZXMvcHMxMTg0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9593/providers/Microsoft.Sql/servers/ps2661/databases/ps7157?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjY2MS9kYXRhYmFzZXMvcHM3MTU3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"properties\": {\r\n \"maxSizeBytes\": 0,\r\n \"readScale\": \"\"\r\n },\r\n \"location\": \"westeurope\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "379b0c63-728c-4daf-b400-0e069e703b88" + "c37da9db-3111-43cc-818d-14d1d3b3a391" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1080,16 +1203,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2115/providers/Microsoft.Sql/locations/westeurope/databaseOperationResults/4993ef64-3820-42ca-a6f5-3577c0334c93?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9593/providers/Microsoft.Sql/locations/westeurope/databaseOperationResults/dbc19f2d-6b59-4010-ab6a-1902894e61ff?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2115/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/4993ef64-3820-42ca-a6f5-3577c0334c93?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9593/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/dbc19f2d-6b59-4010-ab6a-1902894e61ff?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "4993ef64-3820-42ca-a6f5-3577c0334c93" + "dbc19f2d-6b59-4010-ab6a-1902894e61ff" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1098,10 +1221,10 @@ "1198" ], "x-ms-correlation-request-id": [ - "9979f70b-07a2-44b5-a641-5c78b13b57fb" + "59383132-a048-4e52-b216-41facc8b98bc" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045111Z:9979f70b-07a2-44b5-a641-5c78b13b57fb" + "WESTUS:20200924T055311Z:59383132-a048-4e52-b216-41facc8b98bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1110,7 +1233,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:51:11 GMT" + "Thu, 24 Sep 2020 05:53:11 GMT" ], "Content-Length": [ "76" @@ -1122,17 +1245,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2020-09-14T04:51:11.683Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2020-09-24T05:53:11.837Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2115/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/4993ef64-3820-42ca-a6f5-3577c0334c93?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNDk5M2VmNjQtMzgyMC00MmNhLWE2ZjUtMzU3N2MwMzM0YzkzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9593/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/dbc19f2d-6b59-4010-ab6a-1902894e61ff?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZGJjMTlmMmQtNmI1OS00MDEwLWFiNmEtMTkwMjg5NGU2MWZmP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1149,19 +1272,19 @@ "15" ], "x-ms-request-id": [ - "61978c70-1051-48db-9ecd-8ac12d49c0b4" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "95b4e90b-d7b1-4b61-9862-df3a2239957a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], "x-ms-correlation-request-id": [ - "0f638756-8cf2-4760-879f-fb698770f0d2" + "6736d9e7-6f31-4d8b-9da7-a3285e655fbb" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045127Z:0f638756-8cf2-4760-879f-fb698770f0d2" + "WESTUS:20200924T055327Z:6736d9e7-6f31-4d8b-9da7-a3285e655fbb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1170,7 +1293,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:51:26 GMT" + "Thu, 24 Sep 2020 05:53:26 GMT" ], "Content-Length": [ "108" @@ -1182,17 +1305,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"4993ef64-3820-42ca-a6f5-3577c0334c93\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:51:11.683Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"dbc19f2d-6b59-4010-ab6a-1902894e61ff\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:53:11.837Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2115/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/4993ef64-3820-42ca-a6f5-3577c0334c93?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNDk5M2VmNjQtMzgyMC00MmNhLWE2ZjUtMzU3N2MwMzM0YzkzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9593/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/dbc19f2d-6b59-4010-ab6a-1902894e61ff?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZGJjMTlmMmQtNmI1OS00MDEwLWFiNmEtMTkwMjg5NGU2MWZmP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1209,19 +1332,19 @@ "15" ], "x-ms-request-id": [ - "12b63b9f-0c18-47c2-abd3-5f0d75e62d6f" + "343806e5-8c94-4680-8ba8-cfce4bb9b28e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11985" ], "x-ms-correlation-request-id": [ - "e924c96a-78f0-4826-b010-16aab6644acc" + "f1acf1df-2503-4077-8ffd-77179ddfb0a2" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045142Z:e924c96a-78f0-4826-b010-16aab6644acc" + "WESTUS:20200924T055342Z:f1acf1df-2503-4077-8ffd-77179ddfb0a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1230,7 +1353,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:51:41 GMT" + "Thu, 24 Sep 2020 05:53:41 GMT" ], "Content-Length": [ "108" @@ -1242,17 +1365,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"4993ef64-3820-42ca-a6f5-3577c0334c93\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:51:11.683Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"dbc19f2d-6b59-4010-ab6a-1902894e61ff\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:53:11.837Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2115/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/4993ef64-3820-42ca-a6f5-3577c0334c93?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNDk5M2VmNjQtMzgyMC00MmNhLWE2ZjUtMzU3N2MwMzM0YzkzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9593/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/dbc19f2d-6b59-4010-ab6a-1902894e61ff?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZGJjMTlmMmQtNmI1OS00MDEwLWFiNmEtMTkwMjg5NGU2MWZmP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1269,19 +1392,19 @@ "15" ], "x-ms-request-id": [ - "9cb7d5c9-3ae8-45ee-b9ca-01a3c37a8e87" + "7627d801-0e26-45da-b85f-d09abc3147d6" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11984" ], "x-ms-correlation-request-id": [ - "5509cfac-b15a-44fd-84aa-2c9594bfc480" + "981a7e28-0f17-4cc9-b40b-182b432b47c8" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045157Z:5509cfac-b15a-44fd-84aa-2c9594bfc480" + "WESTUS:20200924T055357Z:981a7e28-0f17-4cc9-b40b-182b432b47c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1290,7 +1413,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:51:56 GMT" + "Thu, 24 Sep 2020 05:53:56 GMT" ], "Content-Length": [ "108" @@ -1302,17 +1425,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"4993ef64-3820-42ca-a6f5-3577c0334c93\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:51:11.683Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"dbc19f2d-6b59-4010-ab6a-1902894e61ff\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:53:11.837Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2115/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/4993ef64-3820-42ca-a6f5-3577c0334c93?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNDk5M2VmNjQtMzgyMC00MmNhLWE2ZjUtMzU3N2MwMzM0YzkzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9593/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/dbc19f2d-6b59-4010-ab6a-1902894e61ff?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZGJjMTlmMmQtNmI1OS00MDEwLWFiNmEtMTkwMjg5NGU2MWZmP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1329,19 +1452,19 @@ "15" ], "x-ms-request-id": [ - "4edf1929-8a8d-440d-aa73-4d790bdc75a1" + "f1abcba2-c4c5-424a-bbc3-8483721a6d36" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11983" ], "x-ms-correlation-request-id": [ - "fb98b6b1-5024-49b0-a36f-42046cc23a1e" + "19c2a927-5679-49c7-bfc5-b58fe2697117" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045212Z:fb98b6b1-5024-49b0-a36f-42046cc23a1e" + "WESTUS:20200924T055412Z:19c2a927-5679-49c7-bfc5-b58fe2697117" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1350,7 +1473,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:52:12 GMT" + "Thu, 24 Sep 2020 05:54:12 GMT" ], "Content-Length": [ "108" @@ -1362,17 +1485,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"4993ef64-3820-42ca-a6f5-3577c0334c93\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:51:11.683Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"dbc19f2d-6b59-4010-ab6a-1902894e61ff\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:53:11.837Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2115/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/4993ef64-3820-42ca-a6f5-3577c0334c93?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNDk5M2VmNjQtMzgyMC00MmNhLWE2ZjUtMzU3N2MwMzM0YzkzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9593/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/dbc19f2d-6b59-4010-ab6a-1902894e61ff?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZGJjMTlmMmQtNmI1OS00MDEwLWFiNmEtMTkwMjg5NGU2MWZmP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1389,19 +1512,19 @@ "15" ], "x-ms-request-id": [ - "1b228b98-d1dd-4f02-becf-aaacc9400aed" + "2433b9e1-1a2e-4562-9aa1-97b961c61154" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11982" ], "x-ms-correlation-request-id": [ - "764eae46-66c5-4d65-8667-70d68b933398" + "d855d01b-f267-4d81-82d0-4cb31a563eba" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045227Z:764eae46-66c5-4d65-8667-70d68b933398" + "WESTUS:20200924T055428Z:d855d01b-f267-4d81-82d0-4cb31a563eba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1410,7 +1533,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:52:27 GMT" + "Thu, 24 Sep 2020 05:54:27 GMT" ], "Content-Length": [ "107" @@ -1422,23 +1545,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"4993ef64-3820-42ca-a6f5-3577c0334c93\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-14T04:51:11.683Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"dbc19f2d-6b59-4010-ab6a-1902894e61ff\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-24T05:53:11.837Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps5875?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzNTg3NT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps9244?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzOTI0ND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West Europe\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fa669d11-d4c0-42f0-8265-ab984adf8374" + "67d45174-39c6-4399-b4be-be56bd6161f5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -1458,16 +1581,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "9bda66e1-200f-491f-900c-0c407dd3e6b7" + "2e2a0fd8-ac96-4cc3-a249-6cb00b0daeae" ], "x-ms-correlation-request-id": [ - "9bda66e1-200f-491f-900c-0c407dd3e6b7" + "2e2a0fd8-ac96-4cc3-a249-6cb00b0daeae" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045230Z:9bda66e1-200f-491f-900c-0c407dd3e6b7" + "WESTUS:20200924T055430Z:2e2a0fd8-ac96-4cc3-a249-6cb00b0daeae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1476,7 +1599,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:52:29 GMT" + "Thu, 24 Sep 2020 05:54:29 GMT" ], "Content-Length": [ "169" @@ -1488,23 +1611,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5875\",\r\n \"name\": \"ps5875\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9244\",\r\n \"name\": \"ps9244\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5875/providers/Microsoft.Sql/servers/ps2362?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTg3NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjM2Mj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9244/providers/Microsoft.Sql/servers/ps7046?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTI0NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzA0Nj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8a7044e9-5534-471c-bbbc-6eb90f7b1492" + "ef3c3144-4e85-4d82-9ff5-2229e276ba50" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1521,13 +1644,13 @@ "gateway" ], "x-ms-request-id": [ - "dc481745-a642-486b-a47b-b8a7669a2535" + "2d68fe46-d8f1-49b6-856c-6a6291c832ab" ], "x-ms-correlation-request-id": [ - "dc481745-a642-486b-a47b-b8a7669a2535" + "2d68fe46-d8f1-49b6-856c-6a6291c832ab" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045230Z:dc481745-a642-486b-a47b-b8a7669a2535" + "WESTUS:20200924T055430Z:2d68fe46-d8f1-49b6-856c-6a6291c832ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1536,7 +1659,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:52:30 GMT" + "Thu, 24 Sep 2020 05:54:30 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1548,17 +1671,17 @@ "206" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps2362' under resource group 'ps5875' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps7046' under resource group 'ps9244' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5875/providers/Microsoft.Sql/servers/ps2362?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTg3NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjM2Mj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9244/providers/Microsoft.Sql/servers/ps7046?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTI0NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzA0Nj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1572,7 +1695,7 @@ "no-cache" ], "x-ms-request-id": [ - "58224296-2cc7-405f-87d9-a21cf2b7fbab" + "1b3c81f9-cf8d-4790-884e-1bce5851a26c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1581,10 +1704,10 @@ "11973" ], "x-ms-correlation-request-id": [ - "410acffe-bbf3-48cf-b323-3724aefd700c" + "6a17faf2-69fd-4ae5-8bf7-d831eb35ba34" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045320Z:410acffe-bbf3-48cf-b323-3724aefd700c" + "WESTUS:20200924T055520Z:6a17faf2-69fd-4ae5-8bf7-d831eb35ba34" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1593,7 +1716,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:53:20 GMT" + "Thu, 24 Sep 2020 05:55:19 GMT" ], "Content-Length": [ "412" @@ -1605,23 +1728,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps2362.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5875/providers/Microsoft.Sql/servers/ps2362\",\r\n \"name\": \"ps2362\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps7046.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9244/providers/Microsoft.Sql/servers/ps7046\",\r\n \"name\": \"ps7046\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5875/providers/Microsoft.Sql/servers/ps2362?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTg3NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjM2Mj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9244/providers/Microsoft.Sql/servers/ps7046?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTI0NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzA0Nj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1b4adc28-0ccf-4b16-a0c2-e1488150ab7d" + "28023e04-8985-4b1d-8d22-4886b6dd2703" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1635,19 +1758,19 @@ "no-cache" ], "x-ms-request-id": [ - "3aced166-2978-498f-8367-1c577f72f23e" + "296b8989-022d-4489-9ee3-022bd0bec294" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11970" ], "x-ms-correlation-request-id": [ - "24e5d95d-80d5-42bb-8c2a-f95fce3cccc5" + "099eb977-b825-4849-a98f-79ae903077b8" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045321Z:24e5d95d-80d5-42bb-8c2a-f95fce3cccc5" + "WESTUS:20200924T055520Z:099eb977-b825-4849-a98f-79ae903077b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1656,7 +1779,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:53:20 GMT" + "Thu, 24 Sep 2020 05:55:20 GMT" ], "Content-Length": [ "412" @@ -1668,23 +1791,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps2362.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5875/providers/Microsoft.Sql/servers/ps2362\",\r\n \"name\": \"ps2362\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps7046.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9244/providers/Microsoft.Sql/servers/ps7046\",\r\n \"name\": \"ps7046\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5875/providers/Microsoft.Sql/servers/ps2362?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTg3NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjM2Mj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9244/providers/Microsoft.Sql/servers/ps7046?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTI0NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzA0Nj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"West Europe\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0f9c35f6-4e61-4775-9032-b9d63c40352d" + "c620e224-1573-4471-92a7-72685f53e3c4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1704,16 +1827,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5875/providers/Microsoft.Sql/locations/westeurope/serverOperationResults/daeb04d9-4ae7-4175-b9c2-3f59f4ec7d09?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9244/providers/Microsoft.Sql/locations/westeurope/serverOperationResults/dece7fb8-45ab-477d-afa6-91f2e2e37faf?api-version=2019-06-01-preview" ], "Retry-After": [ "1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5875/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/daeb04d9-4ae7-4175-b9c2-3f59f4ec7d09?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9244/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/dece7fb8-45ab-477d-afa6-91f2e2e37faf?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "daeb04d9-4ae7-4175-b9c2-3f59f4ec7d09" + "dece7fb8-45ab-477d-afa6-91f2e2e37faf" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1722,10 +1845,10 @@ "1197" ], "x-ms-correlation-request-id": [ - "a53d4a0b-6cde-412b-a2ff-f1131917a711" + "f9947fab-4058-4cb6-8e7f-54b5917b791e" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045234Z:a53d4a0b-6cde-412b-a2ff-f1131917a711" + "WESTUS:20200924T055434Z:f9947fab-4058-4cb6-8e7f-54b5917b791e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1734,10 +1857,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:52:33 GMT" + "Thu, 24 Sep 2020 05:54:33 GMT" ], "Content-Length": [ - "73" + "74" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1746,17 +1869,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-14T04:52:34.08Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-24T05:54:33.993Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5875/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/daeb04d9-4ae7-4175-b9c2-3f59f4ec7d09?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTg3NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2RhZWIwNGQ5LTRhZTctNDE3NS1iOWMyLTNmNTlmNGVjN2QwOT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9244/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/dece7fb8-45ab-477d-afa6-91f2e2e37faf?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTI0NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2RlY2U3ZmI4LTQ1YWItNDc3ZC1hZmE2LTkxZjJlMmUzN2ZhZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1773,79 +1896,19 @@ "1" ], "x-ms-request-id": [ - "624475dd-5272-4a4a-8935-557e5ab47b74" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "384583ef-ed6b-4329-93dc-ff2f59ee6c1a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" - ], - "x-ms-correlation-request-id": [ - "1cd498a9-61c7-4391-b1a7-d0b9f223426a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T045235Z:1cd498a9-61c7-4391-b1a7-d0b9f223426a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 14 Sep 2020 04:52:34 GMT" - ], - "Content-Length": [ - "107" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"daeb04d9-4ae7-4175-b9c2-3f59f4ec7d09\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:52:34.08Z\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5875/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/daeb04d9-4ae7-4175-b9c2-3f59f4ec7d09?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTg3NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2RhZWIwNGQ5LTRhZTctNDE3NS1iOWMyLTNmNTlmNGVjN2QwOT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "1" - ], - "x-ms-request-id": [ - "3e60e096-fc50-42eb-a835-c1e8897c4194" + "11979" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" - ], "x-ms-correlation-request-id": [ - "ff65f58a-ecac-4a9a-b319-80d37e89134c" + "b29d856a-3c8c-4c8f-bb33-1e67070cbaa0" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045236Z:ff65f58a-ecac-4a9a-b319-80d37e89134c" + "WESTUS:20200924T055435Z:b29d856a-3c8c-4c8f-bb33-1e67070cbaa0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1854,10 +1917,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:52:36 GMT" + "Thu, 24 Sep 2020 05:54:35 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1866,17 +1929,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"daeb04d9-4ae7-4175-b9c2-3f59f4ec7d09\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:52:34.08Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"dece7fb8-45ab-477d-afa6-91f2e2e37faf\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:54:33.993Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5875/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/daeb04d9-4ae7-4175-b9c2-3f59f4ec7d09?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTg3NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2RhZWIwNGQ5LTRhZTctNDE3NS1iOWMyLTNmNTlmNGVjN2QwOT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9244/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/dece7fb8-45ab-477d-afa6-91f2e2e37faf?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTI0NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2RlY2U3ZmI4LTQ1YWItNDc3ZC1hZmE2LTkxZjJlMmUzN2ZhZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1893,7 +1956,7 @@ "1" ], "x-ms-request-id": [ - "ec95db15-e7c6-4081-b522-648f5babf3c8" + "1ab05324-a1e2-45c8-af6a-8e0521e0138c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1902,10 +1965,10 @@ "11978" ], "x-ms-correlation-request-id": [ - "66a1998c-de91-4752-8a5b-a78a62e9ebe4" + "6fca4bf1-7946-4701-87fc-a703f2b26e72" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045237Z:66a1998c-de91-4752-8a5b-a78a62e9ebe4" + "WESTUS:20200924T055437Z:6fca4bf1-7946-4701-87fc-a703f2b26e72" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1914,10 +1977,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:52:37 GMT" + "Thu, 24 Sep 2020 05:54:36 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1926,17 +1989,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"daeb04d9-4ae7-4175-b9c2-3f59f4ec7d09\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:52:34.08Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"dece7fb8-45ab-477d-afa6-91f2e2e37faf\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:54:33.993Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5875/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/daeb04d9-4ae7-4175-b9c2-3f59f4ec7d09?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTg3NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2RhZWIwNGQ5LTRhZTctNDE3NS1iOWMyLTNmNTlmNGVjN2QwOT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9244/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/dece7fb8-45ab-477d-afa6-91f2e2e37faf?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTI0NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2RlY2U3ZmI4LTQ1YWItNDc3ZC1hZmE2LTkxZjJlMmUzN2ZhZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1953,7 +2016,7 @@ "1" ], "x-ms-request-id": [ - "16035316-4031-4eae-9a5b-38d7705e9d52" + "76f6f633-3ac8-4209-b819-e0f37f45ff53" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1962,10 +2025,10 @@ "11977" ], "x-ms-correlation-request-id": [ - "d9232deb-755e-44af-b335-5717fae6b97b" + "ec8941de-3365-4dcc-8ff7-58e011519dd2" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045239Z:d9232deb-755e-44af-b335-5717fae6b97b" + "WESTUS:20200924T055438Z:ec8941de-3365-4dcc-8ff7-58e011519dd2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1974,10 +2037,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:52:38 GMT" + "Thu, 24 Sep 2020 05:54:37 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1986,17 +2049,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"daeb04d9-4ae7-4175-b9c2-3f59f4ec7d09\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:52:34.08Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"dece7fb8-45ab-477d-afa6-91f2e2e37faf\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:54:33.993Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5875/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/daeb04d9-4ae7-4175-b9c2-3f59f4ec7d09?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTg3NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2RhZWIwNGQ5LTRhZTctNDE3NS1iOWMyLTNmNTlmNGVjN2QwOT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9244/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/dece7fb8-45ab-477d-afa6-91f2e2e37faf?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTI0NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2RlY2U3ZmI4LTQ1YWItNDc3ZC1hZmE2LTkxZjJlMmUzN2ZhZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2013,7 +2076,7 @@ "20" ], "x-ms-request-id": [ - "671fc19f-7c16-4c1e-b2f6-58484441c99e" + "14f2417e-ef1f-4eb4-b496-f1262616c5d2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2022,10 +2085,10 @@ "11976" ], "x-ms-correlation-request-id": [ - "6da5f50b-8ca5-43cb-bf2e-0e4f446c8c5c" + "4aa12b2c-90f4-4934-b8dc-4b4691125956" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045240Z:6da5f50b-8ca5-43cb-bf2e-0e4f446c8c5c" + "WESTUS:20200924T055439Z:4aa12b2c-90f4-4934-b8dc-4b4691125956" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2034,10 +2097,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:52:39 GMT" + "Thu, 24 Sep 2020 05:54:39 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2046,17 +2109,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"daeb04d9-4ae7-4175-b9c2-3f59f4ec7d09\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:52:34.08Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"dece7fb8-45ab-477d-afa6-91f2e2e37faf\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:54:33.993Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5875/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/daeb04d9-4ae7-4175-b9c2-3f59f4ec7d09?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTg3NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2RhZWIwNGQ5LTRhZTctNDE3NS1iOWMyLTNmNTlmNGVjN2QwOT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9244/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/dece7fb8-45ab-477d-afa6-91f2e2e37faf?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTI0NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2RlY2U3ZmI4LTQ1YWItNDc3ZC1hZmE2LTkxZjJlMmUzN2ZhZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2073,7 +2136,7 @@ "20" ], "x-ms-request-id": [ - "758a031d-5e0c-4f22-b694-634a88afa6a8" + "226cab20-4b9c-4fec-a2bf-8d9ffc3328c6" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2082,10 +2145,10 @@ "11975" ], "x-ms-correlation-request-id": [ - "b89fad13-faef-4e93-88a4-65dee6a4a8f0" + "b035320e-b070-4a5e-9bd8-0943ff93e3e7" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045300Z:b89fad13-faef-4e93-88a4-65dee6a4a8f0" + "WESTUS:20200924T055459Z:b035320e-b070-4a5e-9bd8-0943ff93e3e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2094,10 +2157,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:52:59 GMT" + "Thu, 24 Sep 2020 05:54:59 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2106,17 +2169,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"daeb04d9-4ae7-4175-b9c2-3f59f4ec7d09\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:52:34.08Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"dece7fb8-45ab-477d-afa6-91f2e2e37faf\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:54:33.993Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5875/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/daeb04d9-4ae7-4175-b9c2-3f59f4ec7d09?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTg3NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2RhZWIwNGQ5LTRhZTctNDE3NS1iOWMyLTNmNTlmNGVjN2QwOT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9244/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/dece7fb8-45ab-477d-afa6-91f2e2e37faf?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTI0NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2RlY2U3ZmI4LTQ1YWItNDc3ZC1hZmE2LTkxZjJlMmUzN2ZhZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2133,7 +2196,7 @@ "15" ], "x-ms-request-id": [ - "b61ce83f-e9a6-45c3-8c5c-f0ffd43da03a" + "1c096661-051d-4fac-a181-2250d22cde6c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2142,10 +2205,10 @@ "11974" ], "x-ms-correlation-request-id": [ - "0c1b5797-199b-4cb4-94bf-69bc1ea3c6e3" + "8bcc0310-79ee-4004-b6bf-b7245fa8f800" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045320Z:0c1b5797-199b-4cb4-94bf-69bc1ea3c6e3" + "WESTUS:20200924T055519Z:8bcc0310-79ee-4004-b6bf-b7245fa8f800" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2154,10 +2217,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:53:19 GMT" + "Thu, 24 Sep 2020 05:55:19 GMT" ], "Content-Length": [ - "106" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2166,23 +2229,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"daeb04d9-4ae7-4175-b9c2-3f59f4ec7d09\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-14T04:52:34.08Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"dece7fb8-45ab-477d-afa6-91f2e2e37faf\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-24T05:54:33.993Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5875/providers/Microsoft.Sql/servers/ps2362/databases/secondary?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTg3NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjM2Mi9kYXRhYmFzZXMvc2Vjb25kYXJ5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9244/providers/Microsoft.Sql/servers/ps7046/databases/secondary?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTI0NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzA0Ni9kYXRhYmFzZXMvc2Vjb25kYXJ5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f3be47ae-2c00-4661-aac6-8cfc4521c85c" + "786e38a6-7d59-4bb6-a301-74b9d612cd70" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2199,13 +2262,13 @@ "gateway" ], "x-ms-request-id": [ - "42d085d8-8a1e-4cca-b56a-26ecdc482f7a" + "a3247c62-441d-4774-abbd-67bc41967e04" ], "x-ms-correlation-request-id": [ - "42d085d8-8a1e-4cca-b56a-26ecdc482f7a" + "a3247c62-441d-4774-abbd-67bc41967e04" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045321Z:42d085d8-8a1e-4cca-b56a-26ecdc482f7a" + "WESTUS:20200924T055520Z:a3247c62-441d-4774-abbd-67bc41967e04" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2214,7 +2277,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:53:20 GMT" + "Thu, 24 Sep 2020 05:55:19 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2226,17 +2289,17 @@ "226" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps2362/databases/secondary' under resource group 'ps5875' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps7046/databases/secondary' under resource group 'ps9244' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5875/providers/Microsoft.Sql/servers/ps2362/databases/secondary?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTg3NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjM2Mi9kYXRhYmFzZXMvc2Vjb25kYXJ5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9244/providers/Microsoft.Sql/servers/ps7046/databases/secondary?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTI0NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzA0Ni9kYXRhYmFzZXMvc2Vjb25kYXJ5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2250,7 +2313,7 @@ "no-cache" ], "x-ms-request-id": [ - "826331e8-0b1d-4b8a-89d6-693febb0964e" + "bc64bd15-7236-4e53-8372-c55c35f8922b" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2259,10 +2322,10 @@ "11961" ], "x-ms-correlation-request-id": [ - "7467af01-b15e-4ce1-ad5d-0fb756d07f39" + "45348601-0542-49ca-b6a4-9814e9bbaa2c" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045527Z:7467af01-b15e-4ce1-ad5d-0fb756d07f39" + "WESTUS:20200924T055710Z:45348601-0542-49ca-b6a4-9814e9bbaa2c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2271,10 +2334,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:55:27 GMT" + "Thu, 24 Sep 2020 05:57:10 GMT" ], "Content-Length": [ - "866" + "868" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2283,23 +2346,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"dd6cd81a-cb03-4d2a-9688-91f1045933a5\",\r\n \"creationDate\": \"2020-09-14T04:55:07.95Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-14T05:25:07.95Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5875/providers/Microsoft.Sql/servers/ps2362/databases/secondary\",\r\n \"name\": \"secondary\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"9cbc12dd-e0e1-4c9b-b65d-bab2c9d60c10\",\r\n \"creationDate\": \"2020-09-24T05:56:59.603Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-24T06:26:59.603Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9244/providers/Microsoft.Sql/servers/ps7046/databases/secondary\",\r\n \"name\": \"secondary\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5875/providers/Microsoft.Sql/servers/ps2362/databases/secondary?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTg3NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjM2Mi9kYXRhYmFzZXMvc2Vjb25kYXJ5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9244/providers/Microsoft.Sql/servers/ps7046/databases/secondary?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTI0NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzA0Ni9kYXRhYmFzZXMvc2Vjb25kYXJ5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"P1\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"properties\": {\r\n \"createMode\": \"Secondary\",\r\n \"sourceDatabaseId\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2115/providers/Microsoft.Sql/Servers/ps9184/databases/ps1184\"\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"P1\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"properties\": {\r\n \"createMode\": \"Secondary\",\r\n \"sourceDatabaseId\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9593/providers/Microsoft.Sql/Servers/ps2661/databases/ps7157\"\r\n },\r\n \"location\": \"westeurope\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f0c81505-3de6-45de-a6c1-631b09bdeda3" + "d510ba19-7a48-43e1-b9a0-e2325a9ec5c9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2319,16 +2382,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5875/providers/Microsoft.Sql/locations/westeurope/databaseOperationResults/a00a563f-8be7-4e2a-b7fe-c0faf32bab83?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9244/providers/Microsoft.Sql/locations/westeurope/databaseOperationResults/708bc8f6-b782-43a6-b77b-3c6700dfbf1a?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5875/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a00a563f-8be7-4e2a-b7fe-c0faf32bab83?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9244/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/708bc8f6-b782-43a6-b77b-3c6700dfbf1a?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "9368e7c2-51c8-45f2-a6a5-330a4a9c9d4b" + "434fe7c9-6093-41dd-aa47-94c6d0a058d4" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2337,10 +2400,10 @@ "1196" ], "x-ms-correlation-request-id": [ - "99303e80-0f62-4ab4-a5f5-fa0ec09a58af" + "6ddccca4-2c7a-4baf-9167-e86e58482d5b" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045325Z:99303e80-0f62-4ab4-a5f5-fa0ec09a58af" + "WESTUS:20200924T055523Z:6ddccca4-2c7a-4baf-9167-e86e58482d5b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2349,7 +2412,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:53:24 GMT" + "Thu, 24 Sep 2020 05:55:23 GMT" ], "Content-Length": [ "75" @@ -2361,77 +2424,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2020-09-14T04:53:25.283Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2020-09-24T05:55:23.773Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5875/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a00a563f-8be7-4e2a-b7fe-c0faf32bab83?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTg3NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYTAwYTU2M2YtOGJlNy00ZTJhLWI3ZmUtYzBmYWYzMmJhYjgzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "c1d9ec48-6740-4cd8-83b7-af21611e40fe" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" - ], - "x-ms-correlation-request-id": [ - "aef6d4e3-aabf-4bcf-b4e5-f1acf4adaaff" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T045340Z:aef6d4e3-aabf-4bcf-b4e5-f1acf4adaaff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 14 Sep 2020 04:53:40 GMT" - ], - "Content-Length": [ - "107" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"a00a563f-8be7-4e2a-b7fe-c0faf32bab83\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:53:25.47Z\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5875/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a00a563f-8be7-4e2a-b7fe-c0faf32bab83?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTg3NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYTAwYTU2M2YtOGJlNy00ZTJhLWI3ZmUtYzBmYWYzMmJhYjgzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9244/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/708bc8f6-b782-43a6-b77b-3c6700dfbf1a?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTI0NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNzA4YmM4ZjYtYjc4Mi00M2E2LWI3N2ItM2M2NzAwZGZiZjFhP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2448,7 +2451,7 @@ "15" ], "x-ms-request-id": [ - "6bd7ce8e-3953-4ff7-becd-68e570dec4ab" + "3e4be03b-41a6-4195-8cbd-b46097c8056a" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2457,10 +2460,10 @@ "11968" ], "x-ms-correlation-request-id": [ - "9e706c23-be98-4fa4-8919-9d097db7b4c6" + "cc21bd1e-73c0-4869-a929-90df178e1f68" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045355Z:9e706c23-be98-4fa4-8919-9d097db7b4c6" + "WESTUS:20200924T055539Z:cc21bd1e-73c0-4869-a929-90df178e1f68" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2469,10 +2472,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:53:55 GMT" + "Thu, 24 Sep 2020 05:55:38 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2481,17 +2484,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a00a563f-8be7-4e2a-b7fe-c0faf32bab83\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:53:25.47Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"708bc8f6-b782-43a6-b77b-3c6700dfbf1a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:55:23.993Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5875/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a00a563f-8be7-4e2a-b7fe-c0faf32bab83?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTg3NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYTAwYTU2M2YtOGJlNy00ZTJhLWI3ZmUtYzBmYWYzMmJhYjgzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9244/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/708bc8f6-b782-43a6-b77b-3c6700dfbf1a?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTI0NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNzA4YmM4ZjYtYjc4Mi00M2E2LWI3N2ItM2M2NzAwZGZiZjFhP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2508,7 +2511,7 @@ "15" ], "x-ms-request-id": [ - "a6edebec-3600-450b-88dc-ff8275649c17" + "871d00af-cd30-4fb0-b39e-d10eefd5cbb5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2517,10 +2520,10 @@ "11967" ], "x-ms-correlation-request-id": [ - "289d9a41-11a2-4ea8-8c03-ce3420c74e28" + "86724091-0402-40fd-a1ad-3a938674e0a2" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045411Z:289d9a41-11a2-4ea8-8c03-ce3420c74e28" + "WESTUS:20200924T055554Z:86724091-0402-40fd-a1ad-3a938674e0a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2529,10 +2532,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:54:10 GMT" + "Thu, 24 Sep 2020 05:55:53 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2541,17 +2544,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a00a563f-8be7-4e2a-b7fe-c0faf32bab83\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:53:25.47Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"708bc8f6-b782-43a6-b77b-3c6700dfbf1a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:55:23.993Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5875/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a00a563f-8be7-4e2a-b7fe-c0faf32bab83?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTg3NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYTAwYTU2M2YtOGJlNy00ZTJhLWI3ZmUtYzBmYWYzMmJhYjgzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9244/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/708bc8f6-b782-43a6-b77b-3c6700dfbf1a?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTI0NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNzA4YmM4ZjYtYjc4Mi00M2E2LWI3N2ItM2M2NzAwZGZiZjFhP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2568,7 +2571,7 @@ "15" ], "x-ms-request-id": [ - "fec99085-2540-4857-9218-dd333bf38152" + "ea389a2e-5dc8-4442-b800-b9858cd30173" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2577,10 +2580,10 @@ "11966" ], "x-ms-correlation-request-id": [ - "e323e3c7-a9dd-4117-aa87-6284811d6a10" + "78f4f62c-5e2f-4b70-ba21-1bfdf85f55d4" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045426Z:e323e3c7-a9dd-4117-aa87-6284811d6a10" + "WESTUS:20200924T055609Z:78f4f62c-5e2f-4b70-ba21-1bfdf85f55d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2589,10 +2592,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:54:25 GMT" + "Thu, 24 Sep 2020 05:56:09 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2601,17 +2604,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a00a563f-8be7-4e2a-b7fe-c0faf32bab83\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:53:25.47Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"708bc8f6-b782-43a6-b77b-3c6700dfbf1a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:55:23.993Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5875/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a00a563f-8be7-4e2a-b7fe-c0faf32bab83?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTg3NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYTAwYTU2M2YtOGJlNy00ZTJhLWI3ZmUtYzBmYWYzMmJhYjgzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9244/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/708bc8f6-b782-43a6-b77b-3c6700dfbf1a?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTI0NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNzA4YmM4ZjYtYjc4Mi00M2E2LWI3N2ItM2M2NzAwZGZiZjFhP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2628,7 +2631,7 @@ "15" ], "x-ms-request-id": [ - "0809ec54-74ff-4375-a6b7-1cbaa52f2798" + "4bfb8a8b-1509-4124-b79c-ebfd596ea0f3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2637,10 +2640,10 @@ "11965" ], "x-ms-correlation-request-id": [ - "33784fae-249f-485e-aae5-c113ec8365bd" + "404105bb-25e0-4608-b18c-e8b6594f0e23" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045441Z:33784fae-249f-485e-aae5-c113ec8365bd" + "WESTUS:20200924T055624Z:404105bb-25e0-4608-b18c-e8b6594f0e23" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2649,10 +2652,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:54:41 GMT" + "Thu, 24 Sep 2020 05:56:24 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2661,17 +2664,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a00a563f-8be7-4e2a-b7fe-c0faf32bab83\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:53:25.47Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"708bc8f6-b782-43a6-b77b-3c6700dfbf1a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:55:23.993Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5875/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a00a563f-8be7-4e2a-b7fe-c0faf32bab83?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTg3NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYTAwYTU2M2YtOGJlNy00ZTJhLWI3ZmUtYzBmYWYzMmJhYjgzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9244/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/708bc8f6-b782-43a6-b77b-3c6700dfbf1a?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTI0NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNzA4YmM4ZjYtYjc4Mi00M2E2LWI3N2ItM2M2NzAwZGZiZjFhP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2688,7 +2691,7 @@ "15" ], "x-ms-request-id": [ - "4a0a4064-02f8-4073-a19f-8ae48db88592" + "12de32b2-a71a-4c77-b68f-5fcbad759225" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2697,10 +2700,10 @@ "11964" ], "x-ms-correlation-request-id": [ - "8effc736-f876-4b1e-8428-b399f8bc8754" + "f43a66b9-83e3-4cb8-a8a0-7e9d1e3e21d3" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045457Z:8effc736-f876-4b1e-8428-b399f8bc8754" + "WESTUS:20200924T055639Z:f43a66b9-83e3-4cb8-a8a0-7e9d1e3e21d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2709,10 +2712,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:54:56 GMT" + "Thu, 24 Sep 2020 05:56:39 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2721,17 +2724,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a00a563f-8be7-4e2a-b7fe-c0faf32bab83\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:53:25.47Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"708bc8f6-b782-43a6-b77b-3c6700dfbf1a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:55:23.993Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5875/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a00a563f-8be7-4e2a-b7fe-c0faf32bab83?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTg3NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYTAwYTU2M2YtOGJlNy00ZTJhLWI3ZmUtYzBmYWYzMmJhYjgzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9244/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/708bc8f6-b782-43a6-b77b-3c6700dfbf1a?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTI0NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNzA4YmM4ZjYtYjc4Mi00M2E2LWI3N2ItM2M2NzAwZGZiZjFhP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2748,7 +2751,7 @@ "15" ], "x-ms-request-id": [ - "ffd2bbe8-d5aa-41ff-9a92-11c5e50ee3cd" + "139d69fa-5a02-4b65-9a31-4b96d02a03af" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2757,10 +2760,10 @@ "11963" ], "x-ms-correlation-request-id": [ - "812b6fac-4679-4158-be6c-be5a08a4e1ec" + "61caf03f-f712-4680-9d0d-0f5446ed64f8" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045512Z:812b6fac-4679-4158-be6c-be5a08a4e1ec" + "WESTUS:20200924T055655Z:61caf03f-f712-4680-9d0d-0f5446ed64f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2769,10 +2772,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:55:11 GMT" + "Thu, 24 Sep 2020 05:56:54 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2781,17 +2784,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a00a563f-8be7-4e2a-b7fe-c0faf32bab83\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:53:25.47Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"708bc8f6-b782-43a6-b77b-3c6700dfbf1a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:55:23.993Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5875/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a00a563f-8be7-4e2a-b7fe-c0faf32bab83?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTg3NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYTAwYTU2M2YtOGJlNy00ZTJhLWI3ZmUtYzBmYWYzMmJhYjgzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9244/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/708bc8f6-b782-43a6-b77b-3c6700dfbf1a?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTI0NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNzA4YmM4ZjYtYjc4Mi00M2E2LWI3N2ItM2M2NzAwZGZiZjFhP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2808,7 +2811,7 @@ "15" ], "x-ms-request-id": [ - "afac7104-8d06-4074-91dd-51493ffe323b" + "7bbcffdb-f521-45b5-8a19-aa1febf963e6" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2817,10 +2820,10 @@ "11962" ], "x-ms-correlation-request-id": [ - "0481fc50-146e-47bb-8c13-7933f352cc22" + "bd2c8782-d528-47a8-9620-c71b43eef354" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045527Z:0481fc50-146e-47bb-8c13-7933f352cc22" + "WESTUS:20200924T055710Z:bd2c8782-d528-47a8-9620-c71b43eef354" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2829,10 +2832,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:55:26 GMT" + "Thu, 24 Sep 2020 05:57:09 GMT" ], "Content-Length": [ - "106" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2841,23 +2844,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a00a563f-8be7-4e2a-b7fe-c0faf32bab83\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-14T04:53:25.47Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"708bc8f6-b782-43a6-b77b-3c6700dfbf1a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-24T05:55:23.993Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5875/providers/Microsoft.Sql/servers?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTg3NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9244/providers/Microsoft.Sql/servers?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTI0NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5af0c29e-2ff4-4f2b-b8d8-842db909654f" + "3962356b-041f-4015-b093-4fd04f1de4b3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2871,7 +2874,7 @@ "no-cache" ], "x-ms-request-id": [ - "defcd3a9-aaa0-42a3-840c-93557a34b5e6" + "bfae0b4a-4415-4ad9-8537-77fe11ac2044" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2880,10 +2883,10 @@ "11960" ], "x-ms-correlation-request-id": [ - "476365f7-40a3-46fe-8b94-7fde61b6e3f3" + "e455c4cf-0a41-4adb-9c83-3878e2e5ed3b" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045528Z:476365f7-40a3-46fe-8b94-7fde61b6e3f3" + "WESTUS:20200924T055710Z:e455c4cf-0a41-4adb-9c83-3878e2e5ed3b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2892,7 +2895,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:55:27 GMT" + "Thu, 24 Sep 2020 05:57:10 GMT" ], "Content-Length": [ "424" @@ -2904,17 +2907,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps2362.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5875/providers/Microsoft.Sql/servers/ps2362\",\r\n \"name\": \"ps2362\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps7046.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9244/providers/Microsoft.Sql/servers/ps7046\",\r\n \"name\": \"ps7046\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2115/providers/Microsoft.Sql/servers/ps9184/databases/ps1184/replicationLinks?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTE4NC9kYXRhYmFzZXMvcHMxMTg0L3JlcGxpY2F0aW9uTGlua3M/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9593/providers/Microsoft.Sql/servers/ps2661/databases/ps7157/replicationLinks?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjY2MS9kYXRhYmFzZXMvcHM3MTU3L3JlcGxpY2F0aW9uTGlua3M/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -2922,7 +2925,7 @@ "no-store, no-cache" ], "x-ms-request-id": [ - "accf6bf1-12ac-4a85-9e5c-ef452b374ed7" + "f492ec61-3a95-4573-8bd8-b4c90c4d9e9c" ], "X-Content-Type-Options": [ "nosniff" @@ -2937,41 +2940,41 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11950" ], "x-ms-correlation-request-id": [ - "bcafa480-bfd3-4f49-aa0b-7f86ae760897" + "86d94500-2e8a-431a-9901-0325e57c8ac9" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045528Z:bcafa480-bfd3-4f49-aa0b-7f86ae760897" + "WESTUS:20200924T055711Z:86d94500-2e8a-431a-9901-0325e57c8ac9" ], "Date": [ - "Mon, 14 Sep 2020 04:55:27 GMT" + "Thu, 24 Sep 2020 05:57:10 GMT" ], "Content-Length": [ - "621" + "622" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2115/providers/Microsoft.Sql/servers/ps9184/databases/ps1184/replicationLinks/47b20fbf-c85b-4541-b9da-401af1144b17\",\r\n \"name\": \"47b20fbf-c85b-4541-b9da-401af1144b17\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"West Europe\",\r\n \"properties\": {\r\n \"partnerServer\": \"ps2362\",\r\n \"partnerDatabase\": \"secondary\",\r\n \"partnerLocation\": \"West Europe\",\r\n \"role\": \"Primary\",\r\n \"partnerRole\": \"Secondary\",\r\n \"replicationMode\": \"ASYNC\",\r\n \"startTime\": \"2020-09-14T04:54:27.45\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9593/providers/Microsoft.Sql/servers/ps2661/databases/ps7157/replicationLinks/08a7906c-a7dd-48fd-851a-e58897a96d1b\",\r\n \"name\": \"08a7906c-a7dd-48fd-851a-e58897a96d1b\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"West Europe\",\r\n \"properties\": {\r\n \"partnerServer\": \"ps7046\",\r\n \"partnerDatabase\": \"secondary\",\r\n \"partnerLocation\": \"West Europe\",\r\n \"role\": \"Primary\",\r\n \"partnerRole\": \"Secondary\",\r\n \"replicationMode\": \"ASYNC\",\r\n \"startTime\": \"2020-09-24T05:56:25.643\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps2115?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzMjExNT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps9593?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzOTU5Mz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b8dfc8dd-e9ed-4890-88a2-7a47ee7f4b5d" + "04938352-d8f1-4e4d-887c-d45bd78790a5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -2985,22 +2988,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIxMTUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1OTMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-request-id": [ - "0b1022cc-c552-4411-b9f5-404403daae7c" + "9ca6bf65-a388-481f-958e-f92f875d0781" ], "x-ms-correlation-request-id": [ - "0b1022cc-c552-4411-b9f5-404403daae7c" + "9ca6bf65-a388-481f-958e-f92f875d0781" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045532Z:0b1022cc-c552-4411-b9f5-404403daae7c" + "WESTUS:20200924T055713Z:9ca6bf65-a388-481f-958e-f92f875d0781" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3009,7 +3012,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:55:31 GMT" + "Thu, 24 Sep 2020 05:57:13 GMT" ], "Expires": [ "-1" @@ -3022,13 +3025,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIxMTUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeE1UVXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1OTMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMU9UTXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3042,22 +3045,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIxMTUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1OTMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11999" ], "x-ms-request-id": [ - "692ea33c-338f-4cc3-9393-ec30aae93b90" + "48eb8476-ade5-4b5a-97c5-c13d73227f5f" ], "x-ms-correlation-request-id": [ - "692ea33c-338f-4cc3-9393-ec30aae93b90" + "48eb8476-ade5-4b5a-97c5-c13d73227f5f" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045547Z:692ea33c-338f-4cc3-9393-ec30aae93b90" + "WESTUS:20200924T055729Z:48eb8476-ade5-4b5a-97c5-c13d73227f5f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3066,7 +3069,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:55:46 GMT" + "Thu, 24 Sep 2020 05:57:28 GMT" ], "Expires": [ "-1" @@ -3079,13 +3082,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIxMTUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeE1UVXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1OTMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMU9UTXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3099,22 +3102,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIxMTUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1OTMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11998" ], "x-ms-request-id": [ - "f3e3197b-e173-47db-98c2-075752fad579" + "1b44c65b-219b-449a-b883-22af5426f06d" ], "x-ms-correlation-request-id": [ - "f3e3197b-e173-47db-98c2-075752fad579" + "1b44c65b-219b-449a-b883-22af5426f06d" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045602Z:f3e3197b-e173-47db-98c2-075752fad579" + "WESTUS:20200924T055744Z:1b44c65b-219b-449a-b883-22af5426f06d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3123,7 +3126,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:56:01 GMT" + "Thu, 24 Sep 2020 05:57:43 GMT" ], "Expires": [ "-1" @@ -3136,13 +3139,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIxMTUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeE1UVXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1OTMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMU9UTXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3156,22 +3159,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIxMTUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1OTMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11997" ], "x-ms-request-id": [ - "0cf16aef-8090-48ef-8e5f-1beb2ee53475" + "8a4e5f01-af53-4838-adc9-f638fa3928c2" ], "x-ms-correlation-request-id": [ - "0cf16aef-8090-48ef-8e5f-1beb2ee53475" + "8a4e5f01-af53-4838-adc9-f638fa3928c2" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045618Z:0cf16aef-8090-48ef-8e5f-1beb2ee53475" + "WESTUS:20200924T055759Z:8a4e5f01-af53-4838-adc9-f638fa3928c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3180,7 +3183,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:56:18 GMT" + "Thu, 24 Sep 2020 05:57:59 GMT" ], "Expires": [ "-1" @@ -3193,13 +3196,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIxMTUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeE1UVXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1OTMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMU9UTXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3213,22 +3216,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIxMTUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1OTMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11996" ], "x-ms-request-id": [ - "71f8af06-85c2-42f7-85ce-f0b548aceb73" + "3ab76767-8637-4fac-8ffb-9d45c8b943c6" ], "x-ms-correlation-request-id": [ - "71f8af06-85c2-42f7-85ce-f0b548aceb73" + "3ab76767-8637-4fac-8ffb-9d45c8b943c6" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045633Z:71f8af06-85c2-42f7-85ce-f0b548aceb73" + "WESTUS:20200924T055815Z:3ab76767-8637-4fac-8ffb-9d45c8b943c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3237,7 +3240,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:56:33 GMT" + "Thu, 24 Sep 2020 05:58:14 GMT" ], "Expires": [ "-1" @@ -3250,13 +3253,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIxMTUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeE1UVXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1OTMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMU9UTXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3270,22 +3273,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIxMTUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1OTMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11995" ], "x-ms-request-id": [ - "af08fb58-cb8c-4456-a1db-8c17dbdad7a8" + "055dbf0e-8cc8-4f9b-bffe-76a9c52a896a" ], "x-ms-correlation-request-id": [ - "af08fb58-cb8c-4456-a1db-8c17dbdad7a8" + "055dbf0e-8cc8-4f9b-bffe-76a9c52a896a" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045648Z:af08fb58-cb8c-4456-a1db-8c17dbdad7a8" + "WESTUS:20200924T055830Z:055dbf0e-8cc8-4f9b-bffe-76a9c52a896a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3294,7 +3297,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:56:48 GMT" + "Thu, 24 Sep 2020 05:58:29 GMT" ], "Expires": [ "-1" @@ -3307,13 +3310,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIxMTUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeE1UVXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1OTMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMU9UTXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3327,22 +3330,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIxMTUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1OTMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11994" ], "x-ms-request-id": [ - "6454ab0a-e90a-41d7-966d-e52bc04a8553" + "bcf93865-de04-4eb4-952d-d41f206f8b54" ], "x-ms-correlation-request-id": [ - "6454ab0a-e90a-41d7-966d-e52bc04a8553" + "bcf93865-de04-4eb4-952d-d41f206f8b54" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045704Z:6454ab0a-e90a-41d7-966d-e52bc04a8553" + "WESTUS:20200924T055845Z:bcf93865-de04-4eb4-952d-d41f206f8b54" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3351,7 +3354,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:57:04 GMT" + "Thu, 24 Sep 2020 05:58:45 GMT" ], "Expires": [ "-1" @@ -3364,13 +3367,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIxMTUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeE1UVXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1OTMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMU9UTXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3384,16 +3387,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11993" ], "x-ms-request-id": [ - "f854d2f6-660f-4d11-8411-6e38852fa934" + "f17e0994-16ec-4d29-b9ad-94417f1edb0d" ], "x-ms-correlation-request-id": [ - "f854d2f6-660f-4d11-8411-6e38852fa934" + "f17e0994-16ec-4d29-b9ad-94417f1edb0d" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045719Z:f854d2f6-660f-4d11-8411-6e38852fa934" + "WESTUS:20200924T055901Z:f17e0994-16ec-4d29-b9ad-94417f1edb0d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3402,7 +3405,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:57:19 GMT" + "Thu, 24 Sep 2020 05:59:00 GMT" ], "Expires": [ "-1" @@ -3415,13 +3418,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIxMTUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeE1UVXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1OTMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMU9UTXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3435,16 +3438,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11992" ], "x-ms-request-id": [ - "00a28743-9188-4888-a830-0b282a54bd21" + "febe9dcb-bf34-4e2b-9ea7-bc0e0e5b41d7" ], "x-ms-correlation-request-id": [ - "00a28743-9188-4888-a830-0b282a54bd21" + "febe9dcb-bf34-4e2b-9ea7-bc0e0e5b41d7" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045719Z:00a28743-9188-4888-a830-0b282a54bd21" + "WESTUS:20200924T055901Z:febe9dcb-bf34-4e2b-9ea7-bc0e0e5b41d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3453,7 +3456,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:57:19 GMT" + "Thu, 24 Sep 2020 05:59:01 GMT" ], "Expires": [ "-1" @@ -3466,19 +3469,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps5875?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzNTg3NT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps9244?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzOTI0ND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "db55312c-f89c-45b6-aabe-011436e43516" + "34223c25-d7d6-47cf-9f27-594b97dbe53d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3492,22 +3495,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU4NzUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNDQtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14998" ], "x-ms-request-id": [ - "4190f486-db8e-493b-aa8a-16523db5edd9" + "cfa61998-5bc5-4cdb-adb4-f8c9290c16ad" ], "x-ms-correlation-request-id": [ - "4190f486-db8e-493b-aa8a-16523db5edd9" + "cfa61998-5bc5-4cdb-adb4-f8c9290c16ad" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045722Z:4190f486-db8e-493b-aa8a-16523db5edd9" + "WESTUS:20200924T055903Z:cfa61998-5bc5-4cdb-adb4-f8c9290c16ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3516,7 +3519,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:57:22 GMT" + "Thu, 24 Sep 2020 05:59:03 GMT" ], "Expires": [ "-1" @@ -3529,13 +3532,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU4NzUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNE56VXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNDQtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU5EUXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3549,22 +3552,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU4NzUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNDQtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11991" ], "x-ms-request-id": [ - "b8b7185c-9715-4011-8ba4-05adf6c68fe7" + "379da7cb-6a6b-4a60-8943-89f27dcc1a87" ], "x-ms-correlation-request-id": [ - "b8b7185c-9715-4011-8ba4-05adf6c68fe7" + "379da7cb-6a6b-4a60-8943-89f27dcc1a87" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045737Z:b8b7185c-9715-4011-8ba4-05adf6c68fe7" + "WESTUS:20200924T055919Z:379da7cb-6a6b-4a60-8943-89f27dcc1a87" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3573,7 +3576,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:57:37 GMT" + "Thu, 24 Sep 2020 05:59:18 GMT" ], "Expires": [ "-1" @@ -3586,13 +3589,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU4NzUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNE56VXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNDQtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU5EUXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3606,22 +3609,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU4NzUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNDQtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11990" ], "x-ms-request-id": [ - "4965d78f-eb0a-4d76-af1f-d6063457e7b0" + "0ca81764-42df-4cb6-8210-014bcdfb2220" ], "x-ms-correlation-request-id": [ - "4965d78f-eb0a-4d76-af1f-d6063457e7b0" + "0ca81764-42df-4cb6-8210-014bcdfb2220" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045753Z:4965d78f-eb0a-4d76-af1f-d6063457e7b0" + "WESTUS:20200924T055934Z:0ca81764-42df-4cb6-8210-014bcdfb2220" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3630,7 +3633,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:57:52 GMT" + "Thu, 24 Sep 2020 05:59:34 GMT" ], "Expires": [ "-1" @@ -3643,13 +3646,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU4NzUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNE56VXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNDQtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU5EUXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3663,22 +3666,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU4NzUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNDQtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11989" ], "x-ms-request-id": [ - "8d1123ef-dc7e-4ee3-9911-a9350b2fd447" + "5fae6cd2-4c86-463d-a468-afb2ab4d92bf" ], "x-ms-correlation-request-id": [ - "8d1123ef-dc7e-4ee3-9911-a9350b2fd447" + "5fae6cd2-4c86-463d-a468-afb2ab4d92bf" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045808Z:8d1123ef-dc7e-4ee3-9911-a9350b2fd447" + "WESTUS:20200924T055949Z:5fae6cd2-4c86-463d-a468-afb2ab4d92bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3687,7 +3690,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:58:07 GMT" + "Thu, 24 Sep 2020 05:59:49 GMT" ], "Expires": [ "-1" @@ -3700,13 +3703,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU4NzUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNE56VXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNDQtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU5EUXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3720,22 +3723,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU4NzUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNDQtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11988" ], "x-ms-request-id": [ - "6239c139-1ac6-4c39-8efc-89cf62686b07" + "c73cbead-6770-41bd-ae31-b3245d86a97b" ], "x-ms-correlation-request-id": [ - "6239c139-1ac6-4c39-8efc-89cf62686b07" + "c73cbead-6770-41bd-ae31-b3245d86a97b" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045823Z:6239c139-1ac6-4c39-8efc-89cf62686b07" + "WESTUS:20200924T060005Z:c73cbead-6770-41bd-ae31-b3245d86a97b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3744,7 +3747,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:58:23 GMT" + "Thu, 24 Sep 2020 06:00:04 GMT" ], "Expires": [ "-1" @@ -3757,13 +3760,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU4NzUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNE56VXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNDQtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU5EUXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3777,22 +3780,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU4NzUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNDQtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11987" ], "x-ms-request-id": [ - "c5c1484b-f50f-4ba8-8a73-a30591cee391" + "84510ef3-5984-4001-b954-45bf14cf2862" ], "x-ms-correlation-request-id": [ - "c5c1484b-f50f-4ba8-8a73-a30591cee391" + "84510ef3-5984-4001-b954-45bf14cf2862" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045839Z:c5c1484b-f50f-4ba8-8a73-a30591cee391" + "WESTUS:20200924T060020Z:84510ef3-5984-4001-b954-45bf14cf2862" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3801,7 +3804,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:58:38 GMT" + "Thu, 24 Sep 2020 06:00:19 GMT" ], "Expires": [ "-1" @@ -3814,13 +3817,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU4NzUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNE56VXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNDQtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU5EUXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3834,22 +3837,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU4NzUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNDQtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11986" ], "x-ms-request-id": [ - "8d1b2331-b10c-45c1-b4b8-8bc4023d434b" + "b08f1a05-0329-43cb-9136-c494dd9e6d88" ], "x-ms-correlation-request-id": [ - "8d1b2331-b10c-45c1-b4b8-8bc4023d434b" + "b08f1a05-0329-43cb-9136-c494dd9e6d88" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045854Z:8d1b2331-b10c-45c1-b4b8-8bc4023d434b" + "WESTUS:20200924T060035Z:b08f1a05-0329-43cb-9136-c494dd9e6d88" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3858,7 +3861,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:58:53 GMT" + "Thu, 24 Sep 2020 06:00:35 GMT" ], "Expires": [ "-1" @@ -3871,13 +3874,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU4NzUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNE56VXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNDQtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU5EUXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3891,16 +3894,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11985" ], "x-ms-request-id": [ - "422f3043-cc66-499f-b550-8dbca8f53ad7" + "ec10c08f-1f2a-4634-b56d-5277b624eb71" ], "x-ms-correlation-request-id": [ - "422f3043-cc66-499f-b550-8dbca8f53ad7" + "ec10c08f-1f2a-4634-b56d-5277b624eb71" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045909Z:422f3043-cc66-499f-b550-8dbca8f53ad7" + "WESTUS:20200924T060051Z:ec10c08f-1f2a-4634-b56d-5277b624eb71" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3909,7 +3912,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:59:08 GMT" + "Thu, 24 Sep 2020 06:00:50 GMT" ], "Expires": [ "-1" @@ -3922,13 +3925,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU4NzUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNE56VXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNDQtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU5EUXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3942,16 +3945,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11984" ], "x-ms-request-id": [ - "c27441cd-3017-4902-a074-528464145857" + "d3f3493e-309e-4180-9adc-6b1417d9c731" ], "x-ms-correlation-request-id": [ - "c27441cd-3017-4902-a074-528464145857" + "d3f3493e-309e-4180-9adc-6b1417d9c731" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045910Z:c27441cd-3017-4902-a074-528464145857" + "WESTUS:20200924T060051Z:d3f3493e-309e-4180-9adc-6b1417d9c731" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3960,7 +3963,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:59:09 GMT" + "Thu, 24 Sep 2020 06:00:50 GMT" ], "Expires": [ "-1" @@ -3975,11 +3978,11 @@ ], "Names": { "Test-CreateNamedSecondaryDatabase": [ - "ps2115", - "ps9184", - "ps1184", - "ps5875", - "ps2362" + "ps9593", + "ps2661", + "ps7157", + "ps9244", + "ps7046" ] }, "Variables": { diff --git a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestCreateNamedSecondaryDatabaseNegative.json b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestCreateNamedSecondaryDatabaseNegative.json index 4b4b441aa21d..4eabc335f50d 100644 --- a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestCreateNamedSecondaryDatabaseNegative.json +++ b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestCreateNamedSecondaryDatabaseNegative.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "233b9f98-a291-455f-8636-8ba831c58d78" + "3fde9bb7-33bf-40bc-9495-2afd2bc387fc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -30,13 +30,13 @@ "11999" ], "x-ms-request-id": [ - "52e40844-ec09-4489-b132-dbe67c8683c3" + "e6ad238e-c173-47e4-a298-2115c0d4559f" ], "x-ms-correlation-request-id": [ - "52e40844-ec09-4489-b132-dbe67c8683c3" + "e6ad238e-c173-47e4-a298-2115c0d4559f" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044138Z:52e40844-ec09-4489-b132-dbe67c8683c3" + "WESTUS:20200924T054413Z:e6ad238e-c173-47e4-a298-2115c0d4559f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:41:38 GMT" + "Thu, 24 Sep 2020 05:44:12 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -61,19 +61,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps1640?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzMTY0MD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps7897?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzNzg5Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West Europe\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "821ea8b6-a502-41a5-815d-f6a0cb964294" + "95538925-d3cc-4f85-9bbc-442892fc866f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -96,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "b888c016-b9bd-4943-bd11-a4efde254053" + "145d2825-f4ac-4ced-85a0-b7c19e24c1a0" ], "x-ms-correlation-request-id": [ - "b888c016-b9bd-4943-bd11-a4efde254053" + "145d2825-f4ac-4ced-85a0-b7c19e24c1a0" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044140Z:b888c016-b9bd-4943-bd11-a4efde254053" + "WESTUS:20200924T054419Z:145d2825-f4ac-4ced-85a0-b7c19e24c1a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:41:40 GMT" + "Thu, 24 Sep 2020 05:44:18 GMT" ], "Content-Length": [ "169" @@ -123,23 +123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1640\",\r\n \"name\": \"ps1640\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7897\",\r\n \"name\": \"ps7897\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1640/providers/Microsoft.Sql/servers/ps6897?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY0MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjg5Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7897/providers/Microsoft.Sql/servers/ps969?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzg5Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTY5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cc723535-181c-4b68-8de3-ea9fece4ec47" + "d52d2584-2294-4fc2-a68c-6f26c5bd99cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -156,13 +156,13 @@ "gateway" ], "x-ms-request-id": [ - "7dd45936-eca1-485c-92d2-c146d2635e55" + "d56efa4d-3000-414f-a9a1-bc8d5cb3aff8" ], "x-ms-correlation-request-id": [ - "7dd45936-eca1-485c-92d2-c146d2635e55" + "d56efa4d-3000-414f-a9a1-bc8d5cb3aff8" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044141Z:7dd45936-eca1-485c-92d2-c146d2635e55" + "WESTUS:20200924T054419Z:d56efa4d-3000-414f-a9a1-bc8d5cb3aff8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -171,7 +171,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:41:41 GMT" + "Thu, 24 Sep 2020 05:44:18 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -180,20 +180,20 @@ "-1" ], "Content-Length": [ - "206" + "205" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps6897' under resource group 'ps1640' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps969' under resource group 'ps7897' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1640/providers/Microsoft.Sql/servers/ps6897?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY0MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjg5Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7897/providers/Microsoft.Sql/servers/ps969?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzg5Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTY5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -207,7 +207,7 @@ "no-cache" ], "x-ms-request-id": [ - "aee102e4-0d41-466d-b6cc-622253c03319" + "83d24204-9351-40b4-b256-3147137b71fa" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -216,10 +216,10 @@ "11990" ], "x-ms-correlation-request-id": [ - "6e824e71-86a7-4ba2-84d6-dba668dcf306" + "3457644e-da67-4224-bc5f-3cfbf1009ed0" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044253Z:6e824e71-86a7-4ba2-84d6-dba668dcf306" + "WESTUS:20200924T054535Z:3457644e-da67-4224-bc5f-3cfbf1009ed0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -228,10 +228,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:42:52 GMT" + "Thu, 24 Sep 2020 05:45:34 GMT" ], "Content-Length": [ - "412" + "409" ], "Content-Type": [ "application/json; charset=utf-8" @@ -240,23 +240,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps6897.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1640/providers/Microsoft.Sql/servers/ps6897\",\r\n \"name\": \"ps6897\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps969.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7897/providers/Microsoft.Sql/servers/ps969\",\r\n \"name\": \"ps969\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1640/providers/Microsoft.Sql/servers/ps6897?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY0MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjg5Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7897/providers/Microsoft.Sql/servers/ps969?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzg5Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTY5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f64c2558-dc4b-4066-8e05-8374f65f9a04" + "4c09e97c-4c9b-421a-b7b0-b490a8fc68ea" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -270,7 +270,7 @@ "no-cache" ], "x-ms-request-id": [ - "974f21dd-a173-44bb-9ca0-b6c96b6bf980" + "b1e981ae-be63-43c2-9fb0-acf41e99f694" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -279,10 +279,10 @@ "11989" ], "x-ms-correlation-request-id": [ - "321e1206-2451-49d7-be3e-d4f79c3ed266" + "cef61cdf-0141-4456-b58f-b1eb85e0184a" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044253Z:321e1206-2451-49d7-be3e-d4f79c3ed266" + "WESTUS:20200924T054535Z:cef61cdf-0141-4456-b58f-b1eb85e0184a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -291,10 +291,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:42:52 GMT" + "Thu, 24 Sep 2020 05:45:35 GMT" ], "Content-Length": [ - "412" + "409" ], "Content-Type": [ "application/json; charset=utf-8" @@ -303,23 +303,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps6897.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1640/providers/Microsoft.Sql/servers/ps6897\",\r\n \"name\": \"ps6897\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps969.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7897/providers/Microsoft.Sql/servers/ps969\",\r\n \"name\": \"ps969\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1640/providers/Microsoft.Sql/servers/ps6897?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY0MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjg5Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7897/providers/Microsoft.Sql/servers/ps969?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzg5Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTY5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "85ddf5d5-406b-4d5e-bdb7-5ccf5f57d380" + "16925093-81da-4d52-9cce-aaaa3caf1dc7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -333,7 +333,7 @@ "no-cache" ], "x-ms-request-id": [ - "e1267e82-dcbe-4005-8bb1-86803f2a7502" + "f958210a-c3e3-4a2a-a867-334c3bac218c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -342,10 +342,10 @@ "11987" ], "x-ms-correlation-request-id": [ - "b38311dc-7ced-4166-b218-0bfdb54a5ed7" + "4d23a6b5-91a3-4723-a74e-b1caa380ce29" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044254Z:b38311dc-7ced-4166-b218-0bfdb54a5ed7" + "WESTUS:20200924T054536Z:4d23a6b5-91a3-4723-a74e-b1caa380ce29" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -354,10 +354,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:42:53 GMT" + "Thu, 24 Sep 2020 05:45:35 GMT" ], "Content-Length": [ - "412" + "409" ], "Content-Type": [ "application/json; charset=utf-8" @@ -366,23 +366,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps6897.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1640/providers/Microsoft.Sql/servers/ps6897\",\r\n \"name\": \"ps6897\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps969.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7897/providers/Microsoft.Sql/servers/ps969\",\r\n \"name\": \"ps969\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1640/providers/Microsoft.Sql/servers/ps6897?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY0MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjg5Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7897/providers/Microsoft.Sql/servers/ps969?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzg5Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTY5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"West Europe\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "17daa419-f791-4078-9774-49af33e88832" + "6fdd9126-89d3-4dfe-a50c-96a8e3ddb91a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -402,16 +402,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1640/providers/Microsoft.Sql/locations/westeurope/serverOperationResults/e71a83dc-7eee-473e-8347-e990616f0723?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7897/providers/Microsoft.Sql/locations/westeurope/serverOperationResults/f970c6eb-f617-4a51-a7f8-f47e2d0c088e?api-version=2019-06-01-preview" ], "Retry-After": [ "1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1640/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/e71a83dc-7eee-473e-8347-e990616f0723?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7897/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/f970c6eb-f617-4a51-a7f8-f47e2d0c088e?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "e71a83dc-7eee-473e-8347-e990616f0723" + "f970c6eb-f617-4a51-a7f8-f47e2d0c088e" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -420,10 +420,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "96c17813-5905-4df0-ab68-1fb77ce1ba55" + "82479641-4b54-43a6-aac7-163bbe550019" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044146Z:96c17813-5905-4df0-ab68-1fb77ce1ba55" + "WESTUS:20200924T054428Z:82479641-4b54-43a6-aac7-163bbe550019" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,10 +432,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:41:46 GMT" + "Thu, 24 Sep 2020 05:44:28 GMT" ], "Content-Length": [ - "74" + "73" ], "Content-Type": [ "application/json; charset=utf-8" @@ -444,17 +444,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-14T04:41:46.393Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-24T05:44:28.62Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1640/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/e71a83dc-7eee-473e-8347-e990616f0723?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY0MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2U3MWE4M2RjLTdlZWUtNDczZS04MzQ3LWU5OTA2MTZmMDcyMz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7897/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/f970c6eb-f617-4a51-a7f8-f47e2d0c088e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzg5Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2Y5NzBjNmViLWY2MTctNGE1MS1hN2Y4LWY0N2UyZDBjMDg4ZT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -471,7 +471,7 @@ "1" ], "x-ms-request-id": [ - "42ea8fda-40e7-4106-acd5-120eab3ebcb4" + "e57a928b-d0ae-4a2e-a540-ebd8c0b16c1f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -480,10 +480,10 @@ "11998" ], "x-ms-correlation-request-id": [ - "2800f23e-7ebe-4392-8f8f-c4928624c381" + "9a79f303-1ecc-4445-9124-e05e9a841514" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044147Z:2800f23e-7ebe-4392-8f8f-c4928624c381" + "WESTUS:20200924T054429Z:9a79f303-1ecc-4445-9124-e05e9a841514" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -492,10 +492,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:41:47 GMT" + "Thu, 24 Sep 2020 05:44:29 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -504,17 +504,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"e71a83dc-7eee-473e-8347-e990616f0723\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:41:46.393Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"f970c6eb-f617-4a51-a7f8-f47e2d0c088e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:44:28.62Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1640/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/e71a83dc-7eee-473e-8347-e990616f0723?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY0MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2U3MWE4M2RjLTdlZWUtNDczZS04MzQ3LWU5OTA2MTZmMDcyMz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7897/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/f970c6eb-f617-4a51-a7f8-f47e2d0c088e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzg5Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2Y5NzBjNmViLWY2MTctNGE1MS1hN2Y4LWY0N2UyZDBjMDg4ZT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -531,7 +531,7 @@ "1" ], "x-ms-request-id": [ - "7510da44-b3eb-4e4c-b99c-b62951817879" + "f7e793bb-7999-4485-9bba-e37aa0620c11" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -540,10 +540,10 @@ "11997" ], "x-ms-correlation-request-id": [ - "77595443-a444-46e6-9fc9-f50624f63559" + "39a86e8b-64e7-4874-8469-e1a09017fcde" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044148Z:77595443-a444-46e6-9fc9-f50624f63559" + "WESTUS:20200924T054431Z:39a86e8b-64e7-4874-8469-e1a09017fcde" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -552,10 +552,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:41:48 GMT" + "Thu, 24 Sep 2020 05:44:31 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -564,17 +564,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"e71a83dc-7eee-473e-8347-e990616f0723\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:41:46.393Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"f970c6eb-f617-4a51-a7f8-f47e2d0c088e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:44:28.62Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1640/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/e71a83dc-7eee-473e-8347-e990616f0723?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY0MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2U3MWE4M2RjLTdlZWUtNDczZS04MzQ3LWU5OTA2MTZmMDcyMz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7897/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/f970c6eb-f617-4a51-a7f8-f47e2d0c088e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzg5Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2Y5NzBjNmViLWY2MTctNGE1MS1hN2Y4LWY0N2UyZDBjMDg4ZT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -591,7 +591,7 @@ "1" ], "x-ms-request-id": [ - "95c05a80-20a2-4300-b639-ed44ad8eb873" + "385bcdc6-73cf-4a47-a728-833f399d59db" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -600,10 +600,10 @@ "11996" ], "x-ms-correlation-request-id": [ - "728dbe14-8117-4b50-88ec-1d8f573b7861" + "acbe462c-6aca-4c73-a28e-e6b1da2f70d9" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044150Z:728dbe14-8117-4b50-88ec-1d8f573b7861" + "WESTUS:20200924T054432Z:acbe462c-6aca-4c73-a28e-e6b1da2f70d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -612,10 +612,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:41:49 GMT" + "Thu, 24 Sep 2020 05:44:32 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -624,17 +624,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"e71a83dc-7eee-473e-8347-e990616f0723\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:41:46.393Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"f970c6eb-f617-4a51-a7f8-f47e2d0c088e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:44:28.62Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1640/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/e71a83dc-7eee-473e-8347-e990616f0723?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY0MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2U3MWE4M2RjLTdlZWUtNDczZS04MzQ3LWU5OTA2MTZmMDcyMz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7897/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/f970c6eb-f617-4a51-a7f8-f47e2d0c088e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzg5Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2Y5NzBjNmViLWY2MTctNGE1MS1hN2Y4LWY0N2UyZDBjMDg4ZT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -651,7 +651,7 @@ "1" ], "x-ms-request-id": [ - "b5f0cdfa-6b96-4512-b480-f7d2c79fa495" + "2c3f9b52-7039-4987-8c65-c5018c6dd20b" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -660,10 +660,10 @@ "11995" ], "x-ms-correlation-request-id": [ - "863a8ec1-a14d-49b2-97cb-c447a00739cc" + "7f946305-ce51-4948-9bb7-53f1556dfc56" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044151Z:863a8ec1-a14d-49b2-97cb-c447a00739cc" + "WESTUS:20200924T054433Z:7f946305-ce51-4948-9bb7-53f1556dfc56" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -672,10 +672,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:41:51 GMT" + "Thu, 24 Sep 2020 05:44:33 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -684,17 +684,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"e71a83dc-7eee-473e-8347-e990616f0723\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:41:46.393Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"f970c6eb-f617-4a51-a7f8-f47e2d0c088e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:44:28.62Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1640/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/e71a83dc-7eee-473e-8347-e990616f0723?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY0MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2U3MWE4M2RjLTdlZWUtNDczZS04MzQ3LWU5OTA2MTZmMDcyMz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7897/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/f970c6eb-f617-4a51-a7f8-f47e2d0c088e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzg5Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2Y5NzBjNmViLWY2MTctNGE1MS1hN2Y4LWY0N2UyZDBjMDg4ZT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -711,7 +711,7 @@ "20" ], "x-ms-request-id": [ - "706a0cb4-f5ab-47b1-8cdd-8e55db02e998" + "7c401313-3f3e-440d-84e1-68c37a103ee9" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -720,10 +720,10 @@ "11994" ], "x-ms-correlation-request-id": [ - "b5667334-bb16-443c-820a-50a912e92e19" + "94ec2dd6-cec3-4f36-8624-907ca4e78333" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044152Z:b5667334-bb16-443c-820a-50a912e92e19" + "WESTUS:20200924T054434Z:94ec2dd6-cec3-4f36-8624-907ca4e78333" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -732,10 +732,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:41:52 GMT" + "Thu, 24 Sep 2020 05:44:34 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -744,17 +744,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"e71a83dc-7eee-473e-8347-e990616f0723\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:41:46.393Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"f970c6eb-f617-4a51-a7f8-f47e2d0c088e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:44:28.62Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1640/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/e71a83dc-7eee-473e-8347-e990616f0723?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY0MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2U3MWE4M2RjLTdlZWUtNDczZS04MzQ3LWU5OTA2MTZmMDcyMz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7897/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/f970c6eb-f617-4a51-a7f8-f47e2d0c088e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzg5Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2Y5NzBjNmViLWY2MTctNGE1MS1hN2Y4LWY0N2UyZDBjMDg4ZT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -771,7 +771,7 @@ "20" ], "x-ms-request-id": [ - "4b857379-9531-4f98-bce7-7953d9d5e609" + "c0f84f40-990b-424d-a97f-79f81c3d863d" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -780,10 +780,10 @@ "11993" ], "x-ms-correlation-request-id": [ - "4d07ac98-d721-469f-82db-e21cf4aa40b4" + "17be3e55-1cc7-4044-8903-65806ae204e2" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044212Z:4d07ac98-d721-469f-82db-e21cf4aa40b4" + "WESTUS:20200924T054454Z:17be3e55-1cc7-4044-8903-65806ae204e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -792,10 +792,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:42:12 GMT" + "Thu, 24 Sep 2020 05:44:54 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -804,17 +804,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"e71a83dc-7eee-473e-8347-e990616f0723\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:41:46.393Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"f970c6eb-f617-4a51-a7f8-f47e2d0c088e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:44:28.62Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1640/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/e71a83dc-7eee-473e-8347-e990616f0723?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY0MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2U3MWE4M2RjLTdlZWUtNDczZS04MzQ3LWU5OTA2MTZmMDcyMz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7897/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/f970c6eb-f617-4a51-a7f8-f47e2d0c088e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzg5Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2Y5NzBjNmViLWY2MTctNGE1MS1hN2Y4LWY0N2UyZDBjMDg4ZT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -831,7 +831,7 @@ "20" ], "x-ms-request-id": [ - "538754bf-0b54-4838-a8bb-00b0676e08e6" + "bda48a12-c3aa-41ca-ab9e-023672a49c1b" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -840,10 +840,10 @@ "11992" ], "x-ms-correlation-request-id": [ - "14980ccf-44a2-4fe3-8e1a-eb4036fcebc3" + "a4ad9828-e0e8-4a8c-bb67-77dc9122fac5" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044232Z:14980ccf-44a2-4fe3-8e1a-eb4036fcebc3" + "WESTUS:20200924T054515Z:a4ad9828-e0e8-4a8c-bb67-77dc9122fac5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -852,10 +852,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:42:32 GMT" + "Thu, 24 Sep 2020 05:45:14 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -864,17 +864,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"e71a83dc-7eee-473e-8347-e990616f0723\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:41:46.393Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"f970c6eb-f617-4a51-a7f8-f47e2d0c088e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:44:28.62Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1640/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/e71a83dc-7eee-473e-8347-e990616f0723?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY0MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2U3MWE4M2RjLTdlZWUtNDczZS04MzQ3LWU5OTA2MTZmMDcyMz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7897/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/f970c6eb-f617-4a51-a7f8-f47e2d0c088e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzg5Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2Y5NzBjNmViLWY2MTctNGE1MS1hN2Y4LWY0N2UyZDBjMDg4ZT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -891,7 +891,7 @@ "15" ], "x-ms-request-id": [ - "d68e8de0-e809-4cc0-a7bc-0bd07ed4c4e6" + "3aa8d400-0fae-43be-b027-01f1cf1b9308" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -900,10 +900,10 @@ "11991" ], "x-ms-correlation-request-id": [ - "2a0e858c-1e35-4973-b9c2-52bc493cc3f4" + "9dc4fc15-9920-40f2-9672-69c152263c99" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044253Z:2a0e858c-1e35-4973-b9c2-52bc493cc3f4" + "WESTUS:20200924T054535Z:9dc4fc15-9920-40f2-9672-69c152263c99" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -912,10 +912,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:42:52 GMT" + "Thu, 24 Sep 2020 05:45:34 GMT" ], "Content-Length": [ - "107" + "106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -924,23 +924,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"e71a83dc-7eee-473e-8347-e990616f0723\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-14T04:41:46.393Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"f970c6eb-f617-4a51-a7f8-f47e2d0c088e\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-24T05:44:28.62Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1640/providers/Microsoft.Sql/servers/ps6897/databases/ps1300?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY0MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjg5Ny9kYXRhYmFzZXMvcHMxMzAwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7897/providers/Microsoft.Sql/servers/ps969/databases/ps3126?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzg5Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTY5L2RhdGFiYXNlcy9wczMxMjY/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ebead2c2-b982-4a41-a098-72d721e6ec19" + "016e36f3-843c-48af-9ad4-94ddcb9278fe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -957,13 +957,13 @@ "gateway" ], "x-ms-request-id": [ - "e6e2fb5a-4666-4a68-a23b-afb8dd89916c" + "d8ad8c08-fffe-43fb-8071-df6488d24645" ], "x-ms-correlation-request-id": [ - "e6e2fb5a-4666-4a68-a23b-afb8dd89916c" + "d8ad8c08-fffe-43fb-8071-df6488d24645" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044254Z:e6e2fb5a-4666-4a68-a23b-afb8dd89916c" + "WESTUS:20200924T054535Z:d8ad8c08-fffe-43fb-8071-df6488d24645" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -972,7 +972,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:42:53 GMT" + "Thu, 24 Sep 2020 05:45:35 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -981,20 +981,20 @@ "-1" ], "Content-Length": [ - "223" + "222" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps6897/databases/ps1300' under resource group 'ps1640' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps969/databases/ps3126' under resource group 'ps7897' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1640/providers/Microsoft.Sql/servers/ps6897/databases/ps1300?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY0MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjg5Ny9kYXRhYmFzZXMvcHMxMzAwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7897/providers/Microsoft.Sql/servers/ps969/databases/ps3126?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzg5Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTY5L2RhdGFiYXNlcy9wczMxMjY/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1008,7 +1008,7 @@ "no-cache" ], "x-ms-request-id": [ - "37fff007-c691-496b-b5ad-344e8900881e" + "9bfcba0a-405d-4a3c-9693-25ca882d15e3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1017,10 +1017,10 @@ "11980" ], "x-ms-correlation-request-id": [ - "33ed9e0d-5041-414e-8e9d-cd9e76989e1b" + "e1c0a14b-d5fe-4586-99c1-78714de1e4f4" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044429Z:33ed9e0d-5041-414e-8e9d-cd9e76989e1b" + "WESTUS:20200924T054711Z:e1c0a14b-d5fe-4586-99c1-78714de1e4f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1029,10 +1029,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:44:29 GMT" + "Thu, 24 Sep 2020 05:47:11 GMT" ], "Content-Length": [ - "862" + "861" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1041,23 +1041,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"de75b87e-7a53-48f6-843c-601cf5c98ea2\",\r\n \"creationDate\": \"2020-09-14T04:44:19.067Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-14T05:14:19.067Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1640/providers/Microsoft.Sql/servers/ps6897/databases/ps1300\",\r\n \"name\": \"ps1300\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"9bf22977-8989-4195-b1cb-dd8b833c6cbb\",\r\n \"creationDate\": \"2020-09-24T05:46:57.307Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-24T06:16:57.307Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7897/providers/Microsoft.Sql/servers/ps969/databases/ps3126\",\r\n \"name\": \"ps3126\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1640/providers/Microsoft.Sql/servers/ps6897/databases/ps1300?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY0MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjg5Ny9kYXRhYmFzZXMvcHMxMzAwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7897/providers/Microsoft.Sql/servers/ps969/databases/ps3126?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzg5Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTY5L2RhdGFiYXNlcy9wczMxMjY/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e4669838-983b-4f89-958b-60c480f1808c" + "3becbce8-9562-4973-a494-9e65d9ea7fd6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1071,19 +1071,19 @@ "no-cache" ], "x-ms-request-id": [ - "7041a342-6c50-4313-869f-ca4e94105c86" + "878c39de-ec90-4804-8307-8dac684cf452" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11968" ], "x-ms-correlation-request-id": [ - "02bcebf0-810f-40db-a611-00f8ded3d3e9" + "df2a92e8-568f-47d1-8505-e17122f2c2c2" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044543Z:02bcebf0-810f-40db-a611-00f8ded3d3e9" + "WESTUS:20200924T054824Z:df2a92e8-568f-47d1-8505-e17122f2c2c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1092,10 +1092,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:45:42 GMT" + "Thu, 24 Sep 2020 05:48:24 GMT" ], "Content-Length": [ - "862" + "861" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1104,23 +1104,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"de75b87e-7a53-48f6-843c-601cf5c98ea2\",\r\n \"creationDate\": \"2020-09-14T04:44:19.067Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-14T05:14:19.067Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1640/providers/Microsoft.Sql/servers/ps6897/databases/ps1300\",\r\n \"name\": \"ps1300\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"9bf22977-8989-4195-b1cb-dd8b833c6cbb\",\r\n \"creationDate\": \"2020-09-24T05:46:57.307Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-24T06:16:57.307Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7897/providers/Microsoft.Sql/servers/ps969/databases/ps3126\",\r\n \"name\": \"ps3126\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1640/providers/Microsoft.Sql/servers/ps6897/databases/ps1300?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY0MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjg5Ny9kYXRhYmFzZXMvcHMxMzAwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7897/providers/Microsoft.Sql/servers/ps969/databases/ps3126?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzg5Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTY5L2RhdGFiYXNlcy9wczMxMjY/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"properties\": {\r\n \"maxSizeBytes\": 0,\r\n \"readScale\": \"\"\r\n },\r\n \"location\": \"westeurope\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a0cff4cc-1d0e-4219-a4b0-24f604dfb0a9" + "f9b0937b-4705-4505-ae47-c8d7a2de76bc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1140,16 +1140,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1640/providers/Microsoft.Sql/locations/westeurope/databaseOperationResults/eec0b210-d55e-4ea6-873d-2bf6f73d65eb?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7897/providers/Microsoft.Sql/locations/westeurope/databaseOperationResults/3dbc964f-ecba-4982-ab73-4a51c3229b3e?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1640/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/eec0b210-d55e-4ea6-873d-2bf6f73d65eb?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7897/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/3dbc964f-ecba-4982-ab73-4a51c3229b3e?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "eec0b210-d55e-4ea6-873d-2bf6f73d65eb" + "3dbc964f-ecba-4982-ab73-4a51c3229b3e" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1158,10 +1158,10 @@ "1198" ], "x-ms-correlation-request-id": [ - "0b0c11a8-859a-490f-b434-8ec17b65de74" + "05331001-7beb-480f-bd62-d8af289081a9" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044257Z:0b0c11a8-859a-490f-b434-8ec17b65de74" + "WESTUS:20200924T054539Z:05331001-7beb-480f-bd62-d8af289081a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1170,7 +1170,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:42:57 GMT" + "Thu, 24 Sep 2020 05:45:38 GMT" ], "Content-Length": [ "76" @@ -1182,17 +1182,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2020-09-14T04:42:57.643Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2020-09-24T05:45:39.403Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1640/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/eec0b210-d55e-4ea6-873d-2bf6f73d65eb?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY0MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZWVjMGIyMTAtZDU1ZS00ZWE2LTg3M2QtMmJmNmY3M2Q2NWViP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7897/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/3dbc964f-ecba-4982-ab73-4a51c3229b3e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzg5Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vM2RiYzk2NGYtZWNiYS00OTgyLWFiNzMtNGE1MWMzMjI5YjNlP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1209,19 +1209,19 @@ "15" ], "x-ms-request-id": [ - "035b7ce9-dc4f-454d-816d-a0162e5ed773" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "bd56d949-6ae2-4418-a5dc-1dd4fdcc8af9" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11986" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "4bbe2c74-086b-4891-94ae-035d76474f81" + "bf8a2512-d1b2-493c-9058-cf54c84f8904" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044312Z:4bbe2c74-086b-4891-94ae-035d76474f81" + "WESTUS:20200924T054554Z:bf8a2512-d1b2-493c-9058-cf54c84f8904" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1230,7 +1230,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:43:12 GMT" + "Thu, 24 Sep 2020 05:45:54 GMT" ], "Content-Length": [ "108" @@ -1242,17 +1242,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"eec0b210-d55e-4ea6-873d-2bf6f73d65eb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:42:57.643Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"3dbc964f-ecba-4982-ab73-4a51c3229b3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:45:39.403Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1640/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/eec0b210-d55e-4ea6-873d-2bf6f73d65eb?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY0MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZWVjMGIyMTAtZDU1ZS00ZWE2LTg3M2QtMmJmNmY3M2Q2NWViP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7897/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/3dbc964f-ecba-4982-ab73-4a51c3229b3e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzg5Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vM2RiYzk2NGYtZWNiYS00OTgyLWFiNzMtNGE1MWMzMjI5YjNlP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1269,7 +1269,7 @@ "15" ], "x-ms-request-id": [ - "009cbd23-7689-416b-9010-a49f202f3fc7" + "1513debe-7660-4a22-a0b4-b0a64b28edeb" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1278,10 +1278,10 @@ "11985" ], "x-ms-correlation-request-id": [ - "8e8dd21f-19fd-4d9a-b7fc-992dcfec0882" + "7f8e335c-55ab-4ec9-80e6-0affb2e23fb8" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044328Z:8e8dd21f-19fd-4d9a-b7fc-992dcfec0882" + "WESTUS:20200924T054609Z:7f8e335c-55ab-4ec9-80e6-0affb2e23fb8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1290,7 +1290,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:43:27 GMT" + "Thu, 24 Sep 2020 05:46:09 GMT" ], "Content-Length": [ "108" @@ -1302,17 +1302,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"eec0b210-d55e-4ea6-873d-2bf6f73d65eb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:42:57.643Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"3dbc964f-ecba-4982-ab73-4a51c3229b3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:45:39.403Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1640/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/eec0b210-d55e-4ea6-873d-2bf6f73d65eb?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY0MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZWVjMGIyMTAtZDU1ZS00ZWE2LTg3M2QtMmJmNmY3M2Q2NWViP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7897/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/3dbc964f-ecba-4982-ab73-4a51c3229b3e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzg5Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vM2RiYzk2NGYtZWNiYS00OTgyLWFiNzMtNGE1MWMzMjI5YjNlP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1329,7 +1329,7 @@ "15" ], "x-ms-request-id": [ - "04b52676-8e32-4282-bc3b-d7158205c362" + "ef40c56f-f27e-4f06-b1dc-5e87d24b0c2d" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1338,10 +1338,10 @@ "11984" ], "x-ms-correlation-request-id": [ - "111a9113-2fd1-4e7c-aa33-7728a082cdab" + "5907d0ea-1d74-4fce-8857-3024a6e9ec4f" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044343Z:111a9113-2fd1-4e7c-aa33-7728a082cdab" + "WESTUS:20200924T054625Z:5907d0ea-1d74-4fce-8857-3024a6e9ec4f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1350,7 +1350,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:43:42 GMT" + "Thu, 24 Sep 2020 05:46:24 GMT" ], "Content-Length": [ "108" @@ -1362,17 +1362,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"eec0b210-d55e-4ea6-873d-2bf6f73d65eb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:42:57.643Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"3dbc964f-ecba-4982-ab73-4a51c3229b3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:45:39.403Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1640/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/eec0b210-d55e-4ea6-873d-2bf6f73d65eb?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY0MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZWVjMGIyMTAtZDU1ZS00ZWE2LTg3M2QtMmJmNmY3M2Q2NWViP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7897/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/3dbc964f-ecba-4982-ab73-4a51c3229b3e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzg5Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vM2RiYzk2NGYtZWNiYS00OTgyLWFiNzMtNGE1MWMzMjI5YjNlP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1389,7 +1389,7 @@ "15" ], "x-ms-request-id": [ - "e12de250-7043-451d-8e8d-2d3b7b01c193" + "405fd21c-b76c-45f5-90b4-e233fd8a798d" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1398,10 +1398,10 @@ "11983" ], "x-ms-correlation-request-id": [ - "52dd7ddf-c943-4e5b-9e1b-63a24bf99714" + "99114c55-5ec1-4bd2-a1eb-2c86009fd566" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044359Z:52dd7ddf-c943-4e5b-9e1b-63a24bf99714" + "WESTUS:20200924T054640Z:99114c55-5ec1-4bd2-a1eb-2c86009fd566" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1410,7 +1410,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:43:59 GMT" + "Thu, 24 Sep 2020 05:46:39 GMT" ], "Content-Length": [ "108" @@ -1422,17 +1422,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"eec0b210-d55e-4ea6-873d-2bf6f73d65eb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:42:57.643Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"3dbc964f-ecba-4982-ab73-4a51c3229b3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:45:39.403Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1640/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/eec0b210-d55e-4ea6-873d-2bf6f73d65eb?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY0MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZWVjMGIyMTAtZDU1ZS00ZWE2LTg3M2QtMmJmNmY3M2Q2NWViP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7897/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/3dbc964f-ecba-4982-ab73-4a51c3229b3e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzg5Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vM2RiYzk2NGYtZWNiYS00OTgyLWFiNzMtNGE1MWMzMjI5YjNlP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1449,7 +1449,7 @@ "15" ], "x-ms-request-id": [ - "a8fb076b-107d-49d1-bed3-1fa75bf782d0" + "ed5da9d1-ef81-44ed-8e73-ca9218e55108" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1458,10 +1458,10 @@ "11982" ], "x-ms-correlation-request-id": [ - "988bbb7e-d1f7-4361-bdb4-75a94df24dab" + "3b22416b-971b-4681-8ed3-b49ca13ebff2" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044414Z:988bbb7e-d1f7-4361-bdb4-75a94df24dab" + "WESTUS:20200924T054656Z:3b22416b-971b-4681-8ed3-b49ca13ebff2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1470,7 +1470,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:44:14 GMT" + "Thu, 24 Sep 2020 05:46:56 GMT" ], "Content-Length": [ "108" @@ -1482,17 +1482,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"eec0b210-d55e-4ea6-873d-2bf6f73d65eb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:42:57.643Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"3dbc964f-ecba-4982-ab73-4a51c3229b3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:45:39.403Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1640/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/eec0b210-d55e-4ea6-873d-2bf6f73d65eb?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTY0MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZWVjMGIyMTAtZDU1ZS00ZWE2LTg3M2QtMmJmNmY3M2Q2NWViP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7897/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/3dbc964f-ecba-4982-ab73-4a51c3229b3e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzg5Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vM2RiYzk2NGYtZWNiYS00OTgyLWFiNzMtNGE1MWMzMjI5YjNlP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1509,7 +1509,7 @@ "15" ], "x-ms-request-id": [ - "90ac516c-0882-466c-87bd-162251ae3569" + "cc6be05d-f366-4649-bc5e-eb2d950e184f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1518,10 +1518,10 @@ "11981" ], "x-ms-correlation-request-id": [ - "1dbd77bf-cb87-418d-a378-c160d6149547" + "e22aa9af-2434-4df4-9927-2f51d13cc8ff" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044429Z:1dbd77bf-cb87-418d-a378-c160d6149547" + "WESTUS:20200924T054711Z:e22aa9af-2434-4df4-9927-2f51d13cc8ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1530,7 +1530,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:44:29 GMT" + "Thu, 24 Sep 2020 05:47:11 GMT" ], "Content-Length": [ "107" @@ -1542,23 +1542,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"eec0b210-d55e-4ea6-873d-2bf6f73d65eb\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-14T04:42:57.643Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"3dbc964f-ecba-4982-ab73-4a51c3229b3e\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-24T05:45:39.403Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps9619?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzOTYxOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps6453?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzNjQ1Mz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West Europe\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "47f4d64c-c262-493a-b393-8b1d89fc59e8" + "58936434-931f-4efe-b1fe-21da39a684e4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -1581,13 +1581,13 @@ "1199" ], "x-ms-request-id": [ - "191b1e7a-4219-4084-8a3c-1447fd347539" + "8682dbff-ce83-4dfd-ac04-96e2e457226e" ], "x-ms-correlation-request-id": [ - "191b1e7a-4219-4084-8a3c-1447fd347539" + "8682dbff-ce83-4dfd-ac04-96e2e457226e" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044431Z:191b1e7a-4219-4084-8a3c-1447fd347539" + "WESTUS:20200924T054713Z:8682dbff-ce83-4dfd-ac04-96e2e457226e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1596,7 +1596,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:44:31 GMT" + "Thu, 24 Sep 2020 05:47:12 GMT" ], "Content-Length": [ "169" @@ -1608,23 +1608,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9619\",\r\n \"name\": \"ps9619\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6453\",\r\n \"name\": \"ps6453\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9619/providers/Microsoft.Sql/servers/ps2161?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjE2MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6453/providers/Microsoft.Sql/servers/ps8891?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQ1My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODg5MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eaf1ac14-3d0c-47c4-84b8-3a64c3b9e90c" + "71419d87-bdb6-4a57-abfa-c7310121d290" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1641,13 +1641,13 @@ "gateway" ], "x-ms-request-id": [ - "6328e43d-c422-4e5a-ab5d-caf070cd20ef" + "89ca06aa-82a1-415a-97fe-5173bd9eb64e" ], "x-ms-correlation-request-id": [ - "6328e43d-c422-4e5a-ab5d-caf070cd20ef" + "89ca06aa-82a1-415a-97fe-5173bd9eb64e" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044432Z:6328e43d-c422-4e5a-ab5d-caf070cd20ef" + "WESTUS:20200924T054714Z:89ca06aa-82a1-415a-97fe-5173bd9eb64e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1656,7 +1656,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:44:31 GMT" + "Thu, 24 Sep 2020 05:47:13 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1668,17 +1668,17 @@ "206" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps2161' under resource group 'ps9619' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps8891' under resource group 'ps6453' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9619/providers/Microsoft.Sql/servers/ps2161?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjE2MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6453/providers/Microsoft.Sql/servers/ps8891?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQ1My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODg5MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1692,7 +1692,7 @@ "no-cache" ], "x-ms-request-id": [ - "2f334d22-8d11-474c-8c1d-d7fb836d136c" + "5cd389c3-69cd-4adf-a762-853f195868b2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1701,10 +1701,10 @@ "11970" ], "x-ms-correlation-request-id": [ - "a32f98bc-e36a-408e-b8ee-98b98a957cf1" + "64e3dfc6-b41c-421a-b99a-48527892defc" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044542Z:a32f98bc-e36a-408e-b8ee-98b98a957cf1" + "WESTUS:20200924T054824Z:64e3dfc6-b41c-421a-b99a-48527892defc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1713,7 +1713,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:45:42 GMT" + "Thu, 24 Sep 2020 05:48:23 GMT" ], "Content-Length": [ "412" @@ -1725,23 +1725,86 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps2161.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9619/providers/Microsoft.Sql/servers/ps2161\",\r\n \"name\": \"ps2161\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps8891.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6453/providers/Microsoft.Sql/servers/ps8891\",\r\n \"name\": \"ps8891\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9619/providers/Microsoft.Sql/servers/ps2161?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjE2MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6453/providers/Microsoft.Sql/servers/ps8891?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQ1My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODg5MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "baa550dd-9e61-4759-a7bb-28eb3ab599bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2f48f0f2-6701-43b0-9620-43bbce4f43ff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-correlation-request-id": [ + "5a0ac152-5f5e-497e-aa35-3bfbd276db6e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T054824Z:5a0ac152-5f5e-497e-aa35-3bfbd276db6e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 05:48:24 GMT" + ], + "Content-Length": [ + "412" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps8891.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6453/providers/Microsoft.Sql/servers/ps8891\",\r\n \"name\": \"ps8891\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6453/providers/Microsoft.Sql/servers/ps8891?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQ1My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODg5MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"West Europe\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "23cd3d18-70f6-4fea-9e23-c834d1416650" + "bf6df79e-a6f9-4cab-820f-d0b51a950298" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1761,16 +1824,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9619/providers/Microsoft.Sql/locations/westeurope/serverOperationResults/c3aed86c-6ee8-4a26-ae63-0a60dd935e5f?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6453/providers/Microsoft.Sql/locations/westeurope/serverOperationResults/00cdfdd3-cb8a-4f9c-aa2a-b00ceee5a5e7?api-version=2019-06-01-preview" ], "Retry-After": [ "1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9619/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/c3aed86c-6ee8-4a26-ae63-0a60dd935e5f?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6453/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/00cdfdd3-cb8a-4f9c-aa2a-b00ceee5a5e7?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "c3aed86c-6ee8-4a26-ae63-0a60dd935e5f" + "00cdfdd3-cb8a-4f9c-aa2a-b00ceee5a5e7" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1779,10 +1842,10 @@ "1197" ], "x-ms-correlation-request-id": [ - "3d931fab-3847-4d88-ba22-c19e8c6db527" + "d9a26cfb-1228-46d6-9817-e15f350c9a0f" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044435Z:3d931fab-3847-4d88-ba22-c19e8c6db527" + "WESTUS:20200924T054717Z:d9a26cfb-1228-46d6-9817-e15f350c9a0f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1791,10 +1854,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:44:35 GMT" + "Thu, 24 Sep 2020 05:47:17 GMT" ], "Content-Length": [ - "73" + "74" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1803,17 +1866,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-14T04:44:35.44Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-24T05:47:17.387Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9619/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/c3aed86c-6ee8-4a26-ae63-0a60dd935e5f?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2MzYWVkODZjLTZlZTgtNGEyNi1hZTYzLTBhNjBkZDkzNWU1Zj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6453/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/00cdfdd3-cb8a-4f9c-aa2a-b00ceee5a5e7?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQ1My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzAwY2RmZGQzLWNiOGEtNGY5Yy1hYTJhLWIwMGNlZWU1YTVlNz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1830,7 +1893,7 @@ "1" ], "x-ms-request-id": [ - "2a63ee80-58d1-429b-888c-a4346c81889b" + "80f60893-eeca-42e6-a27a-798e85cd72e1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1839,10 +1902,10 @@ "11978" ], "x-ms-correlation-request-id": [ - "c4a093bf-35d2-4206-b8de-74170a0b1d40" + "333a9dd8-ec80-41c3-b80a-492e85c350eb" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044436Z:c4a093bf-35d2-4206-b8de-74170a0b1d40" + "WESTUS:20200924T054718Z:333a9dd8-ec80-41c3-b80a-492e85c350eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1851,10 +1914,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:44:36 GMT" + "Thu, 24 Sep 2020 05:47:18 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1863,17 +1926,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"c3aed86c-6ee8-4a26-ae63-0a60dd935e5f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:44:35.44Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"00cdfdd3-cb8a-4f9c-aa2a-b00ceee5a5e7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:47:17.387Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9619/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/c3aed86c-6ee8-4a26-ae63-0a60dd935e5f?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2MzYWVkODZjLTZlZTgtNGEyNi1hZTYzLTBhNjBkZDkzNWU1Zj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6453/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/00cdfdd3-cb8a-4f9c-aa2a-b00ceee5a5e7?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQ1My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzAwY2RmZGQzLWNiOGEtNGY5Yy1hYTJhLWIwMGNlZWU1YTVlNz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1890,7 +1953,7 @@ "1" ], "x-ms-request-id": [ - "407bd0f1-1c94-499f-9ed1-9a7e379cee4c" + "6ab19427-342f-4d28-8f1c-d92c752153af" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1899,10 +1962,10 @@ "11977" ], "x-ms-correlation-request-id": [ - "1d7a2804-3d82-4779-976d-c9a3e260d321" + "89e53168-13a4-4958-961a-2d23db2b0cbf" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044437Z:1d7a2804-3d82-4779-976d-c9a3e260d321" + "WESTUS:20200924T054719Z:89e53168-13a4-4958-961a-2d23db2b0cbf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1911,10 +1974,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:44:37 GMT" + "Thu, 24 Sep 2020 05:47:19 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1923,17 +1986,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"c3aed86c-6ee8-4a26-ae63-0a60dd935e5f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:44:35.44Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"00cdfdd3-cb8a-4f9c-aa2a-b00ceee5a5e7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:47:17.387Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9619/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/c3aed86c-6ee8-4a26-ae63-0a60dd935e5f?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2MzYWVkODZjLTZlZTgtNGEyNi1hZTYzLTBhNjBkZDkzNWU1Zj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6453/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/00cdfdd3-cb8a-4f9c-aa2a-b00ceee5a5e7?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQ1My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzAwY2RmZGQzLWNiOGEtNGY5Yy1hYTJhLWIwMGNlZWU1YTVlNz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1950,7 +2013,7 @@ "1" ], "x-ms-request-id": [ - "517544df-8831-487d-858d-6d29acef4f1d" + "aeb884a0-171b-45fd-a28a-ec2bcff2dcff" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1959,10 +2022,10 @@ "11976" ], "x-ms-correlation-request-id": [ - "6b0ea933-a65d-4abd-b917-3b7d3cc43200" + "1f08f644-b10d-4306-8fa8-4371a383361d" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044439Z:6b0ea933-a65d-4abd-b917-3b7d3cc43200" + "WESTUS:20200924T054721Z:1f08f644-b10d-4306-8fa8-4371a383361d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1971,10 +2034,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:44:38 GMT" + "Thu, 24 Sep 2020 05:47:21 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1983,17 +2046,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"c3aed86c-6ee8-4a26-ae63-0a60dd935e5f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:44:35.44Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"00cdfdd3-cb8a-4f9c-aa2a-b00ceee5a5e7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:47:17.387Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9619/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/c3aed86c-6ee8-4a26-ae63-0a60dd935e5f?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2MzYWVkODZjLTZlZTgtNGEyNi1hZTYzLTBhNjBkZDkzNWU1Zj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6453/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/00cdfdd3-cb8a-4f9c-aa2a-b00ceee5a5e7?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQ1My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzAwY2RmZGQzLWNiOGEtNGY5Yy1hYTJhLWIwMGNlZWU1YTVlNz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2010,7 +2073,7 @@ "1" ], "x-ms-request-id": [ - "4803f67d-e4d2-46e3-a1c6-3239fc7b885e" + "47537bfa-1936-4730-a192-9c474202e8f4" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2019,10 +2082,10 @@ "11975" ], "x-ms-correlation-request-id": [ - "f644b46f-52d3-404d-84bc-b9a08fd7f720" + "1bd2201e-b1e7-47a6-badd-38e363a2f991" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044440Z:f644b46f-52d3-404d-84bc-b9a08fd7f720" + "WESTUS:20200924T054722Z:1bd2201e-b1e7-47a6-badd-38e363a2f991" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2031,10 +2094,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:44:40 GMT" + "Thu, 24 Sep 2020 05:47:22 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2043,17 +2106,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"c3aed86c-6ee8-4a26-ae63-0a60dd935e5f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:44:35.44Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"00cdfdd3-cb8a-4f9c-aa2a-b00ceee5a5e7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:47:17.387Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9619/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/c3aed86c-6ee8-4a26-ae63-0a60dd935e5f?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2MzYWVkODZjLTZlZTgtNGEyNi1hZTYzLTBhNjBkZDkzNWU1Zj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6453/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/00cdfdd3-cb8a-4f9c-aa2a-b00ceee5a5e7?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQ1My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzAwY2RmZGQzLWNiOGEtNGY5Yy1hYTJhLWIwMGNlZWU1YTVlNz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2070,7 +2133,7 @@ "20" ], "x-ms-request-id": [ - "f86db61f-d668-4549-8d79-3997f0f48c64" + "fc9a8293-2ced-4b85-8ed8-f6f1c9d58380" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2079,10 +2142,10 @@ "11974" ], "x-ms-correlation-request-id": [ - "776218df-f5c8-48ec-8d98-9c49ee4bf069" + "80536076-7f0d-440c-a345-d6df97e2495d" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044441Z:776218df-f5c8-48ec-8d98-9c49ee4bf069" + "WESTUS:20200924T054723Z:80536076-7f0d-440c-a345-d6df97e2495d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2091,10 +2154,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:44:41 GMT" + "Thu, 24 Sep 2020 05:47:23 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2103,17 +2166,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"c3aed86c-6ee8-4a26-ae63-0a60dd935e5f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:44:35.44Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"00cdfdd3-cb8a-4f9c-aa2a-b00ceee5a5e7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:47:17.387Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9619/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/c3aed86c-6ee8-4a26-ae63-0a60dd935e5f?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2MzYWVkODZjLTZlZTgtNGEyNi1hZTYzLTBhNjBkZDkzNWU1Zj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6453/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/00cdfdd3-cb8a-4f9c-aa2a-b00ceee5a5e7?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQ1My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzAwY2RmZGQzLWNiOGEtNGY5Yy1hYTJhLWIwMGNlZWU1YTVlNz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2130,7 +2193,7 @@ "20" ], "x-ms-request-id": [ - "1e70af5e-84b0-44e1-8b2a-460e6f66cb01" + "04cfd2d6-5d4f-43c2-a485-c78a4dc82ee4" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2139,10 +2202,10 @@ "11973" ], "x-ms-correlation-request-id": [ - "9f582422-5431-4ca9-86fa-7cc10e1c2c4e" + "0a259dfd-7cd0-4713-9db6-47dd4e0f3188" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044501Z:9f582422-5431-4ca9-86fa-7cc10e1c2c4e" + "WESTUS:20200924T054743Z:0a259dfd-7cd0-4713-9db6-47dd4e0f3188" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2151,10 +2214,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:45:01 GMT" + "Thu, 24 Sep 2020 05:47:43 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2163,17 +2226,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"c3aed86c-6ee8-4a26-ae63-0a60dd935e5f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:44:35.44Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"00cdfdd3-cb8a-4f9c-aa2a-b00ceee5a5e7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:47:17.387Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9619/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/c3aed86c-6ee8-4a26-ae63-0a60dd935e5f?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2MzYWVkODZjLTZlZTgtNGEyNi1hZTYzLTBhNjBkZDkzNWU1Zj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6453/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/00cdfdd3-cb8a-4f9c-aa2a-b00ceee5a5e7?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQ1My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzAwY2RmZGQzLWNiOGEtNGY5Yy1hYTJhLWIwMGNlZWU1YTVlNz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2190,7 +2253,7 @@ "20" ], "x-ms-request-id": [ - "955c59a0-c020-4f5d-ad40-4d446b28b825" + "f6697a57-f080-4c6c-bd45-5914a0bc240a" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2199,10 +2262,10 @@ "11972" ], "x-ms-correlation-request-id": [ - "2dffd10b-b995-4c37-aaf8-b8aa3121a6a5" + "e9a0bb6d-8de7-487a-8595-dc2ff6089d46" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044521Z:2dffd10b-b995-4c37-aaf8-b8aa3121a6a5" + "WESTUS:20200924T054803Z:e9a0bb6d-8de7-487a-8595-dc2ff6089d46" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2211,10 +2274,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:45:21 GMT" + "Thu, 24 Sep 2020 05:48:03 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2223,17 +2286,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"c3aed86c-6ee8-4a26-ae63-0a60dd935e5f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:44:35.44Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"00cdfdd3-cb8a-4f9c-aa2a-b00ceee5a5e7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:47:17.387Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps9619/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/c3aed86c-6ee8-4a26-ae63-0a60dd935e5f?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2MzYWVkODZjLTZlZTgtNGEyNi1hZTYzLTBhNjBkZDkzNWU1Zj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6453/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/00cdfdd3-cb8a-4f9c-aa2a-b00ceee5a5e7?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQ1My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzAwY2RmZGQzLWNiOGEtNGY5Yy1hYTJhLWIwMGNlZWU1YTVlNz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2250,19 +2313,19 @@ "15" ], "x-ms-request-id": [ - "bc4fef2a-c942-4a36-905c-768ab6307331" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "75379542-7e7b-4330-b037-016704733cdf" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], "x-ms-correlation-request-id": [ - "ac85c1b3-75ed-4ec3-a801-090e74c1670d" + "38f3be13-98ce-4506-9e11-f907af1ac911" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044542Z:ac85c1b3-75ed-4ec3-a801-090e74c1670d" + "WESTUS:20200924T054824Z:38f3be13-98ce-4506-9e11-f907af1ac911" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2271,10 +2334,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:45:41 GMT" + "Thu, 24 Sep 2020 05:48:23 GMT" ], "Content-Length": [ - "106" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2283,23 +2346,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"c3aed86c-6ee8-4a26-ae63-0a60dd935e5f\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-14T04:44:35.44Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"00cdfdd3-cb8a-4f9c-aa2a-b00ceee5a5e7\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-24T05:47:17.387Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps1640?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzMTY0MD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps7897?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzNzg5Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cb27b7d1-6c91-4cbe-a02b-00672a05a12f" + "e2258d58-4635-4c57-988f-bb3e11b702d5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -2313,7 +2376,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2NDAtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2322,13 +2385,13 @@ "14999" ], "x-ms-request-id": [ - "fc0c3da8-52d6-41bc-bef7-3ee95ebf875c" + "9565df09-d374-465d-848d-c030d29512f4" ], "x-ms-correlation-request-id": [ - "fc0c3da8-52d6-41bc-bef7-3ee95ebf875c" + "9565df09-d374-465d-848d-c030d29512f4" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044546Z:fc0c3da8-52d6-41bc-bef7-3ee95ebf875c" + "WESTUS:20200924T054827Z:9565df09-d374-465d-848d-c030d29512f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2337,7 +2400,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:45:45 GMT" + "Thu, 24 Sep 2020 05:48:27 GMT" ], "Expires": [ "-1" @@ -2350,13 +2413,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2NDAtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk5EQXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNE9UY3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -2370,7 +2433,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2NDAtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2379,13 +2442,13 @@ "11999" ], "x-ms-request-id": [ - "156f3d52-f360-4880-a77b-69d931b33dca" + "0b75ead7-be08-4854-bf60-02ecf55c4303" ], "x-ms-correlation-request-id": [ - "156f3d52-f360-4880-a77b-69d931b33dca" + "0b75ead7-be08-4854-bf60-02ecf55c4303" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044601Z:156f3d52-f360-4880-a77b-69d931b33dca" + "WESTUS:20200924T054843Z:0b75ead7-be08-4854-bf60-02ecf55c4303" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2394,7 +2457,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:46:00 GMT" + "Thu, 24 Sep 2020 05:48:42 GMT" ], "Expires": [ "-1" @@ -2407,13 +2470,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2NDAtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk5EQXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNE9UY3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -2427,7 +2490,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2NDAtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2436,13 +2499,13 @@ "11998" ], "x-ms-request-id": [ - "260c4e1b-98b9-47cb-8ef2-0dacb0a62c9c" + "885ba38d-13e7-4b4f-a008-001d0f793710" ], "x-ms-correlation-request-id": [ - "260c4e1b-98b9-47cb-8ef2-0dacb0a62c9c" + "885ba38d-13e7-4b4f-a008-001d0f793710" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044616Z:260c4e1b-98b9-47cb-8ef2-0dacb0a62c9c" + "WESTUS:20200924T054858Z:885ba38d-13e7-4b4f-a008-001d0f793710" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2451,7 +2514,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:46:16 GMT" + "Thu, 24 Sep 2020 05:48:57 GMT" ], "Expires": [ "-1" @@ -2464,13 +2527,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2NDAtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk5EQXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNE9UY3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -2484,7 +2547,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2NDAtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2493,13 +2556,13 @@ "11997" ], "x-ms-request-id": [ - "05f307c5-ac08-4519-a4b9-b087be512e95" + "82805b8e-3351-44e7-a9f9-34e543adda80" ], "x-ms-correlation-request-id": [ - "05f307c5-ac08-4519-a4b9-b087be512e95" + "82805b8e-3351-44e7-a9f9-34e543adda80" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044632Z:05f307c5-ac08-4519-a4b9-b087be512e95" + "WESTUS:20200924T054913Z:82805b8e-3351-44e7-a9f9-34e543adda80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2508,7 +2571,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:46:31 GMT" + "Thu, 24 Sep 2020 05:49:12 GMT" ], "Expires": [ "-1" @@ -2521,13 +2584,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2NDAtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk5EQXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNE9UY3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -2541,7 +2604,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2NDAtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2550,13 +2613,13 @@ "11996" ], "x-ms-request-id": [ - "3c70d25e-aff5-4fbd-b0ee-a68aedd972d6" + "fd5373b9-8bf0-48d2-b94f-80a3ffea7fc8" ], "x-ms-correlation-request-id": [ - "3c70d25e-aff5-4fbd-b0ee-a68aedd972d6" + "fd5373b9-8bf0-48d2-b94f-80a3ffea7fc8" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044647Z:3c70d25e-aff5-4fbd-b0ee-a68aedd972d6" + "WESTUS:20200924T054928Z:fd5373b9-8bf0-48d2-b94f-80a3ffea7fc8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2565,7 +2628,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:46:46 GMT" + "Thu, 24 Sep 2020 05:49:28 GMT" ], "Expires": [ "-1" @@ -2578,13 +2641,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2NDAtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk5EQXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNE9UY3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -2598,7 +2661,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2NDAtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2607,13 +2670,13 @@ "11995" ], "x-ms-request-id": [ - "cb9b7615-da61-47f4-88eb-a9b90b107b56" + "1bd92db2-9dfe-4cc6-84ec-877eccc5bace" ], "x-ms-correlation-request-id": [ - "cb9b7615-da61-47f4-88eb-a9b90b107b56" + "1bd92db2-9dfe-4cc6-84ec-877eccc5bace" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044702Z:cb9b7615-da61-47f4-88eb-a9b90b107b56" + "WESTUS:20200924T054944Z:1bd92db2-9dfe-4cc6-84ec-877eccc5bace" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2622,7 +2685,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:47:02 GMT" + "Thu, 24 Sep 2020 05:49:44 GMT" ], "Expires": [ "-1" @@ -2635,13 +2698,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2NDAtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk5EQXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNE9UY3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -2654,74 +2717,17 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2NDAtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], "x-ms-request-id": [ - "4f71b689-3cd9-452d-b630-cd7a357b54d0" - ], - "x-ms-correlation-request-id": [ - "4f71b689-3cd9-452d-b630-cd7a357b54d0" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T044718Z:4f71b689-3cd9-452d-b630-cd7a357b54d0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 14 Sep 2020 04:47:17 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2NDAtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk5EQXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-request-id": [ - "e5994491-1d24-40a3-a5d9-b7b7dae5cf39" + "c3be3df7-459f-4a8f-9385-5eca8a758b2c" ], "x-ms-correlation-request-id": [ - "e5994491-1d24-40a3-a5d9-b7b7dae5cf39" + "c3be3df7-459f-4a8f-9385-5eca8a758b2c" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044733Z:e5994491-1d24-40a3-a5d9-b7b7dae5cf39" + "WESTUS:20200924T054959Z:c3be3df7-459f-4a8f-9385-5eca8a758b2c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2730,7 +2736,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:47:33 GMT" + "Thu, 24 Sep 2020 05:49:59 GMT" ], "Expires": [ "-1" @@ -2743,13 +2749,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2NDAtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk5EQXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc4OTctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjNE9UY3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -2763,16 +2769,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11993" ], "x-ms-request-id": [ - "a0cef3ea-ec1e-402d-9f52-92c26e4a7f56" + "1b31f219-5de4-4cfc-bb22-21697451d34d" ], "x-ms-correlation-request-id": [ - "a0cef3ea-ec1e-402d-9f52-92c26e4a7f56" + "1b31f219-5de4-4cfc-bb22-21697451d34d" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044733Z:a0cef3ea-ec1e-402d-9f52-92c26e4a7f56" + "WESTUS:20200924T054959Z:1b31f219-5de4-4cfc-bb22-21697451d34d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2781,7 +2787,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:47:33 GMT" + "Thu, 24 Sep 2020 05:49:59 GMT" ], "Expires": [ "-1" @@ -2794,19 +2800,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps9619?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzOTYxOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps6453?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzNjQ1Mz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "49fcbd78-514b-4370-a543-60c8d0c3b1b7" + "78c9a170-d6ee-43d5-9d72-cbb88e9f5161" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -2820,7 +2826,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MTktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0NTMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2829,13 +2835,13 @@ "14998" ], "x-ms-request-id": [ - "19ef985c-cfe2-42c3-a616-69f594cbdb5c" + "e1a0f080-15d7-4b93-a71d-bc03e1255fb6" ], "x-ms-correlation-request-id": [ - "19ef985c-cfe2-42c3-a616-69f594cbdb5c" + "e1a0f080-15d7-4b93-a71d-bc03e1255fb6" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044736Z:19ef985c-cfe2-42c3-a616-69f594cbdb5c" + "WESTUS:20200924T055002Z:e1a0f080-15d7-4b93-a71d-bc03e1255fb6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2844,7 +2850,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:47:36 GMT" + "Thu, 24 Sep 2020 05:50:02 GMT" ], "Expires": [ "-1" @@ -2857,13 +2863,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MTktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk1Ua3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0NTMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZME5UTXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -2877,193 +2883,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MTktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0NTMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "x-ms-request-id": [ - "ef33c901-b366-48b2-aabc-ca029f26f617" - ], - "x-ms-correlation-request-id": [ - "ef33c901-b366-48b2-aabc-ca029f26f617" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T044751Z:ef33c901-b366-48b2-aabc-ca029f26f617" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 14 Sep 2020 04:47:51 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MTktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk1Ua3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MTktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], - "x-ms-request-id": [ - "50e53991-a296-4839-a873-c2c8206e8a81" - ], - "x-ms-correlation-request-id": [ - "50e53991-a296-4839-a873-c2c8206e8a81" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T044806Z:50e53991-a296-4839-a873-c2c8206e8a81" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 14 Sep 2020 04:48:06 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MTktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk1Ua3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MTktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" - ], - "x-ms-request-id": [ - "eba20c9b-3ea4-4db4-8f3f-39440e3094c0" - ], - "x-ms-correlation-request-id": [ - "eba20c9b-3ea4-4db4-8f3f-39440e3094c0" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T044822Z:eba20c9b-3ea4-4db4-8f3f-39440e3094c0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 14 Sep 2020 04:48:21 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MTktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk1Ua3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MTktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11992" ], "x-ms-request-id": [ - "8dde5486-9405-425f-b894-a4922a5a861c" + "f1ebec4f-949b-4a1c-85d4-5326a1ac87cb" ], "x-ms-correlation-request-id": [ - "8dde5486-9405-425f-b894-a4922a5a861c" + "f1ebec4f-949b-4a1c-85d4-5326a1ac87cb" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044837Z:8dde5486-9405-425f-b894-a4922a5a861c" + "WESTUS:20200924T055017Z:f1ebec4f-949b-4a1c-85d4-5326a1ac87cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3072,7 +2907,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:48:36 GMT" + "Thu, 24 Sep 2020 05:50:17 GMT" ], "Expires": [ "-1" @@ -3085,13 +2920,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MTktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk1Ua3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0NTMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZME5UTXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3105,22 +2940,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MTktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0NTMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11991" ], "x-ms-request-id": [ - "e9adb3ed-f469-4094-80df-9f8032d85a1d" + "db5da2d0-656f-4a6a-8e11-1958f608f30a" ], "x-ms-correlation-request-id": [ - "e9adb3ed-f469-4094-80df-9f8032d85a1d" + "db5da2d0-656f-4a6a-8e11-1958f608f30a" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044853Z:e9adb3ed-f469-4094-80df-9f8032d85a1d" + "WESTUS:20200924T055033Z:db5da2d0-656f-4a6a-8e11-1958f608f30a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3129,7 +2964,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:48:52 GMT" + "Thu, 24 Sep 2020 05:50:32 GMT" ], "Expires": [ "-1" @@ -3142,13 +2977,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MTktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk1Ua3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0NTMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZME5UTXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3162,22 +2997,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MTktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0NTMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11990" ], "x-ms-request-id": [ - "8eb8f97a-1c60-42fb-9aa5-1c05eed7b90e" + "969beebd-1c12-431e-a280-93ba876f1aca" ], "x-ms-correlation-request-id": [ - "8eb8f97a-1c60-42fb-9aa5-1c05eed7b90e" + "969beebd-1c12-431e-a280-93ba876f1aca" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044908Z:8eb8f97a-1c60-42fb-9aa5-1c05eed7b90e" + "WESTUS:20200924T055048Z:969beebd-1c12-431e-a280-93ba876f1aca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3186,7 +3021,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:49:08 GMT" + "Thu, 24 Sep 2020 05:50:47 GMT" ], "Expires": [ "-1" @@ -3199,13 +3034,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MTktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk1Ua3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0NTMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZME5UTXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3219,22 +3054,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MTktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0NTMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11989" ], "x-ms-request-id": [ - "e718a0d2-ac68-4b58-8535-64c6003edfe7" + "c896b256-e2bc-4769-a720-cf119794c86c" ], "x-ms-correlation-request-id": [ - "e718a0d2-ac68-4b58-8535-64c6003edfe7" + "c896b256-e2bc-4769-a720-cf119794c86c" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044923Z:e718a0d2-ac68-4b58-8535-64c6003edfe7" + "WESTUS:20200924T055103Z:c896b256-e2bc-4769-a720-cf119794c86c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3243,7 +3078,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:49:23 GMT" + "Thu, 24 Sep 2020 05:51:03 GMT" ], "Expires": [ "-1" @@ -3256,13 +3091,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MTktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk1Ua3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0NTMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZME5UTXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3276,22 +3111,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MTktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0NTMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11988" ], "x-ms-request-id": [ - "5796104a-36bb-40cb-ae08-861bd7174d94" + "fdba07c7-4c07-45ff-a4ad-391e7593851d" ], "x-ms-correlation-request-id": [ - "5796104a-36bb-40cb-ae08-861bd7174d94" + "fdba07c7-4c07-45ff-a4ad-391e7593851d" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044939Z:5796104a-36bb-40cb-ae08-861bd7174d94" + "WESTUS:20200924T055118Z:fdba07c7-4c07-45ff-a4ad-391e7593851d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3300,7 +3135,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:49:38 GMT" + "Thu, 24 Sep 2020 05:51:18 GMT" ], "Expires": [ "-1" @@ -3313,13 +3148,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MTktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk1Ua3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0NTMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZME5UTXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3333,22 +3168,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MTktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0NTMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11987" ], "x-ms-request-id": [ - "d4eadf57-e5ec-43bd-b0fe-fe34f0a99f55" + "4992d3ea-fed0-4fe1-a07c-de42fc7a390c" ], "x-ms-correlation-request-id": [ - "d4eadf57-e5ec-43bd-b0fe-fe34f0a99f55" + "4992d3ea-fed0-4fe1-a07c-de42fc7a390c" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044954Z:d4eadf57-e5ec-43bd-b0fe-fe34f0a99f55" + "WESTUS:20200924T055134Z:4992d3ea-fed0-4fe1-a07c-de42fc7a390c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3357,7 +3192,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:49:53 GMT" + "Thu, 24 Sep 2020 05:51:33 GMT" ], "Expires": [ "-1" @@ -3370,13 +3205,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MTktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk1Ua3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0NTMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZME5UTXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3390,16 +3225,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11986" ], "x-ms-request-id": [ - "3419581c-1c46-4b33-adbc-521907cd3cb7" + "770adc76-ad70-43b3-9cb5-19c475578673" ], "x-ms-correlation-request-id": [ - "3419581c-1c46-4b33-adbc-521907cd3cb7" + "770adc76-ad70-43b3-9cb5-19c475578673" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045009Z:3419581c-1c46-4b33-adbc-521907cd3cb7" + "WESTUS:20200924T055149Z:770adc76-ad70-43b3-9cb5-19c475578673" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3408,7 +3243,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:50:09 GMT" + "Thu, 24 Sep 2020 05:51:48 GMT" ], "Expires": [ "-1" @@ -3421,13 +3256,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MTktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk1Ua3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0NTMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZME5UTXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3441,16 +3276,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11985" ], "x-ms-request-id": [ - "81f8a5e2-f462-4df2-bc29-ab1db521adb6" + "8bbfca47-9a53-4123-a1b8-355f8bae9ac5" ], "x-ms-correlation-request-id": [ - "81f8a5e2-f462-4df2-bc29-ab1db521adb6" + "8bbfca47-9a53-4123-a1b8-355f8bae9ac5" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045010Z:81f8a5e2-f462-4df2-bc29-ab1db521adb6" + "WESTUS:20200924T055149Z:8bbfca47-9a53-4123-a1b8-355f8bae9ac5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3459,7 +3294,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:50:09 GMT" + "Thu, 24 Sep 2020 05:51:49 GMT" ], "Expires": [ "-1" @@ -3474,11 +3309,11 @@ ], "Names": { "Test-CreateNamedSecondaryDatabaseNegative": [ - "ps1640", - "ps6897", - "ps1300", - "ps9619", - "ps2161" + "ps7897", + "ps969", + "ps3126", + "ps6453", + "ps8891" ] }, "Variables": { diff --git a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestCreateSecondaryDatabase.json b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestCreateSecondaryDatabase.json index f33a413116ed..ec80d3f12229 100644 --- a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestCreateSecondaryDatabase.json +++ b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestCreateSecondaryDatabase.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5fd124f-270e-40bc-b7c3-e01cb8e22ca0" + "1bb327f6-4eb0-45b8-912c-00682340027d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -30,13 +30,13 @@ "11999" ], "x-ms-request-id": [ - "9d3e1f58-35d6-42b9-9dbc-d8c906f09d3c" + "8e503f47-face-479b-a94b-656cf23cc900" ], "x-ms-correlation-request-id": [ - "9d3e1f58-35d6-42b9-9dbc-d8c906f09d3c" + "8e503f47-face-479b-a94b-656cf23cc900" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045913Z:9d3e1f58-35d6-42b9-9dbc-d8c906f09d3c" + "WESTUS:20200924T060056Z:8e503f47-face-479b-a94b-656cf23cc900" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:59:13 GMT" + "Thu, 24 Sep 2020 06:00:56 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -61,19 +61,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps1389?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzMTM4OT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps2647?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzMjY0Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West Europe\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6bfc0b18-3758-44a2-8f8e-bcf0035711fe" + "04ccff8a-5400-4e1d-b715-78fdda277b56" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -96,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "183bd94e-3fa2-41f1-97d3-86e6c9499a94" + "d1040a26-ff81-49f4-bafe-784155076e10" ], "x-ms-correlation-request-id": [ - "183bd94e-3fa2-41f1-97d3-86e6c9499a94" + "d1040a26-ff81-49f4-bafe-784155076e10" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045915Z:183bd94e-3fa2-41f1-97d3-86e6c9499a94" + "WESTUS:20200924T060059Z:d1040a26-ff81-49f4-bafe-784155076e10" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:59:14 GMT" + "Thu, 24 Sep 2020 06:00:59 GMT" ], "Content-Length": [ "169" @@ -123,23 +123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1389\",\r\n \"name\": \"ps1389\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2647\",\r\n \"name\": \"ps2647\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1389/providers/Microsoft.Sql/servers/ps5469?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTM4OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNTQ2OT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2647/providers/Microsoft.Sql/servers/ps9265?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjY0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTI2NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b13adeb2-2bce-4c99-b5cd-b3ed15cba78c" + "4fe15122-6723-4b75-bd5b-9a1fac01216b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -156,13 +156,13 @@ "gateway" ], "x-ms-request-id": [ - "cba7702d-d89b-4097-afe2-b297f949c0fb" + "fd201483-6223-440e-9ad1-b28a7abb0b44" ], "x-ms-correlation-request-id": [ - "cba7702d-d89b-4097-afe2-b297f949c0fb" + "fd201483-6223-440e-9ad1-b28a7abb0b44" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045915Z:cba7702d-d89b-4097-afe2-b297f949c0fb" + "WESTUS:20200924T060059Z:fd201483-6223-440e-9ad1-b28a7abb0b44" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -171,7 +171,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:59:14 GMT" + "Thu, 24 Sep 2020 06:00:59 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -183,17 +183,17 @@ "206" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps5469' under resource group 'ps1389' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps9265' under resource group 'ps2647' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1389/providers/Microsoft.Sql/servers/ps5469?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTM4OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNTQ2OT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2647/providers/Microsoft.Sql/servers/ps9265?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjY0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTI2NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -207,19 +207,82 @@ "no-cache" ], "x-ms-request-id": [ - "06b34ef7-eab7-4f71-86a6-d91b9e09212a" + "50193dff-5108-4ef6-b6af-1edda2ccd055" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11951" + "11990" + ], + "x-ms-correlation-request-id": [ + "6a2dfe81-58cd-4215-ad9c-32fcc8e30fc3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T060211Z:6a2dfe81-58cd-4215-ad9c-32fcc8e30fc3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 06:02:10 GMT" + ], + "Content-Length": [ + "412" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps9265.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2647/providers/Microsoft.Sql/servers/ps9265\",\r\n \"name\": \"ps9265\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2647/providers/Microsoft.Sql/servers/ps9265?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjY0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTI2NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "160cbf16-2bc8-4b42-831a-3be82315a0cb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "16a7ef68-39e7-4aaf-af9f-effba5227bf4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" ], "x-ms-correlation-request-id": [ - "ea25a512-caae-40fa-96c2-8830d28971e3" + "a43672f9-d7c3-454b-9987-f0dd5c828803" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T050005Z:ea25a512-caae-40fa-96c2-8830d28971e3" + "WESTUS:20200924T060211Z:a43672f9-d7c3-454b-9987-f0dd5c828803" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -228,7 +291,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:00:05 GMT" + "Thu, 24 Sep 2020 06:02:10 GMT" ], "Content-Length": [ "412" @@ -240,23 +303,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps5469.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1389/providers/Microsoft.Sql/servers/ps5469\",\r\n \"name\": \"ps5469\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps9265.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2647/providers/Microsoft.Sql/servers/ps9265\",\r\n \"name\": \"ps9265\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1389/providers/Microsoft.Sql/servers/ps5469?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTM4OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNTQ2OT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2647/providers/Microsoft.Sql/servers/ps9265?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjY0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTI2NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "507e103b-4a22-4360-bc9d-8f14f60f7e77" + "2873d6e8-7002-46d2-8474-4d4d66f49d16" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -270,19 +333,19 @@ "no-cache" ], "x-ms-request-id": [ - "c1437156-6ac0-47fb-a22a-615fa6f4515d" + "4a434eab-bd5d-49f1-b72e-86f27a853e19" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11950" + "11987" ], "x-ms-correlation-request-id": [ - "95f6ced5-8915-472e-b693-04f5915600eb" + "1af6560e-20c5-4a11-8f0b-0ee39429eaa7" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T050005Z:95f6ced5-8915-472e-b693-04f5915600eb" + "WESTUS:20200924T060212Z:1af6560e-20c5-4a11-8f0b-0ee39429eaa7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -291,7 +354,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:00:05 GMT" + "Thu, 24 Sep 2020 06:02:11 GMT" ], "Content-Length": [ "412" @@ -303,23 +366,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps5469.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1389/providers/Microsoft.Sql/servers/ps5469\",\r\n \"name\": \"ps5469\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps9265.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2647/providers/Microsoft.Sql/servers/ps9265\",\r\n \"name\": \"ps9265\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1389/providers/Microsoft.Sql/servers/ps5469?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTM4OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNTQ2OT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2647/providers/Microsoft.Sql/servers/ps9265?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjY0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTI2NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "72986121-e9cb-47d4-8b3e-fac04f9957bc" + "878b5c22-f2b8-4b90-8823-26d819e18abb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -333,19 +396,19 @@ "no-cache" ], "x-ms-request-id": [ - "8a6ca654-28c1-4a32-a290-f1be8bbb1812" + "18f48102-6318-4fc2-8292-d25ebcc90096" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11948" + "11969" ], "x-ms-correlation-request-id": [ - "ed4300e7-1543-4557-847b-d5a5f8f8c3da" + "17ca0a2d-7c5a-40ae-8103-9a3cab00294f" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T050006Z:ed4300e7-1543-4557-847b-d5a5f8f8c3da" + "WESTUS:20200924T060459Z:17ca0a2d-7c5a-40ae-8103-9a3cab00294f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -354,7 +417,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:00:05 GMT" + "Thu, 24 Sep 2020 06:04:59 GMT" ], "Content-Length": [ "412" @@ -366,23 +429,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps5469.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1389/providers/Microsoft.Sql/servers/ps5469\",\r\n \"name\": \"ps5469\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps9265.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2647/providers/Microsoft.Sql/servers/ps9265\",\r\n \"name\": \"ps9265\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1389/providers/Microsoft.Sql/servers/ps5469?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTM4OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNTQ2OT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2647/providers/Microsoft.Sql/servers/ps9265?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjY0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTI2NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"West Europe\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "22a2af97-4c4a-427c-b9c7-690381b2bf2f" + "ef4142b8-eda2-45ac-b1f1-9c33d9c458ff" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -402,28 +465,28 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1389/providers/Microsoft.Sql/locations/westeurope/serverOperationResults/5d118d23-2697-4c5c-830b-b71a4957519a?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2647/providers/Microsoft.Sql/locations/westeurope/serverOperationResults/6783271f-9fc0-4db2-821d-bb932ae8ce2e?api-version=2019-06-01-preview" ], "Retry-After": [ "1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1389/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/5d118d23-2697-4c5c-830b-b71a4957519a?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2647/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/6783271f-9fc0-4db2-821d-bb932ae8ce2e?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "5d118d23-2697-4c5c-830b-b71a4957519a" + "6783271f-9fc0-4db2-821d-bb932ae8ce2e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-correlation-request-id": [ - "2e9f5a13-d109-4f20-8840-e8be8b74aab6" + "159e7053-6539-4d03-b0af-a11b75fc4126" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045918Z:2e9f5a13-d109-4f20-8840-e8be8b74aab6" + "WESTUS:20200924T060104Z:159e7053-6539-4d03-b0af-a11b75fc4126" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,10 +495,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:59:18 GMT" + "Thu, 24 Sep 2020 06:01:03 GMT" ], "Content-Length": [ - "73" + "72" ], "Content-Type": [ "application/json; charset=utf-8" @@ -444,17 +507,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-14T04:59:18.73Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-24T06:01:04.4Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1389/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/5d118d23-2697-4c5c-830b-b71a4957519a?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTM4OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzVkMTE4ZDIzLTI2OTctNGM1Yy04MzBiLWI3MWE0OTU3NTE5YT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2647/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/6783271f-9fc0-4db2-821d-bb932ae8ce2e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjY0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzY3ODMyNzFmLTlmYzAtNGRiMi04MjFkLWJiOTMyYWU4Y2UyZT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -471,19 +534,19 @@ "1" ], "x-ms-request-id": [ - "6c0b1684-2368-4d75-b429-8c551fe2e204" + "682d942f-0e78-4928-933c-714acd4428bb" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" + "11998" ], "x-ms-correlation-request-id": [ - "df58827a-0d5a-4c16-9ae3-0e7316ff7877" + "2e1d43c1-6b84-44bb-a0d0-a0763e9537ef" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045920Z:df58827a-0d5a-4c16-9ae3-0e7316ff7877" + "WESTUS:20200924T060105Z:2e1d43c1-6b84-44bb-a0d0-a0763e9537ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -492,10 +555,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:59:20 GMT" + "Thu, 24 Sep 2020 06:01:05 GMT" ], "Content-Length": [ - "107" + "106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -504,17 +567,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"5d118d23-2697-4c5c-830b-b71a4957519a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:59:18.73Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"6783271f-9fc0-4db2-821d-bb932ae8ce2e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:01:04.4Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1389/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/5d118d23-2697-4c5c-830b-b71a4957519a?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTM4OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzVkMTE4ZDIzLTI2OTctNGM1Yy04MzBiLWI3MWE0OTU3NTE5YT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2647/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/6783271f-9fc0-4db2-821d-bb932ae8ce2e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjY0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzY3ODMyNzFmLTlmYzAtNGRiMi04MjFkLWJiOTMyYWU4Y2UyZT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -531,19 +594,19 @@ "1" ], "x-ms-request-id": [ - "a425f924-c742-4dc2-9dab-f18852ba0027" + "25b54893-867f-499c-ae89-bcc9c6b88596" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" + "11997" ], "x-ms-correlation-request-id": [ - "10858c83-ce00-4277-8a8c-e26a1cf9ac57" + "ec2e1c0e-3aa3-4653-a4bf-d10fc4abdfae" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045921Z:10858c83-ce00-4277-8a8c-e26a1cf9ac57" + "WESTUS:20200924T060106Z:ec2e1c0e-3aa3-4653-a4bf-d10fc4abdfae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -552,10 +615,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:59:21 GMT" + "Thu, 24 Sep 2020 06:01:06 GMT" ], "Content-Length": [ - "107" + "106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -564,17 +627,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"5d118d23-2697-4c5c-830b-b71a4957519a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:59:18.73Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"6783271f-9fc0-4db2-821d-bb932ae8ce2e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:01:04.4Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1389/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/5d118d23-2697-4c5c-830b-b71a4957519a?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTM4OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzVkMTE4ZDIzLTI2OTctNGM1Yy04MzBiLWI3MWE0OTU3NTE5YT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2647/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/6783271f-9fc0-4db2-821d-bb932ae8ce2e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjY0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzY3ODMyNzFmLTlmYzAtNGRiMi04MjFkLWJiOTMyYWU4Y2UyZT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -591,19 +654,19 @@ "1" ], "x-ms-request-id": [ - "359ca774-2042-407a-89b6-61996dc8a453" + "c8da3d00-8847-4d38-9608-132e49d25d1e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" + "11996" ], "x-ms-correlation-request-id": [ - "044dd939-dd6b-45fb-8d83-de2dfc4d9f22" + "24417d18-8525-42b0-a397-ef09111e83b9" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045922Z:044dd939-dd6b-45fb-8d83-de2dfc4d9f22" + "WESTUS:20200924T060108Z:24417d18-8525-42b0-a397-ef09111e83b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -612,10 +675,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:59:22 GMT" + "Thu, 24 Sep 2020 06:01:07 GMT" ], "Content-Length": [ - "107" + "106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -624,17 +687,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"5d118d23-2697-4c5c-830b-b71a4957519a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:59:18.73Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"6783271f-9fc0-4db2-821d-bb932ae8ce2e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:01:04.4Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1389/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/5d118d23-2697-4c5c-830b-b71a4957519a?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTM4OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzVkMTE4ZDIzLTI2OTctNGM1Yy04MzBiLWI3MWE0OTU3NTE5YT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2647/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/6783271f-9fc0-4db2-821d-bb932ae8ce2e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjY0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzY3ODMyNzFmLTlmYzAtNGRiMi04MjFkLWJiOTMyYWU4Y2UyZT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -651,19 +714,19 @@ "1" ], "x-ms-request-id": [ - "cd6ecfe6-890e-433b-b690-e7cbf5d6a6cd" + "ce5c4b8e-6d01-42a8-bc03-73355ccb3932" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" + "11995" ], "x-ms-correlation-request-id": [ - "b9d72eed-f0a7-4bcb-af53-b268d6e4297c" + "4010c49c-5b35-4051-8162-40f684a3bace" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045923Z:b9d72eed-f0a7-4bcb-af53-b268d6e4297c" + "WESTUS:20200924T060109Z:4010c49c-5b35-4051-8162-40f684a3bace" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -672,10 +735,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:59:23 GMT" + "Thu, 24 Sep 2020 06:01:08 GMT" ], "Content-Length": [ - "107" + "106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -684,17 +747,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"5d118d23-2697-4c5c-830b-b71a4957519a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:59:18.73Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"6783271f-9fc0-4db2-821d-bb932ae8ce2e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:01:04.4Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1389/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/5d118d23-2697-4c5c-830b-b71a4957519a?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTM4OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzVkMTE4ZDIzLTI2OTctNGM1Yy04MzBiLWI3MWE0OTU3NTE5YT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2647/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/6783271f-9fc0-4db2-821d-bb932ae8ce2e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjY0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzY3ODMyNzFmLTlmYzAtNGRiMi04MjFkLWJiOTMyYWU4Y2UyZT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -711,19 +774,19 @@ "20" ], "x-ms-request-id": [ - "319470e2-312a-4fda-89b0-30575311e657" + "7072e434-0130-480a-965e-ef4ce64f3db8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" + "11994" ], "x-ms-correlation-request-id": [ - "0c5019ee-02df-4b25-8f42-26bc4c946c59" + "ef82932c-d1b0-42a6-a021-ccb96076bb4c" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045924Z:0c5019ee-02df-4b25-8f42-26bc4c946c59" + "WESTUS:20200924T060110Z:ef82932c-d1b0-42a6-a021-ccb96076bb4c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -732,10 +795,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:59:24 GMT" + "Thu, 24 Sep 2020 06:01:09 GMT" ], "Content-Length": [ - "107" + "106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -744,17 +807,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"5d118d23-2697-4c5c-830b-b71a4957519a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:59:18.73Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"6783271f-9fc0-4db2-821d-bb932ae8ce2e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:01:04.4Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1389/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/5d118d23-2697-4c5c-830b-b71a4957519a?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTM4OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzVkMTE4ZDIzLTI2OTctNGM1Yy04MzBiLWI3MWE0OTU3NTE5YT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2647/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/6783271f-9fc0-4db2-821d-bb932ae8ce2e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjY0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzY3ODMyNzFmLTlmYzAtNGRiMi04MjFkLWJiOTMyYWU4Y2UyZT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -771,19 +834,19 @@ "20" ], "x-ms-request-id": [ - "03e1b5a1-c94d-49e1-8f5b-49de352318b8" + "97719d0c-f05e-41ad-ab8c-1ec4705b647e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" + "11993" ], "x-ms-correlation-request-id": [ - "58c12488-42cc-4ed3-8e4f-ca8acca3a9a9" + "4ae8ed3f-3368-49ae-a0dc-3b72a32b9b42" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T045945Z:58c12488-42cc-4ed3-8e4f-ca8acca3a9a9" + "WESTUS:20200924T060130Z:4ae8ed3f-3368-49ae-a0dc-3b72a32b9b42" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -792,10 +855,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:59:44 GMT" + "Thu, 24 Sep 2020 06:01:29 GMT" ], "Content-Length": [ - "107" + "106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -804,17 +867,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"5d118d23-2697-4c5c-830b-b71a4957519a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:59:18.73Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"6783271f-9fc0-4db2-821d-bb932ae8ce2e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:01:04.4Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1389/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/5d118d23-2697-4c5c-830b-b71a4957519a?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTM4OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzVkMTE4ZDIzLTI2OTctNGM1Yy04MzBiLWI3MWE0OTU3NTE5YT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2647/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/6783271f-9fc0-4db2-821d-bb932ae8ce2e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjY0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzY3ODMyNzFmLTlmYzAtNGRiMi04MjFkLWJiOTMyYWU4Y2UyZT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -828,22 +891,22 @@ "no-cache" ], "Retry-After": [ - "15" + "20" ], "x-ms-request-id": [ - "7df9c28b-1292-409f-aac5-579cb6c5347d" + "c3329f11-de96-4235-afde-d62514a92a36" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11952" + "11992" ], "x-ms-correlation-request-id": [ - "296f9ced-dfbd-481d-90cb-09791112e3b7" + "52a87f0e-1860-4157-99b4-cd7ce1b73227" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T050005Z:296f9ced-dfbd-481d-90cb-09791112e3b7" + "WESTUS:20200924T060150Z:52a87f0e-1860-4157-99b4-cd7ce1b73227" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -852,7 +915,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:00:04 GMT" + "Thu, 24 Sep 2020 06:01:50 GMT" ], "Content-Length": [ "106" @@ -864,23 +927,83 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"5d118d23-2697-4c5c-830b-b71a4957519a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-14T04:59:18.73Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"6783271f-9fc0-4db2-821d-bb932ae8ce2e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:01:04.4Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2647/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/6783271f-9fc0-4db2-821d-bb932ae8ce2e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjY0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzY3ODMyNzFmLTlmYzAtNGRiMi04MjFkLWJiOTMyYWU4Y2UyZT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "a736d96c-ed47-45dc-b238-8891d6de9fa4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "1397426d-a495-4743-977f-ca46139babd0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T060211Z:1397426d-a495-4743-977f-ca46139babd0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 06:02:10 GMT" + ], + "Content-Length": [ + "105" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"6783271f-9fc0-4db2-821d-bb932ae8ce2e\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-24T06:01:04.4Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1389/providers/Microsoft.Sql/servers/ps5469/databases/ps6851?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTM4OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNTQ2OS9kYXRhYmFzZXMvcHM2ODUxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2647/providers/Microsoft.Sql/servers/ps9265/databases/ps4145?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjY0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTI2NS9kYXRhYmFzZXMvcHM0MTQ1P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "60031834-8f5c-4f66-b806-e662b84d441d" + "d8d38d7f-aa88-4c73-b17a-bfb52bdd1a98" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -897,13 +1020,13 @@ "gateway" ], "x-ms-request-id": [ - "30d172b1-8396-41e1-b42a-73ce576fbbd4" + "3cd1c34b-fa95-4bef-bfa8-f5e2119de0b7" ], "x-ms-correlation-request-id": [ - "30d172b1-8396-41e1-b42a-73ce576fbbd4" + "3cd1c34b-fa95-4bef-bfa8-f5e2119de0b7" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T050006Z:30d172b1-8396-41e1-b42a-73ce576fbbd4" + "WESTUS:20200924T060212Z:3cd1c34b-fa95-4bef-bfa8-f5e2119de0b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -912,7 +1035,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:00:05 GMT" + "Thu, 24 Sep 2020 06:02:11 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -924,17 +1047,17 @@ "223" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps5469/databases/ps6851' under resource group 'ps1389' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps9265/databases/ps4145' under resource group 'ps2647' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1389/providers/Microsoft.Sql/servers/ps5469/databases/ps6851?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTM4OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNTQ2OS9kYXRhYmFzZXMvcHM2ODUxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2647/providers/Microsoft.Sql/servers/ps9265/databases/ps4145?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjY0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTI2NS9kYXRhYmFzZXMvcHM0MTQ1P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -948,19 +1071,19 @@ "no-cache" ], "x-ms-request-id": [ - "f1e6a478-c98a-408b-965e-6e9bcbe68d11" + "6e6e988a-4b7b-4c5d-96b8-4ed138fb9c53" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11941" + "11980" ], "x-ms-correlation-request-id": [ - "f437b031-9559-402b-bfc3-730737805a72" + "4aabe6fa-195f-4b19-973e-84c398a878b5" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T050141Z:f437b031-9559-402b-bfc3-730737805a72" + "WESTUS:20200924T060347Z:4aabe6fa-195f-4b19-973e-84c398a878b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -969,7 +1092,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:01:41 GMT" + "Thu, 24 Sep 2020 06:03:46 GMT" ], "Content-Length": [ "862" @@ -981,23 +1104,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"acbbc16c-d3d6-45a0-b663-36ac1dcde4ba\",\r\n \"creationDate\": \"2020-09-14T05:01:38.547Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-14T05:31:38.547Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1389/providers/Microsoft.Sql/servers/ps5469/databases/ps6851\",\r\n \"name\": \"ps6851\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"80e17ecb-690e-4eee-8957-288b6e2b4bc7\",\r\n \"creationDate\": \"2020-09-24T06:03:38.837Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-24T06:33:38.837Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2647/providers/Microsoft.Sql/servers/ps9265/databases/ps4145\",\r\n \"name\": \"ps4145\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1389/providers/Microsoft.Sql/servers/ps5469/databases/ps6851?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTM4OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNTQ2OS9kYXRhYmFzZXMvcHM2ODUxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2647/providers/Microsoft.Sql/servers/ps9265/databases/ps4145?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjY0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTI2NS9kYXRhYmFzZXMvcHM0MTQ1P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0140b948-9516-4a4c-b7af-14d0420cb17f" + "8d250ff4-23ff-4547-942f-25725ce89570" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1011,19 +1134,19 @@ "no-cache" ], "x-ms-request-id": [ - "27cf0852-cb66-452b-aaf9-c823468601ab" + "2ea9af42-399e-446d-9ad1-0bdaf6ff0cd6" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11929" + "11966" ], "x-ms-correlation-request-id": [ - "bff5b49b-050b-4044-8fea-15b760177c9d" + "9bf3129f-ab2d-4a70-90c3-59c1db9b7c7d" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T050235Z:bff5b49b-050b-4044-8fea-15b760177c9d" + "WESTUS:20200924T060500Z:9bf3129f-ab2d-4a70-90c3-59c1db9b7c7d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1032,7 +1155,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:02:34 GMT" + "Thu, 24 Sep 2020 06:05:00 GMT" ], "Content-Length": [ "862" @@ -1044,23 +1167,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"acbbc16c-d3d6-45a0-b663-36ac1dcde4ba\",\r\n \"creationDate\": \"2020-09-14T05:01:38.547Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-14T05:31:38.547Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1389/providers/Microsoft.Sql/servers/ps5469/databases/ps6851\",\r\n \"name\": \"ps6851\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"80e17ecb-690e-4eee-8957-288b6e2b4bc7\",\r\n \"creationDate\": \"2020-09-24T06:03:38.837Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-24T06:33:38.837Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2647/providers/Microsoft.Sql/servers/ps9265/databases/ps4145\",\r\n \"name\": \"ps4145\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1389/providers/Microsoft.Sql/servers/ps5469/databases/ps6851?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTM4OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNTQ2OS9kYXRhYmFzZXMvcHM2ODUxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2647/providers/Microsoft.Sql/servers/ps9265/databases/ps4145?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjY0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTI2NS9kYXRhYmFzZXMvcHM0MTQ1P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"properties\": {\r\n \"maxSizeBytes\": 0,\r\n \"readScale\": \"\"\r\n },\r\n \"location\": \"westeurope\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "cb2a8304-4c03-4d4f-8087-fcb05439242e" + "fd431eb7-2b17-4d0e-ba59-d6a8ac1a8cca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1080,28 +1203,28 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1389/providers/Microsoft.Sql/locations/westeurope/databaseOperationResults/85cd4143-abd0-4bd4-8927-99083d0c46b6?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2647/providers/Microsoft.Sql/locations/westeurope/databaseOperationResults/a5f9a9e4-0d0f-4da8-b8b8-0397d1fff14c?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1389/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/85cd4143-abd0-4bd4-8927-99083d0c46b6?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2647/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a5f9a9e4-0d0f-4da8-b8b8-0397d1fff14c?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "85cd4143-abd0-4bd4-8927-99083d0c46b6" + "a5f9a9e4-0d0f-4da8-b8b8-0397d1fff14c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1198" ], "x-ms-correlation-request-id": [ - "4a9e91e4-db76-4212-875c-1484e03bab59" + "e4526851-c92f-4f26-b3ac-79f654206a6f" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T050010Z:4a9e91e4-db76-4212-875c-1484e03bab59" + "WESTUS:20200924T060215Z:e4526851-c92f-4f26-b3ac-79f654206a6f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1110,10 +1233,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:00:09 GMT" + "Thu, 24 Sep 2020 06:02:14 GMT" ], "Content-Length": [ - "76" + "75" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1122,17 +1245,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2020-09-14T05:00:10.137Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2020-09-24T06:02:15.65Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1389/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/85cd4143-abd0-4bd4-8927-99083d0c46b6?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTM4OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vODVjZDQxNDMtYWJkMC00YmQ0LTg5MjctOTkwODNkMGM0NmI2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2647/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a5f9a9e4-0d0f-4da8-b8b8-0397d1fff14c?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjY0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYTVmOWE5ZTQtMGQwZi00ZGE4LWI4YjgtMDM5N2QxZmZmMTRjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1149,19 +1272,19 @@ "15" ], "x-ms-request-id": [ - "bbdae20e-257c-47c5-9e5a-1fed39f1fa1b" + "ee5f89d3-c943-48d5-a630-1df5e4ed79dc" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11947" + "11986" ], "x-ms-correlation-request-id": [ - "a3f0db23-f828-42f5-a41b-b6d6244a921c" + "ab2e78bd-fb74-4540-a74c-92a0b106c9d5" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T050025Z:a3f0db23-f828-42f5-a41b-b6d6244a921c" + "WESTUS:20200924T060231Z:ab2e78bd-fb74-4540-a74c-92a0b106c9d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1170,10 +1293,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:00:25 GMT" + "Thu, 24 Sep 2020 06:02:30 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1182,17 +1305,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"85cd4143-abd0-4bd4-8927-99083d0c46b6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:00:10.137Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"a5f9a9e4-0d0f-4da8-b8b8-0397d1fff14c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:02:15.65Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1389/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/85cd4143-abd0-4bd4-8927-99083d0c46b6?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTM4OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vODVjZDQxNDMtYWJkMC00YmQ0LTg5MjctOTkwODNkMGM0NmI2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2647/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a5f9a9e4-0d0f-4da8-b8b8-0397d1fff14c?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjY0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYTVmOWE5ZTQtMGQwZi00ZGE4LWI4YjgtMDM5N2QxZmZmMTRjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1209,19 +1332,19 @@ "15" ], "x-ms-request-id": [ - "484459df-7220-4db0-8880-c47be35fed78" + "d01a50d6-4dc7-43e2-bb32-c91af2be4a27" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11946" + "11985" ], "x-ms-correlation-request-id": [ - "7c7eb9dc-106d-4748-9dd4-5551c3cd60f8" + "fa041690-5fb1-447f-a207-98ff604339a9" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T050040Z:7c7eb9dc-106d-4748-9dd4-5551c3cd60f8" + "WESTUS:20200924T060246Z:fa041690-5fb1-447f-a207-98ff604339a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1230,10 +1353,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:00:40 GMT" + "Thu, 24 Sep 2020 06:02:45 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1242,17 +1365,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"85cd4143-abd0-4bd4-8927-99083d0c46b6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:00:10.137Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"a5f9a9e4-0d0f-4da8-b8b8-0397d1fff14c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:02:15.65Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1389/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/85cd4143-abd0-4bd4-8927-99083d0c46b6?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTM4OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vODVjZDQxNDMtYWJkMC00YmQ0LTg5MjctOTkwODNkMGM0NmI2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2647/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a5f9a9e4-0d0f-4da8-b8b8-0397d1fff14c?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjY0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYTVmOWE5ZTQtMGQwZi00ZGE4LWI4YjgtMDM5N2QxZmZmMTRjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1269,19 +1392,19 @@ "15" ], "x-ms-request-id": [ - "c6ebfebe-14b3-4133-871a-427a1e21cf37" + "6887da86-a237-4404-aea4-e6a40d3a1ef2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11945" + "11984" ], "x-ms-correlation-request-id": [ - "e8fe5977-b41e-413c-abb5-b49e53163b9f" + "94e7f1c7-c7d6-4fad-81bd-8a81928f2f18" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T050056Z:e8fe5977-b41e-413c-abb5-b49e53163b9f" + "WESTUS:20200924T060301Z:94e7f1c7-c7d6-4fad-81bd-8a81928f2f18" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1290,10 +1413,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:00:55 GMT" + "Thu, 24 Sep 2020 06:03:01 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1302,17 +1425,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"85cd4143-abd0-4bd4-8927-99083d0c46b6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:00:10.137Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"a5f9a9e4-0d0f-4da8-b8b8-0397d1fff14c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:02:15.65Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1389/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/85cd4143-abd0-4bd4-8927-99083d0c46b6?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTM4OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vODVjZDQxNDMtYWJkMC00YmQ0LTg5MjctOTkwODNkMGM0NmI2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2647/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a5f9a9e4-0d0f-4da8-b8b8-0397d1fff14c?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjY0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYTVmOWE5ZTQtMGQwZi00ZGE4LWI4YjgtMDM5N2QxZmZmMTRjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1329,19 +1452,19 @@ "15" ], "x-ms-request-id": [ - "25a04832-bdfc-4054-bb12-0575cab1a723" + "2608f8eb-1047-4bb0-8ef5-8eb60ade887f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11944" + "11983" ], "x-ms-correlation-request-id": [ - "01462820-2530-42bf-95a6-90f927dd9f98" + "5f5ef2a1-06b4-4683-b146-85098fb94769" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T050111Z:01462820-2530-42bf-95a6-90f927dd9f98" + "WESTUS:20200924T060316Z:5f5ef2a1-06b4-4683-b146-85098fb94769" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1350,10 +1473,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:01:10 GMT" + "Thu, 24 Sep 2020 06:03:16 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1362,17 +1485,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"85cd4143-abd0-4bd4-8927-99083d0c46b6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:00:10.137Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"a5f9a9e4-0d0f-4da8-b8b8-0397d1fff14c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:02:15.65Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1389/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/85cd4143-abd0-4bd4-8927-99083d0c46b6?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTM4OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vODVjZDQxNDMtYWJkMC00YmQ0LTg5MjctOTkwODNkMGM0NmI2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2647/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a5f9a9e4-0d0f-4da8-b8b8-0397d1fff14c?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjY0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYTVmOWE5ZTQtMGQwZi00ZGE4LWI4YjgtMDM5N2QxZmZmMTRjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1389,19 +1512,19 @@ "15" ], "x-ms-request-id": [ - "1c6611f2-31e6-41ef-828f-d477329726a9" + "b6316c2a-5025-4247-ab07-132a40cb5e47" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11943" + "11982" ], "x-ms-correlation-request-id": [ - "3532b5f7-b3c3-400e-b8a2-2aad598d38f4" + "bffb4b85-6c0c-4e08-a8d2-7c523b21c511" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T050126Z:3532b5f7-b3c3-400e-b8a2-2aad598d38f4" + "WESTUS:20200924T060331Z:bffb4b85-6c0c-4e08-a8d2-7c523b21c511" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1410,10 +1533,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:01:25 GMT" + "Thu, 24 Sep 2020 06:03:31 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1422,17 +1545,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"85cd4143-abd0-4bd4-8927-99083d0c46b6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:00:10.137Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"a5f9a9e4-0d0f-4da8-b8b8-0397d1fff14c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:02:15.65Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1389/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/85cd4143-abd0-4bd4-8927-99083d0c46b6?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTM4OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vODVjZDQxNDMtYWJkMC00YmQ0LTg5MjctOTkwODNkMGM0NmI2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2647/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a5f9a9e4-0d0f-4da8-b8b8-0397d1fff14c?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjY0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYTVmOWE5ZTQtMGQwZi00ZGE4LWI4YjgtMDM5N2QxZmZmMTRjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1449,19 +1572,19 @@ "15" ], "x-ms-request-id": [ - "09e50125-ca1a-4932-9206-27f37315ebf9" + "0b531185-1d5d-47ce-9ce7-85b1a67f9a97" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11942" + "11981" ], "x-ms-correlation-request-id": [ - "7b6a25cb-3a21-4a84-8fbd-f20b85e41b08" + "8b24e3de-b757-41c0-849c-99a9a02c2afd" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T050141Z:7b6a25cb-3a21-4a84-8fbd-f20b85e41b08" + "WESTUS:20200924T060347Z:8b24e3de-b757-41c0-849c-99a9a02c2afd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1470,10 +1593,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:01:40 GMT" + "Thu, 24 Sep 2020 06:03:46 GMT" ], "Content-Length": [ - "107" + "106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1482,23 +1605,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"85cd4143-abd0-4bd4-8927-99083d0c46b6\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-14T05:00:10.137Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"a5f9a9e4-0d0f-4da8-b8b8-0397d1fff14c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-24T06:02:15.65Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps407?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzNDA3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps2491?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzMjQ5MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West Europe\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6fd134b4-5034-4a7d-b4e4-b1859e8fd149" + "bb3dff73-e2f9-4d82-b372-5ed951f91ae6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -1521,13 +1644,13 @@ "1199" ], "x-ms-request-id": [ - "8a60ef94-5761-498f-b85b-5ce0d4fa348a" + "32c6adeb-9f96-4eb4-8bb9-2a40cc5ceb9e" ], "x-ms-correlation-request-id": [ - "8a60ef94-5761-498f-b85b-5ce0d4fa348a" + "32c6adeb-9f96-4eb4-8bb9-2a40cc5ceb9e" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T050144Z:8a60ef94-5761-498f-b85b-5ce0d4fa348a" + "WESTUS:20200924T060348Z:32c6adeb-9f96-4eb4-8bb9-2a40cc5ceb9e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1536,10 +1659,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:01:43 GMT" + "Thu, 24 Sep 2020 06:03:47 GMT" ], "Content-Length": [ - "167" + "169" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1548,23 +1671,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps407\",\r\n \"name\": \"ps407\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2491\",\r\n \"name\": \"ps2491\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps407/providers/Microsoft.Sql/servers/ps7700?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHM3NzAwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2491/providers/Microsoft.Sql/servers/ps2624?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjYyND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "47bab2f9-ea45-47cd-b081-b5e159e2579c" + "cf3d092b-3b26-41c2-974f-f245f92306e2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1581,13 +1704,13 @@ "gateway" ], "x-ms-request-id": [ - "c5dc5984-5348-4825-b2aa-90e6624dc797" + "44cd93a7-3fc2-4dbe-8401-2f65723da084" ], "x-ms-correlation-request-id": [ - "c5dc5984-5348-4825-b2aa-90e6624dc797" + "44cd93a7-3fc2-4dbe-8401-2f65723da084" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T050144Z:c5dc5984-5348-4825-b2aa-90e6624dc797" + "WESTUS:20200924T060349Z:44cd93a7-3fc2-4dbe-8401-2f65723da084" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1596,7 +1719,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:01:43 GMT" + "Thu, 24 Sep 2020 06:03:48 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1605,20 +1728,20 @@ "-1" ], "Content-Length": [ - "205" + "206" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps7700' under resource group 'ps407' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps2624' under resource group 'ps2491' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps407/providers/Microsoft.Sql/servers/ps7700?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHM3NzAwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2491/providers/Microsoft.Sql/servers/ps2624?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjYyND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1632,19 +1755,19 @@ "no-cache" ], "x-ms-request-id": [ - "07361be5-5c68-4271-afce-6c859730c216" + "a49884a0-ca76-4ca5-b455-301a79803d7b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11932" + "11970" ], "x-ms-correlation-request-id": [ - "ed7936cd-8c4c-43b5-93b3-51889a643bb0" + "2dbbc72b-9b7d-46ef-8170-0413faba065b" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T050234Z:ed7936cd-8c4c-43b5-93b3-51889a643bb0" + "WESTUS:20200924T060459Z:2dbbc72b-9b7d-46ef-8170-0413faba065b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1653,10 +1776,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:02:33 GMT" + "Thu, 24 Sep 2020 06:04:59 GMT" ], "Content-Length": [ - "411" + "412" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1665,23 +1788,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps7700.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps407/providers/Microsoft.Sql/servers/ps7700\",\r\n \"name\": \"ps7700\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps2624.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2491/providers/Microsoft.Sql/servers/ps2624\",\r\n \"name\": \"ps2624\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps407/providers/Microsoft.Sql/servers/ps7700?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHM3NzAwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2491/providers/Microsoft.Sql/servers/ps2624?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjYyND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a2c36e22-1b4e-4217-a18b-ececc0b84fa2" + "534b5b02-258f-46b7-831d-e3627fe5b6bb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1695,19 +1818,19 @@ "no-cache" ], "x-ms-request-id": [ - "d357e0f0-b6db-4b5c-80ba-1145413708f0" + "a5d94288-44fd-4860-a334-317eb2caa718" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11930" + "11967" ], "x-ms-correlation-request-id": [ - "5ac2d3f6-b62d-4c5c-8ca6-55b8cc459135" + "5da7fe9a-b913-4bea-b893-1656ecba992f" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T050234Z:5ac2d3f6-b62d-4c5c-8ca6-55b8cc459135" + "WESTUS:20200924T060459Z:5da7fe9a-b913-4bea-b893-1656ecba992f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1716,10 +1839,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:02:33 GMT" + "Thu, 24 Sep 2020 06:04:59 GMT" ], "Content-Length": [ - "411" + "412" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1728,23 +1851,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps7700.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps407/providers/Microsoft.Sql/servers/ps7700\",\r\n \"name\": \"ps7700\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps2624.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2491/providers/Microsoft.Sql/servers/ps2624\",\r\n \"name\": \"ps2624\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps407/providers/Microsoft.Sql/servers/ps7700?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHM3NzAwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2491/providers/Microsoft.Sql/servers/ps2624?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjYyND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"West Europe\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "000fed00-96de-48e0-bbb4-22f3bc2c24f8" + "fae5c31e-012d-479a-aac1-a6affa269e88" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1764,28 +1887,28 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps407/providers/Microsoft.Sql/locations/westeurope/serverOperationResults/9ed35061-e903-44e5-a28d-fbbbacd6638e?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2491/providers/Microsoft.Sql/locations/westeurope/serverOperationResults/2401966b-c408-4f06-b580-26361b6a2b97?api-version=2019-06-01-preview" ], "Retry-After": [ "1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps407/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/9ed35061-e903-44e5-a28d-fbbbacd6638e?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2491/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/2401966b-c408-4f06-b580-26361b6a2b97?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "9ed35061-e903-44e5-a28d-fbbbacd6638e" + "2401966b-c408-4f06-b580-26361b6a2b97" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1197" ], "x-ms-correlation-request-id": [ - "26a7abf1-9770-4937-982b-3c87db1e9b8c" + "2b1d51a5-7959-48be-a5dd-ec68e483e60c" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T050147Z:26a7abf1-9770-4937-982b-3c87db1e9b8c" + "WESTUS:20200924T060352Z:2b1d51a5-7959-48be-a5dd-ec68e483e60c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1794,10 +1917,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:01:46 GMT" + "Thu, 24 Sep 2020 06:03:51 GMT" ], "Content-Length": [ - "74" + "73" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1806,17 +1929,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-14T05:01:47.483Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-24T06:03:52.43Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps407/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/9ed35061-e903-44e5-a28d-fbbbacd6638e?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vOWVkMzUwNjEtZTkwMy00NGU1LWEyOGQtZmJiYmFjZDY2MzhlP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2491/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/2401966b-c408-4f06-b580-26361b6a2b97?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzI0MDE5NjZiLWM0MDgtNGYwNi1iNTgwLTI2MzYxYjZhMmI5Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1833,19 +1956,19 @@ "1" ], "x-ms-request-id": [ - "1aa76113-edc6-46a8-be6a-8daf9b9747b3" + "8e29f7c5-cca1-4f49-a0e0-98c083d8cd6b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11939" + "11978" ], "x-ms-correlation-request-id": [ - "436a5b9e-3bfb-4cc7-b691-205f6efdf2cc" + "818fd6cd-e86c-4d82-b597-fff8fb0190e2" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T050148Z:436a5b9e-3bfb-4cc7-b691-205f6efdf2cc" + "WESTUS:20200924T060353Z:818fd6cd-e86c-4d82-b597-fff8fb0190e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1854,10 +1977,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:01:48 GMT" + "Thu, 24 Sep 2020 06:03:53 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1866,17 +1989,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"9ed35061-e903-44e5-a28d-fbbbacd6638e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:01:47.483Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"2401966b-c408-4f06-b580-26361b6a2b97\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:03:52.43Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps407/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/9ed35061-e903-44e5-a28d-fbbbacd6638e?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vOWVkMzUwNjEtZTkwMy00NGU1LWEyOGQtZmJiYmFjZDY2MzhlP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2491/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/2401966b-c408-4f06-b580-26361b6a2b97?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzI0MDE5NjZiLWM0MDgtNGYwNi1iNTgwLTI2MzYxYjZhMmI5Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1893,19 +2016,19 @@ "1" ], "x-ms-request-id": [ - "36060351-be22-4a5f-8211-851e58750481" + "68766e82-a112-48c2-a585-88fcfd1a57ba" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11938" + "11977" ], "x-ms-correlation-request-id": [ - "859bb9ea-859f-4b87-8a5c-fac2c42ea25c" + "ae17fb92-4816-4438-8eb1-b4eeb37131a8" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T050150Z:859bb9ea-859f-4b87-8a5c-fac2c42ea25c" + "WESTUS:20200924T060354Z:ae17fb92-4816-4438-8eb1-b4eeb37131a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1914,10 +2037,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:01:49 GMT" + "Thu, 24 Sep 2020 06:03:54 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1926,17 +2049,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"9ed35061-e903-44e5-a28d-fbbbacd6638e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:01:47.483Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"2401966b-c408-4f06-b580-26361b6a2b97\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:03:52.43Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps407/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/9ed35061-e903-44e5-a28d-fbbbacd6638e?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vOWVkMzUwNjEtZTkwMy00NGU1LWEyOGQtZmJiYmFjZDY2MzhlP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2491/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/2401966b-c408-4f06-b580-26361b6a2b97?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzI0MDE5NjZiLWM0MDgtNGYwNi1iNTgwLTI2MzYxYjZhMmI5Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1953,19 +2076,19 @@ "1" ], "x-ms-request-id": [ - "d43a46f9-50ca-4b67-b828-1cec97ba29ac" + "eaa8b3b8-c88a-4f89-b20e-7c4449f374c8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11937" + "11976" ], "x-ms-correlation-request-id": [ - "4847ef3b-0c54-4aab-984d-987ba8243bf2" + "6a0a6da8-e7bf-4a25-923a-5d7fafdbd575" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T050151Z:4847ef3b-0c54-4aab-984d-987ba8243bf2" + "WESTUS:20200924T060356Z:6a0a6da8-e7bf-4a25-923a-5d7fafdbd575" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1974,10 +2097,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:01:50 GMT" + "Thu, 24 Sep 2020 06:03:55 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1986,17 +2109,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"9ed35061-e903-44e5-a28d-fbbbacd6638e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:01:47.483Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"2401966b-c408-4f06-b580-26361b6a2b97\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:03:52.43Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps407/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/9ed35061-e903-44e5-a28d-fbbbacd6638e?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vOWVkMzUwNjEtZTkwMy00NGU1LWEyOGQtZmJiYmFjZDY2MzhlP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2491/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/2401966b-c408-4f06-b580-26361b6a2b97?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzI0MDE5NjZiLWM0MDgtNGYwNi1iNTgwLTI2MzYxYjZhMmI5Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2013,19 +2136,19 @@ "1" ], "x-ms-request-id": [ - "f5fddd37-592f-4d36-8296-a9ba51486661" + "a874b87e-24a5-43d6-aba8-832db92fc293" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11936" + "11975" ], "x-ms-correlation-request-id": [ - "a1422226-6615-41b9-b85b-2b16f17aea04" + "a04de841-a600-43b3-aeee-0c0a60b9f8cd" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T050152Z:a1422226-6615-41b9-b85b-2b16f17aea04" + "WESTUS:20200924T060357Z:a04de841-a600-43b3-aeee-0c0a60b9f8cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2034,10 +2157,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:01:51 GMT" + "Thu, 24 Sep 2020 06:03:56 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2046,17 +2169,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"9ed35061-e903-44e5-a28d-fbbbacd6638e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:01:47.483Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"2401966b-c408-4f06-b580-26361b6a2b97\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:03:52.43Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps407/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/9ed35061-e903-44e5-a28d-fbbbacd6638e?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vOWVkMzUwNjEtZTkwMy00NGU1LWEyOGQtZmJiYmFjZDY2MzhlP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2491/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/2401966b-c408-4f06-b580-26361b6a2b97?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzI0MDE5NjZiLWM0MDgtNGYwNi1iNTgwLTI2MzYxYjZhMmI5Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2073,19 +2196,19 @@ "20" ], "x-ms-request-id": [ - "f32e0e02-92d2-4ed6-bcce-a7c071bda520" + "8f8cd056-379d-4dbf-a301-c2b35720d6e6" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11935" + "11974" ], "x-ms-correlation-request-id": [ - "7e8143b3-f768-4cf3-8202-7bd7b1f69620" + "f41b60c4-c40e-46a0-90d2-50aa6a8a97bb" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T050153Z:7e8143b3-f768-4cf3-8202-7bd7b1f69620" + "WESTUS:20200924T060358Z:f41b60c4-c40e-46a0-90d2-50aa6a8a97bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2094,10 +2217,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:01:52 GMT" + "Thu, 24 Sep 2020 06:03:57 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2106,17 +2229,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"9ed35061-e903-44e5-a28d-fbbbacd6638e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:01:47.483Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"2401966b-c408-4f06-b580-26361b6a2b97\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:03:52.43Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps407/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/9ed35061-e903-44e5-a28d-fbbbacd6638e?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vOWVkMzUwNjEtZTkwMy00NGU1LWEyOGQtZmJiYmFjZDY2MzhlP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2491/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/2401966b-c408-4f06-b580-26361b6a2b97?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzI0MDE5NjZiLWM0MDgtNGYwNi1iNTgwLTI2MzYxYjZhMmI5Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2133,19 +2256,19 @@ "20" ], "x-ms-request-id": [ - "dff5988b-d5d4-4c2f-b675-d9808a076a8d" + "8cd21ff2-c72b-4902-96ae-3d783f729e1c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11934" + "11973" ], "x-ms-correlation-request-id": [ - "8d87d769-927f-43a7-874d-a369647100a2" + "8ca9174b-baef-40a1-a520-92a3e5dcea0e" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T050213Z:8d87d769-927f-43a7-874d-a369647100a2" + "WESTUS:20200924T060418Z:8ca9174b-baef-40a1-a520-92a3e5dcea0e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2154,10 +2277,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:02:13 GMT" + "Thu, 24 Sep 2020 06:04:17 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2166,17 +2289,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"9ed35061-e903-44e5-a28d-fbbbacd6638e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:01:47.483Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"2401966b-c408-4f06-b580-26361b6a2b97\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:03:52.43Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps407/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/9ed35061-e903-44e5-a28d-fbbbacd6638e?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vOWVkMzUwNjEtZTkwMy00NGU1LWEyOGQtZmJiYmFjZDY2MzhlP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2491/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/2401966b-c408-4f06-b580-26361b6a2b97?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzI0MDE5NjZiLWM0MDgtNGYwNi1iNTgwLTI2MzYxYjZhMmI5Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2190,22 +2313,22 @@ "no-cache" ], "Retry-After": [ - "15" + "20" ], "x-ms-request-id": [ - "5633a92f-8a47-4252-aaf8-6ac0675b4cae" + "d56d9560-77e9-4892-b371-f6cbb64a8692" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11933" + "11972" ], "x-ms-correlation-request-id": [ - "f4c50146-066f-4068-8edd-5441bc190d9f" + "124c0f75-e12c-4566-968f-b0a94f045f18" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T050234Z:f4c50146-066f-4068-8edd-5441bc190d9f" + "WESTUS:20200924T060438Z:124c0f75-e12c-4566-968f-b0a94f045f18" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2214,7 +2337,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:02:33 GMT" + "Thu, 24 Sep 2020 06:04:37 GMT" ], "Content-Length": [ "107" @@ -2226,23 +2349,83 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"9ed35061-e903-44e5-a28d-fbbbacd6638e\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-14T05:01:47.483Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"2401966b-c408-4f06-b580-26361b6a2b97\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:03:52.43Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2491/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/2401966b-c408-4f06-b580-26361b6a2b97?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzI0MDE5NjZiLWM0MDgtNGYwNi1iNTgwLTI2MzYxYjZhMmI5Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "c9981c45-7d1e-4fb9-b14f-879cbae594bc" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-correlation-request-id": [ + "5fd6c74c-3007-4873-8240-8967a86a1e9c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T060459Z:5fd6c74c-3007-4873-8240-8967a86a1e9c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 06:04:59 GMT" + ], + "Content-Length": [ + "106" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"2401966b-c408-4f06-b580-26361b6a2b97\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-24T06:03:52.43Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps407/providers/Microsoft.Sql/servers/ps7700/databases/ps6851?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHM3NzAwL2RhdGFiYXNlcy9wczY4NTE/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2491/providers/Microsoft.Sql/servers/ps2624/databases/ps4145?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjYyNC9kYXRhYmFzZXMvcHM0MTQ1P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "72eeb242-afd6-4611-bb9a-2a0f3bb35919" + "06292d84-5899-4e5d-9552-1b4a43cac88e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2259,13 +2442,13 @@ "gateway" ], "x-ms-request-id": [ - "19a1a5ab-04ec-4911-9a5a-66a18f2b6dfa" + "057edcbc-83cb-447a-8c98-74941d398635" ], "x-ms-correlation-request-id": [ - "19a1a5ab-04ec-4911-9a5a-66a18f2b6dfa" + "057edcbc-83cb-447a-8c98-74941d398635" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T050234Z:19a1a5ab-04ec-4911-9a5a-66a18f2b6dfa" + "WESTUS:20200924T060459Z:057edcbc-83cb-447a-8c98-74941d398635" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2274,7 +2457,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:02:33 GMT" + "Thu, 24 Sep 2020 06:04:59 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2283,20 +2466,20 @@ "-1" ], "Content-Length": [ - "222" + "223" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps7700/databases/ps6851' under resource group 'ps407' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps2624/databases/ps4145' under resource group 'ps2491' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps407/providers/Microsoft.Sql/servers/ps7700/databases/ps6851?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHM3NzAwL2RhdGFiYXNlcy9wczY4NTE/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2491/providers/Microsoft.Sql/servers/ps2624/databases/ps4145?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjYyNC9kYXRhYmFzZXMvcHM0MTQ1P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2310,19 +2493,19 @@ "no-cache" ], "x-ms-request-id": [ - "7aadeb2c-f6e1-45be-a8f3-9ea06fa6eb29" + "36d9a7b4-55b4-445f-b632-2e7cb7a6594f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11915" + "11958" ], "x-ms-correlation-request-id": [ - "9dd0e2c7-13e4-4621-a713-6e571b2367d7" + "499c6743-a659-4bfb-b0be-c59330bd4259" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T050556Z:9dd0e2c7-13e4-4621-a713-6e571b2367d7" + "WESTUS:20200924T060651Z:499c6743-a659-4bfb-b0be-c59330bd4259" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2331,10 +2514,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:05:56 GMT" + "Thu, 24 Sep 2020 06:06:50 GMT" ], "Content-Length": [ - "861" + "860" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2343,23 +2526,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"46ba00e3-09ad-4d21-8935-f74d0d55750d\",\r\n \"creationDate\": \"2020-09-14T05:05:43.127Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-14T05:35:43.127Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps407/providers/Microsoft.Sql/servers/ps7700/databases/ps6851\",\r\n \"name\": \"ps6851\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"eff93478-9742-4c55-8cf1-0de01ee8dcf9\",\r\n \"creationDate\": \"2020-09-24T06:06:37.56Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-24T06:36:37.56Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2491/providers/Microsoft.Sql/servers/ps2624/databases/ps4145\",\r\n \"name\": \"ps4145\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps407/providers/Microsoft.Sql/servers/ps7700/databases/ps6851?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHM3NzAwL2RhdGFiYXNlcy9wczY4NTE/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2491/providers/Microsoft.Sql/servers/ps2624/databases/ps4145?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjYyNC9kYXRhYmFzZXMvcHM0MTQ1P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"P1\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"properties\": {\r\n \"createMode\": \"Secondary\",\r\n \"sourceDatabaseId\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1389/providers/Microsoft.Sql/Servers/ps5469/databases/ps6851\"\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"P1\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"properties\": {\r\n \"createMode\": \"Secondary\",\r\n \"sourceDatabaseId\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2647/providers/Microsoft.Sql/Servers/ps9265/databases/ps4145\"\r\n },\r\n \"location\": \"westeurope\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "80b88f9f-860f-4ec9-b2ba-f083cfd77608" + "49b6e19b-3200-4317-8cf2-d819288a0111" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2379,28 +2562,28 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps407/providers/Microsoft.Sql/locations/westeurope/databaseOperationResults/68248296-290b-4802-8b05-021d72ae283c?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2491/providers/Microsoft.Sql/locations/westeurope/databaseOperationResults/05655830-e8b5-4071-9c78-2bdb267328be?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps407/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/68248296-290b-4802-8b05-021d72ae283c?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2491/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/05655830-e8b5-4071-9c78-2bdb267328be?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "4110843f-ad91-4ea8-a424-21dc8c49252e" + "5443704b-b040-46e8-b3ab-eef77c5a8e1d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1196" ], "x-ms-correlation-request-id": [ - "933996ce-935b-477d-9ae5-808c6e9056c7" + "e840dd63-2987-46fe-b6ba-9abff883e825" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T050237Z:933996ce-935b-477d-9ae5-808c6e9056c7" + "WESTUS:20200924T060503Z:e840dd63-2987-46fe-b6ba-9abff883e825" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2409,10 +2592,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:02:37 GMT" + "Thu, 24 Sep 2020 06:05:03 GMT" ], "Content-Length": [ - "74" + "75" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2421,17 +2604,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2020-09-14T05:02:37.32Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2020-09-24T06:05:03.603Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps407/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/68248296-290b-4802-8b05-021d72ae283c?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi82ODI0ODI5Ni0yOTBiLTQ4MDItOGIwNS0wMjFkNzJhZTI4M2M/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2491/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/05655830-e8b5-4071-9c78-2bdb267328be?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMDU2NTU4MzAtZThiNS00MDcxLTljNzgtMmJkYjI2NzMyOGJlP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2448,19 +2631,19 @@ "15" ], "x-ms-request-id": [ - "69e1ffd4-c050-4b24-89e4-ed8f16402b46" + "37d01668-2953-4d5b-9133-e7b9f03894f9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11928" + "11965" ], "x-ms-correlation-request-id": [ - "447b90d2-4278-4143-b1c6-e19640bef8fa" + "c5d35301-aa74-4174-8175-f854beb8d2b3" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T050253Z:447b90d2-4278-4143-b1c6-e19640bef8fa" + "WESTUS:20200924T060519Z:c5d35301-aa74-4174-8175-f854beb8d2b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2469,7 +2652,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:02:53 GMT" + "Thu, 24 Sep 2020 06:05:18 GMT" ], "Content-Length": [ "107" @@ -2481,17 +2664,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"68248296-290b-4802-8b05-021d72ae283c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:02:37.57Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"05655830-e8b5-4071-9c78-2bdb267328be\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:05:03.84Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps407/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/68248296-290b-4802-8b05-021d72ae283c?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi82ODI0ODI5Ni0yOTBiLTQ4MDItOGIwNS0wMjFkNzJhZTI4M2M/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2491/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/05655830-e8b5-4071-9c78-2bdb267328be?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMDU2NTU4MzAtZThiNS00MDcxLTljNzgtMmJkYjI2NzMyOGJlP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2508,19 +2691,19 @@ "15" ], "x-ms-request-id": [ - "030c4d67-4d77-48da-9611-c1eaae186022" + "4cb0f705-b8a8-42f7-a468-09a39c5d7b96" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11927" + "11964" ], "x-ms-correlation-request-id": [ - "416a06e5-5dcd-4d29-b2dd-76df74cb0eed" + "b6c22c91-e7a1-4c9f-9c15-18a8534dfcc5" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T050308Z:416a06e5-5dcd-4d29-b2dd-76df74cb0eed" + "WESTUS:20200924T060534Z:b6c22c91-e7a1-4c9f-9c15-18a8534dfcc5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2529,7 +2712,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:03:08 GMT" + "Thu, 24 Sep 2020 06:05:34 GMT" ], "Content-Length": [ "107" @@ -2541,17 +2724,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"68248296-290b-4802-8b05-021d72ae283c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:02:37.57Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"05655830-e8b5-4071-9c78-2bdb267328be\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:05:03.84Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps407/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/68248296-290b-4802-8b05-021d72ae283c?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi82ODI0ODI5Ni0yOTBiLTQ4MDItOGIwNS0wMjFkNzJhZTI4M2M/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2491/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/05655830-e8b5-4071-9c78-2bdb267328be?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMDU2NTU4MzAtZThiNS00MDcxLTljNzgtMmJkYjI2NzMyOGJlP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2568,19 +2751,19 @@ "15" ], "x-ms-request-id": [ - "97e8a052-2b37-4bb3-a9dc-cb1e3a0f0795" + "dcd1a2ad-fe53-4997-8bbd-05569f4f4809" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11926" + "11963" ], "x-ms-correlation-request-id": [ - "c7ea1e58-efc1-4451-9a5d-1487c2e605e4" + "85fa5af2-0ebd-4b6c-98b0-d0ba2aac127d" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T050324Z:c7ea1e58-efc1-4451-9a5d-1487c2e605e4" + "WESTUS:20200924T060549Z:85fa5af2-0ebd-4b6c-98b0-d0ba2aac127d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2589,7 +2772,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:03:23 GMT" + "Thu, 24 Sep 2020 06:05:49 GMT" ], "Content-Length": [ "107" @@ -2601,17 +2784,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"68248296-290b-4802-8b05-021d72ae283c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:02:37.57Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"05655830-e8b5-4071-9c78-2bdb267328be\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:05:03.84Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps407/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/68248296-290b-4802-8b05-021d72ae283c?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi82ODI0ODI5Ni0yOTBiLTQ4MDItOGIwNS0wMjFkNzJhZTI4M2M/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2491/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/05655830-e8b5-4071-9c78-2bdb267328be?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMDU2NTU4MzAtZThiNS00MDcxLTljNzgtMmJkYjI2NzMyOGJlP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2628,19 +2811,19 @@ "15" ], "x-ms-request-id": [ - "20d5ab39-af49-4918-879f-f9109cc4b347" + "a9389f70-bc7f-4a9b-b787-9e9cb3014636" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11925" + "11962" ], "x-ms-correlation-request-id": [ - "80b020d8-29a7-47bc-8eee-398c214f6775" + "98d6e65d-c8aa-40d7-9323-360b875e30c3" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T050339Z:80b020d8-29a7-47bc-8eee-398c214f6775" + "WESTUS:20200924T060605Z:98d6e65d-c8aa-40d7-9323-360b875e30c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2649,7 +2832,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:03:38 GMT" + "Thu, 24 Sep 2020 06:06:04 GMT" ], "Content-Length": [ "107" @@ -2661,17 +2844,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"68248296-290b-4802-8b05-021d72ae283c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:02:37.57Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"05655830-e8b5-4071-9c78-2bdb267328be\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:05:03.84Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps407/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/68248296-290b-4802-8b05-021d72ae283c?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi82ODI0ODI5Ni0yOTBiLTQ4MDItOGIwNS0wMjFkNzJhZTI4M2M/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2491/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/05655830-e8b5-4071-9c78-2bdb267328be?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMDU2NTU4MzAtZThiNS00MDcxLTljNzgtMmJkYjI2NzMyOGJlP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2688,19 +2871,19 @@ "15" ], "x-ms-request-id": [ - "eba48a99-8d68-4816-bfe8-9d2c0dd400b6" + "15292faa-5f37-43b6-8131-2916b3d6f7f4" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11924" + "11961" ], "x-ms-correlation-request-id": [ - "47440325-fcf4-4192-9b55-8a0a84fc2283" + "4f9a75b0-6b47-415b-8a4e-506458f0fd75" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T050354Z:47440325-fcf4-4192-9b55-8a0a84fc2283" + "WESTUS:20200924T060620Z:4f9a75b0-6b47-415b-8a4e-506458f0fd75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2709,7 +2892,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:03:54 GMT" + "Thu, 24 Sep 2020 06:06:19 GMT" ], "Content-Length": [ "107" @@ -2721,17 +2904,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"68248296-290b-4802-8b05-021d72ae283c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:02:37.57Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"05655830-e8b5-4071-9c78-2bdb267328be\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:05:03.84Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps407/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/68248296-290b-4802-8b05-021d72ae283c?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi82ODI0ODI5Ni0yOTBiLTQ4MDItOGIwNS0wMjFkNzJhZTI4M2M/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2491/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/05655830-e8b5-4071-9c78-2bdb267328be?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMDU2NTU4MzAtZThiNS00MDcxLTljNzgtMmJkYjI2NzMyOGJlP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2748,19 +2931,19 @@ "15" ], "x-ms-request-id": [ - "aeeaab76-ae88-40f7-8107-8cbbc352e602" + "28b153d1-9b06-4f06-a5d3-457fcdad6873" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11923" + "11960" ], "x-ms-correlation-request-id": [ - "0f89a6f5-10bb-42c8-b465-23c6c75acbf5" + "a9033494-abae-4c5d-8174-a1a847e99976" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T050409Z:0f89a6f5-10bb-42c8-b465-23c6c75acbf5" + "WESTUS:20200924T060635Z:a9033494-abae-4c5d-8174-a1a847e99976" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2769,7 +2952,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:04:09 GMT" + "Thu, 24 Sep 2020 06:06:34 GMT" ], "Content-Length": [ "107" @@ -2781,17 +2964,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"68248296-290b-4802-8b05-021d72ae283c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:02:37.57Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"05655830-e8b5-4071-9c78-2bdb267328be\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:05:03.84Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps407/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/68248296-290b-4802-8b05-021d72ae283c?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi82ODI0ODI5Ni0yOTBiLTQ4MDItOGIwNS0wMjFkNzJhZTI4M2M/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2491/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/05655830-e8b5-4071-9c78-2bdb267328be?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMDU2NTU4MzAtZThiNS00MDcxLTljNzgtMmJkYjI2NzMyOGJlP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2808,19 +2991,19 @@ "15" ], "x-ms-request-id": [ - "5eedb390-194c-4758-87fa-6e904529d5c6" + "f708fc02-c2a8-46a5-a60b-2a054448a05f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11922" + "11959" ], "x-ms-correlation-request-id": [ - "7d22833d-891f-4793-82d2-809d68aa916e" + "cf82588d-4a4b-431f-9768-fa8394f3d03d" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T050424Z:7d22833d-891f-4793-82d2-809d68aa916e" + "WESTUS:20200924T060650Z:cf82588d-4a4b-431f-9768-fa8394f3d03d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2829,10 +3012,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:04:24 GMT" + "Thu, 24 Sep 2020 06:06:50 GMT" ], "Content-Length": [ - "107" + "106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2841,17 +3024,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"68248296-290b-4802-8b05-021d72ae283c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:02:37.57Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"05655830-e8b5-4071-9c78-2bdb267328be\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-24T06:05:03.84Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps407/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/68248296-290b-4802-8b05-021d72ae283c?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi82ODI0ODI5Ni0yOTBiLTQ4MDItOGIwNS0wMjFkNzJhZTI4M2M/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2491/providers/Microsoft.Sql/servers?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "407f7f70-38a1-41e3-b759-243f3cbd6b4d" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2864,23 +3053,20 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], "x-ms-request-id": [ - "a68f2975-bf92-41ff-9013-e7ef095075c7" + "7a26b028-6f9d-487e-9ac3-329ccfb166ed" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11921" + "11957" ], "x-ms-correlation-request-id": [ - "4350557a-0e7f-46d6-9cd7-a8ad5c0036cb" + "d11c8c80-6966-4691-87e7-6535503aca86" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T050440Z:4350557a-0e7f-46d6-9cd7-a8ad5c0036cb" + "WESTUS:20200924T060651Z:d11c8c80-6966-4691-87e7-6535503aca86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2889,10 +3075,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:04:39 GMT" + "Thu, 24 Sep 2020 06:06:50 GMT" ], "Content-Length": [ - "107" + "424" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2901,437 +3087,74 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"68248296-290b-4802-8b05-021d72ae283c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:02:37.57Z\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps2624.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2491/providers/Microsoft.Sql/servers/ps2624\",\r\n \"name\": \"ps2624\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps407/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/68248296-290b-4802-8b05-021d72ae283c?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi82ODI0ODI5Ni0yOTBiLTQ4MDItOGIwNS0wMjFkNzJhZTI4M2M/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2647/providers/Microsoft.Sql/servers/ps9265/databases/ps4145/replicationLinks?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjY0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTI2NS9kYXRhYmFzZXMvcHM0MTQ1L3JlcGxpY2F0aW9uTGlua3M/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ - "no-cache" + "no-store, no-cache" ], - "Pragma": [ - "no-cache" + "x-ms-request-id": [ + "4b62f27f-4e9f-481a-8377-6f33b414cdad" ], - "Retry-After": [ - "15" + "X-Content-Type-Options": [ + "nosniff" ], - "x-ms-request-id": [ - "f2169610-5851-4570-afd5-ab8a82b70c4d" + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11920" + "11987" ], "x-ms-correlation-request-id": [ - "63569b8e-80bd-4add-8767-635d8bc871c8" + "ee776d90-00c7-42e5-8ccc-8da0af64bf9f" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T050455Z:63569b8e-80bd-4add-8767-635d8bc871c8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" + "WESTUS:20200924T060651Z:ee776d90-00c7-42e5-8ccc-8da0af64bf9f" ], "Date": [ - "Mon, 14 Sep 2020 05:04:54 GMT" + "Thu, 24 Sep 2020 06:06:51 GMT" ], "Content-Length": [ - "107" + "618" ], "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"name\": \"68248296-290b-4802-8b05-021d72ae283c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:02:37.57Z\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2647/providers/Microsoft.Sql/servers/ps9265/databases/ps4145/replicationLinks/d3c23dbe-429b-4c41-9f92-7621fb037377\",\r\n \"name\": \"d3c23dbe-429b-4c41-9f92-7621fb037377\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"West Europe\",\r\n \"properties\": {\r\n \"partnerServer\": \"ps2624\",\r\n \"partnerDatabase\": \"ps4145\",\r\n \"partnerLocation\": \"West Europe\",\r\n \"role\": \"Primary\",\r\n \"partnerRole\": \"Secondary\",\r\n \"replicationMode\": \"ASYNC\",\r\n \"startTime\": \"2020-09-24T06:06:05.77\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps407/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/68248296-290b-4802-8b05-021d72ae283c?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi82ODI0ODI5Ni0yOTBiLTQ4MDItOGIwNS0wMjFkNzJhZTI4M2M/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "f5e6ab7a-4342-4ea9-9822-75f5d6660475" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11919" - ], - "x-ms-correlation-request-id": [ - "8ccd9b91-107e-4d6a-9dc0-04da58a6724b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T050510Z:8ccd9b91-107e-4d6a-9dc0-04da58a6724b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 14 Sep 2020 05:05:09 GMT" - ], - "Content-Length": [ - "107" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"68248296-290b-4802-8b05-021d72ae283c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:02:37.57Z\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps407/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/68248296-290b-4802-8b05-021d72ae283c?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi82ODI0ODI5Ni0yOTBiLTQ4MDItOGIwNS0wMjFkNzJhZTI4M2M/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "ca403666-bf7a-4888-a707-1a8abc45b35b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11918" - ], - "x-ms-correlation-request-id": [ - "58d17036-2c9d-4dbc-b9eb-47c359a77524" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T050525Z:58d17036-2c9d-4dbc-b9eb-47c359a77524" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 14 Sep 2020 05:05:25 GMT" - ], - "Content-Length": [ - "107" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"68248296-290b-4802-8b05-021d72ae283c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:02:37.57Z\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps407/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/68248296-290b-4802-8b05-021d72ae283c?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi82ODI0ODI5Ni0yOTBiLTQ4MDItOGIwNS0wMjFkNzJhZTI4M2M/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "24964912-efcd-4390-b8e1-34910dbfdbee" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11917" - ], - "x-ms-correlation-request-id": [ - "b304ed27-6dd6-409e-b8b5-cf27d83a0759" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T050540Z:b304ed27-6dd6-409e-b8b5-cf27d83a0759" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 14 Sep 2020 05:05:40 GMT" - ], - "Content-Length": [ - "107" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"68248296-290b-4802-8b05-021d72ae283c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:02:37.57Z\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps407/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/68248296-290b-4802-8b05-021d72ae283c?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi82ODI0ODI5Ni0yOTBiLTQ4MDItOGIwNS0wMjFkNzJhZTI4M2M/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "0fbd176a-ba14-49d7-9bb1-3f7cad3929a9" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11916" - ], - "x-ms-correlation-request-id": [ - "e6296cc4-e862-4ad0-b084-2736cbcbdde6" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T050556Z:e6296cc4-e862-4ad0-b084-2736cbcbdde6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 14 Sep 2020 05:05:55 GMT" - ], - "Content-Length": [ - "106" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"68248296-290b-4802-8b05-021d72ae283c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-14T05:02:37.57Z\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps407/providers/Microsoft.Sql/servers?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnM/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bfcaf707-0b0b-4611-85ed-ccd65b362618" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "bf27f82e-3e84-4ce7-8822-26d3c050f837" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11914" - ], - "x-ms-correlation-request-id": [ - "e48abe73-13b1-45e0-95ee-2f44d39ba358" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T050556Z:e48abe73-13b1-45e0-95ee-2f44d39ba358" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 14 Sep 2020 05:05:56 GMT" - ], - "Content-Length": [ - "423" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps7700.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps407/providers/Microsoft.Sql/servers/ps7700\",\r\n \"name\": \"ps7700\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1389/providers/Microsoft.Sql/servers/ps5469/databases/ps6851/replicationLinks?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTM4OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNTQ2OS9kYXRhYmFzZXMvcHM2ODUxL3JlcGxpY2F0aW9uTGlua3M/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "x-ms-request-id": [ - "2243aea7-b48c-4900-b7bb-713c272614ad" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "93b39311-5c36-4a10-a0f4-655797dac634" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T050557Z:93b39311-5c36-4a10-a0f4-655797dac634" - ], - "Date": [ - "Mon, 14 Sep 2020 05:05:56 GMT" - ], - "Content-Length": [ - "619" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1389/providers/Microsoft.Sql/servers/ps5469/databases/ps6851/replicationLinks/7120a44a-d831-47c8-9b49-6691781ba835\",\r\n \"name\": \"7120a44a-d831-47c8-9b49-6691781ba835\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"West Europe\",\r\n \"properties\": {\r\n \"partnerServer\": \"ps7700\",\r\n \"partnerDatabase\": \"ps6851\",\r\n \"partnerLocation\": \"West Europe\",\r\n \"role\": \"Primary\",\r\n \"partnerRole\": \"Secondary\",\r\n \"replicationMode\": \"ASYNC\",\r\n \"startTime\": \"2020-09-14T05:03:50.043\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps1389?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzMTM4OT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps2647?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzMjY0Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "de4d733c-58f3-4888-b9c3-7a65dbbdfc52" + "82fdc297-1753-4908-8b89-7548baac4328" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3345,7 +3168,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEzODktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3354,13 +3177,13 @@ "14999" ], "x-ms-request-id": [ - "bc36176e-4485-4570-a1c0-e829f2449b76" + "8769366d-8c1b-4b8c-b1ac-f3a9d495917c" ], "x-ms-correlation-request-id": [ - "bc36176e-4485-4570-a1c0-e829f2449b76" + "8769366d-8c1b-4b8c-b1ac-f3a9d495917c" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T050601Z:bc36176e-4485-4570-a1c0-e829f2449b76" + "WESTUS:20200924T060655Z:8769366d-8c1b-4b8c-b1ac-f3a9d495917c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3369,7 +3192,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:06:01 GMT" + "Thu, 24 Sep 2020 06:06:55 GMT" ], "Expires": [ "-1" @@ -3382,13 +3205,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEzODktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFek9Ea3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk5EY3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3402,7 +3225,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEzODktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3411,13 +3234,13 @@ "11999" ], "x-ms-request-id": [ - "fdd00b5f-cf52-4275-91a3-56e1730f3948" + "dffa5449-8309-4de4-9e96-fed50039bf3a" ], "x-ms-correlation-request-id": [ - "fdd00b5f-cf52-4275-91a3-56e1730f3948" + "dffa5449-8309-4de4-9e96-fed50039bf3a" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T050616Z:fdd00b5f-cf52-4275-91a3-56e1730f3948" + "WESTUS:20200924T060710Z:dffa5449-8309-4de4-9e96-fed50039bf3a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3426,7 +3249,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:06:16 GMT" + "Thu, 24 Sep 2020 06:07:10 GMT" ], "Expires": [ "-1" @@ -3439,13 +3262,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEzODktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFek9Ea3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk5EY3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3459,7 +3282,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEzODktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3468,13 +3291,13 @@ "11998" ], "x-ms-request-id": [ - "b3d68a2b-3b61-4539-b004-8688190442d4" + "c54d5fdc-0f87-42e6-b5d3-0ce2a9846c63" ], "x-ms-correlation-request-id": [ - "b3d68a2b-3b61-4539-b004-8688190442d4" + "c54d5fdc-0f87-42e6-b5d3-0ce2a9846c63" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T050632Z:b3d68a2b-3b61-4539-b004-8688190442d4" + "WESTUS:20200924T060726Z:c54d5fdc-0f87-42e6-b5d3-0ce2a9846c63" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3483,7 +3306,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:06:31 GMT" + "Thu, 24 Sep 2020 06:07:25 GMT" ], "Expires": [ "-1" @@ -3496,13 +3319,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEzODktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFek9Ea3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk5EY3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3516,7 +3339,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEzODktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3525,13 +3348,13 @@ "11997" ], "x-ms-request-id": [ - "b6827a8f-14a1-44f7-a68b-92e80bf0e417" + "655af18c-8761-4e67-9e0b-94df6b659b0b" ], "x-ms-correlation-request-id": [ - "b6827a8f-14a1-44f7-a68b-92e80bf0e417" + "655af18c-8761-4e67-9e0b-94df6b659b0b" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T050647Z:b6827a8f-14a1-44f7-a68b-92e80bf0e417" + "WESTUS:20200924T060741Z:655af18c-8761-4e67-9e0b-94df6b659b0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3540,7 +3363,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:06:46 GMT" + "Thu, 24 Sep 2020 06:07:40 GMT" ], "Expires": [ "-1" @@ -3553,13 +3376,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEzODktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFek9Ea3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk5EY3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3573,7 +3396,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEzODktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3582,13 +3405,13 @@ "11996" ], "x-ms-request-id": [ - "b0ebd6ff-7405-4a5c-aeca-84b0929ae7cd" + "750a77e7-1bde-4ce1-8be1-39e923691817" ], "x-ms-correlation-request-id": [ - "b0ebd6ff-7405-4a5c-aeca-84b0929ae7cd" + "750a77e7-1bde-4ce1-8be1-39e923691817" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T050702Z:b0ebd6ff-7405-4a5c-aeca-84b0929ae7cd" + "WESTUS:20200924T060756Z:750a77e7-1bde-4ce1-8be1-39e923691817" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3597,7 +3420,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:07:01 GMT" + "Thu, 24 Sep 2020 06:07:56 GMT" ], "Expires": [ "-1" @@ -3610,13 +3433,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEzODktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFek9Ea3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk5EY3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3630,7 +3453,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEzODktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3639,13 +3462,13 @@ "11995" ], "x-ms-request-id": [ - "3af403a7-71db-47fa-ba8e-588d9808b337" + "eac99518-8b9c-408e-afa7-0a4ab62f627b" ], "x-ms-correlation-request-id": [ - "3af403a7-71db-47fa-ba8e-588d9808b337" + "eac99518-8b9c-408e-afa7-0a4ab62f627b" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T050718Z:3af403a7-71db-47fa-ba8e-588d9808b337" + "WESTUS:20200924T060812Z:eac99518-8b9c-408e-afa7-0a4ab62f627b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3654,7 +3477,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:07:17 GMT" + "Thu, 24 Sep 2020 06:08:11 GMT" ], "Expires": [ "-1" @@ -3667,13 +3490,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEzODktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFek9Ea3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk5EY3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3687,7 +3510,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEzODktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3696,13 +3519,13 @@ "11994" ], "x-ms-request-id": [ - "a0a4ebf4-73ac-4f42-ad04-48e5cd344698" + "60edce3c-73a9-48a1-b2ee-70d80a47b4f9" ], "x-ms-correlation-request-id": [ - "a0a4ebf4-73ac-4f42-ad04-48e5cd344698" + "60edce3c-73a9-48a1-b2ee-70d80a47b4f9" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T050733Z:a0a4ebf4-73ac-4f42-ad04-48e5cd344698" + "WESTUS:20200924T060827Z:60edce3c-73a9-48a1-b2ee-70d80a47b4f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3711,7 +3534,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:07:32 GMT" + "Thu, 24 Sep 2020 06:08:26 GMT" ], "Expires": [ "-1" @@ -3724,13 +3547,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEzODktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFek9Ea3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk5EY3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3747,13 +3570,13 @@ "11993" ], "x-ms-request-id": [ - "3c633eff-2a1a-407b-89fe-4fc02a4b2c00" + "049181aa-4e59-40b6-8890-5af861cdad56" ], "x-ms-correlation-request-id": [ - "3c633eff-2a1a-407b-89fe-4fc02a4b2c00" + "049181aa-4e59-40b6-8890-5af861cdad56" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T050748Z:3c633eff-2a1a-407b-89fe-4fc02a4b2c00" + "WESTUS:20200924T060842Z:049181aa-4e59-40b6-8890-5af861cdad56" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3762,7 +3585,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:07:48 GMT" + "Thu, 24 Sep 2020 06:08:41 GMT" ], "Expires": [ "-1" @@ -3775,13 +3598,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEzODktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFek9Ea3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDctV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk5EY3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3798,13 +3621,13 @@ "11992" ], "x-ms-request-id": [ - "0b6cf320-f775-424d-8c55-399692476a7c" + "4228e782-b3a0-44b9-b2c8-93bc07920ffd" ], "x-ms-correlation-request-id": [ - "0b6cf320-f775-424d-8c55-399692476a7c" + "4228e782-b3a0-44b9-b2c8-93bc07920ffd" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T050748Z:0b6cf320-f775-424d-8c55-399692476a7c" + "WESTUS:20200924T060843Z:4228e782-b3a0-44b9-b2c8-93bc07920ffd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3813,7 +3636,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:07:48 GMT" + "Thu, 24 Sep 2020 06:08:42 GMT" ], "Expires": [ "-1" @@ -3826,19 +3649,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps407?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzNDA3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps2491?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzMjQ5MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "09abd998-41cb-4f3c-8df3-2668a40b3033" + "719897b9-6c47-438d-8621-bce40c36b1b7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3852,7 +3675,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwNy1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI0OTEtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3861,13 +3684,13 @@ "14998" ], "x-ms-request-id": [ - "bee8b2f1-a3fa-447a-ab1d-6003d39e1796" + "ea9b864e-0b66-41bf-a0c4-85af71504359" ], "x-ms-correlation-request-id": [ - "bee8b2f1-a3fa-447a-ab1d-6003d39e1796" + "ea9b864e-0b66-41bf-a0c4-85af71504359" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T050751Z:bee8b2f1-a3fa-447a-ab1d-6003d39e1796" + "WESTUS:20200924T060845Z:ea9b864e-0b66-41bf-a0c4-85af71504359" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3876,7 +3699,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:07:51 GMT" + "Thu, 24 Sep 2020 06:08:44 GMT" ], "Expires": [ "-1" @@ -3889,13 +3712,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwNy1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd055MVhSVk5VUlZWU1QxQkZJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWlhWeWIzQmxJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI0OTEtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJME9URXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3909,7 +3732,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwNy1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI0OTEtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3918,13 +3741,13 @@ "11991" ], "x-ms-request-id": [ - "cb32231f-280d-4239-b460-b233ded71156" + "11b0c426-a9fc-4694-9b1a-784f8b05b95e" ], "x-ms-correlation-request-id": [ - "cb32231f-280d-4239-b460-b233ded71156" + "11b0c426-a9fc-4694-9b1a-784f8b05b95e" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T050806Z:cb32231f-280d-4239-b460-b233ded71156" + "WESTUS:20200924T060901Z:11b0c426-a9fc-4694-9b1a-784f8b05b95e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3933,7 +3756,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:08:06 GMT" + "Thu, 24 Sep 2020 06:09:00 GMT" ], "Expires": [ "-1" @@ -3946,13 +3769,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwNy1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd055MVhSVk5VUlZWU1QxQkZJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWlhWeWIzQmxJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI0OTEtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJME9URXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3966,7 +3789,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwNy1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI0OTEtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3975,13 +3798,13 @@ "11990" ], "x-ms-request-id": [ - "0ca4ef6c-6183-486e-bfe4-cffc41f90b57" + "4d2f9e04-2c11-4010-b749-31fee9aaf5f0" ], "x-ms-correlation-request-id": [ - "0ca4ef6c-6183-486e-bfe4-cffc41f90b57" + "4d2f9e04-2c11-4010-b749-31fee9aaf5f0" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T050822Z:0ca4ef6c-6183-486e-bfe4-cffc41f90b57" + "WESTUS:20200924T060916Z:4d2f9e04-2c11-4010-b749-31fee9aaf5f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3990,7 +3813,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:08:21 GMT" + "Thu, 24 Sep 2020 06:09:16 GMT" ], "Expires": [ "-1" @@ -4003,13 +3826,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwNy1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd055MVhSVk5VUlZWU1QxQkZJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWlhWeWIzQmxJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI0OTEtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJME9URXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -4023,7 +3846,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwNy1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI0OTEtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4032,13 +3855,13 @@ "11989" ], "x-ms-request-id": [ - "1f1c8d6d-1c2b-46dc-8c9c-3a309ca0ebe4" + "03801333-2419-4a6a-a1dc-074aed63b6ad" ], "x-ms-correlation-request-id": [ - "1f1c8d6d-1c2b-46dc-8c9c-3a309ca0ebe4" + "03801333-2419-4a6a-a1dc-074aed63b6ad" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T050837Z:1f1c8d6d-1c2b-46dc-8c9c-3a309ca0ebe4" + "WESTUS:20200924T060931Z:03801333-2419-4a6a-a1dc-074aed63b6ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4047,7 +3870,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:08:37 GMT" + "Thu, 24 Sep 2020 06:09:31 GMT" ], "Expires": [ "-1" @@ -4060,13 +3883,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwNy1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd055MVhSVk5VUlZWU1QxQkZJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWlhWeWIzQmxJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI0OTEtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJME9URXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -4080,7 +3903,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwNy1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI0OTEtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4089,13 +3912,13 @@ "11988" ], "x-ms-request-id": [ - "10a539a9-7076-4b3a-9a98-3ba5e791b75c" + "09ae8e8b-3cd5-4f3b-a468-c6e65c4f17d6" ], "x-ms-correlation-request-id": [ - "10a539a9-7076-4b3a-9a98-3ba5e791b75c" + "09ae8e8b-3cd5-4f3b-a468-c6e65c4f17d6" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T050852Z:10a539a9-7076-4b3a-9a98-3ba5e791b75c" + "WESTUS:20200924T060947Z:09ae8e8b-3cd5-4f3b-a468-c6e65c4f17d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4104,7 +3927,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:08:52 GMT" + "Thu, 24 Sep 2020 06:09:47 GMT" ], "Expires": [ "-1" @@ -4117,13 +3940,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwNy1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd055MVhSVk5VUlZWU1QxQkZJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWlhWeWIzQmxJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI0OTEtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJME9URXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -4137,7 +3960,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwNy1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI0OTEtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4146,13 +3969,13 @@ "11987" ], "x-ms-request-id": [ - "57e30fa6-0692-4488-bf13-1e4f260ebc36" + "06d32576-f56a-4c1c-b67c-8279011c2667" ], "x-ms-correlation-request-id": [ - "57e30fa6-0692-4488-bf13-1e4f260ebc36" + "06d32576-f56a-4c1c-b67c-8279011c2667" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T050908Z:57e30fa6-0692-4488-bf13-1e4f260ebc36" + "WESTUS:20200924T061002Z:06d32576-f56a-4c1c-b67c-8279011c2667" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4161,7 +3984,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:09:07 GMT" + "Thu, 24 Sep 2020 06:10:02 GMT" ], "Expires": [ "-1" @@ -4174,13 +3997,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwNy1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd055MVhSVk5VUlZWU1QxQkZJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWlhWeWIzQmxJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI0OTEtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJME9URXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -4194,7 +4017,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwNy1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI0OTEtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4203,13 +4026,13 @@ "11986" ], "x-ms-request-id": [ - "a45fb82a-92ec-4417-914f-7b07d77f89f2" + "70b5fafe-5108-491e-9850-1f0a42e33164" ], "x-ms-correlation-request-id": [ - "a45fb82a-92ec-4417-914f-7b07d77f89f2" + "70b5fafe-5108-491e-9850-1f0a42e33164" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T050923Z:a45fb82a-92ec-4417-914f-7b07d77f89f2" + "WESTUS:20200924T061017Z:70b5fafe-5108-491e-9850-1f0a42e33164" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4218,7 +4041,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:09:22 GMT" + "Thu, 24 Sep 2020 06:10:17 GMT" ], "Expires": [ "-1" @@ -4231,13 +4054,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwNy1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd055MVhSVk5VUlZWU1QxQkZJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWlhWeWIzQmxJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI0OTEtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJME9URXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -4250,23 +4073,17 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwNy1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11985" ], "x-ms-request-id": [ - "3b3a6614-9dc3-4fb1-8530-22934a1ac290" + "8995036b-e66f-4146-8851-86eb050a0ad6" ], "x-ms-correlation-request-id": [ - "3b3a6614-9dc3-4fb1-8530-22934a1ac290" + "8995036b-e66f-4146-8851-86eb050a0ad6" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T050938Z:3b3a6614-9dc3-4fb1-8530-22934a1ac290" + "WESTUS:20200924T061033Z:8995036b-e66f-4146-8851-86eb050a0ad6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4275,172 +4092,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:09:38 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwNy1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd055MVhSVk5VUlZWU1QxQkZJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWlhWeWIzQmxJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwNy1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" - ], - "x-ms-request-id": [ - "788065f7-a623-4681-bdf1-0fe9b0c3637c" - ], - "x-ms-correlation-request-id": [ - "788065f7-a623-4681-bdf1-0fe9b0c3637c" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T050954Z:788065f7-a623-4681-bdf1-0fe9b0c3637c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 14 Sep 2020 05:09:54 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwNy1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd055MVhSVk5VUlZWU1QxQkZJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWlhWeWIzQmxJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwNy1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" - ], - "x-ms-request-id": [ - "71eab3ad-1792-4ca0-9223-c6a39d53ca41" - ], - "x-ms-correlation-request-id": [ - "71eab3ad-1792-4ca0-9223-c6a39d53ca41" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T051009Z:71eab3ad-1792-4ca0-9223-c6a39d53ca41" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 14 Sep 2020 05:10:09 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwNy1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd055MVhSVk5VUlZWU1QxQkZJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWlhWeWIzQmxJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" - ], - "x-ms-request-id": [ - "9248f374-ed62-40cd-8b06-a7d6b2ca44cd" - ], - "x-ms-correlation-request-id": [ - "9248f374-ed62-40cd-8b06-a7d6b2ca44cd" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T051024Z:9248f374-ed62-40cd-8b06-a7d6b2ca44cd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 14 Sep 2020 05:10:24 GMT" + "Thu, 24 Sep 2020 06:10:32 GMT" ], "Expires": [ "-1" @@ -4453,13 +4105,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwNy1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd055MVhSVk5VUlZWU1QxQkZJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWlhWeWIzQmxJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI0OTEtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJME9URXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -4473,16 +4125,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11984" ], "x-ms-request-id": [ - "c570a890-2648-4e33-997f-8c166852ce09" + "1633b757-d4ef-47b4-bc58-8fbcbc264063" ], "x-ms-correlation-request-id": [ - "c570a890-2648-4e33-997f-8c166852ce09" + "1633b757-d4ef-47b4-bc58-8fbcbc264063" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T051025Z:c570a890-2648-4e33-997f-8c166852ce09" + "WESTUS:20200924T061033Z:1633b757-d4ef-47b4-bc58-8fbcbc264063" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4491,7 +4143,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:10:25 GMT" + "Thu, 24 Sep 2020 06:10:33 GMT" ], "Expires": [ "-1" @@ -4506,11 +4158,11 @@ ], "Names": { "Test-CreateSecondaryDatabase": [ - "ps1389", - "ps5469", - "ps6851", - "ps407", - "ps7700" + "ps2647", + "ps9265", + "ps4145", + "ps2491", + "ps2624" ] }, "Variables": { diff --git a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestCreateSecondaryDatabaseWithBackupStorageRedundancy.json b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestCreateSecondaryDatabaseWithBackupStorageRedundancy.json new file mode 100644 index 000000000000..21192dacb588 --- /dev/null +++ b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestCreateSecondaryDatabaseWithBackupStorageRedundancy.json @@ -0,0 +1,3994 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps8437?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzODQzNz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "adfb2940-3132-4f5f-a383-959fdd3fd3a4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "9e7bd655-0579-45fc-8602-8baa8419334f" + ], + "x-ms-correlation-request-id": [ + "9e7bd655-0579-45fc-8602-8baa8419334f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222013Z:9e7bd655-0579-45fc-8602-8baa8419334f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:20:13 GMT" + ], + "Content-Length": [ + "172" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8437\",\r\n \"name\": \"ps8437\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8437/providers/Microsoft.Sql/servers/ps4633?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODQzNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNDYzMz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "89bbeaf0-5db7-47ea-bacc-cd7bc4d35bf5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "cb703e93-9846-4fae-89fd-df0c91ee337c" + ], + "x-ms-correlation-request-id": [ + "cb703e93-9846-4fae-89fd-df0c91ee337c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222013Z:cb703e93-9846-4fae-89fd-df0c91ee337c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:20:12 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "206" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps4633' under resource group 'ps8437' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8437/providers/Microsoft.Sql/servers/ps4633?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODQzNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNDYzMz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "db8165ad-8b60-4191-9da3-fbe39be27658" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "21e25f04-0949-4658-ac98-5be66c3ab492" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222100Z:21e25f04-0949-4658-ac98-5be66c3ab492" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:20:59 GMT" + ], + "Content-Length": [ + "415" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps4633.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8437/providers/Microsoft.Sql/servers/ps4633\",\r\n \"name\": \"ps4633\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8437/providers/Microsoft.Sql/servers/ps4633?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODQzNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNDYzMz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "27d7550a-cbad-49dd-8837-715cbd1e8642" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d2220873-4acb-4fc3-aa84-617aaf24074b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "cf66f7cf-38ee-4448-909b-68fade4bc7b1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222100Z:cf66f7cf-38ee-4448-909b-68fade4bc7b1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:20:59 GMT" + ], + "Content-Length": [ + "415" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps4633.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8437/providers/Microsoft.Sql/servers/ps4633\",\r\n \"name\": \"ps4633\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8437/providers/Microsoft.Sql/servers/ps4633?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODQzNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNDYzMz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4a4569b1-60ac-4e70-8967-c612ba87867a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "67d4d793-e247-4418-89f0-4d8aae5b2c8c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "dd52bad6-9cba-46df-835b-87217e3837f6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222100Z:dd52bad6-9cba-46df-835b-87217e3837f6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:20:59 GMT" + ], + "Content-Length": [ + "415" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps4633.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8437/providers/Microsoft.Sql/servers/ps4633\",\r\n \"name\": \"ps4633\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8437/providers/Microsoft.Sql/servers/ps4633?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODQzNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNDYzMz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c90cc9ee-10d9-40f0-bdd1-0b0d8e4fb84f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f2844d7f-16df-4061-8e1e-29a49091ce77" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-correlation-request-id": [ + "182873ed-3dce-41ce-9837-e148e4df6ed7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222304Z:182873ed-3dce-41ce-9837-e148e4df6ed7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:23:04 GMT" + ], + "Content-Length": [ + "415" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps4633.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8437/providers/Microsoft.Sql/servers/ps4633\",\r\n \"name\": \"ps4633\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8437/providers/Microsoft.Sql/servers/ps4633?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODQzNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNDYzMz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cc4cc66b-2971-4bdb-9c41-a33c89ac3c66" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "157" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8437/providers/Microsoft.Sql/locations/westcentralus/serverOperationResults/381b58aa-7d4d-4e4d-87ff-3f224b6fbf27?api-version=2019-06-01-preview" + ], + "Retry-After": [ + "1" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8437/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/381b58aa-7d4d-4e4d-87ff-3f224b6fbf27?api-version=2019-06-01-preview" + ], + "x-ms-request-id": [ + "381b58aa-7d4d-4e4d-87ff-3f224b6fbf27" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "8972cf4b-d4ad-4e3d-9415-71c6c62bbce1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222014Z:8972cf4b-d4ad-4e3d-9415-71c6c62bbce1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:20:14 GMT" + ], + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-24T22:20:14.587Z\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8437/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/381b58aa-7d4d-4e4d-87ff-3f224b6fbf27?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODQzNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzM4MWI1OGFhLTdkNGQtNGU0ZC04N2ZmLTNmMjI0YjZmYmYyNz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "239197a6-8cf7-44d4-8304-0cf04a716a7e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "68254908-9e16-4196-8f8c-b91cd6da8ba9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222015Z:68254908-9e16-4196-8f8c-b91cd6da8ba9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:20:15 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"381b58aa-7d4d-4e4d-87ff-3f224b6fbf27\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T22:20:14.587Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8437/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/381b58aa-7d4d-4e4d-87ff-3f224b6fbf27?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODQzNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzM4MWI1OGFhLTdkNGQtNGU0ZC04N2ZmLTNmMjI0YjZmYmYyNz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "b89f6cb8-c768-4451-bb8f-69c364e53c4b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "80a020a4-e51e-4866-8e6c-1439070cad9a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222016Z:80a020a4-e51e-4866-8e6c-1439070cad9a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:20:16 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"381b58aa-7d4d-4e4d-87ff-3f224b6fbf27\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T22:20:14.587Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8437/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/381b58aa-7d4d-4e4d-87ff-3f224b6fbf27?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODQzNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzM4MWI1OGFhLTdkNGQtNGU0ZC04N2ZmLTNmMjI0YjZmYmYyNz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "cb3a5cee-8122-4f6a-aeec-d9097c92629a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "98576a56-616e-48cb-91f7-81933458c2c0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222017Z:98576a56-616e-48cb-91f7-81933458c2c0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:20:17 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"381b58aa-7d4d-4e4d-87ff-3f224b6fbf27\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T22:20:14.587Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8437/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/381b58aa-7d4d-4e4d-87ff-3f224b6fbf27?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODQzNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzM4MWI1OGFhLTdkNGQtNGU0ZC04N2ZmLTNmMjI0YjZmYmYyNz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "2d43defe-46fb-4f5a-a81e-605681abc6cd" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "1b7d2e6f-9519-44c8-9882-9d8b8fcc862c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222018Z:1b7d2e6f-9519-44c8-9882-9d8b8fcc862c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:20:18 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"381b58aa-7d4d-4e4d-87ff-3f224b6fbf27\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T22:20:14.587Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8437/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/381b58aa-7d4d-4e4d-87ff-3f224b6fbf27?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODQzNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzM4MWI1OGFhLTdkNGQtNGU0ZC04N2ZmLTNmMjI0YjZmYmYyNz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "435c54b6-8960-4c01-af40-2ff06f4920a0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "8fda6265-602c-4c73-b6a3-65dad1726e64" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222020Z:8fda6265-602c-4c73-b6a3-65dad1726e64" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:20:19 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"381b58aa-7d4d-4e4d-87ff-3f224b6fbf27\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T22:20:14.587Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8437/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/381b58aa-7d4d-4e4d-87ff-3f224b6fbf27?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODQzNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzM4MWI1OGFhLTdkNGQtNGU0ZC04N2ZmLTNmMjI0YjZmYmYyNz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "690270e8-66f0-40ad-bcf0-2bc1a74315d8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "37504064-f745-40e9-a197-1f1891fa2993" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222040Z:37504064-f745-40e9-a197-1f1891fa2993" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:20:39 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"381b58aa-7d4d-4e4d-87ff-3f224b6fbf27\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T22:20:14.587Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8437/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/381b58aa-7d4d-4e4d-87ff-3f224b6fbf27?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODQzNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzM4MWI1OGFhLTdkNGQtNGU0ZC04N2ZmLTNmMjI0YjZmYmYyNz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "263fe58a-bf4a-4102-891d-1c93faf89f4c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "9d436ce1-8616-494d-86a5-a0b71434d699" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222100Z:9d436ce1-8616-494d-86a5-a0b71434d699" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:20:59 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"381b58aa-7d4d-4e4d-87ff-3f224b6fbf27\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-24T22:20:14.587Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8437/providers/Microsoft.Sql/servers/ps4633/databases/ps5980?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODQzNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNDYzMy9kYXRhYmFzZXMvcHM1OTgwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d7e7c5fb-7501-42cc-937f-ce79e1f2b91b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "48155af8-f7f7-4b13-9e4b-63f3bd7d1372" + ], + "x-ms-correlation-request-id": [ + "48155af8-f7f7-4b13-9e4b-63f3bd7d1372" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222100Z:48155af8-f7f7-4b13-9e4b-63f3bd7d1372" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:20:59 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "223" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps4633/databases/ps5980' under resource group 'ps8437' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8437/providers/Microsoft.Sql/servers/ps4633/databases/ps5980?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODQzNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNDYzMy9kYXRhYmFzZXMvcHM1OTgwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "155a5989-1ae9-4496-88bf-1e59281c100e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-correlation-request-id": [ + "7313dfef-65a9-4c21-ba01-043fa1be1aa1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222216Z:7313dfef-65a9-4c21-ba01-043fa1be1aa1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:22:16 GMT" + ], + "Content-Length": [ + "861" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"b7928242-a4c7-4f10-b6e2-6164ce898f3b\",\r\n \"creationDate\": \"2020-09-24T22:22:11.883Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-24T22:52:11.883Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8437/providers/Microsoft.Sql/servers/ps4633/databases/ps5980\",\r\n \"name\": \"ps5980\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8437/providers/Microsoft.Sql/servers/ps4633/databases/ps5980?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODQzNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNDYzMy9kYXRhYmFzZXMvcHM1OTgwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1d8d5769-2c55-488b-843c-a79b112a2318" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e0b700ee-1908-43b6-8b8b-cc175bcabbea" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-correlation-request-id": [ + "617ab33c-9c98-4c14-b2ea-ea23bdf88cb9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222304Z:617ab33c-9c98-4c14-b2ea-ea23bdf88cb9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:23:04 GMT" + ], + "Content-Length": [ + "861" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"b7928242-a4c7-4f10-b6e2-6164ce898f3b\",\r\n \"creationDate\": \"2020-09-24T22:22:11.883Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-24T22:52:11.883Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8437/providers/Microsoft.Sql/servers/ps4633/databases/ps5980\",\r\n \"name\": \"ps5980\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8437/providers/Microsoft.Sql/servers/ps4633/databases/ps5980?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODQzNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNDYzMy9kYXRhYmFzZXMvcHM1OTgwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"properties\": {\r\n \"maxSizeBytes\": 0,\r\n \"readScale\": \"\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "39510623-a04d-4786-91a1-67356b3fee62" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "170" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8437/providers/Microsoft.Sql/locations/westcentralus/databaseOperationResults/86c7ba06-f5dd-401c-9522-f418d5e6e9e0?api-version=2019-06-01-preview" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8437/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/86c7ba06-f5dd-401c-9522-f418d5e6e9e0?api-version=2019-06-01-preview" + ], + "x-ms-request-id": [ + "86c7ba06-f5dd-401c-9522-f418d5e6e9e0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "6c35d1cb-5180-4a92-9282-b0bd4fc100fc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222101Z:6c35d1cb-5180-4a92-9282-b0bd4fc100fc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:21:00 GMT" + ], + "Content-Length": [ + "76" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2020-09-24T22:21:01.213Z\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8437/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/86c7ba06-f5dd-401c-9522-f418d5e6e9e0?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODQzNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vODZjN2JhMDYtZjVkZC00MDFjLTk1MjItZjQxOGQ1ZTZlOWUwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "39e2b395-86a9-4bcf-9eb6-085714cdd8f9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "a5245467-11b7-4cc2-9493-1df2aad4d01a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222116Z:a5245467-11b7-4cc2-9493-1df2aad4d01a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:21:15 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"86c7ba06-f5dd-401c-9522-f418d5e6e9e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T22:21:01.213Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8437/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/86c7ba06-f5dd-401c-9522-f418d5e6e9e0?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODQzNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vODZjN2JhMDYtZjVkZC00MDFjLTk1MjItZjQxOGQ1ZTZlOWUwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "56c462a5-dd31-47a9-9a65-4461a9754e8b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "65875806-560a-4761-bf1f-577927c36057" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222131Z:65875806-560a-4761-bf1f-577927c36057" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:21:30 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"86c7ba06-f5dd-401c-9522-f418d5e6e9e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T22:21:01.213Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8437/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/86c7ba06-f5dd-401c-9522-f418d5e6e9e0?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODQzNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vODZjN2JhMDYtZjVkZC00MDFjLTk1MjItZjQxOGQ1ZTZlOWUwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "3458a0a1-79dc-467f-bd61-4da0419d81c4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "c7c57b2a-0b06-4846-bd65-cc8bd773733a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222146Z:c7c57b2a-0b06-4846-bd65-cc8bd773733a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:21:46 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"86c7ba06-f5dd-401c-9522-f418d5e6e9e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T22:21:01.213Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8437/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/86c7ba06-f5dd-401c-9522-f418d5e6e9e0?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODQzNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vODZjN2JhMDYtZjVkZC00MDFjLTk1MjItZjQxOGQ1ZTZlOWUwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "2612d4c1-a9b8-41e0-ac9f-3b1d1652c598" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "13c47993-4bd4-4378-969c-a5614b28f0ad" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222201Z:13c47993-4bd4-4378-969c-a5614b28f0ad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:22:01 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"86c7ba06-f5dd-401c-9522-f418d5e6e9e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T22:21:01.213Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8437/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/86c7ba06-f5dd-401c-9522-f418d5e6e9e0?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODQzNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vODZjN2JhMDYtZjVkZC00MDFjLTk1MjItZjQxOGQ1ZTZlOWUwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "78636bff-ba85-47c7-a88b-113fc58c774c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-correlation-request-id": [ + "c1c17dd0-1a7f-4b60-97e5-6c100f368863" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222216Z:c1c17dd0-1a7f-4b60-97e5-6c100f368863" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:22:16 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"86c7ba06-f5dd-401c-9522-f418d5e6e9e0\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-24T22:21:01.213Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps3704?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzMzcwND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bb7e32ec-f0ef-4d63-a1dd-7f4d6fce818e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "a5ff4bf9-ee1b-4836-a933-ed58c712f8f4" + ], + "x-ms-correlation-request-id": [ + "a5ff4bf9-ee1b-4836-a933-ed58c712f8f4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222217Z:a5ff4bf9-ee1b-4836-a933-ed58c712f8f4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:22:17 GMT" + ], + "Content-Length": [ + "172" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3704\",\r\n \"name\": \"ps3704\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3704/providers/Microsoft.Sql/servers/ps3650?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMzY1MD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a84df180-7d04-4ec3-be38-58b3f596dbe0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "2c9c0962-c572-4a05-9c87-29dda28a316f" + ], + "x-ms-correlation-request-id": [ + "2c9c0962-c572-4a05-9c87-29dda28a316f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222217Z:2c9c0962-c572-4a05-9c87-29dda28a316f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:22:17 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "206" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps3650' under resource group 'ps3704' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3704/providers/Microsoft.Sql/servers/ps3650?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMzY1MD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "636fe2f4-1d05-498c-86a9-8fe62507c94a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-correlation-request-id": [ + "c524cc47-f77e-443c-80fa-282bd65475bb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222304Z:c524cc47-f77e-443c-80fa-282bd65475bb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:23:04 GMT" + ], + "Content-Length": [ + "415" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps3650.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3704/providers/Microsoft.Sql/servers/ps3650\",\r\n \"name\": \"ps3650\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3704/providers/Microsoft.Sql/servers/ps3650?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMzY1MD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d01c00bb-5f40-44bf-bdea-7cdcda25e969" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "95f7519d-fd1f-4c94-9a4b-35bd662c1a80" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "x-ms-correlation-request-id": [ + "f843dee9-56d7-4b77-94f4-33b8893acaa6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222304Z:f843dee9-56d7-4b77-94f4-33b8893acaa6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:23:04 GMT" + ], + "Content-Length": [ + "415" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps3650.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3704/providers/Microsoft.Sql/servers/ps3650\",\r\n \"name\": \"ps3650\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3704/providers/Microsoft.Sql/servers/ps3650?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMzY1MD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0d1ad75d-065d-49f0-aaa0-c8eb4b606e9e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "157" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3704/providers/Microsoft.Sql/locations/westcentralus/serverOperationResults/24acb310-4442-4bc0-86b0-d703959f1811?api-version=2019-06-01-preview" + ], + "Retry-After": [ + "1" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3704/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/24acb310-4442-4bc0-86b0-d703959f1811?api-version=2019-06-01-preview" + ], + "x-ms-request-id": [ + "24acb310-4442-4bc0-86b0-d703959f1811" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "6b86e485-fea0-4db7-897e-ea253bc064a7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222218Z:6b86e485-fea0-4db7-897e-ea253bc064a7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:22:18 GMT" + ], + "Content-Length": [ + "73" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-24T22:22:18.65Z\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3704/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/24acb310-4442-4bc0-86b0-d703959f1811?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzI0YWNiMzEwLTQ0NDItNGJjMC04NmIwLWQ3MDM5NTlmMTgxMT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "d095a926-b66e-4103-902b-dd585fa8c8e7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-correlation-request-id": [ + "cfd17e8e-bab1-4579-b546-6ec1759f3991" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222219Z:cfd17e8e-bab1-4579-b546-6ec1759f3991" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:22:19 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"24acb310-4442-4bc0-86b0-d703959f1811\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T22:22:18.65Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3704/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/24acb310-4442-4bc0-86b0-d703959f1811?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzI0YWNiMzEwLTQ0NDItNGJjMC04NmIwLWQ3MDM5NTlmMTgxMT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "c5aa0798-9949-46c6-b1d3-76acd337f159" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-correlation-request-id": [ + "4086fe9b-356f-496e-838a-53f339739a6c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222220Z:4086fe9b-356f-496e-838a-53f339739a6c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:22:20 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"24acb310-4442-4bc0-86b0-d703959f1811\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T22:22:18.65Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3704/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/24acb310-4442-4bc0-86b0-d703959f1811?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzI0YWNiMzEwLTQ0NDItNGJjMC04NmIwLWQ3MDM5NTlmMTgxMT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "8210dbfd-399d-4e46-b985-bb163196a156" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-correlation-request-id": [ + "aac1ebf6-1ec4-4853-b02b-b027aaf75cf9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222222Z:aac1ebf6-1ec4-4853-b02b-b027aaf75cf9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:22:21 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"24acb310-4442-4bc0-86b0-d703959f1811\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T22:22:18.65Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3704/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/24acb310-4442-4bc0-86b0-d703959f1811?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzI0YWNiMzEwLTQ0NDItNGJjMC04NmIwLWQ3MDM5NTlmMTgxMT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "482243df-67e0-402b-8a17-71f2aca2d804" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-correlation-request-id": [ + "6be929e8-22bb-4b4b-be6b-af1e8622b0fe" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222223Z:6be929e8-22bb-4b4b-be6b-af1e8622b0fe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:22:22 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"24acb310-4442-4bc0-86b0-d703959f1811\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T22:22:18.65Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3704/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/24acb310-4442-4bc0-86b0-d703959f1811?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzI0YWNiMzEwLTQ0NDItNGJjMC04NmIwLWQ3MDM5NTlmMTgxMT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "5077b09e-af62-45d0-8943-ef843c3d5c21" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-correlation-request-id": [ + "d4642150-39c2-4be2-85c8-89a9ef2ad220" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222224Z:d4642150-39c2-4be2-85c8-89a9ef2ad220" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:22:24 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"24acb310-4442-4bc0-86b0-d703959f1811\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T22:22:18.65Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3704/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/24acb310-4442-4bc0-86b0-d703959f1811?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzI0YWNiMzEwLTQ0NDItNGJjMC04NmIwLWQ3MDM5NTlmMTgxMT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "b9b27ad3-c42d-4bc8-804e-1f52f14099e4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-correlation-request-id": [ + "6a1a450b-d4fb-4866-9200-b559e07166e0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222244Z:6a1a450b-d4fb-4866-9200-b559e07166e0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:22:44 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"24acb310-4442-4bc0-86b0-d703959f1811\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T22:22:18.65Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3704/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/24acb310-4442-4bc0-86b0-d703959f1811?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzI0YWNiMzEwLTQ0NDItNGJjMC04NmIwLWQ3MDM5NTlmMTgxMT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "da4016d2-3532-4bc1-8dcf-a73624e9ff0d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-correlation-request-id": [ + "752eb99b-fede-4e53-8b4e-1f2e009300ef" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222304Z:752eb99b-fede-4e53-8b4e-1f2e009300ef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:23:04 GMT" + ], + "Content-Length": [ + "106" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"24acb310-4442-4bc0-86b0-d703959f1811\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-24T22:22:18.65Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3704/providers/Microsoft.Sql/servers/ps3650/databases/ps5980?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMzY1MC9kYXRhYmFzZXMvcHM1OTgwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "18f1e297-1893-4b40-a5f5-ad00390e77f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "d752514b-6ee4-41ed-9134-3aa673940ddc" + ], + "x-ms-correlation-request-id": [ + "d752514b-6ee4-41ed-9134-3aa673940ddc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222304Z:d752514b-6ee4-41ed-9134-3aa673940ddc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:23:04 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "223" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps3650/databases/ps5980' under resource group 'ps3704' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3704/providers/Microsoft.Sql/servers/ps3650/databases/ps5980?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMzY1MC9kYXRhYmFzZXMvcHM1OTgwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f989219d-ab37-4e5a-8d83-bbed28f6bbae" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11961" + ], + "x-ms-correlation-request-id": [ + "ae3fa090-11f5-48d8-8a8f-3a7f8494a7c4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222451Z:ae3fa090-11f5-48d8-8a8f-3a7f8494a7c4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:24:50 GMT" + ], + "Content-Length": [ + "859" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"36d82c67-1476-4eaa-b435-e8469e3b5782\",\r\n \"creationDate\": \"2020-09-24T22:24:41.43Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-24T22:54:41.43Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"LRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3704/providers/Microsoft.Sql/servers/ps3650/databases/ps5980\",\r\n \"name\": \"ps5980\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3704/providers/Microsoft.Sql/servers/ps3650/databases/ps5980?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMzY1MC9kYXRhYmFzZXMvcHM1OTgwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0e875421-85c4-45d2-8396-ee59d27876e3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7c19514e-1031-427d-a5e3-aa51498ae7ba" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11959" + ], + "x-ms-correlation-request-id": [ + "7b93b379-dc77-4c2f-bd36-9007b6dd05f2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222451Z:7b93b379-dc77-4c2f-bd36-9007b6dd05f2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:24:51 GMT" + ], + "Content-Length": [ + "859" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"36d82c67-1476-4eaa-b435-e8469e3b5782\",\r\n \"creationDate\": \"2020-09-24T22:24:41.43Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-24T22:54:41.43Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"LRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3704/providers/Microsoft.Sql/servers/ps3650/databases/ps5980\",\r\n \"name\": \"ps5980\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3704/providers/Microsoft.Sql/servers/ps3650/databases/ps5980?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMzY1MC9kYXRhYmFzZXMvcHM1OTgwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"P1\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"properties\": {\r\n \"createMode\": \"Secondary\",\r\n \"sourceDatabaseId\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8437/providers/Microsoft.Sql/Servers/ps4633/databases/ps5980\",\r\n \"storageAccountType\": \"LRS\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a0afecdd-e366-4c4f-ad48-86057825cf2b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "365" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3704/providers/Microsoft.Sql/locations/westcentralus/databaseOperationResults/b5487020-1045-4fe6-9d2c-6a2e586ad0f1?api-version=2019-06-01-preview" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3704/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/b5487020-1045-4fe6-9d2c-6a2e586ad0f1?api-version=2019-06-01-preview" + ], + "x-ms-request-id": [ + "ba819363-f5a5-48b9-ade2-25d5177738af" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "5d517c37-8341-46dc-9fd9-74e3b41c61cb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222305Z:5d517c37-8341-46dc-9fd9-74e3b41c61cb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:23:05 GMT" + ], + "Content-Length": [ + "75" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2020-09-24T22:23:05.353Z\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3704/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/b5487020-1045-4fe6-9d2c-6a2e586ad0f1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYjU0ODcwMjAtMTA0NS00ZmU2LTlkMmMtNmEyZTU4NmFkMGYxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "d836e3aa-8ac8-460d-bb8e-290d763a54e5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "x-ms-correlation-request-id": [ + "264eb280-8e58-44ac-a182-62b449aa8cfa" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222320Z:264eb280-8e58-44ac-a182-62b449aa8cfa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:23:20 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"b5487020-1045-4fe6-9d2c-6a2e586ad0f1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T22:23:05.65Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3704/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/b5487020-1045-4fe6-9d2c-6a2e586ad0f1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYjU0ODcwMjAtMTA0NS00ZmU2LTlkMmMtNmEyZTU4NmFkMGYxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "b28a89ee-d321-4415-9816-8e26134e9e75" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-correlation-request-id": [ + "4738c6f0-4910-49c9-a6b1-4c41ca612eca" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222335Z:4738c6f0-4910-49c9-a6b1-4c41ca612eca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:23:35 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"b5487020-1045-4fe6-9d2c-6a2e586ad0f1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T22:23:05.65Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3704/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/b5487020-1045-4fe6-9d2c-6a2e586ad0f1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYjU0ODcwMjAtMTA0NS00ZmU2LTlkMmMtNmEyZTU4NmFkMGYxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "a411f36e-c587-490f-98fb-9e264f20106d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-correlation-request-id": [ + "4a8c4176-e6e0-4222-ba0a-3c0ae418c9c9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222350Z:4a8c4176-e6e0-4222-ba0a-3c0ae418c9c9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:23:50 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"b5487020-1045-4fe6-9d2c-6a2e586ad0f1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T22:23:05.65Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3704/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/b5487020-1045-4fe6-9d2c-6a2e586ad0f1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYjU0ODcwMjAtMTA0NS00ZmU2LTlkMmMtNmEyZTU4NmFkMGYxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "cc393d5b-bca0-4b56-8fcc-0f7923e31ef5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "x-ms-correlation-request-id": [ + "79a354c9-59dc-4131-b9ba-7d37515bcc67" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222405Z:79a354c9-59dc-4131-b9ba-7d37515bcc67" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:24:05 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"b5487020-1045-4fe6-9d2c-6a2e586ad0f1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T22:23:05.65Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3704/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/b5487020-1045-4fe6-9d2c-6a2e586ad0f1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYjU0ODcwMjAtMTA0NS00ZmU2LTlkMmMtNmEyZTU4NmFkMGYxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "2e668840-cefe-4e0a-b027-8c6c3238befa" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], + "x-ms-correlation-request-id": [ + "526a8342-cec0-41e9-b156-ce7d20de95f0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222421Z:526a8342-cec0-41e9-b156-ce7d20de95f0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:24:20 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"b5487020-1045-4fe6-9d2c-6a2e586ad0f1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T22:23:05.65Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3704/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/b5487020-1045-4fe6-9d2c-6a2e586ad0f1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYjU0ODcwMjAtMTA0NS00ZmU2LTlkMmMtNmEyZTU4NmFkMGYxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "73a5b4b8-1b79-4509-acf3-56087e44e0d7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" + ], + "x-ms-correlation-request-id": [ + "5e74ecab-1f5e-4d2b-b626-91890421ddb7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222436Z:5e74ecab-1f5e-4d2b-b626-91890421ddb7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:24:35 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"b5487020-1045-4fe6-9d2c-6a2e586ad0f1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T22:23:05.65Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3704/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/b5487020-1045-4fe6-9d2c-6a2e586ad0f1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYjU0ODcwMjAtMTA0NS00ZmU2LTlkMmMtNmEyZTU4NmFkMGYxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "2f49fe02-4167-4016-bd87-a6360de3bcbd" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], + "x-ms-correlation-request-id": [ + "620461ba-17b5-4a55-bdad-a3febb671327" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222451Z:620461ba-17b5-4a55-bdad-a3febb671327" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:24:50 GMT" + ], + "Content-Length": [ + "106" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"b5487020-1045-4fe6-9d2c-6a2e586ad0f1\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-24T22:23:05.65Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3704/providers/Microsoft.Sql/servers?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzcwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e94f1381-6b37-4b71-93d5-8ea270ce2632" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "208a97e9-8842-4f72-afb6-326fc3ad2153" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11960" + ], + "x-ms-correlation-request-id": [ + "819fb58d-5f9a-431d-a3b1-cf71e21a8447" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222451Z:819fb58d-5f9a-431d-a3b1-cf71e21a8447" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:24:50 GMT" + ], + "Content-Length": [ + "427" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps3650.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3704/providers/Microsoft.Sql/servers/ps3650\",\r\n \"name\": \"ps3650\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8437/providers/Microsoft.Sql/servers/ps4633/databases/ps5980/replicationLinks?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODQzNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNDYzMy9kYXRhYmFzZXMvcHM1OTgwL3JlcGxpY2F0aW9uTGlua3M/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "x-ms-request-id": [ + "4522673e-443e-4b52-93f3-37757e6fc270" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "5960eb66-e6a2-457a-b490-7d68c141a9e8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222451Z:5960eb66-e6a2-457a-b490-7d68c141a9e8" + ], + "Date": [ + "Thu, 24 Sep 2020 22:24:51 GMT" + ], + "Content-Length": [ + "627" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8437/providers/Microsoft.Sql/servers/ps4633/databases/ps5980/replicationLinks/0f499425-d098-4b1f-afb6-c1f1c916d0be\",\r\n \"name\": \"0f499425-d098-4b1f-afb6-c1f1c916d0be\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"West Central US\",\r\n \"properties\": {\r\n \"partnerServer\": \"ps3650\",\r\n \"partnerDatabase\": \"ps5980\",\r\n \"partnerLocation\": \"West Central US\",\r\n \"role\": \"Primary\",\r\n \"partnerRole\": \"Secondary\",\r\n \"replicationMode\": \"ASYNC\",\r\n \"startTime\": \"2020-09-24T22:24:06.993\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps8437?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzODQzNz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fad1f8fc-cd24-47ce-8fe5-37238b16457e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "df6a5a62-9553-4ea8-8142-151605f0344d" + ], + "x-ms-correlation-request-id": [ + "df6a5a62-9553-4ea8-8142-151605f0344d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222452Z:df6a5a62-9553-4ea8-8142-151605f0344d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:24:52 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnME16Y3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "c350da90-7199-4abd-8d40-63091217ff7e" + ], + "x-ms-correlation-request-id": [ + "c350da90-7199-4abd-8d40-63091217ff7e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222507Z:c350da90-7199-4abd-8d40-63091217ff7e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:25:07 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnME16Y3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "9d2fe222-d50a-48f4-beb5-08841df3a34c" + ], + "x-ms-correlation-request-id": [ + "9d2fe222-d50a-48f4-beb5-08841df3a34c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222522Z:9d2fe222-d50a-48f4-beb5-08841df3a34c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:25:22 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnME16Y3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "f1578fc8-1df4-4932-b173-807a9a35321a" + ], + "x-ms-correlation-request-id": [ + "f1578fc8-1df4-4932-b173-807a9a35321a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222537Z:f1578fc8-1df4-4932-b173-807a9a35321a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:25:37 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnME16Y3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "d73c233a-53cc-4a58-a206-fff3fdacf41e" + ], + "x-ms-correlation-request-id": [ + "d73c233a-53cc-4a58-a206-fff3fdacf41e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222553Z:d73c233a-53cc-4a58-a206-fff3fdacf41e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:25:52 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnME16Y3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "87b98218-db2a-4434-a7f8-e4539684744d" + ], + "x-ms-correlation-request-id": [ + "87b98218-db2a-4434-a7f8-e4539684744d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222608Z:87b98218-db2a-4434-a7f8-e4539684744d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:26:07 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnME16Y3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "ee1121c4-1ac2-44ed-99f8-89474d990b58" + ], + "x-ms-correlation-request-id": [ + "ee1121c4-1ac2-44ed-99f8-89474d990b58" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222623Z:ee1121c4-1ac2-44ed-99f8-89474d990b58" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:26:22 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnME16Y3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "0780f221-c5e1-4c8c-821f-45aff49b8b90" + ], + "x-ms-correlation-request-id": [ + "0780f221-c5e1-4c8c-821f-45aff49b8b90" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222638Z:0780f221-c5e1-4c8c-821f-45aff49b8b90" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:26:37 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnME16Y3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "279ca428-3909-4115-8a7f-c5fbfc39408d" + ], + "x-ms-correlation-request-id": [ + "279ca428-3909-4115-8a7f-c5fbfc39408d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222638Z:279ca428-3909-4115-8a7f-c5fbfc39408d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:26:37 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps3704?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzMzcwND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "916b67cc-8344-49a3-a3b4-9efe640ddb66" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM3MDQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-request-id": [ + "8d013a81-e00e-4304-acaf-7dfd616356da" + ], + "x-ms-correlation-request-id": [ + "8d013a81-e00e-4304-acaf-7dfd616356da" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222639Z:8d013a81-e00e-4304-acaf-7dfd616356da" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:26:38 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM3MDQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNM01EUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM3MDQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "361230f7-72a8-4e89-ac9f-eef3751acc3b" + ], + "x-ms-correlation-request-id": [ + "361230f7-72a8-4e89-ac9f-eef3751acc3b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222654Z:361230f7-72a8-4e89-ac9f-eef3751acc3b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:26:53 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM3MDQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNM01EUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM3MDQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "af45008a-b0ec-4a8e-9a65-664d759e881b" + ], + "x-ms-correlation-request-id": [ + "af45008a-b0ec-4a8e-9a65-664d759e881b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222709Z:af45008a-b0ec-4a8e-9a65-664d759e881b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:27:08 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM3MDQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNM01EUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM3MDQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "abc5f966-62d9-410d-b70b-221b8d9b82cf" + ], + "x-ms-correlation-request-id": [ + "abc5f966-62d9-410d-b70b-221b8d9b82cf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222724Z:abc5f966-62d9-410d-b70b-221b8d9b82cf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:27:24 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM3MDQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNM01EUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM3MDQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-request-id": [ + "ffd4443e-157e-4df9-b229-7d777b64b79f" + ], + "x-ms-correlation-request-id": [ + "ffd4443e-157e-4df9-b229-7d777b64b79f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222739Z:ffd4443e-157e-4df9-b229-7d777b64b79f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:27:39 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM3MDQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNM01EUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM3MDQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-request-id": [ + "e03675ae-59a7-4962-8a04-0dd93f4f21f2" + ], + "x-ms-correlation-request-id": [ + "e03675ae-59a7-4962-8a04-0dd93f4f21f2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222754Z:e03675ae-59a7-4962-8a04-0dd93f4f21f2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:27:54 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM3MDQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNM01EUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM3MDQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-request-id": [ + "b523a88f-8c69-4e4b-bacd-3fc726a4f6f5" + ], + "x-ms-correlation-request-id": [ + "b523a88f-8c69-4e4b-bacd-3fc726a4f6f5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222809Z:b523a88f-8c69-4e4b-bacd-3fc726a4f6f5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:28:09 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM3MDQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNM01EUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-request-id": [ + "9bab1933-60a6-4829-8457-8e902a576ecf" + ], + "x-ms-correlation-request-id": [ + "9bab1933-60a6-4829-8457-8e902a576ecf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222824Z:9bab1933-60a6-4829-8457-8e902a576ecf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:28:24 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM3MDQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNM01EUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-request-id": [ + "b4396963-c868-4d89-bc2f-5f90f21d6f22" + ], + "x-ms-correlation-request-id": [ + "b4396963-c868-4d89-bc2f-5f90f21d6f22" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T222824Z:b4396963-c868-4d89-bc2f-5f90f21d6f22" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 22:28:24 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-CreateSecondaryDatabaseWithBackupStorageRedundancy": [ + "ps8437", + "ps4633", + "ps5980", + "ps3704", + "ps3650" + ] + }, + "Variables": { + "SubscriptionId": "412b782d-2511-4c6d-98f2-3ea01b1c83c3" + } +} \ No newline at end of file diff --git a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestFailoverSecondaryDatabase.json b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestFailoverSecondaryDatabase.json index b7f131659178..64c0063904f1 100644 --- a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestFailoverSecondaryDatabase.json +++ b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestFailoverSecondaryDatabase.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5eba34fb-a7df-41cc-9b64-2b1e81c839da" + "e46f9963-d46e-471e-905d-30842a14332b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -30,13 +30,13 @@ "11999" ], "x-ms-request-id": [ - "d1a79c4c-a66f-4185-aab5-0f5f1db39b13" + "1c72bbe3-e819-4c41-9b10-ee51da7d9d16" ], "x-ms-correlation-request-id": [ - "d1a79c4c-a66f-4185-aab5-0f5f1db39b13" + "1c72bbe3-e819-4c41-9b10-ee51da7d9d16" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043110Z:d1a79c4c-a66f-4185-aab5-0f5f1db39b13" + "WESTUS:20200924T052623Z:1c72bbe3-e819-4c41-9b10-ee51da7d9d16" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:31:09 GMT" + "Thu, 24 Sep 2020 05:26:23 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -61,19 +61,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps4399?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzNDM5OT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps3520?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzMzUyMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West Europe\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0c9fd59e-b17c-48a4-982c-6e7b9037ac15" + "1ea54b25-5ada-47e1-a9d9-c1fbcfeeea09" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -96,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "e2cfb797-5784-46ab-88aa-f40e8d1f8289" + "9fdbda08-0ea9-4748-8ca1-5bb4135cd1be" ], "x-ms-correlation-request-id": [ - "e2cfb797-5784-46ab-88aa-f40e8d1f8289" + "9fdbda08-0ea9-4748-8ca1-5bb4135cd1be" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043112Z:e2cfb797-5784-46ab-88aa-f40e8d1f8289" + "WESTUS:20200924T052625Z:9fdbda08-0ea9-4748-8ca1-5bb4135cd1be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:31:12 GMT" + "Thu, 24 Sep 2020 05:26:25 GMT" ], "Content-Length": [ "169" @@ -123,23 +123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4399\",\r\n \"name\": \"ps4399\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3520\",\r\n \"name\": \"ps3520\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4399/providers/Microsoft.Sql/servers/ps2767?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDM5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjc2Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3520/providers/Microsoft.Sql/servers/ps8753?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzUyMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODc1Mz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fe72f8aa-0072-4ff1-a876-025e24595d38" + "80ca3f59-b5ea-47ae-8d10-d40cfd2058cb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -156,13 +156,13 @@ "gateway" ], "x-ms-request-id": [ - "91783941-0006-4885-be9c-77fe3a76c18a" + "5fac39de-1e34-4c7d-b9eb-a36e3e44ac21" ], "x-ms-correlation-request-id": [ - "91783941-0006-4885-be9c-77fe3a76c18a" + "5fac39de-1e34-4c7d-b9eb-a36e3e44ac21" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043112Z:91783941-0006-4885-be9c-77fe3a76c18a" + "WESTUS:20200924T052626Z:5fac39de-1e34-4c7d-b9eb-a36e3e44ac21" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -171,7 +171,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:31:11 GMT" + "Thu, 24 Sep 2020 05:26:25 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -183,17 +183,17 @@ "206" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps2767' under resource group 'ps4399' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps8753' under resource group 'ps3520' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4399/providers/Microsoft.Sql/servers/ps2767?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDM5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjc2Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3520/providers/Microsoft.Sql/servers/ps8753?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzUyMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODc1Mz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -207,19 +207,19 @@ "no-cache" ], "x-ms-request-id": [ - "84616ba0-7645-4269-9a8d-ed4e9b103fcd" + "2c98cfb6-af7c-484d-9229-626f2386a6b8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11982" ], "x-ms-correlation-request-id": [ - "9b454b00-b68a-4149-9302-b55ab12c0e03" + "6eb23a99-36fb-4ff0-a6d5-5310ba0503a6" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043224Z:9b454b00-b68a-4149-9302-b55ab12c0e03" + "WESTUS:20200924T052737Z:6eb23a99-36fb-4ff0-a6d5-5310ba0503a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -228,7 +228,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:32:23 GMT" + "Thu, 24 Sep 2020 05:27:37 GMT" ], "Content-Length": [ "412" @@ -240,23 +240,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps2767.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4399/providers/Microsoft.Sql/servers/ps2767\",\r\n \"name\": \"ps2767\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps8753.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3520/providers/Microsoft.Sql/servers/ps8753\",\r\n \"name\": \"ps8753\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4399/providers/Microsoft.Sql/servers/ps2767?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDM5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjc2Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3520/providers/Microsoft.Sql/servers/ps8753?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzUyMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODc1Mz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4f09f95d-b271-4a81-b016-632415da529c" + "4f209620-d54c-47b8-bc93-1f4177396685" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -270,19 +270,19 @@ "no-cache" ], "x-ms-request-id": [ - "49862f47-ed55-4755-a6dc-6cd2ce7b1bd2" + "554b3932-ddc0-4993-ad6c-3f080bd6a936" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11981" ], "x-ms-correlation-request-id": [ - "1fb17c32-696d-47ce-8593-76ef6c24b456" + "ed58713a-b0c4-4800-9f5a-3278047111bf" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043224Z:1fb17c32-696d-47ce-8593-76ef6c24b456" + "WESTUS:20200924T052737Z:ed58713a-b0c4-4800-9f5a-3278047111bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -291,7 +291,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:32:24 GMT" + "Thu, 24 Sep 2020 05:27:37 GMT" ], "Content-Length": [ "412" @@ -303,23 +303,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps2767.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4399/providers/Microsoft.Sql/servers/ps2767\",\r\n \"name\": \"ps2767\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps8753.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3520/providers/Microsoft.Sql/servers/ps8753\",\r\n \"name\": \"ps8753\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4399/providers/Microsoft.Sql/servers/ps2767?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDM5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjc2Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3520/providers/Microsoft.Sql/servers/ps8753?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzUyMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODc1Mz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8ee819b7-6e67-4e2e-af9e-f2ce86bef3c6" + "25c0c19b-a0f0-4016-851c-9f99faa21f85" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -333,19 +333,82 @@ "no-cache" ], "x-ms-request-id": [ - "fdf0161b-129c-4411-a83d-d801cd96efd7" + "a63603af-d976-4424-ad9f-923ebd60d485" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11979" + ], + "x-ms-correlation-request-id": [ + "55d67e9a-aa53-4315-abdb-3e0ec2bc83fb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T052738Z:55d67e9a-aa53-4315-abdb-3e0ec2bc83fb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 05:27:38 GMT" + ], + "Content-Length": [ + "412" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps8753.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3520/providers/Microsoft.Sql/servers/ps8753\",\r\n \"name\": \"ps8753\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3520/providers/Microsoft.Sql/servers/ps8753?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzUyMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODc1Mz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4265ce97-4108-45a5-be64-c57aef3e16c4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5d32a2b9-c0fe-47fe-8e33-bd740e409403" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" ], "x-ms-correlation-request-id": [ - "1e5eb287-fec9-4f20-a87c-bcf554332439" + "d468d7b2-c6d2-4718-a71f-9474015a4e39" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043224Z:1e5eb287-fec9-4f20-a87c-bcf554332439" + "WESTUS:20200924T052951Z:d468d7b2-c6d2-4718-a71f-9474015a4e39" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -354,7 +417,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:32:24 GMT" + "Thu, 24 Sep 2020 05:29:51 GMT" ], "Content-Length": [ "412" @@ -366,23 +429,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps2767.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4399/providers/Microsoft.Sql/servers/ps2767\",\r\n \"name\": \"ps2767\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps8753.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3520/providers/Microsoft.Sql/servers/ps8753\",\r\n \"name\": \"ps8753\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4399/providers/Microsoft.Sql/servers/ps2767?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDM5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjc2Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3520/providers/Microsoft.Sql/servers/ps8753?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzUyMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODc1Mz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"West Europe\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d4dcd5ab-fc72-4a1c-be5d-889fe2c641c5" + "1c500b22-fded-4263-9641-fdf3e28e532d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -402,16 +465,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4399/providers/Microsoft.Sql/locations/westeurope/serverOperationResults/7a323622-6778-445a-bca5-6c63ef3d7c18?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3520/providers/Microsoft.Sql/locations/westeurope/serverOperationResults/d319e10e-36d7-4332-b9ec-d61ecee7ac2f?api-version=2019-06-01-preview" ], "Retry-After": [ "1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4399/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/7a323622-6778-445a-bca5-6c63ef3d7c18?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3520/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/d319e10e-36d7-4332-b9ec-d61ecee7ac2f?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "7a323622-6778-445a-bca5-6c63ef3d7c18" + "d319e10e-36d7-4332-b9ec-d61ecee7ac2f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -420,10 +483,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "88e3d924-1e82-40fc-a794-922c9edfc77b" + "9532827f-f733-4dd8-9a59-52c86ec3d769" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043117Z:88e3d924-1e82-40fc-a794-922c9edfc77b" + "WESTUS:20200924T052630Z:9532827f-f733-4dd8-9a59-52c86ec3d769" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,10 +495,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:31:16 GMT" + "Thu, 24 Sep 2020 05:26:29 GMT" ], "Content-Length": [ - "74" + "73" ], "Content-Type": [ "application/json; charset=utf-8" @@ -444,17 +507,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-14T04:31:16.927Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-24T05:26:30.28Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4399/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/7a323622-6778-445a-bca5-6c63ef3d7c18?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDM5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzdhMzIzNjIyLTY3NzgtNDQ1YS1iY2E1LTZjNjNlZjNkN2MxOD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3520/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/d319e10e-36d7-4332-b9ec-d61ecee7ac2f?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzUyMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2QzMTllMTBlLTM2ZDctNDMzMi1iOWVjLWQ2MWVjZWU3YWMyZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -471,19 +534,19 @@ "1" ], "x-ms-request-id": [ - "de5fe598-3282-4506-9c29-c749af31ed67" + "77bbff9c-e59e-4653-baa9-2f1f2e8b61fe" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11990" ], "x-ms-correlation-request-id": [ - "bf31f9e1-6f90-4c5c-b7d8-937d9079fe2a" + "1a63d504-bc6c-4233-aff2-4fc85b474703" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043118Z:bf31f9e1-6f90-4c5c-b7d8-937d9079fe2a" + "WESTUS:20200924T052631Z:1a63d504-bc6c-4233-aff2-4fc85b474703" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -492,10 +555,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:31:17 GMT" + "Thu, 24 Sep 2020 05:26:30 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -504,17 +567,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"7a323622-6778-445a-bca5-6c63ef3d7c18\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:31:16.927Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"d319e10e-36d7-4332-b9ec-d61ecee7ac2f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:26:30.28Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4399/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/7a323622-6778-445a-bca5-6c63ef3d7c18?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDM5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzdhMzIzNjIyLTY3NzgtNDQ1YS1iY2E1LTZjNjNlZjNkN2MxOD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3520/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/d319e10e-36d7-4332-b9ec-d61ecee7ac2f?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzUyMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2QzMTllMTBlLTM2ZDctNDMzMi1iOWVjLWQ2MWVjZWU3YWMyZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -531,19 +594,19 @@ "1" ], "x-ms-request-id": [ - "905c1cf9-9348-47cd-b5de-0d5ec646fc33" + "55004edd-c559-42a6-b56e-0f563e1fe6ec" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11989" ], "x-ms-correlation-request-id": [ - "bcf24f27-92ed-4771-87eb-d8943141a7c7" + "88e07faf-619d-4668-830c-45ac9b894a81" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043119Z:bcf24f27-92ed-4771-87eb-d8943141a7c7" + "WESTUS:20200924T052632Z:88e07faf-619d-4668-830c-45ac9b894a81" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -552,10 +615,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:31:19 GMT" + "Thu, 24 Sep 2020 05:26:32 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -564,17 +627,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"7a323622-6778-445a-bca5-6c63ef3d7c18\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:31:16.927Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"d319e10e-36d7-4332-b9ec-d61ecee7ac2f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:26:30.28Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4399/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/7a323622-6778-445a-bca5-6c63ef3d7c18?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDM5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzdhMzIzNjIyLTY3NzgtNDQ1YS1iY2E1LTZjNjNlZjNkN2MxOD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3520/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/d319e10e-36d7-4332-b9ec-d61ecee7ac2f?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzUyMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2QzMTllMTBlLTM2ZDctNDMzMi1iOWVjLWQ2MWVjZWU3YWMyZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -591,19 +654,19 @@ "1" ], "x-ms-request-id": [ - "ecac2a57-7391-43ed-9801-3f3668afc99f" + "a4973645-73da-4897-92a8-9612033774a3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11988" ], "x-ms-correlation-request-id": [ - "fc8a535a-e9f8-4d5e-b4ed-253d34faafba" + "c3e59c17-241a-4040-a0c7-bfef2061aae0" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043120Z:fc8a535a-e9f8-4d5e-b4ed-253d34faafba" + "WESTUS:20200924T052634Z:c3e59c17-241a-4040-a0c7-bfef2061aae0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -612,10 +675,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:31:20 GMT" + "Thu, 24 Sep 2020 05:26:33 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -624,17 +687,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"7a323622-6778-445a-bca5-6c63ef3d7c18\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:31:16.927Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"d319e10e-36d7-4332-b9ec-d61ecee7ac2f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:26:30.28Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4399/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/7a323622-6778-445a-bca5-6c63ef3d7c18?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDM5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzdhMzIzNjIyLTY3NzgtNDQ1YS1iY2E1LTZjNjNlZjNkN2MxOD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3520/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/d319e10e-36d7-4332-b9ec-d61ecee7ac2f?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzUyMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2QzMTllMTBlLTM2ZDctNDMzMi1iOWVjLWQ2MWVjZWU3YWMyZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -651,19 +714,19 @@ "1" ], "x-ms-request-id": [ - "f4e60941-1ff3-484c-9d93-9964b80a074b" + "d8a6047e-0d27-4428-a218-f31ff5b6382d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11987" ], "x-ms-correlation-request-id": [ - "d8138f81-2881-48e7-93f2-404660b9a410" + "06106be6-47fd-48dd-9c37-733b44de6007" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043121Z:d8138f81-2881-48e7-93f2-404660b9a410" + "WESTUS:20200924T052635Z:06106be6-47fd-48dd-9c37-733b44de6007" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -672,10 +735,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:31:21 GMT" + "Thu, 24 Sep 2020 05:26:34 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -684,17 +747,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"7a323622-6778-445a-bca5-6c63ef3d7c18\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:31:16.927Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"d319e10e-36d7-4332-b9ec-d61ecee7ac2f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:26:30.28Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4399/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/7a323622-6778-445a-bca5-6c63ef3d7c18?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDM5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzdhMzIzNjIyLTY3NzgtNDQ1YS1iY2E1LTZjNjNlZjNkN2MxOD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3520/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/d319e10e-36d7-4332-b9ec-d61ecee7ac2f?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzUyMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2QzMTllMTBlLTM2ZDctNDMzMi1iOWVjLWQ2MWVjZWU3YWMyZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -711,19 +774,19 @@ "20" ], "x-ms-request-id": [ - "7d0b5176-dd17-4823-b951-02b550c099aa" + "d44e4db2-e1fa-4f7e-a9d8-c96c155963d3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11986" ], "x-ms-correlation-request-id": [ - "5647250e-bacf-4402-ad99-1a005ceefebc" + "591f7589-6a38-4a6e-a980-43a6a1898802" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043123Z:5647250e-bacf-4402-ad99-1a005ceefebc" + "WESTUS:20200924T052636Z:591f7589-6a38-4a6e-a980-43a6a1898802" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -732,10 +795,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:31:23 GMT" + "Thu, 24 Sep 2020 05:26:35 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -744,17 +807,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"7a323622-6778-445a-bca5-6c63ef3d7c18\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:31:16.927Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"d319e10e-36d7-4332-b9ec-d61ecee7ac2f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:26:30.28Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4399/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/7a323622-6778-445a-bca5-6c63ef3d7c18?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDM5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzdhMzIzNjIyLTY3NzgtNDQ1YS1iY2E1LTZjNjNlZjNkN2MxOD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3520/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/d319e10e-36d7-4332-b9ec-d61ecee7ac2f?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzUyMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2QzMTllMTBlLTM2ZDctNDMzMi1iOWVjLWQ2MWVjZWU3YWMyZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -771,19 +834,19 @@ "20" ], "x-ms-request-id": [ - "09a8d862-f1c2-4eb1-86c7-c9107f2f4481" + "97fee761-1bc6-4d56-9a0b-d3a3848bd65b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11985" ], "x-ms-correlation-request-id": [ - "d64f90c5-7952-401c-83aa-d2612c3824c1" + "08569b5f-44c4-4994-b591-2247c1402012" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043143Z:d64f90c5-7952-401c-83aa-d2612c3824c1" + "WESTUS:20200924T052656Z:08569b5f-44c4-4994-b591-2247c1402012" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -792,10 +855,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:31:43 GMT" + "Thu, 24 Sep 2020 05:26:55 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -804,17 +867,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"7a323622-6778-445a-bca5-6c63ef3d7c18\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:31:16.927Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"d319e10e-36d7-4332-b9ec-d61ecee7ac2f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:26:30.28Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4399/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/7a323622-6778-445a-bca5-6c63ef3d7c18?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDM5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzdhMzIzNjIyLTY3NzgtNDQ1YS1iY2E1LTZjNjNlZjNkN2MxOD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3520/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/d319e10e-36d7-4332-b9ec-d61ecee7ac2f?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzUyMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2QzMTllMTBlLTM2ZDctNDMzMi1iOWVjLWQ2MWVjZWU3YWMyZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -831,19 +894,19 @@ "20" ], "x-ms-request-id": [ - "782e29ed-9de4-4f49-ba7d-f3620d4b3a38" + "13336858-fc90-4fc8-b176-791c2ef4470d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11984" ], "x-ms-correlation-request-id": [ - "be8cda21-a686-4fb2-a951-64faf6a45da9" + "bd1f03ee-a3a5-4b68-ba72-94855ab4fa5c" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043203Z:be8cda21-a686-4fb2-a951-64faf6a45da9" + "WESTUS:20200924T052716Z:bd1f03ee-a3a5-4b68-ba72-94855ab4fa5c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -852,10 +915,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:32:03 GMT" + "Thu, 24 Sep 2020 05:27:15 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -864,17 +927,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"7a323622-6778-445a-bca5-6c63ef3d7c18\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:31:16.927Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"d319e10e-36d7-4332-b9ec-d61ecee7ac2f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:26:30.28Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4399/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/7a323622-6778-445a-bca5-6c63ef3d7c18?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDM5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzdhMzIzNjIyLTY3NzgtNDQ1YS1iY2E1LTZjNjNlZjNkN2MxOD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3520/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/d319e10e-36d7-4332-b9ec-d61ecee7ac2f?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzUyMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2QzMTllMTBlLTM2ZDctNDMzMi1iOWVjLWQ2MWVjZWU3YWMyZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -891,19 +954,19 @@ "15" ], "x-ms-request-id": [ - "47a1f72d-a44b-4d01-9145-b8344bf3c433" + "bd068035-ca35-43e0-a020-ecb81e1560e2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11983" ], "x-ms-correlation-request-id": [ - "ee9b93ef-6553-4b44-9808-61e1869a8e53" + "6fe709c7-1e08-4aa0-be06-e4d62bb9b471" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043224Z:ee9b93ef-6553-4b44-9808-61e1869a8e53" + "WESTUS:20200924T052737Z:6fe709c7-1e08-4aa0-be06-e4d62bb9b471" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -912,10 +975,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:32:23 GMT" + "Thu, 24 Sep 2020 05:27:36 GMT" ], "Content-Length": [ - "107" + "106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -924,23 +987,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"7a323622-6778-445a-bca5-6c63ef3d7c18\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-14T04:31:16.927Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"d319e10e-36d7-4332-b9ec-d61ecee7ac2f\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-24T05:26:30.28Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4399/providers/Microsoft.Sql/servers/ps2767/databases/ps8331?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDM5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjc2Ny9kYXRhYmFzZXMvcHM4MzMxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3520/providers/Microsoft.Sql/servers/ps8753/databases/ps9145?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzUyMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODc1My9kYXRhYmFzZXMvcHM5MTQ1P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a4f9d428-3208-4641-8fff-d2dc00c61204" + "5accc41e-f7c6-4909-ae65-47202d6968f6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -957,13 +1020,13 @@ "gateway" ], "x-ms-request-id": [ - "21b692dd-76d9-477e-974c-f01329eaf94a" + "623a1a7f-bbf4-4aa2-8f7b-31b2865abe8c" ], "x-ms-correlation-request-id": [ - "21b692dd-76d9-477e-974c-f01329eaf94a" + "623a1a7f-bbf4-4aa2-8f7b-31b2865abe8c" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043224Z:21b692dd-76d9-477e-974c-f01329eaf94a" + "WESTUS:20200924T052737Z:623a1a7f-bbf4-4aa2-8f7b-31b2865abe8c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -972,7 +1035,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:32:24 GMT" + "Thu, 24 Sep 2020 05:27:37 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -984,17 +1047,17 @@ "223" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps2767/databases/ps8331' under resource group 'ps4399' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps8753/databases/ps9145' under resource group 'ps3520' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4399/providers/Microsoft.Sql/servers/ps2767/databases/ps8331?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDM5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjc2Ny9kYXRhYmFzZXMvcHM4MzMxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3520/providers/Microsoft.Sql/servers/ps8753/databases/ps9145?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzUyMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODc1My9kYXRhYmFzZXMvcHM5MTQ1P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1008,19 +1071,19 @@ "no-cache" ], "x-ms-request-id": [ - "977f0c04-2b58-41e5-958d-36a03436d1a4" + "cb57f1fc-8a0e-4b9a-aef4-30d755968753" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11973" ], "x-ms-correlation-request-id": [ - "50030365-947d-4920-be88-02ad1ffc228b" + "ddd65487-7ed8-4273-80ef-51f0f1174594" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043344Z:50030365-947d-4920-be88-02ad1ffc228b" + "WESTUS:20200924T052858Z:ddd65487-7ed8-4273-80ef-51f0f1174594" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1029,10 +1092,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:33:44 GMT" + "Thu, 24 Sep 2020 05:28:57 GMT" ], "Content-Length": [ - "860" + "862" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1041,23 +1104,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"34523fe0-6ae3-45b3-aae3-b6b8b1cabdd5\",\r\n \"creationDate\": \"2020-09-14T04:33:42.74Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-14T05:03:42.74Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4399/providers/Microsoft.Sql/servers/ps2767/databases/ps8331\",\r\n \"name\": \"ps8331\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"c1bb9704-514f-4951-8f39-df5c945f56ba\",\r\n \"creationDate\": \"2020-09-24T05:28:54.407Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-24T05:58:54.407Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3520/providers/Microsoft.Sql/servers/ps8753/databases/ps9145\",\r\n \"name\": \"ps9145\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4399/providers/Microsoft.Sql/servers/ps2767/databases/ps8331?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDM5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjc2Ny9kYXRhYmFzZXMvcHM4MzMxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3520/providers/Microsoft.Sql/servers/ps8753/databases/ps9145?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzUyMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODc1My9kYXRhYmFzZXMvcHM5MTQ1P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "47dad8b4-9f14-4714-a232-f8ce4c37132e" + "bc4627db-956b-4169-bcca-f7568ec7b46f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1071,19 +1134,19 @@ "no-cache" ], "x-ms-request-id": [ - "381e80be-dcdd-4114-8ebe-c0e4907dfbdb" + "41823e32-3e59-488a-884b-aed97f27ed5f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11960" ], "x-ms-correlation-request-id": [ - "41da4fcb-b473-4b05-8d6b-f17c45f76a3f" + "b7147676-afaf-4c4c-8f23-baacfe4db4db" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043458Z:41da4fcb-b473-4b05-8d6b-f17c45f76a3f" + "WESTUS:20200924T052952Z:b7147676-afaf-4c4c-8f23-baacfe4db4db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1092,10 +1155,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:34:57 GMT" + "Thu, 24 Sep 2020 05:29:52 GMT" ], "Content-Length": [ - "860" + "862" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1104,23 +1167,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"34523fe0-6ae3-45b3-aae3-b6b8b1cabdd5\",\r\n \"creationDate\": \"2020-09-14T04:33:42.74Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-14T05:03:42.74Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4399/providers/Microsoft.Sql/servers/ps2767/databases/ps8331\",\r\n \"name\": \"ps8331\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"c1bb9704-514f-4951-8f39-df5c945f56ba\",\r\n \"creationDate\": \"2020-09-24T05:28:54.407Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-24T05:58:54.407Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3520/providers/Microsoft.Sql/servers/ps8753/databases/ps9145\",\r\n \"name\": \"ps9145\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4399/providers/Microsoft.Sql/servers/ps2767/databases/ps8331?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDM5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjc2Ny9kYXRhYmFzZXMvcHM4MzMxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3520/providers/Microsoft.Sql/servers/ps8753/databases/ps9145?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzUyMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODc1My9kYXRhYmFzZXMvcHM5MTQ1P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"properties\": {\r\n \"maxSizeBytes\": 0,\r\n \"readScale\": \"\"\r\n },\r\n \"location\": \"westeurope\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6a8ce9fd-6ea7-4c3b-9e0f-21715cd23865" + "a60416e8-4496-4a70-84ac-cc851366fddd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1140,16 +1203,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4399/providers/Microsoft.Sql/locations/westeurope/databaseOperationResults/cd95df77-2de8-4883-b34c-8fde2929a863?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3520/providers/Microsoft.Sql/locations/westeurope/databaseOperationResults/a7c69ff3-4ebc-4dfb-aa00-72ae6ecd0fc8?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4399/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/cd95df77-2de8-4883-b34c-8fde2929a863?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3520/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a7c69ff3-4ebc-4dfb-aa00-72ae6ecd0fc8?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "cd95df77-2de8-4883-b34c-8fde2929a863" + "a7c69ff3-4ebc-4dfb-aa00-72ae6ecd0fc8" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1158,10 +1221,10 @@ "1198" ], "x-ms-correlation-request-id": [ - "f6e7ed1d-2978-4df7-8b01-e51dfb822692" + "cf873d50-3e35-4391-b3e1-1887a16259e5" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043228Z:f6e7ed1d-2978-4df7-8b01-e51dfb822692" + "WESTUS:20200924T052741Z:cf873d50-3e35-4391-b3e1-1887a16259e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1170,7 +1233,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:32:27 GMT" + "Thu, 24 Sep 2020 05:27:41 GMT" ], "Content-Length": [ "76" @@ -1182,17 +1245,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2020-09-14T04:32:27.973Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2020-09-24T05:27:41.703Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4399/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/cd95df77-2de8-4883-b34c-8fde2929a863?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDM5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vY2Q5NWRmNzctMmRlOC00ODgzLWIzNGMtOGZkZTI5MjlhODYzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3520/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a7c69ff3-4ebc-4dfb-aa00-72ae6ecd0fc8?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzUyMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYTdjNjlmZjMtNGViYy00ZGZiLWFhMDAtNzJhZTZlY2QwZmM4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1209,19 +1272,19 @@ "15" ], "x-ms-request-id": [ - "431b3d62-1339-4b2a-bdf6-37e1e8a7040d" + "72b41747-5911-444a-a0ff-ed7a82a849cd" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11978" ], "x-ms-correlation-request-id": [ - "ceb50b52-13a3-4aeb-9571-93155fe4df71" + "09de1546-a468-41a0-9430-1344397a89c2" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043243Z:ceb50b52-13a3-4aeb-9571-93155fe4df71" + "WESTUS:20200924T052757Z:09de1546-a468-41a0-9430-1344397a89c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1230,7 +1293,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:32:42 GMT" + "Thu, 24 Sep 2020 05:27:56 GMT" ], "Content-Length": [ "108" @@ -1242,17 +1305,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"cd95df77-2de8-4883-b34c-8fde2929a863\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:32:27.973Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"a7c69ff3-4ebc-4dfb-aa00-72ae6ecd0fc8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:27:41.703Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4399/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/cd95df77-2de8-4883-b34c-8fde2929a863?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDM5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vY2Q5NWRmNzctMmRlOC00ODgzLWIzNGMtOGZkZTI5MjlhODYzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3520/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a7c69ff3-4ebc-4dfb-aa00-72ae6ecd0fc8?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzUyMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYTdjNjlmZjMtNGViYy00ZGZiLWFhMDAtNzJhZTZlY2QwZmM4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1269,19 +1332,19 @@ "15" ], "x-ms-request-id": [ - "2945f73a-273f-47cf-acdd-4d770e4f8550" + "c490f327-c0be-49ab-b766-8148d0877678" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11977" ], "x-ms-correlation-request-id": [ - "6afb7197-11e4-46e0-8f21-a5f1ff208861" + "e96bd785-1034-4b2c-be6c-a1ec4676c1ac" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043258Z:6afb7197-11e4-46e0-8f21-a5f1ff208861" + "WESTUS:20200924T052812Z:e96bd785-1034-4b2c-be6c-a1ec4676c1ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1290,7 +1353,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:32:57 GMT" + "Thu, 24 Sep 2020 05:28:11 GMT" ], "Content-Length": [ "108" @@ -1302,17 +1365,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"cd95df77-2de8-4883-b34c-8fde2929a863\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:32:27.973Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"a7c69ff3-4ebc-4dfb-aa00-72ae6ecd0fc8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:27:41.703Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4399/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/cd95df77-2de8-4883-b34c-8fde2929a863?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDM5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vY2Q5NWRmNzctMmRlOC00ODgzLWIzNGMtOGZkZTI5MjlhODYzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3520/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a7c69ff3-4ebc-4dfb-aa00-72ae6ecd0fc8?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzUyMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYTdjNjlmZjMtNGViYy00ZGZiLWFhMDAtNzJhZTZlY2QwZmM4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1329,19 +1392,19 @@ "15" ], "x-ms-request-id": [ - "bd310deb-3026-422a-b48b-86eb28ac9362" + "17a0d272-b259-43dc-8b56-5022610a106a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11976" ], "x-ms-correlation-request-id": [ - "110c9973-8792-4d3d-a152-502a49946ffc" + "d711e8c7-ffd6-4f41-8479-4b00851444d3" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043313Z:110c9973-8792-4d3d-a152-502a49946ffc" + "WESTUS:20200924T052827Z:d711e8c7-ffd6-4f41-8479-4b00851444d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1350,7 +1413,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:33:12 GMT" + "Thu, 24 Sep 2020 05:28:27 GMT" ], "Content-Length": [ "108" @@ -1362,17 +1425,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"cd95df77-2de8-4883-b34c-8fde2929a863\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:32:27.973Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"a7c69ff3-4ebc-4dfb-aa00-72ae6ecd0fc8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:27:41.703Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4399/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/cd95df77-2de8-4883-b34c-8fde2929a863?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDM5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vY2Q5NWRmNzctMmRlOC00ODgzLWIzNGMtOGZkZTI5MjlhODYzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3520/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a7c69ff3-4ebc-4dfb-aa00-72ae6ecd0fc8?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzUyMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYTdjNjlmZjMtNGViYy00ZGZiLWFhMDAtNzJhZTZlY2QwZmM4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1389,19 +1452,19 @@ "15" ], "x-ms-request-id": [ - "7795a441-aaaf-4fae-9e8f-64e454a7f3f1" + "f4deba20-db80-45d9-ba0d-490c23107ec3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11975" ], "x-ms-correlation-request-id": [ - "7644b091-1fe7-464e-989c-1ee975001ca5" + "a2c97935-ba61-44c8-954c-441c5e13e752" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043328Z:7644b091-1fe7-464e-989c-1ee975001ca5" + "WESTUS:20200924T052842Z:a2c97935-ba61-44c8-954c-441c5e13e752" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1410,7 +1473,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:33:28 GMT" + "Thu, 24 Sep 2020 05:28:42 GMT" ], "Content-Length": [ "108" @@ -1422,17 +1485,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"cd95df77-2de8-4883-b34c-8fde2929a863\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:32:27.973Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"a7c69ff3-4ebc-4dfb-aa00-72ae6ecd0fc8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:27:41.703Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4399/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/cd95df77-2de8-4883-b34c-8fde2929a863?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDM5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vY2Q5NWRmNzctMmRlOC00ODgzLWIzNGMtOGZkZTI5MjlhODYzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3520/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a7c69ff3-4ebc-4dfb-aa00-72ae6ecd0fc8?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzUyMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYTdjNjlmZjMtNGViYy00ZGZiLWFhMDAtNzJhZTZlY2QwZmM4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1449,19 +1512,19 @@ "15" ], "x-ms-request-id": [ - "d932c350-e32b-40a3-93e2-3f1dcfb444af" + "bfd78b0b-200a-4eb5-b705-99a97437d242" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" - ], "x-ms-correlation-request-id": [ - "e9b885eb-4f7a-4fab-b8d2-8264798024da" + "7e12ecf4-4752-469e-b04f-ca2e90c2c610" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043344Z:e9b885eb-4f7a-4fab-b8d2-8264798024da" + "WESTUS:20200924T052857Z:7e12ecf4-4752-469e-b04f-ca2e90c2c610" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1470,7 +1533,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:33:44 GMT" + "Thu, 24 Sep 2020 05:28:57 GMT" ], "Content-Length": [ "107" @@ -1482,23 +1545,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"cd95df77-2de8-4883-b34c-8fde2929a863\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-14T04:32:27.973Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"a7c69ff3-4ebc-4dfb-aa00-72ae6ecd0fc8\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-24T05:27:41.703Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps1862?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzMTg2Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps332?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzMzMyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West Europe\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f11f2b2d-8753-452b-9b13-bb63c353cbb7" + "72907c8b-8229-4719-841d-2ebaf31102c7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -1518,16 +1581,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1178" + "1199" ], "x-ms-request-id": [ - "999ecc33-fd60-45b5-8207-d081a8f79889" + "e19bb47f-fc28-43c1-b737-4cd58b1236a9" ], "x-ms-correlation-request-id": [ - "999ecc33-fd60-45b5-8207-d081a8f79889" + "e19bb47f-fc28-43c1-b737-4cd58b1236a9" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043346Z:999ecc33-fd60-45b5-8207-d081a8f79889" + "WESTUS:20200924T052900Z:e19bb47f-fc28-43c1-b737-4cd58b1236a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1536,10 +1599,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:33:46 GMT" + "Thu, 24 Sep 2020 05:29:00 GMT" ], "Content-Length": [ - "169" + "167" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1548,23 +1611,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862\",\r\n \"name\": \"ps1862\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332\",\r\n \"name\": \"ps332\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3ND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e81e6c29-c38c-4347-a6d6-5d3cf84ee818" + "bc4c2c48-e98a-4c8e-b5b6-807c77eaa24a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1581,13 +1644,13 @@ "gateway" ], "x-ms-request-id": [ - "9248f13b-5957-4c64-8184-90c9d3ae951c" + "ce39f76d-f0b5-4c85-9725-d1dcde437d1d" ], "x-ms-correlation-request-id": [ - "9248f13b-5957-4c64-8184-90c9d3ae951c" + "ce39f76d-f0b5-4c85-9725-d1dcde437d1d" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043346Z:9248f13b-5957-4c64-8184-90c9d3ae951c" + "WESTUS:20200924T052901Z:ce39f76d-f0b5-4c85-9725-d1dcde437d1d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1596,7 +1659,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:33:46 GMT" + "Thu, 24 Sep 2020 05:29:00 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1605,20 +1668,20 @@ "-1" ], "Content-Length": [ - "206" + "205" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps1174' under resource group 'ps1862' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps2032' under resource group 'ps332' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3ND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1632,19 +1695,19 @@ "no-cache" ], "x-ms-request-id": [ - "19324161-8a6f-43a7-a861-431299514a03" + "a53e4448-8db1-4a48-a7c1-c20f677b3ed4" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11964" ], "x-ms-correlation-request-id": [ - "88c9d5ee-2d3b-4b6e-8bdd-e7e6b27e637a" + "fa0dc918-7e8d-485b-90eb-69b9459012f1" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043457Z:88c9d5ee-2d3b-4b6e-8bdd-e7e6b27e637a" + "WESTUS:20200924T052951Z:fa0dc918-7e8d-485b-90eb-69b9459012f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1653,10 +1716,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:34:56 GMT" + "Thu, 24 Sep 2020 05:29:51 GMT" ], "Content-Length": [ - "412" + "411" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1665,23 +1728,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps1174.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174\",\r\n \"name\": \"ps1174\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps2032.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032\",\r\n \"name\": \"ps2032\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3ND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2ebf2daa-7147-4b5c-a35c-6245370ee787" + "1805b8d7-b739-45bd-943e-baa990f3749b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1695,19 +1758,19 @@ "no-cache" ], "x-ms-request-id": [ - "83e84068-2cc0-4ab1-a2db-ef7b3a98cbbb" + "c1a5799c-834f-4962-b4aa-091edeb39521" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11961" ], "x-ms-correlation-request-id": [ - "6974e505-cf56-42a6-9c01-88413e845c4f" + "6d7f10ca-e80f-4046-93b9-51e03217a8ba" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043457Z:6974e505-cf56-42a6-9c01-88413e845c4f" + "WESTUS:20200924T052952Z:6d7f10ca-e80f-4046-93b9-51e03217a8ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1716,10 +1779,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:34:56 GMT" + "Thu, 24 Sep 2020 05:29:52 GMT" ], "Content-Length": [ - "412" + "411" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1728,23 +1791,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps1174.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174\",\r\n \"name\": \"ps1174\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps2032.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032\",\r\n \"name\": \"ps2032\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3ND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"West Europe\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3e0e21a3-4f77-4902-8665-bc93481698e4" + "cf371231-5482-46bb-907d-11d1d9470b65" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1764,16 +1827,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/locations/westeurope/serverOperationResults/4ef0e4e4-5253-4cb5-bbda-9bdbce277f71?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/locations/westeurope/serverOperationResults/675be15b-d84c-4037-b2d9-d029e798537f?api-version=2019-06-01-preview" ], "Retry-After": [ "1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/4ef0e4e4-5253-4cb5-bbda-9bdbce277f71?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/675be15b-d84c-4037-b2d9-d029e798537f?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "4ef0e4e4-5253-4cb5-bbda-9bdbce277f71" + "675be15b-d84c-4037-b2d9-d029e798537f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1782,10 +1845,10 @@ "1197" ], "x-ms-correlation-request-id": [ - "9753eb5c-6298-4a10-b4e2-bbf24f120312" + "cad620df-dff6-4adf-bb24-9ca312ac65d8" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043350Z:9753eb5c-6298-4a10-b4e2-bbf24f120312" + "WESTUS:20200924T052904Z:cad620df-dff6-4adf-bb24-9ca312ac65d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1794,10 +1857,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:33:49 GMT" + "Thu, 24 Sep 2020 05:29:03 GMT" ], "Content-Length": [ - "73" + "74" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1806,17 +1869,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-14T04:33:50.02Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-24T05:29:04.623Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/4ef0e4e4-5253-4cb5-bbda-9bdbce277f71?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzRlZjBlNGU0LTUyNTMtNGNiNS1iYmRhLTliZGJjZTI3N2Y3MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/675be15b-d84c-4037-b2d9-d029e798537f?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vNjc1YmUxNWItZDg0Yy00MDM3LWIyZDktZDAyOWU3OTg1MzdmP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1833,19 +1896,19 @@ "1" ], "x-ms-request-id": [ - "f2941552-476a-45be-add9-b3192e401020" + "20db2174-dd2a-47e9-ad6f-5ac80c65e319" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11971" ], "x-ms-correlation-request-id": [ - "f976ecc9-de29-4dde-bf23-59b8524269d5" + "c8189f10-05b7-400d-9b70-0400509e5710" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043351Z:f976ecc9-de29-4dde-bf23-59b8524269d5" + "WESTUS:20200924T052905Z:c8189f10-05b7-400d-9b70-0400509e5710" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1854,10 +1917,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:33:51 GMT" + "Thu, 24 Sep 2020 05:29:05 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1866,17 +1929,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"4ef0e4e4-5253-4cb5-bbda-9bdbce277f71\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:33:50.02Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"675be15b-d84c-4037-b2d9-d029e798537f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:29:04.623Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/4ef0e4e4-5253-4cb5-bbda-9bdbce277f71?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzRlZjBlNGU0LTUyNTMtNGNiNS1iYmRhLTliZGJjZTI3N2Y3MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/675be15b-d84c-4037-b2d9-d029e798537f?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vNjc1YmUxNWItZDg0Yy00MDM3LWIyZDktZDAyOWU3OTg1MzdmP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1893,19 +1956,19 @@ "1" ], "x-ms-request-id": [ - "382cfa02-7a57-4ddc-a055-595199541095" + "45afba38-f21f-4df7-80d9-7a41125dba94" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11970" ], "x-ms-correlation-request-id": [ - "3144b0bb-9832-4cf8-80f1-a68d7320f827" + "2556ba5e-c551-488a-8619-cfb209dfeae8" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043352Z:3144b0bb-9832-4cf8-80f1-a68d7320f827" + "WESTUS:20200924T052907Z:2556ba5e-c551-488a-8619-cfb209dfeae8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1914,10 +1977,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:33:52 GMT" + "Thu, 24 Sep 2020 05:29:06 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1926,17 +1989,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"4ef0e4e4-5253-4cb5-bbda-9bdbce277f71\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:33:50.02Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"675be15b-d84c-4037-b2d9-d029e798537f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:29:04.623Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/4ef0e4e4-5253-4cb5-bbda-9bdbce277f71?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzRlZjBlNGU0LTUyNTMtNGNiNS1iYmRhLTliZGJjZTI3N2Y3MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/675be15b-d84c-4037-b2d9-d029e798537f?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vNjc1YmUxNWItZDg0Yy00MDM3LWIyZDktZDAyOWU3OTg1MzdmP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1953,19 +2016,19 @@ "1" ], "x-ms-request-id": [ - "40d3f1c2-99a8-4a9c-9e92-dabb89eeba7a" + "efd2e188-27d5-4869-aae9-0f99deca36dc" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11969" ], "x-ms-correlation-request-id": [ - "9ccf8a1f-905b-41fd-966b-0d66379432b2" + "0be2a347-7e39-448d-8222-e2bd7be0abd2" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043353Z:9ccf8a1f-905b-41fd-966b-0d66379432b2" + "WESTUS:20200924T052908Z:0be2a347-7e39-448d-8222-e2bd7be0abd2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1974,10 +2037,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:33:53 GMT" + "Thu, 24 Sep 2020 05:29:07 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1986,17 +2049,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"4ef0e4e4-5253-4cb5-bbda-9bdbce277f71\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:33:50.02Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"675be15b-d84c-4037-b2d9-d029e798537f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:29:04.623Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/4ef0e4e4-5253-4cb5-bbda-9bdbce277f71?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzRlZjBlNGU0LTUyNTMtNGNiNS1iYmRhLTliZGJjZTI3N2Y3MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/675be15b-d84c-4037-b2d9-d029e798537f?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vNjc1YmUxNWItZDg0Yy00MDM3LWIyZDktZDAyOWU3OTg1MzdmP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2013,19 +2076,19 @@ "1" ], "x-ms-request-id": [ - "54658b08-287f-4f24-929d-1741d18f04de" + "c5220c52-2c90-4fb8-ac96-38a04cb3632b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11968" ], "x-ms-correlation-request-id": [ - "c6c99c83-bacd-46aa-b2f1-a5954b3869fa" + "ba77c167-020c-4b08-aa3d-b1b2417b2de2" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043354Z:c6c99c83-bacd-46aa-b2f1-a5954b3869fa" + "WESTUS:20200924T052909Z:ba77c167-020c-4b08-aa3d-b1b2417b2de2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2034,10 +2097,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:33:54 GMT" + "Thu, 24 Sep 2020 05:29:08 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2046,17 +2109,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"4ef0e4e4-5253-4cb5-bbda-9bdbce277f71\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:33:50.02Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"675be15b-d84c-4037-b2d9-d029e798537f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:29:04.623Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/4ef0e4e4-5253-4cb5-bbda-9bdbce277f71?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzRlZjBlNGU0LTUyNTMtNGNiNS1iYmRhLTliZGJjZTI3N2Y3MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/675be15b-d84c-4037-b2d9-d029e798537f?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vNjc1YmUxNWItZDg0Yy00MDM3LWIyZDktZDAyOWU3OTg1MzdmP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2073,19 +2136,19 @@ "20" ], "x-ms-request-id": [ - "a63dcf21-590a-4c91-8ba8-07ee530f9316" + "070c7127-581b-49be-8e8c-0e7a65b49cb7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11967" ], "x-ms-correlation-request-id": [ - "343a16ff-7577-421a-9247-95684d8ec23f" + "84cb672b-a09e-47d0-b69c-7db51d85f016" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043356Z:343a16ff-7577-421a-9247-95684d8ec23f" + "WESTUS:20200924T052910Z:84cb672b-a09e-47d0-b69c-7db51d85f016" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2094,10 +2157,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:33:55 GMT" + "Thu, 24 Sep 2020 05:29:09 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2106,17 +2169,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"4ef0e4e4-5253-4cb5-bbda-9bdbce277f71\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:33:50.02Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"675be15b-d84c-4037-b2d9-d029e798537f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:29:04.623Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/4ef0e4e4-5253-4cb5-bbda-9bdbce277f71?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzRlZjBlNGU0LTUyNTMtNGNiNS1iYmRhLTliZGJjZTI3N2Y3MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/675be15b-d84c-4037-b2d9-d029e798537f?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vNjc1YmUxNWItZDg0Yy00MDM3LWIyZDktZDAyOWU3OTg1MzdmP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2133,79 +2196,19 @@ "20" ], "x-ms-request-id": [ - "1d54e1d1-b667-4417-9e6d-28007f3b739e" + "683cb1e2-06ba-4ef2-aea3-def03ffec4d5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" - ], - "x-ms-correlation-request-id": [ - "b591641c-2c67-4ef5-a9aa-d5f01bce4a4c" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043416Z:b591641c-2c67-4ef5-a9aa-d5f01bce4a4c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 14 Sep 2020 04:34:15 GMT" - ], - "Content-Length": [ - "107" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"4ef0e4e4-5253-4cb5-bbda-9bdbce277f71\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:33:50.02Z\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/4ef0e4e4-5253-4cb5-bbda-9bdbce277f71?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzRlZjBlNGU0LTUyNTMtNGNiNS1iYmRhLTliZGJjZTI3N2Y3MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "20" - ], - "x-ms-request-id": [ - "c307807c-a7b0-407d-8f42-245eab8e8377" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "11966" ], "x-ms-correlation-request-id": [ - "4a58b430-a2d0-4971-b1e2-42e7bc8f87a6" + "0b511020-8b8d-48fb-b77f-42a23c1ece46" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043436Z:4a58b430-a2d0-4971-b1e2-42e7bc8f87a6" + "WESTUS:20200924T052930Z:0b511020-8b8d-48fb-b77f-42a23c1ece46" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2214,10 +2217,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:34:35 GMT" + "Thu, 24 Sep 2020 05:29:29 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2226,17 +2229,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"4ef0e4e4-5253-4cb5-bbda-9bdbce277f71\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:33:50.02Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"675be15b-d84c-4037-b2d9-d029e798537f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:29:04.623Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/4ef0e4e4-5253-4cb5-bbda-9bdbce277f71?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzRlZjBlNGU0LTUyNTMtNGNiNS1iYmRhLTliZGJjZTI3N2Y3MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/675be15b-d84c-4037-b2d9-d029e798537f?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vNjc1YmUxNWItZDg0Yy00MDM3LWIyZDktZDAyOWU3OTg1MzdmP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2253,19 +2256,19 @@ "15" ], "x-ms-request-id": [ - "084a3d73-87bd-41fa-91f2-03ca3389b1e7" + "978f7d75-cf83-431b-b285-5d7bee476678" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11965" ], "x-ms-correlation-request-id": [ - "4b15d2cd-e332-4347-98df-25472813f3bc" + "e66a9d47-502f-451a-ad45-a5d654faac37" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043457Z:4b15d2cd-e332-4347-98df-25472813f3bc" + "WESTUS:20200924T052951Z:e66a9d47-502f-451a-ad45-a5d654faac37" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2274,10 +2277,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:34:56 GMT" + "Thu, 24 Sep 2020 05:29:51 GMT" ], "Content-Length": [ - "106" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2286,23 +2289,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"4ef0e4e4-5253-4cb5-bbda-9bdbce277f71\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-14T04:33:50.02Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"675be15b-d84c-4037-b2d9-d029e798537f\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-24T05:29:04.623Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "07954f56-7f66-4651-aa0b-e591c75fa81f" + "6034b32c-22a1-4c27-be28-cb66d355db49" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2319,13 +2322,13 @@ "gateway" ], "x-ms-request-id": [ - "fd787cde-beaa-4e27-98b0-545c37c612a9" + "905a16d9-4b31-4394-8f17-547e42253200" ], "x-ms-correlation-request-id": [ - "fd787cde-beaa-4e27-98b0-545c37c612a9" + "905a16d9-4b31-4394-8f17-547e42253200" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043457Z:fd787cde-beaa-4e27-98b0-545c37c612a9" + "WESTUS:20200924T052951Z:905a16d9-4b31-4394-8f17-547e42253200" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2334,7 +2337,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:34:56 GMT" + "Thu, 24 Sep 2020 05:29:51 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2343,20 +2346,20 @@ "-1" ], "Content-Length": [ - "223" + "222" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps1174/databases/ps8331' under resource group 'ps1862' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps2032/databases/ps9145' under resource group 'ps332' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2370,19 +2373,19 @@ "no-cache" ], "x-ms-request-id": [ - "91d7f9d1-6350-4b6f-aa20-a2bd8b937ac2" + "69de3a79-12c7-44f5-b658-e79426f2f536" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "11923" ], "x-ms-correlation-request-id": [ - "641297d9-6709-4a81-a760-fa475448dc7d" + "c4e74ad8-d161-4edc-837d-870edb434175" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043648Z:641297d9-6709-4a81-a760-fa475448dc7d" + "WESTUS:20200924T053905Z:c4e74ad8-d161-4edc-837d-870edb434175" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2391,10 +2394,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:36:47 GMT" + "Thu, 24 Sep 2020 05:39:05 GMT" ], "Content-Length": [ - "862" + "861" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2403,23 +2406,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"5bbbbab5-36a0-4f54-be17-aacec831206e\",\r\n \"creationDate\": \"2020-09-14T04:36:39.373Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-14T05:06:39.373Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331\",\r\n \"name\": \"ps8331\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"f62186e4-7bd7-4793-9036-e1af4b968338\",\r\n \"creationDate\": \"2020-09-24T05:38:48.983Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-24T06:08:48.983Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145\",\r\n \"name\": \"ps9145\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"P1\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"properties\": {\r\n \"createMode\": \"Secondary\",\r\n \"sourceDatabaseId\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4399/providers/Microsoft.Sql/Servers/ps2767/databases/ps8331\"\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"P1\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"properties\": {\r\n \"createMode\": \"Secondary\",\r\n \"sourceDatabaseId\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3520/providers/Microsoft.Sql/Servers/ps8753/databases/ps9145\"\r\n },\r\n \"location\": \"westeurope\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1ce71c82-541d-4202-ae1e-28d801b8c920" + "1a8e4bea-e3d8-47f8-9226-5d27102a135a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2439,16 +2442,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/locations/westeurope/databaseOperationResults/bfdb8090-94ef-41f2-8510-9cc83af47f8f?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/locations/westeurope/databaseOperationResults/a2b35f6b-6e80-4823-bf14-816855f6d722?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/bfdb8090-94ef-41f2-8510-9cc83af47f8f?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a2b35f6b-6e80-4823-bf14-816855f6d722?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "39d96c22-7116-4316-81bb-74e94b578f91" + "7d3fbd3f-a0f8-4d70-ada7-8ca545e2bdde" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2457,10 +2460,10 @@ "1196" ], "x-ms-correlation-request-id": [ - "258c157a-9235-4299-a06d-6189f85d89f8" + "1b34c580-3c4a-4fe8-9b18-54eb026e466a" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043501Z:258c157a-9235-4299-a06d-6189f85d89f8" + "WESTUS:20200924T052955Z:1b34c580-3c4a-4fe8-9b18-54eb026e466a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2469,7 +2472,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:35:00 GMT" + "Thu, 24 Sep 2020 05:29:55 GMT" ], "Content-Length": [ "75" @@ -2481,17 +2484,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2020-09-14T04:35:01.247Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2020-09-24T05:29:55.467Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/bfdb8090-94ef-41f2-8510-9cc83af47f8f?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYmZkYjgwOTAtOTRlZi00MWYyLTg1MTAtOWNjODNhZjQ3ZjhmP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a2b35f6b-6e80-4823-bf14-816855f6d722?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9hMmIzNWY2Yi02ZTgwLTQ4MjMtYmYxNC04MTY4NTVmNmQ3MjI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2508,19 +2511,19 @@ "15" ], "x-ms-request-id": [ - "e455d5f4-547c-4765-8f6d-5b916fd7c573" + "6c7bc571-0fd2-4daf-9c3f-040e8aba0668" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11959" ], "x-ms-correlation-request-id": [ - "c86687e5-428c-4bf1-9c8d-0224b22223a9" + "e4c2ba4b-7e59-4cde-bd50-08d9fa3eecac" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043516Z:c86687e5-428c-4bf1-9c8d-0224b22223a9" + "WESTUS:20200924T053010Z:e4c2ba4b-7e59-4cde-bd50-08d9fa3eecac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2529,10 +2532,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:35:16 GMT" + "Thu, 24 Sep 2020 05:30:10 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2541,17 +2544,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"bfdb8090-94ef-41f2-8510-9cc83af47f8f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:35:01.48Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2b35f6b-6e80-4823-bf14-816855f6d722\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:29:55.717Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/bfdb8090-94ef-41f2-8510-9cc83af47f8f?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYmZkYjgwOTAtOTRlZi00MWYyLTg1MTAtOWNjODNhZjQ3ZjhmP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a2b35f6b-6e80-4823-bf14-816855f6d722?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9hMmIzNWY2Yi02ZTgwLTQ4MjMtYmYxNC04MTY4NTVmNmQ3MjI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2568,19 +2571,19 @@ "15" ], "x-ms-request-id": [ - "230773ee-d33f-4fb3-a4dd-6afdc892b61a" + "be37330a-bed8-4bf5-9e1f-d790dc3daf90" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11958" ], "x-ms-correlation-request-id": [ - "43731bd7-d11f-4aeb-b0b2-d9a681bf04c3" + "4c24fbff-e100-42a9-8261-5fb4096c2dc0" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043531Z:43731bd7-d11f-4aeb-b0b2-d9a681bf04c3" + "WESTUS:20200924T053026Z:4c24fbff-e100-42a9-8261-5fb4096c2dc0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2589,10 +2592,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:35:31 GMT" + "Thu, 24 Sep 2020 05:30:25 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2601,17 +2604,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"bfdb8090-94ef-41f2-8510-9cc83af47f8f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:35:01.48Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2b35f6b-6e80-4823-bf14-816855f6d722\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:29:55.717Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/bfdb8090-94ef-41f2-8510-9cc83af47f8f?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYmZkYjgwOTAtOTRlZi00MWYyLTg1MTAtOWNjODNhZjQ3ZjhmP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a2b35f6b-6e80-4823-bf14-816855f6d722?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9hMmIzNWY2Yi02ZTgwLTQ4MjMtYmYxNC04MTY4NTVmNmQ3MjI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2628,19 +2631,19 @@ "15" ], "x-ms-request-id": [ - "fc0d176d-7f65-41cb-af53-a07117fd5a96" + "9b89affa-3e98-412e-a485-ab98af642ee9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11957" ], "x-ms-correlation-request-id": [ - "996b7c50-08eb-4367-b75a-52331df17175" + "3d170a04-af7d-4811-829c-e37c7760d950" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043547Z:996b7c50-08eb-4367-b75a-52331df17175" + "WESTUS:20200924T053041Z:3d170a04-af7d-4811-829c-e37c7760d950" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2649,10 +2652,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:35:46 GMT" + "Thu, 24 Sep 2020 05:30:40 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2661,17 +2664,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"bfdb8090-94ef-41f2-8510-9cc83af47f8f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:35:01.48Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2b35f6b-6e80-4823-bf14-816855f6d722\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:29:55.717Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/bfdb8090-94ef-41f2-8510-9cc83af47f8f?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYmZkYjgwOTAtOTRlZi00MWYyLTg1MTAtOWNjODNhZjQ3ZjhmP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a2b35f6b-6e80-4823-bf14-816855f6d722?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9hMmIzNWY2Yi02ZTgwLTQ4MjMtYmYxNC04MTY4NTVmNmQ3MjI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2688,19 +2691,19 @@ "15" ], "x-ms-request-id": [ - "234cef5d-8ef9-41ad-b52d-a6a46823cd61" + "3d89733d-65da-408c-bbd7-2fe9279fa9c2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11956" ], "x-ms-correlation-request-id": [ - "3afbd842-342c-479f-8634-6b25a118ec09" + "76b70476-d649-4b57-986e-7947eab7076a" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043602Z:3afbd842-342c-479f-8634-6b25a118ec09" + "WESTUS:20200924T053056Z:76b70476-d649-4b57-986e-7947eab7076a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2709,10 +2712,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:36:01 GMT" + "Thu, 24 Sep 2020 05:30:56 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2721,17 +2724,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"bfdb8090-94ef-41f2-8510-9cc83af47f8f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:35:01.48Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2b35f6b-6e80-4823-bf14-816855f6d722\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:29:55.717Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/bfdb8090-94ef-41f2-8510-9cc83af47f8f?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYmZkYjgwOTAtOTRlZi00MWYyLTg1MTAtOWNjODNhZjQ3ZjhmP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a2b35f6b-6e80-4823-bf14-816855f6d722?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9hMmIzNWY2Yi02ZTgwLTQ4MjMtYmYxNC04MTY4NTVmNmQ3MjI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2748,19 +2751,19 @@ "15" ], "x-ms-request-id": [ - "129ce13d-06b0-4250-ae81-77fd10de55ed" + "76cbd0b8-84b2-4c71-b7d8-52cd5c86126d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11955" ], "x-ms-correlation-request-id": [ - "5ab12048-66ad-4a53-bc82-16c97e414c82" + "5f8255b9-7ad8-4765-8faa-bfd90851f495" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043617Z:5ab12048-66ad-4a53-bc82-16c97e414c82" + "WESTUS:20200924T053111Z:5f8255b9-7ad8-4765-8faa-bfd90851f495" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2769,10 +2772,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:36:17 GMT" + "Thu, 24 Sep 2020 05:31:11 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2781,17 +2784,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"bfdb8090-94ef-41f2-8510-9cc83af47f8f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:35:01.48Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2b35f6b-6e80-4823-bf14-816855f6d722\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:29:55.717Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/bfdb8090-94ef-41f2-8510-9cc83af47f8f?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYmZkYjgwOTAtOTRlZi00MWYyLTg1MTAtOWNjODNhZjQ3ZjhmP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a2b35f6b-6e80-4823-bf14-816855f6d722?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9hMmIzNWY2Yi02ZTgwLTQ4MjMtYmYxNC04MTY4NTVmNmQ3MjI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2808,19 +2811,19 @@ "15" ], "x-ms-request-id": [ - "6e54839a-0feb-4926-bd91-3454b24abb42" + "f8cafe51-bb4d-45c0-a057-e2bc7f45354c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" + "11954" ], "x-ms-correlation-request-id": [ - "a30c9ef2-60b6-49f7-b069-be6ff1513bdb" + "bf471d73-3693-40a7-9ce7-c4ee2f3786ec" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043632Z:a30c9ef2-60b6-49f7-b069-be6ff1513bdb" + "WESTUS:20200924T053127Z:bf471d73-3693-40a7-9ce7-c4ee2f3786ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2829,10 +2832,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:36:32 GMT" + "Thu, 24 Sep 2020 05:31:26 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2841,17 +2844,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"bfdb8090-94ef-41f2-8510-9cc83af47f8f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T04:35:01.48Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2b35f6b-6e80-4823-bf14-816855f6d722\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:29:55.717Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/bfdb8090-94ef-41f2-8510-9cc83af47f8f?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYmZkYjgwOTAtOTRlZi00MWYyLTg1MTAtOWNjODNhZjQ3ZjhmP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a2b35f6b-6e80-4823-bf14-816855f6d722?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9hMmIzNWY2Yi02ZTgwLTQ4MjMtYmYxNC04MTY4NTVmNmQ3MjI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2868,19 +2871,19 @@ "15" ], "x-ms-request-id": [ - "8fcf118b-8009-4a52-8a74-b7d5122dc4aa" + "03ace44d-880a-4576-88e9-5541adfaade1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" + "11953" ], "x-ms-correlation-request-id": [ - "d2d6e6fe-ce1e-4045-8fa8-922759be3c80" + "c0eaf60e-13cf-4ade-a69c-6ca6800895fb" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043647Z:d2d6e6fe-ce1e-4045-8fa8-922759be3c80" + "WESTUS:20200924T053142Z:c0eaf60e-13cf-4ade-a69c-6ca6800895fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2889,10 +2892,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:36:47 GMT" + "Thu, 24 Sep 2020 05:31:41 GMT" ], "Content-Length": [ - "106" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2901,23 +2904,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"bfdb8090-94ef-41f2-8510-9cc83af47f8f\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-14T04:35:01.48Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2b35f6b-6e80-4823-bf14-816855f6d722\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:29:55.717Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a2b35f6b-6e80-4823-bf14-816855f6d722?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9hMmIzNWY2Yi02ZTgwLTQ4MjMtYmYxNC04MTY4NTVmNmQ3MjI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "314c6664-64b2-4955-90bd-42777e765259" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2930,20 +2927,23 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "15" + ], "x-ms-request-id": [ - "577454f3-9aad-4489-a543-0e8148db0cae" + "cca603ee-cb34-4516-ab79-90a7febef6d2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11952" ], "x-ms-correlation-request-id": [ - "391be93d-71d0-402f-87c0-c73688166b24" + "885d0203-f35f-4e4a-b52c-bf1249b0ed88" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043648Z:391be93d-71d0-402f-87c0-c73688166b24" + "WESTUS:20200924T053157Z:885d0203-f35f-4e4a-b52c-bf1249b0ed88" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2952,10 +2952,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:36:47 GMT" + "Thu, 24 Sep 2020 05:31:56 GMT" ], "Content-Length": [ - "424" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2964,125 +2964,137 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps1174.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174\",\r\n \"name\": \"ps1174\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2b35f6b-6e80-4823-bf14-816855f6d722\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:29:55.717Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4399/providers/Microsoft.Sql/servers/ps2767/databases/ps8331/replicationLinks?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDM5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjc2Ny9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3M/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a2b35f6b-6e80-4823-bf14-816855f6d722?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9hMmIzNWY2Yi02ZTgwLTQ4MjMtYmYxNC04MTY4NTVmNmQ3MjI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, "ResponseHeaders": { "Cache-Control": [ - "no-store, no-cache" + "no-cache" ], - "x-ms-request-id": [ - "d7347501-5c6a-4dc1-b04e-7ac3c49d8d2b" - ], - "X-Content-Type-Options": [ - "nosniff" + "Pragma": [ + "no-cache" ], - "DataServiceVersion": [ - "3.0;" + "Retry-After": [ + "15" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-request-id": [ + "27f9c87a-d8ab-426c-ac29-b6c3856d0c03" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11951" ], "x-ms-correlation-request-id": [ - "00748925-4117-4479-9744-0d8a2547de87" + "bd569f32-bf3d-4443-b21e-83d9cb219dc3" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043648Z:00748925-4117-4479-9744-0d8a2547de87" + "WESTUS:20200924T053212Z:bd569f32-bf3d-4443-b21e-83d9cb219dc3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:36:47 GMT" + "Thu, 24 Sep 2020 05:32:12 GMT" ], "Content-Length": [ - "619" + "108" ], "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4399/providers/Microsoft.Sql/servers/ps2767/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334\",\r\n \"name\": \"53510890-a06b-4e5a-8c5f-738581911334\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"West Europe\",\r\n \"properties\": {\r\n \"partnerServer\": \"ps1174\",\r\n \"partnerDatabase\": \"ps8331\",\r\n \"partnerLocation\": \"West Europe\",\r\n \"role\": \"Primary\",\r\n \"partnerRole\": \"Secondary\",\r\n \"replicationMode\": \"ASYNC\",\r\n \"startTime\": \"2020-09-14T04:35:53.057\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2b35f6b-6e80-4823-bf14-816855f6d722\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:29:55.717Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4399/providers/Microsoft.Sql/servers/ps2767/databases/ps8331/replicationLinks?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDM5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjc2Ny9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3M/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a2b35f6b-6e80-4823-bf14-816855f6d722?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9hMmIzNWY2Yi02ZTgwLTQ4MjMtYmYxNC04MTY4NTVmNmQ3MjI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, "ResponseHeaders": { "Cache-Control": [ - "no-store, no-cache" - ], - "x-ms-request-id": [ - "e8e1d2a2-fcf2-43e3-8a42-705629f9efef" + "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" + "Pragma": [ + "no-cache" ], - "DataServiceVersion": [ - "3.0;" + "Retry-After": [ + "15" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-request-id": [ + "2d5d0966-a433-486b-af44-e8368ee0c6a5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11703" + "11950" ], "x-ms-correlation-request-id": [ - "4a62dfb7-85bd-4d6d-998f-8839947804fc" + "7057e838-4c72-48bd-8cf8-7352cae63c8a" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043751Z:4a62dfb7-85bd-4d6d-998f-8839947804fc" + "WESTUS:20200924T053228Z:7057e838-4c72-48bd-8cf8-7352cae63c8a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:37:51 GMT" + "Thu, 24 Sep 2020 05:32:27 GMT" ], "Content-Length": [ - "619" + "108" ], "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4399/providers/Microsoft.Sql/servers/ps2767/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334\",\r\n \"name\": \"53510890-a06b-4e5a-8c5f-738581911334\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"West Europe\",\r\n \"properties\": {\r\n \"partnerServer\": \"ps1174\",\r\n \"partnerDatabase\": \"ps8331\",\r\n \"partnerLocation\": \"West Europe\",\r\n \"role\": \"Secondary\",\r\n \"partnerRole\": \"Primary\",\r\n \"replicationMode\": \"ASYNC\",\r\n \"startTime\": \"2020-09-14T04:35:53.057\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2b35f6b-6e80-4823-bf14-816855f6d722\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:29:55.717Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4399/providers/Microsoft.Sql/servers?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDM5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a2b35f6b-6e80-4823-bf14-816855f6d722?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9hMmIzNWY2Yi02ZTgwLTQ4MjMtYmYxNC04MTY4NTVmNmQ3MjI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "336e1bd0-4eca-457e-aed9-7d90a25d5fe5" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -3095,20 +3107,23 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "15" + ], "x-ms-request-id": [ - "8507af7d-f97c-43ac-9e93-e3cdf5f2eea9" + "ce0cbd9c-6d4e-4e54-8c28-334d1177d2a1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" + "11949" ], "x-ms-correlation-request-id": [ - "7dd1997f-c4fc-4a6d-9086-813a5a3b715a" + "85d9e930-5b24-4ec2-8c95-ba0dc21e0edb" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043648Z:7dd1997f-c4fc-4a6d-9086-813a5a3b715a" + "WESTUS:20200924T053243Z:85d9e930-5b24-4ec2-8c95-ba0dc21e0edb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3117,10 +3132,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:36:48 GMT" + "Thu, 24 Sep 2020 05:32:42 GMT" ], "Content-Length": [ - "424" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3129,23 +3144,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps2767.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4399/providers/Microsoft.Sql/servers/ps2767\",\r\n \"name\": \"ps2767\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2b35f6b-6e80-4823-bf14-816855f6d722\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:29:55.717Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4399/providers/Microsoft.Sql/servers?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDM5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a2b35f6b-6e80-4823-bf14-816855f6d722?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9hMmIzNWY2Yi02ZTgwLTQ4MjMtYmYxNC04MTY4NTVmNmQ3MjI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "4616d9cd-b333-484d-84e9-75b0a03672f0" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -3158,20 +3167,23 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "15" + ], "x-ms-request-id": [ - "3a45d0d5-ea1b-4274-86ff-06b9d6afd2f6" + "91b8d4ec-ffb3-43b7-9220-13357e6a83fe" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" + "11948" ], "x-ms-correlation-request-id": [ - "d408b9f0-8812-475d-a871-f5275d904529" + "078143e4-da5f-4e6e-9158-6d2fc2c131fa" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043649Z:d408b9f0-8812-475d-a871-f5275d904529" + "WESTUS:20200924T053258Z:078143e4-da5f-4e6e-9158-6d2fc2c131fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3180,10 +3192,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:36:48 GMT" + "Thu, 24 Sep 2020 05:32:58 GMT" ], "Content-Length": [ - "424" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3192,23 +3204,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps2767.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4399/providers/Microsoft.Sql/servers/ps2767\",\r\n \"name\": \"ps2767\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2b35f6b-6e80-4823-bf14-816855f6d722\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:29:55.717Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4399/providers/Microsoft.Sql/servers?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDM5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a2b35f6b-6e80-4823-bf14-816855f6d722?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9hMmIzNWY2Yi02ZTgwLTQ4MjMtYmYxNC04MTY4NTVmNmQ3MjI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "798f3398-f263-45f4-9d6e-a8b135d394c1" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -3221,20 +3227,23 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "15" + ], "x-ms-request-id": [ - "ffb2831d-dc4f-4631-93e1-53f754c1914a" + "9d420f4b-525e-469f-a832-3df0e51498db" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" + "11947" ], "x-ms-correlation-request-id": [ - "4344a56f-6b41-4e93-900e-7e7a2a8c9978" + "6c7cee86-9740-4768-917d-6d12e2c74cdd" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043649Z:4344a56f-6b41-4e93-900e-7e7a2a8c9978" + "WESTUS:20200924T053314Z:6c7cee86-9740-4768-917d-6d12e2c74cdd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3243,10 +3252,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:36:49 GMT" + "Thu, 24 Sep 2020 05:33:13 GMT" ], "Content-Length": [ - "424" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3255,23 +3264,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps2767.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4399/providers/Microsoft.Sql/servers/ps2767\",\r\n \"name\": \"ps2767\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2b35f6b-6e80-4823-bf14-816855f6d722\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:29:55.717Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4399/providers/Microsoft.Sql/servers?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNDM5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a2b35f6b-6e80-4823-bf14-816855f6d722?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9hMmIzNWY2Yi02ZTgwLTQ4MjMtYmYxNC04MTY4NTVmNmQ3MjI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "bcc8ee45-9d10-4fd6-af78-5f6af7431387" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -3284,20 +3287,23 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "15" + ], "x-ms-request-id": [ - "09900d3c-0b83-4a80-b287-cbc1ac888dae" + "1c770dde-63d7-4237-afdd-ac98e3379e58" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" + "11946" ], "x-ms-correlation-request-id": [ - "02bfdfaa-94ea-4d21-9596-68ede70b6551" + "f15493ca-9da5-428e-ab93-3e706b39b716" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043751Z:02bfdfaa-94ea-4d21-9596-68ede70b6551" + "WESTUS:20200924T053329Z:f15493ca-9da5-428e-ab93-3e706b39b716" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3306,10 +3312,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:37:50 GMT" + "Thu, 24 Sep 2020 05:33:29 GMT" ], "Content-Length": [ - "424" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3318,7711 +3324,1408 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps2767.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps4399/providers/Microsoft.Sql/servers/ps2767\",\r\n \"name\": \"ps2767\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2b35f6b-6e80-4823-bf14-816855f6d722\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:29:55.717Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3M/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a2b35f6b-6e80-4823-bf14-816855f6d722?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9hMmIzNWY2Yi02ZTgwLTQ4MjMtYmYxNC04MTY4NTVmNmQ3MjI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, "ResponseHeaders": { "Cache-Control": [ - "no-store, no-cache" - ], - "x-ms-request-id": [ - "5e693d73-14a4-4125-8fde-863e7c7a68a2" + "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" + "Pragma": [ + "no-cache" ], - "DataServiceVersion": [ - "3.0;" + "Retry-After": [ + "15" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-request-id": [ + "45dd36e3-8ac2-47c0-84f6-33ec4c24928a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11945" ], "x-ms-correlation-request-id": [ - "978b5eab-4143-4b4e-a00c-382b2101c97f" + "83e92940-06b1-46b4-905f-f12d2e1dfd0a" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043649Z:978b5eab-4143-4b4e-a00c-382b2101c97f" + "WESTUS:20200924T053344Z:83e92940-06b1-46b4-905f-f12d2e1dfd0a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:36:48 GMT" + "Thu, 24 Sep 2020 05:33:44 GMT" ], "Content-Length": [ - "618" + "108" ], "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334\",\r\n \"name\": \"53510890-a06b-4e5a-8c5f-738581911334\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"West Europe\",\r\n \"properties\": {\r\n \"partnerServer\": \"ps2767\",\r\n \"partnerDatabase\": \"ps8331\",\r\n \"partnerLocation\": \"West Europe\",\r\n \"role\": \"Secondary\",\r\n \"partnerRole\": \"Primary\",\r\n \"replicationMode\": \"ASYNC\",\r\n \"startTime\": \"2020-09-14T04:35:53.31\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2b35f6b-6e80-4823-bf14-816855f6d722\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:29:55.717Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3M/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a2b35f6b-6e80-4823-bf14-816855f6d722?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9hMmIzNWY2Yi02ZTgwLTQ4MjMtYmYxNC04MTY4NTVmNmQ3MjI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, "ResponseHeaders": { "Cache-Control": [ - "no-store, no-cache" - ], - "x-ms-request-id": [ - "919850e2-14cc-43ce-8302-7c30d44aed58" + "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" + "Pragma": [ + "no-cache" ], - "DataServiceVersion": [ - "3.0;" + "Retry-After": [ + "15" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-request-id": [ + "746f8cf5-0874-4e3b-881d-b47fef77b6c9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11944" ], "x-ms-correlation-request-id": [ - "9b3b4046-2550-4d91-aeba-a712bc9ff01f" + "92e2ad9a-0792-4cbe-9a6f-e911f608473c" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043649Z:9b3b4046-2550-4d91-aeba-a712bc9ff01f" + "WESTUS:20200924T053400Z:92e2ad9a-0792-4cbe-9a6f-e911f608473c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:36:48 GMT" + "Thu, 24 Sep 2020 05:33:59 GMT" ], "Content-Length": [ - "618" + "108" ], "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334\",\r\n \"name\": \"53510890-a06b-4e5a-8c5f-738581911334\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"West Europe\",\r\n \"properties\": {\r\n \"partnerServer\": \"ps2767\",\r\n \"partnerDatabase\": \"ps8331\",\r\n \"partnerLocation\": \"West Europe\",\r\n \"role\": \"Secondary\",\r\n \"partnerRole\": \"Primary\",\r\n \"replicationMode\": \"ASYNC\",\r\n \"startTime\": \"2020-09-14T04:35:53.31\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2b35f6b-6e80-4823-bf14-816855f6d722\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:29:55.717Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3M/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a2b35f6b-6e80-4823-bf14-816855f6d722?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9hMmIzNWY2Yi02ZTgwLTQ4MjMtYmYxNC04MTY4NTVmNmQ3MjI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, "ResponseHeaders": { "Cache-Control": [ - "no-store, no-cache" - ], - "x-ms-request-id": [ - "d5f488ff-4f21-405c-a527-2d9b0882f4bc" + "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" + "Pragma": [ + "no-cache" ], - "DataServiceVersion": [ - "3.0;" + "Retry-After": [ + "15" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-request-id": [ + "1b234c55-2c53-49c8-80fc-30af6ea91fec" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11943" ], "x-ms-correlation-request-id": [ - "fba83eee-21e5-417d-bd3c-bf8f340bc895" + "e6a43266-3772-4852-b02f-506176f7a896" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043650Z:fba83eee-21e5-417d-bd3c-bf8f340bc895" + "WESTUS:20200924T053415Z:e6a43266-3772-4852-b02f-506176f7a896" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:36:49 GMT" + "Thu, 24 Sep 2020 05:34:14 GMT" ], "Content-Length": [ - "618" + "108" ], "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334\",\r\n \"name\": \"53510890-a06b-4e5a-8c5f-738581911334\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"West Europe\",\r\n \"properties\": {\r\n \"partnerServer\": \"ps2767\",\r\n \"partnerDatabase\": \"ps8331\",\r\n \"partnerLocation\": \"West Europe\",\r\n \"role\": \"Secondary\",\r\n \"partnerRole\": \"Primary\",\r\n \"replicationMode\": \"ASYNC\",\r\n \"startTime\": \"2020-09-14T04:35:53.31\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2b35f6b-6e80-4823-bf14-816855f6d722\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:29:55.717Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/failover?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L2ZhaWxvdmVyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a2b35f6b-6e80-4823-bf14-816855f6d722?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9hMmIzNWY2Yi02ZTgwLTQ4MjMtYmYxNC04MTY4NTVmNmQ3MjI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, "ResponseHeaders": { "Cache-Control": [ - "no-store, no-cache" + "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "Pragma": [ + "no-cache" ], "Retry-After": [ - "5" + "15" ], "x-ms-request-id": [ - "680dcd11-2d35-47de-a217-0a0b85c3074f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Preference-Applied": [ - "return-content" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "d393536d-e0dc-4db4-9f0f-adb6c61d7780" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11942" ], "x-ms-correlation-request-id": [ - "a5854237-c6ac-448e-b750-40b44460c8f9" + "5de0bfc3-824a-4513-973d-7960619b45e3" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043650Z:a5854237-c6ac-448e-b750-40b44460c8f9" + "WESTUS:20200924T053430Z:5de0bfc3-824a-4513-973d-7960619b45e3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:36:49 GMT" + "Thu, 24 Sep 2020 05:34:30 GMT" ], "Content-Length": [ - "76" + "108" ], "Content-Type": [ - "application/json" + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 + "ResponseBody": "{\r\n \"name\": \"a2b35f6b-6e80-4823-bf14-816855f6d722\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:29:55.717Z\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a2b35f6b-6e80-4823-bf14-816855f6d722?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9hMmIzNWY2Yi02ZTgwLTQ4MjMtYmYxNC04MTY4NTVmNmQ3MjI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, "ResponseHeaders": { "Cache-Control": [ - "no-store, no-cache" + "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "Pragma": [ + "no-cache" ], "Retry-After": [ - "5" + "15" ], "x-ms-request-id": [ - "d82b1f24-2ea5-414c-b3e4-e357397cdb72" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "dc676fd4-f9e9-44f3-b193-c66d6f481457" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11941" ], "x-ms-correlation-request-id": [ - "16c9c01e-51b6-4b06-bc71-c834cee17132" + "f285a0af-68fe-46a9-9c8d-b0f801e1e965" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043650Z:16c9c01e-51b6-4b06-bc71-c834cee17132" + "WESTUS:20200924T053445Z:f285a0af-68fe-46a9-9c8d-b0f801e1e965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:36:49 GMT" + "Thu, 24 Sep 2020 05:34:45 GMT" ], "Content-Length": [ - "76" + "108" ], "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 + "ResponseBody": "{\r\n \"name\": \"a2b35f6b-6e80-4823-bf14-816855f6d722\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:29:55.717Z\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a2b35f6b-6e80-4823-bf14-816855f6d722?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9hMmIzNWY2Yi02ZTgwLTQ4MjMtYmYxNC04MTY4NTVmNmQ3MjI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, "ResponseHeaders": { "Cache-Control": [ - "no-store, no-cache" + "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "Pragma": [ + "no-cache" ], "Retry-After": [ - "5" + "15" ], "x-ms-request-id": [ - "d47906f7-6a56-46cc-b3ce-62beb6c8f3d9" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "7208652c-7627-4cb3-992e-fd63a11fc804" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11940" ], "x-ms-correlation-request-id": [ - "aec060c1-6222-4b39-aadf-32fead09efb4" + "54526344-d9c3-4000-a759-f24ea1b0ade1" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043650Z:aec060c1-6222-4b39-aadf-32fead09efb4" + "WESTUS:20200924T053500Z:54526344-d9c3-4000-a759-f24ea1b0ade1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:36:50 GMT" + "Thu, 24 Sep 2020 05:35:00 GMT" ], "Content-Length": [ - "76" + "108" ], "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 + "ResponseBody": "{\r\n \"name\": \"a2b35f6b-6e80-4823-bf14-816855f6d722\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:29:55.717Z\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a2b35f6b-6e80-4823-bf14-816855f6d722?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9hMmIzNWY2Yi02ZTgwLTQ4MjMtYmYxNC04MTY4NTVmNmQ3MjI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, "ResponseHeaders": { "Cache-Control": [ - "no-store, no-cache" + "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "Pragma": [ + "no-cache" ], "Retry-After": [ - "5" + "15" ], "x-ms-request-id": [ - "e659b30a-38fa-44e4-b841-27b2bec7c611" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "80e8cd2b-4556-4694-8e6c-7853c44ae9fd" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11939" ], "x-ms-correlation-request-id": [ - "412b4fe9-5575-4056-b2b7-2e25494ac28b" + "4fbc9566-4567-4a43-b194-3075768bd583" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043651Z:412b4fe9-5575-4056-b2b7-2e25494ac28b" + "WESTUS:20200924T053516Z:4fbc9566-4567-4a43-b194-3075768bd583" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:36:50 GMT" + "Thu, 24 Sep 2020 05:35:15 GMT" ], "Content-Length": [ - "76" + "108" ], "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 + "ResponseBody": "{\r\n \"name\": \"a2b35f6b-6e80-4823-bf14-816855f6d722\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:29:55.717Z\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a2b35f6b-6e80-4823-bf14-816855f6d722?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9hMmIzNWY2Yi02ZTgwLTQ4MjMtYmYxNC04MTY4NTVmNmQ3MjI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, "ResponseHeaders": { "Cache-Control": [ - "no-store, no-cache" + "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "Pragma": [ + "no-cache" ], "Retry-After": [ - "5" + "15" ], "x-ms-request-id": [ - "9b816347-86ea-4188-8842-32f6fe4dbc5b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "2b9e8a21-400f-4303-af38-555e11f8b89f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11938" ], "x-ms-correlation-request-id": [ - "c41471c2-fdf7-4b4e-8f80-703253775e9f" + "84c7be7e-d03c-4308-a107-a177b0cbdf14" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043651Z:c41471c2-fdf7-4b4e-8f80-703253775e9f" + "WESTUS:20200924T053531Z:84c7be7e-d03c-4308-a107-a177b0cbdf14" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:36:50 GMT" + "Thu, 24 Sep 2020 05:35:30 GMT" ], "Content-Length": [ - "76" + "108" ], "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 + "ResponseBody": "{\r\n \"name\": \"a2b35f6b-6e80-4823-bf14-816855f6d722\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:29:55.717Z\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a2b35f6b-6e80-4823-bf14-816855f6d722?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9hMmIzNWY2Yi02ZTgwLTQ4MjMtYmYxNC04MTY4NTVmNmQ3MjI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, "ResponseHeaders": { "Cache-Control": [ - "no-store, no-cache" + "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "Pragma": [ + "no-cache" ], "Retry-After": [ - "5" + "15" ], "x-ms-request-id": [ - "b6b2e072-524f-4437-a05b-93c753947206" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "fd0e3c5a-0d2f-4b55-8ea8-2fd9bb40829f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11937" ], "x-ms-correlation-request-id": [ - "8fb1a722-656f-4acc-84ed-200ab0d132d9" + "3f0e1edb-bb17-4a3f-a2e5-dd0353a342d7" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043651Z:8fb1a722-656f-4acc-84ed-200ab0d132d9" + "WESTUS:20200924T053546Z:3f0e1edb-bb17-4a3f-a2e5-dd0353a342d7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:36:50 GMT" + "Thu, 24 Sep 2020 05:35:45 GMT" ], "Content-Length": [ - "76" + "108" ], "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 + "ResponseBody": "{\r\n \"name\": \"a2b35f6b-6e80-4823-bf14-816855f6d722\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:29:55.717Z\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a2b35f6b-6e80-4823-bf14-816855f6d722?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9hMmIzNWY2Yi02ZTgwLTQ4MjMtYmYxNC04MTY4NTVmNmQ3MjI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, "ResponseHeaders": { "Cache-Control": [ - "no-store, no-cache" + "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "Pragma": [ + "no-cache" ], "Retry-After": [ - "5" + "15" ], "x-ms-request-id": [ - "845e1d80-96a1-4960-b911-40d7b9b9efb6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "cd2e0a72-7977-48c6-9a54-86634451427e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11936" ], "x-ms-correlation-request-id": [ - "d473adee-6961-4a38-9ae3-39431d897e8d" + "4ff95099-a160-44e1-868f-1ed4a58cc579" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043651Z:d473adee-6961-4a38-9ae3-39431d897e8d" + "WESTUS:20200924T053601Z:4ff95099-a160-44e1-868f-1ed4a58cc579" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:36:50 GMT" + "Thu, 24 Sep 2020 05:36:00 GMT" ], "Content-Length": [ - "76" + "108" ], "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 + "ResponseBody": "{\r\n \"name\": \"a2b35f6b-6e80-4823-bf14-816855f6d722\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:29:55.717Z\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a2b35f6b-6e80-4823-bf14-816855f6d722?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9hMmIzNWY2Yi02ZTgwLTQ4MjMtYmYxNC04MTY4NTVmNmQ3MjI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, "ResponseHeaders": { "Cache-Control": [ - "no-store, no-cache" + "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "Pragma": [ + "no-cache" ], "Retry-After": [ - "5" + "15" ], "x-ms-request-id": [ - "0b08ce8d-c8ef-48ac-b603-e301152f824e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b418941a-16ba-4893-b810-fbfc36e73d3d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11935" ], "x-ms-correlation-request-id": [ - "ef8b6884-d79e-4ddb-ae2e-352ef3ffe0e7" + "2d6236f4-9ead-4f60-af83-b73d4fafa4b3" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043651Z:ef8b6884-d79e-4ddb-ae2e-352ef3ffe0e7" + "WESTUS:20200924T053617Z:2d6236f4-9ead-4f60-af83-b73d4fafa4b3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:36:51 GMT" + "Thu, 24 Sep 2020 05:36:16 GMT" ], "Content-Length": [ - "76" + "108" ], "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 + "ResponseBody": "{\r\n \"name\": \"a2b35f6b-6e80-4823-bf14-816855f6d722\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:29:55.717Z\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a2b35f6b-6e80-4823-bf14-816855f6d722?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9hMmIzNWY2Yi02ZTgwLTQ4MjMtYmYxNC04MTY4NTVmNmQ3MjI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, "ResponseHeaders": { "Cache-Control": [ - "no-store, no-cache" + "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "Pragma": [ + "no-cache" ], "Retry-After": [ - "5" + "15" ], "x-ms-request-id": [ - "07782614-5e56-4c80-9a58-e30f53f5890f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "0710ec55-58d0-4d73-a09e-135250a9cd92" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11934" ], "x-ms-correlation-request-id": [ - "0a0b56c3-0175-4eae-b814-cc26d1a18644" + "c5c784d4-fc19-476f-bfec-36374608ad05" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043652Z:0a0b56c3-0175-4eae-b814-cc26d1a18644" - ], - "Date": [ - "Mon, 14 Sep 2020 04:36:51 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "60323597-80a8-4fbd-81f3-8fce80d876a2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" + "WESTUS:20200924T053632Z:c5c784d4-fc19-476f-bfec-36374608ad05" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" - ], - "x-ms-correlation-request-id": [ - "46506d23-cf38-438e-a250-97bbaec75270" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043652Z:46506d23-cf38-438e-a250-97bbaec75270" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:36:51 GMT" + "Thu, 24 Sep 2020 05:36:32 GMT" ], "Content-Length": [ - "76" + "108" ], "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 + "ResponseBody": "{\r\n \"name\": \"a2b35f6b-6e80-4823-bf14-816855f6d722\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:29:55.717Z\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a2b35f6b-6e80-4823-bf14-816855f6d722?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9hMmIzNWY2Yi02ZTgwLTQ4MjMtYmYxNC04MTY4NTVmNmQ3MjI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, "ResponseHeaders": { "Cache-Control": [ - "no-store, no-cache" + "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "Pragma": [ + "no-cache" ], "Retry-After": [ - "5" + "15" ], "x-ms-request-id": [ - "f248c2e1-4500-4da5-a53b-788ce61993f8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "ef49e5a4-c69b-46c8-b653-e6af3c4d3b94" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11933" ], "x-ms-correlation-request-id": [ - "fceb6de2-5e8a-4584-ba1f-d125f9b68e1e" + "a3a0dd0b-9ffc-42b0-949a-902670858576" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043652Z:fceb6de2-5e8a-4584-ba1f-d125f9b68e1e" + "WESTUS:20200924T053647Z:a3a0dd0b-9ffc-42b0-949a-902670858576" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:36:51 GMT" + "Thu, 24 Sep 2020 05:36:47 GMT" ], "Content-Length": [ - "76" + "108" ], "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 + "ResponseBody": "{\r\n \"name\": \"a2b35f6b-6e80-4823-bf14-816855f6d722\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:29:55.717Z\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a2b35f6b-6e80-4823-bf14-816855f6d722?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9hMmIzNWY2Yi02ZTgwLTQ4MjMtYmYxNC04MTY4NTVmNmQ3MjI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, "ResponseHeaders": { "Cache-Control": [ - "no-store, no-cache" + "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "Pragma": [ + "no-cache" ], "Retry-After": [ - "5" + "15" ], "x-ms-request-id": [ - "64bad70c-b47b-4015-8b60-dfba711b0348" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "5249d6d2-6505-42ad-9908-15f051b63a9b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11932" ], "x-ms-correlation-request-id": [ - "6a97fb91-d334-4f09-9d26-77cd30d2adf9" + "321eda60-19c6-42a3-a0b2-27bcaa063770" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043652Z:6a97fb91-d334-4f09-9d26-77cd30d2adf9" + "WESTUS:20200924T053703Z:321eda60-19c6-42a3-a0b2-27bcaa063770" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:36:51 GMT" + "Thu, 24 Sep 2020 05:37:02 GMT" ], "Content-Length": [ - "76" + "108" ], "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 + "ResponseBody": "{\r\n \"name\": \"a2b35f6b-6e80-4823-bf14-816855f6d722\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:29:55.717Z\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a2b35f6b-6e80-4823-bf14-816855f6d722?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9hMmIzNWY2Yi02ZTgwLTQ4MjMtYmYxNC04MTY4NTVmNmQ3MjI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, "ResponseHeaders": { "Cache-Control": [ - "no-store, no-cache" + "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "Pragma": [ + "no-cache" ], "Retry-After": [ - "5" + "15" ], "x-ms-request-id": [ - "66a0b202-6df9-464e-ba5d-806347a5dd22" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "1de892c3-b0c6-4811-b38d-9e77d236f166" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11931" ], "x-ms-correlation-request-id": [ - "10a35df7-9558-4d0d-af86-88cfe58af79e" + "6828e666-23eb-4921-ad71-78991679fbb0" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043652Z:10a35df7-9558-4d0d-af86-88cfe58af79e" + "WESTUS:20200924T053718Z:6828e666-23eb-4921-ad71-78991679fbb0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:36:52 GMT" + "Thu, 24 Sep 2020 05:37:18 GMT" ], "Content-Length": [ - "76" + "108" ], "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 + "ResponseBody": "{\r\n \"name\": \"a2b35f6b-6e80-4823-bf14-816855f6d722\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:29:55.717Z\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a2b35f6b-6e80-4823-bf14-816855f6d722?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9hMmIzNWY2Yi02ZTgwLTQ4MjMtYmYxNC04MTY4NTVmNmQ3MjI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, "ResponseHeaders": { "Cache-Control": [ - "no-store, no-cache" + "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "Pragma": [ + "no-cache" ], "Retry-After": [ - "5" + "15" ], "x-ms-request-id": [ - "37d60db1-5de3-49df-8ed6-ff4f4bf12bd6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "9a729ce4-b58e-4b07-8011-c2459437e20a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11930" ], "x-ms-correlation-request-id": [ - "035a1392-24a7-4ea9-a3bc-d91adc42dfb3" + "b025d35a-b134-4fd2-a107-ae3fed7b466a" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043653Z:035a1392-24a7-4ea9-a3bc-d91adc42dfb3" + "WESTUS:20200924T053733Z:b025d35a-b134-4fd2-a107-ae3fed7b466a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:36:52 GMT" + "Thu, 24 Sep 2020 05:37:33 GMT" ], "Content-Length": [ - "76" + "108" ], "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 + "ResponseBody": "{\r\n \"name\": \"a2b35f6b-6e80-4823-bf14-816855f6d722\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:29:55.717Z\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a2b35f6b-6e80-4823-bf14-816855f6d722?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9hMmIzNWY2Yi02ZTgwLTQ4MjMtYmYxNC04MTY4NTVmNmQ3MjI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, "ResponseHeaders": { "Cache-Control": [ - "no-store, no-cache" + "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "Pragma": [ + "no-cache" ], "Retry-After": [ - "5" + "15" ], "x-ms-request-id": [ - "c77cafa0-d407-41b1-bd0d-d6501ce6a2eb" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "d7f2ae8d-d6c2-4519-85de-300fafc3d7de" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11929" ], "x-ms-correlation-request-id": [ - "9ed65726-5e37-4939-8224-9bd142bc533c" + "f39e3c4d-8770-46d9-aa48-74f5140d9d5d" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043653Z:9ed65726-5e37-4939-8224-9bd142bc533c" - ], - "Date": [ - "Mon, 14 Sep 2020 04:36:52 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "53935ead-e5ba-41b9-bab1-6742f5f965c8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" - ], - "x-ms-correlation-request-id": [ - "079908eb-52b5-4e25-93d5-3bc637150260" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043653Z:079908eb-52b5-4e25-93d5-3bc637150260" - ], - "Date": [ - "Mon, 14 Sep 2020 04:36:52 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "520b5b8f-557b-4bb8-a1db-0d64e7c9abf8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" - ], - "x-ms-correlation-request-id": [ - "fbc6a4e6-437a-464b-afdc-1b04b6b8ce5d" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043653Z:fbc6a4e6-437a-464b-afdc-1b04b6b8ce5d" - ], - "Date": [ - "Mon, 14 Sep 2020 04:36:52 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "da902bb1-4668-42bd-8084-db909941c6ef" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" - ], - "x-ms-correlation-request-id": [ - "c5595fbf-fa13-4776-9443-00ef28778104" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043654Z:c5595fbf-fa13-4776-9443-00ef28778104" - ], - "Date": [ - "Mon, 14 Sep 2020 04:36:53 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "3242b754-593b-4f15-b3ec-77a4a06ee7a2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" - ], - "x-ms-correlation-request-id": [ - "357470ca-b191-4c0f-8e92-476946f5c721" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043654Z:357470ca-b191-4c0f-8e92-476946f5c721" - ], - "Date": [ - "Mon, 14 Sep 2020 04:36:53 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "c760b6eb-7ca4-4fca-a514-46157f2d689f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" - ], - "x-ms-correlation-request-id": [ - "2126cb95-fecb-4903-a3a1-49bba2d20a55" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043654Z:2126cb95-fecb-4903-a3a1-49bba2d20a55" - ], - "Date": [ - "Mon, 14 Sep 2020 04:36:53 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "8f6ddf31-d177-4873-a16b-6f80e7603dba" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" - ], - "x-ms-correlation-request-id": [ - "104b17f2-aa18-44f8-9cb7-187352fc397e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043654Z:104b17f2-aa18-44f8-9cb7-187352fc397e" - ], - "Date": [ - "Mon, 14 Sep 2020 04:36:53 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "6d59fdf0-c401-48bf-b342-46c45f654d74" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" - ], - "x-ms-correlation-request-id": [ - "9e335f60-f518-4f3c-95e1-2705fc0f211b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043654Z:9e335f60-f518-4f3c-95e1-2705fc0f211b" - ], - "Date": [ - "Mon, 14 Sep 2020 04:36:54 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "548a9234-7a49-4306-8d93-a92262f613c6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" - ], - "x-ms-correlation-request-id": [ - "31fe8082-d460-4589-8d08-abda47dc19bc" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043655Z:31fe8082-d460-4589-8d08-abda47dc19bc" - ], - "Date": [ - "Mon, 14 Sep 2020 04:36:54 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "06f78689-3d18-49fc-82a7-31a624c596af" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" - ], - "x-ms-correlation-request-id": [ - "e8584549-5c44-4830-b37e-88a443a84b59" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043655Z:e8584549-5c44-4830-b37e-88a443a84b59" - ], - "Date": [ - "Mon, 14 Sep 2020 04:36:54 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "2d5c3d38-5e16-4779-a47a-8157e57335e8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" - ], - "x-ms-correlation-request-id": [ - "1ee76162-988c-41e2-86db-717d87e394fc" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043655Z:1ee76162-988c-41e2-86db-717d87e394fc" - ], - "Date": [ - "Mon, 14 Sep 2020 04:36:54 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "32741153-e109-47f4-a0b4-04876de46cf8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" - ], - "x-ms-correlation-request-id": [ - "514b4f45-b70b-47eb-a1ba-be21c07b90d2" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043655Z:514b4f45-b70b-47eb-a1ba-be21c07b90d2" - ], - "Date": [ - "Mon, 14 Sep 2020 04:36:54 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "da563bb0-1650-40d6-a696-da9c8daf02a2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" - ], - "x-ms-correlation-request-id": [ - "df9e430d-7eaf-4cc8-8c4a-ab0bb7ee0fb9" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043655Z:df9e430d-7eaf-4cc8-8c4a-ab0bb7ee0fb9" - ], - "Date": [ - "Mon, 14 Sep 2020 04:36:55 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "474ecd41-5f88-4a60-9b73-b4c7487db345" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" - ], - "x-ms-correlation-request-id": [ - "a274f710-117c-4139-aca4-4c174caeb697" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043656Z:a274f710-117c-4139-aca4-4c174caeb697" - ], - "Date": [ - "Mon, 14 Sep 2020 04:36:55 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "ff914697-2df9-4b1f-835f-d77329e4d3b5" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" - ], - "x-ms-correlation-request-id": [ - "bd17896b-15dd-41f8-b3e0-f5a0c2819519" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043656Z:bd17896b-15dd-41f8-b3e0-f5a0c2819519" - ], - "Date": [ - "Mon, 14 Sep 2020 04:36:55 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "930d1852-4898-498e-a109-13fdc876df77" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" - ], - "x-ms-correlation-request-id": [ - "55560bd2-2a7e-4797-a2df-69802a002b4e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043656Z:55560bd2-2a7e-4797-a2df-69802a002b4e" - ], - "Date": [ - "Mon, 14 Sep 2020 04:36:55 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "60410879-dfb8-4866-ae84-4ca940604579" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" - ], - "x-ms-correlation-request-id": [ - "ff101beb-9c69-4066-bd77-6961b653b8b3" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043656Z:ff101beb-9c69-4066-bd77-6961b653b8b3" - ], - "Date": [ - "Mon, 14 Sep 2020 04:36:55 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "88e1e894-f710-4815-9679-35150451408d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" - ], - "x-ms-correlation-request-id": [ - "3a2d5243-55e6-4cba-aa11-408fb8197dc6" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043657Z:3a2d5243-55e6-4cba-aa11-408fb8197dc6" - ], - "Date": [ - "Mon, 14 Sep 2020 04:36:56 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "2c30b3ff-0687-457b-a278-227aaa663b96" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" - ], - "x-ms-correlation-request-id": [ - "43c39872-07ba-4633-9213-a9cb380209f3" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043657Z:43c39872-07ba-4633-9213-a9cb380209f3" - ], - "Date": [ - "Mon, 14 Sep 2020 04:36:56 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "353ea513-dbc5-4649-acab-3405fdbee01d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" - ], - "x-ms-correlation-request-id": [ - "728dd00d-dcae-4ea3-9230-73a45dcb3031" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043657Z:728dd00d-dcae-4ea3-9230-73a45dcb3031" - ], - "Date": [ - "Mon, 14 Sep 2020 04:36:56 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "06f7fa05-b288-4f12-9ab6-00bf05c4b4b2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" - ], - "x-ms-correlation-request-id": [ - "d8ab5d5e-d044-47f2-a312-c14bd29887be" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043657Z:d8ab5d5e-d044-47f2-a312-c14bd29887be" - ], - "Date": [ - "Mon, 14 Sep 2020 04:36:56 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "dccad56f-939d-49cf-9700-b434ec1e5d6a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11952" - ], - "x-ms-correlation-request-id": [ - "0b49c765-c3e0-4d08-97cb-e08c5bfc6f68" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043657Z:0b49c765-c3e0-4d08-97cb-e08c5bfc6f68" - ], - "Date": [ - "Mon, 14 Sep 2020 04:36:56 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "2724c7a5-66b1-4704-bea3-ca3996530512" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11951" - ], - "x-ms-correlation-request-id": [ - "f3c95fdd-f0d2-4397-9485-36ee98559fe7" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043658Z:f3c95fdd-f0d2-4397-9485-36ee98559fe7" - ], - "Date": [ - "Mon, 14 Sep 2020 04:36:57 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "333b2c97-df06-4d6d-acdf-7a3df828450d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11950" - ], - "x-ms-correlation-request-id": [ - "16b963f3-5e45-436d-ade6-39082774e57d" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043658Z:16b963f3-5e45-436d-ade6-39082774e57d" - ], - "Date": [ - "Mon, 14 Sep 2020 04:36:57 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "cfb385ce-2fef-4d8f-89b2-38380b0887a2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11949" - ], - "x-ms-correlation-request-id": [ - "ccff9349-4fac-422c-94be-ecc569a28e7b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043658Z:ccff9349-4fac-422c-94be-ecc569a28e7b" - ], - "Date": [ - "Mon, 14 Sep 2020 04:36:57 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "a961aa9f-287e-4799-ae41-b088a127ad18" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11948" - ], - "x-ms-correlation-request-id": [ - "a6caad41-abe3-4def-bf2d-2838af19878e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043658Z:a6caad41-abe3-4def-bf2d-2838af19878e" - ], - "Date": [ - "Mon, 14 Sep 2020 04:36:57 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "666bca82-f9a2-47ca-b211-575e5fb3b097" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11947" - ], - "x-ms-correlation-request-id": [ - "db68f712-7c15-4cad-a1a9-05b0a9c18ef8" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043658Z:db68f712-7c15-4cad-a1a9-05b0a9c18ef8" - ], - "Date": [ - "Mon, 14 Sep 2020 04:36:58 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "1f9e28c4-e479-417b-b414-50d426f4073b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11946" - ], - "x-ms-correlation-request-id": [ - "897173ee-d9bd-4295-85ae-f9c0768345cd" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043659Z:897173ee-d9bd-4295-85ae-f9c0768345cd" - ], - "Date": [ - "Mon, 14 Sep 2020 04:36:58 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "603185d6-3719-400d-8d65-dc4ae1df31b8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11945" - ], - "x-ms-correlation-request-id": [ - "beabb8c4-2a3d-4615-986a-c93ae33f5562" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043659Z:beabb8c4-2a3d-4615-986a-c93ae33f5562" - ], - "Date": [ - "Mon, 14 Sep 2020 04:36:58 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "fbc65586-087c-408f-bab6-6bfb18baf157" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11944" - ], - "x-ms-correlation-request-id": [ - "740e636c-fbfc-48b1-868f-fc7691fe818e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043659Z:740e636c-fbfc-48b1-868f-fc7691fe818e" - ], - "Date": [ - "Mon, 14 Sep 2020 04:36:58 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "7ec5adea-0435-429c-abca-884463d384ea" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11943" - ], - "x-ms-correlation-request-id": [ - "ac9d2aef-dc6b-48fd-a0be-05d6228f34a0" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043659Z:ac9d2aef-dc6b-48fd-a0be-05d6228f34a0" - ], - "Date": [ - "Mon, 14 Sep 2020 04:36:58 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "f600c34b-dc61-4e15-ae06-73b441334ef8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11942" - ], - "x-ms-correlation-request-id": [ - "9db7db2d-fe65-4ae6-b19b-1fa38fedb288" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043659Z:9db7db2d-fe65-4ae6-b19b-1fa38fedb288" - ], - "Date": [ - "Mon, 14 Sep 2020 04:36:59 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "6fcedf0e-d559-4ca8-a94f-305bad23e701" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11941" - ], - "x-ms-correlation-request-id": [ - "fc64a686-3433-4c93-a150-6d21e9e14ff3" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043700Z:fc64a686-3433-4c93-a150-6d21e9e14ff3" - ], - "Date": [ - "Mon, 14 Sep 2020 04:36:59 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "4ed68613-3f13-4c7b-aabc-8b7e812b2411" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11940" - ], - "x-ms-correlation-request-id": [ - "f6aefbca-38a4-4c7d-b718-62b590b8a7ef" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043700Z:f6aefbca-38a4-4c7d-b718-62b590b8a7ef" - ], - "Date": [ - "Mon, 14 Sep 2020 04:36:59 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "2455919e-98aa-4be0-907d-73b183ae3358" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11939" - ], - "x-ms-correlation-request-id": [ - "b2013ef7-e6d4-4a56-a637-0a921370f8df" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043700Z:b2013ef7-e6d4-4a56-a637-0a921370f8df" - ], - "Date": [ - "Mon, 14 Sep 2020 04:36:59 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "19c66f7a-5268-438e-9bca-8d9bc844dc2e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11938" - ], - "x-ms-correlation-request-id": [ - "d86dc98a-fb33-446c-abe8-e39bbd860e65" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043700Z:d86dc98a-fb33-446c-abe8-e39bbd860e65" - ], - "Date": [ - "Mon, 14 Sep 2020 04:36:59 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "cf5a0aa5-b190-4d43-be2e-d713499c1ea1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11937" - ], - "x-ms-correlation-request-id": [ - "a69f7094-ec90-485f-9f89-a55f7caadd70" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043701Z:a69f7094-ec90-485f-9f89-a55f7caadd70" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:00 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "2d5e8d0f-c51f-440a-bede-c4f556b7f262" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11936" - ], - "x-ms-correlation-request-id": [ - "1a4e5109-f5d5-4c10-935a-28af7174ee5a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043701Z:1a4e5109-f5d5-4c10-935a-28af7174ee5a" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:00 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "4bb51da0-6ff5-490f-be2b-289b9aef6b40" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11935" - ], - "x-ms-correlation-request-id": [ - "df4c58cc-b3da-4fb7-b673-e490d784c65a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043701Z:df4c58cc-b3da-4fb7-b673-e490d784c65a" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:00 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "41cc9e2a-3e34-44c1-9fb9-7a04f11d4884" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11934" - ], - "x-ms-correlation-request-id": [ - "09a68568-08fd-4977-8673-cec2d728c4d1" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043701Z:09a68568-08fd-4977-8673-cec2d728c4d1" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:00 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "1b861176-a1b3-43fc-bf07-916b0cc167c0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11933" - ], - "x-ms-correlation-request-id": [ - "a35d5a9c-cf1e-42f8-93f2-8a64f80b49dc" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043701Z:a35d5a9c-cf1e-42f8-93f2-8a64f80b49dc" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:01 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "f913daf5-3693-4979-acaa-e2ee90508564" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11932" - ], - "x-ms-correlation-request-id": [ - "39fd6027-f1ee-43b3-b93a-53d1919e802f" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043702Z:39fd6027-f1ee-43b3-b93a-53d1919e802f" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:01 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "b21d9701-d674-4fc5-a17b-03ec0f50486e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11931" - ], - "x-ms-correlation-request-id": [ - "39e9b123-8929-4ca5-aab0-fc75ff20a98a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043702Z:39e9b123-8929-4ca5-aab0-fc75ff20a98a" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:01 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "cbeccf45-f25c-4a83-9ff1-d7da476a8308" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11930" - ], - "x-ms-correlation-request-id": [ - "37a194f7-bddd-4d64-bcbc-4b5951de3d4b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043702Z:37a194f7-bddd-4d64-bcbc-4b5951de3d4b" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:01 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "ea129ac1-ef4c-4616-9106-d8a6c2e9520f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11929" - ], - "x-ms-correlation-request-id": [ - "00e5c6e6-7bbb-47bc-856e-0173b9f09379" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043702Z:00e5c6e6-7bbb-47bc-856e-0173b9f09379" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:01 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "1acc397c-a1d5-4128-bc0c-764c46aa877e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11928" - ], - "x-ms-correlation-request-id": [ - "3da5ba8c-29c7-4b97-ab72-1d6b57dae177" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043702Z:3da5ba8c-29c7-4b97-ab72-1d6b57dae177" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:02 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "7a62302f-e0b3-4cf9-ab88-7587730eedc7" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11927" - ], - "x-ms-correlation-request-id": [ - "809674b0-156e-4dcf-a158-e527fda96314" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043703Z:809674b0-156e-4dcf-a158-e527fda96314" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:02 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "5afeaeae-3ce6-4364-9ac3-a8c8ff4af680" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11926" - ], - "x-ms-correlation-request-id": [ - "e7ce0500-f141-4f7d-b5af-0c2a65ad7f38" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043703Z:e7ce0500-f141-4f7d-b5af-0c2a65ad7f38" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:02 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "ebdd4633-e97c-4238-977e-5d87668a0bc1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11925" - ], - "x-ms-correlation-request-id": [ - "eb6bf63e-ddee-4948-b863-bc06b190ccf9" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043703Z:eb6bf63e-ddee-4948-b863-bc06b190ccf9" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:02 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "e8df0940-1b29-4bef-9629-2a4779703d4f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11924" - ], - "x-ms-correlation-request-id": [ - "27ec8304-a9ce-468c-96df-3dccda7cacde" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043703Z:27ec8304-a9ce-468c-96df-3dccda7cacde" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:02 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "3c27d052-28d7-46a8-8163-3e83e0705b19" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11923" - ], - "x-ms-correlation-request-id": [ - "55431905-2ced-4ff6-892a-994b43b6c0c6" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043703Z:55431905-2ced-4ff6-892a-994b43b6c0c6" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:03 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "9448a1a6-f88b-4b8d-9f6b-acd88f80b069" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11922" - ], - "x-ms-correlation-request-id": [ - "5c1b95c3-7665-48a4-a09b-eaae5a31df81" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043704Z:5c1b95c3-7665-48a4-a09b-eaae5a31df81" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:03 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "f6c47c04-acce-4eef-9de6-660924305867" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11921" - ], - "x-ms-correlation-request-id": [ - "0609ec9f-6643-49bb-ad9e-6659b4fab17c" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043704Z:0609ec9f-6643-49bb-ad9e-6659b4fab17c" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:03 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "2023b834-adcb-44af-85d4-4d4e55e5b9f1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11920" - ], - "x-ms-correlation-request-id": [ - "d5066881-bba8-4e02-9de2-6a5b9c535ed3" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043704Z:d5066881-bba8-4e02-9de2-6a5b9c535ed3" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:03 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "f8118dba-038a-4964-93e3-75d729cb37a7" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11919" - ], - "x-ms-correlation-request-id": [ - "ca5f6350-56ae-4d5c-978b-f9f2091c278c" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043704Z:ca5f6350-56ae-4d5c-978b-f9f2091c278c" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:03 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "b504a06d-afb8-4286-bc39-cde85e7cc193" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11918" - ], - "x-ms-correlation-request-id": [ - "81e47386-2382-418a-be52-7e39e4cbb315" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043705Z:81e47386-2382-418a-be52-7e39e4cbb315" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:04 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "75fe8564-525c-4a21-a740-1aee84855b81" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11917" - ], - "x-ms-correlation-request-id": [ - "2cc2c154-ed76-4d6d-8b7d-b8dcbd72844e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043705Z:2cc2c154-ed76-4d6d-8b7d-b8dcbd72844e" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:04 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "272b6b5f-3490-4347-a440-dc1f5bdd0cf6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11916" - ], - "x-ms-correlation-request-id": [ - "510d268f-7bac-4b07-b6bd-33cf6b095393" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043705Z:510d268f-7bac-4b07-b6bd-33cf6b095393" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:04 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "3e1ddfff-8c9d-4257-b6d8-9f60a00d9d0a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11915" - ], - "x-ms-correlation-request-id": [ - "4ce61186-0f51-439c-82f7-270585746139" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043705Z:4ce61186-0f51-439c-82f7-270585746139" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:04 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "7aa9e0dd-1e25-4aac-9628-a9880959358b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11914" - ], - "x-ms-correlation-request-id": [ - "fd67a6f7-df00-4bcc-9691-d831bb3619a5" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043705Z:fd67a6f7-df00-4bcc-9691-d831bb3619a5" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:05 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "ec552e96-bf81-4389-8234-3a032e93b6fa" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11913" - ], - "x-ms-correlation-request-id": [ - "2e88dc4c-b65d-419a-9ba5-2490a0faca6c" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043706Z:2e88dc4c-b65d-419a-9ba5-2490a0faca6c" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:05 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "2601b486-1363-47fb-aed7-eab0eacd8237" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11912" - ], - "x-ms-correlation-request-id": [ - "709405a0-68a3-4b59-b191-322b31473eae" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043706Z:709405a0-68a3-4b59-b191-322b31473eae" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:05 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "5824c6bf-263b-4701-95c3-634c56eaf9de" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11911" - ], - "x-ms-correlation-request-id": [ - "df0d2083-5b93-4da9-8849-5a4413ddf39a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043706Z:df0d2083-5b93-4da9-8849-5a4413ddf39a" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:05 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "f2a59e01-c602-4282-89ae-9b841e24c943" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11910" - ], - "x-ms-correlation-request-id": [ - "b2a66ff4-8670-4538-965a-2b30271edf84" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043706Z:b2a66ff4-8670-4538-965a-2b30271edf84" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:05 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "045d2955-0768-4342-b79d-e2f8bc19e1a6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11909" - ], - "x-ms-correlation-request-id": [ - "fe15eb93-529f-467f-8f60-b4bad2251627" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043706Z:fe15eb93-529f-467f-8f60-b4bad2251627" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:06 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "6051d122-2171-48be-ba23-e40b936dc9bd" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11908" - ], - "x-ms-correlation-request-id": [ - "8f2e5536-3214-4e79-8658-468d6473b7f0" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043707Z:8f2e5536-3214-4e79-8658-468d6473b7f0" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:06 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "9d074cef-d606-4525-b9c9-1835441cca48" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11907" - ], - "x-ms-correlation-request-id": [ - "8ec7e24d-b72a-4a35-84cb-4a268cb59ecd" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043707Z:8ec7e24d-b72a-4a35-84cb-4a268cb59ecd" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:06 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "b44b10cb-ecd4-49b9-bc00-8dfafc22e52c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11906" - ], - "x-ms-correlation-request-id": [ - "bbe25bcd-620f-43c2-b148-4421f8548788" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043707Z:bbe25bcd-620f-43c2-b148-4421f8548788" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:06 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "6372eaa5-7609-4224-bd65-c4aacaf17d17" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11905" - ], - "x-ms-correlation-request-id": [ - "1dffd628-ec98-4cf9-95f6-08edf793e97e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043707Z:1dffd628-ec98-4cf9-95f6-08edf793e97e" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:06 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "1d0fab33-6956-4186-86e9-9c996852dda8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11904" - ], - "x-ms-correlation-request-id": [ - "8b0c73cc-d879-43ad-834d-84acf7390cac" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043708Z:8b0c73cc-d879-43ad-834d-84acf7390cac" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:07 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "e2004440-c606-479c-ab54-a2dcfcaf18f2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11903" - ], - "x-ms-correlation-request-id": [ - "fd18ace2-7971-49c8-aed7-72c305c56b78" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043708Z:fd18ace2-7971-49c8-aed7-72c305c56b78" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:07 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "bf16ed77-1315-41c3-b9bf-baacc8ce0208" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11902" - ], - "x-ms-correlation-request-id": [ - "6eabe3c1-db8c-46bd-8854-4b9f809e2e3d" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043708Z:6eabe3c1-db8c-46bd-8854-4b9f809e2e3d" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:07 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "e9d0b6bb-57ef-474b-a216-7c045a30d348" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11901" - ], - "x-ms-correlation-request-id": [ - "d48c5b87-bd46-4c5d-83d0-3379b3ed4a8d" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043708Z:d48c5b87-bd46-4c5d-83d0-3379b3ed4a8d" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:07 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "1d1634f9-1dc3-4494-ba43-ae299cf2920d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11900" - ], - "x-ms-correlation-request-id": [ - "bb47a8d7-edf7-41ae-b5bc-9f4814c29112" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043708Z:bb47a8d7-edf7-41ae-b5bc-9f4814c29112" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:07 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "a700672a-724e-42a9-a637-69d56f7baf52" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11899" - ], - "x-ms-correlation-request-id": [ - "40d8e6e2-03f2-431c-88ea-f3d68335f8db" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043709Z:40d8e6e2-03f2-431c-88ea-f3d68335f8db" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:08 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "18c89c26-d993-490c-a881-4529c006845d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11898" - ], - "x-ms-correlation-request-id": [ - "41551a1e-4d0e-434a-8a72-2c024236c530" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043709Z:41551a1e-4d0e-434a-8a72-2c024236c530" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:08 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "149ed129-4ca0-449c-8b7d-b83c12a9a633" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11897" - ], - "x-ms-correlation-request-id": [ - "ebb95494-2f05-4a7c-a0e7-b4948f6b8c8c" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043709Z:ebb95494-2f05-4a7c-a0e7-b4948f6b8c8c" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:08 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "24671cc3-7acb-4088-bc60-e5da9cf421b6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11896" - ], - "x-ms-correlation-request-id": [ - "c02c9d91-2b8c-4848-8fdb-814af797e699" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043709Z:c02c9d91-2b8c-4848-8fdb-814af797e699" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:08 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "68e60cef-0fe2-4584-95a8-ca93a6e7f246" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11895" - ], - "x-ms-correlation-request-id": [ - "2bd598a6-6971-490b-a759-9ba02020d3b4" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043709Z:2bd598a6-6971-490b-a759-9ba02020d3b4" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:08 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "9fd20cea-8743-4ec9-a233-4a2ff0ebb570" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11894" - ], - "x-ms-correlation-request-id": [ - "2c4007ce-f3de-40d0-834a-d23c691cf9ff" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043710Z:2c4007ce-f3de-40d0-834a-d23c691cf9ff" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:09 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "c5d42232-dc8d-4e13-af10-4ef95725cf13" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11893" - ], - "x-ms-correlation-request-id": [ - "38a1004b-e17a-4e8f-bf71-7441c011d0bc" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043710Z:38a1004b-e17a-4e8f-bf71-7441c011d0bc" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:09 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "8a850f80-1337-41ac-90e4-bc9cefd4a696" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11892" - ], - "x-ms-correlation-request-id": [ - "f950289f-e6b5-45bf-93d5-065c952909b9" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043710Z:f950289f-e6b5-45bf-93d5-065c952909b9" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:09 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "d71af88a-2792-4d40-862b-7896ce2ba375" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11891" - ], - "x-ms-correlation-request-id": [ - "077af2d6-5b49-42cb-8f46-2bb676b4ae17" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043710Z:077af2d6-5b49-42cb-8f46-2bb676b4ae17" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:09 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "1d26541f-cd41-4db5-815b-790a028a40e3" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11890" - ], - "x-ms-correlation-request-id": [ - "75297e27-91ad-4f7d-a651-c64d2179ab69" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043710Z:75297e27-91ad-4f7d-a651-c64d2179ab69" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:09 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "56b12124-1420-4a99-b6bf-30d73d5de84c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11889" - ], - "x-ms-correlation-request-id": [ - "3488bb23-f359-43d6-87e3-2bd9b0a035bd" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043711Z:3488bb23-f359-43d6-87e3-2bd9b0a035bd" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:10 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "02c29d82-6d01-443a-8472-4436884fd953" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11888" - ], - "x-ms-correlation-request-id": [ - "c950283d-65ad-4fae-92f5-de95c9fcb036" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043711Z:c950283d-65ad-4fae-92f5-de95c9fcb036" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:10 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "ed9d9932-efe4-4bd6-b025-1300288cf34e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11887" - ], - "x-ms-correlation-request-id": [ - "a767d47e-946e-433c-a4b9-b1acf9a91ec5" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043711Z:a767d47e-946e-433c-a4b9-b1acf9a91ec5" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:10 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "21e33022-6462-4231-becd-8aa379e79616" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11886" - ], - "x-ms-correlation-request-id": [ - "8c3eb575-6b4a-4757-a274-bcde7be0c30a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043711Z:8c3eb575-6b4a-4757-a274-bcde7be0c30a" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:10 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "6b1e85ee-a7d4-4f1e-8274-fd7584e214aa" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11885" - ], - "x-ms-correlation-request-id": [ - "306c8788-a5bd-4687-a361-049249446a5e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043711Z:306c8788-a5bd-4687-a361-049249446a5e" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:11 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "a89db3d1-304e-4758-957f-2b03a71a4a80" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11884" - ], - "x-ms-correlation-request-id": [ - "15751d9f-3862-4f2e-9fd8-3e851f4cefb3" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043712Z:15751d9f-3862-4f2e-9fd8-3e851f4cefb3" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:11 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "396825fa-9a2e-4a03-9ba9-07f092703403" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11883" - ], - "x-ms-correlation-request-id": [ - "2666c657-2c33-4f18-b50d-ab72b505c478" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043712Z:2666c657-2c33-4f18-b50d-ab72b505c478" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:11 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "d6a93cb4-a49f-45f2-afda-82c345a22970" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11882" - ], - "x-ms-correlation-request-id": [ - "19456128-db5f-485e-b752-3ff8c6d33824" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043712Z:19456128-db5f-485e-b752-3ff8c6d33824" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:11 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "296d7024-58ca-4df0-aad1-806958940cf2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11881" - ], - "x-ms-correlation-request-id": [ - "fedbbccb-9fea-4f43-8fee-b989e05a1ab1" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043712Z:fedbbccb-9fea-4f43-8fee-b989e05a1ab1" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:11 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "4868814d-3dbc-4d00-a155-2339b3c1271d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11880" - ], - "x-ms-correlation-request-id": [ - "ccb9b934-5a72-4ebd-859e-7e606b356916" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043712Z:ccb9b934-5a72-4ebd-859e-7e606b356916" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:12 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "7554cb18-4318-47f6-87bb-7ee6fa7b7a0c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11879" - ], - "x-ms-correlation-request-id": [ - "5b78c877-c1e2-4a1b-9cdb-127b6b89b764" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043713Z:5b78c877-c1e2-4a1b-9cdb-127b6b89b764" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:12 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "48b61322-036c-4b4e-a724-9c872c503e81" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11878" - ], - "x-ms-correlation-request-id": [ - "8c98237d-4ac5-4e72-bfc6-761a4fdc3eab" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043713Z:8c98237d-4ac5-4e72-bfc6-761a4fdc3eab" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:12 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "59a27856-5347-4d54-ae22-c87717aed7d6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11877" - ], - "x-ms-correlation-request-id": [ - "e9df8646-83c0-4807-a18d-a3c2a575e01a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043713Z:e9df8646-83c0-4807-a18d-a3c2a575e01a" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:12 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "43cc96ab-22fc-4c03-a85e-198cc38247a6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11876" - ], - "x-ms-correlation-request-id": [ - "27604ee9-e4c4-4818-a635-878003af3e5d" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043713Z:27604ee9-e4c4-4818-a635-878003af3e5d" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:12 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "9db440bb-513a-455b-a578-699c34e4ebf8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11875" - ], - "x-ms-correlation-request-id": [ - "3010134e-1db9-4d6c-9dcc-94b9503494d7" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043714Z:3010134e-1db9-4d6c-9dcc-94b9503494d7" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:13 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "84b4586f-4020-4d5c-a81b-e0d0d01cb73a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11874" - ], - "x-ms-correlation-request-id": [ - "23085613-ff9e-420f-9152-ebfd0b99bdcb" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043714Z:23085613-ff9e-420f-9152-ebfd0b99bdcb" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:13 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "bce21659-d836-414f-894e-f9c1f350b6b3" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11873" - ], - "x-ms-correlation-request-id": [ - "d8a796f1-0fb7-4f10-945e-c1c0c58e7e71" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043714Z:d8a796f1-0fb7-4f10-945e-c1c0c58e7e71" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:13 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "6d6a715c-acc7-4fc3-a1e6-49ed45718673" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11872" - ], - "x-ms-correlation-request-id": [ - "6423e82a-df83-40eb-bab0-7600d2a17e6f" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043714Z:6423e82a-df83-40eb-bab0-7600d2a17e6f" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:13 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "be3c92d9-1022-4ac9-a190-f85a7f01d8cd" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11871" - ], - "x-ms-correlation-request-id": [ - "069e45cf-7022-446b-a7e6-ad531fc9ddc4" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043714Z:069e45cf-7022-446b-a7e6-ad531fc9ddc4" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:13 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "32b3148f-99ab-4794-9cf2-1bb0033653a4" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11870" - ], - "x-ms-correlation-request-id": [ - "8cfba1de-1717-41a2-a046-0e58b00024ab" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043715Z:8cfba1de-1717-41a2-a046-0e58b00024ab" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:14 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "dfd00ac3-5ea3-4ea0-94aa-02ed1b897ccd" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11869" - ], - "x-ms-correlation-request-id": [ - "fe397c19-9e2c-4db8-ba49-c0af6f271511" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043715Z:fe397c19-9e2c-4db8-ba49-c0af6f271511" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:14 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "47dcd464-db5b-44f1-88fe-4fba9a221f91" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11868" - ], - "x-ms-correlation-request-id": [ - "3f81a722-311a-4c9c-b7fc-f2a3f7fbb523" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043715Z:3f81a722-311a-4c9c-b7fc-f2a3f7fbb523" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:14 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "14bf99ec-8dcf-437f-bb21-310f483037fa" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11867" - ], - "x-ms-correlation-request-id": [ - "337092ec-7414-4861-ae47-7177cfe5d8fd" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043715Z:337092ec-7414-4861-ae47-7177cfe5d8fd" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:14 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "1679b572-db61-4375-8379-fe9306438bc6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11866" - ], - "x-ms-correlation-request-id": [ - "443b0f8c-0d33-468c-a31b-b30acd07e4f4" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043715Z:443b0f8c-0d33-468c-a31b-b30acd07e4f4" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:15 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "6e475956-41cc-4851-830f-67d60c9489c5" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11865" - ], - "x-ms-correlation-request-id": [ - "6ab5a2a3-2f8b-486d-81a7-a742c4ca7a17" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043716Z:6ab5a2a3-2f8b-486d-81a7-a742c4ca7a17" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:15 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "261a16ca-c16f-4214-a1ec-866737ed7bb6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11864" - ], - "x-ms-correlation-request-id": [ - "e26a2bf8-8f4a-430c-8461-b88c4e4a92e7" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043716Z:e26a2bf8-8f4a-430c-8461-b88c4e4a92e7" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:15 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "b543bdd6-7497-43c7-b7fb-5c48add95cd7" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11863" - ], - "x-ms-correlation-request-id": [ - "3004c8e7-5880-4cab-b6f7-566c4de1dd01" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043716Z:3004c8e7-5880-4cab-b6f7-566c4de1dd01" - ], - "Date": [ - "Mon, 14 Sep 2020 04:37:15 GMT" - ], - "Content-Length": [ - "76" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], - "x-ms-request-id": [ - "8cdf4b48-04ba-4eae-b06a-d54b0b4563d8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" + "WESTUS:20200924T053749Z:f39e3c4d-8770-46d9-aa48-74f5140d9d5d" ], "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11862" - ], - "x-ms-correlation-request-id": [ - "4fda59b0-f04e-4cb0-99a7-3b3a795ca0a7" + "max-age=31536000; includeSubDomains" ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T043716Z:4fda59b0-f04e-4cb0-99a7-3b3a795ca0a7" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:37:15 GMT" + "Thu, 24 Sep 2020 05:37:48 GMT" ], "Content-Length": [ - "76" + "108" ], "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 + "ResponseBody": "{\r\n \"name\": \"a2b35f6b-6e80-4823-bf14-816855f6d722\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:29:55.717Z\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a2b35f6b-6e80-4823-bf14-816855f6d722?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9hMmIzNWY2Yi02ZTgwLTQ4MjMtYmYxNC04MTY4NTVmNmQ3MjI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, "ResponseHeaders": { "Cache-Control": [ - "no-store, no-cache" + "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "Pragma": [ + "no-cache" ], "Retry-After": [ - "5" + "15" ], "x-ms-request-id": [ - "0ae0f15d-8631-4019-ad6f-2ea1f04ce6fd" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "4e4811c5-a2d1-4a5e-b26c-df3ef376c76e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11861" + "11928" ], "x-ms-correlation-request-id": [ - "62139c48-350e-4eff-b4f4-0b94f253a5ef" + "588f9143-7251-4979-8e19-322c30e77335" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043717Z:62139c48-350e-4eff-b4f4-0b94f253a5ef" + "WESTUS:20200924T053804Z:588f9143-7251-4979-8e19-322c30e77335" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:37:16 GMT" + "Thu, 24 Sep 2020 05:38:03 GMT" ], "Content-Length": [ - "76" + "108" ], "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 + "ResponseBody": "{\r\n \"name\": \"a2b35f6b-6e80-4823-bf14-816855f6d722\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:29:55.717Z\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a2b35f6b-6e80-4823-bf14-816855f6d722?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9hMmIzNWY2Yi02ZTgwLTQ4MjMtYmYxNC04MTY4NTVmNmQ3MjI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, "ResponseHeaders": { "Cache-Control": [ - "no-store, no-cache" + "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "Pragma": [ + "no-cache" ], "Retry-After": [ - "5" + "15" ], "x-ms-request-id": [ - "b65e4cdc-4462-4ab8-b8e8-6a158f6b393b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "5741f184-ff47-4996-b9ff-8b7e9a9737f5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11860" + "11927" ], "x-ms-correlation-request-id": [ - "59e95532-5f8d-4c6a-bac6-e852467effcd" + "87c39033-4041-4689-ab15-8700ab98154f" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043717Z:59e95532-5f8d-4c6a-bac6-e852467effcd" + "WESTUS:20200924T053819Z:87c39033-4041-4689-ab15-8700ab98154f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:37:16 GMT" + "Thu, 24 Sep 2020 05:38:18 GMT" ], "Content-Length": [ - "76" + "108" ], "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 + "ResponseBody": "{\r\n \"name\": \"a2b35f6b-6e80-4823-bf14-816855f6d722\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:29:55.717Z\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a2b35f6b-6e80-4823-bf14-816855f6d722?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9hMmIzNWY2Yi02ZTgwLTQ4MjMtYmYxNC04MTY4NTVmNmQ3MjI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, "ResponseHeaders": { "Cache-Control": [ - "no-store, no-cache" + "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "Pragma": [ + "no-cache" ], "Retry-After": [ - "5" + "15" ], "x-ms-request-id": [ - "d8033850-7353-4a41-a24a-89faba6ff8ff" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "a0c82af1-35e4-4ec1-8623-62bc684ddfcc" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11859" + "11926" ], "x-ms-correlation-request-id": [ - "a77121eb-f93e-4555-9387-5d0c1a171aea" + "3cc0e536-6c71-4097-9e5a-9856ee16d0e2" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043717Z:a77121eb-f93e-4555-9387-5d0c1a171aea" + "WESTUS:20200924T053834Z:3cc0e536-6c71-4097-9e5a-9856ee16d0e2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:37:16 GMT" + "Thu, 24 Sep 2020 05:38:33 GMT" ], "Content-Length": [ - "76" + "108" ], "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 + "ResponseBody": "{\r\n \"name\": \"a2b35f6b-6e80-4823-bf14-816855f6d722\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:29:55.717Z\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a2b35f6b-6e80-4823-bf14-816855f6d722?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9hMmIzNWY2Yi02ZTgwLTQ4MjMtYmYxNC04MTY4NTVmNmQ3MjI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, "ResponseHeaders": { "Cache-Control": [ - "no-store, no-cache" + "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "Pragma": [ + "no-cache" ], "Retry-After": [ - "5" + "15" ], "x-ms-request-id": [ - "6ba90e2a-a8a9-406f-988f-fe7d71100f9d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "d42e949c-7047-4a6d-9e36-dfc401db507c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11858" + "11925" ], "x-ms-correlation-request-id": [ - "1655d5ec-dc68-4b1e-9f07-eb888854cb5d" + "70da7ca9-e599-4fe9-acc6-bd36a8c9ae85" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043717Z:1655d5ec-dc68-4b1e-9f07-eb888854cb5d" + "WESTUS:20200924T053850Z:70da7ca9-e599-4fe9-acc6-bd36a8c9ae85" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:37:16 GMT" + "Thu, 24 Sep 2020 05:38:49 GMT" ], "Content-Length": [ - "76" + "108" ], "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 + "ResponseBody": "{\r\n \"name\": \"a2b35f6b-6e80-4823-bf14-816855f6d722\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T05:29:55.717Z\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/a2b35f6b-6e80-4823-bf14-816855f6d722?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9hMmIzNWY2Yi02ZTgwLTQ4MjMtYmYxNC04MTY4NTVmNmQ3MjI/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, "ResponseHeaders": { "Cache-Control": [ - "no-store, no-cache" + "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "Pragma": [ + "no-cache" ], "Retry-After": [ - "5" + "15" ], "x-ms-request-id": [ - "eea1e12e-db9a-48e4-8a83-16a1bd7ea3b8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "d4841970-3524-48b5-babc-8813a41dffc3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11857" + "11924" ], "x-ms-correlation-request-id": [ - "43227184-57a6-4737-95a4-f443b5438a8a" + "8d30940b-c36b-4711-83af-fbcfc79fd8f9" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043717Z:43227184-57a6-4737-95a4-f443b5438a8a" + "WESTUS:20200924T053905Z:8d30940b-c36b-4711-83af-fbcfc79fd8f9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:37:17 GMT" + "Thu, 24 Sep 2020 05:39:04 GMT" ], "Content-Length": [ - "76" + "107" ], "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 + "ResponseBody": "{\r\n \"name\": \"a2b35f6b-6e80-4823-bf14-816855f6d722\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-24T05:29:55.717Z\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnM/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "61f8809f-ac0c-4133-94d1-338557ca7a8f" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, "ResponseHeaders": { "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "no-cache" ], - "Retry-After": [ - "5" + "Pragma": [ + "no-cache" ], "x-ms-request-id": [ - "0f9a62dc-f85a-4b90-b8ce-a82fa088e86b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "88732b34-b93b-44e1-84ae-48883880f24f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11856" + "11922" ], "x-ms-correlation-request-id": [ - "112286bb-3bc3-4f7c-a6f0-366cbf931f3e" + "e63718fd-33ef-4428-a679-42b3a7ae3c11" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043718Z:112286bb-3bc3-4f7c-a6f0-366cbf931f3e" + "WESTUS:20200924T053905Z:e63718fd-33ef-4428-a679-42b3a7ae3c11" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:37:17 GMT" + "Thu, 24 Sep 2020 05:39:05 GMT" ], "Content-Length": [ - "76" + "423" ], "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps2032.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032\",\r\n \"name\": \"ps2032\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3520/providers/Microsoft.Sql/servers/ps8753/databases/ps9145/replicationLinks?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzUyMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODc1My9kYXRhYmFzZXMvcHM5MTQ1L3JlcGxpY2F0aW9uTGlua3M/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-store, no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], "x-ms-request-id": [ - "4e674fe8-a3a6-4559-97c3-82e66d75db28" + "a581988f-20f7-4b81-8dc3-7a820aa8946c" ], "X-Content-Type-Options": [ "nosniff" @@ -11037,49 +4740,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11855" + "11999" ], "x-ms-correlation-request-id": [ - "1ed5dc78-0dbb-4775-92ae-2c2b52b9f9d8" + "9ce5a1e2-8cbd-4780-973a-47ba4715757b" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043718Z:1ed5dc78-0dbb-4775-92ae-2c2b52b9f9d8" + "WESTUS:20200924T053905Z:9ce5a1e2-8cbd-4780-973a-47ba4715757b" ], "Date": [ - "Mon, 14 Sep 2020 04:37:17 GMT" + "Thu, 24 Sep 2020 05:39:05 GMT" ], "Content-Length": [ - "76" + "618" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3520/providers/Microsoft.Sql/servers/ps8753/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc\",\r\n \"name\": \"1950d065-7e63-4f21-a3f9-117ce72cc1bc\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"West Europe\",\r\n \"properties\": {\r\n \"partnerServer\": \"ps2032\",\r\n \"partnerDatabase\": \"ps9145\",\r\n \"partnerLocation\": \"West Europe\",\r\n \"role\": \"Primary\",\r\n \"partnerRole\": \"Secondary\",\r\n \"replicationMode\": \"ASYNC\",\r\n \"startTime\": \"2020-09-24T05:30:58.25\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3520/providers/Microsoft.Sql/servers/ps8753/databases/ps9145/replicationLinks?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzUyMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODc1My9kYXRhYmFzZXMvcHM5MTQ1L3JlcGxpY2F0aW9uTGlua3M/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-store, no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], "x-ms-request-id": [ - "b2f0e9bc-9fcd-4b09-b0f7-c7fdbe4542cf" + "b8e2fd38-c623-48e0-a61e-d60327721ef7" ], "X-Content-Type-Options": [ "nosniff" @@ -11094,277 +4791,295 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11854" + "11853" ], "x-ms-correlation-request-id": [ - "659df520-2426-4ad6-a057-bb43dd814db1" + "b4ccba61-d6df-4443-bfeb-5f1c01ec5d38" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043718Z:659df520-2426-4ad6-a057-bb43dd814db1" + "WESTUS:20200924T053939Z:b4ccba61-d6df-4443-bfeb-5f1c01ec5d38" ], "Date": [ - "Mon, 14 Sep 2020 04:37:17 GMT" + "Thu, 24 Sep 2020 05:39:38 GMT" ], "Content-Length": [ - "76" + "618" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3520/providers/Microsoft.Sql/servers/ps8753/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc\",\r\n \"name\": \"1950d065-7e63-4f21-a3f9-117ce72cc1bc\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"West Europe\",\r\n \"properties\": {\r\n \"partnerServer\": \"ps2032\",\r\n \"partnerDatabase\": \"ps9145\",\r\n \"partnerLocation\": \"West Europe\",\r\n \"role\": \"Secondary\",\r\n \"partnerRole\": \"Primary\",\r\n \"replicationMode\": \"ASYNC\",\r\n \"startTime\": \"2020-09-24T05:30:58.25\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3520/providers/Microsoft.Sql/servers?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzUyMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "72377a73-30a1-41dd-a94e-49e798f05668" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, "ResponseHeaders": { "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "no-cache" ], - "Retry-After": [ - "5" + "Pragma": [ + "no-cache" ], "x-ms-request-id": [ - "13b8e21d-3d42-4341-91b5-b97293d79d23" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "27e1b124-60c4-42e3-a889-f38220353cf3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11853" + "11921" ], "x-ms-correlation-request-id": [ - "602d6f7f-39f5-4ec6-a2e2-e7a0ae824ba3" + "9fac64a0-1af1-4498-8c48-2f33023d958e" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043718Z:602d6f7f-39f5-4ec6-a2e2-e7a0ae824ba3" + "WESTUS:20200924T053906Z:9fac64a0-1af1-4498-8c48-2f33023d958e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:37:17 GMT" + "Thu, 24 Sep 2020 05:39:05 GMT" ], "Content-Length": [ - "76" + "424" ], "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps8753.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3520/providers/Microsoft.Sql/servers/ps8753\",\r\n \"name\": \"ps8753\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3520/providers/Microsoft.Sql/servers?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzUyMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c18ba026-e9f3-40a8-a884-02760d839722" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, "ResponseHeaders": { "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "no-cache" ], - "Retry-After": [ - "5" + "Pragma": [ + "no-cache" ], "x-ms-request-id": [ - "6ecf4ee7-85b5-41b1-aa7a-7abb64ece74c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "843576d9-fdd5-4b13-85d4-12b606946fda" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11852" + "11920" ], "x-ms-correlation-request-id": [ - "7ce906d2-0831-4585-b17f-132774eac533" + "eacd908d-7b39-4c9a-aa32-dfc4cb4f2359" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043718Z:7ce906d2-0831-4585-b17f-132774eac533" + "WESTUS:20200924T053906Z:eacd908d-7b39-4c9a-aa32-dfc4cb4f2359" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:37:18 GMT" + "Thu, 24 Sep 2020 05:39:06 GMT" ], "Content-Length": [ - "76" + "424" ], "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps8753.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3520/providers/Microsoft.Sql/servers/ps8753\",\r\n \"name\": \"ps8753\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3520/providers/Microsoft.Sql/servers?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzUyMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "f087fdfc-f063-4acf-9013-840f973794c2" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, "ResponseHeaders": { "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "no-cache" ], - "Retry-After": [ - "5" + "Pragma": [ + "no-cache" ], "x-ms-request-id": [ - "3dc38bba-fbe4-4244-be19-da127d368884" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "fde2de02-fbb0-487f-8b4e-114a9afe2916" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11851" + "11919" ], "x-ms-correlation-request-id": [ - "a2967f68-20dd-4723-ad09-ad1d9afa7001" + "0b556f66-eb78-4a4d-8ef1-544fa7cb97a4" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043719Z:a2967f68-20dd-4723-ad09-ad1d9afa7001" + "WESTUS:20200924T053907Z:0b556f66-eb78-4a4d-8ef1-544fa7cb97a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:37:18 GMT" + "Thu, 24 Sep 2020 05:39:06 GMT" ], "Content-Length": [ - "76" + "424" ], "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps8753.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3520/providers/Microsoft.Sql/servers/ps8753\",\r\n \"name\": \"ps8753\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3520/providers/Microsoft.Sql/servers?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzUyMC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "96b53d1e-982d-4b01-ab33-fe79beb8dd31" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" ] }, "ResponseHeaders": { "Cache-Control": [ - "no-store, no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "no-cache" ], - "Retry-After": [ - "5" + "Pragma": [ + "no-cache" ], "x-ms-request-id": [ - "d5b8b295-b369-475c-8f1c-9e88507bcad1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "4f594cef-6348-4ac3-b58e-17bf9968a4da" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11850" + "11918" ], "x-ms-correlation-request-id": [ - "54628405-6d53-4b04-a067-91136ed02857" + "635935cd-a5d5-44a7-a635-ea38086d4153" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043719Z:54628405-6d53-4b04-a067-91136ed02857" + "WESTUS:20200924T053939Z:635935cd-a5d5-44a7-a635-ea38086d4153" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:37:18 GMT" + "Thu, 24 Sep 2020 05:39:38 GMT" ], "Content-Length": [ - "76" + "424" ], "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps8753.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps3520/providers/Microsoft.Sql/servers/ps8753\",\r\n \"name\": \"ps8753\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-store, no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], "x-ms-request-id": [ - "f1de456a-7e00-43cc-babf-c1025ca42e20" + "0ef73c15-95ee-409b-89b4-32d1cf2586b5" ], "X-Content-Type-Options": [ "nosniff" @@ -11379,49 +5094,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11849" + "11998" ], "x-ms-correlation-request-id": [ - "7d72d81a-0aae-4676-ac46-288a11102afe" + "3f5848c1-4a76-485f-843b-e7dbc2c7a269" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043719Z:7d72d81a-0aae-4676-ac46-288a11102afe" + "WESTUS:20200924T053906Z:3f5848c1-4a76-485f-843b-e7dbc2c7a269" ], "Date": [ - "Mon, 14 Sep 2020 04:37:18 GMT" + "Thu, 24 Sep 2020 05:39:05 GMT" ], "Content-Length": [ - "76" + "618" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc\",\r\n \"name\": \"1950d065-7e63-4f21-a3f9-117ce72cc1bc\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"West Europe\",\r\n \"properties\": {\r\n \"partnerServer\": \"ps8753\",\r\n \"partnerDatabase\": \"ps9145\",\r\n \"partnerLocation\": \"West Europe\",\r\n \"role\": \"Secondary\",\r\n \"partnerRole\": \"Primary\",\r\n \"replicationMode\": \"ASYNC\",\r\n \"startTime\": \"2020-09-24T05:30:58.553\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-store, no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], "x-ms-request-id": [ - "d1d93b70-6509-491d-a7ce-82ea9ae5f0c7" + "708e86d6-e973-453d-840f-680f59ee9b61" ], "X-Content-Type-Options": [ "nosniff" @@ -11436,49 +5145,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11848" + "11997" ], "x-ms-correlation-request-id": [ - "503ef9a0-161d-4a52-96d3-03daa5aba884" + "7a81cf43-f380-4a4c-89f2-14ffd6a28223" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043719Z:503ef9a0-161d-4a52-96d3-03daa5aba884" + "WESTUS:20200924T053906Z:7a81cf43-f380-4a4c-89f2-14ffd6a28223" ], "Date": [ - "Mon, 14 Sep 2020 04:37:18 GMT" + "Thu, 24 Sep 2020 05:39:06 GMT" ], "Content-Length": [ - "76" + "618" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc\",\r\n \"name\": \"1950d065-7e63-4f21-a3f9-117ce72cc1bc\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"West Europe\",\r\n \"properties\": {\r\n \"partnerServer\": \"ps8753\",\r\n \"partnerDatabase\": \"ps9145\",\r\n \"partnerLocation\": \"West Europe\",\r\n \"role\": \"Secondary\",\r\n \"partnerRole\": \"Primary\",\r\n \"replicationMode\": \"ASYNC\",\r\n \"startTime\": \"2020-09-24T05:30:58.553\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-store, no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "5" - ], "x-ms-request-id": [ - "4c3c9ee9-f920-4566-aa3c-31391689a46f" + "1d14b569-5d01-404c-92aa-9edd9be51dfc" ], "X-Content-Type-Options": [ "nosniff" @@ -11493,35 +5196,35 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11847" + "11996" ], "x-ms-correlation-request-id": [ - "d06e9cd4-ea07-4196-b95b-e0b79898b2d3" + "95a2e9de-abc8-46e3-b0c8-8aec8d88d2a0" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043720Z:d06e9cd4-ea07-4196-b95b-e0b79898b2d3" + "WESTUS:20200924T053907Z:95a2e9de-abc8-46e3-b0c8-8aec8d88d2a0" ], "Date": [ - "Mon, 14 Sep 2020 04:37:19 GMT" + "Thu, 24 Sep 2020 05:39:06 GMT" ], "Content-Length": [ - "76" + "618" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", - "StatusCode": 202 + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc\",\r\n \"name\": \"1950d065-7e63-4f21-a3f9-117ce72cc1bc\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"West Europe\",\r\n \"properties\": {\r\n \"partnerServer\": \"ps8753\",\r\n \"partnerDatabase\": \"ps9145\",\r\n \"partnerLocation\": \"West Europe\",\r\n \"role\": \"Secondary\",\r\n \"partnerRole\": \"Primary\",\r\n \"replicationMode\": \"ASYNC\",\r\n \"startTime\": \"2020-09-24T05:30:58.553\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/failover?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvZmFpbG92ZXI/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -11529,17 +5232,20 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "9ca6eec6-2540-4937-a125-d892df947233" + "9a0c33fc-6566-46f0-ae28-cf937a6bf589" ], "X-Content-Type-Options": [ "nosniff" ], + "Preference-Applied": [ + "return-content" + ], "DataServiceVersion": [ "3.0;" ], @@ -11549,36 +5255,36 @@ "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11846" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-correlation-request-id": [ - "0dab6171-6afa-45c3-95e7-ef04206f80f2" + "6e431084-5534-407a-a056-4f808dfa9f4e" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043720Z:0dab6171-6afa-45c3-95e7-ef04206f80f2" + "WESTUS:20200924T053907Z:6e431084-5534-407a-a056-4f808dfa9f4e" ], "Date": [ - "Mon, 14 Sep 2020 04:37:19 GMT" + "Thu, 24 Sep 2020 05:39:06 GMT" ], "Content-Length": [ "76" ], "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + "application/json" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -11586,13 +5292,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "67063cdf-664c-4232-adb8-0127b932d101" + "2dea49da-37bc-4c16-9a21-ddd50d6c3c83" ], "X-Content-Type-Options": [ "nosniff" @@ -11607,16 +5313,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11845" + "11995" ], "x-ms-correlation-request-id": [ - "8616d11a-7d0e-4869-9ab2-04d0071f3e7f" + "553db66c-14e4-4377-bd87-fb659bb6fa5e" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043720Z:8616d11a-7d0e-4869-9ab2-04d0071f3e7f" + "WESTUS:20200924T053907Z:553db66c-14e4-4377-bd87-fb659bb6fa5e" ], "Date": [ - "Mon, 14 Sep 2020 04:37:19 GMT" + "Thu, 24 Sep 2020 05:39:07 GMT" ], "Content-Length": [ "76" @@ -11625,17 +5331,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -11643,13 +5349,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "d9fe4b5b-63dd-497e-8831-dbf7dd483f0e" + "6ec1bd65-321a-4cac-9636-b76f242d038a" ], "X-Content-Type-Options": [ "nosniff" @@ -11664,16 +5370,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11844" + "11994" ], "x-ms-correlation-request-id": [ - "fb19e6eb-1671-4b5f-b2e1-0f2a5c56cdcc" + "ec63a983-d6ff-4120-a2c3-a0b47dda6f76" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043720Z:fb19e6eb-1671-4b5f-b2e1-0f2a5c56cdcc" + "WESTUS:20200924T053908Z:ec63a983-d6ff-4120-a2c3-a0b47dda6f76" ], "Date": [ - "Mon, 14 Sep 2020 04:37:19 GMT" + "Thu, 24 Sep 2020 05:39:07 GMT" ], "Content-Length": [ "76" @@ -11682,17 +5388,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -11700,13 +5406,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "2b849686-1b25-4efb-a0b0-951feb25fed6" + "560b784e-cc50-4fd0-9909-36762a19bc41" ], "X-Content-Type-Options": [ "nosniff" @@ -11721,16 +5427,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11843" + "11993" ], "x-ms-correlation-request-id": [ - "6d54248e-31a8-4f33-bcb3-64d14954b4bb" + "5f64f102-0369-41bf-92db-59f1483b13ba" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043720Z:6d54248e-31a8-4f33-bcb3-64d14954b4bb" + "WESTUS:20200924T053908Z:5f64f102-0369-41bf-92db-59f1483b13ba" ], "Date": [ - "Mon, 14 Sep 2020 04:37:19 GMT" + "Thu, 24 Sep 2020 05:39:07 GMT" ], "Content-Length": [ "76" @@ -11739,17 +5445,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -11757,13 +5463,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "bea9eb78-6c67-413c-8ec8-8be66a345d3f" + "e4ebb155-e1ea-4ec7-aed5-82ef9e32c52f" ], "X-Content-Type-Options": [ "nosniff" @@ -11778,16 +5484,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11842" + "11992" ], "x-ms-correlation-request-id": [ - "482579d6-e5ef-4938-8f8a-32fe86ea5c32" + "0dd57b4d-790b-45fb-89c5-519828505dcb" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043721Z:482579d6-e5ef-4938-8f8a-32fe86ea5c32" + "WESTUS:20200924T053908Z:0dd57b4d-790b-45fb-89c5-519828505dcb" ], "Date": [ - "Mon, 14 Sep 2020 04:37:20 GMT" + "Thu, 24 Sep 2020 05:39:07 GMT" ], "Content-Length": [ "76" @@ -11796,17 +5502,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -11814,13 +5520,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "bcdee456-2b81-405d-9492-00d5af3c7e48" + "e80d8cb7-7b3d-4a22-aea7-e5366bf45035" ], "X-Content-Type-Options": [ "nosniff" @@ -11835,16 +5541,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11841" + "11991" ], "x-ms-correlation-request-id": [ - "d3fa21da-9513-443e-8a34-1b85fe5e195b" + "a29fe588-c0ca-49dc-a4ca-bc5ff5a31bf6" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043721Z:d3fa21da-9513-443e-8a34-1b85fe5e195b" + "WESTUS:20200924T053908Z:a29fe588-c0ca-49dc-a4ca-bc5ff5a31bf6" ], "Date": [ - "Mon, 14 Sep 2020 04:37:20 GMT" + "Thu, 24 Sep 2020 05:39:08 GMT" ], "Content-Length": [ "76" @@ -11853,17 +5559,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -11871,13 +5577,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "a6ca4857-f60e-479d-bdd4-0e41265e2b23" + "4e75a5cb-dcc7-4449-becc-d6f031a2952a" ], "X-Content-Type-Options": [ "nosniff" @@ -11892,16 +5598,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11840" + "11990" ], "x-ms-correlation-request-id": [ - "fff63390-2eb7-47cb-8e44-8164ef12701e" + "09319d50-bd1b-4fe0-a99f-097cda9449a5" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043721Z:fff63390-2eb7-47cb-8e44-8164ef12701e" + "WESTUS:20200924T053909Z:09319d50-bd1b-4fe0-a99f-097cda9449a5" ], "Date": [ - "Mon, 14 Sep 2020 04:37:20 GMT" + "Thu, 24 Sep 2020 05:39:08 GMT" ], "Content-Length": [ "76" @@ -11910,17 +5616,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -11928,13 +5634,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "6afa68eb-54bb-4c26-a0db-0b69efc7d547" + "b6457345-7448-478f-afa4-164899679f1f" ], "X-Content-Type-Options": [ "nosniff" @@ -11949,16 +5655,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11839" + "11989" ], "x-ms-correlation-request-id": [ - "1b147c33-a2f3-4c2a-a722-bf161581f3b7" + "f5e9aecc-4ee7-434e-9a98-e50d10aa1f90" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043721Z:1b147c33-a2f3-4c2a-a722-bf161581f3b7" + "WESTUS:20200924T053909Z:f5e9aecc-4ee7-434e-9a98-e50d10aa1f90" ], "Date": [ - "Mon, 14 Sep 2020 04:37:20 GMT" + "Thu, 24 Sep 2020 05:39:08 GMT" ], "Content-Length": [ "76" @@ -11967,17 +5673,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -11985,13 +5691,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "19fbc53f-e153-4a3c-a465-2f0a50b9adbb" + "5ee8b566-9d1e-4aef-a199-7b94abc9a941" ], "X-Content-Type-Options": [ "nosniff" @@ -12006,16 +5712,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11838" + "11988" ], "x-ms-correlation-request-id": [ - "03f8bb5a-65fd-4279-af09-56d440700b26" + "b2da60c1-a605-4e23-8fe4-87e76005eba2" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043721Z:03f8bb5a-65fd-4279-af09-56d440700b26" + "WESTUS:20200924T053909Z:b2da60c1-a605-4e23-8fe4-87e76005eba2" ], "Date": [ - "Mon, 14 Sep 2020 04:37:20 GMT" + "Thu, 24 Sep 2020 05:39:08 GMT" ], "Content-Length": [ "76" @@ -12024,17 +5730,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -12042,13 +5748,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "94a8a2c2-0d84-4285-afb8-aa505a122607" + "24acf8f0-2e74-47ca-800e-02e98d7ce1b6" ], "X-Content-Type-Options": [ "nosniff" @@ -12063,16 +5769,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11837" + "11987" ], "x-ms-correlation-request-id": [ - "c6840731-2045-4df5-b494-1a9cfe528440" + "8e37e44c-6da3-413d-8422-1f798173a232" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043722Z:c6840731-2045-4df5-b494-1a9cfe528440" + "WESTUS:20200924T053909Z:8e37e44c-6da3-413d-8422-1f798173a232" ], "Date": [ - "Mon, 14 Sep 2020 04:37:21 GMT" + "Thu, 24 Sep 2020 05:39:08 GMT" ], "Content-Length": [ "76" @@ -12081,17 +5787,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -12099,13 +5805,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "48b5a4f9-3207-4492-a6f9-cc263e2afc51" + "cdafcaa8-23f6-4fbd-acc1-d69532f065b0" ], "X-Content-Type-Options": [ "nosniff" @@ -12120,16 +5826,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11836" + "11986" ], "x-ms-correlation-request-id": [ - "135600da-5dfd-4acc-90e2-d01f172ca952" + "67e03133-6d95-4cdd-ad97-2f095fd968eb" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043722Z:135600da-5dfd-4acc-90e2-d01f172ca952" + "WESTUS:20200924T053909Z:67e03133-6d95-4cdd-ad97-2f095fd968eb" ], "Date": [ - "Mon, 14 Sep 2020 04:37:21 GMT" + "Thu, 24 Sep 2020 05:39:09 GMT" ], "Content-Length": [ "76" @@ -12138,17 +5844,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -12156,13 +5862,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "7ea5fe76-6660-41d9-9afd-eaedd22ba8b5" + "98810403-c1cc-41c2-b0a2-ab106f8ca668" ], "X-Content-Type-Options": [ "nosniff" @@ -12177,16 +5883,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11835" + "11985" ], "x-ms-correlation-request-id": [ - "edf3b193-029c-4380-89dd-32b79253de64" + "240efd6a-886e-4394-a3ad-a686743b593f" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043722Z:edf3b193-029c-4380-89dd-32b79253de64" + "WESTUS:20200924T053910Z:240efd6a-886e-4394-a3ad-a686743b593f" ], "Date": [ - "Mon, 14 Sep 2020 04:37:21 GMT" + "Thu, 24 Sep 2020 05:39:09 GMT" ], "Content-Length": [ "76" @@ -12195,17 +5901,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -12213,13 +5919,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "95a9afcc-500b-4e38-b378-286fe3a4c957" + "4b6fbf39-6e5c-470b-a509-f321491b640b" ], "X-Content-Type-Options": [ "nosniff" @@ -12234,16 +5940,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11834" + "11984" ], "x-ms-correlation-request-id": [ - "6f25d729-bb37-4f98-a583-4fdfdbe9292b" + "62fd8b0b-82f5-4c8d-9324-23b85ffe26c5" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043722Z:6f25d729-bb37-4f98-a583-4fdfdbe9292b" + "WESTUS:20200924T053910Z:62fd8b0b-82f5-4c8d-9324-23b85ffe26c5" ], "Date": [ - "Mon, 14 Sep 2020 04:37:21 GMT" + "Thu, 24 Sep 2020 05:39:09 GMT" ], "Content-Length": [ "76" @@ -12252,17 +5958,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -12270,13 +5976,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "b26cec5b-da50-45d1-8070-d355b5d25a67" + "61e01185-3a17-497f-8b6b-55a3449b5e77" ], "X-Content-Type-Options": [ "nosniff" @@ -12291,16 +5997,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11833" + "11983" ], "x-ms-correlation-request-id": [ - "f397e1a9-f4d3-48b0-bed6-dea7e4bb4370" + "bf84bd24-6cd4-45aa-aeaf-4add664784fb" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043722Z:f397e1a9-f4d3-48b0-bed6-dea7e4bb4370" + "WESTUS:20200924T053910Z:bf84bd24-6cd4-45aa-aeaf-4add664784fb" ], "Date": [ - "Mon, 14 Sep 2020 04:37:21 GMT" + "Thu, 24 Sep 2020 05:39:09 GMT" ], "Content-Length": [ "76" @@ -12309,17 +6015,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -12327,13 +6033,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "d43fab50-aa2b-4ff7-b377-9bf9d9beecba" + "11f6a801-54ee-45db-b374-9eb4725d40ff" ], "X-Content-Type-Options": [ "nosniff" @@ -12348,16 +6054,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11832" + "11982" ], "x-ms-correlation-request-id": [ - "951bb95d-0a0a-4ee6-91f6-0c70b6df92fc" + "62eebd69-4f69-4436-9f4e-bb37acb3ffd2" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043723Z:951bb95d-0a0a-4ee6-91f6-0c70b6df92fc" + "WESTUS:20200924T053910Z:62eebd69-4f69-4436-9f4e-bb37acb3ffd2" ], "Date": [ - "Mon, 14 Sep 2020 04:37:22 GMT" + "Thu, 24 Sep 2020 05:39:09 GMT" ], "Content-Length": [ "76" @@ -12366,17 +6072,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -12384,13 +6090,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "37a1baef-2a6a-4ed9-a43f-9b07ecb7e869" + "9bb4d863-1172-4cd5-80fa-38c94e0aed42" ], "X-Content-Type-Options": [ "nosniff" @@ -12405,16 +6111,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11831" + "11981" ], "x-ms-correlation-request-id": [ - "182c11e8-4067-4469-87ea-f84b5f908518" + "1e44bcd5-9e76-4acf-a497-fd88919e465a" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043723Z:182c11e8-4067-4469-87ea-f84b5f908518" + "WESTUS:20200924T053910Z:1e44bcd5-9e76-4acf-a497-fd88919e465a" ], "Date": [ - "Mon, 14 Sep 2020 04:37:22 GMT" + "Thu, 24 Sep 2020 05:39:10 GMT" ], "Content-Length": [ "76" @@ -12423,17 +6129,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -12441,13 +6147,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "2d0f8309-e65a-41d8-a83c-78c4a5ae5663" + "f7430acf-c710-43d1-8cd9-4ea38b4a294d" ], "X-Content-Type-Options": [ "nosniff" @@ -12462,16 +6168,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11830" + "11980" ], "x-ms-correlation-request-id": [ - "f4f1b565-121f-4e3b-b463-29ce89170b2c" + "723e34b6-adcd-4e2d-8c8e-5bbf9226f61d" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043723Z:f4f1b565-121f-4e3b-b463-29ce89170b2c" + "WESTUS:20200924T053911Z:723e34b6-adcd-4e2d-8c8e-5bbf9226f61d" ], "Date": [ - "Mon, 14 Sep 2020 04:37:22 GMT" + "Thu, 24 Sep 2020 05:39:10 GMT" ], "Content-Length": [ "76" @@ -12480,17 +6186,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -12498,13 +6204,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "1344ca8c-e194-427b-b15e-96851f055566" + "eaba9089-9240-446d-ae18-ed738d3817a0" ], "X-Content-Type-Options": [ "nosniff" @@ -12519,16 +6225,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11829" + "11979" ], "x-ms-correlation-request-id": [ - "12ebdb7d-f030-4ac4-8c95-d93bf017b7e8" + "9f5dd6c5-73c6-48ce-ac4f-3b80ac064cd1" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043723Z:12ebdb7d-f030-4ac4-8c95-d93bf017b7e8" + "WESTUS:20200924T053911Z:9f5dd6c5-73c6-48ce-ac4f-3b80ac064cd1" ], "Date": [ - "Mon, 14 Sep 2020 04:37:22 GMT" + "Thu, 24 Sep 2020 05:39:10 GMT" ], "Content-Length": [ "76" @@ -12537,17 +6243,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -12555,13 +6261,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "199e4415-6e3c-4ac9-9880-a357eff93813" + "7f13dd96-b07e-460d-bbda-b3aa7908fe93" ], "X-Content-Type-Options": [ "nosniff" @@ -12576,16 +6282,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11828" + "11978" ], "x-ms-correlation-request-id": [ - "17d60ddf-7677-4a9d-8dda-105f52a854ea" + "c5591380-6975-4ec0-a6e4-4eea0366f116" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043724Z:17d60ddf-7677-4a9d-8dda-105f52a854ea" + "WESTUS:20200924T053911Z:c5591380-6975-4ec0-a6e4-4eea0366f116" ], "Date": [ - "Mon, 14 Sep 2020 04:37:23 GMT" + "Thu, 24 Sep 2020 05:39:10 GMT" ], "Content-Length": [ "76" @@ -12594,17 +6300,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -12612,13 +6318,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "f1e90faf-e6ca-4bcc-b1f2-307643a2e224" + "24f9679f-4aa9-4285-a19d-dffdfe8786d4" ], "X-Content-Type-Options": [ "nosniff" @@ -12633,16 +6339,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11827" + "11977" ], "x-ms-correlation-request-id": [ - "1587a694-4a08-4b0a-87a2-594a3c5e7608" + "b025b0c3-f222-429d-95aa-faa55d4c1ed1" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043724Z:1587a694-4a08-4b0a-87a2-594a3c5e7608" + "WESTUS:20200924T053911Z:b025b0c3-f222-429d-95aa-faa55d4c1ed1" ], "Date": [ - "Mon, 14 Sep 2020 04:37:23 GMT" + "Thu, 24 Sep 2020 05:39:11 GMT" ], "Content-Length": [ "76" @@ -12651,17 +6357,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -12669,13 +6375,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "43e19b83-f6fa-4176-ade5-2c93d5db3c1d" + "b2f53810-fb3c-4f48-9fc7-e06fb28af274" ], "X-Content-Type-Options": [ "nosniff" @@ -12690,16 +6396,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11826" + "11976" ], "x-ms-correlation-request-id": [ - "7f5101d7-c0b7-492a-aa1e-9f1cd2dad420" + "e87d53e5-6ced-4eb4-8c5d-79b2a1445abc" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043724Z:7f5101d7-c0b7-492a-aa1e-9f1cd2dad420" + "WESTUS:20200924T053911Z:e87d53e5-6ced-4eb4-8c5d-79b2a1445abc" ], "Date": [ - "Mon, 14 Sep 2020 04:37:23 GMT" + "Thu, 24 Sep 2020 05:39:11 GMT" ], "Content-Length": [ "76" @@ -12708,17 +6414,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -12726,13 +6432,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "c37ee634-7fe1-4b20-b14f-691bf660a1d2" + "8bfe8018-ceb4-40eb-97d5-748a64340d58" ], "X-Content-Type-Options": [ "nosniff" @@ -12747,16 +6453,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11825" + "11975" ], "x-ms-correlation-request-id": [ - "cd7d4989-3c74-4af8-8268-8f69eed1bd42" + "534bdf4b-4328-4aa7-9027-de167e8fad1d" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043724Z:cd7d4989-3c74-4af8-8268-8f69eed1bd42" + "WESTUS:20200924T053912Z:534bdf4b-4328-4aa7-9027-de167e8fad1d" ], "Date": [ - "Mon, 14 Sep 2020 04:37:23 GMT" + "Thu, 24 Sep 2020 05:39:11 GMT" ], "Content-Length": [ "76" @@ -12765,17 +6471,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -12783,13 +6489,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "bfe3b2fe-e40a-4eea-8687-0fb91d034b45" + "5394913b-8db6-4852-8d0b-21e128add0a7" ], "X-Content-Type-Options": [ "nosniff" @@ -12804,16 +6510,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11824" + "11974" ], "x-ms-correlation-request-id": [ - "8e448086-9959-4107-869b-6f958deb4e0a" + "8cea8f45-01f8-4c43-bcf8-21bccc09be3c" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043724Z:8e448086-9959-4107-869b-6f958deb4e0a" + "WESTUS:20200924T053912Z:8cea8f45-01f8-4c43-bcf8-21bccc09be3c" ], "Date": [ - "Mon, 14 Sep 2020 04:37:23 GMT" + "Thu, 24 Sep 2020 05:39:11 GMT" ], "Content-Length": [ "76" @@ -12822,17 +6528,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -12840,13 +6546,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "9a0d0d6f-a500-4799-a22d-b81511b3bbcb" + "145363d8-d8c7-4943-8c12-4fece29c731a" ], "X-Content-Type-Options": [ "nosniff" @@ -12861,16 +6567,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11823" + "11973" ], "x-ms-correlation-request-id": [ - "1204c53e-f2a9-4c4c-b35e-bea26b53d22c" + "7fa2d9e4-a321-48d2-a0c4-0624fa6ae78e" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043725Z:1204c53e-f2a9-4c4c-b35e-bea26b53d22c" + "WESTUS:20200924T053912Z:7fa2d9e4-a321-48d2-a0c4-0624fa6ae78e" ], "Date": [ - "Mon, 14 Sep 2020 04:37:24 GMT" + "Thu, 24 Sep 2020 05:39:11 GMT" ], "Content-Length": [ "76" @@ -12879,17 +6585,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -12897,13 +6603,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "d36b2b3d-5e35-45e4-b4c6-6bbf8a70a97f" + "4d5fb5b5-a060-4a5d-ac96-b03297147b8f" ], "X-Content-Type-Options": [ "nosniff" @@ -12918,16 +6624,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11822" + "11972" ], "x-ms-correlation-request-id": [ - "8f9b24d5-0c6b-4ff5-8f38-393e4d81a9c1" + "f8a5cab1-6e29-44dc-94be-7704a502e458" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043725Z:8f9b24d5-0c6b-4ff5-8f38-393e4d81a9c1" + "WESTUS:20200924T053912Z:f8a5cab1-6e29-44dc-94be-7704a502e458" ], "Date": [ - "Mon, 14 Sep 2020 04:37:24 GMT" + "Thu, 24 Sep 2020 05:39:12 GMT" ], "Content-Length": [ "76" @@ -12936,17 +6642,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -12954,13 +6660,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "acae92be-4f30-4081-b431-0d2066db9c99" + "5b6b8ddd-97cf-4bbd-a65f-fbf39796536d" ], "X-Content-Type-Options": [ "nosniff" @@ -12975,16 +6681,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11821" + "11971" ], "x-ms-correlation-request-id": [ - "6d951b7e-f81d-4811-80bd-9a308016c896" + "c69ef997-421f-4fb3-bdac-6b8757321e7c" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043725Z:6d951b7e-f81d-4811-80bd-9a308016c896" + "WESTUS:20200924T053912Z:c69ef997-421f-4fb3-bdac-6b8757321e7c" ], "Date": [ - "Mon, 14 Sep 2020 04:37:24 GMT" + "Thu, 24 Sep 2020 05:39:12 GMT" ], "Content-Length": [ "76" @@ -12993,17 +6699,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -13011,13 +6717,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "0e4f8c83-aa35-44d8-8bdc-9a5b832c8eb5" + "fbf1eb8a-053e-4e91-875b-4c43a1d5e815" ], "X-Content-Type-Options": [ "nosniff" @@ -13032,16 +6738,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11820" + "11970" ], "x-ms-correlation-request-id": [ - "73f29736-1bc9-4bf1-ad42-4ff128553fa0" + "6576cfac-b2e5-4e07-a856-763367956336" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043725Z:73f29736-1bc9-4bf1-ad42-4ff128553fa0" + "WESTUS:20200924T053913Z:6576cfac-b2e5-4e07-a856-763367956336" ], "Date": [ - "Mon, 14 Sep 2020 04:37:24 GMT" + "Thu, 24 Sep 2020 05:39:12 GMT" ], "Content-Length": [ "76" @@ -13050,17 +6756,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -13068,13 +6774,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "f6146bb8-5f0a-4727-9d0d-5d61af22c135" + "b66b2ac2-d05b-4fa0-a01a-f79794c04fb3" ], "X-Content-Type-Options": [ "nosniff" @@ -13089,16 +6795,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11819" + "11969" ], "x-ms-correlation-request-id": [ - "158da23c-3d8a-40b3-b763-d3b761a79e76" + "198522c5-c8a7-48b9-99ea-baf0277b4784" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043725Z:158da23c-3d8a-40b3-b763-d3b761a79e76" + "WESTUS:20200924T053913Z:198522c5-c8a7-48b9-99ea-baf0277b4784" ], "Date": [ - "Mon, 14 Sep 2020 04:37:24 GMT" + "Thu, 24 Sep 2020 05:39:12 GMT" ], "Content-Length": [ "76" @@ -13107,17 +6813,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -13125,13 +6831,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "dead0894-1749-4e63-bf32-dc0c78cebd35" + "e4c9a623-aada-4c90-a5f1-3cdf1ee1db5a" ], "X-Content-Type-Options": [ "nosniff" @@ -13146,16 +6852,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11818" + "11968" ], "x-ms-correlation-request-id": [ - "7808df25-f1fc-48f5-8d1a-810f3f633bc4" + "d470b226-63bf-417b-9c50-d1fceb7586f6" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043726Z:7808df25-f1fc-48f5-8d1a-810f3f633bc4" + "WESTUS:20200924T053913Z:d470b226-63bf-417b-9c50-d1fceb7586f6" ], "Date": [ - "Mon, 14 Sep 2020 04:37:25 GMT" + "Thu, 24 Sep 2020 05:39:12 GMT" ], "Content-Length": [ "76" @@ -13164,17 +6870,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -13182,13 +6888,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "700dbb6b-ef5e-4f73-8e6b-5cfd522109c9" + "3670f2fe-d05c-4061-aea9-1996c62f95ef" ], "X-Content-Type-Options": [ "nosniff" @@ -13203,16 +6909,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11817" + "11967" ], "x-ms-correlation-request-id": [ - "93a4963e-9358-4faa-a73f-30fae9ceee93" + "18bc7a7e-a228-492f-b8b9-acd5df4d2b58" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043726Z:93a4963e-9358-4faa-a73f-30fae9ceee93" + "WESTUS:20200924T053913Z:18bc7a7e-a228-492f-b8b9-acd5df4d2b58" ], "Date": [ - "Mon, 14 Sep 2020 04:37:25 GMT" + "Thu, 24 Sep 2020 05:39:13 GMT" ], "Content-Length": [ "76" @@ -13221,17 +6927,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -13239,13 +6945,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "36f2a023-0582-433c-80cd-aa3f20f663aa" + "79d8d9d0-0ee6-4957-a06b-90714f346e20" ], "X-Content-Type-Options": [ "nosniff" @@ -13260,16 +6966,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11816" + "11966" ], "x-ms-correlation-request-id": [ - "9ebf55e7-8e19-4384-ae8d-896b9037ad8a" + "abba1e18-dbfe-4261-a168-9f1b09b61545" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043726Z:9ebf55e7-8e19-4384-ae8d-896b9037ad8a" + "WESTUS:20200924T053914Z:abba1e18-dbfe-4261-a168-9f1b09b61545" ], "Date": [ - "Mon, 14 Sep 2020 04:37:25 GMT" + "Thu, 24 Sep 2020 05:39:13 GMT" ], "Content-Length": [ "76" @@ -13278,17 +6984,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -13296,13 +7002,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "e362bc67-fd76-47ad-a574-a7f83530f4c0" + "89687fc7-c956-46d3-8f57-5d00635e1f10" ], "X-Content-Type-Options": [ "nosniff" @@ -13317,16 +7023,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11815" + "11965" ], "x-ms-correlation-request-id": [ - "b0966c22-1ead-489e-b034-b659483e1b92" + "b6115f3c-1e30-484e-9081-b8c180b61809" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043726Z:b0966c22-1ead-489e-b034-b659483e1b92" + "WESTUS:20200924T053914Z:b6115f3c-1e30-484e-9081-b8c180b61809" ], "Date": [ - "Mon, 14 Sep 2020 04:37:25 GMT" + "Thu, 24 Sep 2020 05:39:13 GMT" ], "Content-Length": [ "76" @@ -13335,17 +7041,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -13353,13 +7059,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "230d4272-01a8-48b2-b049-c1a219e59cf4" + "9036ac45-bfe1-4c9d-97dd-5b199519b2fd" ], "X-Content-Type-Options": [ "nosniff" @@ -13374,16 +7080,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11814" + "11964" ], "x-ms-correlation-request-id": [ - "cd0d1dde-c369-45a1-9162-4e7f9ebab441" + "d6f7f6f1-96f4-4cf1-834b-f3ffc7825a6e" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043726Z:cd0d1dde-c369-45a1-9162-4e7f9ebab441" + "WESTUS:20200924T053914Z:d6f7f6f1-96f4-4cf1-834b-f3ffc7825a6e" ], "Date": [ - "Mon, 14 Sep 2020 04:37:26 GMT" + "Thu, 24 Sep 2020 05:39:13 GMT" ], "Content-Length": [ "76" @@ -13392,17 +7098,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -13410,13 +7116,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "8d036f35-fe30-46d2-af1a-49c4b8dd3040" + "6e95ec20-5dbb-41ff-8f58-37350eb0cccc" ], "X-Content-Type-Options": [ "nosniff" @@ -13431,16 +7137,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11813" + "11963" ], "x-ms-correlation-request-id": [ - "3b2e21db-bac7-4fc3-bc24-7b4f2950989f" + "aaaa8b41-560a-4027-afcb-e523df60869d" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043727Z:3b2e21db-bac7-4fc3-bc24-7b4f2950989f" + "WESTUS:20200924T053914Z:aaaa8b41-560a-4027-afcb-e523df60869d" ], "Date": [ - "Mon, 14 Sep 2020 04:37:26 GMT" + "Thu, 24 Sep 2020 05:39:13 GMT" ], "Content-Length": [ "76" @@ -13449,17 +7155,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -13467,13 +7173,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "ac16f9cc-bfcb-4ba6-b65c-75e5bbc138e7" + "7ae1c6b8-3f87-4d49-8784-80aa96fcaded" ], "X-Content-Type-Options": [ "nosniff" @@ -13488,16 +7194,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11812" + "11962" ], "x-ms-correlation-request-id": [ - "4a57397b-0239-44c5-9569-9a645e84a6ac" + "5c65059b-4696-4315-a630-be4c92a8ee3d" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043727Z:4a57397b-0239-44c5-9569-9a645e84a6ac" + "WESTUS:20200924T053914Z:5c65059b-4696-4315-a630-be4c92a8ee3d" ], "Date": [ - "Mon, 14 Sep 2020 04:37:26 GMT" + "Thu, 24 Sep 2020 05:39:14 GMT" ], "Content-Length": [ "76" @@ -13506,17 +7212,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -13524,13 +7230,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "e6186d25-09a4-404d-b35d-45d52b0d1ca8" + "e2821bbd-2913-48f8-a89d-31be615cb5e9" ], "X-Content-Type-Options": [ "nosniff" @@ -13545,16 +7251,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11811" + "11961" ], "x-ms-correlation-request-id": [ - "7885bd8d-d1f0-4c35-9813-cffe5e108991" + "cd3659a1-96d5-47ff-8bf6-551ed532cc1e" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043727Z:7885bd8d-d1f0-4c35-9813-cffe5e108991" + "WESTUS:20200924T053915Z:cd3659a1-96d5-47ff-8bf6-551ed532cc1e" ], "Date": [ - "Mon, 14 Sep 2020 04:37:26 GMT" + "Thu, 24 Sep 2020 05:39:14 GMT" ], "Content-Length": [ "76" @@ -13563,17 +7269,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -13581,13 +7287,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "965e3425-f9f5-441b-b4c0-d4a29a927424" + "e41ad803-1c7e-4965-9829-577b4560ab0e" ], "X-Content-Type-Options": [ "nosniff" @@ -13602,16 +7308,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11810" + "11960" ], "x-ms-correlation-request-id": [ - "fc0cf7ae-cfe8-481d-a725-71051c6942ed" + "a23b76c3-9c1c-4a79-86d7-3ff1236acd1d" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043727Z:fc0cf7ae-cfe8-481d-a725-71051c6942ed" + "WESTUS:20200924T053915Z:a23b76c3-9c1c-4a79-86d7-3ff1236acd1d" ], "Date": [ - "Mon, 14 Sep 2020 04:37:26 GMT" + "Thu, 24 Sep 2020 05:39:14 GMT" ], "Content-Length": [ "76" @@ -13620,17 +7326,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -13638,13 +7344,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "0e87a6d9-9799-4361-8e30-aa4bedb8ea2b" + "c9dad446-9999-4685-9694-c0b2c04cd268" ], "X-Content-Type-Options": [ "nosniff" @@ -13659,16 +7365,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11809" + "11959" ], "x-ms-correlation-request-id": [ - "fb553224-562f-4e46-8824-48624a750eab" + "4504b05a-32a0-4045-86c3-cbd64d2b41fa" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043728Z:fb553224-562f-4e46-8824-48624a750eab" + "WESTUS:20200924T053915Z:4504b05a-32a0-4045-86c3-cbd64d2b41fa" ], "Date": [ - "Mon, 14 Sep 2020 04:37:27 GMT" + "Thu, 24 Sep 2020 05:39:14 GMT" ], "Content-Length": [ "76" @@ -13677,17 +7383,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -13695,13 +7401,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "d0ae01ca-627f-4b9d-a233-a73a1206f834" + "bff64c0e-ed19-4107-833f-c6d4c37c91e1" ], "X-Content-Type-Options": [ "nosniff" @@ -13716,16 +7422,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11808" + "11958" ], "x-ms-correlation-request-id": [ - "e7862d4b-15de-4d9c-8f15-953cdb012907" + "6c2700c7-cdd9-4546-9156-245f8d255593" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043728Z:e7862d4b-15de-4d9c-8f15-953cdb012907" + "WESTUS:20200924T053915Z:6c2700c7-cdd9-4546-9156-245f8d255593" ], "Date": [ - "Mon, 14 Sep 2020 04:37:27 GMT" + "Thu, 24 Sep 2020 05:39:15 GMT" ], "Content-Length": [ "76" @@ -13734,17 +7440,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -13752,13 +7458,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "6f2c6c09-42d9-4e2a-b4db-8e1d2bfeb9a6" + "21ac2d72-9de7-4d64-b790-8f92b2da0fcb" ], "X-Content-Type-Options": [ "nosniff" @@ -13773,16 +7479,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11807" + "11957" ], "x-ms-correlation-request-id": [ - "0442a524-b265-45ff-8932-27ea612227b9" + "ee4bfb02-4248-43f1-a5c1-f8302f7be99b" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043728Z:0442a524-b265-45ff-8932-27ea612227b9" + "WESTUS:20200924T053916Z:ee4bfb02-4248-43f1-a5c1-f8302f7be99b" ], "Date": [ - "Mon, 14 Sep 2020 04:37:27 GMT" + "Thu, 24 Sep 2020 05:39:15 GMT" ], "Content-Length": [ "76" @@ -13791,17 +7497,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -13809,13 +7515,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "9a5a2636-50e9-44cf-a74a-e1fabea08a5a" + "f6946827-7b75-420b-9900-f5d5830ce5dc" ], "X-Content-Type-Options": [ "nosniff" @@ -13830,16 +7536,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11806" + "11956" ], "x-ms-correlation-request-id": [ - "b29ccf8a-a0de-406f-9853-0e169574e38d" + "358e227d-98a8-4f6a-8edf-6a25f35ac890" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043728Z:b29ccf8a-a0de-406f-9853-0e169574e38d" + "WESTUS:20200924T053916Z:358e227d-98a8-4f6a-8edf-6a25f35ac890" ], "Date": [ - "Mon, 14 Sep 2020 04:37:27 GMT" + "Thu, 24 Sep 2020 05:39:15 GMT" ], "Content-Length": [ "76" @@ -13848,17 +7554,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -13866,13 +7572,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "c9da6190-6ca7-4a62-8ff7-76f00334e40a" + "71dea31d-e6c3-441b-ab01-b095e1a4ad5b" ], "X-Content-Type-Options": [ "nosniff" @@ -13887,16 +7593,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11805" + "11955" ], "x-ms-correlation-request-id": [ - "25fa8678-73be-4de4-9cc4-08b94ae7f5d5" + "91b1bb47-4ee0-4ca6-acb4-7c9bb438fa6e" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043728Z:25fa8678-73be-4de4-9cc4-08b94ae7f5d5" + "WESTUS:20200924T053916Z:91b1bb47-4ee0-4ca6-acb4-7c9bb438fa6e" ], "Date": [ - "Mon, 14 Sep 2020 04:37:27 GMT" + "Thu, 24 Sep 2020 05:39:15 GMT" ], "Content-Length": [ "76" @@ -13905,17 +7611,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -13923,13 +7629,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "eb9289d8-1335-420b-9752-37c40f250d03" + "63160116-299a-4906-ab15-090f0a166ba6" ], "X-Content-Type-Options": [ "nosniff" @@ -13944,16 +7650,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11804" + "11954" ], "x-ms-correlation-request-id": [ - "639f039a-ec4e-4b43-bf4a-3df834705ca5" + "597ba2c9-bec8-419c-a8c2-25259a70f7b4" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043729Z:639f039a-ec4e-4b43-bf4a-3df834705ca5" + "WESTUS:20200924T053916Z:597ba2c9-bec8-419c-a8c2-25259a70f7b4" ], "Date": [ - "Mon, 14 Sep 2020 04:37:28 GMT" + "Thu, 24 Sep 2020 05:39:15 GMT" ], "Content-Length": [ "76" @@ -13962,17 +7668,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -13980,13 +7686,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "9712409e-4197-484f-8026-57ffc8748c90" + "ceea25a3-1e66-4d35-b950-ba13124b0523" ], "X-Content-Type-Options": [ "nosniff" @@ -14001,16 +7707,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11803" + "11953" ], "x-ms-correlation-request-id": [ - "0b2ef889-d53d-4dad-b3dc-7ed0747b479b" + "20b96f04-b451-4596-95e1-e740e52ba5b9" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043729Z:0b2ef889-d53d-4dad-b3dc-7ed0747b479b" + "WESTUS:20200924T053916Z:20b96f04-b451-4596-95e1-e740e52ba5b9" ], "Date": [ - "Mon, 14 Sep 2020 04:37:28 GMT" + "Thu, 24 Sep 2020 05:39:16 GMT" ], "Content-Length": [ "76" @@ -14019,17 +7725,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -14037,13 +7743,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "613d8519-da28-4350-87de-05c8000732e7" + "ea9f4f2c-0998-4b31-9399-4780bcbbc8c7" ], "X-Content-Type-Options": [ "nosniff" @@ -14058,16 +7764,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11802" + "11952" ], "x-ms-correlation-request-id": [ - "3f409222-43b2-4f41-910a-b8dfd58efa26" + "5131ce78-dec3-49ce-a331-0c9b6c692b51" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043729Z:3f409222-43b2-4f41-910a-b8dfd58efa26" + "WESTUS:20200924T053917Z:5131ce78-dec3-49ce-a331-0c9b6c692b51" ], "Date": [ - "Mon, 14 Sep 2020 04:37:28 GMT" + "Thu, 24 Sep 2020 05:39:16 GMT" ], "Content-Length": [ "76" @@ -14076,17 +7782,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -14094,13 +7800,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "acd8c3a1-5f5f-40cb-a5da-1250e4bf323f" + "4f82bb82-c23f-46d4-b4dd-b9b645240d66" ], "X-Content-Type-Options": [ "nosniff" @@ -14115,16 +7821,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11801" + "11951" ], "x-ms-correlation-request-id": [ - "e4fed932-7d70-4f57-8d2c-c97ef0158abe" + "de766464-1eb5-428e-9dc5-3d87dd090bff" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043729Z:e4fed932-7d70-4f57-8d2c-c97ef0158abe" + "WESTUS:20200924T053917Z:de766464-1eb5-428e-9dc5-3d87dd090bff" ], "Date": [ - "Mon, 14 Sep 2020 04:37:28 GMT" + "Thu, 24 Sep 2020 05:39:16 GMT" ], "Content-Length": [ "76" @@ -14133,17 +7839,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -14151,13 +7857,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "18a7ebb5-81ea-4690-abe1-698cc32cb197" + "9de1d353-2af5-4f9c-bdbf-b2280e13c46e" ], "X-Content-Type-Options": [ "nosniff" @@ -14172,16 +7878,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11800" + "11950" ], "x-ms-correlation-request-id": [ - "2a8bcec6-2fe3-43d0-b419-a85aad854c1d" + "d869474a-d18c-4522-bdae-8f7483a666ad" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043729Z:2a8bcec6-2fe3-43d0-b419-a85aad854c1d" + "WESTUS:20200924T053917Z:d869474a-d18c-4522-bdae-8f7483a666ad" ], "Date": [ - "Mon, 14 Sep 2020 04:37:28 GMT" + "Thu, 24 Sep 2020 05:39:16 GMT" ], "Content-Length": [ "76" @@ -14190,17 +7896,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -14208,13 +7914,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "35bc0bfd-e24d-4e3c-96f1-99f09ce237c4" + "a1c14734-9de7-4895-aa61-bb8cfe3be6f8" ], "X-Content-Type-Options": [ "nosniff" @@ -14229,16 +7935,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11799" + "11949" ], "x-ms-correlation-request-id": [ - "0c55506d-2839-43bd-b67f-b458678dfa99" + "7a22504a-7954-4320-98c3-0f4cd190f942" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043730Z:0c55506d-2839-43bd-b67f-b458678dfa99" + "WESTUS:20200924T053917Z:7a22504a-7954-4320-98c3-0f4cd190f942" ], "Date": [ - "Mon, 14 Sep 2020 04:37:29 GMT" + "Thu, 24 Sep 2020 05:39:17 GMT" ], "Content-Length": [ "76" @@ -14247,17 +7953,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -14265,13 +7971,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "035af60c-65a8-4aff-81fc-aafec113bed2" + "b3a9ecf7-aa76-4724-bed2-543797404713" ], "X-Content-Type-Options": [ "nosniff" @@ -14286,16 +7992,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11798" + "11948" ], "x-ms-correlation-request-id": [ - "0c9766be-b9f9-449e-bf7e-e5dbe930acc6" + "58f0ff56-b169-425b-bac0-8b2e974ac1ed" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043730Z:0c9766be-b9f9-449e-bf7e-e5dbe930acc6" + "WESTUS:20200924T053917Z:58f0ff56-b169-425b-bac0-8b2e974ac1ed" ], "Date": [ - "Mon, 14 Sep 2020 04:37:29 GMT" + "Thu, 24 Sep 2020 05:39:17 GMT" ], "Content-Length": [ "76" @@ -14304,17 +8010,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -14322,13 +8028,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "4a391277-2d6e-465e-b2de-3d7d6a95149e" + "058b8047-2d04-40a3-b868-691ed904fab7" ], "X-Content-Type-Options": [ "nosniff" @@ -14343,16 +8049,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11797" + "11947" ], "x-ms-correlation-request-id": [ - "67968814-ab06-4647-8b81-ee424ff1c77d" + "2772e3d4-a191-46ab-816d-7a2c39041c8a" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043730Z:67968814-ab06-4647-8b81-ee424ff1c77d" + "WESTUS:20200924T053918Z:2772e3d4-a191-46ab-816d-7a2c39041c8a" ], "Date": [ - "Mon, 14 Sep 2020 04:37:29 GMT" + "Thu, 24 Sep 2020 05:39:17 GMT" ], "Content-Length": [ "76" @@ -14361,17 +8067,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -14379,13 +8085,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "06a05163-a7a6-48a2-91b6-147239b83e59" + "c2f2c8cc-ce48-42dc-a619-4fd395f8dc48" ], "X-Content-Type-Options": [ "nosniff" @@ -14400,16 +8106,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11796" + "11946" ], "x-ms-correlation-request-id": [ - "d8f65850-8fdf-4442-99ea-a043978ea529" + "44814987-c5b9-4120-b70b-20f4ca2618e3" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043730Z:d8f65850-8fdf-4442-99ea-a043978ea529" + "WESTUS:20200924T053918Z:44814987-c5b9-4120-b70b-20f4ca2618e3" ], "Date": [ - "Mon, 14 Sep 2020 04:37:29 GMT" + "Thu, 24 Sep 2020 05:39:17 GMT" ], "Content-Length": [ "76" @@ -14418,17 +8124,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -14436,13 +8142,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "2c1a6734-6f5d-439a-87e9-1da5f228b739" + "afaf4a33-0712-4903-a150-c1fe2adbef19" ], "X-Content-Type-Options": [ "nosniff" @@ -14457,16 +8163,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11795" + "11945" ], "x-ms-correlation-request-id": [ - "d4c960d0-b6db-4b04-b8ef-184987c1421c" + "16e7d9e5-3a9b-4ec8-9df5-54dc0a0d0439" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043731Z:d4c960d0-b6db-4b04-b8ef-184987c1421c" + "WESTUS:20200924T053918Z:16e7d9e5-3a9b-4ec8-9df5-54dc0a0d0439" ], "Date": [ - "Mon, 14 Sep 2020 04:37:30 GMT" + "Thu, 24 Sep 2020 05:39:17 GMT" ], "Content-Length": [ "76" @@ -14475,17 +8181,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -14493,13 +8199,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "862d50f4-5ccc-4017-be20-0e1435d3e735" + "3684a4a5-20cd-48e8-8863-b104c40bfbc2" ], "X-Content-Type-Options": [ "nosniff" @@ -14514,16 +8220,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11794" + "11944" ], "x-ms-correlation-request-id": [ - "fdacee4a-83df-4fca-a9b4-49668b3f5841" + "1071bfbc-2f22-4051-85ff-468120571823" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043731Z:fdacee4a-83df-4fca-a9b4-49668b3f5841" + "WESTUS:20200924T053918Z:1071bfbc-2f22-4051-85ff-468120571823" ], "Date": [ - "Mon, 14 Sep 2020 04:37:30 GMT" + "Thu, 24 Sep 2020 05:39:18 GMT" ], "Content-Length": [ "76" @@ -14532,17 +8238,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -14550,13 +8256,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "183c2f10-6a4c-48a4-9aa4-9b26ded65d87" + "533a4512-e217-4e23-93e4-0054b93f9ee0" ], "X-Content-Type-Options": [ "nosniff" @@ -14571,16 +8277,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11793" + "11943" ], "x-ms-correlation-request-id": [ - "8f8c2d8a-fef6-4c10-978d-b3ae79e78481" + "16e137de-380d-46e8-8b6c-a241f3a4a174" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043731Z:8f8c2d8a-fef6-4c10-978d-b3ae79e78481" + "WESTUS:20200924T053919Z:16e137de-380d-46e8-8b6c-a241f3a4a174" ], "Date": [ - "Mon, 14 Sep 2020 04:37:30 GMT" + "Thu, 24 Sep 2020 05:39:18 GMT" ], "Content-Length": [ "76" @@ -14589,17 +8295,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -14607,13 +8313,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "9a672193-9ca6-4da3-9ae2-dec20194009f" + "b69d7e02-d260-4ca4-9a96-326d49e250aa" ], "X-Content-Type-Options": [ "nosniff" @@ -14628,16 +8334,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11792" + "11942" ], "x-ms-correlation-request-id": [ - "e802224d-d970-4abf-8b3c-47da82dd1c1c" + "19371f23-7568-44ce-ab1f-e35e2614a7ca" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043731Z:e802224d-d970-4abf-8b3c-47da82dd1c1c" + "WESTUS:20200924T053919Z:19371f23-7568-44ce-ab1f-e35e2614a7ca" ], "Date": [ - "Mon, 14 Sep 2020 04:37:30 GMT" + "Thu, 24 Sep 2020 05:39:18 GMT" ], "Content-Length": [ "76" @@ -14646,17 +8352,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -14664,13 +8370,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "767ef582-08c0-4bf1-a430-673740d8a7c6" + "45a64515-25ae-48e6-9d11-2a72e865e441" ], "X-Content-Type-Options": [ "nosniff" @@ -14685,16 +8391,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11791" + "11941" ], "x-ms-correlation-request-id": [ - "ab9fea71-4385-46e4-ba09-fdf1f27f65f2" + "373ba63a-39d7-42da-85e7-11187510c4a1" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043731Z:ab9fea71-4385-46e4-ba09-fdf1f27f65f2" + "WESTUS:20200924T053919Z:373ba63a-39d7-42da-85e7-11187510c4a1" ], "Date": [ - "Mon, 14 Sep 2020 04:37:30 GMT" + "Thu, 24 Sep 2020 05:39:18 GMT" ], "Content-Length": [ "76" @@ -14703,17 +8409,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -14721,13 +8427,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "21564ca6-2685-4063-9159-92483f7f540b" + "05ad107e-a723-4a1d-a654-ecbea30c3f4a" ], "X-Content-Type-Options": [ "nosniff" @@ -14742,16 +8448,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11790" + "11940" ], "x-ms-correlation-request-id": [ - "4a5f38f8-74c1-47eb-a053-ef1463440d04" + "3028620c-5979-4b0c-b9ca-1745648f5ac7" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043732Z:4a5f38f8-74c1-47eb-a053-ef1463440d04" + "WESTUS:20200924T053919Z:3028620c-5979-4b0c-b9ca-1745648f5ac7" ], "Date": [ - "Mon, 14 Sep 2020 04:37:32 GMT" + "Thu, 24 Sep 2020 05:39:18 GMT" ], "Content-Length": [ "76" @@ -14760,17 +8466,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -14778,13 +8484,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "2bb09139-3b9e-47d8-ad7f-f31f82307d66" + "2b3b6c0e-86ae-4254-ae26-73e7cbd47392" ], "X-Content-Type-Options": [ "nosniff" @@ -14799,16 +8505,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11789" + "11939" ], "x-ms-correlation-request-id": [ - "cfc6099d-b39a-462c-ae37-45c83d95936f" + "8b267500-c771-40c5-99f4-8f393e385fea" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043732Z:cfc6099d-b39a-462c-ae37-45c83d95936f" + "WESTUS:20200924T053919Z:8b267500-c771-40c5-99f4-8f393e385fea" ], "Date": [ - "Mon, 14 Sep 2020 04:37:32 GMT" + "Thu, 24 Sep 2020 05:39:19 GMT" ], "Content-Length": [ "76" @@ -14817,17 +8523,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -14835,13 +8541,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "d0d93c88-5281-4984-a7c3-b513196960e9" + "60a9ddfe-cfba-4aef-88e2-2e2f696b746c" ], "X-Content-Type-Options": [ "nosniff" @@ -14856,16 +8562,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11788" + "11938" ], "x-ms-correlation-request-id": [ - "62c018e1-e173-4a7b-b515-98014131949a" + "5ba72599-dd06-4dd0-9b8f-caced14a7b66" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043732Z:62c018e1-e173-4a7b-b515-98014131949a" + "WESTUS:20200924T053920Z:5ba72599-dd06-4dd0-9b8f-caced14a7b66" ], "Date": [ - "Mon, 14 Sep 2020 04:37:32 GMT" + "Thu, 24 Sep 2020 05:39:19 GMT" ], "Content-Length": [ "76" @@ -14874,17 +8580,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -14892,13 +8598,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "3c81f544-a1f4-4a1c-956f-f5889f6f5a27" + "4b3b4a5b-ac5a-42d3-9626-82eb198133c5" ], "X-Content-Type-Options": [ "nosniff" @@ -14913,16 +8619,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11787" + "11937" ], "x-ms-correlation-request-id": [ - "2824399d-98df-4944-882e-b84c5bea6119" + "1f61c15c-3750-4841-9402-1b00d9d59d2d" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043732Z:2824399d-98df-4944-882e-b84c5bea6119" + "WESTUS:20200924T053920Z:1f61c15c-3750-4841-9402-1b00d9d59d2d" ], "Date": [ - "Mon, 14 Sep 2020 04:37:32 GMT" + "Thu, 24 Sep 2020 05:39:19 GMT" ], "Content-Length": [ "76" @@ -14931,17 +8637,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -14949,13 +8655,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "0c78c649-d3c7-406f-a8d5-50ef7dd1382b" + "e9250cd2-02e2-4589-9f26-cd6ab3bcca7a" ], "X-Content-Type-Options": [ "nosniff" @@ -14970,16 +8676,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11786" + "11936" ], "x-ms-correlation-request-id": [ - "7bf56fa9-a547-443f-8e12-1b3641f9c6be" + "41bfd016-a72e-46b2-92e5-7422c82d5f9a" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043732Z:7bf56fa9-a547-443f-8e12-1b3641f9c6be" + "WESTUS:20200924T053920Z:41bfd016-a72e-46b2-92e5-7422c82d5f9a" ], "Date": [ - "Mon, 14 Sep 2020 04:37:32 GMT" + "Thu, 24 Sep 2020 05:39:19 GMT" ], "Content-Length": [ "76" @@ -14988,17 +8694,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -15006,13 +8712,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "58e6a632-00a4-4bb4-ab20-ae1a315b4f08" + "e2e9479a-ca90-4204-aff4-09def2740ae7" ], "X-Content-Type-Options": [ "nosniff" @@ -15027,16 +8733,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11785" + "11935" ], "x-ms-correlation-request-id": [ - "12ca813a-b5a3-4148-8666-ab591939580d" + "e53f0b7f-fb48-4ab9-9fe2-6d10297f43b1" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043733Z:12ca813a-b5a3-4148-8666-ab591939580d" + "WESTUS:20200924T053920Z:e53f0b7f-fb48-4ab9-9fe2-6d10297f43b1" ], "Date": [ - "Mon, 14 Sep 2020 04:37:33 GMT" + "Thu, 24 Sep 2020 05:39:19 GMT" ], "Content-Length": [ "76" @@ -15045,17 +8751,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -15063,13 +8769,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "3dd3381d-1207-4f07-ab56-94c5d6e780f6" + "dd113dc5-4dc0-4be8-ac0e-aa75c2e0289c" ], "X-Content-Type-Options": [ "nosniff" @@ -15084,16 +8790,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11784" + "11934" ], "x-ms-correlation-request-id": [ - "50fbc533-045d-4757-a601-5e90f735abac" + "058e26f5-c45b-4652-952f-c3d8dc604105" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043733Z:50fbc533-045d-4757-a601-5e90f735abac" + "WESTUS:20200924T053920Z:058e26f5-c45b-4652-952f-c3d8dc604105" ], "Date": [ - "Mon, 14 Sep 2020 04:37:33 GMT" + "Thu, 24 Sep 2020 05:39:20 GMT" ], "Content-Length": [ "76" @@ -15102,17 +8808,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -15120,13 +8826,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "14f53914-c3a3-4e2f-a786-4279094e1899" + "18cbe573-4209-4ee0-b1a8-9210739a9a1e" ], "X-Content-Type-Options": [ "nosniff" @@ -15141,16 +8847,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11783" + "11933" ], "x-ms-correlation-request-id": [ - "1a6ec094-9bc9-484c-a6f1-16736559422e" + "a21be909-cfe7-4b79-a72f-e8a027598054" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043733Z:1a6ec094-9bc9-484c-a6f1-16736559422e" + "WESTUS:20200924T053921Z:a21be909-cfe7-4b79-a72f-e8a027598054" ], "Date": [ - "Mon, 14 Sep 2020 04:37:33 GMT" + "Thu, 24 Sep 2020 05:39:20 GMT" ], "Content-Length": [ "76" @@ -15159,17 +8865,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -15177,13 +8883,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "cc8aaf1d-f6cb-4851-a1eb-7786888d314f" + "7fb9ca5a-8c28-4358-9f22-0c9cebaa31be" ], "X-Content-Type-Options": [ "nosniff" @@ -15198,16 +8904,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11782" + "11932" ], "x-ms-correlation-request-id": [ - "5aeb25c2-f198-4852-b4fa-dd6d5cd97ba5" + "807cc34f-932f-4626-b5d7-0f85d141affa" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043733Z:5aeb25c2-f198-4852-b4fa-dd6d5cd97ba5" + "WESTUS:20200924T053921Z:807cc34f-932f-4626-b5d7-0f85d141affa" ], "Date": [ - "Mon, 14 Sep 2020 04:37:33 GMT" + "Thu, 24 Sep 2020 05:39:20 GMT" ], "Content-Length": [ "76" @@ -15216,17 +8922,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -15234,13 +8940,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "fed62249-0b7f-469f-b0a8-17d04b51fb57" + "57e5217e-c5d5-453b-a154-9fb51a195bd2" ], "X-Content-Type-Options": [ "nosniff" @@ -15255,16 +8961,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11781" + "11931" ], "x-ms-correlation-request-id": [ - "064a9fb7-5de2-4e77-ac5e-84adc231fa31" + "f9661abc-f56e-4954-a92c-46cf8ec99402" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043734Z:064a9fb7-5de2-4e77-ac5e-84adc231fa31" + "WESTUS:20200924T053921Z:f9661abc-f56e-4954-a92c-46cf8ec99402" ], "Date": [ - "Mon, 14 Sep 2020 04:37:33 GMT" + "Thu, 24 Sep 2020 05:39:20 GMT" ], "Content-Length": [ "76" @@ -15273,17 +8979,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -15291,13 +8997,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "6af896ab-4274-4e64-8352-f8985cb56532" + "0fd6044c-c90a-4857-805a-5c6ceee39d94" ], "X-Content-Type-Options": [ "nosniff" @@ -15312,16 +9018,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11780" + "11930" ], "x-ms-correlation-request-id": [ - "9b3381fc-ad51-4e44-861f-d460be700592" + "8ba28df7-7b99-4c91-b1f8-5744ddf8c217" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043734Z:9b3381fc-ad51-4e44-861f-d460be700592" + "WESTUS:20200924T053921Z:8ba28df7-7b99-4c91-b1f8-5744ddf8c217" ], "Date": [ - "Mon, 14 Sep 2020 04:37:34 GMT" + "Thu, 24 Sep 2020 05:39:20 GMT" ], "Content-Length": [ "76" @@ -15330,17 +9036,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -15348,13 +9054,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "dae150df-d36a-45a2-af01-223fb93c5b46" + "6937a1f1-5dfd-4978-b035-c80eb539afae" ], "X-Content-Type-Options": [ "nosniff" @@ -15369,16 +9075,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11779" + "11929" ], "x-ms-correlation-request-id": [ - "61970ef3-7a99-4dbc-96ae-4b5d0ccbea9c" + "744a28c9-e419-4d64-9d01-621b5b9d6675" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043734Z:61970ef3-7a99-4dbc-96ae-4b5d0ccbea9c" + "WESTUS:20200924T053921Z:744a28c9-e419-4d64-9d01-621b5b9d6675" ], "Date": [ - "Mon, 14 Sep 2020 04:37:34 GMT" + "Thu, 24 Sep 2020 05:39:21 GMT" ], "Content-Length": [ "76" @@ -15387,17 +9093,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -15405,13 +9111,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "a1eff278-c7df-43a7-ac3e-df92ff281173" + "bd71a93a-02f7-49e0-870c-a8d06dd1d6be" ], "X-Content-Type-Options": [ "nosniff" @@ -15426,16 +9132,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11778" + "11928" ], "x-ms-correlation-request-id": [ - "a991c778-e5f4-4600-93d2-b6ff03618eb0" + "d9e2e2b9-2d77-4e54-abdb-f5e5254d6726" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043734Z:a991c778-e5f4-4600-93d2-b6ff03618eb0" + "WESTUS:20200924T053922Z:d9e2e2b9-2d77-4e54-abdb-f5e5254d6726" ], "Date": [ - "Mon, 14 Sep 2020 04:37:34 GMT" + "Thu, 24 Sep 2020 05:39:21 GMT" ], "Content-Length": [ "76" @@ -15444,17 +9150,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -15462,13 +9168,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "d6ed5a94-880a-4d41-a37c-b0b9496c7d6b" + "65ceffeb-ab53-42b2-81de-a0a3d813c33f" ], "X-Content-Type-Options": [ "nosniff" @@ -15483,16 +9189,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11777" + "11927" ], "x-ms-correlation-request-id": [ - "8f9897ca-b19b-42d6-bae7-9250cb15e9db" + "5b5377be-2f3a-44bb-8952-4a4c033da74d" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043734Z:8f9897ca-b19b-42d6-bae7-9250cb15e9db" + "WESTUS:20200924T053922Z:5b5377be-2f3a-44bb-8952-4a4c033da74d" ], "Date": [ - "Mon, 14 Sep 2020 04:37:34 GMT" + "Thu, 24 Sep 2020 05:39:21 GMT" ], "Content-Length": [ "76" @@ -15501,17 +9207,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -15519,13 +9225,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "85f29b9a-e767-4c4d-a11b-52d1aed645ed" + "9d3302c4-919a-4d07-8d1b-83512dd49f36" ], "X-Content-Type-Options": [ "nosniff" @@ -15540,16 +9246,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11776" + "11926" ], "x-ms-correlation-request-id": [ - "4b6ac988-3589-4d85-8da0-c10a6049bf58" + "cc682b95-e5ed-42e7-ac2b-21803a29b149" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043735Z:4b6ac988-3589-4d85-8da0-c10a6049bf58" + "WESTUS:20200924T053922Z:cc682b95-e5ed-42e7-ac2b-21803a29b149" ], "Date": [ - "Mon, 14 Sep 2020 04:37:35 GMT" + "Thu, 24 Sep 2020 05:39:21 GMT" ], "Content-Length": [ "76" @@ -15558,17 +9264,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -15576,13 +9282,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "2fe6c898-d569-48ed-8ccc-027d6a4e99d4" + "0c20a31f-a53e-41af-ba37-d9b28c0afa41" ], "X-Content-Type-Options": [ "nosniff" @@ -15597,16 +9303,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11775" + "11925" ], "x-ms-correlation-request-id": [ - "ca5617b4-fb37-4a06-91cf-a0f6cc82060a" + "72a28c6b-76f0-424e-bc21-4e8b72dacb2d" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043735Z:ca5617b4-fb37-4a06-91cf-a0f6cc82060a" + "WESTUS:20200924T053922Z:72a28c6b-76f0-424e-bc21-4e8b72dacb2d" ], "Date": [ - "Mon, 14 Sep 2020 04:37:35 GMT" + "Thu, 24 Sep 2020 05:39:22 GMT" ], "Content-Length": [ "76" @@ -15615,17 +9321,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -15633,13 +9339,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "67b7d268-a3d6-4982-8f87-a963a7c1522d" + "b14fef69-4001-456e-9380-ad20dbb7cda9" ], "X-Content-Type-Options": [ "nosniff" @@ -15654,16 +9360,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11774" + "11924" ], "x-ms-correlation-request-id": [ - "5b1f0eae-37ea-498f-8398-a0c3252a0b02" + "6ef83027-9dfc-45f3-b951-ca6464eb98cc" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043735Z:5b1f0eae-37ea-498f-8398-a0c3252a0b02" + "WESTUS:20200924T053922Z:6ef83027-9dfc-45f3-b951-ca6464eb98cc" ], "Date": [ - "Mon, 14 Sep 2020 04:37:35 GMT" + "Thu, 24 Sep 2020 05:39:22 GMT" ], "Content-Length": [ "76" @@ -15672,17 +9378,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -15690,13 +9396,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "eefa83d0-197a-46c3-b32f-4a2b9818682c" + "9cda4011-5dec-4c23-a2aa-23abbc04abb2" ], "X-Content-Type-Options": [ "nosniff" @@ -15711,16 +9417,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11773" + "11923" ], "x-ms-correlation-request-id": [ - "cd725e45-6df1-4f72-94a5-38be8e580ce0" + "f46ab2c2-6e18-4b35-bfeb-712027c943be" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043735Z:cd725e45-6df1-4f72-94a5-38be8e580ce0" + "WESTUS:20200924T053923Z:f46ab2c2-6e18-4b35-bfeb-712027c943be" ], "Date": [ - "Mon, 14 Sep 2020 04:37:35 GMT" + "Thu, 24 Sep 2020 05:39:22 GMT" ], "Content-Length": [ "76" @@ -15729,17 +9435,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -15747,13 +9453,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "e17d70ef-7aba-4e6b-add6-54a5e9fd7927" + "d1f7b6d1-47d2-4b6e-9cce-516b3ab44823" ], "X-Content-Type-Options": [ "nosniff" @@ -15768,16 +9474,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11772" + "11922" ], "x-ms-correlation-request-id": [ - "b4c0fac4-a930-4aa9-96ca-862badc30914" + "811f5fb3-eacd-431b-aa13-3385be72c8dc" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043736Z:b4c0fac4-a930-4aa9-96ca-862badc30914" + "WESTUS:20200924T053923Z:811f5fb3-eacd-431b-aa13-3385be72c8dc" ], "Date": [ - "Mon, 14 Sep 2020 04:37:35 GMT" + "Thu, 24 Sep 2020 05:39:22 GMT" ], "Content-Length": [ "76" @@ -15786,17 +9492,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -15804,13 +9510,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "3f2169e3-32d6-4ce1-88c3-c55498657c2c" + "c4305933-1476-45b4-b1de-4387df7d6417" ], "X-Content-Type-Options": [ "nosniff" @@ -15825,16 +9531,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11771" + "11921" ], "x-ms-correlation-request-id": [ - "32768b25-6fb9-4349-a30f-88964e951064" + "a25d11da-3e3c-4a28-8c4f-2f6cae389441" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043736Z:32768b25-6fb9-4349-a30f-88964e951064" + "WESTUS:20200924T053923Z:a25d11da-3e3c-4a28-8c4f-2f6cae389441" ], "Date": [ - "Mon, 14 Sep 2020 04:37:36 GMT" + "Thu, 24 Sep 2020 05:39:22 GMT" ], "Content-Length": [ "76" @@ -15843,17 +9549,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -15861,13 +9567,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "ce4692b2-927f-4858-813d-d139cc66d61d" + "244cdb37-d233-491b-aacc-92ab6e7864ed" ], "X-Content-Type-Options": [ "nosniff" @@ -15882,16 +9588,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11770" + "11920" ], "x-ms-correlation-request-id": [ - "5401bfa1-289c-47d2-b085-d827af42098b" + "2c7606da-5960-4e6d-a822-68102896ed8f" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043736Z:5401bfa1-289c-47d2-b085-d827af42098b" + "WESTUS:20200924T053923Z:2c7606da-5960-4e6d-a822-68102896ed8f" ], "Date": [ - "Mon, 14 Sep 2020 04:37:36 GMT" + "Thu, 24 Sep 2020 05:39:23 GMT" ], "Content-Length": [ "76" @@ -15900,17 +9606,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -15918,13 +9624,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "7adaa6ce-a68c-4c88-81d4-80f8ac92bfea" + "64e9a244-40b2-47c6-8e11-901b1e9b2be9" ], "X-Content-Type-Options": [ "nosniff" @@ -15939,16 +9645,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11769" + "11919" ], "x-ms-correlation-request-id": [ - "9dab0193-bd05-483a-ae58-e15c7e463f56" + "c9b20cfd-231e-499e-b92f-9707433d175c" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043736Z:9dab0193-bd05-483a-ae58-e15c7e463f56" + "WESTUS:20200924T053924Z:c9b20cfd-231e-499e-b92f-9707433d175c" ], "Date": [ - "Mon, 14 Sep 2020 04:37:36 GMT" + "Thu, 24 Sep 2020 05:39:24 GMT" ], "Content-Length": [ "76" @@ -15957,17 +9663,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -15975,13 +9681,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "0e530486-8bf2-4a6a-8fc5-0dfa2e70fb53" + "2a27b5aa-917f-41d2-a8d8-5ebe8b0f4556" ], "X-Content-Type-Options": [ "nosniff" @@ -15996,16 +9702,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11768" + "11918" ], "x-ms-correlation-request-id": [ - "c7823ec6-78ff-415d-810d-415eacdf1a75" + "9f2dac37-b353-4e82-8b53-7d316e4da94b" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043736Z:c7823ec6-78ff-415d-810d-415eacdf1a75" + "WESTUS:20200924T053925Z:9f2dac37-b353-4e82-8b53-7d316e4da94b" ], "Date": [ - "Mon, 14 Sep 2020 04:37:36 GMT" + "Thu, 24 Sep 2020 05:39:24 GMT" ], "Content-Length": [ "76" @@ -16014,17 +9720,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -16032,13 +9738,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "6f228d76-c621-4f7b-9658-acb65d2bc424" + "88c2e956-7877-419f-b052-fcf6423b5a27" ], "X-Content-Type-Options": [ "nosniff" @@ -16053,16 +9759,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11767" + "11917" ], "x-ms-correlation-request-id": [ - "b414e42b-105a-4f99-a6a5-d510d601d51d" + "dfdb3586-6f46-4bdc-a3f3-5f97997f0e8b" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043737Z:b414e42b-105a-4f99-a6a5-d510d601d51d" + "WESTUS:20200924T053925Z:dfdb3586-6f46-4bdc-a3f3-5f97997f0e8b" ], "Date": [ - "Mon, 14 Sep 2020 04:37:37 GMT" + "Thu, 24 Sep 2020 05:39:24 GMT" ], "Content-Length": [ "76" @@ -16071,17 +9777,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -16089,13 +9795,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "56eb7404-cc5c-4fb9-97d8-1f4fd03ed24b" + "214cdbbe-6664-489f-8603-e4106e11aed2" ], "X-Content-Type-Options": [ "nosniff" @@ -16110,16 +9816,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11766" + "11916" ], "x-ms-correlation-request-id": [ - "17a51091-f88f-4ef9-a509-ee120004f9a8" + "9312fae1-fef1-43b7-a4e0-4de00763b1de" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043737Z:17a51091-f88f-4ef9-a509-ee120004f9a8" + "WESTUS:20200924T053925Z:9312fae1-fef1-43b7-a4e0-4de00763b1de" ], "Date": [ - "Mon, 14 Sep 2020 04:37:37 GMT" + "Thu, 24 Sep 2020 05:39:24 GMT" ], "Content-Length": [ "76" @@ -16128,17 +9834,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -16146,13 +9852,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "eaafeeaf-d318-44b4-992b-fff712e5d12f" + "b3b01b68-8c84-47f0-beb5-19e787e25dcb" ], "X-Content-Type-Options": [ "nosniff" @@ -16167,16 +9873,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11765" + "11915" ], "x-ms-correlation-request-id": [ - "12cbe727-9005-4bf3-8f55-aae7af7b2595" + "ccf8f187-c49d-4942-bdd0-0e11e9eee4b2" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043737Z:12cbe727-9005-4bf3-8f55-aae7af7b2595" + "WESTUS:20200924T053925Z:ccf8f187-c49d-4942-bdd0-0e11e9eee4b2" ], "Date": [ - "Mon, 14 Sep 2020 04:37:37 GMT" + "Thu, 24 Sep 2020 05:39:24 GMT" ], "Content-Length": [ "76" @@ -16185,17 +9891,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -16203,13 +9909,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "15f6b502-71e7-40cf-8439-3c739109d051" + "d1ba6c3f-1f8b-4421-ad4b-de47fa723091" ], "X-Content-Type-Options": [ "nosniff" @@ -16224,16 +9930,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11764" + "11914" ], "x-ms-correlation-request-id": [ - "5e990df2-0b3e-4a6e-af25-adc0f18b4ab8" + "292ac29e-6aea-42e6-ad2f-b5b586f69112" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043737Z:5e990df2-0b3e-4a6e-af25-adc0f18b4ab8" + "WESTUS:20200924T053925Z:292ac29e-6aea-42e6-ad2f-b5b586f69112" ], "Date": [ - "Mon, 14 Sep 2020 04:37:37 GMT" + "Thu, 24 Sep 2020 05:39:25 GMT" ], "Content-Length": [ "76" @@ -16242,17 +9948,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -16260,13 +9966,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "186b5a63-f920-426a-89a1-28bdea2515af" + "b72a746f-a94d-4814-b8cb-0d5feeca34a8" ], "X-Content-Type-Options": [ "nosniff" @@ -16281,16 +9987,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11763" + "11913" ], "x-ms-correlation-request-id": [ - "ec3a5e3c-4187-4bf3-9c37-18a169b7f9be" + "514976c0-c412-4969-acca-210694bea8d4" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043737Z:ec3a5e3c-4187-4bf3-9c37-18a169b7f9be" + "WESTUS:20200924T053926Z:514976c0-c412-4969-acca-210694bea8d4" ], "Date": [ - "Mon, 14 Sep 2020 04:37:37 GMT" + "Thu, 24 Sep 2020 05:39:25 GMT" ], "Content-Length": [ "76" @@ -16299,17 +10005,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -16317,13 +10023,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "6371eaee-1e1f-4772-b142-b210b8943548" + "5b4d71f3-7738-424d-9335-6debf10dcf5e" ], "X-Content-Type-Options": [ "nosniff" @@ -16338,16 +10044,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11762" + "11912" ], "x-ms-correlation-request-id": [ - "8c2a85df-fd6d-4242-aa9b-a6bb9544f243" + "3ee80efb-a3a0-44f5-a0fc-8c9ff11c5eb1" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043738Z:8c2a85df-fd6d-4242-aa9b-a6bb9544f243" + "WESTUS:20200924T053926Z:3ee80efb-a3a0-44f5-a0fc-8c9ff11c5eb1" ], "Date": [ - "Mon, 14 Sep 2020 04:37:38 GMT" + "Thu, 24 Sep 2020 05:39:25 GMT" ], "Content-Length": [ "76" @@ -16356,17 +10062,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -16374,13 +10080,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "65720367-c21d-4243-b6d2-ef9904abbde2" + "ad15aa35-6ca4-4a8b-898e-4b367d68dcda" ], "X-Content-Type-Options": [ "nosniff" @@ -16395,16 +10101,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11761" + "11911" ], "x-ms-correlation-request-id": [ - "c89941ce-2704-4a38-8dab-478c4948c64a" + "577d2a10-4b0f-40ff-b9d8-d5804e5d9102" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043738Z:c89941ce-2704-4a38-8dab-478c4948c64a" + "WESTUS:20200924T053926Z:577d2a10-4b0f-40ff-b9d8-d5804e5d9102" ], "Date": [ - "Mon, 14 Sep 2020 04:37:38 GMT" + "Thu, 24 Sep 2020 05:39:25 GMT" ], "Content-Length": [ "76" @@ -16413,17 +10119,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -16431,13 +10137,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "c97579ec-fac9-4163-88a5-f1288830b501" + "005e823b-750d-4e07-bd2b-e94c826a3fd9" ], "X-Content-Type-Options": [ "nosniff" @@ -16452,16 +10158,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11760" + "11910" ], "x-ms-correlation-request-id": [ - "19c5eb61-efe2-4506-b6dc-f43a23dd9e42" + "0cf741a6-926a-46e8-8147-626ecfccb6a6" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043738Z:19c5eb61-efe2-4506-b6dc-f43a23dd9e42" + "WESTUS:20200924T053926Z:0cf741a6-926a-46e8-8147-626ecfccb6a6" ], "Date": [ - "Mon, 14 Sep 2020 04:37:38 GMT" + "Thu, 24 Sep 2020 05:39:26 GMT" ], "Content-Length": [ "76" @@ -16470,17 +10176,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -16488,13 +10194,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "2ca857f7-4fd2-4720-9067-21bea0b083e5" + "41ab3f9c-aefd-42c0-b014-3f1e041a5f76" ], "X-Content-Type-Options": [ "nosniff" @@ -16509,16 +10215,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11759" + "11909" ], "x-ms-correlation-request-id": [ - "a4ee6ecd-867f-44e2-9c76-4458b4cc5302" + "4f0e8687-3cf9-481e-8301-c0942e16008a" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043738Z:a4ee6ecd-867f-44e2-9c76-4458b4cc5302" + "WESTUS:20200924T053927Z:4f0e8687-3cf9-481e-8301-c0942e16008a" ], "Date": [ - "Mon, 14 Sep 2020 04:37:38 GMT" + "Thu, 24 Sep 2020 05:39:26 GMT" ], "Content-Length": [ "76" @@ -16527,17 +10233,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -16545,13 +10251,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "ead4c622-99aa-483c-9db9-7f028f070c3f" + "a467c69f-8b7a-4e03-ac88-5c3803e7fafe" ], "X-Content-Type-Options": [ "nosniff" @@ -16566,16 +10272,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11758" + "11908" ], "x-ms-correlation-request-id": [ - "0166f574-2781-4fa4-9e7c-4110d80c9f02" + "70381165-d2b2-402b-a5ef-e6eb87cbc3e7" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043739Z:0166f574-2781-4fa4-9e7c-4110d80c9f02" + "WESTUS:20200924T053927Z:70381165-d2b2-402b-a5ef-e6eb87cbc3e7" ], "Date": [ - "Mon, 14 Sep 2020 04:37:38 GMT" + "Thu, 24 Sep 2020 05:39:26 GMT" ], "Content-Length": [ "76" @@ -16584,17 +10290,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -16602,13 +10308,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "542496ee-5f07-444e-a13c-15095682adbf" + "374e0144-8a18-4492-b7c9-4a6c656af307" ], "X-Content-Type-Options": [ "nosniff" @@ -16623,16 +10329,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11757" + "11907" ], "x-ms-correlation-request-id": [ - "9bd35807-6f84-46f3-8ad2-a464228c1ede" + "e98467ac-c8fe-492e-9f01-a4d75407e653" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043739Z:9bd35807-6f84-46f3-8ad2-a464228c1ede" + "WESTUS:20200924T053927Z:e98467ac-c8fe-492e-9f01-a4d75407e653" ], "Date": [ - "Mon, 14 Sep 2020 04:37:39 GMT" + "Thu, 24 Sep 2020 05:39:26 GMT" ], "Content-Length": [ "76" @@ -16641,17 +10347,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -16659,13 +10365,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "0afada52-b60c-4009-9729-7a1c7858849a" + "a45aca90-4a04-40f1-8f30-7023552d9917" ], "X-Content-Type-Options": [ "nosniff" @@ -16680,16 +10386,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11756" + "11906" ], "x-ms-correlation-request-id": [ - "6316efe8-a386-416f-83a1-1bd38f134f3d" + "32aaf25b-ee0f-4abe-bc84-40fdd7f3dccb" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043739Z:6316efe8-a386-416f-83a1-1bd38f134f3d" + "WESTUS:20200924T053927Z:32aaf25b-ee0f-4abe-bc84-40fdd7f3dccb" ], "Date": [ - "Mon, 14 Sep 2020 04:37:39 GMT" + "Thu, 24 Sep 2020 05:39:26 GMT" ], "Content-Length": [ "76" @@ -16698,17 +10404,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -16716,13 +10422,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "d384f1a8-c289-4e71-987b-f9f5c3f265bc" + "50a414a8-153d-4e6f-9c5d-2f464f43a1c2" ], "X-Content-Type-Options": [ "nosniff" @@ -16737,16 +10443,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11755" + "11905" ], "x-ms-correlation-request-id": [ - "4298e642-5d9a-4a9a-acbb-865015981ee5" + "9b8ff4f7-cfa6-4423-8b06-b8859c2b9bf3" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043739Z:4298e642-5d9a-4a9a-acbb-865015981ee5" + "WESTUS:20200924T053927Z:9b8ff4f7-cfa6-4423-8b06-b8859c2b9bf3" ], "Date": [ - "Mon, 14 Sep 2020 04:37:39 GMT" + "Thu, 24 Sep 2020 05:39:27 GMT" ], "Content-Length": [ "76" @@ -16755,17 +10461,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -16773,13 +10479,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "bb6b165c-886d-4497-b270-06fb09237d68" + "48d4e332-4ce0-475c-bfe8-6ecc2bb834d5" ], "X-Content-Type-Options": [ "nosniff" @@ -16794,16 +10500,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11754" + "11904" ], "x-ms-correlation-request-id": [ - "ed99e8b7-fd73-4b95-80f2-5313a0a95356" + "26ba3808-3b03-4433-865a-c474e08b4cf7" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043739Z:ed99e8b7-fd73-4b95-80f2-5313a0a95356" + "WESTUS:20200924T053928Z:26ba3808-3b03-4433-865a-c474e08b4cf7" ], "Date": [ - "Mon, 14 Sep 2020 04:37:39 GMT" + "Thu, 24 Sep 2020 05:39:27 GMT" ], "Content-Length": [ "76" @@ -16812,17 +10518,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -16830,13 +10536,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "c2a40ac6-67ab-44ba-b281-77906eb58ffc" + "23cefa63-ac49-4de1-a5ff-04813c56e62e" ], "X-Content-Type-Options": [ "nosniff" @@ -16851,16 +10557,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11753" + "11903" ], "x-ms-correlation-request-id": [ - "29d22be0-4e9b-461d-996a-392111c43224" + "0696aef5-707d-4cd0-ac1e-243834466b7b" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043740Z:29d22be0-4e9b-461d-996a-392111c43224" + "WESTUS:20200924T053928Z:0696aef5-707d-4cd0-ac1e-243834466b7b" ], "Date": [ - "Mon, 14 Sep 2020 04:37:40 GMT" + "Thu, 24 Sep 2020 05:39:27 GMT" ], "Content-Length": [ "76" @@ -16869,17 +10575,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -16887,13 +10593,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "d1115cee-65d5-436a-8b68-019627323340" + "10295e99-ebf5-4e3c-bee4-8d71a836271d" ], "X-Content-Type-Options": [ "nosniff" @@ -16908,16 +10614,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11752" + "11902" ], "x-ms-correlation-request-id": [ - "a7ad1a2c-77ca-46d8-af97-db3f57e4aa42" + "dce0af0c-c33e-47f7-952d-c600accd80c0" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043740Z:a7ad1a2c-77ca-46d8-af97-db3f57e4aa42" + "WESTUS:20200924T053928Z:dce0af0c-c33e-47f7-952d-c600accd80c0" ], "Date": [ - "Mon, 14 Sep 2020 04:37:40 GMT" + "Thu, 24 Sep 2020 05:39:27 GMT" ], "Content-Length": [ "76" @@ -16926,17 +10632,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -16944,13 +10650,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "37ff1883-746a-4243-96fc-e0b51f2d8fbb" + "b83c022a-7c42-4ce4-9917-466921663271" ], "X-Content-Type-Options": [ "nosniff" @@ -16965,16 +10671,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11751" + "11901" ], "x-ms-correlation-request-id": [ - "3a104db6-bbf8-4b95-853a-6726f957df73" + "195f7e7d-02b2-420c-9e84-41fc732796ea" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043740Z:3a104db6-bbf8-4b95-853a-6726f957df73" + "WESTUS:20200924T053928Z:195f7e7d-02b2-420c-9e84-41fc732796ea" ], "Date": [ - "Mon, 14 Sep 2020 04:37:40 GMT" + "Thu, 24 Sep 2020 05:39:27 GMT" ], "Content-Length": [ "76" @@ -16983,17 +10689,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -17001,13 +10707,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "25d3c578-90ae-4b91-a7a0-0c162f14c1bf" + "91628a6c-327c-4b48-b8bc-78613bd479ef" ], "X-Content-Type-Options": [ "nosniff" @@ -17022,16 +10728,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11750" + "11900" ], "x-ms-correlation-request-id": [ - "8df6f940-f539-4136-b20a-1655ed8cbb5e" + "50c3d13f-7361-4b24-809a-55ab22f2fa03" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043740Z:8df6f940-f539-4136-b20a-1655ed8cbb5e" + "WESTUS:20200924T053928Z:50c3d13f-7361-4b24-809a-55ab22f2fa03" ], "Date": [ - "Mon, 14 Sep 2020 04:37:40 GMT" + "Thu, 24 Sep 2020 05:39:28 GMT" ], "Content-Length": [ "76" @@ -17040,17 +10746,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -17058,13 +10764,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "8db1d99a-4cfc-44a4-b80f-e8d1b339418f" + "c27727e8-dadf-440b-adbb-22288cca3c1d" ], "X-Content-Type-Options": [ "nosniff" @@ -17079,16 +10785,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11749" + "11899" ], "x-ms-correlation-request-id": [ - "d4b863f6-dbd3-41d6-8997-fcdbd85ae8dc" + "68357bfb-88c1-47cd-804b-4874d0f06951" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043741Z:d4b863f6-dbd3-41d6-8997-fcdbd85ae8dc" + "WESTUS:20200924T053929Z:68357bfb-88c1-47cd-804b-4874d0f06951" ], "Date": [ - "Mon, 14 Sep 2020 04:37:40 GMT" + "Thu, 24 Sep 2020 05:39:28 GMT" ], "Content-Length": [ "76" @@ -17097,17 +10803,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -17115,13 +10821,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "0a8edd98-a283-4626-9a6e-fd5d5f779693" + "c0863163-fde7-49d8-b539-75e95065cd19" ], "X-Content-Type-Options": [ "nosniff" @@ -17136,16 +10842,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11748" + "11898" ], "x-ms-correlation-request-id": [ - "3811b537-aafc-40f9-8511-c3afbf286e40" + "0302f236-ab5a-4dc1-822f-f8878bc7df64" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043741Z:3811b537-aafc-40f9-8511-c3afbf286e40" + "WESTUS:20200924T053929Z:0302f236-ab5a-4dc1-822f-f8878bc7df64" ], "Date": [ - "Mon, 14 Sep 2020 04:37:41 GMT" + "Thu, 24 Sep 2020 05:39:28 GMT" ], "Content-Length": [ "76" @@ -17154,17 +10860,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -17172,13 +10878,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "d9ebca90-3afa-4cbe-b514-85c75f0abbe5" + "8bc0d213-fce0-4137-82d5-98d115ab448c" ], "X-Content-Type-Options": [ "nosniff" @@ -17193,16 +10899,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11747" + "11897" ], "x-ms-correlation-request-id": [ - "6454b61c-ebf0-4b69-9ba3-c27c606d0099" + "8970cc65-f10d-439f-9fe4-d67da5850c22" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043741Z:6454b61c-ebf0-4b69-9ba3-c27c606d0099" + "WESTUS:20200924T053929Z:8970cc65-f10d-439f-9fe4-d67da5850c22" ], "Date": [ - "Mon, 14 Sep 2020 04:37:41 GMT" + "Thu, 24 Sep 2020 05:39:28 GMT" ], "Content-Length": [ "76" @@ -17211,17 +10917,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -17229,13 +10935,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "ff723090-cf57-440a-b276-6f24e5155f21" + "5a020ee3-6e2d-4d67-a674-a83679c6cb34" ], "X-Content-Type-Options": [ "nosniff" @@ -17250,16 +10956,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11746" + "11896" ], "x-ms-correlation-request-id": [ - "90b786d0-f915-4248-934c-7cb124dfce8d" + "ef824713-793a-4448-a730-3e443ac28366" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043741Z:90b786d0-f915-4248-934c-7cb124dfce8d" + "WESTUS:20200924T053929Z:ef824713-793a-4448-a730-3e443ac28366" ], "Date": [ - "Mon, 14 Sep 2020 04:37:41 GMT" + "Thu, 24 Sep 2020 05:39:28 GMT" ], "Content-Length": [ "76" @@ -17268,17 +10974,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -17286,13 +10992,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "4db2bdc4-c708-4bd2-84aa-aca566c370fd" + "87d195d4-438b-4ea0-a315-8a850ad7e4eb" ], "X-Content-Type-Options": [ "nosniff" @@ -17307,16 +11013,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11745" + "11895" ], "x-ms-correlation-request-id": [ - "8fef6aa1-e6ae-4e89-9add-40bfd49f5365" + "3dd0694b-e4a9-496b-bfca-9f663e020099" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043741Z:8fef6aa1-e6ae-4e89-9add-40bfd49f5365" + "WESTUS:20200924T053929Z:3dd0694b-e4a9-496b-bfca-9f663e020099" ], "Date": [ - "Mon, 14 Sep 2020 04:37:41 GMT" + "Thu, 24 Sep 2020 05:39:29 GMT" ], "Content-Length": [ "76" @@ -17325,17 +11031,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -17343,13 +11049,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "39fa9b18-ce89-4b43-9499-5da38b753006" + "58888a8a-bba6-47c7-895a-3763ea71deec" ], "X-Content-Type-Options": [ "nosniff" @@ -17364,16 +11070,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11744" + "11894" ], "x-ms-correlation-request-id": [ - "94c3d432-bc11-45b2-a376-53c3683ca90a" + "ace0f43b-100d-4295-a21c-758b9fb506d9" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043742Z:94c3d432-bc11-45b2-a376-53c3683ca90a" + "WESTUS:20200924T053930Z:ace0f43b-100d-4295-a21c-758b9fb506d9" ], "Date": [ - "Mon, 14 Sep 2020 04:37:42 GMT" + "Thu, 24 Sep 2020 05:39:29 GMT" ], "Content-Length": [ "76" @@ -17382,17 +11088,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -17400,13 +11106,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "72bc9909-ec2c-4e9d-bae2-514e237e6941" + "8967522d-1fa3-4a3f-9cbd-5ebdea1d6043" ], "X-Content-Type-Options": [ "nosniff" @@ -17421,16 +11127,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11743" + "11893" ], "x-ms-correlation-request-id": [ - "86753592-bdd3-45ab-91af-6b761b3b4ce4" + "a2bd3a8d-a9d4-4b4b-a94e-53945cd69082" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043742Z:86753592-bdd3-45ab-91af-6b761b3b4ce4" + "WESTUS:20200924T053930Z:a2bd3a8d-a9d4-4b4b-a94e-53945cd69082" ], "Date": [ - "Mon, 14 Sep 2020 04:37:42 GMT" + "Thu, 24 Sep 2020 05:39:29 GMT" ], "Content-Length": [ "76" @@ -17439,17 +11145,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -17457,13 +11163,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "e1bd88af-a046-4521-93d0-506437ecbcd7" + "b18e1fbe-b6a4-4e91-b86c-dcc847a0e786" ], "X-Content-Type-Options": [ "nosniff" @@ -17478,16 +11184,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11742" + "11892" ], "x-ms-correlation-request-id": [ - "06b88607-e970-448d-8797-b676e4d03aa5" + "0014a76b-7e77-4462-bbda-ef9839c77a42" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043742Z:06b88607-e970-448d-8797-b676e4d03aa5" + "WESTUS:20200924T053930Z:0014a76b-7e77-4462-bbda-ef9839c77a42" ], "Date": [ - "Mon, 14 Sep 2020 04:37:42 GMT" + "Thu, 24 Sep 2020 05:39:29 GMT" ], "Content-Length": [ "76" @@ -17496,17 +11202,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -17514,13 +11220,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "043ca561-956a-4114-bce0-4bda07a474a3" + "6103e75c-98bb-4525-8a47-7a60f2d2ebc6" ], "X-Content-Type-Options": [ "nosniff" @@ -17535,16 +11241,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11741" + "11891" ], "x-ms-correlation-request-id": [ - "43e3afbc-c297-4672-b556-f3e0b80b7bc2" + "01802b2e-f206-4587-91b1-9c4426186c19" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043742Z:43e3afbc-c297-4672-b556-f3e0b80b7bc2" + "WESTUS:20200924T053930Z:01802b2e-f206-4587-91b1-9c4426186c19" ], "Date": [ - "Mon, 14 Sep 2020 04:37:42 GMT" + "Thu, 24 Sep 2020 05:39:30 GMT" ], "Content-Length": [ "76" @@ -17553,17 +11259,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -17571,13 +11277,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "740b501a-e0c0-4ea0-a414-147d8f1e085a" + "7ea9cd8e-46e6-456a-858e-22f6ef56a85a" ], "X-Content-Type-Options": [ "nosniff" @@ -17592,16 +11298,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11740" + "11890" ], "x-ms-correlation-request-id": [ - "56152031-201a-4e56-941c-25ce4d683409" + "a7112034-c6a0-4f7b-91cb-563be2cfd87b" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043742Z:56152031-201a-4e56-941c-25ce4d683409" + "WESTUS:20200924T053931Z:a7112034-c6a0-4f7b-91cb-563be2cfd87b" ], "Date": [ - "Mon, 14 Sep 2020 04:37:42 GMT" + "Thu, 24 Sep 2020 05:39:30 GMT" ], "Content-Length": [ "76" @@ -17610,17 +11316,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -17628,13 +11334,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "efa83ca4-d837-4033-83b4-dcff34e1136e" + "799c67b6-231a-4d06-9531-b44c723827f6" ], "X-Content-Type-Options": [ "nosniff" @@ -17649,16 +11355,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11739" + "11889" ], "x-ms-correlation-request-id": [ - "a86dfeb2-7ffc-46a9-8d11-ae5e45d384b1" + "d179d8c0-e74d-4f0c-a827-850e86a5895a" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043743Z:a86dfeb2-7ffc-46a9-8d11-ae5e45d384b1" + "WESTUS:20200924T053931Z:d179d8c0-e74d-4f0c-a827-850e86a5895a" ], "Date": [ - "Mon, 14 Sep 2020 04:37:43 GMT" + "Thu, 24 Sep 2020 05:39:30 GMT" ], "Content-Length": [ "76" @@ -17667,17 +11373,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -17685,13 +11391,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "88f776a3-0ab5-4a81-b90d-c0d9eadefb45" + "844ab7fd-89dd-4f0f-a9c6-7e9880300cfe" ], "X-Content-Type-Options": [ "nosniff" @@ -17706,16 +11412,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11738" + "11888" ], "x-ms-correlation-request-id": [ - "b1adbe04-ebf6-4f23-9706-56b89c6f037d" + "a8b01feb-f4dc-4a56-9683-2518695ad60e" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043743Z:b1adbe04-ebf6-4f23-9706-56b89c6f037d" + "WESTUS:20200924T053931Z:a8b01feb-f4dc-4a56-9683-2518695ad60e" ], "Date": [ - "Mon, 14 Sep 2020 04:37:43 GMT" + "Thu, 24 Sep 2020 05:39:30 GMT" ], "Content-Length": [ "76" @@ -17724,17 +11430,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -17742,13 +11448,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "f9733e77-d2a0-4cc1-84c3-cea57f476bbe" + "21fcf068-d0f1-4c43-bb05-69acc954dda8" ], "X-Content-Type-Options": [ "nosniff" @@ -17763,16 +11469,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11737" + "11887" ], "x-ms-correlation-request-id": [ - "757f0960-a477-4f67-8c08-7343640aff40" + "b7ec8a87-370c-43dc-a269-e48aad2d5e68" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043743Z:757f0960-a477-4f67-8c08-7343640aff40" + "WESTUS:20200924T053931Z:b7ec8a87-370c-43dc-a269-e48aad2d5e68" ], "Date": [ - "Mon, 14 Sep 2020 04:37:43 GMT" + "Thu, 24 Sep 2020 05:39:30 GMT" ], "Content-Length": [ "76" @@ -17781,17 +11487,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -17799,13 +11505,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "59376bac-d8a2-4110-a4b4-5de0636255dd" + "eb40f3cf-80e0-47df-8343-f25aef9fc141" ], "X-Content-Type-Options": [ "nosniff" @@ -17820,16 +11526,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11736" + "11886" ], "x-ms-correlation-request-id": [ - "2a75a906-d085-4a60-b81e-8ef146f5a012" + "4ed84cbc-45cb-411d-987b-69892c130c58" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043743Z:2a75a906-d085-4a60-b81e-8ef146f5a012" + "WESTUS:20200924T053931Z:4ed84cbc-45cb-411d-987b-69892c130c58" ], "Date": [ - "Mon, 14 Sep 2020 04:37:43 GMT" + "Thu, 24 Sep 2020 05:39:31 GMT" ], "Content-Length": [ "76" @@ -17838,17 +11544,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -17856,13 +11562,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "3a9cfbb3-ba1e-431b-81df-9298275c1805" + "605b8b4b-ebb8-4fa1-8e48-23ba1b5c0ff9" ], "X-Content-Type-Options": [ "nosniff" @@ -17877,16 +11583,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11735" + "11885" ], "x-ms-correlation-request-id": [ - "1ecdc07a-be68-4926-b373-a06e09eacd8d" + "2d8bb958-3e84-4abb-bb84-0e7e601b402d" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043744Z:1ecdc07a-be68-4926-b373-a06e09eacd8d" + "WESTUS:20200924T053932Z:2d8bb958-3e84-4abb-bb84-0e7e601b402d" ], "Date": [ - "Mon, 14 Sep 2020 04:37:43 GMT" + "Thu, 24 Sep 2020 05:39:31 GMT" ], "Content-Length": [ "76" @@ -17895,17 +11601,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -17913,13 +11619,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "bd44d2e2-0b9b-4295-97d6-e365cdb912d7" + "334c869a-bbc3-43bd-88bb-d2e3321f98c2" ], "X-Content-Type-Options": [ "nosniff" @@ -17934,16 +11640,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11734" + "11884" ], "x-ms-correlation-request-id": [ - "62fc8162-69ce-4d51-9a11-3aab9e93e28e" + "a59e558b-e403-40ee-aa4e-6c1a76df1ddc" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043744Z:62fc8162-69ce-4d51-9a11-3aab9e93e28e" + "WESTUS:20200924T053932Z:a59e558b-e403-40ee-aa4e-6c1a76df1ddc" ], "Date": [ - "Mon, 14 Sep 2020 04:37:44 GMT" + "Thu, 24 Sep 2020 05:39:31 GMT" ], "Content-Length": [ "76" @@ -17952,17 +11658,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -17970,13 +11676,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "0671fe58-311a-424c-b6f5-885b057cf61d" + "1892523b-2a35-480f-aa0a-c253a30d5164" ], "X-Content-Type-Options": [ "nosniff" @@ -17991,16 +11697,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11733" + "11883" ], "x-ms-correlation-request-id": [ - "481fa1cc-3382-4626-ab51-07d240cc6a13" + "4e07a89e-c0db-4ac1-b9c7-adae07e05295" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043744Z:481fa1cc-3382-4626-ab51-07d240cc6a13" + "WESTUS:20200924T053932Z:4e07a89e-c0db-4ac1-b9c7-adae07e05295" ], "Date": [ - "Mon, 14 Sep 2020 04:37:44 GMT" + "Thu, 24 Sep 2020 05:39:31 GMT" ], "Content-Length": [ "76" @@ -18009,17 +11715,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -18027,13 +11733,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "eb65a747-9010-4c37-9b76-53d9afeb9396" + "be58c87a-0c2d-4072-85e8-88ba2c1bdc63" ], "X-Content-Type-Options": [ "nosniff" @@ -18048,16 +11754,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11732" + "11882" ], "x-ms-correlation-request-id": [ - "29f70863-1f29-4bae-8981-48e914c68314" + "b62662dd-9c64-4f97-a4f2-25f3b200d91c" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043744Z:29f70863-1f29-4bae-8981-48e914c68314" + "WESTUS:20200924T053932Z:b62662dd-9c64-4f97-a4f2-25f3b200d91c" ], "Date": [ - "Mon, 14 Sep 2020 04:37:44 GMT" + "Thu, 24 Sep 2020 05:39:31 GMT" ], "Content-Length": [ "76" @@ -18066,17 +11772,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -18084,13 +11790,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "b41c6e26-997a-48b1-8ad1-9e2c0010a98e" + "653bb99b-48ef-4d93-b59f-a30684e25112" ], "X-Content-Type-Options": [ "nosniff" @@ -18105,16 +11811,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11731" + "11881" ], "x-ms-correlation-request-id": [ - "63eac16b-da66-4078-b742-4f2e9dc2ec6a" + "e5954d5a-d707-4c93-b42b-c8ceb31d5d45" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043744Z:63eac16b-da66-4078-b742-4f2e9dc2ec6a" + "WESTUS:20200924T053932Z:e5954d5a-d707-4c93-b42b-c8ceb31d5d45" ], "Date": [ - "Mon, 14 Sep 2020 04:37:44 GMT" + "Thu, 24 Sep 2020 05:39:32 GMT" ], "Content-Length": [ "76" @@ -18123,17 +11829,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -18141,13 +11847,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "d85c2f82-568a-40ce-a556-3f9b507a3799" + "628f48ee-ba86-4e71-8d50-d70795ff9c40" ], "X-Content-Type-Options": [ "nosniff" @@ -18162,16 +11868,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11730" + "11880" ], "x-ms-correlation-request-id": [ - "4cf33718-3d96-4ea8-a7bf-febc2f0301ee" + "45aba3fb-375d-461b-ad59-a956de7c14ec" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043745Z:4cf33718-3d96-4ea8-a7bf-febc2f0301ee" + "WESTUS:20200924T053933Z:45aba3fb-375d-461b-ad59-a956de7c14ec" ], "Date": [ - "Mon, 14 Sep 2020 04:37:45 GMT" + "Thu, 24 Sep 2020 05:39:32 GMT" ], "Content-Length": [ "76" @@ -18180,17 +11886,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -18198,13 +11904,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "67283ec1-9fb7-4325-9182-2b15e87fa831" + "c5ebe7b9-7f28-4e50-9ebc-3a489fed45d9" ], "X-Content-Type-Options": [ "nosniff" @@ -18219,16 +11925,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11729" + "11879" ], "x-ms-correlation-request-id": [ - "ea1804ab-9074-4276-a468-55dc82536e2c" + "7c889cbf-4c95-4b51-9cc3-228e87a6dd40" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043745Z:ea1804ab-9074-4276-a468-55dc82536e2c" + "WESTUS:20200924T053933Z:7c889cbf-4c95-4b51-9cc3-228e87a6dd40" ], "Date": [ - "Mon, 14 Sep 2020 04:37:45 GMT" + "Thu, 24 Sep 2020 05:39:32 GMT" ], "Content-Length": [ "76" @@ -18237,17 +11943,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -18255,13 +11961,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "61220eaf-d315-4e0e-882e-6df73357b6c6" + "ecb7f2d1-3ba9-4afe-90b8-112ea2a29986" ], "X-Content-Type-Options": [ "nosniff" @@ -18276,16 +11982,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11728" + "11878" ], "x-ms-correlation-request-id": [ - "b4c14071-659c-4e7e-bd58-2c4b3e306520" + "474db861-f95a-435a-8c7f-4bbfef066d6f" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043745Z:b4c14071-659c-4e7e-bd58-2c4b3e306520" + "WESTUS:20200924T053933Z:474db861-f95a-435a-8c7f-4bbfef066d6f" ], "Date": [ - "Mon, 14 Sep 2020 04:37:45 GMT" + "Thu, 24 Sep 2020 05:39:32 GMT" ], "Content-Length": [ "76" @@ -18294,17 +12000,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -18312,13 +12018,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "66dc9c26-8f43-462f-b9f0-68ef51d28039" + "20e2c8c4-3588-4a13-9e7d-ff0e7525ea69" ], "X-Content-Type-Options": [ "nosniff" @@ -18333,16 +12039,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11727" + "11877" ], "x-ms-correlation-request-id": [ - "a32ea6e3-1297-4323-b6ab-6d0ae6e49985" + "60dd52d9-9d61-4c80-a832-57abf27cefa4" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043745Z:a32ea6e3-1297-4323-b6ab-6d0ae6e49985" + "WESTUS:20200924T053933Z:60dd52d9-9d61-4c80-a832-57abf27cefa4" ], "Date": [ - "Mon, 14 Sep 2020 04:37:45 GMT" + "Thu, 24 Sep 2020 05:39:32 GMT" ], "Content-Length": [ "76" @@ -18351,17 +12057,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -18369,13 +12075,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "07908194-3112-4ee3-a43a-1fbeb5928eaa" + "5f9df0c2-4a77-4ef3-add1-e7480e9c7f1a" ], "X-Content-Type-Options": [ "nosniff" @@ -18390,16 +12096,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11726" + "11876" ], "x-ms-correlation-request-id": [ - "193b1377-b160-4417-9eb5-c6a7bc9296d9" + "12180061-8a6b-4f86-a2bd-4900d49dd506" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043745Z:193b1377-b160-4417-9eb5-c6a7bc9296d9" + "WESTUS:20200924T053933Z:12180061-8a6b-4f86-a2bd-4900d49dd506" ], "Date": [ - "Mon, 14 Sep 2020 04:37:45 GMT" + "Thu, 24 Sep 2020 05:39:33 GMT" ], "Content-Length": [ "76" @@ -18408,17 +12114,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -18426,13 +12132,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "98e0cb3c-ab89-425e-a968-670f4cccf970" + "0d371017-093e-4c83-99bf-ef73c9836c7f" ], "X-Content-Type-Options": [ "nosniff" @@ -18447,16 +12153,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11725" + "11875" ], "x-ms-correlation-request-id": [ - "52a489d7-8cf2-4345-9e2c-130704dca4f9" + "033d7343-7690-423b-938a-9e28bcd0a11f" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043746Z:52a489d7-8cf2-4345-9e2c-130704dca4f9" + "WESTUS:20200924T053934Z:033d7343-7690-423b-938a-9e28bcd0a11f" ], "Date": [ - "Mon, 14 Sep 2020 04:37:46 GMT" + "Thu, 24 Sep 2020 05:39:33 GMT" ], "Content-Length": [ "76" @@ -18465,17 +12171,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -18483,13 +12189,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "b32964ff-1b68-401d-a5b2-d686d28ec015" + "589b935b-679d-4098-a57b-f0d38897aeb7" ], "X-Content-Type-Options": [ "nosniff" @@ -18504,16 +12210,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11724" + "11874" ], "x-ms-correlation-request-id": [ - "8bdc27bb-8596-4937-8dff-50130482fb97" + "2534e8d4-e138-4825-929b-c6a5872e865e" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043746Z:8bdc27bb-8596-4937-8dff-50130482fb97" + "WESTUS:20200924T053934Z:2534e8d4-e138-4825-929b-c6a5872e865e" ], "Date": [ - "Mon, 14 Sep 2020 04:37:46 GMT" + "Thu, 24 Sep 2020 05:39:33 GMT" ], "Content-Length": [ "76" @@ -18522,17 +12228,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -18540,13 +12246,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "084009d3-cc4d-4e4d-9de3-962ed9ea6ed7" + "0d4767c6-c73a-4b6a-9385-281299e50deb" ], "X-Content-Type-Options": [ "nosniff" @@ -18561,16 +12267,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11723" + "11873" ], "x-ms-correlation-request-id": [ - "991b3aa9-c5cc-419a-830d-c58ebf222109" + "e6cd2b62-c8cd-4de5-9964-0d453c2a1a29" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043746Z:991b3aa9-c5cc-419a-830d-c58ebf222109" + "WESTUS:20200924T053934Z:e6cd2b62-c8cd-4de5-9964-0d453c2a1a29" ], "Date": [ - "Mon, 14 Sep 2020 04:37:46 GMT" + "Thu, 24 Sep 2020 05:39:33 GMT" ], "Content-Length": [ "76" @@ -18579,17 +12285,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -18597,13 +12303,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "095c6a40-bcff-49e6-98b2-562c4716babd" + "90dde18f-d7a1-409a-a084-dd69efef3a6d" ], "X-Content-Type-Options": [ "nosniff" @@ -18618,16 +12324,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11722" + "11872" ], "x-ms-correlation-request-id": [ - "4220c75d-cc62-4ac4-a90b-71601b78cb6d" + "32cf2654-d1c4-418b-ae33-743569ca6303" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043746Z:4220c75d-cc62-4ac4-a90b-71601b78cb6d" + "WESTUS:20200924T053934Z:32cf2654-d1c4-418b-ae33-743569ca6303" ], "Date": [ - "Mon, 14 Sep 2020 04:37:46 GMT" + "Thu, 24 Sep 2020 05:39:33 GMT" ], "Content-Length": [ "76" @@ -18636,17 +12342,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -18654,13 +12360,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "e474c5de-b454-4def-80f0-54df96108b78" + "24abfc62-a738-4136-8a2f-ac39a5db942d" ], "X-Content-Type-Options": [ "nosniff" @@ -18675,16 +12381,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11721" + "11871" ], "x-ms-correlation-request-id": [ - "6e1d5eb2-e7fe-4cb6-9cf0-5513ca658112" + "ae5426e3-8a5e-4655-8247-1688d9d5e2e3" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043747Z:6e1d5eb2-e7fe-4cb6-9cf0-5513ca658112" + "WESTUS:20200924T053934Z:ae5426e3-8a5e-4655-8247-1688d9d5e2e3" ], "Date": [ - "Mon, 14 Sep 2020 04:37:46 GMT" + "Thu, 24 Sep 2020 05:39:34 GMT" ], "Content-Length": [ "76" @@ -18693,17 +12399,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -18711,13 +12417,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "25cfde3d-d03d-4ae3-9799-ae49060ec3bb" + "62d29fde-1c6b-4df3-97c8-4c49a32f974f" ], "X-Content-Type-Options": [ "nosniff" @@ -18732,16 +12438,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11720" + "11870" ], "x-ms-correlation-request-id": [ - "ecfdcf81-f35b-4e69-8688-941b45506eb0" + "76622b95-abc7-44b3-bb03-cc5d391539ad" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043747Z:ecfdcf81-f35b-4e69-8688-941b45506eb0" + "WESTUS:20200924T053935Z:76622b95-abc7-44b3-bb03-cc5d391539ad" ], "Date": [ - "Mon, 14 Sep 2020 04:37:47 GMT" + "Thu, 24 Sep 2020 05:39:34 GMT" ], "Content-Length": [ "76" @@ -18750,17 +12456,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -18768,13 +12474,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "485faed1-82eb-49c2-91d9-5dbda07f66b4" + "104f79d2-e84a-4362-bce8-fe4357bab995" ], "X-Content-Type-Options": [ "nosniff" @@ -18789,16 +12495,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11719" + "11869" ], "x-ms-correlation-request-id": [ - "a9f7d335-4d38-44b9-866f-9b58eff971e5" + "966270dd-3d24-4d44-bb66-b269c0a8b62a" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043747Z:a9f7d335-4d38-44b9-866f-9b58eff971e5" + "WESTUS:20200924T053935Z:966270dd-3d24-4d44-bb66-b269c0a8b62a" ], "Date": [ - "Mon, 14 Sep 2020 04:37:47 GMT" + "Thu, 24 Sep 2020 05:39:34 GMT" ], "Content-Length": [ "76" @@ -18807,17 +12513,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -18825,13 +12531,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "a96a1d38-8fb2-4d87-a550-994cf0ceb3c0" + "41bd3d8d-392f-4bb1-9151-c894b432a9c8" ], "X-Content-Type-Options": [ "nosniff" @@ -18846,16 +12552,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11718" + "11868" ], "x-ms-correlation-request-id": [ - "f5abe795-6dc0-49de-884e-d214742c4fcd" + "6fee13ff-13dd-43d3-b7d6-b1c290981c19" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043747Z:f5abe795-6dc0-49de-884e-d214742c4fcd" + "WESTUS:20200924T053935Z:6fee13ff-13dd-43d3-b7d6-b1c290981c19" ], "Date": [ - "Mon, 14 Sep 2020 04:37:47 GMT" + "Thu, 24 Sep 2020 05:39:34 GMT" ], "Content-Length": [ "76" @@ -18864,17 +12570,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -18882,13 +12588,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "9c5f85ec-6877-4fa6-8dcd-3337dbf6b85f" + "dd5215ab-589c-4f6b-8eb7-ac5591c43c93" ], "X-Content-Type-Options": [ "nosniff" @@ -18903,16 +12609,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11717" + "11867" ], "x-ms-correlation-request-id": [ - "0e9b6b96-71d8-4742-a87e-af4ade7aa5ec" + "745e08c5-793b-430e-8595-862d7b6dac01" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043747Z:0e9b6b96-71d8-4742-a87e-af4ade7aa5ec" + "WESTUS:20200924T053935Z:745e08c5-793b-430e-8595-862d7b6dac01" ], "Date": [ - "Mon, 14 Sep 2020 04:37:47 GMT" + "Thu, 24 Sep 2020 05:39:35 GMT" ], "Content-Length": [ "76" @@ -18921,17 +12627,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -18939,13 +12645,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "9a277b4d-cc7c-4191-9472-d40d20df1714" + "e1c26390-68ae-450e-b57f-c77333e27318" ], "X-Content-Type-Options": [ "nosniff" @@ -18960,16 +12666,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11716" + "11866" ], "x-ms-correlation-request-id": [ - "a7076503-9092-4cca-9b22-0fde6a6cfa8a" + "63eb2331-4e22-431a-8c4a-0b8ea42c5d22" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043748Z:a7076503-9092-4cca-9b22-0fde6a6cfa8a" + "WESTUS:20200924T053936Z:63eb2331-4e22-431a-8c4a-0b8ea42c5d22" ], "Date": [ - "Mon, 14 Sep 2020 04:37:48 GMT" + "Thu, 24 Sep 2020 05:39:35 GMT" ], "Content-Length": [ "76" @@ -18978,17 +12684,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -18996,13 +12702,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "b53cb399-7ece-4fc3-a70e-48ef6a389b92" + "ae80b2d0-a9c3-413c-9daf-5897cabdb88a" ], "X-Content-Type-Options": [ "nosniff" @@ -19017,16 +12723,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11715" + "11865" ], "x-ms-correlation-request-id": [ - "e35b577c-5944-4f4a-ad6f-b04cb5465fb6" + "e002070d-2767-4417-ba46-84dcad2215b3" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043748Z:e35b577c-5944-4f4a-ad6f-b04cb5465fb6" + "WESTUS:20200924T053936Z:e002070d-2767-4417-ba46-84dcad2215b3" ], "Date": [ - "Mon, 14 Sep 2020 04:37:48 GMT" + "Thu, 24 Sep 2020 05:39:35 GMT" ], "Content-Length": [ "76" @@ -19035,17 +12741,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -19053,13 +12759,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "dbd1478d-b52b-4fd7-bc83-25624d6030cf" + "0e920a32-788e-4249-895e-26da758199e8" ], "X-Content-Type-Options": [ "nosniff" @@ -19074,16 +12780,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11714" + "11864" ], "x-ms-correlation-request-id": [ - "a0b10ba2-5d46-4f6d-9451-b8d80fb4cda6" + "2131947e-2673-430b-8a39-d58440aafd52" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043748Z:a0b10ba2-5d46-4f6d-9451-b8d80fb4cda6" + "WESTUS:20200924T053936Z:2131947e-2673-430b-8a39-d58440aafd52" ], "Date": [ - "Mon, 14 Sep 2020 04:37:48 GMT" + "Thu, 24 Sep 2020 05:39:35 GMT" ], "Content-Length": [ "76" @@ -19092,17 +12798,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -19110,13 +12816,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "9abc6406-5a19-462a-8804-f837c6756888" + "3f40e3e8-e2f6-4212-92e8-8e3f220bdb74" ], "X-Content-Type-Options": [ "nosniff" @@ -19131,16 +12837,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11713" + "11863" ], "x-ms-correlation-request-id": [ - "2b3f0e72-07b8-4f97-a730-6b34c3e88f9e" + "ba3fe472-cc8f-4856-ac72-48e4435e70a9" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043748Z:2b3f0e72-07b8-4f97-a730-6b34c3e88f9e" + "WESTUS:20200924T053936Z:ba3fe472-cc8f-4856-ac72-48e4435e70a9" ], "Date": [ - "Mon, 14 Sep 2020 04:37:48 GMT" + "Thu, 24 Sep 2020 05:39:35 GMT" ], "Content-Length": [ "76" @@ -19149,17 +12855,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -19167,13 +12873,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "e3f04d13-6753-439b-98b6-d9e3f2e95bde" + "87a305da-0358-469b-a102-937df54c531f" ], "X-Content-Type-Options": [ "nosniff" @@ -19188,16 +12894,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11712" + "11862" ], "x-ms-correlation-request-id": [ - "e9a60388-e4ef-49d2-a5a8-7b19c06c232a" + "2c9ede32-410c-4fb0-b7bb-02c6d006c97d" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043749Z:e9a60388-e4ef-49d2-a5a8-7b19c06c232a" + "WESTUS:20200924T053936Z:2c9ede32-410c-4fb0-b7bb-02c6d006c97d" ], "Date": [ - "Mon, 14 Sep 2020 04:37:48 GMT" + "Thu, 24 Sep 2020 05:39:36 GMT" ], "Content-Length": [ "76" @@ -19206,17 +12912,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -19224,13 +12930,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "fb82c585-3422-4445-85ff-e330d3bba73e" + "d177ff00-539a-4939-95ac-0ccaa367c31c" ], "X-Content-Type-Options": [ "nosniff" @@ -19245,16 +12951,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11711" + "11861" ], "x-ms-correlation-request-id": [ - "31dfba92-9edd-44a0-876c-c9f27eb6bf6b" + "f0140a14-fc81-4880-89a1-fe0c746fce2f" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043749Z:31dfba92-9edd-44a0-876c-c9f27eb6bf6b" + "WESTUS:20200924T053937Z:f0140a14-fc81-4880-89a1-fe0c746fce2f" ], "Date": [ - "Mon, 14 Sep 2020 04:37:49 GMT" + "Thu, 24 Sep 2020 05:39:36 GMT" ], "Content-Length": [ "76" @@ -19263,17 +12969,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -19281,13 +12987,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "3a0f8d99-713f-41a0-85be-0b528cd70117" + "3526bbcb-5b12-4fa6-80b0-5b146dcd84aa" ], "X-Content-Type-Options": [ "nosniff" @@ -19302,16 +13008,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11710" + "11860" ], "x-ms-correlation-request-id": [ - "da353891-299c-4348-8b1c-501ecfd3d3ce" + "8463b34f-c59a-4828-ac33-2e853f32702a" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043749Z:da353891-299c-4348-8b1c-501ecfd3d3ce" + "WESTUS:20200924T053937Z:8463b34f-c59a-4828-ac33-2e853f32702a" ], "Date": [ - "Mon, 14 Sep 2020 04:37:49 GMT" + "Thu, 24 Sep 2020 05:39:36 GMT" ], "Content-Length": [ "76" @@ -19320,17 +13026,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -19338,13 +13044,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "7ca5a131-0efd-4e92-8594-bb59818b56da" + "f7ad8634-ac36-4e27-bf73-0b983ff4882c" ], "X-Content-Type-Options": [ "nosniff" @@ -19359,16 +13065,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11709" + "11859" ], "x-ms-correlation-request-id": [ - "c9f9fefa-800d-4f97-8f1c-3d6aec32957c" + "1b53a376-33c8-42b1-90f0-bd2e5775a686" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043749Z:c9f9fefa-800d-4f97-8f1c-3d6aec32957c" + "WESTUS:20200924T053937Z:1b53a376-33c8-42b1-90f0-bd2e5775a686" ], "Date": [ - "Mon, 14 Sep 2020 04:37:49 GMT" + "Thu, 24 Sep 2020 05:39:36 GMT" ], "Content-Length": [ "76" @@ -19377,17 +13083,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -19395,13 +13101,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "bd357fda-0d75-4be8-bda5-93ca6c044ab4" + "491a2d3a-6bdc-47df-b008-425317b6461a" ], "X-Content-Type-Options": [ "nosniff" @@ -19416,16 +13122,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11708" + "11858" ], "x-ms-correlation-request-id": [ - "e2606ee7-4e61-4d96-a60d-bcd60d813d71" + "d0db674f-b9e8-49c2-b467-d9ec1c065ae3" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043749Z:e2606ee7-4e61-4d96-a60d-bcd60d813d71" + "WESTUS:20200924T053937Z:d0db674f-b9e8-49c2-b467-d9ec1c065ae3" ], "Date": [ - "Mon, 14 Sep 2020 04:37:49 GMT" + "Thu, 24 Sep 2020 05:39:36 GMT" ], "Content-Length": [ "76" @@ -19434,17 +13140,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -19452,13 +13158,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "4008f575-8f8c-4f93-898a-571cc21b64b4" + "e9375dc9-2569-4f60-b44f-05f8c0340eb4" ], "X-Content-Type-Options": [ "nosniff" @@ -19473,16 +13179,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11707" + "11857" ], "x-ms-correlation-request-id": [ - "af8ef510-ae05-43d4-8953-53fd4a9b9deb" + "e6555075-2ef8-483a-978d-141a058c0593" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043750Z:af8ef510-ae05-43d4-8953-53fd4a9b9deb" + "WESTUS:20200924T053937Z:e6555075-2ef8-483a-978d-141a058c0593" ], "Date": [ - "Mon, 14 Sep 2020 04:37:50 GMT" + "Thu, 24 Sep 2020 05:39:37 GMT" ], "Content-Length": [ "76" @@ -19491,17 +13197,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -19509,13 +13215,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "9dc6af4d-cff6-461a-9cb0-d9b3b0ee72ee" + "bd3b73f1-c8c9-45fc-b52e-2521fc4f1b8e" ], "X-Content-Type-Options": [ "nosniff" @@ -19530,16 +13236,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11706" + "11856" ], "x-ms-correlation-request-id": [ - "9dc50b38-e6eb-4764-ac5a-e212ce958785" + "ca11602a-9f1c-446f-97e3-03477e78bae0" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043750Z:9dc50b38-e6eb-4764-ac5a-e212ce958785" + "WESTUS:20200924T053938Z:ca11602a-9f1c-446f-97e3-03477e78bae0" ], "Date": [ - "Mon, 14 Sep 2020 04:37:50 GMT" + "Thu, 24 Sep 2020 05:39:37 GMT" ], "Content-Length": [ "76" @@ -19548,17 +13254,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -19566,13 +13272,13 @@ "no-store, no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" ], "x-ms-request-id": [ - "d61d84e5-bd80-4498-8967-614a2b38ac5a" + "f3e9131b-0faf-447f-8131-7417bf3d7fe9" ], "X-Content-Type-Options": [ "nosniff" @@ -19587,16 +13293,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11705" + "11855" ], "x-ms-correlation-request-id": [ - "134c87ba-acc2-42c8-a297-a05f38cb86d5" + "776a1a64-adda-4146-8392-0a1bf1a81508" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043750Z:134c87ba-acc2-42c8-a297-a05f38cb86d5" + "WESTUS:20200924T053938Z:776a1a64-adda-4146-8392-0a1bf1a81508" ], "Date": [ - "Mon, 14 Sep 2020 04:37:50 GMT" + "Thu, 24 Sep 2020 05:39:37 GMT" ], "Content-Length": [ "76" @@ -19605,17 +13311,17 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-14T04:36:50.223Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2020-09-24T05:39:07.49Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps1862/providers/Microsoft.Sql/servers/ps1174/databases/ps8331/replicationLinks/53510890-a06b-4e5a-8c5f-738581911334/operationResults/680dcd11-2d35-47de-a217-0a0b85c3074f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMTg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTE3NC9kYXRhYmFzZXMvcHM4MzMxL3JlcGxpY2F0aW9uTGlua3MvNTM1MTA4OTAtYTA2Yi00ZTVhLThjNWYtNzM4NTgxOTExMzM0L29wZXJhdGlvblJlc3VsdHMvNjgwZGNkMTEtMmQzNS00N2RlLWEyMTctMGEwYjg1YzMwNzRmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps332/providers/Microsoft.Sql/servers/ps2032/databases/ps9145/replicationLinks/1950d065-7e63-4f21-a3f9-117ce72cc1bc/operationResults/9a0c33fc-6566-46f0-ae28-cf937a6bf589?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMyMDMyL2RhdGFiYXNlcy9wczkxNDUvcmVwbGljYXRpb25MaW5rcy8xOTUwZDA2NS03ZTYzLTRmMjEtYTNmOS0xMTdjZTcyY2MxYmMvb3BlcmF0aW9uUmVzdWx0cy85YTBjMzNmYy02NTY2LTQ2ZjAtYWUyOC1jZjkzN2E2YmY1ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -19623,7 +13329,7 @@ "no-store, no-cache" ], "x-ms-request-id": [ - "9bcc98ea-a31d-4c2d-9f03-2b07c795165e" + "c8c49a32-4d45-4f5d-a6f9-c55121757e02" ], "X-Content-Type-Options": [ "nosniff" @@ -19638,16 +13344,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11704" + "11854" ], "x-ms-correlation-request-id": [ - "6c9d08da-5470-4f16-8fdc-99892d7e32f1" + "5b3e9b59-7b58-4d00-88fb-ea446f5f66b9" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043750Z:6c9d08da-5470-4f16-8fdc-99892d7e32f1" + "WESTUS:20200924T053938Z:5b3e9b59-7b58-4d00-88fb-ea446f5f66b9" ], "Date": [ - "Mon, 14 Sep 2020 04:37:50 GMT" + "Thu, 24 Sep 2020 05:39:37 GMT" ], "Content-Type": [ "application/json" @@ -19657,19 +13363,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps4399?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzNDM5OT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps3520?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzMzUyMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5f23d472-da7c-4c2b-8c54-667392c270cb" + "a99e331d-7f72-43aa-aa3d-7590ee96d805" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -19683,7 +13389,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzOTktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1MjAtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -19692,13 +13398,13 @@ "14999" ], "x-ms-request-id": [ - "b34b3b64-343d-4c12-8ef6-4667aae8d5b0" + "645fa89a-1d80-4614-b012-42ad9d36cc73" ], "x-ms-correlation-request-id": [ - "b34b3b64-343d-4c12-8ef6-4667aae8d5b0" + "645fa89a-1d80-4614-b012-42ad9d36cc73" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043755Z:b34b3b64-343d-4c12-8ef6-4667aae8d5b0" + "WESTUS:20200924T053943Z:645fa89a-1d80-4614-b012-42ad9d36cc73" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -19707,7 +13413,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:37:54 GMT" + "Thu, 24 Sep 2020 05:39:42 GMT" ], "Expires": [ "-1" @@ -19720,13 +13426,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzOTktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek9Ua3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1MjAtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMU1qQXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -19740,7 +13446,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzOTktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1MjAtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -19749,13 +13455,13 @@ "11999" ], "x-ms-request-id": [ - "c032726c-300d-40bb-9bd9-544c79f68a2b" + "76ca41eb-6298-488a-a91e-21cf27b92c7c" ], "x-ms-correlation-request-id": [ - "c032726c-300d-40bb-9bd9-544c79f68a2b" + "76ca41eb-6298-488a-a91e-21cf27b92c7c" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043810Z:c032726c-300d-40bb-9bd9-544c79f68a2b" + "WESTUS:20200924T053958Z:76ca41eb-6298-488a-a91e-21cf27b92c7c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -19764,7 +13470,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:38:09 GMT" + "Thu, 24 Sep 2020 05:39:57 GMT" ], "Expires": [ "-1" @@ -19777,13 +13483,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzOTktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek9Ua3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1MjAtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMU1qQXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -19797,7 +13503,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzOTktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1MjAtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -19806,13 +13512,13 @@ "11998" ], "x-ms-request-id": [ - "ad32dd5b-f23d-4b93-9bfa-2da76782b487" + "878ef626-b3ef-46fd-b25f-c55a6cd2b34d" ], "x-ms-correlation-request-id": [ - "ad32dd5b-f23d-4b93-9bfa-2da76782b487" + "878ef626-b3ef-46fd-b25f-c55a6cd2b34d" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043825Z:ad32dd5b-f23d-4b93-9bfa-2da76782b487" + "WESTUS:20200924T054013Z:878ef626-b3ef-46fd-b25f-c55a6cd2b34d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -19821,7 +13527,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:38:24 GMT" + "Thu, 24 Sep 2020 05:40:13 GMT" ], "Expires": [ "-1" @@ -19834,13 +13540,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzOTktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek9Ua3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1MjAtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMU1qQXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -19854,7 +13560,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzOTktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1MjAtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -19863,13 +13569,13 @@ "11997" ], "x-ms-request-id": [ - "90b6a2a3-b6b5-4bef-be9f-d83e32362687" + "aa9aafa9-7fb2-4430-9a88-b2d63dded88b" ], "x-ms-correlation-request-id": [ - "90b6a2a3-b6b5-4bef-be9f-d83e32362687" + "aa9aafa9-7fb2-4430-9a88-b2d63dded88b" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043841Z:90b6a2a3-b6b5-4bef-be9f-d83e32362687" + "WESTUS:20200924T054029Z:aa9aafa9-7fb2-4430-9a88-b2d63dded88b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -19878,7 +13584,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:38:40 GMT" + "Thu, 24 Sep 2020 05:40:29 GMT" ], "Expires": [ "-1" @@ -19891,13 +13597,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzOTktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek9Ua3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1MjAtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMU1qQXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -19911,7 +13617,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzOTktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1MjAtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -19920,13 +13626,13 @@ "11996" ], "x-ms-request-id": [ - "f93f6e1a-3d49-4c25-b6c0-2bc88f5ac610" + "5d893c35-2229-4a34-88a9-fcc4ab676dbf" ], "x-ms-correlation-request-id": [ - "f93f6e1a-3d49-4c25-b6c0-2bc88f5ac610" + "5d893c35-2229-4a34-88a9-fcc4ab676dbf" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043856Z:f93f6e1a-3d49-4c25-b6c0-2bc88f5ac610" + "WESTUS:20200924T054044Z:5d893c35-2229-4a34-88a9-fcc4ab676dbf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -19935,7 +13641,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:38:56 GMT" + "Thu, 24 Sep 2020 05:40:44 GMT" ], "Expires": [ "-1" @@ -19948,13 +13654,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzOTktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek9Ua3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1MjAtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMU1qQXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -19968,7 +13674,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzOTktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1MjAtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -19977,13 +13683,13 @@ "11995" ], "x-ms-request-id": [ - "f54504c7-d05b-4b57-9904-cdee48220680" + "78f394a8-6f4e-4342-a441-1d149a879f12" ], "x-ms-correlation-request-id": [ - "f54504c7-d05b-4b57-9904-cdee48220680" + "78f394a8-6f4e-4342-a441-1d149a879f12" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043911Z:f54504c7-d05b-4b57-9904-cdee48220680" + "WESTUS:20200924T054059Z:78f394a8-6f4e-4342-a441-1d149a879f12" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -19992,7 +13698,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:39:11 GMT" + "Thu, 24 Sep 2020 05:40:59 GMT" ], "Expires": [ "-1" @@ -20005,13 +13711,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzOTktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek9Ua3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1MjAtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMU1qQXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -20025,7 +13731,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzOTktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1MjAtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -20034,13 +13740,13 @@ "11994" ], "x-ms-request-id": [ - "24b346f4-c6b3-4f4c-9891-169b305161fb" + "31b158b4-47b3-4fce-a6f5-ea6604caa6da" ], "x-ms-correlation-request-id": [ - "24b346f4-c6b3-4f4c-9891-169b305161fb" + "31b158b4-47b3-4fce-a6f5-ea6604caa6da" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043927Z:24b346f4-c6b3-4f4c-9891-169b305161fb" + "WESTUS:20200924T054115Z:31b158b4-47b3-4fce-a6f5-ea6604caa6da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -20049,7 +13755,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:39:26 GMT" + "Thu, 24 Sep 2020 05:41:14 GMT" ], "Expires": [ "-1" @@ -20062,13 +13768,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzOTktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek9Ua3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1MjAtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMU1qQXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -20081,17 +13787,23 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1MjAtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], "x-ms-request-id": [ - "ff9a21c6-d093-46fd-8dc0-a6217add970c" + "37c80f07-094d-4efe-bb99-f35d63c47b9a" ], "x-ms-correlation-request-id": [ - "ff9a21c6-d093-46fd-8dc0-a6217add970c" + "37c80f07-094d-4efe-bb99-f35d63c47b9a" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043942Z:ff9a21c6-d093-46fd-8dc0-a6217add970c" + "WESTUS:20200924T054130Z:37c80f07-094d-4efe-bb99-f35d63c47b9a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -20100,7 +13812,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:39:42 GMT" + "Thu, 24 Sep 2020 05:41:29 GMT" ], "Expires": [ "-1" @@ -20110,16 +13822,16 @@ ] }, "ResponseBody": "", - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzOTktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek9Ua3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1MjAtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMU1qQXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -20132,17 +13844,182 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1MjAtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], "x-ms-request-id": [ - "c7024be0-075b-4394-a6b2-30d856c15462" + "9d33b629-a2b7-435b-8acd-efd42b369cb4" + ], + "x-ms-correlation-request-id": [ + "9d33b629-a2b7-435b-8acd-efd42b369cb4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T054145Z:9d33b629-a2b7-435b-8acd-efd42b369cb4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 05:41:45 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1MjAtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMU1qQXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1MjAtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "e0ca1d45-1d35-42f1-befe-92462c55dd65" + ], + "x-ms-correlation-request-id": [ + "e0ca1d45-1d35-42f1-befe-92462c55dd65" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T054201Z:e0ca1d45-1d35-42f1-befe-92462c55dd65" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 05:42:00 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1MjAtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMU1qQXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "d0b20195-447f-4487-8922-bfa2d07bcb1d" + ], + "x-ms-correlation-request-id": [ + "d0b20195-447f-4487-8922-bfa2d07bcb1d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T054216Z:d0b20195-447f-4487-8922-bfa2d07bcb1d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 05:42:15 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM1MjAtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMU1qQXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "f910a814-0451-4fc8-9428-f4deaaa3e349" ], "x-ms-correlation-request-id": [ - "c7024be0-075b-4394-a6b2-30d856c15462" + "f910a814-0451-4fc8-9428-f4deaaa3e349" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043942Z:c7024be0-075b-4394-a6b2-30d856c15462" + "WESTUS:20200924T054216Z:f910a814-0451-4fc8-9428-f4deaaa3e349" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -20151,7 +14028,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:39:42 GMT" + "Thu, 24 Sep 2020 05:42:16 GMT" ], "Expires": [ "-1" @@ -20164,19 +14041,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps1862?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzMTg2Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps332?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzMzMyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e79601cf-1533-4a45-aa40-daa9c31fc8db" + "9f2389e8-1227-4035-8c92-01b502c2feb4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -20190,7 +14067,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4NjItV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzMi1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -20199,13 +14076,13 @@ "14998" ], "x-ms-request-id": [ - "b28e3f04-f381-4b52-b897-c95c9750de6e" + "0912688b-6d30-464d-a20f-8bfd833306a2" ], "x-ms-correlation-request-id": [ - "b28e3f04-f381-4b52-b897-c95c9750de6e" + "0912688b-6d30-464d-a20f-8bfd833306a2" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T043945Z:b28e3f04-f381-4b52-b897-c95c9750de6e" + "WESTUS:20200924T054219Z:0912688b-6d30-464d-a20f-8bfd833306a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -20214,7 +14091,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:39:45 GMT" + "Thu, 24 Sep 2020 05:42:18 GMT" ], "Expires": [ "-1" @@ -20227,13 +14104,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4NjItV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNE5qSXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzMi1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNek1pMVhSVk5VUlZWU1QxQkZJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWlhWeWIzQmxJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -20247,22 +14124,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4NjItV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzMi1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11988" ], "x-ms-request-id": [ - "2e61717a-8238-4064-b9dc-aac8da1f68d2" + "5599085e-151d-4059-af0e-a312c2473922" ], "x-ms-correlation-request-id": [ - "2e61717a-8238-4064-b9dc-aac8da1f68d2" + "5599085e-151d-4059-af0e-a312c2473922" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044000Z:2e61717a-8238-4064-b9dc-aac8da1f68d2" + "WESTUS:20200924T054234Z:5599085e-151d-4059-af0e-a312c2473922" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -20271,7 +14148,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:40:00 GMT" + "Thu, 24 Sep 2020 05:42:33 GMT" ], "Expires": [ "-1" @@ -20284,13 +14161,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4NjItV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNE5qSXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzMi1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNek1pMVhSVk5VUlZWU1QxQkZJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWlhWeWIzQmxJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -20304,22 +14181,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4NjItV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzMi1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11987" ], "x-ms-request-id": [ - "f2ce2a5b-8610-43b2-9936-9acd05661400" + "c0208504-203c-42e9-a095-ef5445ef0497" ], "x-ms-correlation-request-id": [ - "f2ce2a5b-8610-43b2-9936-9acd05661400" + "c0208504-203c-42e9-a095-ef5445ef0497" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044016Z:f2ce2a5b-8610-43b2-9936-9acd05661400" + "WESTUS:20200924T054249Z:c0208504-203c-42e9-a095-ef5445ef0497" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -20328,7 +14205,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:40:15 GMT" + "Thu, 24 Sep 2020 05:42:49 GMT" ], "Expires": [ "-1" @@ -20341,13 +14218,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4NjItV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNE5qSXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzMi1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNek1pMVhSVk5VUlZWU1QxQkZJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWlhWeWIzQmxJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -20361,22 +14238,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4NjItV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzMi1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11986" ], "x-ms-request-id": [ - "320b559e-9833-4646-b87b-7c55ca0a67f9" + "31700c8c-b1fb-4ddc-b637-90509bf8478f" ], "x-ms-correlation-request-id": [ - "320b559e-9833-4646-b87b-7c55ca0a67f9" + "31700c8c-b1fb-4ddc-b637-90509bf8478f" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044031Z:320b559e-9833-4646-b87b-7c55ca0a67f9" + "WESTUS:20200924T054305Z:31700c8c-b1fb-4ddc-b637-90509bf8478f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -20385,7 +14262,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:40:30 GMT" + "Thu, 24 Sep 2020 05:43:05 GMT" ], "Expires": [ "-1" @@ -20398,13 +14275,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4NjItV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNE5qSXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzMi1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNek1pMVhSVk5VUlZWU1QxQkZJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWlhWeWIzQmxJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -20418,22 +14295,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4NjItV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzMi1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11985" ], "x-ms-request-id": [ - "e65a2c5b-9f9b-403f-a788-61d815a2a18f" + "db82cec5-3c7a-41c7-9422-2feffd325b6a" ], "x-ms-correlation-request-id": [ - "e65a2c5b-9f9b-403f-a788-61d815a2a18f" + "db82cec5-3c7a-41c7-9422-2feffd325b6a" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044046Z:e65a2c5b-9f9b-403f-a788-61d815a2a18f" + "WESTUS:20200924T054320Z:db82cec5-3c7a-41c7-9422-2feffd325b6a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -20442,7 +14319,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:40:46 GMT" + "Thu, 24 Sep 2020 05:43:20 GMT" ], "Expires": [ "-1" @@ -20455,13 +14332,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4NjItV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNE5qSXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzMi1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNek1pMVhSVk5VUlZWU1QxQkZJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWlhWeWIzQmxJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -20475,22 +14352,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4NjItV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzMi1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11984" ], "x-ms-request-id": [ - "ccad7a7c-cc70-47c5-9b26-bcbf257e7ccd" + "7e09cbe6-d134-40b6-8618-d71180c6b49c" ], "x-ms-correlation-request-id": [ - "ccad7a7c-cc70-47c5-9b26-bcbf257e7ccd" + "7e09cbe6-d134-40b6-8618-d71180c6b49c" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044102Z:ccad7a7c-cc70-47c5-9b26-bcbf257e7ccd" + "WESTUS:20200924T054335Z:7e09cbe6-d134-40b6-8618-d71180c6b49c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -20499,7 +14376,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:41:02 GMT" + "Thu, 24 Sep 2020 05:43:35 GMT" ], "Expires": [ "-1" @@ -20512,13 +14389,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4NjItV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNE5qSXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzMi1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNek1pMVhSVk5VUlZWU1QxQkZJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWlhWeWIzQmxJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -20532,22 +14409,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4NjItV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzMi1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11983" ], "x-ms-request-id": [ - "c1e4c77e-c7bd-43e6-925b-727acbf6ce51" + "0ebf2df7-b808-4a11-981f-efed02d4674f" ], "x-ms-correlation-request-id": [ - "c1e4c77e-c7bd-43e6-925b-727acbf6ce51" + "0ebf2df7-b808-4a11-981f-efed02d4674f" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044117Z:c1e4c77e-c7bd-43e6-925b-727acbf6ce51" + "WESTUS:20200924T054351Z:0ebf2df7-b808-4a11-981f-efed02d4674f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -20556,7 +14433,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:41:17 GMT" + "Thu, 24 Sep 2020 05:43:50 GMT" ], "Expires": [ "-1" @@ -20569,13 +14446,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4NjItV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNE5qSXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzMi1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNek1pMVhSVk5VUlZWU1QxQkZJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWlhWeWIzQmxJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -20589,16 +14466,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11982" ], "x-ms-request-id": [ - "31567f5f-3210-491f-81fa-da65dd1542d9" + "73962ec0-936a-4a9f-a5fd-afa6bf7ffd02" ], "x-ms-correlation-request-id": [ - "31567f5f-3210-491f-81fa-da65dd1542d9" + "73962ec0-936a-4a9f-a5fd-afa6bf7ffd02" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044132Z:31567f5f-3210-491f-81fa-da65dd1542d9" + "WESTUS:20200924T054406Z:73962ec0-936a-4a9f-a5fd-afa6bf7ffd02" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -20607,7 +14484,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:41:32 GMT" + "Thu, 24 Sep 2020 05:44:06 GMT" ], "Expires": [ "-1" @@ -20620,13 +14497,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4NjItV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNE5qSXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzMi1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNek1pMVhSVk5VUlZWU1QxQkZJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWlhWeWIzQmxJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -20640,16 +14517,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11981" ], "x-ms-request-id": [ - "5c6b49b6-81b9-4737-8d8f-1341f1694ff4" + "6d8f1f7f-0d21-48c0-9bbf-1f93543ed6bb" ], "x-ms-correlation-request-id": [ - "5c6b49b6-81b9-4737-8d8f-1341f1694ff4" + "6d8f1f7f-0d21-48c0-9bbf-1f93543ed6bb" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T044133Z:5c6b49b6-81b9-4737-8d8f-1341f1694ff4" + "WESTUS:20200924T054407Z:6d8f1f7f-0d21-48c0-9bbf-1f93543ed6bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -20658,7 +14535,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 04:41:33 GMT" + "Thu, 24 Sep 2020 05:44:06 GMT" ], "Expires": [ "-1" @@ -20673,11 +14550,11 @@ ], "Names": { "Test-FailoverSecondaryDatabase": [ - "ps4399", - "ps2767", - "ps8331", - "ps1862", - "ps1174" + "ps3520", + "ps8753", + "ps9145", + "ps332", + "ps2032" ] }, "Variables": { diff --git a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestRemoveSecondaryDatabase.json b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestRemoveSecondaryDatabase.json index 00b54c22fb2b..b233037792e8 100644 --- a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestRemoveSecondaryDatabase.json +++ b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestRemoveSecondaryDatabase.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "90c23809-621b-4f97-91da-170765894e43" + "3a9668b5-6e70-45bc-8c4a-abd561247a00" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -27,16 +27,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11986" ], "x-ms-request-id": [ - "4f387a58-33ed-46fd-bafa-743706064781" + "fc0af804-24be-4173-8608-7191bf39a89e" ], "x-ms-correlation-request-id": [ - "4f387a58-33ed-46fd-bafa-743706064781" + "fc0af804-24be-4173-8608-7191bf39a89e" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052115Z:4f387a58-33ed-46fd-bafa-743706064781" + "WESTUS:20200924T061037Z:fc0af804-24be-4173-8608-7191bf39a89e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:21:14 GMT" + "Thu, 24 Sep 2020 06:10:36 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -61,19 +61,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps2283?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzMjI4Mz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps7305?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzNzMwNT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West Europe\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "692caa48-749e-4ece-961d-ded8e3190fd0" + "2261de57-6c50-4640-977c-91d18bd5e9a1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -96,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "c698f500-37d1-4c02-8844-f34e9cf7ab6a" + "18db1066-16f4-40b7-b174-39753925ef22" ], "x-ms-correlation-request-id": [ - "c698f500-37d1-4c02-8844-f34e9cf7ab6a" + "18db1066-16f4-40b7-b174-39753925ef22" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052117Z:c698f500-37d1-4c02-8844-f34e9cf7ab6a" + "WESTUS:20200924T061038Z:18db1066-16f4-40b7-b174-39753925ef22" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:21:16 GMT" + "Thu, 24 Sep 2020 06:10:38 GMT" ], "Content-Length": [ "169" @@ -123,23 +123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2283\",\r\n \"name\": \"ps2283\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7305\",\r\n \"name\": \"ps7305\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2283/providers/Microsoft.Sql/servers/ps212?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjI4My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjEyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7305/providers/Microsoft.Sql/servers/ps5258?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNTI1OD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "39d2c191-9ca3-489e-8539-45a92a956c6a" + "5f39ee88-c59c-4a43-b924-d432adb418e4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -156,13 +156,13 @@ "gateway" ], "x-ms-request-id": [ - "ac3cbd9e-876b-4a5c-b0be-72f8401132cf" + "1c196832-750a-4e7b-bc8f-f494e72cac45" ], "x-ms-correlation-request-id": [ - "ac3cbd9e-876b-4a5c-b0be-72f8401132cf" + "1c196832-750a-4e7b-bc8f-f494e72cac45" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052117Z:ac3cbd9e-876b-4a5c-b0be-72f8401132cf" + "WESTUS:20200924T061039Z:1c196832-750a-4e7b-bc8f-f494e72cac45" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -171,7 +171,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:21:17 GMT" + "Thu, 24 Sep 2020 06:10:39 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -180,20 +180,20 @@ "-1" ], "Content-Length": [ - "205" + "206" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps212' under resource group 'ps2283' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps5258' under resource group 'ps7305' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2283/providers/Microsoft.Sql/servers/ps212?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjI4My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjEyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7305/providers/Microsoft.Sql/servers/ps5258?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNTI1OD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -207,19 +207,19 @@ "no-cache" ], "x-ms-request-id": [ - "0f26662f-0598-47cf-97cc-ead0602a8f6f" + "3b0e0a3b-52fd-4f72-8a61-0cc4f59ae68a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11972" ], "x-ms-correlation-request-id": [ - "4d1f6e3d-5672-4204-9d88-3418451eea2e" + "461408e9-70b0-4897-850f-d4a8a832ad41" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052230Z:4d1f6e3d-5672-4204-9d88-3418451eea2e" + "WESTUS:20200924T061130Z:461408e9-70b0-4897-850f-d4a8a832ad41" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -228,10 +228,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:22:29 GMT" + "Thu, 24 Sep 2020 06:11:30 GMT" ], "Content-Length": [ - "409" + "412" ], "Content-Type": [ "application/json; charset=utf-8" @@ -240,23 +240,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps212.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2283/providers/Microsoft.Sql/servers/ps212\",\r\n \"name\": \"ps212\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps5258.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7305/providers/Microsoft.Sql/servers/ps5258\",\r\n \"name\": \"ps5258\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2283/providers/Microsoft.Sql/servers/ps212?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjI4My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjEyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7305/providers/Microsoft.Sql/servers/ps5258?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNTI1OD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ec294a3e-15d3-49e0-be93-7ff9b7cecdb4" + "1f5ea32f-b419-458a-8f77-21fc6372aa0e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -270,19 +270,19 @@ "no-cache" ], "x-ms-request-id": [ - "ef86cb0c-cff9-4ef9-9e61-69b9398e602f" + "5cd99fd0-f6bf-41d6-bdaf-d7adc465a628" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11971" ], "x-ms-correlation-request-id": [ - "eb95e4ca-3da9-49f1-8d06-b11cb869cf94" + "9cfae867-dfc2-4817-b467-2f3f1bff5190" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052230Z:eb95e4ca-3da9-49f1-8d06-b11cb869cf94" + "WESTUS:20200924T061130Z:9cfae867-dfc2-4817-b467-2f3f1bff5190" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -291,10 +291,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:22:29 GMT" + "Thu, 24 Sep 2020 06:11:30 GMT" ], "Content-Length": [ - "409" + "412" ], "Content-Type": [ "application/json; charset=utf-8" @@ -303,23 +303,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps212.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2283/providers/Microsoft.Sql/servers/ps212\",\r\n \"name\": \"ps212\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps5258.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7305/providers/Microsoft.Sql/servers/ps5258\",\r\n \"name\": \"ps5258\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2283/providers/Microsoft.Sql/servers/ps212?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjI4My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjEyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7305/providers/Microsoft.Sql/servers/ps5258?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNTI1OD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "43562756-15a5-4c94-a877-9a31fe0367b9" + "dda6689b-a02d-4247-93a6-260461e9d0a6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -333,19 +333,19 @@ "no-cache" ], "x-ms-request-id": [ - "da28c8af-8965-43af-a689-b58960de2085" + "d92fb229-baad-4dc4-a789-c67018852143" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11969" ], "x-ms-correlation-request-id": [ - "f521d54a-a867-4c1f-a170-f8f41c25a95a" + "f2662766-e7ed-4c67-8f8a-a0ca95c3b963" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052230Z:f521d54a-a867-4c1f-a170-f8f41c25a95a" + "WESTUS:20200924T061131Z:f2662766-e7ed-4c67-8f8a-a0ca95c3b963" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -354,10 +354,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:22:29 GMT" + "Thu, 24 Sep 2020 06:11:30 GMT" ], "Content-Length": [ - "409" + "412" ], "Content-Type": [ "application/json; charset=utf-8" @@ -366,32 +366,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps212.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2283/providers/Microsoft.Sql/servers/ps212\",\r\n \"name\": \"ps212\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps5258.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7305/providers/Microsoft.Sql/servers/ps5258\",\r\n \"name\": \"ps5258\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2283/providers/Microsoft.Sql/servers/ps212?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjI4My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjEyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"West Europe\"\r\n}", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7305/providers/Microsoft.Sql/servers/ps5258?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNTI1OD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "da4090f4-114d-407e-91c1-187ff80d7912" + "f6c00023-f0c7-497d-ae5c-c0c09e8099a7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "155" ] }, "ResponseHeaders": { @@ -401,29 +395,20 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2283/providers/Microsoft.Sql/locations/westeurope/serverOperationResults/379b464b-aa34-4f0c-bc05-b80a362301a9?api-version=2019-06-01-preview" - ], - "Retry-After": [ - "1" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2283/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/379b464b-aa34-4f0c-bc05-b80a362301a9?api-version=2019-06-01-preview" - ], "x-ms-request-id": [ - "379b464b-aa34-4f0c-bc05-b80a362301a9" + "7e5a6a22-308f-43ce-832c-816827d4557a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11954" ], "x-ms-correlation-request-id": [ - "e624e76d-1f30-4718-8eda-0374bbedd755" + "b5c2022f-6c7e-450d-b86f-3534620f8ac9" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052123Z:e624e76d-1f30-4718-8eda-0374bbedd755" + "WESTUS:20200924T061328Z:b5c2022f-6c7e-450d-b86f-3534620f8ac9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,10 +417,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:21:22 GMT" + "Thu, 24 Sep 2020 06:13:27 GMT" ], "Content-Length": [ - "74" + "412" ], "Content-Type": [ "application/json; charset=utf-8" @@ -444,20 +429,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-14T05:21:22.923Z\"\r\n}", - "StatusCode": 202 + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps5258.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7305/providers/Microsoft.Sql/servers/ps5258\",\r\n \"name\": \"ps5258\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2283/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/379b464b-aa34-4f0c-bc05-b80a362301a9?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjI4My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzM3OWI0NjRiLWFhMzQtNGYwYy1iYzA1LWI4MGEzNjIzMDFhOT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7305/providers/Microsoft.Sql/servers/ps5258?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNTI1OD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"West Europe\"\r\n}", "RequestHeaders": { + "x-ms-client-request-id": [ + "120eae3c-6c8d-47a6-b16e-0f79431ef9df" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "155" ] }, "ResponseHeaders": { @@ -467,23 +464,29 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7305/providers/Microsoft.Sql/locations/westeurope/serverOperationResults/e60ab806-c459-4ab2-b46c-b68065ff91cb?api-version=2019-06-01-preview" + ], "Retry-After": [ "1" ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7305/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/e60ab806-c459-4ab2-b46c-b68065ff91cb?api-version=2019-06-01-preview" + ], "x-ms-request-id": [ - "d6b1e0b6-c35c-4b12-a33f-5a5dc5252829" + "e60ab806-c459-4ab2-b46c-b68065ff91cb" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-correlation-request-id": [ - "0ca65818-e950-4d1b-bcc9-5bd4233e4fc2" + "8bfcffda-3a8f-4c1f-8c9d-22601b289c68" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052124Z:0ca65818-e950-4d1b-bcc9-5bd4233e4fc2" + "WESTUS:20200924T061044Z:8bfcffda-3a8f-4c1f-8c9d-22601b289c68" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -492,10 +495,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:21:24 GMT" + "Thu, 24 Sep 2020 06:10:43 GMT" ], "Content-Length": [ - "108" + "74" ], "Content-Type": [ "application/json; charset=utf-8" @@ -504,17 +507,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"379b464b-aa34-4f0c-bc05-b80a362301a9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:21:22.923Z\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-24T06:10:43.967Z\"\r\n}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2283/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/379b464b-aa34-4f0c-bc05-b80a362301a9?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjI4My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzM3OWI0NjRiLWFhMzQtNGYwYy1iYzA1LWI4MGEzNjIzMDFhOT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7305/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/e60ab806-c459-4ab2-b46c-b68065ff91cb?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2U2MGFiODA2LWM0NTktNGFiMi1iNDZjLWI2ODA2NWZmOTFjYj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -531,19 +534,19 @@ "1" ], "x-ms-request-id": [ - "2b43d65a-4ba7-4532-a7e8-fd459f2f4606" + "313aea2e-fd37-49c2-a080-5b34b35cd3d6" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11979" ], "x-ms-correlation-request-id": [ - "17e4a130-a813-4b3b-945a-e051b6ed9a73" + "2ce145d1-120d-4b2f-988a-b505b06af618" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052125Z:17e4a130-a813-4b3b-945a-e051b6ed9a73" + "WESTUS:20200924T061045Z:2ce145d1-120d-4b2f-988a-b505b06af618" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -552,7 +555,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:21:25 GMT" + "Thu, 24 Sep 2020 06:10:45 GMT" ], "Content-Length": [ "108" @@ -564,17 +567,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"379b464b-aa34-4f0c-bc05-b80a362301a9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:21:22.923Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"e60ab806-c459-4ab2-b46c-b68065ff91cb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:10:43.967Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2283/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/379b464b-aa34-4f0c-bc05-b80a362301a9?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjI4My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzM3OWI0NjRiLWFhMzQtNGYwYy1iYzA1LWI4MGEzNjIzMDFhOT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7305/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/e60ab806-c459-4ab2-b46c-b68065ff91cb?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2U2MGFiODA2LWM0NTktNGFiMi1iNDZjLWI2ODA2NWZmOTFjYj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -591,19 +594,19 @@ "1" ], "x-ms-request-id": [ - "18fee2c4-f486-4d76-ad26-82635d33ff95" + "801e4812-df6d-439f-b16a-d1400afde037" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11978" ], "x-ms-correlation-request-id": [ - "df5a5e25-a5c5-4ad9-aa76-0608281d64a4" + "b8fd0f88-c922-4c49-8dee-99c4a8453f18" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052126Z:df5a5e25-a5c5-4ad9-aa76-0608281d64a4" + "WESTUS:20200924T061046Z:b8fd0f88-c922-4c49-8dee-99c4a8453f18" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -612,7 +615,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:21:26 GMT" + "Thu, 24 Sep 2020 06:10:46 GMT" ], "Content-Length": [ "108" @@ -624,17 +627,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"379b464b-aa34-4f0c-bc05-b80a362301a9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:21:22.923Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"e60ab806-c459-4ab2-b46c-b68065ff91cb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:10:43.967Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2283/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/379b464b-aa34-4f0c-bc05-b80a362301a9?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjI4My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzM3OWI0NjRiLWFhMzQtNGYwYy1iYzA1LWI4MGEzNjIzMDFhOT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7305/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/e60ab806-c459-4ab2-b46c-b68065ff91cb?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2U2MGFiODA2LWM0NTktNGFiMi1iNDZjLWI2ODA2NWZmOTFjYj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -651,19 +654,19 @@ "1" ], "x-ms-request-id": [ - "49621ddc-34e9-4f4b-8023-be808e400ed4" + "45696f62-cace-4260-9832-7325e3678966" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11977" ], "x-ms-correlation-request-id": [ - "633eb205-86bb-4f02-968c-6d34811e5415" + "85877cb0-39fa-4918-a5ce-569fa4a46132" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052127Z:633eb205-86bb-4f02-968c-6d34811e5415" + "WESTUS:20200924T061047Z:85877cb0-39fa-4918-a5ce-569fa4a46132" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -672,7 +675,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:21:27 GMT" + "Thu, 24 Sep 2020 06:10:47 GMT" ], "Content-Length": [ "108" @@ -684,17 +687,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"379b464b-aa34-4f0c-bc05-b80a362301a9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:21:22.923Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"e60ab806-c459-4ab2-b46c-b68065ff91cb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:10:43.967Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2283/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/379b464b-aa34-4f0c-bc05-b80a362301a9?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjI4My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzM3OWI0NjRiLWFhMzQtNGYwYy1iYzA1LWI4MGEzNjIzMDFhOT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7305/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/e60ab806-c459-4ab2-b46c-b68065ff91cb?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2U2MGFiODA2LWM0NTktNGFiMi1iNDZjLWI2ODA2NWZmOTFjYj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -708,22 +711,22 @@ "no-cache" ], "Retry-After": [ - "20" + "1" ], "x-ms-request-id": [ - "891237f4-44d6-40c4-8a97-bdceb48602b0" + "de9ae112-7389-411a-80f1-c49da62120ce" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11976" ], "x-ms-correlation-request-id": [ - "6b2c9580-647b-4c32-a553-aed181fa6f4a" + "5b20d77d-1a93-434b-86bb-3045fc4b231e" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052129Z:6b2c9580-647b-4c32-a553-aed181fa6f4a" + "WESTUS:20200924T061048Z:5b20d77d-1a93-434b-86bb-3045fc4b231e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -732,7 +735,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:21:29 GMT" + "Thu, 24 Sep 2020 06:10:48 GMT" ], "Content-Length": [ "108" @@ -744,17 +747,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"379b464b-aa34-4f0c-bc05-b80a362301a9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:21:22.923Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"e60ab806-c459-4ab2-b46c-b68065ff91cb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:10:43.967Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2283/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/379b464b-aa34-4f0c-bc05-b80a362301a9?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjI4My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzM3OWI0NjRiLWFhMzQtNGYwYy1iYzA1LWI4MGEzNjIzMDFhOT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7305/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/e60ab806-c459-4ab2-b46c-b68065ff91cb?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2U2MGFiODA2LWM0NTktNGFiMi1iNDZjLWI2ODA2NWZmOTFjYj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -771,19 +774,19 @@ "20" ], "x-ms-request-id": [ - "f409bde3-791e-4730-93b4-6ca7eb351c5b" + "0d99a227-ea7b-4a91-bc80-819dcec636a1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11975" ], "x-ms-correlation-request-id": [ - "692287c9-f6d8-4b15-b7f5-75967e7d18ef" + "b74f1278-95cb-4d97-9d7b-708515dcb708" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052149Z:692287c9-f6d8-4b15-b7f5-75967e7d18ef" + "WESTUS:20200924T061050Z:b74f1278-95cb-4d97-9d7b-708515dcb708" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -792,7 +795,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:21:49 GMT" + "Thu, 24 Sep 2020 06:10:49 GMT" ], "Content-Length": [ "108" @@ -804,17 +807,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"379b464b-aa34-4f0c-bc05-b80a362301a9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:21:22.923Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"e60ab806-c459-4ab2-b46c-b68065ff91cb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:10:43.967Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2283/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/379b464b-aa34-4f0c-bc05-b80a362301a9?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjI4My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzM3OWI0NjRiLWFhMzQtNGYwYy1iYzA1LWI4MGEzNjIzMDFhOT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7305/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/e60ab806-c459-4ab2-b46c-b68065ff91cb?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2U2MGFiODA2LWM0NTktNGFiMi1iNDZjLWI2ODA2NWZmOTFjYj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -831,19 +834,19 @@ "20" ], "x-ms-request-id": [ - "39836f6d-1a7d-46b2-8fee-a0f28f8ee8a4" + "01b18f0e-3f5d-4a1f-a17b-8cd74427ddeb" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11974" ], "x-ms-correlation-request-id": [ - "531bd788-680a-448d-8adf-8440485ca1b9" + "c4b4992b-f78b-41c6-a2e9-2da4b62dc01b" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052209Z:531bd788-680a-448d-8adf-8440485ca1b9" + "WESTUS:20200924T061110Z:c4b4992b-f78b-41c6-a2e9-2da4b62dc01b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -852,7 +855,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:22:09 GMT" + "Thu, 24 Sep 2020 06:11:09 GMT" ], "Content-Length": [ "108" @@ -864,17 +867,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"379b464b-aa34-4f0c-bc05-b80a362301a9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:21:22.923Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"e60ab806-c459-4ab2-b46c-b68065ff91cb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:10:43.967Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2283/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/379b464b-aa34-4f0c-bc05-b80a362301a9?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjI4My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzM3OWI0NjRiLWFhMzQtNGYwYy1iYzA1LWI4MGEzNjIzMDFhOT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7305/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/e60ab806-c459-4ab2-b46c-b68065ff91cb?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2U2MGFiODA2LWM0NTktNGFiMi1iNDZjLWI2ODA2NWZmOTFjYj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -891,19 +894,19 @@ "15" ], "x-ms-request-id": [ - "5bcaaf4a-f1c5-499b-8c54-52585fbea04a" + "7020e42b-dd90-4e72-bcba-06a004100232" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11973" ], "x-ms-correlation-request-id": [ - "ee0aa6c9-4276-47d6-aa5e-4fe10628e80b" + "7f344ffa-c880-44f5-88b4-b19074cbf665" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052229Z:ee0aa6c9-4276-47d6-aa5e-4fe10628e80b" + "WESTUS:20200924T061130Z:7f344ffa-c880-44f5-88b4-b19074cbf665" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -912,7 +915,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:22:29 GMT" + "Thu, 24 Sep 2020 06:11:30 GMT" ], "Content-Length": [ "107" @@ -924,23 +927,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"379b464b-aa34-4f0c-bc05-b80a362301a9\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-14T05:21:22.923Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"e60ab806-c459-4ab2-b46c-b68065ff91cb\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-24T06:10:43.967Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2283/providers/Microsoft.Sql/servers/ps212/databases/ps4393?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjI4My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjEyL2RhdGFiYXNlcy9wczQzOTM/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7305/providers/Microsoft.Sql/servers/ps5258/databases/ps244?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNTI1OC9kYXRhYmFzZXMvcHMyNDQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12c10d0f-2566-4548-99f8-82610a2a3ca9" + "b50c7522-396b-4330-8afa-a0e92c31701a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -957,13 +960,13 @@ "gateway" ], "x-ms-request-id": [ - "e954715c-347a-4df4-be95-b3025d4ca3fe" + "89bf66a2-0bbe-452d-ae3b-ee5ce3d6a942" ], "x-ms-correlation-request-id": [ - "e954715c-347a-4df4-be95-b3025d4ca3fe" + "89bf66a2-0bbe-452d-ae3b-ee5ce3d6a942" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052230Z:e954715c-347a-4df4-be95-b3025d4ca3fe" + "WESTUS:20200924T061131Z:89bf66a2-0bbe-452d-ae3b-ee5ce3d6a942" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -972,7 +975,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:22:29 GMT" + "Thu, 24 Sep 2020 06:11:30 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -984,17 +987,17 @@ "222" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps212/databases/ps4393' under resource group 'ps2283' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps5258/databases/ps244' under resource group 'ps7305' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2283/providers/Microsoft.Sql/servers/ps212/databases/ps4393?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjI4My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjEyL2RhdGFiYXNlcy9wczQzOTM/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7305/providers/Microsoft.Sql/servers/ps5258/databases/ps244?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNTI1OC9kYXRhYmFzZXMvcHMyNDQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1008,19 +1011,19 @@ "no-cache" ], "x-ms-request-id": [ - "b4343c2c-ef55-4eba-befe-777e155c8e87" + "ac23daf3-4e36-4650-a73e-495e80571de6" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11964" ], "x-ms-correlation-request-id": [ - "becf2995-defb-4418-88fd-9ab673f3201a" + "49e5ac48-1be4-4bbb-88bf-2eedced6e4ad" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052350Z:becf2995-defb-4418-88fd-9ab673f3201a" + "WESTUS:20200924T061236Z:49e5ac48-1be4-4bbb-88bf-2eedced6e4ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1029,10 +1032,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:23:50 GMT" + "Thu, 24 Sep 2020 06:12:35 GMT" ], "Content-Length": [ - "861" + "860" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1041,23 +1044,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"885d96c0-34d7-4f81-b3a6-5b9413f9d546\",\r\n \"creationDate\": \"2020-09-14T05:23:35.577Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-14T05:53:35.577Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2283/providers/Microsoft.Sql/servers/ps212/databases/ps4393\",\r\n \"name\": \"ps4393\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"3639530b-1ffc-4bed-8ef5-d652acb1a776\",\r\n \"creationDate\": \"2020-09-24T06:12:34.883Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-24T06:42:34.883Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7305/providers/Microsoft.Sql/servers/ps5258/databases/ps244\",\r\n \"name\": \"ps244\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2283/providers/Microsoft.Sql/servers/ps212/databases/ps4393?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjI4My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjEyL2RhdGFiYXNlcy9wczQzOTM/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7305/providers/Microsoft.Sql/servers/ps5258/databases/ps244?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNTI1OC9kYXRhYmFzZXMvcHMyNDQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "61a9372a-5c5b-40cf-9cb3-d75551c77956" + "87b93c6a-77d5-4a84-be50-fa2078c70902" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1071,19 +1074,19 @@ "no-cache" ], "x-ms-request-id": [ - "d0afc520-4336-4352-8a76-405731a48efb" + "de3b554a-610c-461d-9e35-4cd5a7efff88" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11951" ], "x-ms-correlation-request-id": [ - "7b454393-45c0-41a8-9e8c-00023601c1be" + "a36c2ab1-e972-4b3c-8de5-010ba3036bd0" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052504Z:7b454393-45c0-41a8-9e8c-00023601c1be" + "WESTUS:20200924T061329Z:a36c2ab1-e972-4b3c-8de5-010ba3036bd0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1092,10 +1095,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:25:03 GMT" + "Thu, 24 Sep 2020 06:13:28 GMT" ], "Content-Length": [ - "861" + "860" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1104,23 +1107,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"885d96c0-34d7-4f81-b3a6-5b9413f9d546\",\r\n \"creationDate\": \"2020-09-14T05:23:35.577Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-14T05:53:35.577Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2283/providers/Microsoft.Sql/servers/ps212/databases/ps4393\",\r\n \"name\": \"ps4393\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"3639530b-1ffc-4bed-8ef5-d652acb1a776\",\r\n \"creationDate\": \"2020-09-24T06:12:34.883Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-24T06:42:34.883Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7305/providers/Microsoft.Sql/servers/ps5258/databases/ps244\",\r\n \"name\": \"ps244\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2283/providers/Microsoft.Sql/servers/ps212/databases/ps4393?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjI4My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjEyL2RhdGFiYXNlcy9wczQzOTM/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7305/providers/Microsoft.Sql/servers/ps5258/databases/ps244?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNTI1OC9kYXRhYmFzZXMvcHMyNDQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"properties\": {\r\n \"maxSizeBytes\": 0,\r\n \"readScale\": \"\"\r\n },\r\n \"location\": \"westeurope\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "04df80c3-5f94-45ec-b235-e83035c0e6aa" + "831623ca-2327-4bc2-9c0f-fd6277331c46" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1140,16 +1143,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2283/providers/Microsoft.Sql/locations/westeurope/databaseOperationResults/708fbaea-2fdc-4e8f-9cd9-61f8a5286941?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7305/providers/Microsoft.Sql/locations/westeurope/databaseOperationResults/ad8e151d-6674-4ff4-a5a7-0470b9c1e09e?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2283/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/708fbaea-2fdc-4e8f-9cd9-61f8a5286941?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7305/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/ad8e151d-6674-4ff4-a5a7-0470b9c1e09e?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "708fbaea-2fdc-4e8f-9cd9-61f8a5286941" + "ad8e151d-6674-4ff4-a5a7-0470b9c1e09e" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1158,10 +1161,10 @@ "1198" ], "x-ms-correlation-request-id": [ - "c8682fab-ed0a-4a52-abc8-d29afcde5ba6" + "0cb0b0f4-d061-431b-8082-3fffa1e6716f" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052234Z:c8682fab-ed0a-4a52-abc8-d29afcde5ba6" + "WESTUS:20200924T061135Z:0cb0b0f4-d061-431b-8082-3fffa1e6716f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1170,7 +1173,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:22:33 GMT" + "Thu, 24 Sep 2020 06:11:35 GMT" ], "Content-Length": [ "75" @@ -1182,77 +1185,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2020-09-14T05:22:33.92Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2020-09-24T06:11:35.54Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2283/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/708fbaea-2fdc-4e8f-9cd9-61f8a5286941?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjI4My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNzA4ZmJhZWEtMmZkYy00ZThmLTljZDktNjFmOGE1Mjg2OTQxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "c100e9a8-f79b-4a71-a5db-7cc6417bc7ec" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" - ], - "x-ms-correlation-request-id": [ - "b1f84700-41b8-4edc-b84a-b3ec72463ff9" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T052249Z:b1f84700-41b8-4edc-b84a-b3ec72463ff9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 14 Sep 2020 05:22:48 GMT" - ], - "Content-Length": [ - "107" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"708fbaea-2fdc-4e8f-9cd9-61f8a5286941\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:22:33.92Z\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2283/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/708fbaea-2fdc-4e8f-9cd9-61f8a5286941?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjI4My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNzA4ZmJhZWEtMmZkYy00ZThmLTljZDktNjFmOGE1Mjg2OTQxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7305/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/ad8e151d-6674-4ff4-a5a7-0470b9c1e09e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYWQ4ZTE1MWQtNjY3NC00ZmY0LWE1YTctMDQ3MGI5YzFlMDllP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1269,19 +1212,19 @@ "15" ], "x-ms-request-id": [ - "ddbc6929-5d9a-452d-b2cd-286b68f81d9d" + "f0b4c52f-03a2-4083-8add-eec4da55cde2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11968" ], "x-ms-correlation-request-id": [ - "b5bb4eb3-89cd-442e-894d-56251f377879" + "8c10a928-36d5-42c2-b124-a11ed544f73a" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052304Z:b5bb4eb3-89cd-442e-894d-56251f377879" + "WESTUS:20200924T061150Z:8c10a928-36d5-42c2-b124-a11ed544f73a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1290,7 +1233,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:23:04 GMT" + "Thu, 24 Sep 2020 06:11:50 GMT" ], "Content-Length": [ "107" @@ -1302,17 +1245,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"708fbaea-2fdc-4e8f-9cd9-61f8a5286941\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:22:33.92Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"ad8e151d-6674-4ff4-a5a7-0470b9c1e09e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:11:35.54Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2283/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/708fbaea-2fdc-4e8f-9cd9-61f8a5286941?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjI4My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNzA4ZmJhZWEtMmZkYy00ZThmLTljZDktNjFmOGE1Mjg2OTQxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7305/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/ad8e151d-6674-4ff4-a5a7-0470b9c1e09e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYWQ4ZTE1MWQtNjY3NC00ZmY0LWE1YTctMDQ3MGI5YzFlMDllP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1329,19 +1272,19 @@ "15" ], "x-ms-request-id": [ - "b321e9d3-53e9-43c5-b115-09265c42014c" + "abe6345b-937a-4358-af8c-033542852d28" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11967" ], "x-ms-correlation-request-id": [ - "1b329ec6-4a91-4b53-8e9d-88c486eaab37" + "74e4a9b9-eaf4-406c-9575-6d48af41ccd6" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052320Z:1b329ec6-4a91-4b53-8e9d-88c486eaab37" + "WESTUS:20200924T061206Z:74e4a9b9-eaf4-406c-9575-6d48af41ccd6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1350,7 +1293,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:23:19 GMT" + "Thu, 24 Sep 2020 06:12:05 GMT" ], "Content-Length": [ "107" @@ -1362,17 +1305,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"708fbaea-2fdc-4e8f-9cd9-61f8a5286941\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:22:33.92Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"ad8e151d-6674-4ff4-a5a7-0470b9c1e09e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:11:35.54Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2283/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/708fbaea-2fdc-4e8f-9cd9-61f8a5286941?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjI4My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNzA4ZmJhZWEtMmZkYy00ZThmLTljZDktNjFmOGE1Mjg2OTQxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7305/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/ad8e151d-6674-4ff4-a5a7-0470b9c1e09e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYWQ4ZTE1MWQtNjY3NC00ZmY0LWE1YTctMDQ3MGI5YzFlMDllP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1389,19 +1332,19 @@ "15" ], "x-ms-request-id": [ - "c3205221-1c5e-4bfb-b1f3-001a5aee3f6e" + "04a2ed45-104a-4c0b-b90b-9899d12c49b0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11966" ], "x-ms-correlation-request-id": [ - "26dedecb-683e-4822-bd63-d49f7edcb6a6" + "d2fc879d-e477-405e-8cbc-c587d28b5fba" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052335Z:26dedecb-683e-4822-bd63-d49f7edcb6a6" + "WESTUS:20200924T061221Z:d2fc879d-e477-405e-8cbc-c587d28b5fba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1410,7 +1353,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:23:35 GMT" + "Thu, 24 Sep 2020 06:12:20 GMT" ], "Content-Length": [ "107" @@ -1422,17 +1365,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"708fbaea-2fdc-4e8f-9cd9-61f8a5286941\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:22:33.92Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"ad8e151d-6674-4ff4-a5a7-0470b9c1e09e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:11:35.54Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2283/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/708fbaea-2fdc-4e8f-9cd9-61f8a5286941?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjI4My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNzA4ZmJhZWEtMmZkYy00ZThmLTljZDktNjFmOGE1Mjg2OTQxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7305/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/ad8e151d-6674-4ff4-a5a7-0470b9c1e09e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYWQ4ZTE1MWQtNjY3NC00ZmY0LWE1YTctMDQ3MGI5YzFlMDllP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1449,19 +1392,19 @@ "15" ], "x-ms-request-id": [ - "918f7cec-22da-40cf-940a-73a11381a298" + "1fcde2e7-bf74-44d7-a1a9-4c83bb44403e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11965" ], "x-ms-correlation-request-id": [ - "d82f2765-5346-42a5-8f9b-87b4d10984e4" + "10237b0f-19f4-447c-b48b-ebccea2717c0" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052350Z:d82f2765-5346-42a5-8f9b-87b4d10984e4" + "WESTUS:20200924T061236Z:10237b0f-19f4-447c-b48b-ebccea2717c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1470,7 +1413,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:23:50 GMT" + "Thu, 24 Sep 2020 06:12:35 GMT" ], "Content-Length": [ "106" @@ -1482,23 +1425,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"708fbaea-2fdc-4e8f-9cd9-61f8a5286941\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-14T05:22:33.92Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"ad8e151d-6674-4ff4-a5a7-0470b9c1e09e\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-24T06:11:35.54Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps2345?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzMjM0NT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps948?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzOTQ4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West Europe\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7e66d919-ebd5-4662-917b-69f3081fb994" + "0fdb9768-f1f8-476b-ad2c-2485385e9dc9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -1518,16 +1461,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "65e8673b-c99b-4a69-aefd-83f3406d47dd" + "a0d50b85-d262-4b80-ae1c-ff5623c2e6fa" ], "x-ms-correlation-request-id": [ - "65e8673b-c99b-4a69-aefd-83f3406d47dd" + "a0d50b85-d262-4b80-ae1c-ff5623c2e6fa" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052353Z:65e8673b-c99b-4a69-aefd-83f3406d47dd" + "WESTUS:20200924T061238Z:a0d50b85-d262-4b80-ae1c-ff5623c2e6fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1536,10 +1479,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:23:52 GMT" + "Thu, 24 Sep 2020 06:12:37 GMT" ], "Content-Length": [ - "169" + "167" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1548,23 +1491,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2345\",\r\n \"name\": \"ps2345\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps948\",\r\n \"name\": \"ps948\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2345/providers/Microsoft.Sql/servers/ps4753?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM0NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNDc1Mz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps948/providers/Microsoft.Sql/servers/ps6041?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHM2MDQxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3c8daa91-a57a-4427-9425-4eb7165ca129" + "029648e2-c058-4004-8d2f-1dbbaed63377" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1581,13 +1524,13 @@ "gateway" ], "x-ms-request-id": [ - "9bd4e4c9-e4f8-4f84-be69-73f98bb548a6" + "c42dc831-fc21-45dd-b260-935dab5e90b9" ], "x-ms-correlation-request-id": [ - "9bd4e4c9-e4f8-4f84-be69-73f98bb548a6" + "c42dc831-fc21-45dd-b260-935dab5e90b9" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052353Z:9bd4e4c9-e4f8-4f84-be69-73f98bb548a6" + "WESTUS:20200924T061238Z:c42dc831-fc21-45dd-b260-935dab5e90b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1596,7 +1539,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:23:53 GMT" + "Thu, 24 Sep 2020 06:12:37 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1605,20 +1548,20 @@ "-1" ], "Content-Length": [ - "206" + "205" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps4753' under resource group 'ps2345' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps6041' under resource group 'ps948' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2345/providers/Microsoft.Sql/servers/ps4753?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM0NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNDc1Mz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps948/providers/Microsoft.Sql/servers/ps6041?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHM2MDQxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1632,19 +1575,19 @@ "no-cache" ], "x-ms-request-id": [ - "feb29c9b-746f-472d-8a40-1eb3aff2b60a" + "7d40191e-c38a-46c0-93f1-1bcb252fe44d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11955" ], "x-ms-correlation-request-id": [ - "6629f7e9-6e4d-4eab-bb59-bd0160af5759" + "e417793f-704c-4f6c-b204-da784d776990" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052503Z:6629f7e9-6e4d-4eab-bb59-bd0160af5759" + "WESTUS:20200924T061328Z:e417793f-704c-4f6c-b204-da784d776990" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1653,10 +1596,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:25:02 GMT" + "Thu, 24 Sep 2020 06:13:27 GMT" ], "Content-Length": [ - "412" + "411" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1665,23 +1608,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps4753.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2345/providers/Microsoft.Sql/servers/ps4753\",\r\n \"name\": \"ps4753\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps6041.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps948/providers/Microsoft.Sql/servers/ps6041\",\r\n \"name\": \"ps6041\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2345/providers/Microsoft.Sql/servers/ps4753?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM0NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNDc1Mz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps948/providers/Microsoft.Sql/servers/ps6041?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHM2MDQxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b83def1b-9bae-4b09-a1e3-c93fe4a4b769" + "6081f892-f529-4d5d-bde7-ac37074fd263" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1695,19 +1638,19 @@ "no-cache" ], "x-ms-request-id": [ - "67caa3e2-5f47-4609-878b-ec5b2954ffb0" + "c0850fe8-b0b9-41f6-bb94-be486b663117" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11952" ], "x-ms-correlation-request-id": [ - "46ae4982-1e6d-4e6c-bd12-8a81f06b0957" + "0edb84c9-172b-4306-aaf4-a61f25bb0d18" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052504Z:46ae4982-1e6d-4e6c-bd12-8a81f06b0957" + "WESTUS:20200924T061329Z:0edb84c9-172b-4306-aaf4-a61f25bb0d18" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1716,10 +1659,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:25:03 GMT" + "Thu, 24 Sep 2020 06:13:28 GMT" ], "Content-Length": [ - "412" + "411" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1728,23 +1671,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps4753.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2345/providers/Microsoft.Sql/servers/ps4753\",\r\n \"name\": \"ps4753\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps6041.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps948/providers/Microsoft.Sql/servers/ps6041\",\r\n \"name\": \"ps6041\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2345/providers/Microsoft.Sql/servers/ps4753?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM0NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNDc1Mz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps948/providers/Microsoft.Sql/servers/ps6041?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHM2MDQxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"West Europe\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b4a8e911-73b8-497a-aa3c-84d5cc04edca" + "2117a6cf-1116-4b5c-8b76-28d41ea90f12" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1764,16 +1707,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2345/providers/Microsoft.Sql/locations/westeurope/serverOperationResults/3b730f5d-b8d9-4a77-af08-5ad8ba208c8b?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps948/providers/Microsoft.Sql/locations/westeurope/serverOperationResults/d23e353b-1c37-4167-b7bf-e40ea10f3bdb?api-version=2019-06-01-preview" ], "Retry-After": [ "1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2345/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/3b730f5d-b8d9-4a77-af08-5ad8ba208c8b?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps948/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/d23e353b-1c37-4167-b7bf-e40ea10f3bdb?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "3b730f5d-b8d9-4a77-af08-5ad8ba208c8b" + "d23e353b-1c37-4167-b7bf-e40ea10f3bdb" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1782,10 +1725,10 @@ "1197" ], "x-ms-correlation-request-id": [ - "09ce6dc5-d5db-4c3b-903a-9adf65d50078" + "82a09bf7-1c29-4a8c-89a3-e7129f9b5c15" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052356Z:09ce6dc5-d5db-4c3b-903a-9adf65d50078" + "WESTUS:20200924T061241Z:82a09bf7-1c29-4a8c-89a3-e7129f9b5c15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1794,7 +1737,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:23:56 GMT" + "Thu, 24 Sep 2020 06:12:41 GMT" ], "Content-Length": [ "73" @@ -1806,17 +1749,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-14T05:23:56.34Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-24T06:12:41.67Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2345/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/3b730f5d-b8d9-4a77-af08-5ad8ba208c8b?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM0NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzNiNzMwZjVkLWI4ZDktNGE3Ny1hZjA4LTVhZDhiYTIwOGM4Yj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps948/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/d23e353b-1c37-4167-b7bf-e40ea10f3bdb?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vZDIzZTM1M2ItMWMzNy00MTY3LWI3YmYtZTQwZWExMGYzYmRiP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1833,19 +1776,19 @@ "1" ], "x-ms-request-id": [ - "ca056cd9-993a-4bc9-94c9-9bfe0721a206" + "2e95be12-03e4-4732-afdc-5d7c5c35b13b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11962" ], "x-ms-correlation-request-id": [ - "6544e1a7-d18a-433b-8b23-6bffec6cfccf" + "b69ec6d2-488c-4c29-9701-8e4426346c27" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052357Z:6544e1a7-d18a-433b-8b23-6bffec6cfccf" + "WESTUS:20200924T061243Z:b69ec6d2-488c-4c29-9701-8e4426346c27" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1854,7 +1797,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:23:57 GMT" + "Thu, 24 Sep 2020 06:12:42 GMT" ], "Content-Length": [ "107" @@ -1866,17 +1809,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"3b730f5d-b8d9-4a77-af08-5ad8ba208c8b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:23:56.34Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"d23e353b-1c37-4167-b7bf-e40ea10f3bdb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:12:41.67Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2345/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/3b730f5d-b8d9-4a77-af08-5ad8ba208c8b?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM0NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzNiNzMwZjVkLWI4ZDktNGE3Ny1hZjA4LTVhZDhiYTIwOGM4Yj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps948/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/d23e353b-1c37-4167-b7bf-e40ea10f3bdb?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vZDIzZTM1M2ItMWMzNy00MTY3LWI3YmYtZTQwZWExMGYzYmRiP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1893,19 +1836,19 @@ "1" ], "x-ms-request-id": [ - "acc071b0-f57f-45c9-8414-a0c361c5b626" + "feb79665-9528-43e1-9daf-ebbe182b0540" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11961" ], "x-ms-correlation-request-id": [ - "d7a65c2a-325d-4eca-b37f-7da17e796279" + "d88d0e8f-8aa6-48ef-b66b-787e2af36949" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052358Z:d7a65c2a-325d-4eca-b37f-7da17e796279" + "WESTUS:20200924T061244Z:d88d0e8f-8aa6-48ef-b66b-787e2af36949" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1914,7 +1857,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:23:58 GMT" + "Thu, 24 Sep 2020 06:12:43 GMT" ], "Content-Length": [ "107" @@ -1926,17 +1869,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"3b730f5d-b8d9-4a77-af08-5ad8ba208c8b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:23:56.34Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"d23e353b-1c37-4167-b7bf-e40ea10f3bdb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:12:41.67Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2345/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/3b730f5d-b8d9-4a77-af08-5ad8ba208c8b?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM0NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzNiNzMwZjVkLWI4ZDktNGE3Ny1hZjA4LTVhZDhiYTIwOGM4Yj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps948/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/d23e353b-1c37-4167-b7bf-e40ea10f3bdb?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vZDIzZTM1M2ItMWMzNy00MTY3LWI3YmYtZTQwZWExMGYzYmRiP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1953,19 +1896,19 @@ "1" ], "x-ms-request-id": [ - "80c1c6aa-c977-4948-aec3-fc7c21cfab33" + "fc52244c-b87c-4b24-ad0f-bf01b34f8be0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11960" ], "x-ms-correlation-request-id": [ - "23247eaf-5fb0-4e12-a1eb-7e2327b0b072" + "4ce8114d-99c3-4a6e-a5c7-c731d190c9d6" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052400Z:23247eaf-5fb0-4e12-a1eb-7e2327b0b072" + "WESTUS:20200924T061245Z:4ce8114d-99c3-4a6e-a5c7-c731d190c9d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1974,7 +1917,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:23:59 GMT" + "Thu, 24 Sep 2020 06:12:44 GMT" ], "Content-Length": [ "107" @@ -1986,17 +1929,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"3b730f5d-b8d9-4a77-af08-5ad8ba208c8b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:23:56.34Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"d23e353b-1c37-4167-b7bf-e40ea10f3bdb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:12:41.67Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2345/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/3b730f5d-b8d9-4a77-af08-5ad8ba208c8b?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM0NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzNiNzMwZjVkLWI4ZDktNGE3Ny1hZjA4LTVhZDhiYTIwOGM4Yj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps948/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/d23e353b-1c37-4167-b7bf-e40ea10f3bdb?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vZDIzZTM1M2ItMWMzNy00MTY3LWI3YmYtZTQwZWExMGYzYmRiP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2013,79 +1956,19 @@ "1" ], "x-ms-request-id": [ - "a4429c82-de5b-448b-86bb-0095316d6178" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" - ], - "x-ms-correlation-request-id": [ - "1fcc2278-1f90-4e1e-9e0c-fbea016a0784" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T052401Z:1fcc2278-1f90-4e1e-9e0c-fbea016a0784" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 14 Sep 2020 05:24:01 GMT" - ], - "Content-Length": [ - "107" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"3b730f5d-b8d9-4a77-af08-5ad8ba208c8b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:23:56.34Z\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2345/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/3b730f5d-b8d9-4a77-af08-5ad8ba208c8b?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM0NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzNiNzMwZjVkLWI4ZDktNGE3Ny1hZjA4LTVhZDhiYTIwOGM4Yj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "20" - ], - "x-ms-request-id": [ - "0dd34b2f-8aac-45be-8577-2a2dbc8d8889" + "018ad19b-bf35-46ab-97bd-92acbe55f5ba" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11959" ], "x-ms-correlation-request-id": [ - "5edff0c0-9282-41a7-a67d-ca7a486cabeb" + "9b407ae1-1f4a-4214-a23f-6581721e46a3" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052402Z:5edff0c0-9282-41a7-a67d-ca7a486cabeb" + "WESTUS:20200924T061246Z:9b407ae1-1f4a-4214-a23f-6581721e46a3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2094,7 +1977,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:24:02 GMT" + "Thu, 24 Sep 2020 06:12:45 GMT" ], "Content-Length": [ "107" @@ -2106,17 +1989,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"3b730f5d-b8d9-4a77-af08-5ad8ba208c8b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:23:56.34Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"d23e353b-1c37-4167-b7bf-e40ea10f3bdb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:12:41.67Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2345/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/3b730f5d-b8d9-4a77-af08-5ad8ba208c8b?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM0NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzNiNzMwZjVkLWI4ZDktNGE3Ny1hZjA4LTVhZDhiYTIwOGM4Yj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps948/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/d23e353b-1c37-4167-b7bf-e40ea10f3bdb?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vZDIzZTM1M2ItMWMzNy00MTY3LWI3YmYtZTQwZWExMGYzYmRiP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2133,19 +2016,19 @@ "20" ], "x-ms-request-id": [ - "66b1e201-fd07-4057-ab78-4f550df39501" + "2252218b-0841-4fc1-9bcb-c60c3bff0a81" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11958" ], "x-ms-correlation-request-id": [ - "8281d88d-08ad-403d-8be6-463ab7e3209a" + "39a1178f-a16e-409e-b392-a9944da5d046" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052422Z:8281d88d-08ad-403d-8be6-463ab7e3209a" + "WESTUS:20200924T061247Z:39a1178f-a16e-409e-b392-a9944da5d046" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2154,7 +2037,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:24:22 GMT" + "Thu, 24 Sep 2020 06:12:46 GMT" ], "Content-Length": [ "107" @@ -2166,17 +2049,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"3b730f5d-b8d9-4a77-af08-5ad8ba208c8b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:23:56.34Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"d23e353b-1c37-4167-b7bf-e40ea10f3bdb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:12:41.67Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2345/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/3b730f5d-b8d9-4a77-af08-5ad8ba208c8b?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM0NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzNiNzMwZjVkLWI4ZDktNGE3Ny1hZjA4LTVhZDhiYTIwOGM4Yj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps948/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/d23e353b-1c37-4167-b7bf-e40ea10f3bdb?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vZDIzZTM1M2ItMWMzNy00MTY3LWI3YmYtZTQwZWExMGYzYmRiP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2193,19 +2076,19 @@ "20" ], "x-ms-request-id": [ - "0eab007c-5c53-4a36-85e3-02d6dc9f6fdf" + "53ed968b-2168-43a2-9840-9a7986eba956" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11957" ], "x-ms-correlation-request-id": [ - "d39a46d9-a7f7-45de-8c50-5becfab55d07" + "b197fd3a-cdb8-43c0-ac3d-4dcca6b3e6c2" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052443Z:d39a46d9-a7f7-45de-8c50-5becfab55d07" + "WESTUS:20200924T061308Z:b197fd3a-cdb8-43c0-ac3d-4dcca6b3e6c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2214,7 +2097,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:24:42 GMT" + "Thu, 24 Sep 2020 06:13:07 GMT" ], "Content-Length": [ "107" @@ -2226,17 +2109,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"3b730f5d-b8d9-4a77-af08-5ad8ba208c8b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:23:56.34Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"d23e353b-1c37-4167-b7bf-e40ea10f3bdb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:12:41.67Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2345/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/3b730f5d-b8d9-4a77-af08-5ad8ba208c8b?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM0NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzNiNzMwZjVkLWI4ZDktNGE3Ny1hZjA4LTVhZDhiYTIwOGM4Yj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps948/providers/Microsoft.Sql/locations/westeurope/serverAzureAsyncOperation/d23e353b-1c37-4167-b7bf-e40ea10f3bdb?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vZDIzZTM1M2ItMWMzNy00MTY3LWI3YmYtZTQwZWExMGYzYmRiP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2253,19 +2136,19 @@ "15" ], "x-ms-request-id": [ - "19783fbc-570b-4a44-9480-9b533291cf46" + "1c588fb5-ccf1-42b4-9dcd-63f2aaa03dcc" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11956" ], "x-ms-correlation-request-id": [ - "f0d6addd-a313-4b81-95af-22d069889ddc" + "8fa59e48-93a8-4e09-aa46-04bba974ebc9" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052503Z:f0d6addd-a313-4b81-95af-22d069889ddc" + "WESTUS:20200924T061328Z:8fa59e48-93a8-4e09-aa46-04bba974ebc9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2274,7 +2157,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:25:02 GMT" + "Thu, 24 Sep 2020 06:13:27 GMT" ], "Content-Length": [ "106" @@ -2286,23 +2169,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"3b730f5d-b8d9-4a77-af08-5ad8ba208c8b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-14T05:23:56.34Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"d23e353b-1c37-4167-b7bf-e40ea10f3bdb\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-24T06:12:41.67Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2345/providers/Microsoft.Sql/servers/ps4753/databases/ps4393?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM0NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNDc1My9kYXRhYmFzZXMvcHM0MzkzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps948/providers/Microsoft.Sql/servers/ps6041/databases/ps244?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHM2MDQxL2RhdGFiYXNlcy9wczI0ND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "997c5e42-88ee-4fa9-935b-64b297e7ebbc" + "9c756331-cc8d-4ed5-8a0c-d8daf05eb0ad" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2319,13 +2202,13 @@ "gateway" ], "x-ms-request-id": [ - "8b6d6cfd-d4bb-462f-8b5d-ef74966fb156" + "ae9dbcd9-983c-4ea9-b295-42747b091929" ], "x-ms-correlation-request-id": [ - "8b6d6cfd-d4bb-462f-8b5d-ef74966fb156" + "ae9dbcd9-983c-4ea9-b295-42747b091929" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052504Z:8b6d6cfd-d4bb-462f-8b5d-ef74966fb156" + "WESTUS:20200924T061328Z:ae9dbcd9-983c-4ea9-b295-42747b091929" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2334,7 +2217,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:25:03 GMT" + "Thu, 24 Sep 2020 06:13:27 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2343,20 +2226,20 @@ "-1" ], "Content-Length": [ - "223" + "221" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps4753/databases/ps4393' under resource group 'ps2345' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps6041/databases/ps244' under resource group 'ps948' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2345/providers/Microsoft.Sql/servers/ps4753/databases/ps4393?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM0NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNDc1My9kYXRhYmFzZXMvcHM0MzkzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps948/providers/Microsoft.Sql/servers/ps6041/databases/ps244?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHM2MDQxL2RhdGFiYXNlcy9wczI0ND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2370,19 +2253,19 @@ "no-cache" ], "x-ms-request-id": [ - "23e09d3b-7bb5-4e00-aecc-a5f496df4940" + "b1c3bdd5-976f-48c3-954a-640290d54b72" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" + "11942" ], "x-ms-correlation-request-id": [ - "c7c8275c-752f-47e9-99c7-6cdf10e0e2de" + "20a759e0-3695-41f4-a561-5500affb4f56" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052725Z:c7c8275c-752f-47e9-99c7-6cdf10e0e2de" + "WESTUS:20200924T061534Z:20a759e0-3695-41f4-a561-5500affb4f56" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2391,10 +2274,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:27:24 GMT" + "Thu, 24 Sep 2020 06:15:34 GMT" ], "Content-Length": [ - "862" + "859" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2403,23 +2286,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"816df9ee-5188-4ff0-94f9-68a96ab2c22f\",\r\n \"creationDate\": \"2020-09-14T05:27:01.513Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-14T05:57:01.513Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2345/providers/Microsoft.Sql/servers/ps4753/databases/ps4393\",\r\n \"name\": \"ps4393\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"c230cee6-f156-4ebd-aa45-a7703af949a0\",\r\n \"creationDate\": \"2020-09-24T06:15:16.087Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-24T06:45:16.087Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps948/providers/Microsoft.Sql/servers/ps6041/databases/ps244\",\r\n \"name\": \"ps244\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2345/providers/Microsoft.Sql/servers/ps4753/databases/ps4393?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM0NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNDc1My9kYXRhYmFzZXMvcHM0MzkzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps948/providers/Microsoft.Sql/servers/ps6041/databases/ps244?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHM2MDQxL2RhdGFiYXNlcy9wczI0ND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"P1\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"properties\": {\r\n \"createMode\": \"Secondary\",\r\n \"sourceDatabaseId\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2283/providers/Microsoft.Sql/Servers/ps212/databases/ps4393\"\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"P1\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"properties\": {\r\n \"createMode\": \"Secondary\",\r\n \"sourceDatabaseId\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7305/providers/Microsoft.Sql/Servers/ps5258/databases/ps244\"\r\n },\r\n \"location\": \"westeurope\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e1068f4c-2bda-47aa-9a01-5aa54724587c" + "6b7183ef-3b12-4721-9c31-f33b62e0323c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2439,16 +2322,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2345/providers/Microsoft.Sql/locations/westeurope/databaseOperationResults/b523a273-bf8d-408f-897b-c6da4bf79f16?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps948/providers/Microsoft.Sql/locations/westeurope/databaseOperationResults/9aeaa9b8-70b8-4430-8205-cc261f21a0dd?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2345/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/b523a273-bf8d-408f-897b-c6da4bf79f16?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps948/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/9aeaa9b8-70b8-4430-8205-cc261f21a0dd?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "900c7eb0-4a0a-4c55-bac2-607c01e29245" + "146c0bc9-ff70-4e9b-8282-821d49d1c684" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2457,10 +2340,10 @@ "1196" ], "x-ms-correlation-request-id": [ - "1544c444-81e7-44de-befa-fc313c72bbff" + "66559d60-274c-41f1-aea5-6a4137274ff3" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052507Z:1544c444-81e7-44de-befa-fc313c72bbff" + "WESTUS:20200924T061333Z:66559d60-274c-41f1-aea5-6a4137274ff3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2469,7 +2352,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:25:07 GMT" + "Thu, 24 Sep 2020 06:13:32 GMT" ], "Content-Length": [ "75" @@ -2481,17 +2364,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2020-09-14T05:25:07.667Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2020-09-24T06:13:32.967Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2345/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/b523a273-bf8d-408f-897b-c6da4bf79f16?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM0NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYjUyM2EyNzMtYmY4ZC00MDhmLTg5N2ItYzZkYTRiZjc5ZjE2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps948/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/9aeaa9b8-70b8-4430-8205-cc261f21a0dd?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi85YWVhYTliOC03MGI4LTQ0MzAtODIwNS1jYzI2MWYyMWEwZGQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2508,19 +2391,19 @@ "15" ], "x-ms-request-id": [ - "39e39646-b752-422c-b2ea-58ad15292873" + "513b2cb7-7ed3-4c0a-816a-20e322a05f36" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11950" ], "x-ms-correlation-request-id": [ - "4fa81a85-5f14-4ea6-91e8-1f15fe1743c1" + "24e60b23-8e2f-4abb-ba95-d7d098d3583e" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052523Z:4fa81a85-5f14-4ea6-91e8-1f15fe1743c1" + "WESTUS:20200924T061348Z:24e60b23-8e2f-4abb-ba95-d7d098d3583e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2529,10 +2412,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:25:22 GMT" + "Thu, 24 Sep 2020 06:13:48 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2541,17 +2424,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"b523a273-bf8d-408f-897b-c6da4bf79f16\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:25:07.87Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"9aeaa9b8-70b8-4430-8205-cc261f21a0dd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:13:33.187Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2345/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/b523a273-bf8d-408f-897b-c6da4bf79f16?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM0NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYjUyM2EyNzMtYmY4ZC00MDhmLTg5N2ItYzZkYTRiZjc5ZjE2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps948/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/9aeaa9b8-70b8-4430-8205-cc261f21a0dd?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi85YWVhYTliOC03MGI4LTQ0MzAtODIwNS1jYzI2MWYyMWEwZGQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2568,19 +2451,19 @@ "15" ], "x-ms-request-id": [ - "71011ca3-d597-40de-81e4-e7d620db60e6" + "703d38b1-4d7e-468c-a6c9-bd8cdd2f9623" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11949" ], "x-ms-correlation-request-id": [ - "33bbafaa-58b6-4109-9dcf-8b5cabb89370" + "67928b07-09f0-4451-99a0-b8cc32225e4d" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052538Z:33bbafaa-58b6-4109-9dcf-8b5cabb89370" + "WESTUS:20200924T061403Z:67928b07-09f0-4451-99a0-b8cc32225e4d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2589,10 +2472,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:25:37 GMT" + "Thu, 24 Sep 2020 06:14:03 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2601,17 +2484,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"b523a273-bf8d-408f-897b-c6da4bf79f16\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:25:07.87Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"9aeaa9b8-70b8-4430-8205-cc261f21a0dd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:13:33.187Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2345/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/b523a273-bf8d-408f-897b-c6da4bf79f16?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM0NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYjUyM2EyNzMtYmY4ZC00MDhmLTg5N2ItYzZkYTRiZjc5ZjE2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps948/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/9aeaa9b8-70b8-4430-8205-cc261f21a0dd?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi85YWVhYTliOC03MGI4LTQ0MzAtODIwNS1jYzI2MWYyMWEwZGQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2628,19 +2511,19 @@ "15" ], "x-ms-request-id": [ - "f3cf2faa-9c63-4993-9460-3344ea1b3329" + "cea1d6f7-4ea2-4fe3-aafa-9906f6d3f7bb" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11948" ], "x-ms-correlation-request-id": [ - "6164a3fe-b4fa-4fca-b55e-1c1570208e51" + "04c62017-6044-4fe9-ac71-a259757b39e6" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052553Z:6164a3fe-b4fa-4fca-b55e-1c1570208e51" + "WESTUS:20200924T061418Z:04c62017-6044-4fe9-ac71-a259757b39e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2649,10 +2532,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:25:52 GMT" + "Thu, 24 Sep 2020 06:14:18 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2661,17 +2544,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"b523a273-bf8d-408f-897b-c6da4bf79f16\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:25:07.87Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"9aeaa9b8-70b8-4430-8205-cc261f21a0dd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:13:33.187Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2345/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/b523a273-bf8d-408f-897b-c6da4bf79f16?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM0NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYjUyM2EyNzMtYmY4ZC00MDhmLTg5N2ItYzZkYTRiZjc5ZjE2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps948/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/9aeaa9b8-70b8-4430-8205-cc261f21a0dd?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi85YWVhYTliOC03MGI4LTQ0MzAtODIwNS1jYzI2MWYyMWEwZGQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2688,19 +2571,19 @@ "15" ], "x-ms-request-id": [ - "1ef9d470-f543-40be-ae72-6e8fd7e91392" + "3c29bdd9-afff-4b30-8af0-2802300de98c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11947" ], "x-ms-correlation-request-id": [ - "3c92db6d-9e4a-41ed-957b-0df1d150e44a" + "db4d6eab-2add-4393-ad55-fcd0ff872591" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052608Z:3c92db6d-9e4a-41ed-957b-0df1d150e44a" + "WESTUS:20200924T061433Z:db4d6eab-2add-4393-ad55-fcd0ff872591" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2709,10 +2592,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:26:08 GMT" + "Thu, 24 Sep 2020 06:14:33 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2721,17 +2604,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"b523a273-bf8d-408f-897b-c6da4bf79f16\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:25:07.87Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"9aeaa9b8-70b8-4430-8205-cc261f21a0dd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:13:33.187Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2345/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/b523a273-bf8d-408f-897b-c6da4bf79f16?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM0NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYjUyM2EyNzMtYmY4ZC00MDhmLTg5N2ItYzZkYTRiZjc5ZjE2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps948/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/9aeaa9b8-70b8-4430-8205-cc261f21a0dd?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi85YWVhYTliOC03MGI4LTQ0MzAtODIwNS1jYzI2MWYyMWEwZGQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2748,19 +2631,19 @@ "15" ], "x-ms-request-id": [ - "6547da5e-7a84-45c3-9880-63f93f481672" + "8a346167-b269-4339-b3e6-6c39a177fb4f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11946" ], "x-ms-correlation-request-id": [ - "5a7e8d70-7749-48d8-a7b2-2e47d8bfa1ad" + "7f5f7496-9374-42b6-980e-55213983d23c" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052624Z:5a7e8d70-7749-48d8-a7b2-2e47d8bfa1ad" + "WESTUS:20200924T061449Z:7f5f7496-9374-42b6-980e-55213983d23c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2769,10 +2652,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:26:23 GMT" + "Thu, 24 Sep 2020 06:14:48 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2781,17 +2664,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"b523a273-bf8d-408f-897b-c6da4bf79f16\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:25:07.87Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"9aeaa9b8-70b8-4430-8205-cc261f21a0dd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:13:33.187Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2345/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/b523a273-bf8d-408f-897b-c6da4bf79f16?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM0NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYjUyM2EyNzMtYmY4ZC00MDhmLTg5N2ItYzZkYTRiZjc5ZjE2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps948/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/9aeaa9b8-70b8-4430-8205-cc261f21a0dd?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi85YWVhYTliOC03MGI4LTQ0MzAtODIwNS1jYzI2MWYyMWEwZGQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2808,19 +2691,19 @@ "15" ], "x-ms-request-id": [ - "c17029cc-1005-40b6-8753-113913676e20" + "9b1d1a1c-6ca8-42ef-ad43-0f1edcad2700" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" + "11945" ], "x-ms-correlation-request-id": [ - "55020aa2-bf91-40ab-9990-90b9b20d7915" + "dec6f3a6-c7f9-48e5-b318-e7fedabfef67" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052639Z:55020aa2-bf91-40ab-9990-90b9b20d7915" + "WESTUS:20200924T061504Z:dec6f3a6-c7f9-48e5-b318-e7fedabfef67" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2829,10 +2712,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:26:39 GMT" + "Thu, 24 Sep 2020 06:15:03 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2841,17 +2724,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"b523a273-bf8d-408f-897b-c6da4bf79f16\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:25:07.87Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"9aeaa9b8-70b8-4430-8205-cc261f21a0dd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:13:33.187Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2345/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/b523a273-bf8d-408f-897b-c6da4bf79f16?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM0NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYjUyM2EyNzMtYmY4ZC00MDhmLTg5N2ItYzZkYTRiZjc5ZjE2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps948/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/9aeaa9b8-70b8-4430-8205-cc261f21a0dd?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi85YWVhYTliOC03MGI4LTQ0MzAtODIwNS1jYzI2MWYyMWEwZGQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2868,19 +2751,19 @@ "15" ], "x-ms-request-id": [ - "c68ce5b5-6947-400c-86d6-568bd5d4cfb7" + "4510cd29-4cbe-4784-bd70-d6ebee6b61f5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" + "11944" ], "x-ms-correlation-request-id": [ - "b97d3d84-3adb-4e65-b249-1d91ce1c6c31" + "015ff8c4-9ec1-4ece-84ed-db2e2756fa56" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052654Z:b97d3d84-3adb-4e65-b249-1d91ce1c6c31" + "WESTUS:20200924T061519Z:015ff8c4-9ec1-4ece-84ed-db2e2756fa56" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2889,10 +2772,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:26:54 GMT" + "Thu, 24 Sep 2020 06:15:18 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2901,17 +2784,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"b523a273-bf8d-408f-897b-c6da4bf79f16\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:25:07.87Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"9aeaa9b8-70b8-4430-8205-cc261f21a0dd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T06:13:33.187Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2345/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/b523a273-bf8d-408f-897b-c6da4bf79f16?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM0NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYjUyM2EyNzMtYmY4ZC00MDhmLTg5N2ItYzZkYTRiZjc5ZjE2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps948/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/9aeaa9b8-70b8-4430-8205-cc261f21a0dd?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0ZXVyb3BlL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi85YWVhYTliOC03MGI4LTQ0MzAtODIwNS1jYzI2MWYyMWEwZGQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2928,19 +2811,19 @@ "15" ], "x-ms-request-id": [ - "bdcb51c6-5781-4ce2-a18e-faffdd0aa810" + "7ee07c01-b0ea-4412-9d3e-57205eae2e45" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "11943" ], "x-ms-correlation-request-id": [ - "092bd1e5-1abd-4ad2-92de-c1a23b3841f8" + "08dd0c28-9926-4de6-bfac-cb743257bb2e" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052709Z:092bd1e5-1abd-4ad2-92de-c1a23b3841f8" + "WESTUS:20200924T061534Z:08dd0c28-9926-4de6-bfac-cb743257bb2e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2949,7 +2832,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:27:09 GMT" + "Thu, 24 Sep 2020 06:15:33 GMT" ], "Content-Length": [ "107" @@ -2961,17 +2844,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"b523a273-bf8d-408f-897b-c6da4bf79f16\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T05:25:07.87Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"9aeaa9b8-70b8-4430-8205-cc261f21a0dd\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-24T06:13:33.187Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2345/providers/Microsoft.Sql/locations/westeurope/databaseAzureAsyncOperation/b523a273-bf8d-408f-897b-c6da4bf79f16?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM0NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdGV1cm9wZS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYjUyM2EyNzMtYmY4ZC00MDhmLTg5N2ItYzZkYTRiZjc5ZjE2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps948/providers/Microsoft.Sql/servers?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnM/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "f870e094-f30a-4a29-9d6c-6ce916d3d449" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2984,23 +2873,20 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], "x-ms-request-id": [ - "f32fd4f5-077c-418a-ac5c-a464f422c07c" + "70cf602a-dda7-4294-bb65-0d2321a71607" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11941" ], "x-ms-correlation-request-id": [ - "d6b14716-6407-47da-bef2-6bbcb023505a" + "12cdc8ca-731a-4ae4-b0eb-de5d3f2b4a78" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052724Z:d6b14716-6407-47da-bef2-6bbcb023505a" + "WESTUS:20200924T061535Z:12cdc8ca-731a-4ae4-b0eb-de5d3f2b4a78" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3009,10 +2895,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:27:24 GMT" + "Thu, 24 Sep 2020 06:15:34 GMT" ], "Content-Length": [ - "106" + "423" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3021,23 +2907,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"b523a273-bf8d-408f-897b-c6da4bf79f16\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-14T05:25:07.87Z\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps6041.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps948/providers/Microsoft.Sql/servers/ps6041\",\r\n \"name\": \"ps6041\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2345/providers/Microsoft.Sql/servers?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM0NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps948/providers/Microsoft.Sql/servers?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnM/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c1b41ae4-d986-4382-a713-54b2aef591ae" + "08212ab5-72ae-4d98-9479-62f8848db5c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -3051,19 +2937,19 @@ "no-cache" ], "x-ms-request-id": [ - "02300ab1-de3a-4ac8-a4d1-9694cf4f4aef" + "92fa6774-f9ef-4708-88d8-fb1fefbe2255" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" + "11940" ], "x-ms-correlation-request-id": [ - "6438daf4-0555-4eff-b72f-e7c71850c5f2" + "a190b602-d39b-44a0-a482-464e6567b22f" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052725Z:6438daf4-0555-4eff-b72f-e7c71850c5f2" + "WESTUS:20200924T061535Z:a190b602-d39b-44a0-a482-464e6567b22f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3072,10 +2958,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:27:24 GMT" + "Thu, 24 Sep 2020 06:15:34 GMT" ], "Content-Length": [ - "424" + "423" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3084,23 +2970,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps4753.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2345/providers/Microsoft.Sql/servers/ps4753\",\r\n \"name\": \"ps4753\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps6041.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps948/providers/Microsoft.Sql/servers/ps6041\",\r\n \"name\": \"ps6041\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2345/providers/Microsoft.Sql/servers?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM0NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps948/providers/Microsoft.Sql/servers?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzOTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnM/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4d420851-2789-4e49-b35b-562b2d3ad02f" + "5d8158b5-2557-4092-8f4a-ca379bc7fd7e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -3114,19 +3000,19 @@ "no-cache" ], "x-ms-request-id": [ - "132e5811-3095-4d92-bbce-4d8b73660c92" + "65cbda16-e73c-41a6-b291-602e0ac5bf77" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" + "11939" ], "x-ms-correlation-request-id": [ - "c85fb9f7-fed6-4877-818a-0e6b4733d3e8" + "2e276f11-31e4-43ce-b326-822290dc0755" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052725Z:c85fb9f7-fed6-4877-818a-0e6b4733d3e8" + "WESTUS:20200924T061536Z:2e276f11-31e4-43ce-b326-822290dc0755" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3135,10 +3021,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:27:25 GMT" + "Thu, 24 Sep 2020 06:15:35 GMT" ], "Content-Length": [ - "424" + "423" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3147,80 +3033,68 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps4753.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2345/providers/Microsoft.Sql/servers/ps4753\",\r\n \"name\": \"ps4753\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps6041.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps948/providers/Microsoft.Sql/servers/ps6041\",\r\n \"name\": \"ps6041\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2345/providers/Microsoft.Sql/servers?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjM0NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7305/providers/Microsoft.Sql/servers/ps5258/databases/ps244/replicationLinks?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNTI1OC9kYXRhYmFzZXMvcHMyNDQvcmVwbGljYXRpb25MaW5rcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "b6b284e8-65e1-43e3-bbf1-9261f185dbf2" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" + "no-store, no-cache" ], "x-ms-request-id": [ - "47130819-4268-4396-920a-7e262746da59" + "31299d04-d715-4e97-8b07-7b599f761716" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" + "11999" ], "x-ms-correlation-request-id": [ - "0bb7d8a4-48b1-4f71-84eb-4c9c0aaaed19" + "476d1dae-91a0-4e25-abfd-a448384f4f5e" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052726Z:0bb7d8a4-48b1-4f71-84eb-4c9c0aaaed19" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" + "WESTUS:20200924T061535Z:476d1dae-91a0-4e25-abfd-a448384f4f5e" ], "Date": [ - "Mon, 14 Sep 2020 05:27:26 GMT" + "Thu, 24 Sep 2020 06:15:34 GMT" ], "Content-Length": [ - "424" + "616" ], "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps4753.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2345/providers/Microsoft.Sql/servers/ps4753\",\r\n \"name\": \"ps4753\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7305/providers/Microsoft.Sql/servers/ps5258/databases/ps244/replicationLinks/fff301ae-bc73-4a70-abb4-c016b6c54dc3\",\r\n \"name\": \"fff301ae-bc73-4a70-abb4-c016b6c54dc3\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"West Europe\",\r\n \"properties\": {\r\n \"partnerServer\": \"ps6041\",\r\n \"partnerDatabase\": \"ps244\",\r\n \"partnerLocation\": \"West Europe\",\r\n \"role\": \"Primary\",\r\n \"partnerRole\": \"Secondary\",\r\n \"replicationMode\": \"ASYNC\",\r\n \"startTime\": \"2020-09-24T06:14:44.85\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2283/providers/Microsoft.Sql/servers/ps212/databases/ps4393/replicationLinks?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjI4My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjEyL2RhdGFiYXNlcy9wczQzOTMvcmVwbGljYXRpb25MaW5rcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7305/providers/Microsoft.Sql/servers/ps5258/databases/ps244/replicationLinks?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNTI1OC9kYXRhYmFzZXMvcHMyNDQvcmVwbGljYXRpb25MaW5rcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -3228,7 +3102,7 @@ "no-store, no-cache" ], "x-ms-request-id": [ - "195ad97b-0a61-4fa8-9f5f-56df3d7ae56b" + "80fa699c-bf29-4cc9-a804-5681ec948ed9" ], "X-Content-Type-Options": [ "nosniff" @@ -3246,32 +3120,32 @@ "11998" ], "x-ms-correlation-request-id": [ - "bbacee49-7499-4c0d-be61-70c9bc68c187" + "0ff1fd28-44d0-41e1-9988-d8367f93a589" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052725Z:bbacee49-7499-4c0d-be61-70c9bc68c187" + "WESTUS:20200924T061535Z:0ff1fd28-44d0-41e1-9988-d8367f93a589" ], "Date": [ - "Mon, 14 Sep 2020 05:27:25 GMT" + "Thu, 24 Sep 2020 06:15:35 GMT" ], "Content-Length": [ - "618" + "616" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2283/providers/Microsoft.Sql/servers/ps212/databases/ps4393/replicationLinks/55f342a1-fbf1-4a59-9bc5-31d785510241\",\r\n \"name\": \"55f342a1-fbf1-4a59-9bc5-31d785510241\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"West Europe\",\r\n \"properties\": {\r\n \"partnerServer\": \"ps4753\",\r\n \"partnerDatabase\": \"ps4393\",\r\n \"partnerLocation\": \"West Europe\",\r\n \"role\": \"Primary\",\r\n \"partnerRole\": \"Secondary\",\r\n \"replicationMode\": \"ASYNC\",\r\n \"startTime\": \"2020-09-14T05:26:19.747\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7305/providers/Microsoft.Sql/servers/ps5258/databases/ps244/replicationLinks/fff301ae-bc73-4a70-abb4-c016b6c54dc3\",\r\n \"name\": \"fff301ae-bc73-4a70-abb4-c016b6c54dc3\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"West Europe\",\r\n \"properties\": {\r\n \"partnerServer\": \"ps6041\",\r\n \"partnerDatabase\": \"ps244\",\r\n \"partnerLocation\": \"West Europe\",\r\n \"role\": \"Primary\",\r\n \"partnerRole\": \"Secondary\",\r\n \"replicationMode\": \"ASYNC\",\r\n \"startTime\": \"2020-09-24T06:14:44.85\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2283/providers/Microsoft.Sql/servers/ps212/databases/ps4393/replicationLinks?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjI4My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjEyL2RhdGFiYXNlcy9wczQzOTMvcmVwbGljYXRpb25MaW5rcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7305/providers/Microsoft.Sql/servers/ps5258/databases/ps244/replicationLinks?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNTI1OC9kYXRhYmFzZXMvcHMyNDQvcmVwbGljYXRpb25MaW5rcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -3279,7 +3153,7 @@ "no-store, no-cache" ], "x-ms-request-id": [ - "9da591b1-777b-40a7-9390-4907dddaf921" + "21d2676d-2854-402b-bdc4-8d76984bf3d2" ], "X-Content-Type-Options": [ "nosniff" @@ -3297,32 +3171,32 @@ "11997" ], "x-ms-correlation-request-id": [ - "b64cf961-d878-42a3-ada6-7afb42fac6f6" + "913f8b73-8f71-4a49-ba77-2557bcbd3401" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052726Z:b64cf961-d878-42a3-ada6-7afb42fac6f6" + "WESTUS:20200924T061536Z:913f8b73-8f71-4a49-ba77-2557bcbd3401" ], "Date": [ - "Mon, 14 Sep 2020 05:27:26 GMT" + "Thu, 24 Sep 2020 06:15:35 GMT" ], "Content-Length": [ - "618" + "616" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2283/providers/Microsoft.Sql/servers/ps212/databases/ps4393/replicationLinks/55f342a1-fbf1-4a59-9bc5-31d785510241\",\r\n \"name\": \"55f342a1-fbf1-4a59-9bc5-31d785510241\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"West Europe\",\r\n \"properties\": {\r\n \"partnerServer\": \"ps4753\",\r\n \"partnerDatabase\": \"ps4393\",\r\n \"partnerLocation\": \"West Europe\",\r\n \"role\": \"Primary\",\r\n \"partnerRole\": \"Secondary\",\r\n \"replicationMode\": \"ASYNC\",\r\n \"startTime\": \"2020-09-14T05:26:19.747\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7305/providers/Microsoft.Sql/servers/ps5258/databases/ps244/replicationLinks/fff301ae-bc73-4a70-abb4-c016b6c54dc3\",\r\n \"name\": \"fff301ae-bc73-4a70-abb4-c016b6c54dc3\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"West Europe\",\r\n \"properties\": {\r\n \"partnerServer\": \"ps6041\",\r\n \"partnerDatabase\": \"ps244\",\r\n \"partnerLocation\": \"West Europe\",\r\n \"role\": \"Primary\",\r\n \"partnerRole\": \"Secondary\",\r\n \"replicationMode\": \"ASYNC\",\r\n \"startTime\": \"2020-09-24T06:14:44.85\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2283/providers/Microsoft.Sql/servers/ps212/databases/ps4393/replicationLinks?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjI4My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjEyL2RhdGFiYXNlcy9wczQzOTMvcmVwbGljYXRpb25MaW5rcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps7305/providers/Microsoft.Sql/servers/ps5258/databases/ps244/replicationLinks/fff301ae-bc73-4a70-abb4-c016b6c54dc3?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNzMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNTI1OC9kYXRhYmFzZXMvcHMyNDQvcmVwbGljYXRpb25MaW5rcy9mZmYzMDFhZS1iYzczLTRhNzAtYWJiNC1jMDE2YjZjNTRkYzM/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -3330,13 +3204,13 @@ "no-store, no-cache" ], "x-ms-request-id": [ - "21cf7821-06ce-4adb-9308-a0c80481c323" + "1ed24690-e674-46dd-a620-095f44cb345d" ], "X-Content-Type-Options": [ "nosniff" ], "DataServiceVersion": [ - "3.0;" + "1.0;" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3344,93 +3218,213 @@ "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-correlation-request-id": [ - "e996cb49-1e60-4838-8ef8-4129cd9bad85" + "c438f22c-1328-480f-948f-30bdb3cc4751" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052726Z:e996cb49-1e60-4838-8ef8-4129cd9bad85" + "WESTUS:20200924T061540Z:c438f22c-1328-480f-948f-30bdb3cc4751" ], "Date": [ - "Mon, 14 Sep 2020 05:27:26 GMT" - ], - "Content-Length": [ - "618" + "Thu, 24 Sep 2020 06:15:39 GMT" ], "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + "application/json" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2283/providers/Microsoft.Sql/servers/ps212/databases/ps4393/replicationLinks/55f342a1-fbf1-4a59-9bc5-31d785510241\",\r\n \"name\": \"55f342a1-fbf1-4a59-9bc5-31d785510241\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"West Europe\",\r\n \"properties\": {\r\n \"partnerServer\": \"ps4753\",\r\n \"partnerDatabase\": \"ps4393\",\r\n \"partnerLocation\": \"West Europe\",\r\n \"role\": \"Primary\",\r\n \"partnerRole\": \"Secondary\",\r\n \"replicationMode\": \"ASYNC\",\r\n \"startTime\": \"2020-09-14T05:26:19.747\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps2283/providers/Microsoft.Sql/servers/ps212/databases/ps4393/replicationLinks/55f342a1-fbf1-4a59-9bc5-31d785510241?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzMjI4My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMjEyL2RhdGFiYXNlcy9wczQzOTMvcmVwbGljYXRpb25MaW5rcy81NWYzNDJhMS1mYmYxLTRhNTktOWJjNS0zMWQ3ODU1MTAyNDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps7305?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzNzMwNT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "89f8b467-e503-45ba-a1b3-573b96fe2f85" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" ] }, "ResponseHeaders": { "Cache-Control": [ - "no-store, no-cache" + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczMDUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-request-id": [ - "0803153d-5c8c-44d0-b673-5814d49920fe" + "9c86a00b-7d2f-4707-8819-ae7bdbd854eb" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-correlation-request-id": [ + "9c86a00b-7d2f-4707-8819-ae7bdbd854eb" ], - "DataServiceVersion": [ - "1.0;" + "x-ms-routing-request-id": [ + "WESTUS:20200924T061543Z:9c86a00b-7d2f-4707-8819-ae7bdbd854eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "X-Content-Type-Options": [ + "nosniff" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "Date": [ + "Thu, 24 Sep 2020 06:15:43 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczMDUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjek1EVXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczMDUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "0fb5dbd6-d9aa-44c6-9523-2c994b884de2" ], "x-ms-correlation-request-id": [ - "67f1ee7f-44e3-471b-b395-974fd84cd6d2" + "0fb5dbd6-d9aa-44c6-9523-2c994b884de2" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052729Z:67f1ee7f-44e3-471b-b395-974fd84cd6d2" + "WESTUS:20200924T061559Z:0fb5dbd6-d9aa-44c6-9523-2c994b884de2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:27:29 GMT" + "Thu, 24 Sep 2020 06:15:58 GMT" ], - "Content-Type": [ - "application/json" + "Expires": [ + "-1" ], "Content-Length": [ "0" ] }, "ResponseBody": "", - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps2283?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzMjI4Mz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczMDUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjek1EVXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "ff6379f4-0672-46c0-a6c0-57fca7079539" + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], - "Accept-Language": [ - "en-US" + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczMDUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "02586942-214b-4a9c-8372-a10dc3767bb5" + ], + "x-ms-correlation-request-id": [ + "02586942-214b-4a9c-8372-a10dc3767bb5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T061614Z:02586942-214b-4a9c-8372-a10dc3767bb5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 06:16:14 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczMDUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjek1EVXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3444,22 +3438,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIyODMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczMDUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" ], "x-ms-request-id": [ - "58d0f30a-2e6e-44fa-8ced-fb9195bb2467" + "4bb486a4-4a1d-4d18-9ec7-b9e2637a97d7" ], "x-ms-correlation-request-id": [ - "58d0f30a-2e6e-44fa-8ced-fb9195bb2467" + "4bb486a4-4a1d-4d18-9ec7-b9e2637a97d7" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052733Z:58d0f30a-2e6e-44fa-8ced-fb9195bb2467" + "WESTUS:20200924T061629Z:4bb486a4-4a1d-4d18-9ec7-b9e2637a97d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3468,7 +3462,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:27:32 GMT" + "Thu, 24 Sep 2020 06:16:29 GMT" ], "Expires": [ "-1" @@ -3481,13 +3475,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIyODMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeU9ETXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczMDUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjek1EVXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3501,22 +3495,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIyODMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczMDUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11996" ], "x-ms-request-id": [ - "6897e5b9-34f2-42bb-999a-0b7bdaafa73e" + "f09f1164-2285-47b7-aa66-f8fc74548d3b" ], "x-ms-correlation-request-id": [ - "6897e5b9-34f2-42bb-999a-0b7bdaafa73e" + "f09f1164-2285-47b7-aa66-f8fc74548d3b" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052748Z:6897e5b9-34f2-42bb-999a-0b7bdaafa73e" + "WESTUS:20200924T061645Z:f09f1164-2285-47b7-aa66-f8fc74548d3b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3525,7 +3519,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:27:48 GMT" + "Thu, 24 Sep 2020 06:16:44 GMT" ], "Expires": [ "-1" @@ -3538,13 +3532,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIyODMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeU9ETXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczMDUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjek1EVXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3558,22 +3552,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIyODMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczMDUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11995" ], "x-ms-request-id": [ - "ca41c7af-d913-4730-b784-0c332e6fbebf" + "f256e536-9319-4188-9d7a-4c51f42f465d" ], "x-ms-correlation-request-id": [ - "ca41c7af-d913-4730-b784-0c332e6fbebf" + "f256e536-9319-4188-9d7a-4c51f42f465d" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052804Z:ca41c7af-d913-4730-b784-0c332e6fbebf" + "WESTUS:20200924T061700Z:f256e536-9319-4188-9d7a-4c51f42f465d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3582,7 +3576,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:28:03 GMT" + "Thu, 24 Sep 2020 06:16:59 GMT" ], "Expires": [ "-1" @@ -3595,13 +3589,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIyODMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeU9ETXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczMDUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjek1EVXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3615,22 +3609,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIyODMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczMDUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11994" ], "x-ms-request-id": [ - "6ca5d67f-6203-4431-82f6-c9f6207bfdc7" + "08f8c100-1fbe-4b72-82d9-b5eec3049dc4" ], "x-ms-correlation-request-id": [ - "6ca5d67f-6203-4431-82f6-c9f6207bfdc7" + "08f8c100-1fbe-4b72-82d9-b5eec3049dc4" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052819Z:6ca5d67f-6203-4431-82f6-c9f6207bfdc7" + "WESTUS:20200924T061715Z:08f8c100-1fbe-4b72-82d9-b5eec3049dc4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3639,7 +3633,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:28:19 GMT" + "Thu, 24 Sep 2020 06:17:15 GMT" ], "Expires": [ "-1" @@ -3652,13 +3646,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIyODMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeU9ETXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczMDUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjek1EVXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3672,22 +3666,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIyODMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczMDUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11993" ], "x-ms-request-id": [ - "06138487-c5ab-433d-80b0-8d9f865d5a96" + "4a893f39-4b49-478c-89ec-f7c2b490d808" ], "x-ms-correlation-request-id": [ - "06138487-c5ab-433d-80b0-8d9f865d5a96" + "4a893f39-4b49-478c-89ec-f7c2b490d808" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052834Z:06138487-c5ab-433d-80b0-8d9f865d5a96" + "WESTUS:20200924T061731Z:4a893f39-4b49-478c-89ec-f7c2b490d808" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3696,7 +3690,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:28:34 GMT" + "Thu, 24 Sep 2020 06:17:30 GMT" ], "Expires": [ "-1" @@ -3709,13 +3703,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIyODMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeU9ETXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczMDUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjek1EVXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3729,22 +3723,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIyODMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczMDUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11992" ], "x-ms-request-id": [ - "c5227e5a-369b-465c-88bb-7b06b0142b59" + "061bf971-f135-4303-af8b-b3a3abd3e57e" ], "x-ms-correlation-request-id": [ - "c5227e5a-369b-465c-88bb-7b06b0142b59" + "061bf971-f135-4303-af8b-b3a3abd3e57e" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052850Z:c5227e5a-369b-465c-88bb-7b06b0142b59" + "WESTUS:20200924T061746Z:061bf971-f135-4303-af8b-b3a3abd3e57e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3753,7 +3747,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:28:49 GMT" + "Thu, 24 Sep 2020 06:17:45 GMT" ], "Expires": [ "-1" @@ -3766,13 +3760,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIyODMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeU9ETXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczMDUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjek1EVXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3786,22 +3780,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIyODMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczMDUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11991" ], "x-ms-request-id": [ - "24ac6436-4005-4236-b30d-0957d3dea578" + "a099de29-f51d-4fce-b852-2b662506e92e" ], "x-ms-correlation-request-id": [ - "24ac6436-4005-4236-b30d-0957d3dea578" + "a099de29-f51d-4fce-b852-2b662506e92e" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052905Z:24ac6436-4005-4236-b30d-0957d3dea578" + "WESTUS:20200924T061801Z:a099de29-f51d-4fce-b852-2b662506e92e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3810,7 +3804,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:29:05 GMT" + "Thu, 24 Sep 2020 06:18:00 GMT" ], "Expires": [ "-1" @@ -3823,13 +3817,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIyODMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeU9ETXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczMDUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjek1EVXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3843,16 +3837,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11990" ], "x-ms-request-id": [ - "b9cb4127-c780-47f0-b8bf-b24ce16ab4f7" + "eefd5f59-add5-4ba9-833a-84ab840116ed" ], "x-ms-correlation-request-id": [ - "b9cb4127-c780-47f0-b8bf-b24ce16ab4f7" + "eefd5f59-add5-4ba9-833a-84ab840116ed" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052920Z:b9cb4127-c780-47f0-b8bf-b24ce16ab4f7" + "WESTUS:20200924T061817Z:eefd5f59-add5-4ba9-833a-84ab840116ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3861,7 +3855,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:29:20 GMT" + "Thu, 24 Sep 2020 06:18:16 GMT" ], "Expires": [ "-1" @@ -3874,13 +3868,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIyODMtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeU9ETXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczMDUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjek1EVXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3894,16 +3888,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11989" ], "x-ms-request-id": [ - "30153484-7e43-4677-be36-a405d770075a" + "c441215c-c765-4cfc-8137-1058a2b7c5a0" ], "x-ms-correlation-request-id": [ - "30153484-7e43-4677-be36-a405d770075a" + "c441215c-c765-4cfc-8137-1058a2b7c5a0" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052921Z:30153484-7e43-4677-be36-a405d770075a" + "WESTUS:20200924T061817Z:c441215c-c765-4cfc-8137-1058a2b7c5a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3912,7 +3906,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:29:20 GMT" + "Thu, 24 Sep 2020 06:18:16 GMT" ], "Expires": [ "-1" @@ -3925,19 +3919,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps2345?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzMjM0NT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps948?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzOTQ4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9b05aff-5eab-4ac3-a638-c82b6d5a025c" + "719b7153-c6f0-45c1-9f79-e8a2c8bc36af" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3951,7 +3945,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNDUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0OC1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3960,13 +3954,13 @@ "14998" ], "x-ms-request-id": [ - "876896ca-232c-4ed1-8ea0-1ce8f768591a" + "9759098a-75c0-4ebb-8259-c9e94c5b8ef7" ], "x-ms-correlation-request-id": [ - "876896ca-232c-4ed1-8ea0-1ce8f768591a" + "9759098a-75c0-4ebb-8259-c9e94c5b8ef7" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052923Z:876896ca-232c-4ed1-8ea0-1ce8f768591a" + "WESTUS:20200924T061819Z:9759098a-75c0-4ebb-8259-c9e94c5b8ef7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3975,7 +3969,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:29:23 GMT" + "Thu, 24 Sep 2020 06:18:19 GMT" ], "Expires": [ "-1" @@ -3988,13 +3982,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNDUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJek5EVXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0OC1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprME9DMVhSVk5VUlZWU1QxQkZJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWlhWeWIzQmxJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -4008,22 +4002,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNDUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0OC1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11988" ], "x-ms-request-id": [ - "21eca633-1f0b-483e-8292-816bc7dcc518" + "253e9ae8-0182-45e2-8e1e-95ebc9ec2a8c" ], "x-ms-correlation-request-id": [ - "21eca633-1f0b-483e-8292-816bc7dcc518" + "253e9ae8-0182-45e2-8e1e-95ebc9ec2a8c" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052939Z:21eca633-1f0b-483e-8292-816bc7dcc518" + "WESTUS:20200924T061835Z:253e9ae8-0182-45e2-8e1e-95ebc9ec2a8c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4032,7 +4026,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:29:38 GMT" + "Thu, 24 Sep 2020 06:18:35 GMT" ], "Expires": [ "-1" @@ -4045,13 +4039,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNDUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJek5EVXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0OC1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprME9DMVhSVk5VUlZWU1QxQkZJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWlhWeWIzQmxJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -4065,22 +4059,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNDUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0OC1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11987" ], "x-ms-request-id": [ - "3c9ddc31-e774-400d-b805-3cd2a38baa49" + "8c92340f-7bed-4125-a5b0-1f5f99d0efa4" ], "x-ms-correlation-request-id": [ - "3c9ddc31-e774-400d-b805-3cd2a38baa49" + "8c92340f-7bed-4125-a5b0-1f5f99d0efa4" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T052954Z:3c9ddc31-e774-400d-b805-3cd2a38baa49" + "WESTUS:20200924T061850Z:8c92340f-7bed-4125-a5b0-1f5f99d0efa4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4089,7 +4083,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:29:53 GMT" + "Thu, 24 Sep 2020 06:18:50 GMT" ], "Expires": [ "-1" @@ -4102,13 +4096,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNDUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJek5EVXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0OC1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprME9DMVhSVk5VUlZWU1QxQkZJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWlhWeWIzQmxJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -4122,22 +4116,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNDUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0OC1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11986" ], "x-ms-request-id": [ - "5a65f2f3-510c-410d-8ffe-e75fd0204f22" + "ec2f09dc-0325-410b-89cb-10b5779ed045" ], "x-ms-correlation-request-id": [ - "5a65f2f3-510c-410d-8ffe-e75fd0204f22" + "ec2f09dc-0325-410b-89cb-10b5779ed045" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053009Z:5a65f2f3-510c-410d-8ffe-e75fd0204f22" + "WESTUS:20200924T061905Z:ec2f09dc-0325-410b-89cb-10b5779ed045" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4146,7 +4140,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:30:08 GMT" + "Thu, 24 Sep 2020 06:19:05 GMT" ], "Expires": [ "-1" @@ -4159,13 +4153,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNDUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJek5EVXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0OC1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprME9DMVhSVk5VUlZWU1QxQkZJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWlhWeWIzQmxJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -4179,22 +4173,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNDUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0OC1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11985" ], "x-ms-request-id": [ - "cc797d08-9f71-41a9-a65d-271596f76c9e" + "761ff52e-9b5c-41e2-9ec3-ef88400c685d" ], "x-ms-correlation-request-id": [ - "cc797d08-9f71-41a9-a65d-271596f76c9e" + "761ff52e-9b5c-41e2-9ec3-ef88400c685d" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053025Z:cc797d08-9f71-41a9-a65d-271596f76c9e" + "WESTUS:20200924T061921Z:761ff52e-9b5c-41e2-9ec3-ef88400c685d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4203,7 +4197,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:30:24 GMT" + "Thu, 24 Sep 2020 06:19:21 GMT" ], "Expires": [ "-1" @@ -4216,13 +4210,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNDUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJek5EVXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0OC1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprME9DMVhSVk5VUlZWU1QxQkZJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWlhWeWIzQmxJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -4236,22 +4230,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNDUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0OC1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11984" ], "x-ms-request-id": [ - "92691c3f-c4bd-4b8a-9d5d-6105b21adbd4" + "a63d9f3a-5bcb-4a54-8f93-d90c76727113" ], "x-ms-correlation-request-id": [ - "92691c3f-c4bd-4b8a-9d5d-6105b21adbd4" + "a63d9f3a-5bcb-4a54-8f93-d90c76727113" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053040Z:92691c3f-c4bd-4b8a-9d5d-6105b21adbd4" + "WESTUS:20200924T061936Z:a63d9f3a-5bcb-4a54-8f93-d90c76727113" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4260,7 +4254,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:30:40 GMT" + "Thu, 24 Sep 2020 06:19:36 GMT" ], "Expires": [ "-1" @@ -4273,13 +4267,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNDUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJek5EVXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0OC1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprME9DMVhSVk5VUlZWU1QxQkZJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWlhWeWIzQmxJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -4293,22 +4287,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNDUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0OC1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11983" ], "x-ms-request-id": [ - "926b705f-205c-426c-9390-792c1a4f1e5c" + "26c27f06-f324-442d-9f6e-87a4eb33373e" ], "x-ms-correlation-request-id": [ - "926b705f-205c-426c-9390-792c1a4f1e5c" + "26c27f06-f324-442d-9f6e-87a4eb33373e" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053055Z:926b705f-205c-426c-9390-792c1a4f1e5c" + "WESTUS:20200924T061951Z:26c27f06-f324-442d-9f6e-87a4eb33373e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4317,7 +4311,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:30:55 GMT" + "Thu, 24 Sep 2020 06:19:51 GMT" ], "Expires": [ "-1" @@ -4330,13 +4324,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNDUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJek5EVXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0OC1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprME9DMVhSVk5VUlZWU1QxQkZJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWlhWeWIzQmxJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -4349,17 +4343,80 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0OC1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11982" + ], + "x-ms-request-id": [ + "d80ff3fa-92aa-49fc-9a40-ca368ab7441d" + ], + "x-ms-correlation-request-id": [ + "d80ff3fa-92aa-49fc-9a40-ca368ab7441d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T062007Z:d80ff3fa-92aa-49fc-9a40-ca368ab7441d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 06:20:06 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0OC1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprME9DMVhSVk5VUlZWU1QxQkZJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWlhWeWIzQmxJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0OC1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" ], "x-ms-request-id": [ - "240472bf-c753-4158-93bb-1bf7ee00a6b5" + "c66f22d2-acbe-4709-bdcb-c22896c50eff" ], "x-ms-correlation-request-id": [ - "240472bf-c753-4158-93bb-1bf7ee00a6b5" + "c66f22d2-acbe-4709-bdcb-c22896c50eff" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053111Z:240472bf-c753-4158-93bb-1bf7ee00a6b5" + "WESTUS:20200924T062023Z:c66f22d2-acbe-4709-bdcb-c22896c50eff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4368,7 +4425,115 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:31:10 GMT" + "Thu, 24 Sep 2020 06:20:22 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0OC1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprME9DMVhSVk5VUlZWU1QxQkZJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWlhWeWIzQmxJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0OC1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-request-id": [ + "22b14c46-70c5-4729-875f-c33075281f87" + ], + "x-ms-correlation-request-id": [ + "22b14c46-70c5-4729-875f-c33075281f87" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T062038Z:22b14c46-70c5-4729-875f-c33075281f87" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 06:20:37 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0OC1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprME9DMVhSVk5VUlZWU1QxQkZJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWlhWeWIzQmxJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-request-id": [ + "90abc725-aaf0-4895-9e48-5388a9396d38" + ], + "x-ms-correlation-request-id": [ + "90abc725-aaf0-4895-9e48-5388a9396d38" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200924T062053Z:90abc725-aaf0-4895-9e48-5388a9396d38" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 24 Sep 2020 06:20:52 GMT" ], "Expires": [ "-1" @@ -4381,13 +4546,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIzNDUtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJek5EVXRWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0OC1XRVNURVVST1BFIiwiam9iTG9jYXRpb24iOiJ3ZXN0ZXVyb3BlIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprME9DMVhSVk5VUlZWU1QxQkZJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWlhWeWIzQmxJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -4401,16 +4566,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11978" ], "x-ms-request-id": [ - "4c9fdcb0-ea0a-48c2-bc94-4b5be5b0e1fc" + "1ab99768-e8a7-4ea2-8389-4e21ad1dd77f" ], "x-ms-correlation-request-id": [ - "4c9fdcb0-ea0a-48c2-bc94-4b5be5b0e1fc" + "1ab99768-e8a7-4ea2-8389-4e21ad1dd77f" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T053111Z:4c9fdcb0-ea0a-48c2-bc94-4b5be5b0e1fc" + "WESTUS:20200924T062054Z:1ab99768-e8a7-4ea2-8389-4e21ad1dd77f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4419,7 +4584,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 05:31:10 GMT" + "Thu, 24 Sep 2020 06:20:53 GMT" ], "Expires": [ "-1" @@ -4434,11 +4599,11 @@ ], "Names": { "Test-RemoveSecondaryDatabase": [ - "ps2283", - "ps212", - "ps4393", - "ps2345", - "ps4753" + "ps7305", + "ps5258", + "ps244", + "ps948", + "ps6041" ] }, "Variables": { diff --git a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ImportExportTests/TestExportDatabase.json b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ImportExportTests/TestExportDatabase.json index 9f5ae708376a..6d1ac18ae263 100644 --- a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ImportExportTests/TestExportDatabase.json +++ b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ImportExportTests/TestExportDatabase.json @@ -4,16 +4,16 @@ "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/sql-ie-cmdlet-test-rg90070?api-version=2016-09-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcwP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Australia East\"\r\n}", + "RequestBody": "{\r\n \"location\": \"West Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2794c993-889c-4284-a37d-de6df247ee65" + "268cf738-ebf8-4a45-adcd-42c0c27e37ab" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -22,7 +22,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "36" + "37" ] }, "ResponseHeaders": { @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "2c918a7b-0010-4ee4-bb06-bb37c4a93d74" + "fd7c91ee-7f39-413b-add5-713978034ab7" ], "x-ms-correlation-request-id": [ - "2c918a7b-0010-4ee4-bb06-bb37c4a93d74" + "fd7c91ee-7f39-413b-add5-713978034ab7" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T210240Z:2c918a7b-0010-4ee4-bb06-bb37c4a93d74" + "WESTUS:20200924T070615Z:fd7c91ee-7f39-413b-add5-713978034ab7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 21:02:39 GMT" + "Thu, 24 Sep 2020 07:06:14 GMT" ], "Content-Length": [ "212" @@ -63,7 +63,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/sql-ie-cmdlet-test-rg90070\",\r\n \"name\": \"sql-ie-cmdlet-test-rg90070\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/sql-ie-cmdlet-test-rg90070\",\r\n \"name\": \"sql-ie-cmdlet-test-rg90070\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { @@ -73,13 +73,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d278cd20-af51-46cd-bbb4-26ce1e3f0d16" + "530eb10f-299c-410c-b968-d200e87f5397" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "4c67d87c-d007-4acd-b124-0134e279f084" + "11bd6453-f72a-4f69-8fce-027f4805ce25" ], "x-ms-correlation-request-id": [ - "4c67d87c-d007-4acd-b124-0134e279f084" + "11bd6453-f72a-4f69-8fce-027f4805ce25" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T210241Z:4c67d87c-d007-4acd-b124-0134e279f084" + "WESTUS:20200924T070615Z:11bd6453-f72a-4f69-8fce-027f4805ce25" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 21:02:41 GMT" + "Thu, 24 Sep 2020 07:06:14 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -133,7 +133,7 @@ "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -147,19 +147,19 @@ "no-cache" ], "x-ms-request-id": [ - "afab8c83-84c3-47e9-a17d-43d121b08c6d" + "166174e5-2e12-44cb-afdc-637379b17cb6" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11990" ], "x-ms-correlation-request-id": [ - "63f9bce9-e089-41fc-a48c-f124b16d3c4c" + "217aaf74-904e-4826-bf3d-0a6e23ea2bdf" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T210334Z:63f9bce9-e089-41fc-a48c-f124b16d3c4c" + "WESTUS:20200924T070702Z:217aaf74-904e-4826-bf3d-0a6e23ea2bdf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -168,7 +168,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 21:03:34 GMT" + "Thu, 24 Sep 2020 07:07:01 GMT" ], "Content-Length": [ "488" @@ -180,7 +180,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testuser\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"sql-ie-cmdlet-server90070.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"australiaeast\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/servers/sql-ie-cmdlet-server90070\",\r\n \"name\": \"sql-ie-cmdlet-server90070\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testuser\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"sql-ie-cmdlet-server90070.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/servers/sql-ie-cmdlet-server90070\",\r\n \"name\": \"sql-ie-cmdlet-server90070\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { @@ -190,13 +190,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9470ac68-7572-47c4-9fe2-b2a4e5c2d753" + "1baa759f-9f37-411f-9b6e-34d2f3167b71" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -210,19 +210,19 @@ "no-cache" ], "x-ms-request-id": [ - "2101f960-8bb9-4158-a549-89ef6166cbcd" + "ca7d6142-c6a4-4000-bd9b-08fb02944058" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11989" ], "x-ms-correlation-request-id": [ - "4c2d3a37-32d8-4c3b-886d-0d3fb23b1e49" + "40e6de2f-12fd-4327-b7d2-2ef88817b7c5" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T210335Z:4c2d3a37-32d8-4c3b-886d-0d3fb23b1e49" + "WESTUS:20200924T070702Z:40e6de2f-12fd-4327-b7d2-2ef88817b7c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -231,7 +231,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 21:03:34 GMT" + "Thu, 24 Sep 2020 07:07:01 GMT" ], "Content-Length": [ "488" @@ -243,7 +243,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testuser\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"sql-ie-cmdlet-server90070.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"australiaeast\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/servers/sql-ie-cmdlet-server90070\",\r\n \"name\": \"sql-ie-cmdlet-server90070\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testuser\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"sql-ie-cmdlet-server90070.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/servers/sql-ie-cmdlet-server90070\",\r\n \"name\": \"sql-ie-cmdlet-server90070\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { @@ -253,13 +253,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "91205a25-4be3-4962-98f1-d99163fd13cf" + "6ab0e2dc-b44b-42a3-aded-168f26b709e3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -273,19 +273,19 @@ "no-cache" ], "x-ms-request-id": [ - "35233460-1ef2-46ea-9cd8-d20013607db2" + "ac592f30-27e4-4f13-887c-19811636be89" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11987" ], "x-ms-correlation-request-id": [ - "914e8f4f-c1bc-4788-9515-934acefe8050" + "c112616f-6a5d-44ac-b397-7b65a8ddb688" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T210335Z:914e8f4f-c1bc-4788-9515-934acefe8050" + "WESTUS:20200924T070702Z:c112616f-6a5d-44ac-b397-7b65a8ddb688" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -294,7 +294,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 21:03:34 GMT" + "Thu, 24 Sep 2020 07:07:01 GMT" ], "Content-Length": [ "488" @@ -306,23 +306,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testuser\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"sql-ie-cmdlet-server90070.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"australiaeast\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/servers/sql-ie-cmdlet-server90070\",\r\n \"name\": \"sql-ie-cmdlet-server90070\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testuser\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"sql-ie-cmdlet-server90070.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/servers/sql-ie-cmdlet-server90070\",\r\n \"name\": \"sql-ie-cmdlet-server90070\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/servers/sql-ie-cmdlet-server90070?api-version=2019-06-01-preview", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWllLWNtZGxldC1zZXJ2ZXI5MDA3MD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"administratorLogin\": \"testuser\",\r\n \"administratorLoginPassword\": \"IEp@ssw0rd3399\",\r\n \"version\": \"12.0\"\r\n },\r\n \"location\": \"Australia East\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"administratorLogin\": \"testuser\",\r\n \"administratorLoginPassword\": \"IEp@ssw0rd3375\",\r\n \"version\": \"12.0\"\r\n },\r\n \"location\": \"West Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6f7b97c7-e64b-4e68-9d8c-d6ffbc85cb0d" + "e2c84fad-3b28-43fa-b0fa-5a09b92697f5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -331,7 +331,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "176" + "177" ] }, "ResponseHeaders": { @@ -342,16 +342,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/locations/australiaeast/serverOperationResults/4e00c631-ea62-48d2-bd83-4cfabfed4a46?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/locations/westcentralus/serverOperationResults/75503c9e-eb14-4686-950e-248c25171dff?api-version=2019-06-01-preview" ], "Retry-After": [ "1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/locations/australiaeast/serverAzureAsyncOperation/4e00c631-ea62-48d2-bd83-4cfabfed4a46?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/75503c9e-eb14-4686-950e-248c25171dff?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "4e00c631-ea62-48d2-bd83-4cfabfed4a46" + "75503c9e-eb14-4686-950e-248c25171dff" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -360,10 +360,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "ced45c52-e0a0-4a22-805c-551020b37ce8" + "6d89228c-307c-4fee-8023-6ce525dac292" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T210248Z:ced45c52-e0a0-4a22-805c-551020b37ce8" + "WESTUS:20200924T070616Z:6d89228c-307c-4fee-8023-6ce525dac292" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -372,7 +372,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 21:02:47 GMT" + "Thu, 24 Sep 2020 07:06:16 GMT" ], "Content-Length": [ "74" @@ -384,17 +384,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-14T21:02:47.973Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-24T07:06:16.563Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/locations/australiaeast/serverAzureAsyncOperation/4e00c631-ea62-48d2-bd83-4cfabfed4a46?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9hdXN0cmFsaWFlYXN0L3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vNGUwMGM2MzEtZWE2Mi00OGQyLWJkODMtNGNmYWJmZWQ0YTQ2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/75503c9e-eb14-4686-950e-248c25171dff?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vNzU1MDNjOWUtZWIxNC00Njg2LTk1MGUtMjQ4YzI1MTcxZGZmP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -411,19 +411,19 @@ "1" ], "x-ms-request-id": [ - "77b9c5a7-fbed-4aa9-9004-0464db1cd97f" + "ebf9526f-1c1e-41c8-9dde-94d1cc558295" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-correlation-request-id": [ - "be68b833-f5b5-46d5-98c5-cd90bfcfdfef" + "b978079b-d77d-4b34-9f17-a4e638bdded2" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T210249Z:be68b833-f5b5-46d5-98c5-cd90bfcfdfef" + "WESTUS:20200924T070617Z:b978079b-d77d-4b34-9f17-a4e638bdded2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,7 +432,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 21:02:48 GMT" + "Thu, 24 Sep 2020 07:06:17 GMT" ], "Content-Length": [ "108" @@ -444,17 +444,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"4e00c631-ea62-48d2-bd83-4cfabfed4a46\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T21:02:47.973Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"75503c9e-eb14-4686-950e-248c25171dff\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T07:06:16.563Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/locations/australiaeast/serverAzureAsyncOperation/4e00c631-ea62-48d2-bd83-4cfabfed4a46?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9hdXN0cmFsaWFlYXN0L3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vNGUwMGM2MzEtZWE2Mi00OGQyLWJkODMtNGNmYWJmZWQ0YTQ2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/75503c9e-eb14-4686-950e-248c25171dff?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vNzU1MDNjOWUtZWIxNC00Njg2LTk1MGUtMjQ4YzI1MTcxZGZmP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -471,19 +471,19 @@ "1" ], "x-ms-request-id": [ - "f4414608-8ea0-4e58-a2be-05c15b1102ba" + "27b6d588-dc0c-498e-8c30-cb9b5e94b013" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-correlation-request-id": [ - "5b6d5578-39a4-4169-98a6-22f3bd5f80b4" + "4ad2ec5f-2662-4f75-964a-8bf01dcb1f4e" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T210250Z:5b6d5578-39a4-4169-98a6-22f3bd5f80b4" + "WESTUS:20200924T070618Z:4ad2ec5f-2662-4f75-964a-8bf01dcb1f4e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -492,7 +492,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 21:02:50 GMT" + "Thu, 24 Sep 2020 07:06:18 GMT" ], "Content-Length": [ "108" @@ -504,17 +504,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"4e00c631-ea62-48d2-bd83-4cfabfed4a46\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T21:02:47.973Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"75503c9e-eb14-4686-950e-248c25171dff\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T07:06:16.563Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/locations/australiaeast/serverAzureAsyncOperation/4e00c631-ea62-48d2-bd83-4cfabfed4a46?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9hdXN0cmFsaWFlYXN0L3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vNGUwMGM2MzEtZWE2Mi00OGQyLWJkODMtNGNmYWJmZWQ0YTQ2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/75503c9e-eb14-4686-950e-248c25171dff?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vNzU1MDNjOWUtZWIxNC00Njg2LTk1MGUtMjQ4YzI1MTcxZGZmP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -531,19 +531,19 @@ "1" ], "x-ms-request-id": [ - "e1a3ac73-72eb-428c-a794-dfe2d971a705" + "ed3e6a11-41a0-4fb7-8a6f-7951f3cef53c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-correlation-request-id": [ - "c46412d0-00d7-43f1-8051-7c75df0a66d8" + "8aee4bbc-f787-4e65-aa9b-634db30d55bc" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T210251Z:c46412d0-00d7-43f1-8051-7c75df0a66d8" + "WESTUS:20200924T070619Z:8aee4bbc-f787-4e65-aa9b-634db30d55bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -552,7 +552,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 21:02:51 GMT" + "Thu, 24 Sep 2020 07:06:19 GMT" ], "Content-Length": [ "108" @@ -564,17 +564,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"4e00c631-ea62-48d2-bd83-4cfabfed4a46\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T21:02:47.973Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"75503c9e-eb14-4686-950e-248c25171dff\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T07:06:16.563Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/locations/australiaeast/serverAzureAsyncOperation/4e00c631-ea62-48d2-bd83-4cfabfed4a46?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9hdXN0cmFsaWFlYXN0L3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vNGUwMGM2MzEtZWE2Mi00OGQyLWJkODMtNGNmYWJmZWQ0YTQ2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/75503c9e-eb14-4686-950e-248c25171dff?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vNzU1MDNjOWUtZWIxNC00Njg2LTk1MGUtMjQ4YzI1MTcxZGZmP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -591,19 +591,19 @@ "1" ], "x-ms-request-id": [ - "e7e50c58-b341-48bd-93ec-70c9361b9f66" + "ccc62753-f3e1-4345-9b2f-02f1d066e42d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-correlation-request-id": [ - "88edb3fe-8859-4f2a-98e5-fb8dd83a9e70" + "9c979461-9c53-48df-a8fa-5737fa695d8d" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T210253Z:88edb3fe-8859-4f2a-98e5-fb8dd83a9e70" + "WESTUS:20200924T070621Z:9c979461-9c53-48df-a8fa-5737fa695d8d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -612,7 +612,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 21:02:52 GMT" + "Thu, 24 Sep 2020 07:06:20 GMT" ], "Content-Length": [ "108" @@ -624,17 +624,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"4e00c631-ea62-48d2-bd83-4cfabfed4a46\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T21:02:47.973Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"75503c9e-eb14-4686-950e-248c25171dff\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T07:06:16.563Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/locations/australiaeast/serverAzureAsyncOperation/4e00c631-ea62-48d2-bd83-4cfabfed4a46?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9hdXN0cmFsaWFlYXN0L3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vNGUwMGM2MzEtZWE2Mi00OGQyLWJkODMtNGNmYWJmZWQ0YTQ2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/75503c9e-eb14-4686-950e-248c25171dff?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vNzU1MDNjOWUtZWIxNC00Njg2LTk1MGUtMjQ4YzI1MTcxZGZmP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -651,19 +651,19 @@ "20" ], "x-ms-request-id": [ - "13b22a01-6377-4903-bdca-f948ebe6106d" + "70a14cfb-b8b7-4b97-85a6-8f98aede0ea9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11993" ], "x-ms-correlation-request-id": [ - "3a897748-2f93-45b2-b172-f39ed25ddfdc" + "7002673b-5d4f-4b19-9cb8-15b5cb04c8ca" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T210254Z:3a897748-2f93-45b2-b172-f39ed25ddfdc" + "WESTUS:20200924T070622Z:7002673b-5d4f-4b19-9cb8-15b5cb04c8ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -672,7 +672,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 21:02:53 GMT" + "Thu, 24 Sep 2020 07:06:21 GMT" ], "Content-Length": [ "108" @@ -684,17 +684,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"4e00c631-ea62-48d2-bd83-4cfabfed4a46\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T21:02:47.973Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"75503c9e-eb14-4686-950e-248c25171dff\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T07:06:16.563Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/locations/australiaeast/serverAzureAsyncOperation/4e00c631-ea62-48d2-bd83-4cfabfed4a46?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9hdXN0cmFsaWFlYXN0L3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vNGUwMGM2MzEtZWE2Mi00OGQyLWJkODMtNGNmYWJmZWQ0YTQ2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/75503c9e-eb14-4686-950e-248c25171dff?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vNzU1MDNjOWUtZWIxNC00Njg2LTk1MGUtMjQ4YzI1MTcxZGZmP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -711,19 +711,19 @@ "20" ], "x-ms-request-id": [ - "0d9b8a9e-84d5-485c-9b33-4fa39ad4e197" + "9fd8a29e-03f2-45e0-b588-32a72b148e7a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11992" ], "x-ms-correlation-request-id": [ - "f67a5405-e7cf-49ac-9440-2f8f89fedc6f" + "86833d5e-ab04-48d6-8b0a-c2838f857bac" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T210314Z:f67a5405-e7cf-49ac-9440-2f8f89fedc6f" + "WESTUS:20200924T070642Z:86833d5e-ab04-48d6-8b0a-c2838f857bac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -732,7 +732,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 21:03:13 GMT" + "Thu, 24 Sep 2020 07:06:41 GMT" ], "Content-Length": [ "108" @@ -744,17 +744,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"4e00c631-ea62-48d2-bd83-4cfabfed4a46\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T21:02:47.973Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"75503c9e-eb14-4686-950e-248c25171dff\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T07:06:16.563Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/locations/australiaeast/serverAzureAsyncOperation/4e00c631-ea62-48d2-bd83-4cfabfed4a46?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9hdXN0cmFsaWFlYXN0L3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vNGUwMGM2MzEtZWE2Mi00OGQyLWJkODMtNGNmYWJmZWQ0YTQ2P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/75503c9e-eb14-4686-950e-248c25171dff?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vNzU1MDNjOWUtZWIxNC00Njg2LTk1MGUtMjQ4YzI1MTcxZGZmP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -771,19 +771,19 @@ "15" ], "x-ms-request-id": [ - "93dcadc7-1666-4a5c-9a28-aa4749c9da49" + "18185de5-bb52-407c-9ccb-ca35400940a4" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11991" ], "x-ms-correlation-request-id": [ - "6b9c1493-2368-498f-bc24-f64203794c06" + "a4f5830a-3ac3-4ff8-8277-626f303d70e4" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T210334Z:6b9c1493-2368-498f-bc24-f64203794c06" + "WESTUS:20200924T070702Z:a4f5830a-3ac3-4ff8-8277-626f303d70e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -792,7 +792,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 21:03:33 GMT" + "Thu, 24 Sep 2020 07:07:01 GMT" ], "Content-Length": [ "107" @@ -804,7 +804,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"4e00c631-ea62-48d2-bd83-4cfabfed4a46\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-14T21:02:47.973Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"75503c9e-eb14-4686-950e-248c25171dff\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-24T07:06:16.563Z\"\r\n}", "StatusCode": 200 }, { @@ -814,13 +814,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c84de764-7a63-47ce-aa61-9bc68c371a33" + "7c73ab59-6344-4ed1-9c2f-3efb88f78725" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -837,13 +837,13 @@ "gateway" ], "x-ms-request-id": [ - "d5fde25b-3ddd-483a-a80a-85ea179c8794" + "e7363e8a-4e22-41f4-81f3-99900db52317" ], "x-ms-correlation-request-id": [ - "d5fde25b-3ddd-483a-a80a-85ea179c8794" + "e7363e8a-4e22-41f4-81f3-99900db52317" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T210335Z:d5fde25b-3ddd-483a-a80a-85ea179c8794" + "WESTUS:20200924T070702Z:e7363e8a-4e22-41f4-81f3-99900db52317" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -852,7 +852,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 21:03:34 GMT" + "Thu, 24 Sep 2020 07:07:01 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -874,7 +874,7 @@ "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -888,19 +888,19 @@ "no-cache" ], "x-ms-request-id": [ - "ff5bee3d-6305-4683-ac78-b96d1b14d365" + "64fcd734-6a06-4c39-bea4-508008555d7d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11983" ], "x-ms-correlation-request-id": [ - "1641cc69-7717-4583-9d96-30dd0d51b3b2" + "94002469-cdac-41a5-b040-78f9f6c23362" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T210425Z:1641cc69-7717-4583-9d96-30dd0d51b3b2" + "WESTUS:20200924T070748Z:94002469-cdac-41a5-b040-78f9f6c23362" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -909,10 +909,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 21:04:25 GMT" + "Thu, 24 Sep 2020 07:07:48 GMT" ], "Content-Length": [ - "1061" + "1054" ], "Content-Type": [ "application/json; charset=utf-8" @@ -921,23 +921,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"267879c1-9167-46ac-bd3c-49d9086b5381\",\r\n \"creationDate\": \"2020-09-14T21:04:11.6Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"australiasoutheast\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 10307502080,\r\n \"earliestRestoreDate\": \"2020-09-14T21:34:11.6Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"australiaeast\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/servers/sql-ie-cmdlet-server90070/databases/sql-ie-cmdlet-db90070\",\r\n \"name\": \"sql-ie-cmdlet-db90070\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"95b41c31-9d6a-4b35-8fda-2bc3ad9da7bb\",\r\n \"creationDate\": \"2020-09-24T07:07:38.517Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 10307502080,\r\n \"earliestRestoreDate\": \"2020-09-24T07:37:38.517Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/servers/sql-ie-cmdlet-server90070/databases/sql-ie-cmdlet-db90070\",\r\n \"name\": \"sql-ie-cmdlet-db90070\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/servers/sql-ie-cmdlet-server90070/databases/sql-ie-cmdlet-db90070?api-version=2019-06-01-preview", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWllLWNtZGxldC1zZXJ2ZXI5MDA3MC9kYXRhYmFzZXMvc3FsLWllLWNtZGxldC1kYjkwMDcwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": 0,\r\n \"readScale\": \"\"\r\n },\r\n \"location\": \"australiaeast\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": 0,\r\n \"readScale\": \"\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fefed55e-ceed-4f58-9994-fd3039415a8b" + "4f0fa589-0940-46aa-961b-c1e754c7c08e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -957,16 +957,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/locations/australiaeast/databaseOperationResults/3bfc389e-7227-48b4-a5bd-f33685c9a663?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/locations/westcentralus/databaseOperationResults/f0514ffa-f0d0-4f3f-ba29-db328065bcb1?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/locations/australiaeast/databaseAzureAsyncOperation/3bfc389e-7227-48b4-a5bd-f33685c9a663?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/f0514ffa-f0d0-4f3f-ba29-db328065bcb1?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "3bfc389e-7227-48b4-a5bd-f33685c9a663" + "f0514ffa-f0d0-4f3f-ba29-db328065bcb1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -975,10 +975,10 @@ "1198" ], "x-ms-correlation-request-id": [ - "e4faa5df-7f7c-4803-8860-48c86a75ff47" + "12a9e9d9-1a8d-4cc4-a28a-e727563cef9f" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T210339Z:e4faa5df-7f7c-4803-8860-48c86a75ff47" + "WESTUS:20200924T070703Z:12a9e9d9-1a8d-4cc4-a28a-e727563cef9f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -987,7 +987,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 21:03:39 GMT" + "Thu, 24 Sep 2020 07:07:02 GMT" ], "Content-Length": [ "76" @@ -999,17 +999,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2020-09-14T21:03:39.773Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2020-09-24T07:07:03.377Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/locations/australiaeast/databaseAzureAsyncOperation/3bfc389e-7227-48b4-a5bd-f33685c9a663?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9hdXN0cmFsaWFlYXN0L2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8zYmZjMzg5ZS03MjI3LTQ4YjQtYTViZC1mMzM2ODVjOWE2NjM/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/f0514ffa-f0d0-4f3f-ba29-db328065bcb1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9mMDUxNGZmYS1mMGQwLTRmM2YtYmEyOS1kYjMyODA2NWJjYjE/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1026,19 +1026,19 @@ "15" ], "x-ms-request-id": [ - "d3629141-08c1-40d0-afc1-52b04dfd19bf" + "ca88463a-f560-4cef-85ed-d050c7cd6396" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11986" ], "x-ms-correlation-request-id": [ - "972490da-415b-42f8-822c-045df01d7d6f" + "d5f131db-6bde-4339-8d95-be7e86bac92a" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T210355Z:972490da-415b-42f8-822c-045df01d7d6f" + "WESTUS:20200924T070718Z:d5f131db-6bde-4339-8d95-be7e86bac92a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1047,7 +1047,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 21:03:54 GMT" + "Thu, 24 Sep 2020 07:07:18 GMT" ], "Content-Length": [ "108" @@ -1059,17 +1059,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"3bfc389e-7227-48b4-a5bd-f33685c9a663\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T21:03:39.773Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"f0514ffa-f0d0-4f3f-ba29-db328065bcb1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T07:07:03.377Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/locations/australiaeast/databaseAzureAsyncOperation/3bfc389e-7227-48b4-a5bd-f33685c9a663?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9hdXN0cmFsaWFlYXN0L2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8zYmZjMzg5ZS03MjI3LTQ4YjQtYTViZC1mMzM2ODVjOWE2NjM/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/f0514ffa-f0d0-4f3f-ba29-db328065bcb1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9mMDUxNGZmYS1mMGQwLTRmM2YtYmEyOS1kYjMyODA2NWJjYjE/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1086,19 +1086,19 @@ "15" ], "x-ms-request-id": [ - "bd792748-de4d-4e90-8dba-9c5c51c3b1b2" + "17806761-8f9c-4b31-9aed-e84ea8ec28c8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11985" ], "x-ms-correlation-request-id": [ - "88f3ba14-0958-4cd1-8b0d-1c1eb3842b78" + "8924a2eb-978a-4356-a020-9f71576d3791" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T210410Z:88f3ba14-0958-4cd1-8b0d-1c1eb3842b78" + "WESTUS:20200924T070733Z:8924a2eb-978a-4356-a020-9f71576d3791" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1107,7 +1107,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 21:04:09 GMT" + "Thu, 24 Sep 2020 07:07:33 GMT" ], "Content-Length": [ "108" @@ -1119,17 +1119,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"3bfc389e-7227-48b4-a5bd-f33685c9a663\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T21:03:39.773Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"f0514ffa-f0d0-4f3f-ba29-db328065bcb1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-24T07:07:03.377Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/locations/australiaeast/databaseAzureAsyncOperation/3bfc389e-7227-48b4-a5bd-f33685c9a663?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9hdXN0cmFsaWFlYXN0L2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi8zYmZjMzg5ZS03MjI3LTQ4YjQtYTViZC1mMzM2ODVjOWE2NjM/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/f0514ffa-f0d0-4f3f-ba29-db328065bcb1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9mMDUxNGZmYS1mMGQwLTRmM2YtYmEyOS1kYjMyODA2NWJjYjE/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1146,19 +1146,19 @@ "15" ], "x-ms-request-id": [ - "c3944d34-1e27-44c2-a9ce-afe7334d8a15" + "3f1f7f2f-24fb-4ee0-8d60-009d399f25b1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11984" ], "x-ms-correlation-request-id": [ - "85c4e729-b24d-4fd6-8e4d-637dde3b2dc9" + "ee1385fa-9db3-4a0e-ab62-fd0b74f4e789" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T210425Z:85c4e729-b24d-4fd6-8e4d-637dde3b2dc9" + "WESTUS:20200924T070748Z:ee1385fa-9db3-4a0e-ab62-fd0b74f4e789" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1167,7 +1167,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 21:04:25 GMT" + "Thu, 24 Sep 2020 07:07:48 GMT" ], "Content-Length": [ "107" @@ -1179,7 +1179,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"3bfc389e-7227-48b4-a5bd-f33685c9a663\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-14T21:03:39.773Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"f0514ffa-f0d0-4f3f-ba29-db328065bcb1\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-24T07:07:03.377Z\"\r\n}", "StatusCode": 200 }, { @@ -1189,7 +1189,7 @@ "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ] }, "ResponseHeaders": { @@ -1197,7 +1197,7 @@ "no-store, no-cache" ], "x-ms-request-id": [ - "cecf15d7-a277-4f82-935f-09e48ef61859" + "0b7b4ba4-1eb7-441c-b45f-a705196b45d9" ], "X-Content-Type-Options": [ "nosniff" @@ -1215,13 +1215,13 @@ "11999" ], "x-ms-correlation-request-id": [ - "c2082df1-3bd4-4178-8e13-164f5c6f1fd2" + "01c9ed50-4e10-481a-9765-d42e081fa7c7" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T210426Z:c2082df1-3bd4-4178-8e13-164f5c6f1fd2" + "WESTUS:20200924T070749Z:01c9ed50-4e10-481a-9765-d42e081fa7c7" ], "Date": [ - "Mon, 14 Sep 2020 21:04:26 GMT" + "Thu, 24 Sep 2020 07:07:49 GMT" ], "Content-Length": [ "136" @@ -1240,7 +1240,7 @@ "RequestBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.0\",\r\n \"endIpAddress\": \"0.0.0.0\"\r\n }\r\n}", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1254,7 +1254,7 @@ "no-store, no-cache" ], "x-ms-request-id": [ - "3ca760dd-61d9-4cc6-86bc-61d1db8d5f4d" + "fa5905ce-ba2e-4552-a553-cb77faf933c1" ], "X-Content-Type-Options": [ "nosniff" @@ -1275,38 +1275,38 @@ "1199" ], "x-ms-correlation-request-id": [ - "686c68c1-227a-404c-8fc2-6e6800967d14" + "d4144798-6606-4e7f-8dff-7cc0e9c5dae9" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T210427Z:686c68c1-227a-404c-8fc2-6e6800967d14" + "WESTUS:20200924T070749Z:d4144798-6606-4e7f-8dff-7cc0e9c5dae9" ], "Date": [ - "Mon, 14 Sep 2020 21:04:27 GMT" + "Thu, 24 Sep 2020 07:07:49 GMT" ], "Content-Length": [ - "372" + "373" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/servers/sql-ie-cmdlet-server90070/firewallRules/AllowAllAzureIPs\",\r\n \"name\": \"AllowAllAzureIPs\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.0\",\r\n \"endIpAddress\": \"0.0.0.0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/servers/sql-ie-cmdlet-server90070/firewallRules/AllowAllAzureIPs\",\r\n \"name\": \"AllowAllAzureIPs\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"West Central US\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.0\",\r\n \"endIpAddress\": \"0.0.0.0\"\r\n }\r\n}", "StatusCode": 201 }, { "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/servers/sql-ie-cmdlet-server90070/databases/sql-ie-cmdlet-db90070/export?api-version=2020-02-02-preview", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWllLWNtZGxldC1zZXJ2ZXI5MDA3MC9kYXRhYmFzZXMvc3FsLWllLWNtZGxldC1kYjkwMDcwL2V4cG9ydD9hcGktdmVyc2lvbj0yMDIwLTAyLTAyLXByZXZpZXc=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"storageKeyType\": \"StorageAccessKey\",\r\n \"storageKey\": \"TD9DT+CX6luvLa84Kt4LV8ymlrmAenlicPWIZReC9WKUViFV4x77V+h5dBPR9szZUhtHJ1VWjQcPOk+HiVbKuA==\",\r\n \"storageUri\": \"https://brandongtestwcus.blob.core.windows.net/importexport/pstest/sql-ie-cmdlet-db90070.bacpac\",\r\n \"administratorLogin\": \"testuser\",\r\n \"administratorLoginPassword\": \"IEp@ssw0rd3399\",\r\n \"authenticationType\": \"sql\"\r\n}", + "RequestBody": "{\r\n \"storageKeyType\": \"StorageAccessKey\",\r\n \"storageKey\": \"TD9DT+CX6luvLa84Kt4LV8ymlrmAenlicPWIZReC9WKUViFV4x77V+h5dBPR9szZUhtHJ1VWjQcPOk+HiVbKuA==\",\r\n \"storageUri\": \"https://brandongtestwcus.blob.core.windows.net/importexport/pstest/sql-ie-cmdlet-db90070.bacpac\",\r\n \"administratorLogin\": \"testuser\",\r\n \"administratorLoginPassword\": \"IEp@ssw0rd3375\",\r\n \"authenticationType\": \"sql\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d17e0d5b-f87d-4f1b-82cc-e56e001e9acf" + "6d637f96-4d6e-4add-ad76-0897fdb7e6df" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1326,16 +1326,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/providers/Microsoft.Sql/locations/australiaeast/importExportOperationResults/b588d9dd-2012-498b-a9fc-465bbacf805e-sql-ie-cmdlet-server90070?api-version=2020-02-02-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/providers/Microsoft.Sql/locations/westcentralus/importExportOperationResults/d2421bf1-cdaa-4510-8a0a-83d2cc4e9f76-sql-ie-cmdlet-server90070?api-version=2020-02-02-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/providers/Microsoft.Sql/locations/australiaeast/importExportAzureAsyncOperation/b588d9dd-2012-498b-a9fc-465bbacf805e-sql-ie-cmdlet-server90070?api-version=2020-02-02-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/providers/Microsoft.Sql/locations/westcentralus/importExportAzureAsyncOperation/d2421bf1-cdaa-4510-8a0a-83d2cc4e9f76-sql-ie-cmdlet-server90070?api-version=2020-02-02-preview" ], "x-ms-request-id": [ - "03fc42cb-4dcf-42d0-8f1e-e0347642d69a" + "1108b564-79ce-444b-83d6-affd23125825" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1344,10 +1344,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "69a1c2ad-b97e-4e8a-bb36-a0880992ed6e" + "0fec6e05-8aef-4b64-90a6-d0fffd311af0" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T210429Z:69a1c2ad-b97e-4e8a-bb36-a0880992ed6e" + "WESTUS:20200924T070751Z:0fec6e05-8aef-4b64-90a6-d0fffd311af0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1356,7 +1356,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 21:04:29 GMT" + "Thu, 24 Sep 2020 07:07:50 GMT" ], "Content-Length": [ "64" @@ -1368,7 +1368,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"Export\",\r\n \"startTime\": \"2020-09-14T21:04:29.777658Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"Export\",\r\n \"startTime\": \"2020-09-24T07:07:50.985381Z\"\r\n}", "StatusCode": 202 }, { @@ -1378,13 +1378,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aa6efaf6-e15b-4820-a2bd-3cfec4052b0f" + "f6761910-e0e8-4f5e-bf72-774f7c035930" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -1398,22 +1398,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRJRToyRENNRExFVDoyRFRFU1Q6MkRSRzkwMDcwLUFVU1RSQUxJQUVBU1QiLCJqb2JMb2NhdGlvbiI6ImF1c3RyYWxpYWVhc3QifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRJRToyRENNRExFVDoyRFRFU1Q6MkRSRzkwMDcwLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14997" ], "x-ms-request-id": [ - "14d1f428-bba5-4f4c-ae21-c1daf3d34702" + "a96053cf-ed7d-4168-912e-c7a933b38777" ], "x-ms-correlation-request-id": [ - "14d1f428-bba5-4f4c-ae21-c1daf3d34702" + "a96053cf-ed7d-4168-912e-c7a933b38777" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T210437Z:14d1f428-bba5-4f4c-ae21-c1daf3d34702" + "WESTUS:20200924T070754Z:a96053cf-ed7d-4168-912e-c7a933b38777" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1422,7 +1422,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 21:04:37 GMT" + "Thu, 24 Sep 2020 07:07:54 GMT" ], "Expires": [ "-1" @@ -1435,13 +1435,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRJRToyRENNRExFVDoyRFRFU1Q6MkRSRzkwMDcwLUFVU1RSQUxJQUVBU1QiLCJqb2JMb2NhdGlvbiI6ImF1c3RyYWxpYWVhc3QifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUkpSVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUnprd01EY3dMVUZWVTFSU1FVeEpRVVZCVTFRaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1GMWMzUnlZV3hwWVdWaGMzUWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRJRToyRENNRExFVDoyRFRFU1Q6MkRSRzkwMDcwLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUkpSVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUnprd01EY3dMVmRGVTFSRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -1455,22 +1455,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRJRToyRENNRExFVDoyRFRFU1Q6MkRSRzkwMDcwLUFVU1RSQUxJQUVBU1QiLCJqb2JMb2NhdGlvbiI6ImF1c3RyYWxpYWVhc3QifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRJRToyRENNRExFVDoyRFRFU1Q6MkRSRzkwMDcwLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11977" ], "x-ms-request-id": [ - "4e86115d-5ae2-421d-8611-16888e5deadf" + "fa0d3603-fef5-40f3-9ed0-ae4380bab5a5" ], "x-ms-correlation-request-id": [ - "4e86115d-5ae2-421d-8611-16888e5deadf" + "fa0d3603-fef5-40f3-9ed0-ae4380bab5a5" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T210452Z:4e86115d-5ae2-421d-8611-16888e5deadf" + "WESTUS:20200924T070810Z:fa0d3603-fef5-40f3-9ed0-ae4380bab5a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1479,7 +1479,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 21:04:52 GMT" + "Thu, 24 Sep 2020 07:08:09 GMT" ], "Expires": [ "-1" @@ -1492,13 +1492,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRJRToyRENNRExFVDoyRFRFU1Q6MkRSRzkwMDcwLUFVU1RSQUxJQUVBU1QiLCJqb2JMb2NhdGlvbiI6ImF1c3RyYWxpYWVhc3QifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUkpSVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUnprd01EY3dMVUZWVTFSU1FVeEpRVVZCVTFRaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1GMWMzUnlZV3hwWVdWaGMzUWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRJRToyRENNRExFVDoyRFRFU1Q6MkRSRzkwMDcwLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUkpSVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUnprd01EY3dMVmRGVTFSRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -1512,22 +1512,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRJRToyRENNRExFVDoyRFRFU1Q6MkRSRzkwMDcwLUFVU1RSQUxJQUVBU1QiLCJqb2JMb2NhdGlvbiI6ImF1c3RyYWxpYWVhc3QifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRJRToyRENNRExFVDoyRFRFU1Q6MkRSRzkwMDcwLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11976" ], "x-ms-request-id": [ - "2f3b6f2a-1a06-46c3-b8ac-c72e716867b2" + "bba4fad3-c4b6-4797-8385-6fe660233b93" ], "x-ms-correlation-request-id": [ - "2f3b6f2a-1a06-46c3-b8ac-c72e716867b2" + "bba4fad3-c4b6-4797-8385-6fe660233b93" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T210508Z:2f3b6f2a-1a06-46c3-b8ac-c72e716867b2" + "WESTUS:20200924T070825Z:bba4fad3-c4b6-4797-8385-6fe660233b93" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1536,7 +1536,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 21:05:07 GMT" + "Thu, 24 Sep 2020 07:08:25 GMT" ], "Expires": [ "-1" @@ -1549,13 +1549,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRJRToyRENNRExFVDoyRFRFU1Q6MkRSRzkwMDcwLUFVU1RSQUxJQUVBU1QiLCJqb2JMb2NhdGlvbiI6ImF1c3RyYWxpYWVhc3QifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUkpSVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUnprd01EY3dMVUZWVTFSU1FVeEpRVVZCVTFRaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1GMWMzUnlZV3hwWVdWaGMzUWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRJRToyRENNRExFVDoyRFRFU1Q6MkRSRzkwMDcwLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUkpSVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUnprd01EY3dMVmRGVTFSRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -1569,22 +1569,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRJRToyRENNRExFVDoyRFRFU1Q6MkRSRzkwMDcwLUFVU1RSQUxJQUVBU1QiLCJqb2JMb2NhdGlvbiI6ImF1c3RyYWxpYWVhc3QifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRJRToyRENNRExFVDoyRFRFU1Q6MkRSRzkwMDcwLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11975" ], "x-ms-request-id": [ - "11c3c8f4-5439-4e72-9bf6-37455da1271f" + "3afece73-ad91-4921-aa7e-fbed6a813d30" ], "x-ms-correlation-request-id": [ - "11c3c8f4-5439-4e72-9bf6-37455da1271f" + "3afece73-ad91-4921-aa7e-fbed6a813d30" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T210523Z:11c3c8f4-5439-4e72-9bf6-37455da1271f" + "WESTUS:20200924T070840Z:3afece73-ad91-4921-aa7e-fbed6a813d30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1593,7 +1593,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 21:05:22 GMT" + "Thu, 24 Sep 2020 07:08:40 GMT" ], "Expires": [ "-1" @@ -1606,13 +1606,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRJRToyRENNRExFVDoyRFRFU1Q6MkRSRzkwMDcwLUFVU1RSQUxJQUVBU1QiLCJqb2JMb2NhdGlvbiI6ImF1c3RyYWxpYWVhc3QifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUkpSVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUnprd01EY3dMVUZWVTFSU1FVeEpRVVZCVTFRaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1GMWMzUnlZV3hwWVdWaGMzUWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRJRToyRENNRExFVDoyRFRFU1Q6MkRSRzkwMDcwLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUkpSVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUnprd01EY3dMVmRGVTFSRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -1626,22 +1626,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRJRToyRENNRExFVDoyRFRFU1Q6MkRSRzkwMDcwLUFVU1RSQUxJQUVBU1QiLCJqb2JMb2NhdGlvbiI6ImF1c3RyYWxpYWVhc3QifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRJRToyRENNRExFVDoyRFRFU1Q6MkRSRzkwMDcwLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11974" ], "x-ms-request-id": [ - "1ce88798-cb45-4c07-aa63-bc404f59377d" + "49620c59-b1f6-412e-a101-5f5250c21aad" ], "x-ms-correlation-request-id": [ - "1ce88798-cb45-4c07-aa63-bc404f59377d" + "49620c59-b1f6-412e-a101-5f5250c21aad" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T210538Z:1ce88798-cb45-4c07-aa63-bc404f59377d" + "WESTUS:20200924T070855Z:49620c59-b1f6-412e-a101-5f5250c21aad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1650,7 +1650,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 21:05:37 GMT" + "Thu, 24 Sep 2020 07:08:55 GMT" ], "Expires": [ "-1" @@ -1663,13 +1663,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRJRToyRENNRExFVDoyRFRFU1Q6MkRSRzkwMDcwLUFVU1RSQUxJQUVBU1QiLCJqb2JMb2NhdGlvbiI6ImF1c3RyYWxpYWVhc3QifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUkpSVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUnprd01EY3dMVUZWVTFSU1FVeEpRVVZCVTFRaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1GMWMzUnlZV3hwWVdWaGMzUWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRJRToyRENNRExFVDoyRFRFU1Q6MkRSRzkwMDcwLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUkpSVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUnprd01EY3dMVmRGVTFSRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -1683,22 +1683,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRJRToyRENNRExFVDoyRFRFU1Q6MkRSRzkwMDcwLUFVU1RSQUxJQUVBU1QiLCJqb2JMb2NhdGlvbiI6ImF1c3RyYWxpYWVhc3QifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRJRToyRENNRExFVDoyRFRFU1Q6MkRSRzkwMDcwLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11973" ], "x-ms-request-id": [ - "506fe848-6e3b-42a6-b769-e7079843ec2e" + "4a123f2d-8206-447e-a004-29f83d84a059" ], "x-ms-correlation-request-id": [ - "506fe848-6e3b-42a6-b769-e7079843ec2e" + "4a123f2d-8206-447e-a004-29f83d84a059" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T210554Z:506fe848-6e3b-42a6-b769-e7079843ec2e" + "WESTUS:20200924T070910Z:4a123f2d-8206-447e-a004-29f83d84a059" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1707,7 +1707,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 21:05:53 GMT" + "Thu, 24 Sep 2020 07:09:10 GMT" ], "Expires": [ "-1" @@ -1720,13 +1720,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRJRToyRENNRExFVDoyRFRFU1Q6MkRSRzkwMDcwLUFVU1RSQUxJQUVBU1QiLCJqb2JMb2NhdGlvbiI6ImF1c3RyYWxpYWVhc3QifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUkpSVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUnprd01EY3dMVUZWVTFSU1FVeEpRVVZCVTFRaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1GMWMzUnlZV3hwWVdWaGMzUWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRJRToyRENNRExFVDoyRFRFU1Q6MkRSRzkwMDcwLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUkpSVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUnprd01EY3dMVmRGVTFSRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -1740,22 +1740,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRJRToyRENNRExFVDoyRFRFU1Q6MkRSRzkwMDcwLUFVU1RSQUxJQUVBU1QiLCJqb2JMb2NhdGlvbiI6ImF1c3RyYWxpYWVhc3QifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRJRToyRENNRExFVDoyRFRFU1Q6MkRSRzkwMDcwLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11972" ], "x-ms-request-id": [ - "af80f31c-ce55-441f-8fde-12f313a19329" + "2a8ac7ad-8037-4a9c-9741-28f7310ef161" ], "x-ms-correlation-request-id": [ - "af80f31c-ce55-441f-8fde-12f313a19329" + "2a8ac7ad-8037-4a9c-9741-28f7310ef161" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T210609Z:af80f31c-ce55-441f-8fde-12f313a19329" + "WESTUS:20200924T070925Z:2a8ac7ad-8037-4a9c-9741-28f7310ef161" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1764,7 +1764,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 21:06:08 GMT" + "Thu, 24 Sep 2020 07:09:24 GMT" ], "Expires": [ "-1" @@ -1777,13 +1777,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRJRToyRENNRExFVDoyRFRFU1Q6MkRSRzkwMDcwLUFVU1RSQUxJQUVBU1QiLCJqb2JMb2NhdGlvbiI6ImF1c3RyYWxpYWVhc3QifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUkpSVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUnprd01EY3dMVUZWVTFSU1FVeEpRVVZCVTFRaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1GMWMzUnlZV3hwWVdWaGMzUWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRJRToyRENNRExFVDoyRFRFU1Q6MkRSRzkwMDcwLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUkpSVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUnprd01EY3dMVmRGVTFSRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -1797,16 +1797,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11971" ], "x-ms-request-id": [ - "5f634bd3-58f3-48aa-b0a0-11f0e241519a" + "60c41eac-0bd2-4967-b8e5-3824c6f4af3b" ], "x-ms-correlation-request-id": [ - "5f634bd3-58f3-48aa-b0a0-11f0e241519a" + "60c41eac-0bd2-4967-b8e5-3824c6f4af3b" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T210624Z:5f634bd3-58f3-48aa-b0a0-11f0e241519a" + "WESTUS:20200924T070940Z:60c41eac-0bd2-4967-b8e5-3824c6f4af3b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1815,7 +1815,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 21:06:24 GMT" + "Thu, 24 Sep 2020 07:09:39 GMT" ], "Expires": [ "-1" @@ -1828,13 +1828,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRJRToyRENNRExFVDoyRFRFU1Q6MkRSRzkwMDcwLUFVU1RSQUxJQUVBU1QiLCJqb2JMb2NhdGlvbiI6ImF1c3RyYWxpYWVhc3QifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUkpSVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUnprd01EY3dMVUZWVTFSU1FVeEpRVVZCVTFRaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1GMWMzUnlZV3hwWVdWaGMzUWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRJRToyRENNRExFVDoyRFRFU1Q6MkRSRzkwMDcwLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUkpSVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUnprd01EY3dMVmRGVTFSRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -1848,16 +1848,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11970" ], "x-ms-request-id": [ - "f56d3fed-45d8-4828-a218-4737361380cb" + "b70524d3-b146-4dc2-84e4-05270695e6af" ], "x-ms-correlation-request-id": [ - "f56d3fed-45d8-4828-a218-4737361380cb" + "b70524d3-b146-4dc2-84e4-05270695e6af" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T210624Z:f56d3fed-45d8-4828-a218-4737361380cb" + "WESTUS:20200924T070940Z:b70524d3-b146-4dc2-84e4-05270695e6af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1866,7 +1866,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 21:06:24 GMT" + "Thu, 24 Sep 2020 07:09:40 GMT" ], "Expires": [ "-1" @@ -1881,7 +1881,7 @@ ], "Names": { "testframework_failed": [ - "IEp@ssw0rd3399" + "IEp@ssw0rd3375" ] }, "Variables": { diff --git a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ImportExportTests/TestExportDatabase_NetworkIsolation.json b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ImportExportTests/TestExportDatabase_NetworkIsolation.json new file mode 100644 index 000000000000..8e1c939bf8c5 --- /dev/null +++ b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ImportExportTests/TestExportDatabase_NetworkIsolation.json @@ -0,0 +1,1719 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourcegroups/sql-ie-cmdlet-test-rg90070?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlZ3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcwP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West Central US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7ce2959c-9b4d-46e8-b5be-d4b80c37f2a7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "37" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "11d8b91f-6147-4d06-93c9-647dc8fb9635" + ], + "x-ms-correlation-request-id": [ + "11d8b91f-6147-4d06-93c9-647dc8fb9635" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200921T194257Z:11d8b91f-6147-4d06-93c9-647dc8fb9635" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 21 Sep 2020 19:42:56 GMT" + ], + "Content-Length": [ + "212" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/sql-ie-cmdlet-test-rg90070\",\r\n \"name\": \"sql-ie-cmdlet-test-rg90070\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/servers/sql-ie-cmdlet-server90070?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWllLWNtZGxldC1zZXJ2ZXI5MDA3MD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "46a28de9-00db-40a8-b489-d41b279ba1aa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "5a7805ef-51a8-4cda-90a6-e26f1cd30aa8" + ], + "x-ms-correlation-request-id": [ + "5a7805ef-51a8-4cda-90a6-e26f1cd30aa8" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200921T194259Z:5a7805ef-51a8-4cda-90a6-e26f1cd30aa8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 21 Sep 2020 19:42:58 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "245" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/sql-ie-cmdlet-server90070' under resource group 'sql-ie-cmdlet-test-rg90070' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/servers/sql-ie-cmdlet-server90070?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWllLWNtZGxldC1zZXJ2ZXI5MDA3MD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "df0a9627-894f-4677-af73-076fbbe08318" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "044349bc-3882-4e2d-985d-67983f0a8d38" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200921T194422Z:044349bc-3882-4e2d-985d-67983f0a8d38" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 21 Sep 2020 19:44:21 GMT" + ], + "Content-Length": [ + "488" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testuser\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"sql-ie-cmdlet-server90070.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/servers/sql-ie-cmdlet-server90070\",\r\n \"name\": \"sql-ie-cmdlet-server90070\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/servers/sql-ie-cmdlet-server90070?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWllLWNtZGxldC1zZXJ2ZXI5MDA3MD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "231cf8f5-e8e3-4a3b-a61f-f9b03f64bfcf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e203499d-0f77-4702-8487-f4618078d444" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "a7e6531c-c74d-4fcf-a7ec-9874c7d06b5a" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200921T194422Z:a7e6531c-c74d-4fcf-a7ec-9874c7d06b5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 21 Sep 2020 19:44:22 GMT" + ], + "Content-Length": [ + "488" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testuser\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"sql-ie-cmdlet-server90070.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/servers/sql-ie-cmdlet-server90070\",\r\n \"name\": \"sql-ie-cmdlet-server90070\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/servers/sql-ie-cmdlet-server90070?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWllLWNtZGxldC1zZXJ2ZXI5MDA3MD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "74debe5e-a25b-4fe9-8bf9-93d5342bbd05" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f24e5c68-813e-44d2-8730-35028604c715" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "f353eb7d-088e-4da0-8ff9-110df837190f" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200921T194425Z:f353eb7d-088e-4da0-8ff9-110df837190f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 21 Sep 2020 19:44:26 GMT" + ], + "Content-Length": [ + "488" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testuser\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"sql-ie-cmdlet-server90070.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/servers/sql-ie-cmdlet-server90070\",\r\n \"name\": \"sql-ie-cmdlet-server90070\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/servers/sql-ie-cmdlet-server90070?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWllLWNtZGxldC1zZXJ2ZXI5MDA3MD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"administratorLogin\": \"testuser\",\r\n \"administratorLoginPassword\": \"IEp@ssw0rd2651\",\r\n \"version\": \"12.0\"\r\n },\r\n \"location\": \"West Central US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4078c913-676c-4a7d-b5f5-29cdbf119802" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "177" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://brazilus.management.azure.com/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/locations/westcentralus/serverOperationResults/57115ce8-f3e3-4fcf-8c14-d90042aec36e?api-version=2019-06-01-preview" + ], + "Retry-After": [ + "1" + ], + "Azure-AsyncOperation": [ + "https://brazilus.management.azure.com/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/57115ce8-f3e3-4fcf-8c14-d90042aec36e?api-version=2019-06-01-preview" + ], + "x-ms-request-id": [ + "57115ce8-f3e3-4fcf-8c14-d90042aec36e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "5245abf0-1695-4cd1-89a8-e2b31db3fde3" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200921T194314Z:5245abf0-1695-4cd1-89a8-e2b31db3fde3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 21 Sep 2020 19:43:13 GMT" + ], + "Content-Length": [ + "73" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-21T19:43:13.37Z\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/57115ce8-f3e3-4fcf-8c14-d90042aec36e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vNTcxMTVjZTgtZjNlMy00ZmNmLThjMTQtZDkwMDQyYWVjMzZlP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "bea084e1-08cd-43de-95f3-67eddf1d83ca" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "b148d8d3-feda-4c04-b4a2-30e17113b011" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200921T194315Z:b148d8d3-feda-4c04-b4a2-30e17113b011" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 21 Sep 2020 19:43:15 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"57115ce8-f3e3-4fcf-8c14-d90042aec36e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-21T19:43:13.37Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/57115ce8-f3e3-4fcf-8c14-d90042aec36e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vNTcxMTVjZTgtZjNlMy00ZmNmLThjMTQtZDkwMDQyYWVjMzZlP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "f77cea90-f87d-4663-9347-1d803ff86e8c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "a7a8e881-9eed-4b30-bdcf-27bd3de7b07f" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200921T194317Z:a7a8e881-9eed-4b30-bdcf-27bd3de7b07f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 21 Sep 2020 19:43:16 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"57115ce8-f3e3-4fcf-8c14-d90042aec36e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-21T19:43:13.37Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/57115ce8-f3e3-4fcf-8c14-d90042aec36e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vNTcxMTVjZTgtZjNlMy00ZmNmLThjMTQtZDkwMDQyYWVjMzZlP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "7d9cdd78-5618-46c9-80d6-a504e44ecd1d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "e561a9ca-d541-471a-8c09-b86be969bfbb" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200921T194318Z:e561a9ca-d541-471a-8c09-b86be969bfbb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 21 Sep 2020 19:43:17 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"57115ce8-f3e3-4fcf-8c14-d90042aec36e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-21T19:43:13.37Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/57115ce8-f3e3-4fcf-8c14-d90042aec36e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vNTcxMTVjZTgtZjNlMy00ZmNmLThjMTQtZDkwMDQyYWVjMzZlP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "a940de92-2a55-4d4c-8db3-39a40f99a977" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "e56b6014-d878-4b93-9c00-d55323e471ed" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200921T194320Z:e56b6014-d878-4b93-9c00-d55323e471ed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 21 Sep 2020 19:43:19 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"57115ce8-f3e3-4fcf-8c14-d90042aec36e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-21T19:43:13.37Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/57115ce8-f3e3-4fcf-8c14-d90042aec36e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vNTcxMTVjZTgtZjNlMy00ZmNmLThjMTQtZDkwMDQyYWVjMzZlP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "0cef8146-c4bc-482e-93de-cf59342b0e2a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "233dca0c-ff34-43e1-a668-3285a01b3564" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200921T194340Z:233dca0c-ff34-43e1-a668-3285a01b3564" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 21 Sep 2020 19:43:40 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"57115ce8-f3e3-4fcf-8c14-d90042aec36e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-21T19:43:13.37Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/57115ce8-f3e3-4fcf-8c14-d90042aec36e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vNTcxMTVjZTgtZjNlMy00ZmNmLThjMTQtZDkwMDQyYWVjMzZlP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "687de3bb-70a0-4ace-98f4-0546699de409" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "55549f45-785e-4b3f-9dff-5334607ae8b3" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200921T194400Z:55549f45-785e-4b3f-9dff-5334607ae8b3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 21 Sep 2020 19:43:59 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"57115ce8-f3e3-4fcf-8c14-d90042aec36e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-21T19:43:13.37Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/57115ce8-f3e3-4fcf-8c14-d90042aec36e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vNTcxMTVjZTgtZjNlMy00ZmNmLThjMTQtZDkwMDQyYWVjMzZlP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "ee1a343f-8fff-4be3-bac7-43644f659da6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "2cd1703b-ace3-47bc-86d3-83ec1b63f8ef" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200921T194421Z:2cd1703b-ace3-47bc-86d3-83ec1b63f8ef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 21 Sep 2020 19:44:21 GMT" + ], + "Content-Length": [ + "106" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"57115ce8-f3e3-4fcf-8c14-d90042aec36e\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-21T19:43:13.37Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/servers/sql-ie-cmdlet-server90070/databases/sql-ie-cmdlet-db90070?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWllLWNtZGxldC1zZXJ2ZXI5MDA3MC9kYXRhYmFzZXMvc3FsLWllLWNtZGxldC1kYjkwMDcwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e7518378-2c7f-42d6-9bee-5c06f95c9bfd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "4365e526-ea63-4d25-887f-e7b452c19a13" + ], + "x-ms-correlation-request-id": [ + "4365e526-ea63-4d25-887f-e7b452c19a13" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200921T194425Z:4365e526-ea63-4d25-887f-e7b452c19a13" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 21 Sep 2020 19:44:24 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "277" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/sql-ie-cmdlet-server90070/databases/sql-ie-cmdlet-db90070' under resource group 'sql-ie-cmdlet-test-rg90070' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/servers/sql-ie-cmdlet-server90070/databases/sql-ie-cmdlet-db90070?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWllLWNtZGxldC1zZXJ2ZXI5MDA3MC9kYXRhYmFzZXMvc3FsLWllLWNtZGxldC1kYjkwMDcwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "44a4fe53-84cd-46f2-a337-61aedd348801" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "741c6865-99c3-41b2-b61a-d01653fa7073" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200921T194522Z:741c6865-99c3-41b2-b61a-d01653fa7073" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 21 Sep 2020 19:45:21 GMT" + ], + "Content-Length": [ + "1052" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"9db911b5-9c22-4dd9-b8e9-1c57c5a66a4e\",\r\n \"creationDate\": \"2020-09-21T19:45:15.51Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westus2\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 10307502080,\r\n \"earliestRestoreDate\": \"2020-09-21T20:15:15.51Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/servers/sql-ie-cmdlet-server90070/databases/sql-ie-cmdlet-db90070\",\r\n \"name\": \"sql-ie-cmdlet-db90070\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/servers/sql-ie-cmdlet-server90070/databases/sql-ie-cmdlet-db90070?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWllLWNtZGxldC1zZXJ2ZXI5MDA3MC9kYXRhYmFzZXMvc3FsLWllLWNtZGxldC1kYjkwMDcwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": 0,\r\n \"readScale\": \"\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "00f73b55-9713-410c-8633-e42b33cacfc9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "105" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://brazilus.management.azure.com/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/locations/westcentralus/databaseOperationResults/d2bae2e8-3ec9-487e-a9c3-ebda4b62412e?api-version=2019-06-01-preview" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://brazilus.management.azure.com/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/d2bae2e8-3ec9-487e-a9c3-ebda4b62412e?api-version=2019-06-01-preview" + ], + "x-ms-request-id": [ + "d2bae2e8-3ec9-487e-a9c3-ebda4b62412e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "1700f730-0008-4734-9304-3cff0a0c7772" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200921T194434Z:1700f730-0008-4734-9304-3cff0a0c7772" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 21 Sep 2020 19:44:33 GMT" + ], + "Content-Length": [ + "76" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2020-09-21T19:44:33.573Z\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/d2bae2e8-3ec9-487e-a9c3-ebda4b62412e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9kMmJhZTJlOC0zZWM5LTQ4N2UtYTljMy1lYmRhNGI2MjQxMmU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "ff750948-e44a-45cd-9c54-ada35f2a04a0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "d9425218-ab8b-49f6-9506-8dee5db028d6" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200921T194449Z:d9425218-ab8b-49f6-9506-8dee5db028d6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 21 Sep 2020 19:44:49 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"d2bae2e8-3ec9-487e-a9c3-ebda4b62412e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-21T19:44:33.573Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/d2bae2e8-3ec9-487e-a9c3-ebda4b62412e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9kMmJhZTJlOC0zZWM5LTQ4N2UtYTljMy1lYmRhNGI2MjQxMmU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "f2e7a448-b381-41e6-a8a3-3227d596450c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "7f138591-1496-47c0-9d5b-f452a8a28f1f" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200921T194504Z:7f138591-1496-47c0-9d5b-f452a8a28f1f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 21 Sep 2020 19:45:03 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"d2bae2e8-3ec9-487e-a9c3-ebda4b62412e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-21T19:44:33.573Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/locations/westcentralus/databaseAzureAsyncOperation/d2bae2e8-3ec9-487e-a9c3-ebda4b62412e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9kMmJhZTJlOC0zZWM5LTQ4N2UtYTljMy1lYmRhNGI2MjQxMmU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "b29c0971-1b3a-4e12-b3b0-b14189b45400" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "2980a67b-ae71-4bea-a8ca-aec990aaf7ab" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200921T194521Z:2980a67b-ae71-4bea-a8ca-aec990aaf7ab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 21 Sep 2020 19:45:20 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"d2bae2e8-3ec9-487e-a9c3-ebda4b62412e\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-21T19:44:33.573Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/servers/sql-ie-cmdlet-server90070/firewallRules/AllowAllAzureIPs?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWllLWNtZGxldC1zZXJ2ZXI5MDA3MC9maXJld2FsbFJ1bGVzL0FsbG93QWxsQXp1cmVJUHM/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "x-ms-request-id": [ + "363ed08f-74d0-40cf-9c85-c55daf8f3d3d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "81d2add2-63fa-42b9-ac2b-9581cb03c0de" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200921T194526Z:81d2add2-63fa-42b9-ac2b-9581cb03c0de" + ], + "Date": [ + "Mon, 21 Sep 2020 19:45:25 GMT" + ], + "Content-Length": [ + "136" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Resource not found for the segment 'firewallRules'.\",\r\n \"target\": null,\r\n \"details\": [],\r\n \"innererror\": []\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/servers/sql-ie-cmdlet-server90070/firewallRules/AllowAllAzureIPs?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWllLWNtZGxldC1zZXJ2ZXI5MDA3MC9maXJld2FsbFJ1bGVzL0FsbG93QWxsQXp1cmVJUHM/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.0\",\r\n \"endIpAddress\": \"0.0.0.0\"\r\n }\r\n}", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.10.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "93" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "x-ms-request-id": [ + "3155c4c2-8332-4e25-9262-913a2a9686d2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "8ebdf6d5-d283-4d4c-98c6-01931f9216a5" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200921T194534Z:8ebdf6d5-d283-4d4c-98c6-01931f9216a5" + ], + "Date": [ + "Mon, 21 Sep 2020 19:45:34 GMT" + ], + "Content-Length": [ + "373" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/servers/sql-ie-cmdlet-server90070/firewallRules/AllowAllAzureIPs\",\r\n \"name\": \"AllowAllAzureIPs\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"West Central US\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.0\",\r\n \"endIpAddress\": \"0.0.0.0\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/servers/sql-ie-cmdlet-server90070/databases/sql-ie-cmdlet-db90070/export?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWllLWNtZGxldC1zZXJ2ZXI5MDA3MC9kYXRhYmFzZXMvc3FsLWllLWNtZGxldC1kYjkwMDcwL2V4cG9ydD9hcGktdmVyc2lvbj0yMDIwLTAyLTAyLXByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"storageKeyType\": \"StorageAccessKey\",\r\n \"storageKey\": \"TD9DT+CX6luvLa84Kt4LV8ymlrmAenlicPWIZReC9WKUViFV4x77V+h5dBPR9szZUhtHJ1VWjQcPOk+HiVbKuA==\",\r\n \"storageUri\": \"https://brandongtestwcus.blob.core.windows.net/importexport/pstest/sql-ie-cmdlet-db90070.bacpac\",\r\n \"administratorLogin\": \"testuser\",\r\n \"administratorLoginPassword\": \"IEp@ssw0rd2651\",\r\n \"authenticationType\": \"sql\",\r\n \"networkIsolation\": {\r\n \"storageAccountResourceId\": \"/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourcegroups/brandong-test/providers/Microsoft.Storage/storageAccounts/brandongtestwcus\",\r\n \"sqlServerResourceId\": \"/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/sql-ie-cmdlet-test-rg90070/providers/Microsoft.Sql/servers/sql-ie-cmdlet-server90070\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "15124e52-5604-4040-a0ad-245de514306d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "780" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://brazilus.management.azure.com/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/providers/Microsoft.Sql/locations/westcentralus/importExportOperationResults/4ca38a54-bdff-4d4f-94e4-96ad0f3a6521-sql-ie-cmdlet-server90070?api-version=2020-02-02-preview" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://brazilus.management.azure.com/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/providers/Microsoft.Sql/locations/westcentralus/importExportAzureAsyncOperation/4ca38a54-bdff-4d4f-94e4-96ad0f3a6521-sql-ie-cmdlet-server90070?api-version=2020-02-02-preview" + ], + "x-ms-request-id": [ + "f473bb7a-b727-4fa1-b139-c2ed5360a20a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "822d036d-5e8f-416b-b00f-fe88ad7a6e90" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200921T194535Z:822d036d-5e8f-416b-b00f-fe88ad7a6e90" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 21 Sep 2020 19:45:35 GMT" + ], + "Content-Length": [ + "65" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"Export\",\r\n \"startTime\": \"2020-09-21T19:45:35.5724259Z\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourcegroups/sql-ie-cmdlet-test-rg90070?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlZ3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcwP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1d79cc49-3bad-462f-beb3-35efc13b1fb8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://brazilus.management.azure.com/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRJRToyRENNRExFVDoyRFRFU1Q6MkRSRzkwMDcwLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "cf81e75a-db14-4233-8fba-1a3d0c6463c3" + ], + "x-ms-correlation-request-id": [ + "cf81e75a-db14-4233-8fba-1a3d0c6463c3" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200921T194613Z:cf81e75a-db14-4233-8fba-1a3d0c6463c3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 21 Sep 2020 19:46:17 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRJRToyRENNRExFVDoyRFRFU1Q6MkRSRzkwMDcwLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUkpSVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUnprd01EY3dMVmRGVTFSRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://brazilus.management.azure.com/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRJRToyRENNRExFVDoyRFRFU1Q6MkRSRzkwMDcwLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "213d0798-dd01-4ef9-80b9-c892d4e1fdce" + ], + "x-ms-correlation-request-id": [ + "213d0798-dd01-4ef9-80b9-c892d4e1fdce" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200921T194638Z:213d0798-dd01-4ef9-80b9-c892d4e1fdce" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 21 Sep 2020 19:46:40 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRJRToyRENNRExFVDoyRFRFU1Q6MkRSRzkwMDcwLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUkpSVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUnprd01EY3dMVmRGVTFSRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://brazilus.management.azure.com/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRJRToyRENNRExFVDoyRFRFU1Q6MkRSRzkwMDcwLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "3b1d5d65-a3c0-45a6-a8df-e9bb85e98ef4" + ], + "x-ms-correlation-request-id": [ + "3b1d5d65-a3c0-45a6-a8df-e9bb85e98ef4" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200921T194701Z:3b1d5d65-a3c0-45a6-a8df-e9bb85e98ef4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 21 Sep 2020 19:47:01 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRJRToyRENNRExFVDoyRFRFU1Q6MkRSRzkwMDcwLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUkpSVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUnprd01EY3dMVmRGVTFSRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://brazilus.management.azure.com/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRJRToyRENNRExFVDoyRFRFU1Q6MkRSRzkwMDcwLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "a52890c9-f2a6-43e3-a9c1-df30cb4e4ae4" + ], + "x-ms-correlation-request-id": [ + "a52890c9-f2a6-43e3-a9c1-df30cb4e4ae4" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200921T194723Z:a52890c9-f2a6-43e3-a9c1-df30cb4e4ae4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 21 Sep 2020 19:47:23 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRJRToyRENNRExFVDoyRFRFU1Q6MkRSRzkwMDcwLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUkpSVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUnprd01EY3dMVmRGVTFSRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "ce3e2681-e51b-4bf2-b835-9284df0f19a6" + ], + "x-ms-correlation-request-id": [ + "ce3e2681-e51b-4bf2-b835-9284df0f19a6" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200921T194747Z:ce3e2681-e51b-4bf2-b835-9284df0f19a6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 21 Sep 2020 19:47:46 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRJRToyRENNRExFVDoyRFRFU1Q6MkRSRzkwMDcwLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUkpSVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUnprd01EY3dMVmRGVTFSRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "5e9a37a6-9411-4a76-ab6d-22086fc49b27" + ], + "x-ms-correlation-request-id": [ + "5e9a37a6-9411-4a76-ab6d-22086fc49b27" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200921T194749Z:5e9a37a6-9411-4a76-ab6d-22086fc49b27" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 21 Sep 2020 19:47:51 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "testframework_failed": [ + "IEp@ssw0rd2651" + ] + }, + "Variables": { + "SubscriptionId": "b75889fa-6661-44e0-a844-cd96ec938991" + } +} \ No newline at end of file diff --git a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ImportExportTests/TestImportNewDatabase_NetworkIsolation.json b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ImportExportTests/TestImportNewDatabase_NetworkIsolation.json new file mode 100644 index 000000000000..9ec126479c5e --- /dev/null +++ b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ImportExportTests/TestImportNewDatabase_NetworkIsolation.json @@ -0,0 +1,1629 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourcegroups/sql-ie-cmdlet-test-rg90071?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlZ3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West Central US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aa0511ec-8310-4fc1-a070-5d3fb716cc47" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "37" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-request-id": [ + "f716784b-c1f8-4843-8ffd-f71abcb9cefb" + ], + "x-ms-correlation-request-id": [ + "f716784b-c1f8-4843-8ffd-f71abcb9cefb" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200918T010411Z:f716784b-c1f8-4843-8ffd-f71abcb9cefb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 18 Sep 2020 01:04:10 GMT" + ], + "Content-Length": [ + "212" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/sql-ie-cmdlet-test-rg90071\",\r\n \"name\": \"sql-ie-cmdlet-test-rg90071\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/sql-ie-cmdlet-test-rg90071/providers/Microsoft.Sql/servers/sql-ie-cmdlet-server90071?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWllLWNtZGxldC1zZXJ2ZXI5MDA3MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "99d430e6-a357-4fbf-befa-531f2afa0546" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "c274aa2d-b292-4206-bda3-5ce5cc5be92d" + ], + "x-ms-correlation-request-id": [ + "c274aa2d-b292-4206-bda3-5ce5cc5be92d" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200918T010412Z:c274aa2d-b292-4206-bda3-5ce5cc5be92d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 18 Sep 2020 01:04:12 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "245" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/sql-ie-cmdlet-server90071' under resource group 'sql-ie-cmdlet-test-rg90071' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/sql-ie-cmdlet-test-rg90071/providers/Microsoft.Sql/servers/sql-ie-cmdlet-server90071?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWllLWNtZGxldC1zZXJ2ZXI5MDA3MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "257fcddb-4f17-4e83-9b0a-a187727482bc" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11960" + ], + "x-ms-correlation-request-id": [ + "a3e2fd3e-aae1-4de3-81d7-cce160d13d89" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200918T010605Z:a3e2fd3e-aae1-4de3-81d7-cce160d13d89" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 18 Sep 2020 01:06:05 GMT" + ], + "Content-Length": [ + "488" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testuser\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"sql-ie-cmdlet-server90071.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/sql-ie-cmdlet-test-rg90071/providers/Microsoft.Sql/servers/sql-ie-cmdlet-server90071\",\r\n \"name\": \"sql-ie-cmdlet-server90071\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/sql-ie-cmdlet-test-rg90071/providers/Microsoft.Sql/servers/sql-ie-cmdlet-server90071?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWllLWNtZGxldC1zZXJ2ZXI5MDA3MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"administratorLogin\": \"testuser\",\r\n \"administratorLoginPassword\": \"IEp@ssw0rd438\",\r\n \"version\": \"12.0\"\r\n },\r\n \"location\": \"West Central US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "524a1485-1772-4f31-bc97-3a15a57fbc2c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "176" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://brazilus.management.azure.com/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/sql-ie-cmdlet-test-rg90071/providers/Microsoft.Sql/locations/westcentralus/serverOperationResults/55114d0b-33ec-420d-958a-30c07fc118fc?api-version=2019-06-01-preview" + ], + "Retry-After": [ + "1" + ], + "Azure-AsyncOperation": [ + "https://brazilus.management.azure.com/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/sql-ie-cmdlet-test-rg90071/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/55114d0b-33ec-420d-958a-30c07fc118fc?api-version=2019-06-01-preview" + ], + "x-ms-request-id": [ + "55114d0b-33ec-420d-958a-30c07fc118fc" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "c4d4b773-3950-4d13-b7a8-f7f338cbc516" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200918T010413Z:c4d4b773-3950-4d13-b7a8-f7f338cbc516" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 18 Sep 2020 01:04:13 GMT" + ], + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-18T01:04:13.747Z\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/sql-ie-cmdlet-test-rg90071/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/55114d0b-33ec-420d-958a-30c07fc118fc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vNTUxMTRkMGItMzNlYy00MjBkLTk1OGEtMzBjMDdmYzExOGZjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "9ee662ee-583f-4aa9-9d53-ecb583664143" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-correlation-request-id": [ + "ff4e9357-1593-4568-8606-150032fbc11e" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200918T010415Z:ff4e9357-1593-4568-8606-150032fbc11e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 18 Sep 2020 01:04:14 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"55114d0b-33ec-420d-958a-30c07fc118fc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-18T01:04:13.747Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/sql-ie-cmdlet-test-rg90071/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/55114d0b-33ec-420d-958a-30c07fc118fc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vNTUxMTRkMGItMzNlYy00MjBkLTk1OGEtMzBjMDdmYzExOGZjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "8445446f-acef-4454-afea-cf96808bcfb0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "x-ms-correlation-request-id": [ + "bcd89686-329f-44eb-b1b4-7ea7146285cb" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200918T010416Z:bcd89686-329f-44eb-b1b4-7ea7146285cb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 18 Sep 2020 01:04:15 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"55114d0b-33ec-420d-958a-30c07fc118fc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-18T01:04:13.747Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/sql-ie-cmdlet-test-rg90071/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/55114d0b-33ec-420d-958a-30c07fc118fc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vNTUxMTRkMGItMzNlYy00MjBkLTk1OGEtMzBjMDdmYzExOGZjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "327b9a7e-0c7c-4599-9957-145645914eec" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-correlation-request-id": [ + "c2b33dc8-0728-4644-b56c-1efbdcc19923" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200918T010417Z:c2b33dc8-0728-4644-b56c-1efbdcc19923" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 18 Sep 2020 01:04:16 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"55114d0b-33ec-420d-958a-30c07fc118fc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-18T01:04:13.747Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/sql-ie-cmdlet-test-rg90071/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/55114d0b-33ec-420d-958a-30c07fc118fc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vNTUxMTRkMGItMzNlYy00MjBkLTk1OGEtMzBjMDdmYzExOGZjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "49a97282-8df4-4813-a4c2-64110fb3aefa" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "x-ms-correlation-request-id": [ + "ecfc1135-98e0-4d87-8dcc-933cce827a7b" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200918T010418Z:ecfc1135-98e0-4d87-8dcc-933cce827a7b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 18 Sep 2020 01:04:18 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"55114d0b-33ec-420d-958a-30c07fc118fc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-18T01:04:13.747Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/sql-ie-cmdlet-test-rg90071/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/55114d0b-33ec-420d-958a-30c07fc118fc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vNTUxMTRkMGItMzNlYy00MjBkLTk1OGEtMzBjMDdmYzExOGZjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "ca93aedd-22f8-49b7-acc9-d1d92824242a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-correlation-request-id": [ + "9e6b339a-f027-4795-b349-153c0ba41086" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200918T010419Z:9e6b339a-f027-4795-b349-153c0ba41086" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 18 Sep 2020 01:04:19 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"55114d0b-33ec-420d-958a-30c07fc118fc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-18T01:04:13.747Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/sql-ie-cmdlet-test-rg90071/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/55114d0b-33ec-420d-958a-30c07fc118fc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vNTUxMTRkMGItMzNlYy00MjBkLTk1OGEtMzBjMDdmYzExOGZjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "66fd85f9-3950-4bdc-ab82-0b93c7401366" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-correlation-request-id": [ + "a3a0a825-a562-4e64-ac21-7091cb7616cb" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200918T010439Z:a3a0a825-a562-4e64-ac21-7091cb7616cb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 18 Sep 2020 01:04:39 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"55114d0b-33ec-420d-958a-30c07fc118fc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-18T01:04:13.747Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/sql-ie-cmdlet-test-rg90071/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/55114d0b-33ec-420d-958a-30c07fc118fc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vNTUxMTRkMGItMzNlYy00MjBkLTk1OGEtMzBjMDdmYzExOGZjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "a7ad8fec-7764-4fed-99cf-da446d4b36ba" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "x-ms-correlation-request-id": [ + "eba93d06-b981-4fb6-ae6e-93413ba497f5" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200918T010459Z:eba93d06-b981-4fb6-ae6e-93413ba497f5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 18 Sep 2020 01:04:59 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"55114d0b-33ec-420d-958a-30c07fc118fc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-18T01:04:13.747Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/sql-ie-cmdlet-test-rg90071/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/55114d0b-33ec-420d-958a-30c07fc118fc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vNTUxMTRkMGItMzNlYy00MjBkLTk1OGEtMzBjMDdmYzExOGZjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "d7d964ac-da0d-411a-99cb-9248fae55c7f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], + "x-ms-correlation-request-id": [ + "5bac364b-2c06-4f09-af84-fc4607f98fab" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200918T010519Z:5bac364b-2c06-4f09-af84-fc4607f98fab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 18 Sep 2020 01:05:19 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"55114d0b-33ec-420d-958a-30c07fc118fc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-18T01:04:13.747Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/sql-ie-cmdlet-test-rg90071/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/55114d0b-33ec-420d-958a-30c07fc118fc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vNTUxMTRkMGItMzNlYy00MjBkLTk1OGEtMzBjMDdmYzExOGZjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "aa45ff47-f8ed-43af-8c14-545ce284b46e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" + ], + "x-ms-correlation-request-id": [ + "4bd71ea5-f736-409d-8e81-c2d59b18d872" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200918T010534Z:4bd71ea5-f736-409d-8e81-c2d59b18d872" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 18 Sep 2020 01:05:34 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"55114d0b-33ec-420d-958a-30c07fc118fc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-18T01:04:13.747Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/sql-ie-cmdlet-test-rg90071/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/55114d0b-33ec-420d-958a-30c07fc118fc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vNTUxMTRkMGItMzNlYy00MjBkLTk1OGEtMzBjMDdmYzExOGZjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "3bff0d4f-04e1-4241-ba26-7abcb5181870" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], + "x-ms-correlation-request-id": [ + "4d90d950-509f-4bcf-bf20-655695f31529" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200918T010550Z:4d90d950-509f-4bcf-bf20-655695f31529" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 18 Sep 2020 01:05:49 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"55114d0b-33ec-420d-958a-30c07fc118fc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-18T01:04:13.747Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/sql-ie-cmdlet-test-rg90071/providers/Microsoft.Sql/locations/westcentralus/serverAzureAsyncOperation/55114d0b-33ec-420d-958a-30c07fc118fc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vNTUxMTRkMGItMzNlYy00MjBkLTk1OGEtMzBjMDdmYzExOGZjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "70ebc115-95be-48a8-bad7-5bbb9d818c7e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11961" + ], + "x-ms-correlation-request-id": [ + "224b0aaf-9c68-441b-a5bd-fbe255275609" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200918T010605Z:224b0aaf-9c68-441b-a5bd-fbe255275609" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 18 Sep 2020 01:06:05 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"55114d0b-33ec-420d-958a-30c07fc118fc\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-18T01:04:13.747Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/sql-ie-cmdlet-test-rg90071/providers/Microsoft.Sql/servers/sql-ie-cmdlet-server90071/firewallRules/AllowAllAzureIPs?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWllLWNtZGxldC1zZXJ2ZXI5MDA3MS9maXJld2FsbFJ1bGVzL0FsbG93QWxsQXp1cmVJUHM/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "x-ms-request-id": [ + "298b94c6-209d-4758-95b3-372e9bc7ba1c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-correlation-request-id": [ + "63f3b2cf-b5ca-4565-a8d0-b7108117cee2" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200918T010606Z:63f3b2cf-b5ca-4565-a8d0-b7108117cee2" + ], + "Date": [ + "Fri, 18 Sep 2020 01:06:05 GMT" + ], + "Content-Length": [ + "136" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Resource not found for the segment 'firewallRules'.\",\r\n \"target\": null,\r\n \"details\": [],\r\n \"innererror\": []\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/sql-ie-cmdlet-test-rg90071/providers/Microsoft.Sql/servers/sql-ie-cmdlet-server90071/firewallRules/AllowAllAzureIPs?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWllLWNtZGxldC1zZXJ2ZXI5MDA3MS9maXJld2FsbFJ1bGVzL0FsbG93QWxsQXp1cmVJUHM/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.0\",\r\n \"endIpAddress\": \"0.0.0.0\"\r\n }\r\n}", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.LegacySdk.SqlManagementClient/2.9.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "93" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "x-ms-request-id": [ + "2f9d84eb-8399-47d8-a1b3-74baf19fe4e4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "358de79a-070f-45c5-87d7-5c43373c33a0" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200918T010607Z:358de79a-070f-45c5-87d7-5c43373c33a0" + ], + "Date": [ + "Fri, 18 Sep 2020 01:06:06 GMT" + ], + "Content-Length": [ + "373" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/sql-ie-cmdlet-test-rg90071/providers/Microsoft.Sql/servers/sql-ie-cmdlet-server90071/firewallRules/AllowAllAzureIPs\",\r\n \"name\": \"AllowAllAzureIPs\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"West Central US\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.0\",\r\n \"endIpAddress\": \"0.0.0.0\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/sql-ie-cmdlet-test-rg90071/providers/Microsoft.Sql/servers/sql-ie-cmdlet-server90071/import?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlR3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWllLWNtZGxldC1zZXJ2ZXI5MDA3MS9pbXBvcnQ/YXBpLXZlcnNpb249MjAyMC0wMi0wMi1wcmV2aWV3", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"databaseName\": \"sql-ie-cmdlet-db90071\",\r\n \"edition\": \"GeneralPurpose\",\r\n \"serviceObjectiveName\": \"GP_Gen5_2\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"storageKeyType\": \"StorageAccessKey\",\r\n \"storageKey\": \"TD9DT+CX6luvLa84Kt4LV8ymlrmAenlicPWIZReC9WKUViFV4x77V+h5dBPR9szZUhtHJ1VWjQcPOk+HiVbKuA==\",\r\n \"storageUri\": \"https://brandongtestwcus.blob.core.windows.net/importexport/testdb_ni.bacpac\",\r\n \"administratorLogin\": \"testuser\",\r\n \"administratorLoginPassword\": \"IEp@ssw0rd438\",\r\n \"authenticationType\": \"sql\",\r\n \"networkIsolation\": {\r\n \"storageAccountResourceId\": \"/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourcegroups/brandong-test/providers/Microsoft.Storage/storageAccounts/brandongtestwcus\",\r\n \"sqlServerResourceId\": \"/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourceGroups/sql-ie-cmdlet-test-rg90071/providers/Microsoft.Sql/servers/sql-ie-cmdlet-server90071\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "07d18304-1307-41aa-a682-fb4b4fa73373" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "909" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://brazilus.management.azure.com/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/providers/Microsoft.Sql/locations/westcentralus/importExportOperationResults/de2cdc2e-9198-4e08-b268-d01a21fdd91e-sql-ie-cmdlet-server90071?api-version=2020-02-02-preview" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://brazilus.management.azure.com/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/providers/Microsoft.Sql/locations/westcentralus/importExportAzureAsyncOperation/de2cdc2e-9198-4e08-b268-d01a21fdd91e-sql-ie-cmdlet-server90071?api-version=2020-02-02-preview" + ], + "x-ms-request-id": [ + "9b897c1a-3cf9-474d-b2d5-4fadb5ea28ab" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "47f7161a-3fed-45a8-9b16-f78003df7bb9" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200918T010608Z:47f7161a-3fed-45a8-9b16-f78003df7bb9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 18 Sep 2020 01:06:08 GMT" + ], + "Content-Length": [ + "65" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"Import\",\r\n \"startTime\": \"2020-09-18T01:06:08.6744807Z\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/resourcegroups/sql-ie-cmdlet-test-rg90071?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL3Jlc291cmNlZ3JvdXBzL3NxbC1pZS1jbWRsZXQtdGVzdC1yZzkwMDcxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "59d90687-2d6b-4292-9010-0fb868c8d5de" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://brazilus.management.azure.com/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRJRToyRENNRExFVDoyRFRFU1Q6MkRSRzkwMDcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14997" + ], + "x-ms-request-id": [ + "ea7a5099-a9d0-4678-8161-79e2eb470180" + ], + "x-ms-correlation-request-id": [ + "ea7a5099-a9d0-4678-8161-79e2eb470180" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200918T010612Z:ea7a5099-a9d0-4678-8161-79e2eb470180" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 18 Sep 2020 01:06:12 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRJRToyRENNRExFVDoyRFRFU1Q6MkRSRzkwMDcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUkpSVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUnprd01EY3hMVmRGVTFSRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://brazilus.management.azure.com/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRJRToyRENNRExFVDoyRFRFU1Q6MkRSRzkwMDcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-request-id": [ + "44b69750-5590-4071-89fd-0eceeb90ea54" + ], + "x-ms-correlation-request-id": [ + "44b69750-5590-4071-89fd-0eceeb90ea54" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200918T010628Z:44b69750-5590-4071-89fd-0eceeb90ea54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 18 Sep 2020 01:06:28 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRJRToyRENNRExFVDoyRFRFU1Q6MkRSRzkwMDcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUkpSVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUnprd01EY3hMVmRGVTFSRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://brazilus.management.azure.com/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRJRToyRENNRExFVDoyRFRFU1Q6MkRSRzkwMDcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-request-id": [ + "93022210-6cb8-44fe-9d19-f7600332a22f" + ], + "x-ms-correlation-request-id": [ + "93022210-6cb8-44fe-9d19-f7600332a22f" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200918T010643Z:93022210-6cb8-44fe-9d19-f7600332a22f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 18 Sep 2020 01:06:43 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRJRToyRENNRExFVDoyRFRFU1Q6MkRSRzkwMDcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUkpSVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUnprd01EY3hMVmRGVTFSRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://brazilus.management.azure.com/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRJRToyRENNRExFVDoyRFRFU1Q6MkRSRzkwMDcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-request-id": [ + "f6954f3a-f5ec-44d9-a160-c3037e85a23a" + ], + "x-ms-correlation-request-id": [ + "f6954f3a-f5ec-44d9-a160-c3037e85a23a" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200918T010658Z:f6954f3a-f5ec-44d9-a160-c3037e85a23a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 18 Sep 2020 01:06:57 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRJRToyRENNRExFVDoyRFRFU1Q6MkRSRzkwMDcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUkpSVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUnprd01EY3hMVmRGVTFSRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://brazilus.management.azure.com/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRJRToyRENNRExFVDoyRFRFU1Q6MkRSRzkwMDcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-request-id": [ + "dfe3d8d1-c085-4018-b636-da802aea6d26" + ], + "x-ms-correlation-request-id": [ + "dfe3d8d1-c085-4018-b636-da802aea6d26" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200918T010713Z:dfe3d8d1-c085-4018-b636-da802aea6d26" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 18 Sep 2020 01:07:13 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRJRToyRENNRExFVDoyRFRFU1Q6MkRSRzkwMDcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUkpSVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUnprd01EY3hMVmRGVTFSRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://brazilus.management.azure.com/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRJRToyRENNRExFVDoyRFRFU1Q6MkRSRzkwMDcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-request-id": [ + "6b617b13-51d0-45b8-8c9c-75bf98bf1764" + ], + "x-ms-correlation-request-id": [ + "6b617b13-51d0-45b8-8c9c-75bf98bf1764" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200918T010728Z:6b617b13-51d0-45b8-8c9c-75bf98bf1764" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 18 Sep 2020 01:07:28 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRJRToyRENNRExFVDoyRFRFU1Q6MkRSRzkwMDcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUkpSVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUnprd01EY3hMVmRGVTFSRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://brazilus.management.azure.com/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRJRToyRENNRExFVDoyRFRFU1Q6MkRSRzkwMDcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-request-id": [ + "5329ca73-2ddd-4b47-aec8-ebd38b1e5701" + ], + "x-ms-correlation-request-id": [ + "5329ca73-2ddd-4b47-aec8-ebd38b1e5701" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200918T010743Z:5329ca73-2ddd-4b47-aec8-ebd38b1e5701" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 18 Sep 2020 01:07:43 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRJRToyRENNRExFVDoyRFRFU1Q6MkRSRzkwMDcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUkpSVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUnprd01EY3hMVmRGVTFSRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-request-id": [ + "b8d5b195-b87d-4cfb-9c22-5ef309707701" + ], + "x-ms-correlation-request-id": [ + "b8d5b195-b87d-4cfb-9c22-5ef309707701" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200918T010758Z:b8d5b195-b87d-4cfb-9c22-5ef309707701" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 18 Sep 2020 01:07:58 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b75889fa-6661-44e0-a844-cd96ec938991/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRJRToyRENNRExFVDoyRFRFU1Q6MkRSRzkwMDcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjc1ODg5ZmEtNjY2MS00NGUwLWE4NDQtY2Q5NmVjOTM4OTkxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUkpSVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUnprd01EY3hMVmRGVTFSRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-request-id": [ + "2d9fb1ae-478c-4f16-aa5a-22c24b34e338" + ], + "x-ms-correlation-request-id": [ + "2d9fb1ae-478c-4f16-aa5a-22c24b34e338" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20200918T010758Z:2d9fb1ae-478c-4f16-aa5a-22c24b34e338" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 18 Sep 2020 01:07:58 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "testframework_failed": [ + "IEp@ssw0rd438" + ] + }, + "Variables": { + "SubscriptionId": "b75889fa-6661-44e0-a844-cd96ec938991" + } +} \ No newline at end of file diff --git a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ReadScaleCrudTests/TestDatabaseReadReplicaCount.json b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ReadScaleCrudTests/TestDatabaseReadReplicaCount.json index 020da5fb826d..e3d14156ffb4 100644 --- a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ReadScaleCrudTests/TestDatabaseReadReplicaCount.json +++ b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ReadScaleCrudTests/TestDatabaseReadReplicaCount.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps6593?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzNjU5Mz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps6272?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzNjI3Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "db79698d-2a9c-4217-a611-0cba5ea2bc41" + "fedb645c-dd8c-4012-a7c4-91746487a532" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "9aebf8ef-d7ca-402f-a750-1537f470e10b" + "bde2220e-8493-48d8-8d65-65d9ca9f8046" ], "x-ms-correlation-request-id": [ - "9aebf8ef-d7ca-402f-a750-1537f470e10b" + "bde2220e-8493-48d8-8d65-65d9ca9f8046" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022611Z:9aebf8ef-d7ca-402f-a750-1537f470e10b" + "WESTUS:20200925T004640Z:bde2220e-8493-48d8-8d65-65d9ca9f8046" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:26:11 GMT" + "Fri, 25 Sep 2020 00:46:40 GMT" ], "Content-Length": [ "172" @@ -63,23 +63,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6593\",\r\n \"name\": \"ps6593\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6272\",\r\n \"name\": \"ps6272\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6593/providers/Microsoft.Sql/servers/ps3481?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMzQ4MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6272/providers/Microsoft.Sql/servers/ps8324?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODMyND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bb3ffacb-71cb-4fac-b8c5-8603c2563df0" + "ea98a5fa-2d21-41aa-8175-271d281e81d3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "464f3ae7-ed06-4a4e-a385-faf7ea577c3d" + "076c4d85-49ad-4212-9beb-021385d5b4de" ], "x-ms-correlation-request-id": [ - "464f3ae7-ed06-4a4e-a385-faf7ea577c3d" + "076c4d85-49ad-4212-9beb-021385d5b4de" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022611Z:464f3ae7-ed06-4a4e-a385-faf7ea577c3d" + "WESTUS:20200925T004640Z:076c4d85-49ad-4212-9beb-021385d5b4de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:26:11 GMT" + "Fri, 25 Sep 2020 00:46:40 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,17 +123,17 @@ "206" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps3481' under resource group 'ps6593' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps8324' under resource group 'ps6272' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6593/providers/Microsoft.Sql/servers/ps3481?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMzQ4MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6272/providers/Microsoft.Sql/servers/ps8324?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODMyND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -147,19 +147,19 @@ "no-cache" ], "x-ms-request-id": [ - "93891d4f-6ca6-4b2f-bec0-29a05afcc07a" + "e66a2436-a345-4783-96cc-5c70ae383d91" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11991" ], "x-ms-correlation-request-id": [ - "13fd7aec-ce49-4489-8436-23ad05a759ce" + "84380eca-17ee-4dd6-b642-534daa2395b6" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022659Z:13fd7aec-ce49-4489-8436-23ad05a759ce" + "WESTUS:20200925T004729Z:84380eca-17ee-4dd6-b642-534daa2395b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -168,7 +168,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:26:59 GMT" + "Fri, 25 Sep 2020 00:47:28 GMT" ], "Content-Length": [ "415" @@ -180,23 +180,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps3481.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6593/providers/Microsoft.Sql/servers/ps3481\",\r\n \"name\": \"ps3481\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps8324.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6272/providers/Microsoft.Sql/servers/ps8324\",\r\n \"name\": \"ps8324\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6593/providers/Microsoft.Sql/servers/ps3481?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMzQ4MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6272/providers/Microsoft.Sql/servers/ps8324?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODMyND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d2b1a3a-1bdd-479f-86ab-b8480ec81bd6" + "3b4fa168-e000-4b78-966a-43294d07bc55" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -210,19 +210,19 @@ "no-cache" ], "x-ms-request-id": [ - "46d1c58b-af0c-4773-90a1-15a79521fe4f" + "9c2e9bd9-4449-44fb-b47f-018457e6bdd6" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11990" ], "x-ms-correlation-request-id": [ - "b1dd8536-a4b3-4638-8b86-2f191b969a7d" + "ad46c352-a4c7-40ad-ba08-db220fa90f8e" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022659Z:b1dd8536-a4b3-4638-8b86-2f191b969a7d" + "WESTUS:20200925T004729Z:ad46c352-a4c7-40ad-ba08-db220fa90f8e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -231,7 +231,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:26:59 GMT" + "Fri, 25 Sep 2020 00:47:28 GMT" ], "Content-Length": [ "415" @@ -243,23 +243,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps3481.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6593/providers/Microsoft.Sql/servers/ps3481\",\r\n \"name\": \"ps3481\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps8324.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6272/providers/Microsoft.Sql/servers/ps8324\",\r\n \"name\": \"ps8324\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6593/providers/Microsoft.Sql/servers/ps3481?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMzQ4MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6272/providers/Microsoft.Sql/servers/ps8324?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODMyND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9240d54e-9e0f-4f8d-84e4-7994c2491e73" + "02876d6d-1ac6-46d7-9ba5-af3a4f3d8b89" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -273,19 +273,19 @@ "no-cache" ], "x-ms-request-id": [ - "5fc5e842-1c68-4826-8552-931c00a13779" + "92e0e02b-8792-4aec-8153-7d80ae77bfbf" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11988" ], "x-ms-correlation-request-id": [ - "45f05b0c-f516-4108-8a44-9fdb4f70b7f8" + "de55379d-b0cf-40a6-ae94-534d9d2dd1ea" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022659Z:45f05b0c-f516-4108-8a44-9fdb4f70b7f8" + "WESTUS:20200925T004729Z:de55379d-b0cf-40a6-ae94-534d9d2dd1ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -294,7 +294,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:26:59 GMT" + "Fri, 25 Sep 2020 00:47:29 GMT" ], "Content-Length": [ "415" @@ -306,23 +306,86 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps3481.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6593/providers/Microsoft.Sql/servers/ps3481\",\r\n \"name\": \"ps3481\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps8324.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6272/providers/Microsoft.Sql/servers/ps8324\",\r\n \"name\": \"ps8324\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6593/providers/Microsoft.Sql/servers/ps3481?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMzQ4MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6272/providers/Microsoft.Sql/servers/ps8324?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODMyND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9df22a4a-6632-42e2-9ade-2fb7e9748129" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0cc55703-de79-4a13-ba94-39fef35a1f7b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-correlation-request-id": [ + "422162fe-614c-4d6e-b819-7bd0fb4fbaab" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200925T005049Z:422162fe-614c-4d6e-b819-7bd0fb4fbaab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 25 Sep 2020 00:50:48 GMT" + ], + "Content-Length": [ + "415" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps8324.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6272/providers/Microsoft.Sql/servers/ps8324\",\r\n \"name\": \"ps8324\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6272/providers/Microsoft.Sql/servers/ps8324?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODMyND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0b0d2218-5557-40e3-a803-6c3ae0229542" + "2b0cbbaa-f325-46fc-9a2c-48abb413c149" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -342,16 +405,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6593/providers/Microsoft.Sql/locations/southeastasia/serverOperationResults/15e16846-a4c1-47f8-9b04-a7946ba3214b?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6272/providers/Microsoft.Sql/locations/southeastasia/serverOperationResults/7ded90fa-d845-4d0f-bdd1-bff82b99ffe0?api-version=2019-06-01-preview" ], "Retry-After": [ "1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6593/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/15e16846-a4c1-47f8-9b04-a7946ba3214b?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6272/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/7ded90fa-d845-4d0f-bdd1-bff82b99ffe0?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "15e16846-a4c1-47f8-9b04-a7946ba3214b" + "7ded90fa-d845-4d0f-bdd1-bff82b99ffe0" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -360,10 +423,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "2c3774d7-61a6-4520-9bb2-1f897c09170a" + "53983897-16c0-424c-b000-e31106f58d96" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022613Z:2c3774d7-61a6-4520-9bb2-1f897c09170a" + "WESTUS:20200925T004642Z:53983897-16c0-424c-b000-e31106f58d96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -372,7 +435,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:26:12 GMT" + "Fri, 25 Sep 2020 00:46:42 GMT" ], "Content-Length": [ "74" @@ -384,17 +447,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-14T02:26:13.383Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-25T00:46:42.323Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6593/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/15e16846-a4c1-47f8-9b04-a7946ba3214b?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzE1ZTE2ODQ2LWE0YzEtNDdmOC05YjA0LWE3OTQ2YmEzMjE0Yj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6272/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/7ded90fa-d845-4d0f-bdd1-bff82b99ffe0?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzdkZWQ5MGZhLWQ4NDUtNGQwZi1iZGQxLWJmZjgyYjk5ZmZlMD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -411,7 +474,7 @@ "1" ], "x-ms-request-id": [ - "9dda58f4-6b11-49d3-96ee-b1933054a36b" + "7f155906-dd31-40b8-a2d5-bfea55b1a507" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -420,10 +483,10 @@ "11998" ], "x-ms-correlation-request-id": [ - "8e72754c-0527-462a-99df-4409e36e46a0" + "65cd2903-f924-477c-a71e-99dffc59d310" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022614Z:8e72754c-0527-462a-99df-4409e36e46a0" + "WESTUS:20200925T004643Z:65cd2903-f924-477c-a71e-99dffc59d310" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,7 +495,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:26:14 GMT" + "Fri, 25 Sep 2020 00:46:43 GMT" ], "Content-Length": [ "108" @@ -444,17 +507,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"15e16846-a4c1-47f8-9b04-a7946ba3214b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T02:26:13.383Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"7ded90fa-d845-4d0f-bdd1-bff82b99ffe0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:46:42.323Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6593/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/15e16846-a4c1-47f8-9b04-a7946ba3214b?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzE1ZTE2ODQ2LWE0YzEtNDdmOC05YjA0LWE3OTQ2YmEzMjE0Yj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6272/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/7ded90fa-d845-4d0f-bdd1-bff82b99ffe0?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzdkZWQ5MGZhLWQ4NDUtNGQwZi1iZGQxLWJmZjgyYjk5ZmZlMD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -471,7 +534,7 @@ "1" ], "x-ms-request-id": [ - "bca47ef1-8e9c-4af9-a863-7c798de2a713" + "e7404ca2-465b-4958-ad97-ea1be2c5631e" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -480,10 +543,10 @@ "11997" ], "x-ms-correlation-request-id": [ - "368f31c1-20a4-4716-ba62-cb779bc81b77" + "11236648-4399-4cd2-a8cc-578aa1c47da1" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022616Z:368f31c1-20a4-4716-ba62-cb779bc81b77" + "WESTUS:20200925T004644Z:11236648-4399-4cd2-a8cc-578aa1c47da1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -492,7 +555,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:26:15 GMT" + "Fri, 25 Sep 2020 00:46:44 GMT" ], "Content-Length": [ "108" @@ -504,17 +567,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"15e16846-a4c1-47f8-9b04-a7946ba3214b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T02:26:13.383Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"7ded90fa-d845-4d0f-bdd1-bff82b99ffe0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:46:42.323Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6593/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/15e16846-a4c1-47f8-9b04-a7946ba3214b?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzE1ZTE2ODQ2LWE0YzEtNDdmOC05YjA0LWE3OTQ2YmEzMjE0Yj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6272/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/7ded90fa-d845-4d0f-bdd1-bff82b99ffe0?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzdkZWQ5MGZhLWQ4NDUtNGQwZi1iZGQxLWJmZjgyYjk5ZmZlMD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -531,7 +594,7 @@ "1" ], "x-ms-request-id": [ - "267419ce-fb78-4df6-8b7f-653ca4035ea5" + "d5f35042-4205-4887-8829-bedcdfd2ecf5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -540,10 +603,10 @@ "11996" ], "x-ms-correlation-request-id": [ - "8c5e6418-098b-4fb8-b9f5-888a007369ce" + "dd93acff-abb0-4d6e-bba8-74debcdd42f2" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022617Z:8c5e6418-098b-4fb8-b9f5-888a007369ce" + "WESTUS:20200925T004646Z:dd93acff-abb0-4d6e-bba8-74debcdd42f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -552,7 +615,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:26:16 GMT" + "Fri, 25 Sep 2020 00:46:45 GMT" ], "Content-Length": [ "108" @@ -564,17 +627,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"15e16846-a4c1-47f8-9b04-a7946ba3214b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T02:26:13.383Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"7ded90fa-d845-4d0f-bdd1-bff82b99ffe0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:46:42.323Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6593/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/15e16846-a4c1-47f8-9b04-a7946ba3214b?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzE1ZTE2ODQ2LWE0YzEtNDdmOC05YjA0LWE3OTQ2YmEzMjE0Yj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6272/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/7ded90fa-d845-4d0f-bdd1-bff82b99ffe0?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzdkZWQ5MGZhLWQ4NDUtNGQwZi1iZGQxLWJmZjgyYjk5ZmZlMD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -588,10 +651,10 @@ "no-cache" ], "Retry-After": [ - "20" + "1" ], "x-ms-request-id": [ - "ac071e04-fc7b-42ac-8d50-3b0d7f2cfd87" + "67dda935-3128-4262-87c9-2bbe0e1c5469" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -600,10 +663,10 @@ "11995" ], "x-ms-correlation-request-id": [ - "e3aa1600-3dc8-4f9a-8b3a-f255d2d4e3c9" + "8a7192cf-af1e-40d1-87ad-4386f512bab1" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022618Z:e3aa1600-3dc8-4f9a-8b3a-f255d2d4e3c9" + "WESTUS:20200925T004647Z:8a7192cf-af1e-40d1-87ad-4386f512bab1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -612,7 +675,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:26:17 GMT" + "Fri, 25 Sep 2020 00:46:47 GMT" ], "Content-Length": [ "108" @@ -624,17 +687,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"15e16846-a4c1-47f8-9b04-a7946ba3214b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T02:26:13.383Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"7ded90fa-d845-4d0f-bdd1-bff82b99ffe0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:46:42.323Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6593/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/15e16846-a4c1-47f8-9b04-a7946ba3214b?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzE1ZTE2ODQ2LWE0YzEtNDdmOC05YjA0LWE3OTQ2YmEzMjE0Yj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6272/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/7ded90fa-d845-4d0f-bdd1-bff82b99ffe0?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzdkZWQ5MGZhLWQ4NDUtNGQwZi1iZGQxLWJmZjgyYjk5ZmZlMD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -651,7 +714,7 @@ "20" ], "x-ms-request-id": [ - "90767861-90e4-41d8-a7d6-0a37990bd40b" + "7fb24a44-9b97-4432-a87c-b9ffd10b358f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -660,10 +723,10 @@ "11994" ], "x-ms-correlation-request-id": [ - "c0daf193-8070-4355-bcdb-dd0dd2f65288" + "7e8b83ca-9ef0-4cdf-b954-9112ab5c6e1f" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022638Z:c0daf193-8070-4355-bcdb-dd0dd2f65288" + "WESTUS:20200925T004648Z:7e8b83ca-9ef0-4cdf-b954-9112ab5c6e1f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -672,7 +735,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:26:38 GMT" + "Fri, 25 Sep 2020 00:46:48 GMT" ], "Content-Length": [ "108" @@ -684,17 +747,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"15e16846-a4c1-47f8-9b04-a7946ba3214b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T02:26:13.383Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"7ded90fa-d845-4d0f-bdd1-bff82b99ffe0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:46:42.323Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6593/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/15e16846-a4c1-47f8-9b04-a7946ba3214b?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzE1ZTE2ODQ2LWE0YzEtNDdmOC05YjA0LWE3OTQ2YmEzMjE0Yj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6272/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/7ded90fa-d845-4d0f-bdd1-bff82b99ffe0?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzdkZWQ5MGZhLWQ4NDUtNGQwZi1iZGQxLWJmZjgyYjk5ZmZlMD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -708,10 +771,10 @@ "no-cache" ], "Retry-After": [ - "15" + "20" ], "x-ms-request-id": [ - "9af94770-84c4-4099-9b6a-da076b8b9181" + "9aabe612-3343-40e9-9c95-706e9b90b072" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -720,10 +783,10 @@ "11993" ], "x-ms-correlation-request-id": [ - "c3dd6381-312f-4478-9ef8-038acfdbe211" + "e8dd5671-28dd-41ad-94f0-88df100f8cfa" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022659Z:c3dd6381-312f-4478-9ef8-038acfdbe211" + "WESTUS:20200925T004708Z:e8dd5671-28dd-41ad-94f0-88df100f8cfa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -732,7 +795,67 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:26:58 GMT" + "Fri, 25 Sep 2020 00:47:08 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"7ded90fa-d845-4d0f-bdd1-bff82b99ffe0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:46:42.323Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6272/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/7ded90fa-d845-4d0f-bdd1-bff82b99ffe0?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzdkZWQ5MGZhLWQ4NDUtNGQwZi1iZGQxLWJmZjgyYjk5ZmZlMD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "e86ad7a8-6a83-4fa4-8333-ef6e46004b08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "14f645a8-00da-4646-959a-0287644a0506" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200925T004729Z:14f645a8-00da-4646-959a-0287644a0506" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 25 Sep 2020 00:47:28 GMT" ], "Content-Length": [ "107" @@ -744,23 +867,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"15e16846-a4c1-47f8-9b04-a7946ba3214b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-14T02:26:13.383Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"7ded90fa-d845-4d0f-bdd1-bff82b99ffe0\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-25T00:46:42.323Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6593/providers/Microsoft.Sql/servers/ps3481/databases/ps3798?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMzQ4MS9kYXRhYmFzZXMvcHMzNzk4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6272/providers/Microsoft.Sql/servers/ps8324/databases/ps700?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODMyNC9kYXRhYmFzZXMvcHM3MDA/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "465f74c2-59ce-4082-a68b-a796b8dcc7c6" + "d4021017-b518-411c-9f4b-2bb7a1f9a9ee" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -777,13 +900,13 @@ "gateway" ], "x-ms-request-id": [ - "fa1f3f7b-3faf-44af-8336-c3960f956888" + "746d28bf-3649-42ce-8246-167f9fdab073" ], "x-ms-correlation-request-id": [ - "fa1f3f7b-3faf-44af-8336-c3960f956888" + "746d28bf-3649-42ce-8246-167f9fdab073" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022659Z:fa1f3f7b-3faf-44af-8336-c3960f956888" + "WESTUS:20200925T004729Z:746d28bf-3649-42ce-8246-167f9fdab073" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -792,7 +915,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:26:59 GMT" + "Fri, 25 Sep 2020 00:47:29 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -801,20 +924,20 @@ "-1" ], "Content-Length": [ - "223" + "222" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps3481/databases/ps3798' under resource group 'ps6593' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps8324/databases/ps700' under resource group 'ps6272' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6593/providers/Microsoft.Sql/servers/ps3481/databases/ps3798?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMzQ4MS9kYXRhYmFzZXMvcHMzNzk4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6272/providers/Microsoft.Sql/servers/ps8324/databases/ps700?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODMyNC9kYXRhYmFzZXMvcHM3MDA/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -828,19 +951,19 @@ "no-cache" ], "x-ms-request-id": [ - "a62bd289-7ff7-4d51-8e4f-30faa6b8a435" + "47468025-c8a2-4063-aea0-4bd2a04ecbab" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11974" ], "x-ms-correlation-request-id": [ - "c4e37166-8b3e-49fd-ad57-7ec0d12ea953" + "905b3b5a-afd2-45cb-bce9-e794495d9ffc" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T023105Z:c4e37166-8b3e-49fd-ad57-7ec0d12ea953" + "WESTUS:20200925T005049Z:905b3b5a-afd2-45cb-bce9-e794495d9ffc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -849,10 +972,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:31:05 GMT" + "Fri, 25 Sep 2020 00:50:48 GMT" ], "Content-Length": [ - "927" + "925" ], "Content-Type": [ "application/json; charset=utf-8" @@ -861,23 +984,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"HS_Gen5\",\r\n \"tier\": \"Hyperscale\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"kind\": \"v12.0,user,vcore,hyperscale\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": -1,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"a273342a-19b8-4aab-b948-9496c578241f\",\r\n \"creationDate\": \"2020-09-14T02:28:59.233Z\",\r\n \"currentServiceObjectiveName\": \"HS_Gen5_4\",\r\n \"requestedServiceObjectiveName\": \"HS_Gen5_4\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"earliestRestoreDate\": \"2020-09-14T02:28:59.233Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"HS_Gen5\",\r\n \"tier\": \"Hyperscale\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6593/providers/Microsoft.Sql/servers/ps3481/databases/ps3798\",\r\n \"name\": \"ps3798\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"HS_Gen5\",\r\n \"tier\": \"Hyperscale\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"kind\": \"v12.0,user,vcore,hyperscale\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": -1,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"4172ba94-62cc-4a2f-819e-4e0bd012a72c\",\r\n \"creationDate\": \"2020-09-25T00:50:43.997Z\",\r\n \"currentServiceObjectiveName\": \"HS_Gen5_4\",\r\n \"requestedServiceObjectiveName\": \"HS_Gen5_4\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"earliestRestoreDate\": \"2020-09-25T00:50:43.997Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"HS_Gen5\",\r\n \"tier\": \"Hyperscale\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6272/providers/Microsoft.Sql/servers/ps8324/databases/ps700\",\r\n \"name\": \"ps700\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6593/providers/Microsoft.Sql/servers/ps3481/databases/ps3798?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMzQ4MS9kYXRhYmFzZXMvcHMzNzk4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6272/providers/Microsoft.Sql/servers/ps8324/databases/ps700?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODMyNC9kYXRhYmFzZXMvcHM3MDA/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bfc5cae6-0da0-4f9b-b957-bb30204abf35" + "a852c84a-df01-4366-97cf-1c41e2641c7d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -891,19 +1014,19 @@ "no-cache" ], "x-ms-request-id": [ - "b9a68492-b5cb-4742-b41d-564a49dd27f4" + "65b297ec-4c21-4db6-979f-f0ade757d855" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11973" ], "x-ms-correlation-request-id": [ - "f4b60514-22e2-4f26-9f1a-5bcc2399ba88" + "806eb508-78b1-463a-b5fa-a1aabe5edad6" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T023105Z:f4b60514-22e2-4f26-9f1a-5bcc2399ba88" + "WESTUS:20200925T005049Z:806eb508-78b1-463a-b5fa-a1aabe5edad6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -912,10 +1035,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:31:05 GMT" + "Fri, 25 Sep 2020 00:50:48 GMT" ], "Content-Length": [ - "927" + "925" ], "Content-Type": [ "application/json; charset=utf-8" @@ -924,23 +1047,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"HS_Gen5\",\r\n \"tier\": \"Hyperscale\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"kind\": \"v12.0,user,vcore,hyperscale\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": -1,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"a273342a-19b8-4aab-b948-9496c578241f\",\r\n \"creationDate\": \"2020-09-14T02:28:59.233Z\",\r\n \"currentServiceObjectiveName\": \"HS_Gen5_4\",\r\n \"requestedServiceObjectiveName\": \"HS_Gen5_4\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"earliestRestoreDate\": \"2020-09-14T02:28:59.233Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"HS_Gen5\",\r\n \"tier\": \"Hyperscale\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6593/providers/Microsoft.Sql/servers/ps3481/databases/ps3798\",\r\n \"name\": \"ps3798\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"HS_Gen5\",\r\n \"tier\": \"Hyperscale\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"kind\": \"v12.0,user,vcore,hyperscale\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": -1,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"4172ba94-62cc-4a2f-819e-4e0bd012a72c\",\r\n \"creationDate\": \"2020-09-25T00:50:43.997Z\",\r\n \"currentServiceObjectiveName\": \"HS_Gen5_4\",\r\n \"requestedServiceObjectiveName\": \"HS_Gen5_4\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"earliestRestoreDate\": \"2020-09-25T00:50:43.997Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"HS_Gen5\",\r\n \"tier\": \"Hyperscale\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6272/providers/Microsoft.Sql/servers/ps8324/databases/ps700\",\r\n \"name\": \"ps700\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6593/providers/Microsoft.Sql/servers/ps3481/databases/ps3798?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMzQ4MS9kYXRhYmFzZXMvcHMzNzk4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6272/providers/Microsoft.Sql/servers/ps8324/databases/ps700?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODMyNC9kYXRhYmFzZXMvcHM3MDA/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1a3170f8-44a5-4dfc-848e-399f8c30483c" + "15e1d54e-50f7-4f9f-8598-e39d481f259f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -954,19 +1077,19 @@ "no-cache" ], "x-ms-request-id": [ - "0047103c-d6e2-47ae-bb16-3a3434597c87" + "d4d0ee87-2582-4447-96fb-e8fd95610fd1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11971" ], "x-ms-correlation-request-id": [ - "4620a7dc-9f0d-4636-af4b-6f0c200f36ac" + "058cd3c5-2b98-4bb1-887c-f8aad8376ac0" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T023105Z:4620a7dc-9f0d-4636-af4b-6f0c200f36ac" + "WESTUS:20200925T005049Z:058cd3c5-2b98-4bb1-887c-f8aad8376ac0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -975,10 +1098,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:31:05 GMT" + "Fri, 25 Sep 2020 00:50:49 GMT" ], "Content-Length": [ - "927" + "925" ], "Content-Type": [ "application/json; charset=utf-8" @@ -987,23 +1110,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"HS_Gen5\",\r\n \"tier\": \"Hyperscale\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"kind\": \"v12.0,user,vcore,hyperscale\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": -1,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"a273342a-19b8-4aab-b948-9496c578241f\",\r\n \"creationDate\": \"2020-09-14T02:28:59.233Z\",\r\n \"currentServiceObjectiveName\": \"HS_Gen5_4\",\r\n \"requestedServiceObjectiveName\": \"HS_Gen5_4\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"earliestRestoreDate\": \"2020-09-14T02:28:59.233Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"HS_Gen5\",\r\n \"tier\": \"Hyperscale\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6593/providers/Microsoft.Sql/servers/ps3481/databases/ps3798\",\r\n \"name\": \"ps3798\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"HS_Gen5\",\r\n \"tier\": \"Hyperscale\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"kind\": \"v12.0,user,vcore,hyperscale\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": -1,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"4172ba94-62cc-4a2f-819e-4e0bd012a72c\",\r\n \"creationDate\": \"2020-09-25T00:50:43.997Z\",\r\n \"currentServiceObjectiveName\": \"HS_Gen5_4\",\r\n \"requestedServiceObjectiveName\": \"HS_Gen5_4\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"earliestRestoreDate\": \"2020-09-25T00:50:43.997Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"HS_Gen5\",\r\n \"tier\": \"Hyperscale\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6272/providers/Microsoft.Sql/servers/ps8324/databases/ps700\",\r\n \"name\": \"ps700\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6593/providers/Microsoft.Sql/servers/ps3481/databases/ps3798?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMzQ4MS9kYXRhYmFzZXMvcHMzNzk4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6272/providers/Microsoft.Sql/servers/ps8324/databases/ps700?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODMyNC9kYXRhYmFzZXMvcHM3MDA/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "83f0f4c9-c1ab-4ede-82b3-f4e9f8f449ff" + "b6dc6688-13bf-456a-855c-5328dab425cb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1017,19 +1140,19 @@ "no-cache" ], "x-ms-request-id": [ - "2348a07c-429f-478b-9d4d-af61558a7ffa" + "a0457aec-d22a-40d2-9f7b-3bbca802dd0f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11970" ], "x-ms-correlation-request-id": [ - "63f46ba4-d465-4cbf-8ab2-bd62a6e84b94" + "5eb0498d-57d6-4ebd-90a6-39b06ab3bfc1" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T023106Z:63f46ba4-d465-4cbf-8ab2-bd62a6e84b94" + "WESTUS:20200925T005050Z:5eb0498d-57d6-4ebd-90a6-39b06ab3bfc1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1038,10 +1161,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:31:05 GMT" + "Fri, 25 Sep 2020 00:50:49 GMT" ], "Content-Length": [ - "927" + "925" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1050,17 +1173,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"HS_Gen5\",\r\n \"tier\": \"Hyperscale\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"kind\": \"v12.0,user,vcore,hyperscale\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": -1,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"a273342a-19b8-4aab-b948-9496c578241f\",\r\n \"creationDate\": \"2020-09-14T02:28:59.233Z\",\r\n \"currentServiceObjectiveName\": \"HS_Gen5_4\",\r\n \"requestedServiceObjectiveName\": \"HS_Gen5_4\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"earliestRestoreDate\": \"2020-09-14T02:28:59.233Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"HS_Gen5\",\r\n \"tier\": \"Hyperscale\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6593/providers/Microsoft.Sql/servers/ps3481/databases/ps3798\",\r\n \"name\": \"ps3798\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"HS_Gen5\",\r\n \"tier\": \"Hyperscale\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"kind\": \"v12.0,user,vcore,hyperscale\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": -1,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"4172ba94-62cc-4a2f-819e-4e0bd012a72c\",\r\n \"creationDate\": \"2020-09-25T00:50:43.997Z\",\r\n \"currentServiceObjectiveName\": \"HS_Gen5_4\",\r\n \"requestedServiceObjectiveName\": \"HS_Gen5_4\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"earliestRestoreDate\": \"2020-09-25T00:50:43.997Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"HS_Gen5\",\r\n \"tier\": \"Hyperscale\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6272/providers/Microsoft.Sql/servers/ps8324/databases/ps700\",\r\n \"name\": \"ps700\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6593/providers/Microsoft.Sql/servers/ps3481/databases/ps3798?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMzQ4MS9kYXRhYmFzZXMvcHMzNzk4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6272/providers/Microsoft.Sql/servers/ps8324/databases/ps700?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODMyNC9kYXRhYmFzZXMvcHM3MDA/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1074,19 +1197,19 @@ "no-cache" ], "x-ms-request-id": [ - "14efa732-e25c-4a10-b008-54c43ef7c610" + "31cf0526-7d28-43c2-91a4-9e58b42b34f2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11968" ], "x-ms-correlation-request-id": [ - "c7cfd565-9251-44e1-a084-3b64d4bcb024" + "33a2376a-013e-452c-a589-ae3ad3fccc43" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T023122Z:c7cfd565-9251-44e1-a084-3b64d4bcb024" + "WESTUS:20200925T005106Z:33a2376a-013e-452c-a589-ae3ad3fccc43" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1095,10 +1218,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:31:21 GMT" + "Fri, 25 Sep 2020 00:51:05 GMT" ], "Content-Length": [ - "928" + "926" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1107,23 +1230,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"HS_Gen5\",\r\n \"tier\": \"Hyperscale\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"kind\": \"v12.0,user,vcore,hyperscale\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": -1,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"a273342a-19b8-4aab-b948-9496c578241f\",\r\n \"creationDate\": \"2020-09-14T02:28:59.233Z\",\r\n \"currentServiceObjectiveName\": \"HS_Gen5_4\",\r\n \"requestedServiceObjectiveName\": \"HS_Gen5_4\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"earliestRestoreDate\": \"2020-09-14T02:28:59.233Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"HS_Gen5\",\r\n \"tier\": \"Hyperscale\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6593/providers/Microsoft.Sql/servers/ps3481/databases/ps3798\",\r\n \"name\": \"ps3798\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"HS_Gen5\",\r\n \"tier\": \"Hyperscale\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"kind\": \"v12.0,user,vcore,hyperscale\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": -1,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"4172ba94-62cc-4a2f-819e-4e0bd012a72c\",\r\n \"creationDate\": \"2020-09-25T00:50:43.997Z\",\r\n \"currentServiceObjectiveName\": \"HS_Gen5_4\",\r\n \"requestedServiceObjectiveName\": \"HS_Gen5_4\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"earliestRestoreDate\": \"2020-09-25T00:50:43.997Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"HS_Gen5\",\r\n \"tier\": \"Hyperscale\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6272/providers/Microsoft.Sql/servers/ps8324/databases/ps700\",\r\n \"name\": \"ps700\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6593/providers/Microsoft.Sql/servers/ps3481/databases/ps3798?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMzQ4MS9kYXRhYmFzZXMvcHMzNzk4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6272/providers/Microsoft.Sql/servers/ps8324/databases/ps700?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODMyNC9kYXRhYmFzZXMvcHM3MDA/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"HS\",\r\n \"tier\": \"Hyperscale\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 4\r\n },\r\n \"properties\": {\r\n \"maxSizeBytes\": 0,\r\n \"readScale\": \"\"\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0e2d8863-4970-479e-82ed-721846c91067" + "0bca88ff-d613-4cb8-9667-b17e51f568fe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1143,16 +1266,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6593/providers/Microsoft.Sql/locations/southeastasia/databaseOperationResults/9806cce0-8197-4a98-b069-2c4bfbce73f7?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6272/providers/Microsoft.Sql/locations/southeastasia/databaseOperationResults/d2c6a88b-a767-4ee5-8772-405692393c72?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6593/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/9806cce0-8197-4a98-b069-2c4bfbce73f7?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6272/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/d2c6a88b-a767-4ee5-8772-405692393c72?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "9806cce0-8197-4a98-b069-2c4bfbce73f7" + "d2c6a88b-a767-4ee5-8772-405692393c72" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1161,10 +1284,10 @@ "1198" ], "x-ms-correlation-request-id": [ - "641b7e54-a52c-40e3-ba85-949fa646755b" + "fc984e78-fe79-4129-9686-57385aeb8eac" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022700Z:641b7e54-a52c-40e3-ba85-949fa646755b" + "WESTUS:20200925T004730Z:fc984e78-fe79-4129-9686-57385aeb8eac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1173,10 +1296,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:27:00 GMT" + "Fri, 25 Sep 2020 00:47:30 GMT" ], "Content-Length": [ - "76" + "75" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1185,23 +1308,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2020-09-14T02:27:00.603Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2020-09-25T00:47:30.56Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6593/providers/Microsoft.Sql/servers/ps3481/databases/ps3798?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMzQ4MS9kYXRhYmFzZXMvcHMzNzk4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6272/providers/Microsoft.Sql/servers/ps8324/databases/ps700?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODMyNC9kYXRhYmFzZXMvcHM3MDA/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": 0,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 0\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d78ea323-c908-4ff2-9608-f9b40a56e500" + "54f84536-7928-414c-bd65-c73c7db55923" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1221,16 +1344,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6593/providers/Microsoft.Sql/locations/southeastasia/databaseOperationResults/7495d298-cb03-43bf-be42-245efcb67598?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6272/providers/Microsoft.Sql/locations/southeastasia/databaseOperationResults/3d4271ab-ac84-473a-9ea8-79cb230b1167?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6593/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/7495d298-cb03-43bf-be42-245efcb67598?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6272/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/3d4271ab-ac84-473a-9ea8-79cb230b1167?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "7495d298-cb03-43bf-be42-245efcb67598" + "633746d8-4f2b-4147-8c7a-a29b78d15a67" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1239,10 +1362,10 @@ "1197" ], "x-ms-correlation-request-id": [ - "4856507b-9f2a-471d-ae7d-0786f5a1ecdb" + "bc49b6c6-9106-4144-9dd8-e50408b924d3" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T023106Z:4856507b-9f2a-471d-ae7d-0786f5a1ecdb" + "WESTUS:20200925T005050Z:bc49b6c6-9106-4144-9dd8-e50408b924d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1251,7 +1374,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:31:06 GMT" + "Fri, 25 Sep 2020 00:50:49 GMT" ], "Content-Length": [ "75" @@ -1263,17 +1386,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-09-14T02:31:06.42Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-09-25T00:50:50.45Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6593/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/9806cce0-8197-4a98-b069-2c4bfbce73f7?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vOTgwNmNjZTAtODE5Ny00YTk4LWIwNjktMmM0YmZiY2U3M2Y3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6272/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/d2c6a88b-a767-4ee5-8772-405692393c72?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDJjNmE4OGItYTc2Ny00ZWU1LTg3NzItNDA1NjkyMzkzYzcyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1290,19 +1413,19 @@ "15" ], "x-ms-request-id": [ - "b3de5d83-de0d-4463-baff-dfe2ec6476e9" + "ef512f04-d46d-4346-a75d-452dc9b569ea" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11987" ], "x-ms-correlation-request-id": [ - "9d53b43f-e4f4-434a-b172-d506eb6d0b3c" + "e0daff9d-4440-407e-970d-1006c3bbeeb2" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022716Z:9d53b43f-e4f4-434a-b172-d506eb6d0b3c" + "WESTUS:20200925T004746Z:e0daff9d-4440-407e-970d-1006c3bbeeb2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1311,10 +1434,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:27:15 GMT" + "Fri, 25 Sep 2020 00:47:45 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1323,17 +1446,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"9806cce0-8197-4a98-b069-2c4bfbce73f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T02:27:00.603Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"d2c6a88b-a767-4ee5-8772-405692393c72\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:47:30.56Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6593/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/9806cce0-8197-4a98-b069-2c4bfbce73f7?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vOTgwNmNjZTAtODE5Ny00YTk4LWIwNjktMmM0YmZiY2U3M2Y3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6272/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/d2c6a88b-a767-4ee5-8772-405692393c72?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDJjNmE4OGItYTc2Ny00ZWU1LTg3NzItNDA1NjkyMzkzYzcyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1350,19 +1473,19 @@ "15" ], "x-ms-request-id": [ - "baaeb3ec-8b75-4fb0-aa69-05a372b06f5b" + "eb0b3102-82e6-4215-91dd-2dafb4715f61" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11986" ], "x-ms-correlation-request-id": [ - "ae876f53-33b8-4b44-81eb-b6126b9204e3" + "66813760-527a-4be9-a82c-3dca7c7c9a7b" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022731Z:ae876f53-33b8-4b44-81eb-b6126b9204e3" + "WESTUS:20200925T004801Z:66813760-527a-4be9-a82c-3dca7c7c9a7b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1371,10 +1494,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:27:30 GMT" + "Fri, 25 Sep 2020 00:48:00 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1383,17 +1506,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"9806cce0-8197-4a98-b069-2c4bfbce73f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T02:27:00.603Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"d2c6a88b-a767-4ee5-8772-405692393c72\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:47:30.56Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6593/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/9806cce0-8197-4a98-b069-2c4bfbce73f7?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vOTgwNmNjZTAtODE5Ny00YTk4LWIwNjktMmM0YmZiY2U3M2Y3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6272/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/d2c6a88b-a767-4ee5-8772-405692393c72?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDJjNmE4OGItYTc2Ny00ZWU1LTg3NzItNDA1NjkyMzkzYzcyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1410,19 +1533,19 @@ "15" ], "x-ms-request-id": [ - "5e5a1e24-e877-4d5f-82bb-16afcba93afe" + "2f61ea60-4e45-4b84-b53f-11f1c0ab1c24" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11985" ], "x-ms-correlation-request-id": [ - "3eb062ef-b45f-4448-bc1c-18678926eab3" + "45f8f374-49a5-4049-af88-83519ed3d520" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022746Z:3eb062ef-b45f-4448-bc1c-18678926eab3" + "WESTUS:20200925T004816Z:45f8f374-49a5-4049-af88-83519ed3d520" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1431,10 +1554,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:27:46 GMT" + "Fri, 25 Sep 2020 00:48:15 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1443,17 +1566,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"9806cce0-8197-4a98-b069-2c4bfbce73f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T02:27:00.603Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"d2c6a88b-a767-4ee5-8772-405692393c72\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:47:30.56Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6593/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/9806cce0-8197-4a98-b069-2c4bfbce73f7?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vOTgwNmNjZTAtODE5Ny00YTk4LWIwNjktMmM0YmZiY2U3M2Y3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6272/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/d2c6a88b-a767-4ee5-8772-405692393c72?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDJjNmE4OGItYTc2Ny00ZWU1LTg3NzItNDA1NjkyMzkzYzcyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1470,19 +1593,19 @@ "15" ], "x-ms-request-id": [ - "52f4ca9d-843e-4bc5-a0af-6cd3b5bb20c6" + "e3fc062e-6ea3-4619-92f8-256ce162a141" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11984" ], "x-ms-correlation-request-id": [ - "ab4d3545-d4ab-4710-9849-de5776582426" + "5791bc6f-7d84-478f-8163-7f45664d30c3" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022801Z:ab4d3545-d4ab-4710-9849-de5776582426" + "WESTUS:20200925T004831Z:5791bc6f-7d84-478f-8163-7f45664d30c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1491,10 +1614,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:28:01 GMT" + "Fri, 25 Sep 2020 00:48:30 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1503,17 +1626,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"9806cce0-8197-4a98-b069-2c4bfbce73f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T02:27:00.603Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"d2c6a88b-a767-4ee5-8772-405692393c72\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:47:30.56Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6593/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/9806cce0-8197-4a98-b069-2c4bfbce73f7?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vOTgwNmNjZTAtODE5Ny00YTk4LWIwNjktMmM0YmZiY2U3M2Y3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6272/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/d2c6a88b-a767-4ee5-8772-405692393c72?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDJjNmE4OGItYTc2Ny00ZWU1LTg3NzItNDA1NjkyMzkzYzcyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1530,19 +1653,19 @@ "15" ], "x-ms-request-id": [ - "4044cfd3-fcf5-49b5-83cc-4ec1267021c2" + "8be6b4c8-61b4-484a-8017-5104ea6d9b68" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11983" ], "x-ms-correlation-request-id": [ - "fc7c65c0-c4f4-47c6-ae4d-23165e0db3dc" + "c68b3bb7-4eb8-4c2c-9933-37711ef2ff5c" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022816Z:fc7c65c0-c4f4-47c6-ae4d-23165e0db3dc" + "WESTUS:20200925T004846Z:c68b3bb7-4eb8-4c2c-9933-37711ef2ff5c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1551,10 +1674,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:28:16 GMT" + "Fri, 25 Sep 2020 00:48:46 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1563,17 +1686,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"9806cce0-8197-4a98-b069-2c4bfbce73f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T02:27:00.603Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"d2c6a88b-a767-4ee5-8772-405692393c72\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:47:30.56Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6593/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/9806cce0-8197-4a98-b069-2c4bfbce73f7?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vOTgwNmNjZTAtODE5Ny00YTk4LWIwNjktMmM0YmZiY2U3M2Y3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6272/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/d2c6a88b-a767-4ee5-8772-405692393c72?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDJjNmE4OGItYTc2Ny00ZWU1LTg3NzItNDA1NjkyMzkzYzcyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1590,19 +1713,19 @@ "15" ], "x-ms-request-id": [ - "429d285b-564e-48f7-ad36-b04f2bf0022c" + "b2786c29-b126-42dc-92f0-6afe9de91a32" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11982" ], "x-ms-correlation-request-id": [ - "eca6901d-c9d4-441b-b38d-dab422ea4e6c" + "1bc06cd5-03c4-4626-881a-032ea90cc0a4" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022832Z:eca6901d-c9d4-441b-b38d-dab422ea4e6c" + "WESTUS:20200925T004902Z:1bc06cd5-03c4-4626-881a-032ea90cc0a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1611,10 +1734,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:28:31 GMT" + "Fri, 25 Sep 2020 00:49:02 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1623,17 +1746,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"9806cce0-8197-4a98-b069-2c4bfbce73f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T02:27:00.603Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"d2c6a88b-a767-4ee5-8772-405692393c72\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:47:30.56Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6593/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/9806cce0-8197-4a98-b069-2c4bfbce73f7?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vOTgwNmNjZTAtODE5Ny00YTk4LWIwNjktMmM0YmZiY2U3M2Y3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6272/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/d2c6a88b-a767-4ee5-8772-405692393c72?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDJjNmE4OGItYTc2Ny00ZWU1LTg3NzItNDA1NjkyMzkzYzcyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1650,19 +1773,19 @@ "15" ], "x-ms-request-id": [ - "998f1097-6a02-42c5-a88c-f345d79b4fc1" + "e81c0bb5-a118-4a11-bcc9-72a84e002126" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11981" ], "x-ms-correlation-request-id": [ - "d46b4f9e-6d8c-44ac-8b85-6b9d7a1645da" + "1bdcd9d6-1f13-4b6c-a8fb-7b0403ff5b02" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022847Z:d46b4f9e-6d8c-44ac-8b85-6b9d7a1645da" + "WESTUS:20200925T004917Z:1bdcd9d6-1f13-4b6c-a8fb-7b0403ff5b02" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1671,10 +1794,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:28:46 GMT" + "Fri, 25 Sep 2020 00:49:17 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1683,17 +1806,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"9806cce0-8197-4a98-b069-2c4bfbce73f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T02:27:00.603Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"d2c6a88b-a767-4ee5-8772-405692393c72\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:47:30.56Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6593/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/9806cce0-8197-4a98-b069-2c4bfbce73f7?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vOTgwNmNjZTAtODE5Ny00YTk4LWIwNjktMmM0YmZiY2U3M2Y3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6272/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/d2c6a88b-a767-4ee5-8772-405692393c72?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDJjNmE4OGItYTc2Ny00ZWU1LTg3NzItNDA1NjkyMzkzYzcyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1710,19 +1833,19 @@ "15" ], "x-ms-request-id": [ - "e2b91c7b-39e1-42ff-82e5-99b9ebd0ef42" + "844dda6b-624f-43fc-8cd4-e8d92fa5108f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11980" ], "x-ms-correlation-request-id": [ - "8a16fd12-91c7-45ac-97fa-79e9939dbefe" + "1a86eb43-5f9a-4adf-a623-2e22e0ad86cf" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022902Z:8a16fd12-91c7-45ac-97fa-79e9939dbefe" + "WESTUS:20200925T004932Z:1a86eb43-5f9a-4adf-a623-2e22e0ad86cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1731,10 +1854,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:29:01 GMT" + "Fri, 25 Sep 2020 00:49:32 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1743,17 +1866,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"9806cce0-8197-4a98-b069-2c4bfbce73f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T02:27:00.603Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"d2c6a88b-a767-4ee5-8772-405692393c72\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:47:30.56Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6593/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/9806cce0-8197-4a98-b069-2c4bfbce73f7?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vOTgwNmNjZTAtODE5Ny00YTk4LWIwNjktMmM0YmZiY2U3M2Y3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6272/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/d2c6a88b-a767-4ee5-8772-405692393c72?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDJjNmE4OGItYTc2Ny00ZWU1LTg3NzItNDA1NjkyMzkzYzcyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1770,19 +1893,19 @@ "15" ], "x-ms-request-id": [ - "b76892ee-7648-4413-a0ed-9b56df2a0774" + "daedf566-b828-4caa-bd0e-2f406eb9cf40" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11979" ], "x-ms-correlation-request-id": [ - "35aaff09-85bd-4a70-ac04-de52e0fb10aa" + "3caf450f-7482-4014-aed0-4913de55863b" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022917Z:35aaff09-85bd-4a70-ac04-de52e0fb10aa" + "WESTUS:20200925T004947Z:3caf450f-7482-4014-aed0-4913de55863b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1791,10 +1914,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:29:17 GMT" + "Fri, 25 Sep 2020 00:49:47 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1803,17 +1926,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"9806cce0-8197-4a98-b069-2c4bfbce73f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T02:27:00.603Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"d2c6a88b-a767-4ee5-8772-405692393c72\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:47:30.56Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6593/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/9806cce0-8197-4a98-b069-2c4bfbce73f7?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vOTgwNmNjZTAtODE5Ny00YTk4LWIwNjktMmM0YmZiY2U3M2Y3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6272/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/d2c6a88b-a767-4ee5-8772-405692393c72?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDJjNmE4OGItYTc2Ny00ZWU1LTg3NzItNDA1NjkyMzkzYzcyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1830,19 +1953,19 @@ "15" ], "x-ms-request-id": [ - "6fc2a187-15c3-4d80-a7c6-c86747f29c34" + "b3d03ffd-5182-44cd-a59d-95618ea830fd" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11978" ], "x-ms-correlation-request-id": [ - "784786be-c400-4633-ba1f-b67c4c789fd1" + "db89e82a-5416-4423-9b46-75713e0a3699" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022933Z:784786be-c400-4633-ba1f-b67c4c789fd1" + "WESTUS:20200925T005003Z:db89e82a-5416-4423-9b46-75713e0a3699" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1851,10 +1974,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:29:32 GMT" + "Fri, 25 Sep 2020 00:50:02 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1863,17 +1986,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"9806cce0-8197-4a98-b069-2c4bfbce73f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T02:27:00.603Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"d2c6a88b-a767-4ee5-8772-405692393c72\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:47:30.56Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6593/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/9806cce0-8197-4a98-b069-2c4bfbce73f7?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vOTgwNmNjZTAtODE5Ny00YTk4LWIwNjktMmM0YmZiY2U3M2Y3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6272/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/d2c6a88b-a767-4ee5-8772-405692393c72?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDJjNmE4OGItYTc2Ny00ZWU1LTg3NzItNDA1NjkyMzkzYzcyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1890,19 +2013,19 @@ "15" ], "x-ms-request-id": [ - "37cd7bd2-6fca-46b2-af1b-1fd8d608d985" + "920e922b-4a47-4a9e-8eab-7be764448cca" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11977" ], "x-ms-correlation-request-id": [ - "baefd425-8acf-4c16-831f-2b3b1a1f018c" + "22d333db-991b-4c7c-8c7c-283c2c040925" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022948Z:baefd425-8acf-4c16-831f-2b3b1a1f018c" + "WESTUS:20200925T005018Z:22d333db-991b-4c7c-8c7c-283c2c040925" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1911,10 +2034,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:29:47 GMT" + "Fri, 25 Sep 2020 00:50:17 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1923,17 +2046,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"9806cce0-8197-4a98-b069-2c4bfbce73f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T02:27:00.603Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"d2c6a88b-a767-4ee5-8772-405692393c72\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:47:30.56Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6593/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/9806cce0-8197-4a98-b069-2c4bfbce73f7?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vOTgwNmNjZTAtODE5Ny00YTk4LWIwNjktMmM0YmZiY2U3M2Y3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6272/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/d2c6a88b-a767-4ee5-8772-405692393c72?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDJjNmE4OGItYTc2Ny00ZWU1LTg3NzItNDA1NjkyMzkzYzcyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1950,19 +2073,19 @@ "15" ], "x-ms-request-id": [ - "864d355b-0474-4739-b21f-a431bf93edb9" + "3ac09cab-d3a6-4ba6-9576-75843380ed5d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11976" ], "x-ms-correlation-request-id": [ - "2199929d-7113-46f8-a06d-1e1cda983df8" + "ee227462-8139-4149-b5bf-e6a9d0b3514a" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T023003Z:2199929d-7113-46f8-a06d-1e1cda983df8" + "WESTUS:20200925T005033Z:ee227462-8139-4149-b5bf-e6a9d0b3514a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1971,10 +2094,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:30:02 GMT" + "Fri, 25 Sep 2020 00:50:33 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1983,17 +2106,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"9806cce0-8197-4a98-b069-2c4bfbce73f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T02:27:00.603Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"d2c6a88b-a767-4ee5-8772-405692393c72\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:47:30.56Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6593/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/9806cce0-8197-4a98-b069-2c4bfbce73f7?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vOTgwNmNjZTAtODE5Ny00YTk4LWIwNjktMmM0YmZiY2U3M2Y3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6272/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/d2c6a88b-a767-4ee5-8772-405692393c72?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDJjNmE4OGItYTc2Ny00ZWU1LTg3NzItNDA1NjkyMzkzYzcyP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2010,19 +2133,19 @@ "15" ], "x-ms-request-id": [ - "a162cd57-b972-4359-bf10-0ec3883befb9" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "9dda7696-42c0-4f3b-9977-3bbf8e424cf2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], "x-ms-correlation-request-id": [ - "b8641970-f522-46f0-871a-51aa4c041b70" + "d6e10f56-e7f4-4398-9de4-7bff5b55c720" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T023018Z:b8641970-f522-46f0-871a-51aa4c041b70" + "WESTUS:20200925T005048Z:d6e10f56-e7f4-4398-9de4-7bff5b55c720" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2031,10 +2154,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:30:18 GMT" + "Fri, 25 Sep 2020 00:50:48 GMT" ], "Content-Length": [ - "108" + "106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2043,17 +2166,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"9806cce0-8197-4a98-b069-2c4bfbce73f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T02:27:00.603Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"d2c6a88b-a767-4ee5-8772-405692393c72\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-25T00:47:30.56Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6593/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/9806cce0-8197-4a98-b069-2c4bfbce73f7?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vOTgwNmNjZTAtODE5Ny00YTk4LWIwNjktMmM0YmZiY2U3M2Y3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6272/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/3d4271ab-ac84-473a-9ea8-79cb230b1167?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vM2Q0MjcxYWItYWM4NC00NzNhLTllYTgtNzljYjIzMGIxMTY3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -2070,19 +2193,19 @@ "15" ], "x-ms-request-id": [ - "fb62a4e4-d731-454e-ae55-d04f83cf21fe" + "a12a6b6b-655f-4510-b883-7ea99e2fea5c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11969" ], "x-ms-correlation-request-id": [ - "a14ea6f0-cf10-4939-a86a-ffd668b23704" + "8d1ac487-bcba-4b22-9c0b-ac2a277b6061" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T023034Z:a14ea6f0-cf10-4939-a86a-ffd668b23704" + "WESTUS:20200925T005105Z:8d1ac487-bcba-4b22-9c0b-ac2a277b6061" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2091,10 +2214,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:30:33 GMT" + "Fri, 25 Sep 2020 00:51:05 GMT" ], "Content-Length": [ - "108" + "106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2103,20 +2226,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"9806cce0-8197-4a98-b069-2c4bfbce73f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T02:27:00.603Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"3d4271ab-ac84-473a-9ea8-79cb230b1167\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-25T00:50:50.45Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6593/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/9806cce0-8197-4a98-b069-2c4bfbce73f7?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vOTgwNmNjZTAtODE5Ny00YTk4LWIwNjktMmM0YmZiY2U3M2Y3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps6272?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzNjI3Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "286e5a2f-bbd6-4258-925f-5a853e44f6b5" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" ] }, "ResponseHeaders": { @@ -2126,23 +2255,23 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], "Retry-After": [ "15" ], - "x-ms-request-id": [ - "3d86e563-6000-4443-8731-8f59fc284fcc" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "x-ms-request-id": [ + "1d3e1da4-b93b-4370-8753-6da353cc58a7" ], "x-ms-correlation-request-id": [ - "e2700990-0fb0-404b-8e4e-ec016fc5cf36" + "1d3e1da4-b93b-4370-8753-6da353cc58a7" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T023049Z:e2700990-0fb0-404b-8e4e-ec016fc5cf36" + "WESTUS:20200925T005106Z:1d3e1da4-b93b-4370-8753-6da353cc58a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2151,32 +2280,29 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:30:48 GMT" - ], - "Content-Length": [ - "108" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Fri, 25 Sep 2020 00:51:06 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"name\": \"9806cce0-8197-4a98-b069-2c4bfbce73f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T02:27:00.603Z\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6593/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/9806cce0-8197-4a98-b069-2c4bfbce73f7?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vOTgwNmNjZTAtODE5Ny00YTk4LWIwNjktMmM0YmZiY2U3M2Y3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" ] }, "ResponseHeaders": { @@ -2186,23 +2312,23 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], "Retry-After": [ "15" ], - "x-ms-request-id": [ - "7c454431-d15a-48a1-bb1b-e913c89b49ef" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11991" + ], + "x-ms-request-id": [ + "2a98d22a-3ae3-4522-9746-8d3636089bf4" ], "x-ms-correlation-request-id": [ - "d1c170dd-0501-46ce-abba-2a39adecdaf4" + "2a98d22a-3ae3-4522-9746-8d3636089bf4" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T023105Z:d1c170dd-0501-46ce-abba-2a39adecdaf4" + "WESTUS:20200925T005122Z:2a98d22a-3ae3-4522-9746-8d3636089bf4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2211,32 +2337,29 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:31:04 GMT" - ], - "Content-Length": [ - "107" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Fri, 25 Sep 2020 00:51:21 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"name\": \"9806cce0-8197-4a98-b069-2c4bfbce73f7\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-14T02:27:00.603Z\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6593/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/7495d298-cb03-43bf-be42-245efcb67598?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjU5My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNzQ5NWQyOTgtY2IwMy00M2JmLWJlNDItMjQ1ZWZjYjY3NTk4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" ] }, "ResponseHeaders": { @@ -2246,23 +2369,23 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], "Retry-After": [ "15" ], - "x-ms-request-id": [ - "c46d054c-fa51-4c98-beff-9d467fb682e1" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11990" + ], + "x-ms-request-id": [ + "acfb982c-d91f-4f4f-b6bf-5696d89dbfff" ], "x-ms-correlation-request-id": [ - "bc6b6c34-d6aa-4434-be85-eef16d0ffd5d" + "acfb982c-d91f-4f4f-b6bf-5696d89dbfff" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T023121Z:bc6b6c34-d6aa-4434-be85-eef16d0ffd5d" + "WESTUS:20200925T005137Z:acfb982c-d91f-4f4f-b6bf-5696d89dbfff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2271,35 +2394,83 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:31:21 GMT" + "Fri, 25 Sep 2020 00:51:37 GMT" + ], + "Expires": [ + "-1" ], "Content-Length": [ - "106" + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "application/json; charset=utf-8" + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "fdc4745d-f675-4682-9fe8-067d3a6e288f" + ], + "x-ms-correlation-request-id": [ + "fdc4745d-f675-4682-9fe8-067d3a6e288f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200925T005152Z:fdc4745d-f675-4682-9fe8-067d3a6e288f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 25 Sep 2020 00:51:52 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"name\": \"7495d298-cb03-43bf-be42-245efcb67598\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-14T02:31:06.42Z\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps6593?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzNjU5Mz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "19b59d58-3a5e-44a4-acc6-1f69f69c427f" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -2313,22 +2484,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" ], "x-ms-request-id": [ - "360dc19e-e0ce-4ff4-84c1-02d462175442" + "027ee453-01d7-494d-8c6b-0f0cb4c5caac" ], "x-ms-correlation-request-id": [ - "360dc19e-e0ce-4ff4-84c1-02d462175442" + "027ee453-01d7-494d-8c6b-0f0cb4c5caac" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T023122Z:360dc19e-e0ce-4ff4-84c1-02d462175442" + "WESTUS:20200925T005207Z:027ee453-01d7-494d-8c6b-0f0cb4c5caac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2337,7 +2508,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:31:22 GMT" + "Fri, 25 Sep 2020 00:52:07 GMT" ], "Expires": [ "-1" @@ -2350,13 +2521,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU9UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -2370,22 +2541,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11987" ], "x-ms-request-id": [ - "620562d6-8fd6-43af-82a4-04c35f306690" + "8d0f7070-a843-4c45-8b5d-7711fcb5a341" ], "x-ms-correlation-request-id": [ - "620562d6-8fd6-43af-82a4-04c35f306690" + "8d0f7070-a843-4c45-8b5d-7711fcb5a341" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T023138Z:620562d6-8fd6-43af-82a4-04c35f306690" + "WESTUS:20200925T005222Z:8d0f7070-a843-4c45-8b5d-7711fcb5a341" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2394,7 +2565,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:31:37 GMT" + "Fri, 25 Sep 2020 00:52:22 GMT" ], "Expires": [ "-1" @@ -2407,13 +2578,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU9UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -2427,22 +2598,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11986" ], "x-ms-request-id": [ - "910006a7-d1be-4ed6-aef4-4e370fe83f27" + "bd80c238-7b45-402c-b175-5feb98370489" ], "x-ms-correlation-request-id": [ - "910006a7-d1be-4ed6-aef4-4e370fe83f27" + "bd80c238-7b45-402c-b175-5feb98370489" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T023153Z:910006a7-d1be-4ed6-aef4-4e370fe83f27" + "WESTUS:20200925T005237Z:bd80c238-7b45-402c-b175-5feb98370489" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2451,7 +2622,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:31:52 GMT" + "Fri, 25 Sep 2020 00:52:37 GMT" ], "Expires": [ "-1" @@ -2464,13 +2635,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU9UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -2484,22 +2655,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11985" ], "x-ms-request-id": [ - "38657df2-ed53-4015-9a3c-f3cc86202680" + "3b49c8c2-54cb-4449-a9ac-0043bc4844c9" ], "x-ms-correlation-request-id": [ - "38657df2-ed53-4015-9a3c-f3cc86202680" + "3b49c8c2-54cb-4449-a9ac-0043bc4844c9" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T023208Z:38657df2-ed53-4015-9a3c-f3cc86202680" + "WESTUS:20200925T005252Z:3b49c8c2-54cb-4449-a9ac-0043bc4844c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2508,7 +2679,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:32:07 GMT" + "Fri, 25 Sep 2020 00:52:52 GMT" ], "Expires": [ "-1" @@ -2521,13 +2692,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU9UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -2541,22 +2712,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11984" ], "x-ms-request-id": [ - "2c45985b-cab8-4e8d-8f68-7d6d5b02eb3b" + "c3bd9fac-f9b7-4754-969f-9b94ac008884" ], "x-ms-correlation-request-id": [ - "2c45985b-cab8-4e8d-8f68-7d6d5b02eb3b" + "c3bd9fac-f9b7-4754-969f-9b94ac008884" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T023223Z:2c45985b-cab8-4e8d-8f68-7d6d5b02eb3b" + "WESTUS:20200925T005307Z:c3bd9fac-f9b7-4754-969f-9b94ac008884" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2565,7 +2736,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:32:22 GMT" + "Fri, 25 Sep 2020 00:53:07 GMT" ], "Expires": [ "-1" @@ -2578,13 +2749,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU9UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -2598,22 +2769,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11983" ], "x-ms-request-id": [ - "44559e91-49ad-4eea-833b-649751991982" + "6adb3262-58a6-49ae-80ca-a684a8553a4e" ], "x-ms-correlation-request-id": [ - "44559e91-49ad-4eea-833b-649751991982" + "6adb3262-58a6-49ae-80ca-a684a8553a4e" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T023238Z:44559e91-49ad-4eea-833b-649751991982" + "WESTUS:20200925T005322Z:6adb3262-58a6-49ae-80ca-a684a8553a4e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2622,7 +2793,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:32:37 GMT" + "Fri, 25 Sep 2020 00:53:22 GMT" ], "Expires": [ "-1" @@ -2635,13 +2806,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU9UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -2655,22 +2826,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11982" ], "x-ms-request-id": [ - "eb860673-3202-4bd8-8abc-68c716eec735" + "64c9efde-6328-4ba3-83d3-9be2bb2881f1" ], "x-ms-correlation-request-id": [ - "eb860673-3202-4bd8-8abc-68c716eec735" + "64c9efde-6328-4ba3-83d3-9be2bb2881f1" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T023253Z:eb860673-3202-4bd8-8abc-68c716eec735" + "WESTUS:20200925T005338Z:64c9efde-6328-4ba3-83d3-9be2bb2881f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2679,7 +2850,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:32:52 GMT" + "Fri, 25 Sep 2020 00:53:37 GMT" ], "Expires": [ "-1" @@ -2692,13 +2863,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU9UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -2712,22 +2883,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11981" ], "x-ms-request-id": [ - "076938e1-b36f-4fba-96d3-17446125d0bb" + "32884ecd-cbe2-497e-8f39-9b38ccaafe5e" ], "x-ms-correlation-request-id": [ - "076938e1-b36f-4fba-96d3-17446125d0bb" + "32884ecd-cbe2-497e-8f39-9b38ccaafe5e" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T023308Z:076938e1-b36f-4fba-96d3-17446125d0bb" + "WESTUS:20200925T005353Z:32884ecd-cbe2-497e-8f39-9b38ccaafe5e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2736,7 +2907,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:33:07 GMT" + "Fri, 25 Sep 2020 00:53:52 GMT" ], "Expires": [ "-1" @@ -2749,13 +2920,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU9UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -2769,22 +2940,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11980" ], "x-ms-request-id": [ - "02def64f-8f6d-4b28-ace5-d69acb0dcf13" + "488b41c6-a19a-4dd8-a383-6e336debaa87" ], "x-ms-correlation-request-id": [ - "02def64f-8f6d-4b28-ace5-d69acb0dcf13" + "488b41c6-a19a-4dd8-a383-6e336debaa87" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T023323Z:02def64f-8f6d-4b28-ace5-d69acb0dcf13" + "WESTUS:20200925T005408Z:488b41c6-a19a-4dd8-a383-6e336debaa87" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2793,7 +2964,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:33:23 GMT" + "Fri, 25 Sep 2020 00:54:07 GMT" ], "Expires": [ "-1" @@ -2806,13 +2977,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU9UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -2826,22 +2997,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11979" ], "x-ms-request-id": [ - "3786bf2c-972d-44bd-b2f4-1fe871b73722" + "11c8e8b0-28b0-4c62-9ccc-4c322152f5f0" ], "x-ms-correlation-request-id": [ - "3786bf2c-972d-44bd-b2f4-1fe871b73722" + "11c8e8b0-28b0-4c62-9ccc-4c322152f5f0" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T023338Z:3786bf2c-972d-44bd-b2f4-1fe871b73722" + "WESTUS:20200925T005423Z:11c8e8b0-28b0-4c62-9ccc-4c322152f5f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2850,7 +3021,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:33:38 GMT" + "Fri, 25 Sep 2020 00:54:23 GMT" ], "Expires": [ "-1" @@ -2863,13 +3034,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU9UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -2883,22 +3054,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11978" ], "x-ms-request-id": [ - "ad3c7f65-3297-427a-a77a-b29b4ce2f3c9" + "6445b37e-ee4b-4316-83ce-4cdeda140925" ], "x-ms-correlation-request-id": [ - "ad3c7f65-3297-427a-a77a-b29b4ce2f3c9" + "6445b37e-ee4b-4316-83ce-4cdeda140925" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T023353Z:ad3c7f65-3297-427a-a77a-b29b4ce2f3c9" + "WESTUS:20200925T005438Z:6445b37e-ee4b-4316-83ce-4cdeda140925" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2907,7 +3078,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:33:53 GMT" + "Fri, 25 Sep 2020 00:54:38 GMT" ], "Expires": [ "-1" @@ -2920,13 +3091,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU9UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -2940,22 +3111,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11977" ], "x-ms-request-id": [ - "01bfdba0-c056-4e51-b2ea-3cce4d9fd3cc" + "034fefe2-6007-494b-9eee-98c4658d9e50" ], "x-ms-correlation-request-id": [ - "01bfdba0-c056-4e51-b2ea-3cce4d9fd3cc" + "034fefe2-6007-494b-9eee-98c4658d9e50" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T023408Z:01bfdba0-c056-4e51-b2ea-3cce4d9fd3cc" + "WESTUS:20200925T005453Z:034fefe2-6007-494b-9eee-98c4658d9e50" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2964,7 +3135,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:34:08 GMT" + "Fri, 25 Sep 2020 00:54:53 GMT" ], "Expires": [ "-1" @@ -2977,13 +3148,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU9UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -2997,22 +3168,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11976" ], "x-ms-request-id": [ - "b9035245-3b74-4913-898e-c70b7d1de9bd" + "bf4deb47-5fd9-4f00-a497-6325b85c14c9" ], "x-ms-correlation-request-id": [ - "b9035245-3b74-4913-898e-c70b7d1de9bd" + "bf4deb47-5fd9-4f00-a497-6325b85c14c9" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T023423Z:b9035245-3b74-4913-898e-c70b7d1de9bd" + "WESTUS:20200925T005508Z:bf4deb47-5fd9-4f00-a497-6325b85c14c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3021,7 +3192,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:34:23 GMT" + "Fri, 25 Sep 2020 00:55:08 GMT" ], "Expires": [ "-1" @@ -3034,13 +3205,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU9UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3054,22 +3225,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11975" ], "x-ms-request-id": [ - "a9fc7fa3-0862-41b2-99ac-4b383ffa073b" + "0c1c59e3-1461-494a-9445-aab75923cdf3" ], "x-ms-correlation-request-id": [ - "a9fc7fa3-0862-41b2-99ac-4b383ffa073b" + "0c1c59e3-1461-494a-9445-aab75923cdf3" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T023439Z:a9fc7fa3-0862-41b2-99ac-4b383ffa073b" + "WESTUS:20200925T005523Z:0c1c59e3-1461-494a-9445-aab75923cdf3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3078,7 +3249,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:34:38 GMT" + "Fri, 25 Sep 2020 00:55:23 GMT" ], "Expires": [ "-1" @@ -3091,13 +3262,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU9UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3111,22 +3282,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11974" ], "x-ms-request-id": [ - "45e2aec3-e9f7-4f02-9a9c-cbdc5e10eb21" + "2260c3a4-b2a8-4f0c-8b6d-5b446674f8c3" ], "x-ms-correlation-request-id": [ - "45e2aec3-e9f7-4f02-9a9c-cbdc5e10eb21" + "2260c3a4-b2a8-4f0c-8b6d-5b446674f8c3" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T023454Z:45e2aec3-e9f7-4f02-9a9c-cbdc5e10eb21" + "WESTUS:20200925T005538Z:2260c3a4-b2a8-4f0c-8b6d-5b446674f8c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3135,7 +3306,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:34:53 GMT" + "Fri, 25 Sep 2020 00:55:38 GMT" ], "Expires": [ "-1" @@ -3148,13 +3319,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU9UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3168,22 +3339,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11973" ], "x-ms-request-id": [ - "5df49bee-36bf-43a2-96ce-77d1ccd70a8a" + "47026625-96b8-4e50-bde6-e2abecaf0b2e" ], "x-ms-correlation-request-id": [ - "5df49bee-36bf-43a2-96ce-77d1ccd70a8a" + "47026625-96b8-4e50-bde6-e2abecaf0b2e" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T023509Z:5df49bee-36bf-43a2-96ce-77d1ccd70a8a" + "WESTUS:20200925T005554Z:47026625-96b8-4e50-bde6-e2abecaf0b2e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3192,7 +3363,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:35:08 GMT" + "Fri, 25 Sep 2020 00:55:53 GMT" ], "Expires": [ "-1" @@ -3205,13 +3376,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU9UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3225,22 +3396,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11972" ], "x-ms-request-id": [ - "89af7691-ff69-454b-a193-5d98feaea79d" + "67ef0919-6aa0-4572-8c1c-f02fea57d103" ], "x-ms-correlation-request-id": [ - "89af7691-ff69-454b-a193-5d98feaea79d" + "67ef0919-6aa0-4572-8c1c-f02fea57d103" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T023524Z:89af7691-ff69-454b-a193-5d98feaea79d" + "WESTUS:20200925T005609Z:67ef0919-6aa0-4572-8c1c-f02fea57d103" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3249,7 +3420,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:35:23 GMT" + "Fri, 25 Sep 2020 00:56:08 GMT" ], "Expires": [ "-1" @@ -3262,13 +3433,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU9UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3282,22 +3453,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11971" ], "x-ms-request-id": [ - "b523e9f3-bf81-4413-ab61-6f13dd914612" + "e5348cba-0482-4137-9714-73f435ad2eb8" ], "x-ms-correlation-request-id": [ - "b523e9f3-bf81-4413-ab61-6f13dd914612" + "e5348cba-0482-4137-9714-73f435ad2eb8" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T023539Z:b523e9f3-bf81-4413-ab61-6f13dd914612" + "WESTUS:20200925T005624Z:e5348cba-0482-4137-9714-73f435ad2eb8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3306,7 +3477,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:35:38 GMT" + "Fri, 25 Sep 2020 00:56:23 GMT" ], "Expires": [ "-1" @@ -3319,13 +3490,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU9UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3339,22 +3510,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11970" ], "x-ms-request-id": [ - "48ac80c1-2566-4ab8-9dc5-215a2ec10622" + "bab28ae8-1553-48d2-b696-7ba05866e626" ], "x-ms-correlation-request-id": [ - "48ac80c1-2566-4ab8-9dc5-215a2ec10622" + "bab28ae8-1553-48d2-b696-7ba05866e626" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T023554Z:48ac80c1-2566-4ab8-9dc5-215a2ec10622" + "WESTUS:20200925T005639Z:bab28ae8-1553-48d2-b696-7ba05866e626" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3363,7 +3534,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:35:53 GMT" + "Fri, 25 Sep 2020 00:56:39 GMT" ], "Expires": [ "-1" @@ -3376,13 +3547,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU9UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3396,22 +3567,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11969" ], "x-ms-request-id": [ - "ffc285de-9cbe-48fb-a138-80e1be95ecb0" + "232a994a-4dfa-4e9d-8c5c-e64a9eb5e36d" ], "x-ms-correlation-request-id": [ - "ffc285de-9cbe-48fb-a138-80e1be95ecb0" + "232a994a-4dfa-4e9d-8c5c-e64a9eb5e36d" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T023609Z:ffc285de-9cbe-48fb-a138-80e1be95ecb0" + "WESTUS:20200925T005654Z:232a994a-4dfa-4e9d-8c5c-e64a9eb5e36d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3420,7 +3591,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:36:08 GMT" + "Fri, 25 Sep 2020 00:56:54 GMT" ], "Expires": [ "-1" @@ -3433,13 +3604,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU9UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3453,22 +3624,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11968" ], "x-ms-request-id": [ - "584fd70d-0f40-4a85-9b31-b93fefd9ce3e" + "4121be00-a95c-4d65-bac3-98f113fb399a" ], "x-ms-correlation-request-id": [ - "584fd70d-0f40-4a85-9b31-b93fefd9ce3e" + "4121be00-a95c-4d65-bac3-98f113fb399a" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T023624Z:584fd70d-0f40-4a85-9b31-b93fefd9ce3e" + "WESTUS:20200925T005709Z:4121be00-a95c-4d65-bac3-98f113fb399a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3477,7 +3648,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:36:24 GMT" + "Fri, 25 Sep 2020 00:57:09 GMT" ], "Expires": [ "-1" @@ -3490,13 +3661,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU9UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3510,22 +3681,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11967" ], "x-ms-request-id": [ - "9e9f9ab9-3cce-407c-b548-2194beecfd5b" + "87e26e1a-08ef-4718-99a4-b04e6d57dafa" ], "x-ms-correlation-request-id": [ - "9e9f9ab9-3cce-407c-b548-2194beecfd5b" + "87e26e1a-08ef-4718-99a4-b04e6d57dafa" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T023639Z:9e9f9ab9-3cce-407c-b548-2194beecfd5b" + "WESTUS:20200925T005724Z:87e26e1a-08ef-4718-99a4-b04e6d57dafa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3534,7 +3705,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:36:39 GMT" + "Fri, 25 Sep 2020 00:57:24 GMT" ], "Expires": [ "-1" @@ -3547,13 +3718,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU9UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3567,22 +3738,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11966" ], "x-ms-request-id": [ - "c44acf2f-8469-4415-9730-9877fcff6a09" + "d7768deb-b1e9-43d9-91fd-60ff46f36ad2" ], "x-ms-correlation-request-id": [ - "c44acf2f-8469-4415-9730-9877fcff6a09" + "d7768deb-b1e9-43d9-91fd-60ff46f36ad2" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T023655Z:c44acf2f-8469-4415-9730-9877fcff6a09" + "WESTUS:20200925T005739Z:d7768deb-b1e9-43d9-91fd-60ff46f36ad2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3591,7 +3762,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:36:54 GMT" + "Fri, 25 Sep 2020 00:57:39 GMT" ], "Expires": [ "-1" @@ -3604,13 +3775,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU9UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3624,22 +3795,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11965" ], "x-ms-request-id": [ - "7d9979f2-287a-4efc-8bc4-04012966a575" + "d5bd5919-f92a-4ae3-b15a-5edb1cb3a536" ], "x-ms-correlation-request-id": [ - "7d9979f2-287a-4efc-8bc4-04012966a575" + "d5bd5919-f92a-4ae3-b15a-5edb1cb3a536" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T023710Z:7d9979f2-287a-4efc-8bc4-04012966a575" + "WESTUS:20200925T005754Z:d5bd5919-f92a-4ae3-b15a-5edb1cb3a536" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3648,7 +3819,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:37:09 GMT" + "Fri, 25 Sep 2020 00:57:54 GMT" ], "Expires": [ "-1" @@ -3661,13 +3832,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU9UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3681,22 +3852,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11964" ], "x-ms-request-id": [ - "8ddb3096-5aec-4109-b8c6-3ed20fb5160f" + "cb8cab9d-1b55-4e09-b3eb-4d5e5f28192a" ], "x-ms-correlation-request-id": [ - "8ddb3096-5aec-4109-b8c6-3ed20fb5160f" + "cb8cab9d-1b55-4e09-b3eb-4d5e5f28192a" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T023725Z:8ddb3096-5aec-4109-b8c6-3ed20fb5160f" + "WESTUS:20200925T005810Z:cb8cab9d-1b55-4e09-b3eb-4d5e5f28192a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3705,7 +3876,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:37:24 GMT" + "Fri, 25 Sep 2020 00:58:09 GMT" ], "Expires": [ "-1" @@ -3718,13 +3889,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU9UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3738,22 +3909,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11963" ], "x-ms-request-id": [ - "de351145-4c18-464b-a814-3407e837af71" + "8cd35956-5ab3-4e90-9e3c-317b8b099e34" ], "x-ms-correlation-request-id": [ - "de351145-4c18-464b-a814-3407e837af71" + "8cd35956-5ab3-4e90-9e3c-317b8b099e34" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T023740Z:de351145-4c18-464b-a814-3407e837af71" + "WESTUS:20200925T005825Z:8cd35956-5ab3-4e90-9e3c-317b8b099e34" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3762,7 +3933,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:37:39 GMT" + "Fri, 25 Sep 2020 00:58:24 GMT" ], "Expires": [ "-1" @@ -3775,13 +3946,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU9UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3795,22 +3966,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11962" ], "x-ms-request-id": [ - "483eeb77-2440-4564-b9dc-8f7e22261a9d" + "2a6ef331-03f6-4468-9f24-3ee93bb574ea" ], "x-ms-correlation-request-id": [ - "483eeb77-2440-4564-b9dc-8f7e22261a9d" + "2a6ef331-03f6-4468-9f24-3ee93bb574ea" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T023755Z:483eeb77-2440-4564-b9dc-8f7e22261a9d" + "WESTUS:20200925T005840Z:2a6ef331-03f6-4468-9f24-3ee93bb574ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3819,7 +3990,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:37:55 GMT" + "Fri, 25 Sep 2020 00:58:39 GMT" ], "Expires": [ "-1" @@ -3832,13 +4003,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU9UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3852,22 +4023,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11961" ], "x-ms-request-id": [ - "8afec2e7-5794-486a-9a01-d6982bc4e9e2" + "204ee3c5-211d-4f3d-b1d8-b6d0a06b6413" ], "x-ms-correlation-request-id": [ - "8afec2e7-5794-486a-9a01-d6982bc4e9e2" + "204ee3c5-211d-4f3d-b1d8-b6d0a06b6413" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T023810Z:8afec2e7-5794-486a-9a01-d6982bc4e9e2" + "WESTUS:20200925T005855Z:204ee3c5-211d-4f3d-b1d8-b6d0a06b6413" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3876,7 +4047,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:38:10 GMT" + "Fri, 25 Sep 2020 00:58:55 GMT" ], "Expires": [ "-1" @@ -3889,13 +4060,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU9UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3909,22 +4080,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11960" ], "x-ms-request-id": [ - "f84cbaad-4915-4e0c-8c4c-3f4b40bd9c63" + "d67c039f-c8e3-472b-854a-854db08afebd" ], "x-ms-correlation-request-id": [ - "f84cbaad-4915-4e0c-8c4c-3f4b40bd9c63" + "d67c039f-c8e3-472b-854a-854db08afebd" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T023825Z:f84cbaad-4915-4e0c-8c4c-3f4b40bd9c63" + "WESTUS:20200925T005910Z:d67c039f-c8e3-472b-854a-854db08afebd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3933,7 +4104,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:38:25 GMT" + "Fri, 25 Sep 2020 00:59:10 GMT" ], "Expires": [ "-1" @@ -3946,13 +4117,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU9UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -3966,22 +4137,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11959" ], "x-ms-request-id": [ - "5420c3e2-ded4-4c85-9fe0-64e1127733a9" + "24bffbef-608b-487d-a439-d11c60dd79c4" ], "x-ms-correlation-request-id": [ - "5420c3e2-ded4-4c85-9fe0-64e1127733a9" + "24bffbef-608b-487d-a439-d11c60dd79c4" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T023840Z:5420c3e2-ded4-4c85-9fe0-64e1127733a9" + "WESTUS:20200925T005925Z:24bffbef-608b-487d-a439-d11c60dd79c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3990,7 +4161,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:38:40 GMT" + "Fri, 25 Sep 2020 00:59:25 GMT" ], "Expires": [ "-1" @@ -4003,13 +4174,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU9UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -4023,22 +4194,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11958" ], "x-ms-request-id": [ - "7fc93c60-d493-4f87-ab30-ef1c6dd44486" + "d38f4d81-fe0c-4a5c-a956-faf08a84dee3" ], "x-ms-correlation-request-id": [ - "7fc93c60-d493-4f87-ab30-ef1c6dd44486" + "d38f4d81-fe0c-4a5c-a956-faf08a84dee3" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T023855Z:7fc93c60-d493-4f87-ab30-ef1c6dd44486" + "WESTUS:20200925T005940Z:d38f4d81-fe0c-4a5c-a956-faf08a84dee3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4047,7 +4218,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:38:55 GMT" + "Fri, 25 Sep 2020 00:59:40 GMT" ], "Expires": [ "-1" @@ -4060,13 +4231,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU9UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -4080,22 +4251,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11957" ], "x-ms-request-id": [ - "7cb31636-8fae-4317-a400-bde239e75e97" + "90bab48f-10ce-4dc1-ac19-88f458e5e1d0" ], "x-ms-correlation-request-id": [ - "7cb31636-8fae-4317-a400-bde239e75e97" + "90bab48f-10ce-4dc1-ac19-88f458e5e1d0" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T023910Z:7cb31636-8fae-4317-a400-bde239e75e97" + "WESTUS:20200925T005955Z:90bab48f-10ce-4dc1-ac19-88f458e5e1d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4104,7 +4275,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:39:10 GMT" + "Fri, 25 Sep 2020 00:59:55 GMT" ], "Expires": [ "-1" @@ -4117,13 +4288,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU9UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -4137,22 +4308,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11956" ], "x-ms-request-id": [ - "e9f06ef9-5f01-46c7-af46-17a19be0cefe" + "1fdb983f-3a20-46db-9273-5631d47c7a7e" ], "x-ms-correlation-request-id": [ - "e9f06ef9-5f01-46c7-af46-17a19be0cefe" + "1fdb983f-3a20-46db-9273-5631d47c7a7e" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T023926Z:e9f06ef9-5f01-46c7-af46-17a19be0cefe" + "WESTUS:20200925T010010Z:1fdb983f-3a20-46db-9273-5631d47c7a7e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4161,7 +4332,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:39:26 GMT" + "Fri, 25 Sep 2020 01:00:10 GMT" ], "Expires": [ "-1" @@ -4174,13 +4345,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU9UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -4194,22 +4365,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11955" ], "x-ms-request-id": [ - "23a3c70f-daae-46df-a949-52c41258bb50" + "0425fc21-3102-4bb8-a05f-45b73aef003a" ], "x-ms-correlation-request-id": [ - "23a3c70f-daae-46df-a949-52c41258bb50" + "0425fc21-3102-4bb8-a05f-45b73aef003a" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T023941Z:23a3c70f-daae-46df-a949-52c41258bb50" + "WESTUS:20200925T010025Z:0425fc21-3102-4bb8-a05f-45b73aef003a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4218,7 +4389,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:39:41 GMT" + "Fri, 25 Sep 2020 01:00:25 GMT" ], "Expires": [ "-1" @@ -4231,13 +4402,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU9UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -4251,22 +4422,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11954" ], "x-ms-request-id": [ - "5e38e287-b61f-4c1a-b070-c48e88d89576" + "8c27215b-dc77-4473-8d8a-50bbd35ae0b2" ], "x-ms-correlation-request-id": [ - "5e38e287-b61f-4c1a-b070-c48e88d89576" + "8c27215b-dc77-4473-8d8a-50bbd35ae0b2" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T023956Z:5e38e287-b61f-4c1a-b070-c48e88d89576" + "WESTUS:20200925T010040Z:8c27215b-dc77-4473-8d8a-50bbd35ae0b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4275,7 +4446,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:39:56 GMT" + "Fri, 25 Sep 2020 01:00:40 GMT" ], "Expires": [ "-1" @@ -4288,13 +4459,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU9UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -4308,22 +4479,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11953" ], "x-ms-request-id": [ - "cf0090bb-82d8-49c2-9352-772c2b0d70db" + "c36f1b5f-51ba-442e-99c5-759b849983d5" ], "x-ms-correlation-request-id": [ - "cf0090bb-82d8-49c2-9352-772c2b0d70db" + "c36f1b5f-51ba-442e-99c5-759b849983d5" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T024011Z:cf0090bb-82d8-49c2-9352-772c2b0d70db" + "WESTUS:20200925T010056Z:c36f1b5f-51ba-442e-99c5-759b849983d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4332,7 +4503,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:40:11 GMT" + "Fri, 25 Sep 2020 01:00:55 GMT" ], "Expires": [ "-1" @@ -4345,13 +4516,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU9UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -4365,22 +4536,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11952" ], "x-ms-request-id": [ - "46ab594f-5a03-4455-b30d-660044f5f717" + "fd06f032-bdf6-4c45-b48f-847c10ab39f7" ], "x-ms-correlation-request-id": [ - "46ab594f-5a03-4455-b30d-660044f5f717" + "fd06f032-bdf6-4c45-b48f-847c10ab39f7" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T024026Z:46ab594f-5a03-4455-b30d-660044f5f717" + "WESTUS:20200925T010111Z:fd06f032-bdf6-4c45-b48f-847c10ab39f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4389,7 +4560,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:40:26 GMT" + "Fri, 25 Sep 2020 01:01:11 GMT" ], "Expires": [ "-1" @@ -4402,13 +4573,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU9UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -4422,22 +4593,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11951" ], "x-ms-request-id": [ - "a3d3faf2-530b-4180-8241-d2475c1f93aa" + "3c524bcd-f08a-4f2c-a359-59f7cb921301" ], "x-ms-correlation-request-id": [ - "a3d3faf2-530b-4180-8241-d2475c1f93aa" + "3c524bcd-f08a-4f2c-a359-59f7cb921301" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T024041Z:a3d3faf2-530b-4180-8241-d2475c1f93aa" + "WESTUS:20200925T010126Z:3c524bcd-f08a-4f2c-a359-59f7cb921301" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4446,7 +4617,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:40:41 GMT" + "Fri, 25 Sep 2020 01:01:26 GMT" ], "Expires": [ "-1" @@ -4459,13 +4630,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU9UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -4479,22 +4650,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" + "11950" ], "x-ms-request-id": [ - "30bdd522-fdad-436d-997d-bcbbd6629a93" + "f6a50510-5d2d-4ce5-9828-70a919423d9b" ], "x-ms-correlation-request-id": [ - "30bdd522-fdad-436d-997d-bcbbd6629a93" + "f6a50510-5d2d-4ce5-9828-70a919423d9b" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T024056Z:30bdd522-fdad-436d-997d-bcbbd6629a93" + "WESTUS:20200925T010141Z:f6a50510-5d2d-4ce5-9828-70a919423d9b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4503,7 +4674,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:40:56 GMT" + "Fri, 25 Sep 2020 01:01:41 GMT" ], "Expires": [ "-1" @@ -4516,13 +4687,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU9UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -4536,22 +4707,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" + "11949" ], "x-ms-request-id": [ - "70ba45ed-79a5-4695-8a05-5bde2d38dd5d" + "e2527c80-95d4-4f84-bf1e-2f58e0781090" ], "x-ms-correlation-request-id": [ - "70ba45ed-79a5-4695-8a05-5bde2d38dd5d" + "e2527c80-95d4-4f84-bf1e-2f58e0781090" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T024111Z:70ba45ed-79a5-4695-8a05-5bde2d38dd5d" + "WESTUS:20200925T010156Z:e2527c80-95d4-4f84-bf1e-2f58e0781090" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4560,7 +4731,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:41:11 GMT" + "Fri, 25 Sep 2020 01:01:56 GMT" ], "Expires": [ "-1" @@ -4573,13 +4744,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU9UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -4593,22 +4764,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "11948" ], "x-ms-request-id": [ - "7bf7f211-5d85-4f9b-9b8f-9d77c5c01e9a" + "dfb02144-78f6-41b6-bee5-e101e5f4cf98" ], "x-ms-correlation-request-id": [ - "7bf7f211-5d85-4f9b-9b8f-9d77c5c01e9a" + "dfb02144-78f6-41b6-bee5-e101e5f4cf98" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T024127Z:7bf7f211-5d85-4f9b-9b8f-9d77c5c01e9a" + "WESTUS:20200925T010211Z:dfb02144-78f6-41b6-bee5-e101e5f4cf98" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4617,7 +4788,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:41:26 GMT" + "Fri, 25 Sep 2020 01:02:11 GMT" ], "Expires": [ "-1" @@ -4630,13 +4801,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU9UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -4650,22 +4821,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11947" ], "x-ms-request-id": [ - "2ff57c40-8094-4e1e-ac2c-5ed9d4f73ddc" + "4bacb9a7-329c-41c6-97e5-7aca2ee160c6" ], "x-ms-correlation-request-id": [ - "2ff57c40-8094-4e1e-ac2c-5ed9d4f73ddc" + "4bacb9a7-329c-41c6-97e5-7aca2ee160c6" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T024142Z:2ff57c40-8094-4e1e-ac2c-5ed9d4f73ddc" + "WESTUS:20200925T010226Z:4bacb9a7-329c-41c6-97e5-7aca2ee160c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4674,7 +4845,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:41:41 GMT" + "Fri, 25 Sep 2020 01:02:26 GMT" ], "Expires": [ "-1" @@ -4687,13 +4858,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU9UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -4707,22 +4878,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" + "11946" ], "x-ms-request-id": [ - "baa1c5c4-4751-499e-b78b-35b24c1099f6" + "1f35a1b2-d8ca-46da-878b-a881a5f8bcfc" ], "x-ms-correlation-request-id": [ - "baa1c5c4-4751-499e-b78b-35b24c1099f6" + "1f35a1b2-d8ca-46da-878b-a881a5f8bcfc" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T024157Z:baa1c5c4-4751-499e-b78b-35b24c1099f6" + "WESTUS:20200925T010241Z:1f35a1b2-d8ca-46da-878b-a881a5f8bcfc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4731,7 +4902,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:41:56 GMT" + "Fri, 25 Sep 2020 01:02:41 GMT" ], "Expires": [ "-1" @@ -4744,13 +4915,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU9UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -4764,22 +4935,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" + "11945" ], "x-ms-request-id": [ - "d85816b1-923f-40cc-adaf-89cdeb590728" + "19a381e8-91b0-4457-915d-f2eb1cb86ab9" ], "x-ms-correlation-request-id": [ - "d85816b1-923f-40cc-adaf-89cdeb590728" + "19a381e8-91b0-4457-915d-f2eb1cb86ab9" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T024212Z:d85816b1-923f-40cc-adaf-89cdeb590728" + "WESTUS:20200925T010256Z:19a381e8-91b0-4457-915d-f2eb1cb86ab9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4788,7 +4959,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:42:11 GMT" + "Fri, 25 Sep 2020 01:02:56 GMT" ], "Expires": [ "-1" @@ -4801,13 +4972,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU9UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -4821,22 +4992,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" + "11944" ], "x-ms-request-id": [ - "677fd2d4-37d9-4e43-8f1e-664df66b231f" + "74c9ae77-67bc-480a-b697-8b5c3f390829" ], "x-ms-correlation-request-id": [ - "677fd2d4-37d9-4e43-8f1e-664df66b231f" + "74c9ae77-67bc-480a-b697-8b5c3f390829" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T024227Z:677fd2d4-37d9-4e43-8f1e-664df66b231f" + "WESTUS:20200925T010311Z:74c9ae77-67bc-480a-b697-8b5c3f390829" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4845,7 +5016,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:42:27 GMT" + "Fri, 25 Sep 2020 01:03:11 GMT" ], "Expires": [ "-1" @@ -4858,13 +5029,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU9UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -4878,22 +5049,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" + "11943" ], "x-ms-request-id": [ - "e3cbf5d0-fa21-4671-b7c7-f095881a661d" + "ae1410dc-b0d2-4c0f-a050-69a0a9bfa71a" ], "x-ms-correlation-request-id": [ - "e3cbf5d0-fa21-4671-b7c7-f095881a661d" + "ae1410dc-b0d2-4c0f-a050-69a0a9bfa71a" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T024242Z:e3cbf5d0-fa21-4671-b7c7-f095881a661d" + "WESTUS:20200925T010327Z:ae1410dc-b0d2-4c0f-a050-69a0a9bfa71a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4902,7 +5073,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:42:42 GMT" + "Fri, 25 Sep 2020 01:03:26 GMT" ], "Expires": [ "-1" @@ -4915,13 +5086,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU9UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -4935,16 +5106,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" + "11942" ], "x-ms-request-id": [ - "942acec1-01d8-4427-a8bd-9cc12e72bb10" + "82d9e0c6-1d05-40ef-814c-d30df8282104" ], "x-ms-correlation-request-id": [ - "942acec1-01d8-4427-a8bd-9cc12e72bb10" + "82d9e0c6-1d05-40ef-814c-d30df8282104" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T024257Z:942acec1-01d8-4427-a8bd-9cc12e72bb10" + "WESTUS:20200925T010342Z:82d9e0c6-1d05-40ef-814c-d30df8282104" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4953,7 +5124,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:42:57 GMT" + "Fri, 25 Sep 2020 01:03:41 GMT" ], "Expires": [ "-1" @@ -4966,13 +5137,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1OTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU9UTXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -4986,16 +5157,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" + "11941" ], "x-ms-request-id": [ - "0a4445b0-b830-4fae-9e3c-43daf4db086c" + "e81fa1d2-829c-43c0-8117-c89209ab8851" ], "x-ms-correlation-request-id": [ - "0a4445b0-b830-4fae-9e3c-43daf4db086c" + "e81fa1d2-829c-43c0-8117-c89209ab8851" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T024257Z:0a4445b0-b830-4fae-9e3c-43daf4db086c" + "WESTUS:20200925T010342Z:e81fa1d2-829c-43c0-8117-c89209ab8851" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5004,7 +5175,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:42:57 GMT" + "Fri, 25 Sep 2020 01:03:41 GMT" ], "Expires": [ "-1" @@ -5019,9 +5190,9 @@ ], "Names": { "Test-DatabaseReadReplicaCount": [ - "ps6593", - "ps3481", - "ps3798" + "ps6272", + "ps8324", + "ps700" ] }, "Variables": { diff --git a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ReadScaleCrudTests/TestDatabaseReadScaleCreateUpdate.json b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ReadScaleCrudTests/TestDatabaseReadScaleCreateUpdate.json index eefafaca8a78..ae7ea008c7fd 100644 --- a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ReadScaleCrudTests/TestDatabaseReadScaleCreateUpdate.json +++ b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ReadScaleCrudTests/TestDatabaseReadScaleCreateUpdate.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps6477?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzNjQ3Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps6249?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzNjI0OT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "37b9d9b1-9bd4-4f26-8c1b-7bf099886596" + "f1541707-9698-4355-968c-636060c21fa0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "c96c8a1a-0611-4226-9ae0-0d207e3c45ca" + "55ea6e00-7729-4179-b19d-0af03fe923b7" ], "x-ms-correlation-request-id": [ - "c96c8a1a-0611-4226-9ae0-0d207e3c45ca" + "55ea6e00-7729-4179-b19d-0af03fe923b7" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T021646Z:c96c8a1a-0611-4226-9ae0-0d207e3c45ca" + "WESTUS:20200925T003814Z:55ea6e00-7729-4179-b19d-0af03fe923b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:16:45 GMT" + "Fri, 25 Sep 2020 00:38:13 GMT" ], "Content-Length": [ "172" @@ -63,23 +63,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6477\",\r\n \"name\": \"ps6477\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6249\",\r\n \"name\": \"ps6249\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6477/providers/Microsoft.Sql/servers/ps8600?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQ3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODYwMD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6249/providers/Microsoft.Sql/servers/ps9288?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI0OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTI4OD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "573bd42e-cacf-45c7-9d4d-c50333776a38" + "d47e4488-9e0b-4b8c-941f-33dbcd433c00" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "b7021868-7f3d-4e20-8375-73f5951f83b2" + "fff3a66c-bea0-4716-9b15-288817d595a4" ], "x-ms-correlation-request-id": [ - "b7021868-7f3d-4e20-8375-73f5951f83b2" + "fff3a66c-bea0-4716-9b15-288817d595a4" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T021646Z:b7021868-7f3d-4e20-8375-73f5951f83b2" + "WESTUS:20200925T003814Z:fff3a66c-bea0-4716-9b15-288817d595a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:16:46 GMT" + "Fri, 25 Sep 2020 00:38:14 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,17 +123,17 @@ "206" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps8600' under resource group 'ps6477' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps9288' under resource group 'ps6249' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6477/providers/Microsoft.Sql/servers/ps8600?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQ3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODYwMD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6249/providers/Microsoft.Sql/servers/ps9288?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI0OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTI4OD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -147,19 +147,19 @@ "no-cache" ], "x-ms-request-id": [ - "2390a4da-ba79-4cf9-924b-6c903cf44e71" + "736cac7b-0b7b-4db4-8e50-0bedeb753c7a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11991" ], "x-ms-correlation-request-id": [ - "5db7f122-a1a6-460b-adef-e8d4ff306d5c" + "c9940797-ffaf-4204-b3d4-863cc2b88f79" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T021733Z:5db7f122-a1a6-460b-adef-e8d4ff306d5c" + "WESTUS:20200925T003902Z:c9940797-ffaf-4204-b3d4-863cc2b88f79" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -168,7 +168,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:17:32 GMT" + "Fri, 25 Sep 2020 00:39:02 GMT" ], "Content-Length": [ "415" @@ -180,23 +180,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps8600.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6477/providers/Microsoft.Sql/servers/ps8600\",\r\n \"name\": \"ps8600\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps9288.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6249/providers/Microsoft.Sql/servers/ps9288\",\r\n \"name\": \"ps9288\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6477/providers/Microsoft.Sql/servers/ps8600?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQ3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODYwMD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6249/providers/Microsoft.Sql/servers/ps9288?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI0OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTI4OD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5782d7ff-8a89-4200-92a3-d5a54a5252ad" + "b6b05207-9f8a-4cd1-b2ba-8877a6a4097e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -210,19 +210,82 @@ "no-cache" ], "x-ms-request-id": [ - "33f7a450-4d26-4d2a-bbdb-364840b21a3e" + "e77470e1-eb98-49df-8182-febaf967dad4" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11990" + ], + "x-ms-correlation-request-id": [ + "a37c52c2-da99-44db-b986-8a0f2588cf64" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200925T003903Z:a37c52c2-da99-44db-b986-8a0f2588cf64" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 25 Sep 2020 00:39:02 GMT" + ], + "Content-Length": [ + "415" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps9288.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6249/providers/Microsoft.Sql/servers/ps9288\",\r\n \"name\": \"ps9288\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6249/providers/Microsoft.Sql/servers/ps9288?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI0OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTI4OD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "27862efc-3505-4117-9297-7daaa370fcfa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "fd89598b-3047-4adb-a2bc-9362840c3650" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" ], "x-ms-correlation-request-id": [ - "3cd60e24-1621-4234-998e-05af24ea9182" + "a75a71e4-5bad-404c-a0bf-cc1f853f5404" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T021733Z:3cd60e24-1621-4234-998e-05af24ea9182" + "WESTUS:20200925T003903Z:a75a71e4-5bad-404c-a0bf-cc1f853f5404" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -231,7 +294,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:17:33 GMT" + "Fri, 25 Sep 2020 00:39:02 GMT" ], "Content-Length": [ "415" @@ -243,23 +306,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps8600.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6477/providers/Microsoft.Sql/servers/ps8600\",\r\n \"name\": \"ps8600\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps9288.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6249/providers/Microsoft.Sql/servers/ps9288\",\r\n \"name\": \"ps9288\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6477/providers/Microsoft.Sql/servers/ps8600?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQ3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODYwMD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6249/providers/Microsoft.Sql/servers/ps9288?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI0OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTI4OD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b2878770-73ab-4400-83ba-2b2670c9396b" + "9f8691dd-82af-4346-9422-452ab1cc8e93" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -273,19 +336,19 @@ "no-cache" ], "x-ms-request-id": [ - "e82fd831-b5ab-40d6-b7ac-9189f2b03f1c" + "5693026c-9782-4535-adc8-a129278be981" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11981" ], "x-ms-correlation-request-id": [ - "115baba4-0b1f-4ffc-8915-1f889e6a55fc" + "6a9c1da8-f940-4571-a6a1-cf79986c6385" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T021733Z:115baba4-0b1f-4ffc-8915-1f889e6a55fc" + "WESTUS:20200925T004020Z:6a9c1da8-f940-4571-a6a1-cf79986c6385" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -294,7 +357,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:17:33 GMT" + "Fri, 25 Sep 2020 00:40:20 GMT" ], "Content-Length": [ "415" @@ -306,23 +369,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps8600.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6477/providers/Microsoft.Sql/servers/ps8600\",\r\n \"name\": \"ps8600\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps9288.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6249/providers/Microsoft.Sql/servers/ps9288\",\r\n \"name\": \"ps9288\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6477/providers/Microsoft.Sql/servers/ps8600?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQ3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODYwMD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6249/providers/Microsoft.Sql/servers/ps9288?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI0OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTI4OD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0ba9c059-ea25-43c8-a96c-af42c2e58cdd" + "64cddb0e-e10c-466a-99cd-a751a5b5feef" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -342,16 +405,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6477/providers/Microsoft.Sql/locations/southeastasia/serverOperationResults/d2bf6fdd-9e0b-4cfb-94d0-220bf3bcd855?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6249/providers/Microsoft.Sql/locations/southeastasia/serverOperationResults/49ca732e-af74-418b-8224-9453ceb3d366?api-version=2019-06-01-preview" ], "Retry-After": [ "1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6477/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/d2bf6fdd-9e0b-4cfb-94d0-220bf3bcd855?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6249/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/49ca732e-af74-418b-8224-9453ceb3d366?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "d2bf6fdd-9e0b-4cfb-94d0-220bf3bcd855" + "49ca732e-af74-418b-8224-9453ceb3d366" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -360,10 +423,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "7065553a-c5c8-4da0-abb5-83a8c0e69172" + "f72b0196-3946-4c36-9ad4-da79fdcb2456" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T021647Z:7065553a-c5c8-4da0-abb5-83a8c0e69172" + "WESTUS:20200925T003816Z:f72b0196-3946-4c36-9ad4-da79fdcb2456" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -372,10 +435,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:16:47 GMT" + "Fri, 25 Sep 2020 00:38:15 GMT" ], "Content-Length": [ - "73" + "74" ], "Content-Type": [ "application/json; charset=utf-8" @@ -384,17 +447,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-14T02:16:47.49Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-25T00:38:16.027Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6477/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/d2bf6fdd-9e0b-4cfb-94d0-220bf3bcd855?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQ3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2QyYmY2ZmRkLTllMGItNGNmYi05NGQwLTIyMGJmM2JjZDg1NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6249/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/49ca732e-af74-418b-8224-9453ceb3d366?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI0OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzQ5Y2E3MzJlLWFmNzQtNDE4Yi04MjI0LTk0NTNjZWIzZDM2Nj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -411,7 +474,7 @@ "1" ], "x-ms-request-id": [ - "3235b478-20d0-497b-b67f-e476ef496e69" + "254d8f50-2db1-4fad-8af1-bcab9a92f3cb" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -420,10 +483,10 @@ "11998" ], "x-ms-correlation-request-id": [ - "75b8fda0-a816-46b9-a09c-c76e8dbde1ef" + "57019581-c153-44a3-ba09-2728d822df9a" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T021648Z:75b8fda0-a816-46b9-a09c-c76e8dbde1ef" + "WESTUS:20200925T003817Z:57019581-c153-44a3-ba09-2728d822df9a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,10 +495,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:16:48 GMT" + "Fri, 25 Sep 2020 00:38:16 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -444,17 +507,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d2bf6fdd-9e0b-4cfb-94d0-220bf3bcd855\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T02:16:47.49Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"49ca732e-af74-418b-8224-9453ceb3d366\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:38:16.027Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6477/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/d2bf6fdd-9e0b-4cfb-94d0-220bf3bcd855?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQ3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2QyYmY2ZmRkLTllMGItNGNmYi05NGQwLTIyMGJmM2JjZDg1NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6249/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/49ca732e-af74-418b-8224-9453ceb3d366?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI0OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzQ5Y2E3MzJlLWFmNzQtNDE4Yi04MjI0LTk0NTNjZWIzZDM2Nj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -471,7 +534,7 @@ "1" ], "x-ms-request-id": [ - "2c9cb84d-b119-4b93-9b1a-db89b89a0c02" + "4be9ef49-769b-41da-a6b6-0820dd9ab8ec" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -480,10 +543,10 @@ "11997" ], "x-ms-correlation-request-id": [ - "f090c295-786b-48e1-b80c-4ea6bfad5644" + "e0e72bf3-4a70-49d2-9056-e34fbbc6b395" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T021650Z:f090c295-786b-48e1-b80c-4ea6bfad5644" + "WESTUS:20200925T003818Z:e0e72bf3-4a70-49d2-9056-e34fbbc6b395" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -492,10 +555,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:16:49 GMT" + "Fri, 25 Sep 2020 00:38:18 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -504,17 +567,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d2bf6fdd-9e0b-4cfb-94d0-220bf3bcd855\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T02:16:47.49Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"49ca732e-af74-418b-8224-9453ceb3d366\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:38:16.027Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6477/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/d2bf6fdd-9e0b-4cfb-94d0-220bf3bcd855?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQ3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2QyYmY2ZmRkLTllMGItNGNmYi05NGQwLTIyMGJmM2JjZDg1NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6249/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/49ca732e-af74-418b-8224-9453ceb3d366?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI0OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzQ5Y2E3MzJlLWFmNzQtNDE4Yi04MjI0LTk0NTNjZWIzZDM2Nj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -531,7 +594,7 @@ "1" ], "x-ms-request-id": [ - "a03debf5-d9e3-4975-a6a8-65f8d6ab469a" + "5a1fefc5-d845-4697-a836-7b7c6c8d43ba" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -540,10 +603,10 @@ "11996" ], "x-ms-correlation-request-id": [ - "f485f824-b151-46e0-ad6c-49a5aa1e32e7" + "6f90510e-89ac-49b3-86ac-edcabd026cc4" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T021651Z:f485f824-b151-46e0-ad6c-49a5aa1e32e7" + "WESTUS:20200925T003819Z:6f90510e-89ac-49b3-86ac-edcabd026cc4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -552,10 +615,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:16:51 GMT" + "Fri, 25 Sep 2020 00:38:19 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -564,17 +627,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d2bf6fdd-9e0b-4cfb-94d0-220bf3bcd855\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T02:16:47.49Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"49ca732e-af74-418b-8224-9453ceb3d366\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:38:16.027Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6477/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/d2bf6fdd-9e0b-4cfb-94d0-220bf3bcd855?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQ3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2QyYmY2ZmRkLTllMGItNGNmYi05NGQwLTIyMGJmM2JjZDg1NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6249/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/49ca732e-af74-418b-8224-9453ceb3d366?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI0OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzQ5Y2E3MzJlLWFmNzQtNDE4Yi04MjI0LTk0NTNjZWIzZDM2Nj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -588,10 +651,10 @@ "no-cache" ], "Retry-After": [ - "20" + "1" ], "x-ms-request-id": [ - "b04b09a7-3129-4322-abf8-e62132c200a0" + "c60b820d-9e64-4ac9-941b-a26e7d37b538" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -600,10 +663,10 @@ "11995" ], "x-ms-correlation-request-id": [ - "203e6dfc-68d1-4303-a7b5-47817a219758" + "d0c15fa7-55b0-4e2e-97a4-4917c34f030b" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T021652Z:203e6dfc-68d1-4303-a7b5-47817a219758" + "WESTUS:20200925T003821Z:d0c15fa7-55b0-4e2e-97a4-4917c34f030b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -612,10 +675,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:16:52 GMT" + "Fri, 25 Sep 2020 00:38:20 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -624,17 +687,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d2bf6fdd-9e0b-4cfb-94d0-220bf3bcd855\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T02:16:47.49Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"49ca732e-af74-418b-8224-9453ceb3d366\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:38:16.027Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6477/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/d2bf6fdd-9e0b-4cfb-94d0-220bf3bcd855?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQ3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2QyYmY2ZmRkLTllMGItNGNmYi05NGQwLTIyMGJmM2JjZDg1NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6249/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/49ca732e-af74-418b-8224-9453ceb3d366?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI0OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzQ5Y2E3MzJlLWFmNzQtNDE4Yi04MjI0LTk0NTNjZWIzZDM2Nj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -651,7 +714,7 @@ "20" ], "x-ms-request-id": [ - "06aa13b7-89ef-446f-b8ff-bff6fc053def" + "66fc05ea-f7ba-4090-a075-1f5a48db94ad" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -660,10 +723,10 @@ "11994" ], "x-ms-correlation-request-id": [ - "f2e7eecc-95f0-41aa-bb06-9ebc1a4d2e09" + "114d4aba-be6a-4aca-8458-4da47d003974" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T021712Z:f2e7eecc-95f0-41aa-bb06-9ebc1a4d2e09" + "WESTUS:20200925T003822Z:114d4aba-be6a-4aca-8458-4da47d003974" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -672,10 +735,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:17:12 GMT" + "Fri, 25 Sep 2020 00:38:21 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -684,17 +747,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d2bf6fdd-9e0b-4cfb-94d0-220bf3bcd855\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T02:16:47.49Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"49ca732e-af74-418b-8224-9453ceb3d366\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:38:16.027Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6477/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/d2bf6fdd-9e0b-4cfb-94d0-220bf3bcd855?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQ3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2QyYmY2ZmRkLTllMGItNGNmYi05NGQwLTIyMGJmM2JjZDg1NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6249/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/49ca732e-af74-418b-8224-9453ceb3d366?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI0OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzQ5Y2E3MzJlLWFmNzQtNDE4Yi04MjI0LTk0NTNjZWIzZDM2Nj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -708,10 +771,10 @@ "no-cache" ], "Retry-After": [ - "15" + "20" ], "x-ms-request-id": [ - "1d7e7a69-f68d-4d88-9450-debab2428ee0" + "62d2a7b5-03e2-4b78-a0a5-9ad993dc4f4a" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -720,10 +783,10 @@ "11993" ], "x-ms-correlation-request-id": [ - "fda96854-f7cb-4d23-936f-57d85e03498b" + "7af4b498-bcb3-4715-9beb-0ac61e1a4a9a" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T021733Z:fda96854-f7cb-4d23-936f-57d85e03498b" + "WESTUS:20200925T003842Z:7af4b498-bcb3-4715-9beb-0ac61e1a4a9a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -732,10 +795,70 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:17:32 GMT" + "Fri, 25 Sep 2020 00:38:41 GMT" ], "Content-Length": [ - "106" + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"49ca732e-af74-418b-8224-9453ceb3d366\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:38:16.027Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6249/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/49ca732e-af74-418b-8224-9453ceb3d366?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI0OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzQ5Y2E3MzJlLWFmNzQtNDE4Yi04MjI0LTk0NTNjZWIzZDM2Nj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "b08e8185-2d76-4507-963c-d50d33022f49" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "10f97b4b-a8eb-45fb-913e-4b4541a830e7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200925T003902Z:10f97b4b-a8eb-45fb-913e-4b4541a830e7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 25 Sep 2020 00:39:01 GMT" + ], + "Content-Length": [ + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -744,23 +867,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d2bf6fdd-9e0b-4cfb-94d0-220bf3bcd855\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-14T02:16:47.49Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"49ca732e-af74-418b-8224-9453ceb3d366\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-25T00:38:16.027Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6477/providers/Microsoft.Sql/servers/ps8600/databases/ps2778?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQ3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODYwMC9kYXRhYmFzZXMvcHMyNzc4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6249/providers/Microsoft.Sql/servers/ps9288/databases/ps8860?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI0OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTI4OC9kYXRhYmFzZXMvcHM4ODYwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7133c4c9-0315-478c-bbf5-e27a4774ba8f" + "29fe0c74-c8e3-4978-b85e-105131a98045" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -777,13 +900,13 @@ "gateway" ], "x-ms-request-id": [ - "3118fdf7-ee05-47c6-b729-2de1998fdbf8" + "98ec7045-690b-4d46-b9a8-28ebefe2f069" ], "x-ms-correlation-request-id": [ - "3118fdf7-ee05-47c6-b729-2de1998fdbf8" + "98ec7045-690b-4d46-b9a8-28ebefe2f069" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T021733Z:3118fdf7-ee05-47c6-b729-2de1998fdbf8" + "WESTUS:20200925T003903Z:98ec7045-690b-4d46-b9a8-28ebefe2f069" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -792,7 +915,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:17:33 GMT" + "Fri, 25 Sep 2020 00:39:02 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -804,17 +927,17 @@ "223" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps8600/databases/ps2778' under resource group 'ps6477' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps9288/databases/ps8860' under resource group 'ps6249' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6477/providers/Microsoft.Sql/servers/ps8600/databases/ps2778?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQ3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODYwMC9kYXRhYmFzZXMvcHMyNzc4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6249/providers/Microsoft.Sql/servers/ps9288/databases/ps8860?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI0OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTI4OC9kYXRhYmFzZXMvcHM4ODYwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -828,19 +951,19 @@ "no-cache" ], "x-ms-request-id": [ - "62fc1ef0-caa2-42e9-8859-e6d26a521504" + "8d879e70-5dfa-4386-a45a-3ad1869cc9e1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11982" ], "x-ms-correlation-request-id": [ - "d7d94531-a9b0-4279-becb-0d6d61939e3e" + "125d5ed5-24e6-452e-8932-c30204925e7a" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T021835Z:d7d94531-a9b0-4279-becb-0d6d61939e3e" + "WESTUS:20200925T004020Z:125d5ed5-24e6-452e-8932-c30204925e7a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -849,10 +972,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:18:35 GMT" + "Fri, 25 Sep 2020 00:40:20 GMT" ], "Content-Length": [ - "860" + "862" ], "Content-Type": [ "application/json; charset=utf-8" @@ -861,23 +984,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"c5d0d9cc-aff2-424d-aff3-c1b1696afa00\",\r\n \"creationDate\": \"2020-09-14T02:18:30.77Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-14T02:48:30.77Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6477/providers/Microsoft.Sql/servers/ps8600/databases/ps2778\",\r\n \"name\": \"ps2778\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"a79f9633-36d1-4ce8-88af-4905609456d3\",\r\n \"creationDate\": \"2020-09-25T00:40:11.267Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-25T01:10:11.267Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6249/providers/Microsoft.Sql/servers/ps9288/databases/ps8860\",\r\n \"name\": \"ps8860\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6477/providers/Microsoft.Sql/servers/ps8600/databases/ps2778?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQ3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODYwMC9kYXRhYmFzZXMvcHMyNzc4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6249/providers/Microsoft.Sql/servers/ps9288/databases/ps8860?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI0OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTI4OC9kYXRhYmFzZXMvcHM4ODYwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9295a05c-892d-4007-9e7f-2233b383ee58" + "89c5cf44-1375-4555-87c3-dbb4de288125" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -891,19 +1014,19 @@ "no-cache" ], "x-ms-request-id": [ - "0b304de1-9ee9-4668-be5b-e7d0109609f1" + "b06549be-0a93-4820-8952-c3606204f644" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11980" ], "x-ms-correlation-request-id": [ - "6bb6a436-0f61-4c0e-963f-0ab42dd9e370" + "8efc9e0d-5d04-42ae-8ccd-503ebb898c53" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T021836Z:6bb6a436-0f61-4c0e-963f-0ab42dd9e370" + "WESTUS:20200925T004021Z:8efc9e0d-5d04-42ae-8ccd-503ebb898c53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -912,10 +1035,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:18:36 GMT" + "Fri, 25 Sep 2020 00:40:20 GMT" ], "Content-Length": [ - "860" + "862" ], "Content-Type": [ "application/json; charset=utf-8" @@ -924,23 +1047,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"c5d0d9cc-aff2-424d-aff3-c1b1696afa00\",\r\n \"creationDate\": \"2020-09-14T02:18:30.77Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-14T02:48:30.77Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6477/providers/Microsoft.Sql/servers/ps8600/databases/ps2778\",\r\n \"name\": \"ps2778\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"a79f9633-36d1-4ce8-88af-4905609456d3\",\r\n \"creationDate\": \"2020-09-25T00:40:11.267Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-25T01:10:11.267Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6249/providers/Microsoft.Sql/servers/ps9288/databases/ps8860\",\r\n \"name\": \"ps8860\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6477/providers/Microsoft.Sql/servers/ps8600/databases/ps2778?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQ3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODYwMC9kYXRhYmFzZXMvcHMyNzc4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6249/providers/Microsoft.Sql/servers/ps9288/databases/ps8860?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI0OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTI4OC9kYXRhYmFzZXMvcHM4ODYwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a6a09234-ae54-49ac-933c-b3f28f6da3f9" + "ecda67e6-575e-4542-8adc-b95ccfdcdf7d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -954,19 +1077,19 @@ "no-cache" ], "x-ms-request-id": [ - "21b6bc2c-b7ab-4b5b-9018-d172eb6cc5f4" + "1f67d753-0b52-4156-afbd-578943383e1f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11979" ], "x-ms-correlation-request-id": [ - "6c845ada-67cc-4742-90e9-d6c0d1b88825" + "38381e06-da7d-4257-8511-84a6f94a814b" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T021836Z:6c845ada-67cc-4742-90e9-d6c0d1b88825" + "WESTUS:20200925T004021Z:38381e06-da7d-4257-8511-84a6f94a814b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -975,10 +1098,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:18:36 GMT" + "Fri, 25 Sep 2020 00:40:21 GMT" ], "Content-Length": [ - "860" + "862" ], "Content-Type": [ "application/json; charset=utf-8" @@ -987,17 +1110,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"c5d0d9cc-aff2-424d-aff3-c1b1696afa00\",\r\n \"creationDate\": \"2020-09-14T02:18:30.77Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-14T02:48:30.77Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6477/providers/Microsoft.Sql/servers/ps8600/databases/ps2778\",\r\n \"name\": \"ps2778\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"a79f9633-36d1-4ce8-88af-4905609456d3\",\r\n \"creationDate\": \"2020-09-25T00:40:11.267Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-25T01:10:11.267Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6249/providers/Microsoft.Sql/servers/ps9288/databases/ps8860\",\r\n \"name\": \"ps8860\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6477/providers/Microsoft.Sql/servers/ps8600/databases/ps2778?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQ3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODYwMC9kYXRhYmFzZXMvcHMyNzc4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6249/providers/Microsoft.Sql/servers/ps9288/databases/ps8860?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI0OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTI4OC9kYXRhYmFzZXMvcHM4ODYwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1011,19 +1134,19 @@ "no-cache" ], "x-ms-request-id": [ - "4575dd68-b42e-4b91-8dbf-9495dcf52596" + "a6e0ec0b-968a-4435-9fbb-c6d6bfe9fe29" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11977" ], "x-ms-correlation-request-id": [ - "dd64bcad-8baa-4f72-9e41-29853b272f0d" + "e2dd190d-7c1c-48f5-979a-53a992a647dd" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T021852Z:dd64bcad-8baa-4f72-9e41-29853b272f0d" + "WESTUS:20200925T004037Z:e2dd190d-7c1c-48f5-979a-53a992a647dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1032,10 +1155,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:18:52 GMT" + "Fri, 25 Sep 2020 00:40:37 GMT" ], "Content-Length": [ - "861" + "863" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1044,23 +1167,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"c5d0d9cc-aff2-424d-aff3-c1b1696afa00\",\r\n \"creationDate\": \"2020-09-14T02:18:30.77Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-14T02:48:30.77Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6477/providers/Microsoft.Sql/servers/ps8600/databases/ps2778\",\r\n \"name\": \"ps2778\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"a79f9633-36d1-4ce8-88af-4905609456d3\",\r\n \"creationDate\": \"2020-09-25T00:40:11.267Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-25T01:10:11.267Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6249/providers/Microsoft.Sql/servers/ps9288/databases/ps8860\",\r\n \"name\": \"ps8860\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6477/providers/Microsoft.Sql/servers/ps8600/databases/ps2778?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQ3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODYwMC9kYXRhYmFzZXMvcHMyNzc4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6249/providers/Microsoft.Sql/servers/ps9288/databases/ps8860?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI0OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTI4OC9kYXRhYmFzZXMvcHM4ODYwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"properties\": {\r\n \"maxSizeBytes\": 0,\r\n \"readScale\": \"\"\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "46aecfca-3842-4596-9647-3a7c5039f847" + "8123d2bf-17e4-4a45-903a-5052fa6602e9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1080,16 +1203,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6477/providers/Microsoft.Sql/locations/southeastasia/databaseOperationResults/d9389316-f300-4ec1-bdd1-e9ea76e820dc?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6249/providers/Microsoft.Sql/locations/southeastasia/databaseOperationResults/27bd561a-bc37-4dbd-8398-0fef0d6d1b23?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6477/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/d9389316-f300-4ec1-bdd1-e9ea76e820dc?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6249/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/27bd561a-bc37-4dbd-8398-0fef0d6d1b23?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "d9389316-f300-4ec1-bdd1-e9ea76e820dc" + "27bd561a-bc37-4dbd-8398-0fef0d6d1b23" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1098,10 +1221,10 @@ "1198" ], "x-ms-correlation-request-id": [ - "208caab6-bee6-46a9-ba0e-221d2af959c1" + "1e7e9a52-9515-40e3-9e8a-af5b005eb3ad" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T021734Z:208caab6-bee6-46a9-ba0e-221d2af959c1" + "WESTUS:20200925T003904Z:1e7e9a52-9515-40e3-9e8a-af5b005eb3ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1110,7 +1233,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:17:34 GMT" + "Fri, 25 Sep 2020 00:39:03 GMT" ], "Content-Length": [ "76" @@ -1122,23 +1245,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2020-09-14T02:17:34.557Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2020-09-25T00:39:04.127Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6477/providers/Microsoft.Sql/servers/ps8600/databases/ps2778?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQ3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzODYwMC9kYXRhYmFzZXMvcHMyNzc4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6249/providers/Microsoft.Sql/servers/ps9288/databases/ps8860?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI0OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzOTI4OC9kYXRhYmFzZXMvcHM4ODYwP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": 0,\r\n \"readScale\": \"Disabled\"\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b28b0ff2-9087-4fcd-9ee1-b1c18dafa3ad" + "132b2a70-fb6f-4f7f-a05c-8cf19b51484e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1158,16 +1281,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6477/providers/Microsoft.Sql/locations/southeastasia/databaseOperationResults/0215de89-5a13-4801-b571-87301392e6b3?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6249/providers/Microsoft.Sql/locations/southeastasia/databaseOperationResults/ff3df012-b84d-4ed0-abd3-6ec9b09c14da?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6477/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/0215de89-5a13-4801-b571-87301392e6b3?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6249/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/ff3df012-b84d-4ed0-abd3-6ec9b09c14da?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "0215de89-5a13-4801-b571-87301392e6b3" + "ff3df012-b84d-4ed0-abd3-6ec9b09c14da" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1176,10 +1299,10 @@ "1197" ], "x-ms-correlation-request-id": [ - "7cc94bc7-7aa4-4ce9-b13c-9d81f70ba94f" + "8278a7cb-d758-4ca9-93e0-1df43078a2e1" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T021836Z:7cc94bc7-7aa4-4ce9-b13c-9d81f70ba94f" + "WESTUS:20200925T004021Z:8278a7cb-d758-4ca9-93e0-1df43078a2e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1188,10 +1311,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:18:36 GMT" + "Fri, 25 Sep 2020 00:40:21 GMT" ], "Content-Length": [ - "76" + "75" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1200,17 +1323,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-09-14T02:18:36.787Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-09-25T00:40:21.72Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6477/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/d9389316-f300-4ec1-bdd1-e9ea76e820dc?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQ3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDkzODkzMTYtZjMwMC00ZWMxLWJkZDEtZTllYTc2ZTgyMGRjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6249/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/27bd561a-bc37-4dbd-8398-0fef0d6d1b23?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI0OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMjdiZDU2MWEtYmMzNy00ZGJkLTgzOTgtMGZlZjBkNmQxYjIzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1227,19 +1350,19 @@ "15" ], "x-ms-request-id": [ - "bca2e8eb-b11b-431c-80d1-d7ef3d063300" + "f8830e4b-ddcf-48b0-a908-0b56bc4a867b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11987" ], "x-ms-correlation-request-id": [ - "49963dd2-5e2b-4fb7-ac33-9f417db421e9" + "e810f566-012f-4d22-be7a-79315471b943" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T021749Z:49963dd2-5e2b-4fb7-ac33-9f417db421e9" + "WESTUS:20200925T003919Z:e810f566-012f-4d22-be7a-79315471b943" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1248,7 +1371,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:17:49 GMT" + "Fri, 25 Sep 2020 00:39:18 GMT" ], "Content-Length": [ "108" @@ -1260,17 +1383,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d9389316-f300-4ec1-bdd1-e9ea76e820dc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T02:17:34.557Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"27bd561a-bc37-4dbd-8398-0fef0d6d1b23\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:39:04.127Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6477/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/d9389316-f300-4ec1-bdd1-e9ea76e820dc?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQ3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDkzODkzMTYtZjMwMC00ZWMxLWJkZDEtZTllYTc2ZTgyMGRjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6249/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/27bd561a-bc37-4dbd-8398-0fef0d6d1b23?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI0OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMjdiZDU2MWEtYmMzNy00ZGJkLTgzOTgtMGZlZjBkNmQxYjIzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1287,19 +1410,19 @@ "15" ], "x-ms-request-id": [ - "fc8cd6cf-3fb6-4d02-b7f1-9b4a18d45305" + "b0a3e1e3-279c-4059-9752-5c0793ffd7c8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11986" ], "x-ms-correlation-request-id": [ - "349c540f-d2b0-4ab2-9d12-4217f90ccf4c" + "9e456e2d-1399-4ea5-b2ab-ea4463070ed9" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T021805Z:349c540f-d2b0-4ab2-9d12-4217f90ccf4c" + "WESTUS:20200925T003934Z:9e456e2d-1399-4ea5-b2ab-ea4463070ed9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1308,7 +1431,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:18:04 GMT" + "Fri, 25 Sep 2020 00:39:34 GMT" ], "Content-Length": [ "108" @@ -1320,17 +1443,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d9389316-f300-4ec1-bdd1-e9ea76e820dc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T02:17:34.557Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"27bd561a-bc37-4dbd-8398-0fef0d6d1b23\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:39:04.127Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6477/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/d9389316-f300-4ec1-bdd1-e9ea76e820dc?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQ3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDkzODkzMTYtZjMwMC00ZWMxLWJkZDEtZTllYTc2ZTgyMGRjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6249/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/27bd561a-bc37-4dbd-8398-0fef0d6d1b23?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI0OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMjdiZDU2MWEtYmMzNy00ZGJkLTgzOTgtMGZlZjBkNmQxYjIzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1347,19 +1470,19 @@ "15" ], "x-ms-request-id": [ - "d99a2d2a-ec99-49ef-8061-5e878e6388f9" + "85de7f3a-0f58-4a5b-8096-5a87dd783bc7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11985" ], "x-ms-correlation-request-id": [ - "a65f0768-0986-4307-9c83-010307501460" + "b2ef89d5-4841-40be-84fe-8bbc40379fd1" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T021820Z:a65f0768-0986-4307-9c83-010307501460" + "WESTUS:20200925T003949Z:b2ef89d5-4841-40be-84fe-8bbc40379fd1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1368,7 +1491,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:18:19 GMT" + "Fri, 25 Sep 2020 00:39:49 GMT" ], "Content-Length": [ "108" @@ -1380,17 +1503,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d9389316-f300-4ec1-bdd1-e9ea76e820dc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T02:17:34.557Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"27bd561a-bc37-4dbd-8398-0fef0d6d1b23\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:39:04.127Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6477/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/d9389316-f300-4ec1-bdd1-e9ea76e820dc?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQ3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZDkzODkzMTYtZjMwMC00ZWMxLWJkZDEtZTllYTc2ZTgyMGRjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6249/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/27bd561a-bc37-4dbd-8398-0fef0d6d1b23?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI0OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMjdiZDU2MWEtYmMzNy00ZGJkLTgzOTgtMGZlZjBkNmQxYjIzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1407,19 +1530,19 @@ "15" ], "x-ms-request-id": [ - "5a557c03-2101-445a-a5ac-63fe4f9efc84" + "4961a2a2-2216-4f58-b332-6b53ee6106d1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11984" ], "x-ms-correlation-request-id": [ - "6fb4cd91-e3e9-49f8-b4f8-f829c0aef44e" + "ab39608c-4fbb-4d45-8207-decf95b28627" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T021835Z:6fb4cd91-e3e9-49f8-b4f8-f829c0aef44e" + "WESTUS:20200925T004005Z:ab39608c-4fbb-4d45-8207-decf95b28627" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1428,10 +1551,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:18:35 GMT" + "Fri, 25 Sep 2020 00:40:04 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1440,17 +1563,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d9389316-f300-4ec1-bdd1-e9ea76e820dc\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-14T02:17:34.557Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"27bd561a-bc37-4dbd-8398-0fef0d6d1b23\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:39:04.127Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6477/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/0215de89-5a13-4801-b571-87301392e6b3?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjQ3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMDIxNWRlODktNWExMy00ODAxLWI1NzEtODczMDEzOTJlNmIzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6249/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/27bd561a-bc37-4dbd-8398-0fef0d6d1b23?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI0OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMjdiZDU2MWEtYmMzNy00ZGJkLTgzOTgtMGZlZjBkNmQxYjIzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1467,19 +1590,19 @@ "15" ], "x-ms-request-id": [ - "1f542671-f635-4185-af2b-f68091fc8c61" + "aacfaf43-353a-4a88-8c62-8a01152856ea" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11983" ], "x-ms-correlation-request-id": [ - "36f31e5e-a1cd-4760-9f94-909b5bd48319" + "c24d1003-175f-4960-b3f9-5b8cbc991117" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T021852Z:36f31e5e-a1cd-4760-9f94-909b5bd48319" + "WESTUS:20200925T004020Z:c24d1003-175f-4960-b3f9-5b8cbc991117" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1488,7 +1611,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:18:51 GMT" + "Fri, 25 Sep 2020 00:40:20 GMT" ], "Content-Length": [ "107" @@ -1500,23 +1623,83 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"0215de89-5a13-4801-b571-87301392e6b3\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-14T02:18:36.787Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"27bd561a-bc37-4dbd-8398-0fef0d6d1b23\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-25T00:39:04.127Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps6249/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/ff3df012-b84d-4ed0-abd3-6ec9b09c14da?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNjI0OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vZmYzZGYwMTItYjg0ZC00ZWQwLWFiZDMtNmVjOWIwOWMxNGRhP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "c9a51505-833a-496f-ae91-024f9330cae9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-correlation-request-id": [ + "f0dbc448-6be5-4272-bf9e-0f832f54e487" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200925T004037Z:f0dbc448-6be5-4272-bf9e-0f832f54e487" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 25 Sep 2020 00:40:36 GMT" + ], + "Content-Length": [ + "106" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ff3df012-b84d-4ed0-abd3-6ec9b09c14da\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-25T00:40:21.72Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps6477?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzNjQ3Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps6249?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzNjI0OT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a8a325a2-8f6f-41d3-a2fe-35847f7424be" + "11b0f048-2287-4b91-bbde-41d0aedfc323" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -1530,7 +1713,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0NzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNDktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1539,13 +1722,13 @@ "14999" ], "x-ms-request-id": [ - "8009a144-6464-40ce-baeb-403410fc1f9c" + "8a2e2142-38b0-4e30-9cf8-f77a59379b1e" ], "x-ms-correlation-request-id": [ - "8009a144-6464-40ce-baeb-403410fc1f9c" + "8a2e2142-38b0-4e30-9cf8-f77a59379b1e" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T021853Z:8009a144-6464-40ce-baeb-403410fc1f9c" + "WESTUS:20200925T004038Z:8a2e2142-38b0-4e30-9cf8-f77a59379b1e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1554,7 +1737,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:18:52 GMT" + "Fri, 25 Sep 2020 00:40:37 GMT" ], "Expires": [ "-1" @@ -1567,13 +1750,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0NzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZME56Y3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNDktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU5Ea3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -1587,7 +1770,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0NzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNDktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1596,13 +1779,13 @@ "11999" ], "x-ms-request-id": [ - "5646a3fd-8f7c-4867-8515-2400c1135a86" + "91799f49-26a7-400f-a3c7-725f4c04681a" ], "x-ms-correlation-request-id": [ - "5646a3fd-8f7c-4867-8515-2400c1135a86" + "91799f49-26a7-400f-a3c7-725f4c04681a" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T021908Z:5646a3fd-8f7c-4867-8515-2400c1135a86" + "WESTUS:20200925T004053Z:91799f49-26a7-400f-a3c7-725f4c04681a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1611,7 +1794,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:19:07 GMT" + "Fri, 25 Sep 2020 00:40:52 GMT" ], "Expires": [ "-1" @@ -1624,13 +1807,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0NzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZME56Y3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNDktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU5Ea3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -1644,7 +1827,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0NzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNDktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1653,13 +1836,13 @@ "11998" ], "x-ms-request-id": [ - "3ba3ac12-cfc3-4ff4-a220-9308afdb01e6" + "ca3af3c1-200f-4663-8fb1-94b73a6cb008" ], "x-ms-correlation-request-id": [ - "3ba3ac12-cfc3-4ff4-a220-9308afdb01e6" + "ca3af3c1-200f-4663-8fb1-94b73a6cb008" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T021923Z:3ba3ac12-cfc3-4ff4-a220-9308afdb01e6" + "WESTUS:20200925T004108Z:ca3af3c1-200f-4663-8fb1-94b73a6cb008" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1668,7 +1851,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:19:23 GMT" + "Fri, 25 Sep 2020 00:41:08 GMT" ], "Expires": [ "-1" @@ -1681,13 +1864,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0NzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZME56Y3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNDktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU5Ea3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -1701,7 +1884,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0NzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNDktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1710,13 +1893,13 @@ "11997" ], "x-ms-request-id": [ - "26d15b55-2a8a-45c1-ab16-50bcd5b5dd12" + "3b770829-e3de-46de-b16e-3106e687fb5d" ], "x-ms-correlation-request-id": [ - "26d15b55-2a8a-45c1-ab16-50bcd5b5dd12" + "3b770829-e3de-46de-b16e-3106e687fb5d" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T021938Z:26d15b55-2a8a-45c1-ab16-50bcd5b5dd12" + "WESTUS:20200925T004123Z:3b770829-e3de-46de-b16e-3106e687fb5d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1725,7 +1908,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:19:38 GMT" + "Fri, 25 Sep 2020 00:41:23 GMT" ], "Expires": [ "-1" @@ -1738,13 +1921,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0NzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZME56Y3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNDktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU5Ea3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -1758,7 +1941,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0NzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNDktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1767,13 +1950,13 @@ "11996" ], "x-ms-request-id": [ - "f191a6ce-5725-4eb6-b6a5-a9fb2cccce46" + "f627d4bb-9945-488b-9ed0-b2cf96d35682" ], "x-ms-correlation-request-id": [ - "f191a6ce-5725-4eb6-b6a5-a9fb2cccce46" + "f627d4bb-9945-488b-9ed0-b2cf96d35682" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T021953Z:f191a6ce-5725-4eb6-b6a5-a9fb2cccce46" + "WESTUS:20200925T004138Z:f627d4bb-9945-488b-9ed0-b2cf96d35682" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1782,7 +1965,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:19:53 GMT" + "Fri, 25 Sep 2020 00:41:38 GMT" ], "Expires": [ "-1" @@ -1795,13 +1978,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0NzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZME56Y3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNDktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU5Ea3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -1815,7 +1998,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0NzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNDktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1824,13 +2007,13 @@ "11995" ], "x-ms-request-id": [ - "ccbf20db-b789-4349-a060-306f5e9eebed" + "eb2a1b35-c8a2-44b1-9b3f-5b1f1d9f73e0" ], "x-ms-correlation-request-id": [ - "ccbf20db-b789-4349-a060-306f5e9eebed" + "eb2a1b35-c8a2-44b1-9b3f-5b1f1d9f73e0" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022008Z:ccbf20db-b789-4349-a060-306f5e9eebed" + "WESTUS:20200925T004153Z:eb2a1b35-c8a2-44b1-9b3f-5b1f1d9f73e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1839,7 +2022,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:20:08 GMT" + "Fri, 25 Sep 2020 00:41:53 GMT" ], "Expires": [ "-1" @@ -1852,13 +2035,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0NzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZME56Y3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNDktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU5Ea3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -1872,7 +2055,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0NzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNDktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1881,13 +2064,13 @@ "11994" ], "x-ms-request-id": [ - "174904f5-f6b3-4d94-9896-8d2cbd8c86bd" + "8fb12bfd-9da3-4d58-88b2-66a30a7bf296" ], "x-ms-correlation-request-id": [ - "174904f5-f6b3-4d94-9896-8d2cbd8c86bd" + "8fb12bfd-9da3-4d58-88b2-66a30a7bf296" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022023Z:174904f5-f6b3-4d94-9896-8d2cbd8c86bd" + "WESTUS:20200925T004208Z:8fb12bfd-9da3-4d58-88b2-66a30a7bf296" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1896,7 +2079,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:20:23 GMT" + "Fri, 25 Sep 2020 00:42:08 GMT" ], "Expires": [ "-1" @@ -1909,13 +2092,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0NzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZME56Y3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNDktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU5Ea3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -1932,13 +2115,13 @@ "11993" ], "x-ms-request-id": [ - "f0d63edf-2c61-4be2-b180-1667d465f0fd" + "5a5fcca3-b301-41f1-a0fa-3623caee9c25" ], "x-ms-correlation-request-id": [ - "f0d63edf-2c61-4be2-b180-1667d465f0fd" + "5a5fcca3-b301-41f1-a0fa-3623caee9c25" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022039Z:f0d63edf-2c61-4be2-b180-1667d465f0fd" + "WESTUS:20200925T004223Z:5a5fcca3-b301-41f1-a0fa-3623caee9c25" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1947,7 +2130,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:20:38 GMT" + "Fri, 25 Sep 2020 00:42:23 GMT" ], "Expires": [ "-1" @@ -1960,13 +2143,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0NzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZME56Y3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYyNDktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZeU5Ea3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -1983,13 +2166,13 @@ "11992" ], "x-ms-request-id": [ - "6aad5b43-4660-4d67-97f0-7e01391afc13" + "53c51f1f-a382-474c-9232-8b49e288b12d" ], "x-ms-correlation-request-id": [ - "6aad5b43-4660-4d67-97f0-7e01391afc13" + "53c51f1f-a382-474c-9232-8b49e288b12d" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022039Z:6aad5b43-4660-4d67-97f0-7e01391afc13" + "WESTUS:20200925T004223Z:53c51f1f-a382-474c-9232-8b49e288b12d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1998,7 +2181,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:20:38 GMT" + "Fri, 25 Sep 2020 00:42:23 GMT" ], "Expires": [ "-1" @@ -2013,9 +2196,9 @@ ], "Names": { "Test-CreateUpdateDatabaseReadScale": [ - "ps6477", - "ps8600", - "ps2778" + "ps6249", + "ps9288", + "ps8860" ] }, "Variables": { diff --git a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ReadScaleCrudTests/TestDatabaseReadScaleGet.json b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ReadScaleCrudTests/TestDatabaseReadScaleGet.json index a53845159a63..b5b1194c0ce6 100644 --- a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ReadScaleCrudTests/TestDatabaseReadScaleGet.json +++ b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ReadScaleCrudTests/TestDatabaseReadScaleGet.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps548?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzNTQ4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps5507?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzNTUwNz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "258b9453-4f41-4a90-b26d-30ccff91a2a6" + "406fa80c-a3ce-4488-b155-b3c6d9b78b55" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "2eff3d93-1acc-4d40-bcdf-5cb5eb6741f4" + "5c76bda0-e1d5-4c9e-80df-fbcd8612c6c9" ], "x-ms-correlation-request-id": [ - "2eff3d93-1acc-4d40-bcdf-5cb5eb6741f4" + "5c76bda0-e1d5-4c9e-80df-fbcd8612c6c9" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022042Z:2eff3d93-1acc-4d40-bcdf-5cb5eb6741f4" + "WESTUS:20200925T004227Z:5c76bda0-e1d5-4c9e-80df-fbcd8612c6c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:20:41 GMT" + "Fri, 25 Sep 2020 00:42:26 GMT" ], "Content-Length": [ - "170" + "172" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,23 +63,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps548\",\r\n \"name\": \"ps548\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5507\",\r\n \"name\": \"ps5507\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps548/providers/Microsoft.Sql/servers/ps3198?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMzMTk4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5507/providers/Microsoft.Sql/servers/ps7900?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTUwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzkwMD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "170a9534-fd75-4406-b21a-30945971581e" + "1c5b202a-bb5e-40d9-93fb-a549437b4fe8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "520c9166-5c47-436d-86a5-29ed3865aa32" + "91c2e151-0f86-45d1-86a6-5358fa68e217" ], "x-ms-correlation-request-id": [ - "520c9166-5c47-436d-86a5-29ed3865aa32" + "91c2e151-0f86-45d1-86a6-5358fa68e217" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022042Z:520c9166-5c47-436d-86a5-29ed3865aa32" + "WESTUS:20200925T004227Z:91c2e151-0f86-45d1-86a6-5358fa68e217" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:20:42 GMT" + "Fri, 25 Sep 2020 00:42:26 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -120,20 +120,20 @@ "-1" ], "Content-Length": [ - "205" + "206" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps3198' under resource group 'ps548' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps7900' under resource group 'ps5507' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps548/providers/Microsoft.Sql/servers/ps3198?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMzMTk4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5507/providers/Microsoft.Sql/servers/ps7900?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTUwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzkwMD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -147,7 +147,7 @@ "no-cache" ], "x-ms-request-id": [ - "1ddbd0b7-157c-49cf-894f-4baa0e51a8c3" + "30a98b47-8d64-4a2c-8a0f-b5b09be9e71f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -156,10 +156,10 @@ "11991" ], "x-ms-correlation-request-id": [ - "d2cdf5b9-aa2b-44c6-ad5b-48db55495ee2" + "b7f2eefb-2950-4998-8b63-8e8c6077d9ee" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022131Z:d2cdf5b9-aa2b-44c6-ad5b-48db55495ee2" + "WESTUS:20200925T004315Z:b7f2eefb-2950-4998-8b63-8e8c6077d9ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -168,10 +168,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:21:30 GMT" + "Fri, 25 Sep 2020 00:43:15 GMT" ], "Content-Length": [ - "414" + "415" ], "Content-Type": [ "application/json; charset=utf-8" @@ -180,23 +180,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps3198.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps548/providers/Microsoft.Sql/servers/ps3198\",\r\n \"name\": \"ps3198\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps7900.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5507/providers/Microsoft.Sql/servers/ps7900\",\r\n \"name\": \"ps7900\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps548/providers/Microsoft.Sql/servers/ps3198?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMzMTk4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5507/providers/Microsoft.Sql/servers/ps7900?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTUwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzkwMD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4ee343e5-ec90-4d95-9e93-f5313af421ee" + "47293872-3e72-4615-8372-d17e6c43612a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -210,7 +210,7 @@ "no-cache" ], "x-ms-request-id": [ - "475d6740-7355-4c22-8620-00fa160c145c" + "70302b5e-5c55-4c08-b664-c24837427268" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -219,10 +219,10 @@ "11990" ], "x-ms-correlation-request-id": [ - "aa34250a-b6c4-45d0-baaa-7df76b6ac0f0" + "5564393c-c123-41b6-b023-2249cbacbcd7" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022131Z:aa34250a-b6c4-45d0-baaa-7df76b6ac0f0" + "WESTUS:20200925T004315Z:5564393c-c123-41b6-b023-2249cbacbcd7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -231,10 +231,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:21:31 GMT" + "Fri, 25 Sep 2020 00:43:15 GMT" ], "Content-Length": [ - "414" + "415" ], "Content-Type": [ "application/json; charset=utf-8" @@ -243,23 +243,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps3198.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps548/providers/Microsoft.Sql/servers/ps3198\",\r\n \"name\": \"ps3198\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps7900.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5507/providers/Microsoft.Sql/servers/ps7900\",\r\n \"name\": \"ps7900\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps548/providers/Microsoft.Sql/servers/ps3198?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMzMTk4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5507/providers/Microsoft.Sql/servers/ps7900?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTUwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzkwMD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "189a402a-98bb-4576-92fb-af5ee522f28a" + "e66de59b-8164-4c02-a95e-5c6d612db6b1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -273,7 +273,7 @@ "no-cache" ], "x-ms-request-id": [ - "1a7c03ae-9d61-4f39-aea4-ed87bb31962b" + "60b9f778-ec01-47ad-a91a-cba3faed092b" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -282,10 +282,73 @@ "11988" ], "x-ms-correlation-request-id": [ - "1731b0c2-d99f-48da-9ae4-5cfb0a179930" + "ec072637-9257-4093-82b7-49d616ab60b3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200925T004316Z:ec072637-9257-4093-82b7-49d616ab60b3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 25 Sep 2020 00:43:15 GMT" + ], + "Content-Length": [ + "415" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps7900.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5507/providers/Microsoft.Sql/servers/ps7900\",\r\n \"name\": \"ps7900\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5507/providers/Microsoft.Sql/servers/ps7900?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTUwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzkwMD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b1361272-8f80-46ab-96eb-cb4a708119d3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a17b3c4f-a227-478e-b169-ec6581e2e61f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-correlation-request-id": [ + "e3ced51e-2e53-437d-9a2c-999dba924153" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022131Z:1731b0c2-d99f-48da-9ae4-5cfb0a179930" + "WESTUS:20200925T004433Z:e3ced51e-2e53-437d-9a2c-999dba924153" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -294,10 +357,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:21:31 GMT" + "Fri, 25 Sep 2020 00:44:32 GMT" ], "Content-Length": [ - "414" + "415" ], "Content-Type": [ "application/json; charset=utf-8" @@ -306,23 +369,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps3198.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps548/providers/Microsoft.Sql/servers/ps3198\",\r\n \"name\": \"ps3198\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps7900.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5507/providers/Microsoft.Sql/servers/ps7900\",\r\n \"name\": \"ps7900\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps548/providers/Microsoft.Sql/servers/ps3198?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMzMTk4P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5507/providers/Microsoft.Sql/servers/ps7900?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTUwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzkwMD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "89e0757f-4f86-4665-844b-210a0ebeb8f6" + "2f2096b4-f424-43fb-81de-c9f63f2caec2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -342,28 +405,28 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps548/providers/Microsoft.Sql/locations/southeastasia/serverOperationResults/c37ac0ea-8180-4abe-8a75-c096e04729de?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5507/providers/Microsoft.Sql/locations/southeastasia/serverOperationResults/382dc0b2-2c20-4f6e-9a86-a5f68575a21d?api-version=2019-06-01-preview" ], "Retry-After": [ "1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps548/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/c37ac0ea-8180-4abe-8a75-c096e04729de?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5507/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/382dc0b2-2c20-4f6e-9a86-a5f68575a21d?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "c37ac0ea-8180-4abe-8a75-c096e04729de" + "382dc0b2-2c20-4f6e-9a86-a5f68575a21d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "6bcb3b00-bffe-49aa-ae49-3ee080be5890" + "02aae9e7-c39c-4e57-bc5f-e030f46898c7" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022043Z:6bcb3b00-bffe-49aa-ae49-3ee080be5890" + "WESTUS:20200925T004228Z:02aae9e7-c39c-4e57-bc5f-e030f46898c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -372,10 +435,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:20:43 GMT" + "Fri, 25 Sep 2020 00:42:27 GMT" ], "Content-Length": [ - "74" + "73" ], "Content-Type": [ "application/json; charset=utf-8" @@ -384,17 +447,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-14T02:20:43.793Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-25T00:42:28.45Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps548/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/c37ac0ea-8180-4abe-8a75-c096e04729de?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vYzM3YWMwZWEtODE4MC00YWJlLThhNzUtYzA5NmUwNDcyOWRlP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5507/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/382dc0b2-2c20-4f6e-9a86-a5f68575a21d?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTUwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzM4MmRjMGIyLTJjMjAtNGY2ZS05YTg2LWE1ZjY4NTc1YTIxZD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -411,7 +474,7 @@ "1" ], "x-ms-request-id": [ - "f103dfdc-fce4-4754-81a1-2f88baa0847f" + "d0f085d6-d5ef-4dec-857b-095209b8d113" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -420,10 +483,10 @@ "11998" ], "x-ms-correlation-request-id": [ - "0ef3e135-3a3c-4b2f-ba51-3c20e0dad20c" + "4f200579-4485-4896-8eef-1d72cc7b8d77" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022045Z:0ef3e135-3a3c-4b2f-ba51-3c20e0dad20c" + "WESTUS:20200925T004229Z:4f200579-4485-4896-8eef-1d72cc7b8d77" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,10 +495,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:20:45 GMT" + "Fri, 25 Sep 2020 00:42:28 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -444,17 +507,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"c37ac0ea-8180-4abe-8a75-c096e04729de\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T02:20:43.793Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"382dc0b2-2c20-4f6e-9a86-a5f68575a21d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:42:28.45Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps548/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/c37ac0ea-8180-4abe-8a75-c096e04729de?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vYzM3YWMwZWEtODE4MC00YWJlLThhNzUtYzA5NmUwNDcyOWRlP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5507/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/382dc0b2-2c20-4f6e-9a86-a5f68575a21d?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTUwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzM4MmRjMGIyLTJjMjAtNGY2ZS05YTg2LWE1ZjY4NTc1YTIxZD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -471,7 +534,7 @@ "1" ], "x-ms-request-id": [ - "92439d9a-694f-460b-92e4-f6b07446ab6d" + "7abca65c-59d6-44fa-99cb-ef245c4ac8f7" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -480,10 +543,10 @@ "11997" ], "x-ms-correlation-request-id": [ - "5f6aaa90-863f-4e47-8afd-e361d7013f9c" + "fcd378ae-df69-4639-b22b-c1694f854b8e" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022046Z:5f6aaa90-863f-4e47-8afd-e361d7013f9c" + "WESTUS:20200925T004231Z:fcd378ae-df69-4639-b22b-c1694f854b8e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -492,10 +555,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:20:46 GMT" + "Fri, 25 Sep 2020 00:42:30 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -504,17 +567,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"c37ac0ea-8180-4abe-8a75-c096e04729de\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T02:20:43.793Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"382dc0b2-2c20-4f6e-9a86-a5f68575a21d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:42:28.45Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps548/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/c37ac0ea-8180-4abe-8a75-c096e04729de?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vYzM3YWMwZWEtODE4MC00YWJlLThhNzUtYzA5NmUwNDcyOWRlP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5507/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/382dc0b2-2c20-4f6e-9a86-a5f68575a21d?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTUwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzM4MmRjMGIyLTJjMjAtNGY2ZS05YTg2LWE1ZjY4NTc1YTIxZD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -531,7 +594,7 @@ "1" ], "x-ms-request-id": [ - "e90375c4-5164-4cff-a1b6-cd387e7f02bc" + "14dbc245-6b28-4656-8e58-7cd889480b75" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -540,10 +603,10 @@ "11996" ], "x-ms-correlation-request-id": [ - "8b665e5a-6a18-4527-b90c-5a356a5f2b46" + "6057fc04-30f7-4f1f-bc27-9ff7116c945f" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022047Z:8b665e5a-6a18-4527-b90c-5a356a5f2b46" + "WESTUS:20200925T004232Z:6057fc04-30f7-4f1f-bc27-9ff7116c945f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -552,10 +615,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:20:47 GMT" + "Fri, 25 Sep 2020 00:42:31 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -564,17 +627,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"c37ac0ea-8180-4abe-8a75-c096e04729de\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T02:20:43.793Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"382dc0b2-2c20-4f6e-9a86-a5f68575a21d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:42:28.45Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps548/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/c37ac0ea-8180-4abe-8a75-c096e04729de?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vYzM3YWMwZWEtODE4MC00YWJlLThhNzUtYzA5NmUwNDcyOWRlP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5507/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/382dc0b2-2c20-4f6e-9a86-a5f68575a21d?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTUwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzM4MmRjMGIyLTJjMjAtNGY2ZS05YTg2LWE1ZjY4NTc1YTIxZD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -591,7 +654,7 @@ "1" ], "x-ms-request-id": [ - "ad3df921-651a-4e33-8669-90caac6294e3" + "6dbe0a20-69ee-4ef4-9f77-6f19faa77ddb" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -600,10 +663,10 @@ "11995" ], "x-ms-correlation-request-id": [ - "b465b05f-52b5-4590-9dd9-59d0a43f373f" + "1d0ae05f-645b-436d-ae80-a841a64ddad6" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022048Z:b465b05f-52b5-4590-9dd9-59d0a43f373f" + "WESTUS:20200925T004233Z:1d0ae05f-645b-436d-ae80-a841a64ddad6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -612,10 +675,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:20:48 GMT" + "Fri, 25 Sep 2020 00:42:32 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -624,17 +687,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"c37ac0ea-8180-4abe-8a75-c096e04729de\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T02:20:43.793Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"382dc0b2-2c20-4f6e-9a86-a5f68575a21d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:42:28.45Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps548/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/c37ac0ea-8180-4abe-8a75-c096e04729de?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vYzM3YWMwZWEtODE4MC00YWJlLThhNzUtYzA5NmUwNDcyOWRlP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5507/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/382dc0b2-2c20-4f6e-9a86-a5f68575a21d?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTUwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzM4MmRjMGIyLTJjMjAtNGY2ZS05YTg2LWE1ZjY4NTc1YTIxZD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -651,7 +714,7 @@ "20" ], "x-ms-request-id": [ - "aa47ae80-aec4-43cd-bb47-9ea478f70958" + "add22588-ad65-4e54-9946-b44f4cebf77b" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -660,10 +723,10 @@ "11994" ], "x-ms-correlation-request-id": [ - "798a3294-2e5c-4a0c-b53a-34e3285c43aa" + "f98c0e46-2895-4ffd-b24a-ae07c289796e" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022050Z:798a3294-2e5c-4a0c-b53a-34e3285c43aa" + "WESTUS:20200925T004234Z:f98c0e46-2895-4ffd-b24a-ae07c289796e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -672,10 +735,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:20:49 GMT" + "Fri, 25 Sep 2020 00:42:33 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -684,17 +747,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"c37ac0ea-8180-4abe-8a75-c096e04729de\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T02:20:43.793Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"382dc0b2-2c20-4f6e-9a86-a5f68575a21d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:42:28.45Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps548/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/c37ac0ea-8180-4abe-8a75-c096e04729de?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vYzM3YWMwZWEtODE4MC00YWJlLThhNzUtYzA5NmUwNDcyOWRlP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5507/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/382dc0b2-2c20-4f6e-9a86-a5f68575a21d?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTUwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzM4MmRjMGIyLTJjMjAtNGY2ZS05YTg2LWE1ZjY4NTc1YTIxZD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -711,7 +774,7 @@ "20" ], "x-ms-request-id": [ - "eea93581-6a0e-4181-ba2e-588507917929" + "61028703-63c0-4d84-af11-0056277e29a3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -720,10 +783,10 @@ "11993" ], "x-ms-correlation-request-id": [ - "03b3dba8-4f46-4b8f-ba2b-88e9f94c865e" + "53f34ecc-6c6f-4f34-8241-fef3cd3b6ce7" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022110Z:03b3dba8-4f46-4b8f-ba2b-88e9f94c865e" + "WESTUS:20200925T004254Z:53f34ecc-6c6f-4f34-8241-fef3cd3b6ce7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -732,10 +795,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:21:10 GMT" + "Fri, 25 Sep 2020 00:42:54 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -744,17 +807,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"c37ac0ea-8180-4abe-8a75-c096e04729de\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T02:20:43.793Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"382dc0b2-2c20-4f6e-9a86-a5f68575a21d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:42:28.45Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps548/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/c37ac0ea-8180-4abe-8a75-c096e04729de?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL3NlcnZlckF6dXJlQXN5bmNPcGVyYXRpb24vYzM3YWMwZWEtODE4MC00YWJlLThhNzUtYzA5NmUwNDcyOWRlP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5507/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/382dc0b2-2c20-4f6e-9a86-a5f68575a21d?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTUwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzM4MmRjMGIyLTJjMjAtNGY2ZS05YTg2LWE1ZjY4NTc1YTIxZD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -771,7 +834,7 @@ "15" ], "x-ms-request-id": [ - "72d221ea-ca9c-481e-abea-e897d39a9004" + "1d437009-587a-4df5-b24e-d083cd415828" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -780,10 +843,10 @@ "11992" ], "x-ms-correlation-request-id": [ - "c17f517c-7cda-4403-b6c2-bb9f9a10177b" + "bac6d2ea-0059-4e67-b917-777c1caa98eb" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022131Z:c17f517c-7cda-4403-b6c2-bb9f9a10177b" + "WESTUS:20200925T004315Z:bac6d2ea-0059-4e67-b917-777c1caa98eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -792,10 +855,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:21:30 GMT" + "Fri, 25 Sep 2020 00:43:14 GMT" ], "Content-Length": [ - "107" + "106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -804,23 +867,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"c37ac0ea-8180-4abe-8a75-c096e04729de\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-14T02:20:43.793Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"382dc0b2-2c20-4f6e-9a86-a5f68575a21d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-25T00:42:28.45Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps548/providers/Microsoft.Sql/servers/ps3198/databases/ps2654?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMzMTk4L2RhdGFiYXNlcy9wczI2NTQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5507/providers/Microsoft.Sql/servers/ps7900/databases/ps8211?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTUwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzkwMC9kYXRhYmFzZXMvcHM4MjExP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "421dac96-3bba-4776-9ef1-b100a2e48162" + "4f6a4604-85ef-4ca2-bc57-ca1fa123856f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -837,13 +900,13 @@ "gateway" ], "x-ms-request-id": [ - "c3977e50-e5a7-4059-ae76-a84988d76c78" + "c9c420fd-17d1-4522-b3a6-a638da0ca857" ], "x-ms-correlation-request-id": [ - "c3977e50-e5a7-4059-ae76-a84988d76c78" + "c9c420fd-17d1-4522-b3a6-a638da0ca857" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022131Z:c3977e50-e5a7-4059-ae76-a84988d76c78" + "WESTUS:20200925T004315Z:c9c420fd-17d1-4522-b3a6-a638da0ca857" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -852,7 +915,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:21:31 GMT" + "Fri, 25 Sep 2020 00:43:15 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -861,20 +924,20 @@ "-1" ], "Content-Length": [ - "222" + "223" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps3198/databases/ps2654' under resource group 'ps548' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps7900/databases/ps8211' under resource group 'ps5507' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps548/providers/Microsoft.Sql/servers/ps3198/databases/ps2654?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMzMTk4L2RhdGFiYXNlcy9wczI2NTQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5507/providers/Microsoft.Sql/servers/ps7900/databases/ps8211?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTUwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzkwMC9kYXRhYmFzZXMvcHM4MjExP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -888,19 +951,19 @@ "no-cache" ], "x-ms-request-id": [ - "702d94b4-8712-46d7-9136-6b212ab41973" + "2af3fc00-4873-4f28-aa0c-c552ea102cb4" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11982" ], "x-ms-correlation-request-id": [ - "5ac966c5-9078-4e28-8b6b-e9a0899bb33f" + "317e70c5-66f3-4518-b1ce-eb2984affb0a" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022234Z:5ac966c5-9078-4e28-8b6b-e9a0899bb33f" + "WESTUS:20200925T004433Z:317e70c5-66f3-4518-b1ce-eb2984affb0a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -909,10 +972,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:22:33 GMT" + "Fri, 25 Sep 2020 00:44:32 GMT" ], "Content-Length": [ - "861" + "860" ], "Content-Type": [ "application/json; charset=utf-8" @@ -921,23 +984,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"c6b575f9-2e77-4577-9697-0143c2d2464c\",\r\n \"creationDate\": \"2020-09-14T02:22:31.497Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-14T02:52:31.497Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps548/providers/Microsoft.Sql/servers/ps3198/databases/ps2654\",\r\n \"name\": \"ps2654\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"5111c37b-fb09-435f-826e-af46428d60a6\",\r\n \"creationDate\": \"2020-09-25T00:44:21.07Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-25T01:14:21.07Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5507/providers/Microsoft.Sql/servers/ps7900/databases/ps8211\",\r\n \"name\": \"ps8211\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps548/providers/Microsoft.Sql/servers/ps3198/databases/ps2654?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMzMTk4L2RhdGFiYXNlcy9wczI2NTQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5507/providers/Microsoft.Sql/servers/ps7900/databases/ps8211?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTUwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzkwMC9kYXRhYmFzZXMvcHM4MjExP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2e22e066-0e56-4c25-8b65-abe300fec0da" + "0819bec9-9994-4e14-9cc6-c4e9596ad027" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -951,19 +1014,19 @@ "no-cache" ], "x-ms-request-id": [ - "b03e9ce4-c4f7-48fa-ab5f-29949ab0fa54" + "2c3368b9-1e73-4077-acbc-cd22db768519" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11981" ], "x-ms-correlation-request-id": [ - "c143d7cf-a36f-4575-9b39-d3cf286b47dd" + "2ab24956-3792-41d0-9dab-a20a4271ca6d" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022234Z:c143d7cf-a36f-4575-9b39-d3cf286b47dd" + "WESTUS:20200925T004433Z:2ab24956-3792-41d0-9dab-a20a4271ca6d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -972,10 +1035,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:22:33 GMT" + "Fri, 25 Sep 2020 00:44:32 GMT" ], "Content-Length": [ - "861" + "860" ], "Content-Type": [ "application/json; charset=utf-8" @@ -984,23 +1047,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"c6b575f9-2e77-4577-9697-0143c2d2464c\",\r\n \"creationDate\": \"2020-09-14T02:22:31.497Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-14T02:52:31.497Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps548/providers/Microsoft.Sql/servers/ps3198/databases/ps2654\",\r\n \"name\": \"ps2654\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"5111c37b-fb09-435f-826e-af46428d60a6\",\r\n \"creationDate\": \"2020-09-25T00:44:21.07Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-25T01:14:21.07Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5507/providers/Microsoft.Sql/servers/ps7900/databases/ps8211\",\r\n \"name\": \"ps8211\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps548/providers/Microsoft.Sql/servers/ps3198/databases/ps2654?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMzMTk4L2RhdGFiYXNlcy9wczI2NTQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5507/providers/Microsoft.Sql/servers/ps7900/databases/ps8211?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTUwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzkwMC9kYXRhYmFzZXMvcHM4MjExP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d83beb74-88d6-491e-8c33-7b0fc5b47f98" + "d4a155d3-fc3c-445d-9ee1-f0b6a5060a87" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1014,19 +1077,19 @@ "no-cache" ], "x-ms-request-id": [ - "98f13da7-154a-452d-b680-0bf8cc922840" + "6b76119a-d5f0-415f-940e-b5f1f19714ea" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11979" ], "x-ms-correlation-request-id": [ - "39031944-5053-41ca-9eb4-b4aa9e8c9296" + "4e248d55-5621-46e8-8b91-1b384329c375" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022235Z:39031944-5053-41ca-9eb4-b4aa9e8c9296" + "WESTUS:20200925T004433Z:4e248d55-5621-46e8-8b91-1b384329c375" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1035,10 +1098,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:22:34 GMT" + "Fri, 25 Sep 2020 00:44:33 GMT" ], "Content-Length": [ - "861" + "860" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1047,23 +1110,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"c6b575f9-2e77-4577-9697-0143c2d2464c\",\r\n \"creationDate\": \"2020-09-14T02:22:31.497Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-14T02:52:31.497Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps548/providers/Microsoft.Sql/servers/ps3198/databases/ps2654\",\r\n \"name\": \"ps2654\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"5111c37b-fb09-435f-826e-af46428d60a6\",\r\n \"creationDate\": \"2020-09-25T00:44:21.07Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-25T01:14:21.07Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5507/providers/Microsoft.Sql/servers/ps7900/databases/ps8211\",\r\n \"name\": \"ps8211\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps548/providers/Microsoft.Sql/servers/ps3198/databases/ps2654?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMzMTk4L2RhdGFiYXNlcy9wczI2NTQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5507/providers/Microsoft.Sql/servers/ps7900/databases/ps8211?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTUwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzkwMC9kYXRhYmFzZXMvcHM4MjExP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "79077bb5-3661-47ba-9510-423c7db4e9f9" + "e7e4a32a-5900-4a03-a0ac-eccda6e03bde" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1077,19 +1140,19 @@ "no-cache" ], "x-ms-request-id": [ - "53925ed0-537c-4266-b6bb-cc95f39fb263" + "de0d0d41-282c-4f71-a5a9-a88edcb2031c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11978" ], "x-ms-correlation-request-id": [ - "18d5aa2d-082d-4ca5-98d5-afbfd3ad6ca6" + "be2a33ff-c9b5-431f-9bec-36d041abbdcb" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022235Z:18d5aa2d-082d-4ca5-98d5-afbfd3ad6ca6" + "WESTUS:20200925T004434Z:be2a33ff-c9b5-431f-9bec-36d041abbdcb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1098,10 +1161,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:22:34 GMT" + "Fri, 25 Sep 2020 00:44:33 GMT" ], "Content-Length": [ - "861" + "860" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1110,17 +1173,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"c6b575f9-2e77-4577-9697-0143c2d2464c\",\r\n \"creationDate\": \"2020-09-14T02:22:31.497Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-14T02:52:31.497Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps548/providers/Microsoft.Sql/servers/ps3198/databases/ps2654\",\r\n \"name\": \"ps2654\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"5111c37b-fb09-435f-826e-af46428d60a6\",\r\n \"creationDate\": \"2020-09-25T00:44:21.07Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-25T01:14:21.07Z\",\r\n \"readScale\": \"Enabled\",\r\n \"readReplicaCount\": 1,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5507/providers/Microsoft.Sql/servers/ps7900/databases/ps8211\",\r\n \"name\": \"ps8211\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps548/providers/Microsoft.Sql/servers/ps3198/databases/ps2654?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMzMTk4L2RhdGFiYXNlcy9wczI2NTQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5507/providers/Microsoft.Sql/servers/ps7900/databases/ps8211?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTUwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzkwMC9kYXRhYmFzZXMvcHM4MjExP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1134,19 +1197,19 @@ "no-cache" ], "x-ms-request-id": [ - "fee9b99c-f622-4798-9d5c-528b15223826" + "de1af01d-2a73-40ae-b42e-52346e510c54" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11976" ], "x-ms-correlation-request-id": [ - "02393aa7-a850-4bdd-b5f2-958391bd23cf" + "ab97b2e2-009b-499e-94cf-79a1a943c7c6" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022251Z:02393aa7-a850-4bdd-b5f2-958391bd23cf" + "WESTUS:20200925T004449Z:ab97b2e2-009b-499e-94cf-79a1a943c7c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1155,10 +1218,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:22:51 GMT" + "Fri, 25 Sep 2020 00:44:49 GMT" ], "Content-Length": [ - "862" + "861" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1167,23 +1230,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"c6b575f9-2e77-4577-9697-0143c2d2464c\",\r\n \"creationDate\": \"2020-09-14T02:22:31.497Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-14T02:52:31.497Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps548/providers/Microsoft.Sql/servers/ps3198/databases/ps2654\",\r\n \"name\": \"ps2654\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 536870912000,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"5111c37b-fb09-435f-826e-af46428d60a6\",\r\n \"creationDate\": \"2020-09-25T00:44:21.07Z\",\r\n \"currentServiceObjectiveName\": \"P1\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"defaultSecondaryLocation\": \"eastasia\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"earliestRestoreDate\": \"2020-09-25T01:14:21.07Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 125\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5507/providers/Microsoft.Sql/servers/ps7900/databases/ps8211\",\r\n \"name\": \"ps8211\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps548/providers/Microsoft.Sql/servers/ps3198/databases/ps2654?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMzMTk4L2RhdGFiYXNlcy9wczI2NTQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5507/providers/Microsoft.Sql/servers/ps7900/databases/ps8211?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTUwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzkwMC9kYXRhYmFzZXMvcHM4MjExP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"properties\": {\r\n \"maxSizeBytes\": 0,\r\n \"readScale\": \"\"\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "57be69e5-714f-4291-ab48-fea36faec84e" + "7405400a-12c4-43f0-bad2-b5aac39a364c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1203,28 +1266,28 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps548/providers/Microsoft.Sql/locations/southeastasia/databaseOperationResults/b1b41cda-bbb8-467b-8ad1-a56d5c28ac7b?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5507/providers/Microsoft.Sql/locations/southeastasia/databaseOperationResults/3c2aa9f8-dc2f-47e3-a5e5-6ffd01bc0ecc?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps548/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/b1b41cda-bbb8-467b-8ad1-a56d5c28ac7b?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5507/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/3c2aa9f8-dc2f-47e3-a5e5-6ffd01bc0ecc?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "b1b41cda-bbb8-467b-8ad1-a56d5c28ac7b" + "3c2aa9f8-dc2f-47e3-a5e5-6ffd01bc0ecc" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "cecbe5df-6e77-40b4-83f3-c2edd5f915e6" + "14e18f6a-ab17-4e58-89bb-988bb0cbf253" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022132Z:cecbe5df-6e77-40b4-83f3-c2edd5f915e6" + "WESTUS:20200925T004316Z:14e18f6a-ab17-4e58-89bb-988bb0cbf253" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1233,10 +1296,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:21:32 GMT" + "Fri, 25 Sep 2020 00:43:16 GMT" ], "Content-Length": [ - "76" + "75" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1245,23 +1308,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2020-09-14T02:21:32.653Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2020-09-25T00:43:16.55Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps548/providers/Microsoft.Sql/servers/ps3198/databases/ps2654?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvcHMzMTk4L2RhdGFiYXNlcy9wczI2NTQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5507/providers/Microsoft.Sql/servers/ps7900/databases/ps8211?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTUwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNzkwMC9kYXRhYmFzZXMvcHM4MjExP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": 0,\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": -1\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2d3168df-5c5f-4884-891e-9478125c4e19" + "f93986fd-9434-4359-adac-373d3657be97" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1281,28 +1344,28 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps548/providers/Microsoft.Sql/locations/southeastasia/databaseOperationResults/9e75ce81-29f4-4b51-a8aa-dcb9491e22f3?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5507/providers/Microsoft.Sql/locations/southeastasia/databaseOperationResults/c289330b-45d6-4551-bee3-0fdea7e8fb19?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps548/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/9e75ce81-29f4-4b51-a8aa-dcb9491e22f3?api-version=2019-06-01-preview" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5507/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/c289330b-45d6-4551-bee3-0fdea7e8fb19?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "9e75ce81-29f4-4b51-a8aa-dcb9491e22f3" + "c289330b-45d6-4551-bee3-0fdea7e8fb19" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-correlation-request-id": [ - "1464743c-ae09-4864-b62d-ddc80486b239" + "f746810a-c282-4326-9850-d7b12abcbad3" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022235Z:1464743c-ae09-4864-b62d-ddc80486b239" + "WESTUS:20200925T004434Z:f746810a-c282-4326-9850-d7b12abcbad3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1311,10 +1374,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:22:34 GMT" + "Fri, 25 Sep 2020 00:44:33 GMT" ], "Content-Length": [ - "76" + "75" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1323,17 +1386,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-09-14T02:22:35.573Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-09-25T00:44:34.32Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps548/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/b1b41cda-bbb8-467b-8ad1-a56d5c28ac7b?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9iMWI0MWNkYS1iYmI4LTQ2N2ItOGFkMS1hNTZkNWMyOGFjN2I/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5507/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/3c2aa9f8-dc2f-47e3-a5e5-6ffd01bc0ecc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTUwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vM2MyYWE5ZjgtZGMyZi00N2UzLWE1ZTUtNmZmZDAxYmMwZWNjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1350,7 +1413,7 @@ "15" ], "x-ms-request-id": [ - "49582623-e988-47c5-afbe-61cbd4a7a11c" + "1255dd2b-c95a-4b1b-be93-b125bc970de3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1359,10 +1422,10 @@ "11987" ], "x-ms-correlation-request-id": [ - "a87efb91-5cf1-4e6a-9deb-61cd057f4673" + "b123eb61-7d40-4394-8dab-e6e840877d31" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022148Z:a87efb91-5cf1-4e6a-9deb-61cd057f4673" + "WESTUS:20200925T004331Z:b123eb61-7d40-4394-8dab-e6e840877d31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1371,10 +1434,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:21:47 GMT" + "Fri, 25 Sep 2020 00:43:31 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1383,17 +1446,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"b1b41cda-bbb8-467b-8ad1-a56d5c28ac7b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T02:21:32.653Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"3c2aa9f8-dc2f-47e3-a5e5-6ffd01bc0ecc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:43:16.55Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps548/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/b1b41cda-bbb8-467b-8ad1-a56d5c28ac7b?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9iMWI0MWNkYS1iYmI4LTQ2N2ItOGFkMS1hNTZkNWMyOGFjN2I/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5507/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/3c2aa9f8-dc2f-47e3-a5e5-6ffd01bc0ecc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTUwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vM2MyYWE5ZjgtZGMyZi00N2UzLWE1ZTUtNmZmZDAxYmMwZWNjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1410,7 +1473,7 @@ "15" ], "x-ms-request-id": [ - "36d06a71-63a9-4582-9712-1fdf881d8416" + "1f3024ee-da69-439e-811a-ea7ed2837f09" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1419,10 +1482,10 @@ "11986" ], "x-ms-correlation-request-id": [ - "b8038cd5-a9ed-4d77-a50b-505545c0b2fe" + "c9c4d398-134f-4457-9746-021902897215" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022203Z:b8038cd5-a9ed-4d77-a50b-505545c0b2fe" + "WESTUS:20200925T004347Z:c9c4d398-134f-4457-9746-021902897215" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1431,10 +1494,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:22:02 GMT" + "Fri, 25 Sep 2020 00:43:46 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1443,17 +1506,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"b1b41cda-bbb8-467b-8ad1-a56d5c28ac7b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T02:21:32.653Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"3c2aa9f8-dc2f-47e3-a5e5-6ffd01bc0ecc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:43:16.55Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps548/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/b1b41cda-bbb8-467b-8ad1-a56d5c28ac7b?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9iMWI0MWNkYS1iYmI4LTQ2N2ItOGFkMS1hNTZkNWMyOGFjN2I/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5507/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/3c2aa9f8-dc2f-47e3-a5e5-6ffd01bc0ecc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTUwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vM2MyYWE5ZjgtZGMyZi00N2UzLWE1ZTUtNmZmZDAxYmMwZWNjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1470,7 +1533,7 @@ "15" ], "x-ms-request-id": [ - "eaf4bb55-5571-4232-9508-13df2f7f1a44" + "796edbee-96d8-442f-ae34-0bf5f9c954c6" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1479,10 +1542,10 @@ "11985" ], "x-ms-correlation-request-id": [ - "ca94238c-f10e-4cfb-9ff2-eb314e20c169" + "440fac10-a6f2-47ba-8fe7-64264141214f" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022218Z:ca94238c-f10e-4cfb-9ff2-eb314e20c169" + "WESTUS:20200925T004402Z:440fac10-a6f2-47ba-8fe7-64264141214f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1491,10 +1554,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:22:17 GMT" + "Fri, 25 Sep 2020 00:44:01 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1503,17 +1566,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"b1b41cda-bbb8-467b-8ad1-a56d5c28ac7b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T02:21:32.653Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"3c2aa9f8-dc2f-47e3-a5e5-6ffd01bc0ecc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:43:16.55Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps548/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/b1b41cda-bbb8-467b-8ad1-a56d5c28ac7b?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi9iMWI0MWNkYS1iYmI4LTQ2N2ItOGFkMS1hNTZkNWMyOGFjN2I/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5507/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/3c2aa9f8-dc2f-47e3-a5e5-6ffd01bc0ecc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTUwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vM2MyYWE5ZjgtZGMyZi00N2UzLWE1ZTUtNmZmZDAxYmMwZWNjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1530,7 +1593,7 @@ "15" ], "x-ms-request-id": [ - "ed7a5a0b-f941-4bca-89e0-8c2a02ca3b7f" + "75f71d3d-5b2f-4446-9814-11e0b953c5f4" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1539,10 +1602,10 @@ "11984" ], "x-ms-correlation-request-id": [ - "69a3f523-c96b-4a7b-b1e3-59dabd63a6f6" + "308ced9a-e9f5-48e4-811c-491c3f1377d7" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022233Z:69a3f523-c96b-4a7b-b1e3-59dabd63a6f6" + "WESTUS:20200925T004417Z:308ced9a-e9f5-48e4-811c-491c3f1377d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1551,7 +1614,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:22:32 GMT" + "Fri, 25 Sep 2020 00:44:17 GMT" ], "Content-Length": [ "107" @@ -1563,17 +1626,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"b1b41cda-bbb8-467b-8ad1-a56d5c28ac7b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-14T02:21:32.653Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"3c2aa9f8-dc2f-47e3-a5e5-6ffd01bc0ecc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-25T00:43:16.55Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps548/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/9e75ce81-29f4-4b51-a8aa-dcb9491e22f3?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL2RhdGFiYXNlQXp1cmVBc3luY09wZXJhdGlvbi85ZTc1Y2U4MS0yOWY0LTRiNTEtYThhYS1kY2I5NDkxZTIyZjM/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5507/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/3c2aa9f8-dc2f-47e3-a5e5-6ffd01bc0ecc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTUwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vM2MyYWE5ZjgtZGMyZi00N2UzLWE1ZTUtNmZmZDAxYmMwZWNjP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" @@ -1590,19 +1653,19 @@ "15" ], "x-ms-request-id": [ - "c524809c-3c59-4d21-a294-7ee9d13da2a7" + "e979c709-5a30-4a26-aae2-1ba48b8dc21c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11983" ], "x-ms-correlation-request-id": [ - "4915b378-5dc7-4d35-9b77-eb483643526a" + "c6907959-7975-4a8b-8720-60fe89968ea5" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022250Z:4915b378-5dc7-4d35-9b77-eb483643526a" + "WESTUS:20200925T004432Z:c6907959-7975-4a8b-8720-60fe89968ea5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1611,10 +1674,70 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:22:50 GMT" + "Fri, 25 Sep 2020 00:44:32 GMT" ], "Content-Length": [ - "107" + "106" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"3c2aa9f8-dc2f-47e3-a5e5-6ffd01bc0ecc\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-25T00:43:16.55Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps5507/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/c289330b-45d6-4551-bee3-0fdea7e8fb19?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzNTUwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vYzI4OTMzMGItNDVkNi00NTUxLWJlZTMtMGZkZWE3ZThmYjE5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "f7c26a2b-e18c-43be-8eac-a7d1a9f2cc4d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-correlation-request-id": [ + "c6df70e5-d6d0-4814-9b71-9e120838f831" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200925T004449Z:c6df70e5-d6d0-4814-9b71-9e120838f831" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 25 Sep 2020 00:44:48 GMT" + ], + "Content-Length": [ + "106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1623,23 +1746,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"9e75ce81-29f4-4b51-a8aa-dcb9491e22f3\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-14T02:22:35.573Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"c289330b-45d6-4551-bee3-0fdea7e8fb19\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-25T00:44:34.32Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps548?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzNTQ4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps5507?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzNTUwNz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4aab1bcb-1428-4a1e-b2b9-3eac01d11e3b" + "1fa67228-02b2-40e9-a841-10b3c43d0231" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -1653,7 +1776,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU1MDctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1662,13 +1785,13 @@ "14999" ], "x-ms-request-id": [ - "b3af4089-6968-46d8-a7be-5816dc43b787" + "a4409064-4383-483c-878a-88a56c1fe633" ], "x-ms-correlation-request-id": [ - "b3af4089-6968-46d8-a7be-5816dc43b787" + "a4409064-4383-483c-878a-88a56c1fe633" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022252Z:b3af4089-6968-46d8-a7be-5816dc43b787" + "WESTUS:20200925T004451Z:a4409064-4383-483c-878a-88a56c1fe633" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1677,7 +1800,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:22:51 GMT" + "Fri, 25 Sep 2020 00:44:51 GMT" ], "Expires": [ "-1" @@ -1690,13 +1813,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVME9DMVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU1MDctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVMU1EY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -1710,7 +1833,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU1MDctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1719,13 +1842,13 @@ "11999" ], "x-ms-request-id": [ - "2c360fa6-bc9f-40ff-8de1-14a4ae28bf6b" + "ddc1691e-ac3c-4c39-bdf6-00d672049932" ], "x-ms-correlation-request-id": [ - "2c360fa6-bc9f-40ff-8de1-14a4ae28bf6b" + "ddc1691e-ac3c-4c39-bdf6-00d672049932" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022307Z:2c360fa6-bc9f-40ff-8de1-14a4ae28bf6b" + "WESTUS:20200925T004506Z:ddc1691e-ac3c-4c39-bdf6-00d672049932" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1734,7 +1857,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:23:06 GMT" + "Fri, 25 Sep 2020 00:45:06 GMT" ], "Expires": [ "-1" @@ -1747,13 +1870,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVME9DMVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU1MDctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVMU1EY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -1767,7 +1890,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU1MDctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1776,13 +1899,13 @@ "11998" ], "x-ms-request-id": [ - "000d62b1-a770-411b-9b79-9b6a846feb66" + "82fda627-e9a4-4a80-a267-cbbee258a841" ], "x-ms-correlation-request-id": [ - "000d62b1-a770-411b-9b79-9b6a846feb66" + "82fda627-e9a4-4a80-a267-cbbee258a841" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022322Z:000d62b1-a770-411b-9b79-9b6a846feb66" + "WESTUS:20200925T004521Z:82fda627-e9a4-4a80-a267-cbbee258a841" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1791,7 +1914,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:23:21 GMT" + "Fri, 25 Sep 2020 00:45:21 GMT" ], "Expires": [ "-1" @@ -1804,13 +1927,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVME9DMVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU1MDctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVMU1EY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -1824,7 +1947,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU1MDctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1833,13 +1956,13 @@ "11997" ], "x-ms-request-id": [ - "3a6c66b2-f2f2-4048-90a6-a36ee0d7696f" + "a4251498-8d50-432d-b425-f69e48854e3a" ], "x-ms-correlation-request-id": [ - "3a6c66b2-f2f2-4048-90a6-a36ee0d7696f" + "a4251498-8d50-432d-b425-f69e48854e3a" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022337Z:3a6c66b2-f2f2-4048-90a6-a36ee0d7696f" + "WESTUS:20200925T004536Z:a4251498-8d50-432d-b425-f69e48854e3a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1848,7 +1971,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:23:36 GMT" + "Fri, 25 Sep 2020 00:45:36 GMT" ], "Expires": [ "-1" @@ -1861,13 +1984,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVME9DMVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU1MDctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVMU1EY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -1881,7 +2004,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU1MDctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1890,13 +2013,13 @@ "11996" ], "x-ms-request-id": [ - "1a96b8d7-bf03-4b05-8da9-c30300403e6b" + "32b8b14f-75aa-4ca6-a1de-93d19d32f8c4" ], "x-ms-correlation-request-id": [ - "1a96b8d7-bf03-4b05-8da9-c30300403e6b" + "32b8b14f-75aa-4ca6-a1de-93d19d32f8c4" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022352Z:1a96b8d7-bf03-4b05-8da9-c30300403e6b" + "WESTUS:20200925T004551Z:32b8b14f-75aa-4ca6-a1de-93d19d32f8c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1905,7 +2028,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:23:52 GMT" + "Fri, 25 Sep 2020 00:45:51 GMT" ], "Expires": [ "-1" @@ -1918,13 +2041,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVME9DMVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU1MDctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVMU1EY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -1938,7 +2061,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU1MDctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1947,13 +2070,13 @@ "11995" ], "x-ms-request-id": [ - "f46b68b5-7a88-45a1-a639-436373477d97" + "dc4e1b81-8339-4dde-a3c3-a7d230c772fa" ], "x-ms-correlation-request-id": [ - "f46b68b5-7a88-45a1-a639-436373477d97" + "dc4e1b81-8339-4dde-a3c3-a7d230c772fa" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022407Z:f46b68b5-7a88-45a1-a639-436373477d97" + "WESTUS:20200925T004606Z:dc4e1b81-8339-4dde-a3c3-a7d230c772fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1962,7 +2085,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:24:07 GMT" + "Fri, 25 Sep 2020 00:46:06 GMT" ], "Expires": [ "-1" @@ -1975,13 +2098,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVME9DMVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU1MDctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVMU1EY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -1995,7 +2118,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU1MDctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2004,13 +2127,13 @@ "11994" ], "x-ms-request-id": [ - "31f612a8-baa0-4d38-b344-3137a3f893a4" + "508810c6-2b94-4007-a53a-c8ff215d0e02" ], "x-ms-correlation-request-id": [ - "31f612a8-baa0-4d38-b344-3137a3f893a4" + "508810c6-2b94-4007-a53a-c8ff215d0e02" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022422Z:31f612a8-baa0-4d38-b344-3137a3f893a4" + "WESTUS:20200925T004621Z:508810c6-2b94-4007-a53a-c8ff215d0e02" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2019,7 +2142,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:24:22 GMT" + "Fri, 25 Sep 2020 00:46:21 GMT" ], "Expires": [ "-1" @@ -2032,13 +2155,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVME9DMVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU1MDctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVMU1EY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -2055,13 +2178,13 @@ "11993" ], "x-ms-request-id": [ - "35284d55-61ca-4434-a94e-9ffc1131cd73" + "7ec9ea4d-83ff-46c0-8d20-b9ae9a0c493d" ], "x-ms-correlation-request-id": [ - "35284d55-61ca-4434-a94e-9ffc1131cd73" + "7ec9ea4d-83ff-46c0-8d20-b9ae9a0c493d" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022437Z:35284d55-61ca-4434-a94e-9ffc1131cd73" + "WESTUS:20200925T004636Z:7ec9ea4d-83ff-46c0-8d20-b9ae9a0c493d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2070,7 +2193,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:24:37 GMT" + "Fri, 25 Sep 2020 00:46:36 GMT" ], "Expires": [ "-1" @@ -2083,13 +2206,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVME9DMVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU1MDctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVMU1EY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.14393.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" @@ -2106,13 +2229,13 @@ "11992" ], "x-ms-request-id": [ - "69cc37ed-873f-4eb5-9a4d-0d0913f25cee" + "60384d6e-415f-44db-b9a0-3ce6a4d5fe3b" ], "x-ms-correlation-request-id": [ - "69cc37ed-873f-4eb5-9a4d-0d0913f25cee" + "60384d6e-415f-44db-b9a0-3ce6a4d5fe3b" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T022437Z:69cc37ed-873f-4eb5-9a4d-0d0913f25cee" + "WESTUS:20200925T004636Z:60384d6e-415f-44db-b9a0-3ce6a4d5fe3b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2121,7 +2244,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 02:24:37 GMT" + "Fri, 25 Sep 2020 00:46:36 GMT" ], "Expires": [ "-1" @@ -2136,9 +2259,9 @@ ], "Names": { "Test-GetDatabaseReadScale": [ - "ps548", - "ps3198", - "ps2654" + "ps5507", + "ps7900", + "ps8211" ] }, "Variables": { diff --git a/src/Sql/Sql.Test/Sql.Test.csproj b/src/Sql/Sql.Test/Sql.Test.csproj index 922c3cb701d1..6ca6ca950a8b 100644 --- a/src/Sql/Sql.Test/Sql.Test.csproj +++ b/src/Sql/Sql.Test/Sql.Test.csproj @@ -11,7 +11,7 @@ - + diff --git a/src/Sql/Sql/Az.Sql.psd1 b/src/Sql/Sql/Az.Sql.psd1 index 6aeea7033965..20b6bea01ac7 100644 --- a/src/Sql/Sql/Az.Sql.psd1 +++ b/src/Sql/Sql/Az.Sql.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 9/15/2020 +# Generated on: 9/26/2020 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '2.10.0' +ModuleVersion = '2.11.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -324,24 +324,12 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Added BackupStorageRedundancy to ''New-AzSqlInstance'' and ''Get-AzSqlInstance'' -* Added cmdlet ''Get-AzSqlServerActiveDirectoryOnlyAuthentication'' -* Added cmdlet ''Enable-AzSqlServerActiveDirectoryOnlyAuthentication'' -* Added Force parameter to ''New-AzSqlInstance'' -* Added cmdlets for Managed Database Log Replay service - - ''Start-AzSqlInstanceDatabaseLogReplay'' - - ''Get-AzSqlInstanceDatabaseLogReplay'' - - ''Complete-AzSqlInstanceDatabaseLogReplay'' - - ''Stop-AzSqlInstanceDatabaseLogReplay'' -* Added cmdlet ''Get-AzSqlInstanceActiveDirectoryOnlyAuthentication'' -* Added cmdlet ''Enable-AzSqlInstanceActiveDirectoryOnlyAuthentication'' -* Added cmdlet ''Disable-AzSqlInstanceActiveDirectoryOnlyAuthentication'' -* Updated cmdlets ''New-AzSqlDatabaseImport'' and ''New-AzSqlDatabaseExport'' to support network isolation functionality -* Added cmdlet ''New-AzSqlDatabaseImportExisting'' -* Updated Databases cmdlets to support backup storage type specification -* Added Force parameter to ''New-AzSqlDatabase'' -* Added warning for BackupStorageRedundancy configuration in select regions in ''New-AzSqlDatabase'' -* Updated ActiveDirectoryOnlyAuthentication cmdlets for server and instance to include ResourceId and InputObject' + ReleaseNotes = '* Added BackupStorageRedundancy to the following: + - ''Restore-AzureRmSqlDatabase'' + - ''New-AzSqlDatabaseCopy'' + - ''New-AzSqlDatabaseSecondary'' +* Removed case sensitivity for BackupStorageRedundancy parameter for all SQL DB references +* Updated BackupStorageRedundancy warning message names' # Prerelease string of this module # Prerelease = '' diff --git a/src/Sql/Sql/ChangeLog.md b/src/Sql/Sql/ChangeLog.md index fa2c78c8d163..db4ebbd8e1b6 100644 --- a/src/Sql/Sql/ChangeLog.md +++ b/src/Sql/Sql/ChangeLog.md @@ -19,6 +19,19 @@ --> ## Upcoming Release +## Version 2.11.0 +* Added BackupStorageRedundancy to the following: + - `Restore-AzureRmSqlDatabase` + - `New-AzSqlDatabaseCopy` + - `New-AzSqlDatabaseSecondary` +* Removed case sensitivity for BackupStorageRedundancy parameter for all SQL DB references +* Updated BackupStorageRedundancy warning message names + +## Version 2.10.1 +* Added warning for BackupStorageRedundancy configuration in select regions in `New-AzSqlDatabase` (Ignore Case for BackupStorageRedundancy configuration input) +* Fixed for bug in `New-AzSqlDatabaseExport` +* Removed case sensitivity for BackupStorageRedundancy parameter for `New-AzSqlInstance` + ## Version 2.10.0 * Added BackupStorageRedundancy to `New-AzSqlInstance` and `Get-AzSqlInstance` * Added cmdlet `Get-AzSqlServerActiveDirectoryOnlyAuthentication` @@ -36,8 +49,8 @@ * Added cmdlet `New-AzSqlDatabaseImportExisting` * Updated Databases cmdlets to support backup storage type specification * Added Force parameter to `New-AzSqlDatabase` -* Added warning for BackupStorageRedundancy configuration in select regions in `New-AzSqlDatabase` * Updated ActiveDirectoryOnlyAuthentication cmdlets for server and instance to include ResourceId and InputObject +* Added support for Managed HSM Uris for SQL DB and Managed Instance ## Version 2.9.1 * Fixed potential server name case insensitive error in `New-AzSqlServer` and `Set-AzSqlServer` diff --git a/src/Sql/Sql/Common/TdeKeyHelper.cs b/src/Sql/Sql/Common/TdeKeyHelper.cs index e2d5ab692361..6ecbc60f129d 100644 --- a/src/Sql/Sql/Common/TdeKeyHelper.cs +++ b/src/Sql/Sql/Common/TdeKeyHelper.cs @@ -42,7 +42,7 @@ public static string CreateServerKeyNameFromKeyId(string keyId) } // Validate that the url is a keyvault url and has a key and version - Regex r = new Regex(@"https(.)+\.vault(.)+\/keys\/[^\/]+\/[0-9a-zA-Z]+$", RegexOptions.IgnoreCase); + Regex r = new Regex(@"https://(.)+\.(managedhsm.azure.net|managedhsm-preview.azure.net|vault.azure.net|vault-int.azure-int.net|vault.azure.cn|managedhsm.azure.cn|vault.usgovcloudapi.net|managedhsm.usgovcloudapi.net|vault.microsoftazure.de|managedhsm.microsoftazure.de|vault.cloudapi.eaglex.ic.gov|vault.cloudapi.microsoft.scloud)(:443)?\/keys/[^\/]+\/[0-9a-zA-Z]+$", RegexOptions.IgnoreCase); if (!r.IsMatch(keyId)) { // Throw an error here, since we don't want to use a non keyvault url diff --git a/src/Sql/Sql/Database Backup/Cmdlet/RestoreAzureRMSqlDatabase.cs b/src/Sql/Sql/Database Backup/Cmdlet/RestoreAzureRMSqlDatabase.cs index 79801b94c30b..e3dacc0b1d9d 100644 --- a/src/Sql/Sql/Database Backup/Cmdlet/RestoreAzureRMSqlDatabase.cs +++ b/src/Sql/Sql/Database Backup/Cmdlet/RestoreAzureRMSqlDatabase.cs @@ -20,11 +20,13 @@ using Microsoft.Azure.Commands.Sql.Database.Model; using Microsoft.Azure.Commands.Sql.Database.Services; using System; +using System.Globalization; +using System.Linq; using System.Management.Automation; namespace Microsoft.Azure.Commands.Sql.Backup.Cmdlet { - [Cmdlet("Restore", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlDatabase",ConfirmImpact = ConfirmImpact.None), OutputType(typeof(AzureSqlDatabaseModel))] + [Cmdlet("Restore", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlDatabase", SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.None), OutputType(typeof(AzureSqlDatabaseModel))] public class RestoreAzureRmSqlDatabase : AzureSqlCmdletBase { @@ -277,11 +279,34 @@ public class RestoreAzureRmSqlDatabase "BasePrice")] public string LicenseType { get; set; } + /// + /// Gets or sets the database backup storage redundancy. + /// + [Parameter(Mandatory = false, + HelpMessage = "The Backup storage redundancy used to store backups for the SQL Database. Options are: Local, Zone and Geo.")] + [ValidateSet("Local", "Zone", "Geo")] + public string BackupStorageRedundancy { get; set; } + + protected static readonly string[] ListOfRegionsToShowWarningMessageForGeoBackupStorage = { "eastasia", "southeastasia", "brazilsouth", "east asia", "southeast asia", "brazil south" }; + /// /// The start of the cmdlet. /// public override void ExecuteCmdlet() { + ModelAdapter = InitModelAdapter(); + string location = ModelAdapter.GetServerLocation(ResourceGroupName, ServerName); + if (ListOfRegionsToShowWarningMessageForGeoBackupStorage.Contains(location.ToLower())) + { + if (this.BackupStorageRedundancy == null) + { + WriteWarning(string.Format(CultureInfo.InvariantCulture, Properties.Resources.BackupRedundancyNotChosenTakeSourceWarning)); + } + else if (string.Equals(this.BackupStorageRedundancy, "Geo", System.StringComparison.OrdinalIgnoreCase)) + { + WriteWarning(string.Format(CultureInfo.InvariantCulture, Properties.Resources.GeoBackupRedundancyChosenWarning)); + } + } base.ExecuteCmdlet(); } @@ -338,7 +363,8 @@ protected override AzureSqlDatabaseModel GetEntity() RequestedServiceObjectiveName = ServiceObjectiveName, Edition = Edition, CreateMode = createMode, - LicenseType = LicenseType + LicenseType = LicenseType, + BackupStorageRedundancy = BackupStorageRedundancy, }; if (ParameterSetName == FromPointInTimeBackupWithVcoreSetName || ParameterSetName == FromDeletedDatabaseBackupWithVcoreSetName || diff --git a/src/Sql/Sql/Database Backup/Services/AzureSqlDatabaseBackupAdapter.cs b/src/Sql/Sql/Database Backup/Services/AzureSqlDatabaseBackupAdapter.cs index 4b3be3eae1ca..7ac6a132baae 100644 --- a/src/Sql/Sql/Database Backup/Services/AzureSqlDatabaseBackupAdapter.cs +++ b/src/Sql/Sql/Database Backup/Services/AzureSqlDatabaseBackupAdapter.cs @@ -523,7 +523,8 @@ internal AzureSqlDatabaseModel RestoreDatabase(string resourceGroup, DateTime re Family = model.Family, Capacity = model.Capacity }, - LicenseType = model.LicenseType + LicenseType = model.LicenseType, + StorageAccountType = MapExternalBackupStorageRedundancyToInternal(model.BackupStorageRedundancy), }; if (model.CreateMode == Management.Sql.Models.CreateMode.Recovery) @@ -610,5 +611,30 @@ internal AzureSqlDatabaseBackupShortTermRetentionPolicyModel GetDatabaseBackupSh return new AzureSqlDatabaseBackupShortTermRetentionPolicyModel(resourceGroup, serverName, databaseName, baPolicy); } + + /// + /// Map external BackupStorageRedundancy value (Geo/Local/Zone) to internal (GRS/LRS/ZRS) + /// + /// Backup storage redundancy + /// internal backupStorageRedundancy + private static string MapExternalBackupStorageRedundancyToInternal(string backupStorageRedundancy) + { + if (string.IsNullOrWhiteSpace(backupStorageRedundancy)) + { + return null; + } + + switch (backupStorageRedundancy.ToLower()) + { + case "geo": + return "GRS"; + case "local": + return "LRS"; + case "zone": + return "ZRS"; + default: + return null; + } + } } } diff --git a/src/Sql/Sql/Database/Cmdlet/AzureSqlDatabaseCmdletBase.cs b/src/Sql/Sql/Database/Cmdlet/AzureSqlDatabaseCmdletBase.cs index 52bf1e2d353b..9d4e4758443f 100644 --- a/src/Sql/Sql/Database/Cmdlet/AzureSqlDatabaseCmdletBase.cs +++ b/src/Sql/Sql/Database/Cmdlet/AzureSqlDatabaseCmdletBase.cs @@ -50,5 +50,7 @@ protected override AzureSqlDatabaseAdapter InitModelAdapter() { return new AzureSqlDatabaseAdapter(DefaultProfile.DefaultContext); } + + protected static readonly string[] ListOfRegionsToShowWarningMessageForGeoBackupStorage = { "eastasia", "southeastasia", "brazilsouth", "east asia", "southeast asia", "brazil south" }; } } diff --git a/src/Sql/Sql/Database/Cmdlet/NewAzureSqlDatabase.cs b/src/Sql/Sql/Database/Cmdlet/NewAzureSqlDatabase.cs index 59ec12d72c28..c031af74262a 100644 --- a/src/Sql/Sql/Database/Cmdlet/NewAzureSqlDatabase.cs +++ b/src/Sql/Sql/Database/Cmdlet/NewAzureSqlDatabase.cs @@ -205,11 +205,9 @@ public class NewAzureSqlDatabase : AzureSqlDatabaseCmdletBase [Parameter(Mandatory = false, HelpMessage = "The Backup storage redundancy used to store backups for the SQL Database. Options are: Local, Zone and Geo.")] - [ValidateSet("Local", "Zone", "Geo")] + [ValidateSet("Local", "Zone", "Geo", IgnoreCase = false)] public string BackupStorageRedundancy { get; set; } - protected static readonly string[] ListOfRegionsToShowWarningMessageForGeoBackupStorage = { "eastasia", "southeastasia", "brazilsouth", "east asia", "southeast asia", "brazil south" }; - /// /// Overriding to add warning message /// @@ -223,19 +221,14 @@ public override void ExecuteCmdlet() { if (!Force.IsPresent && !ShouldContinue( string.Format(CultureInfo.InvariantCulture, Properties.Resources.DoYouWantToProceed, this.DatabaseName), - string.Format(CultureInfo.InvariantCulture, Properties.Resources.GeoBackupRedundancyNotChosenWarning, this.DatabaseName))) + string.Format(CultureInfo.InvariantCulture, Properties.Resources.BackupRedundancyNotChosenTakeGeoWarning))) { return; } } else if (string.Equals(this.BackupStorageRedundancy, "Geo", System.StringComparison.OrdinalIgnoreCase)) { - if (!Force.IsPresent && !ShouldContinue( - string.Format(CultureInfo.InvariantCulture, Properties.Resources.DoYouWantToProceed, this.DatabaseName), - string.Format(CultureInfo.InvariantCulture, Properties.Resources.GeoBackupRedundancyChosenWarning, this.DatabaseName))) - { - return; - } + WriteWarning(string.Format(CultureInfo.InvariantCulture, Properties.Resources.GeoBackupRedundancyChosenWarning)); } } base.ExecuteCmdlet(); diff --git a/src/Sql/Sql/Database/Cmdlet/SetAzureSqlDatabase.cs b/src/Sql/Sql/Database/Cmdlet/SetAzureSqlDatabase.cs index 2d7a625113c9..f2670f30d352 100644 --- a/src/Sql/Sql/Database/Cmdlet/SetAzureSqlDatabase.cs +++ b/src/Sql/Sql/Database/Cmdlet/SetAzureSqlDatabase.cs @@ -22,6 +22,7 @@ using System.Collections.Generic; using System.Linq; using System.Management.Automation; +using System.Globalization; namespace Microsoft.Azure.Commands.Sql.Database.Cmdlet { @@ -239,6 +240,15 @@ public class SetAzureSqlDatabase : AzureSqlDatabaseCmdletBase public override void ExecuteCmdlet() { + ModelAdapter = InitModelAdapter(); + string location = ModelAdapter.GetServerLocation(ResourceGroupName, ServerName); + if (ListOfRegionsToShowWarningMessageForGeoBackupStorage.Contains(location.ToLower())) + { + if (string.Equals(this.BackupStorageRedundancy, "Geo", System.StringComparison.OrdinalIgnoreCase)) + { + WriteWarning(string.Format(CultureInfo.InvariantCulture, Properties.Resources.GeoBackupRedundancyChosenWarning)); + } + } base.ExecuteCmdlet(); } diff --git a/src/Sql/Sql/Database/Services/AzureSqlDatabaseAdapter.cs b/src/Sql/Sql/Database/Services/AzureSqlDatabaseAdapter.cs index 1bce61e004c4..70166374b6a0 100644 --- a/src/Sql/Sql/Database/Services/AzureSqlDatabaseAdapter.cs +++ b/src/Sql/Sql/Database/Services/AzureSqlDatabaseAdapter.cs @@ -398,13 +398,19 @@ public static Sku GetDtuDatabaseSku(string requestedServiceObjectiveName, string /// internal backupStorageRedundancy private static string MapExternalBackupStorageRedundancyToInternal(string backupStorageRedundancy) { - switch (backupStorageRedundancy) + + if (string.IsNullOrWhiteSpace(backupStorageRedundancy)) + { + return null; + } + + switch (backupStorageRedundancy.ToLower()) { - case "Geo": + case "geo": return "GRS"; - case "Local": + case "local": return "LRS"; - case "Zone": + case "zone": return "ZRS"; default: return null; diff --git a/src/Sql/Sql/ImportExport/Service/ImportExportDatabaseAdapter.cs b/src/Sql/Sql/ImportExport/Service/ImportExportDatabaseAdapter.cs index 2cbdf2b7597f..decfac8400fc 100644 --- a/src/Sql/Sql/ImportExport/Service/ImportExportDatabaseAdapter.cs +++ b/src/Sql/Sql/ImportExport/Service/ImportExportDatabaseAdapter.cs @@ -61,7 +61,12 @@ public AzureSqlDatabaseImportExportBaseModel Export(AzureSqlDatabaseImportExport AdministratorLoginPassword = AzureSqlServerAdapter.Decrypt(exportRequest.AdministratorLoginPassword), StorageKey = exportRequest.StorageKey, StorageKeyType = exportRequest.StorageKeyType.ToString(), - StorageUri = exportRequest.StorageUri.ToString() + StorageUri = exportRequest.StorageUri.ToString(), + NetworkIsolation = new Management.Sql.Models.NetworkIsolationSettings() + { + SqlServerResourceId = exportRequest.NetworkIsolationSettings.SqlServerResourceId, + StorageAccountResourceId = exportRequest.NetworkIsolationSettings.StorageAccountResourceId + } }; if (exportRequest.AuthenticationType != AuthenticationType.None) @@ -157,8 +162,6 @@ private AzureSqlDatabaseImportExportBaseModel CreateImportExportResponse(ImportE { AzureSqlDatabaseImportExportBaseModel model = originalModel == null ? new AzureSqlDatabaseImportExportBaseModel() : originalModel.Copy(); model.OperationStatusLink = statusLink?.ToString(); - ////model.Status = response.Status.ToString(); - ////model.ErrorMessage = response.Error == null ? "" : response.Error.Message; return model; } } diff --git a/src/Sql/Sql/ManagedInstance/Cmdlet/NewAzureSqlManagedInstance.cs b/src/Sql/Sql/ManagedInstance/Cmdlet/NewAzureSqlManagedInstance.cs index 7592ace5684a..71c8dac30182 100644 --- a/src/Sql/Sql/ManagedInstance/Cmdlet/NewAzureSqlManagedInstance.cs +++ b/src/Sql/Sql/ManagedInstance/Cmdlet/NewAzureSqlManagedInstance.cs @@ -313,7 +313,7 @@ public class NewAzureSqlManagedInstance : ManagedInstanceCmdletBase /// [Parameter(Mandatory = false, HelpMessage = "The Backup storage redundancy used to store backups for the Sql Azure Managed Instance. Options are: Local, Zone and Geo ")] - [ValidateSet("Local", "Zone", "Geo", IgnoreCase = false)] + [ValidateSet("Local", "Zone", "Geo")] public string BackupStorageRedundancy { get; set; } /// @@ -381,7 +381,7 @@ public override void ExecuteCmdlet() { if (!Force.IsPresent && !ShouldContinue( string.Format(CultureInfo.InvariantCulture, Properties.Resources.DoYouWantToProceed, this.Name), - string.Format(CultureInfo.InvariantCulture, Properties.Resources.GeoBackupRedundancyNotChosenWarning, this.Name))) + string.Format(CultureInfo.InvariantCulture, Properties.Resources.BackupRedundancyNotChosenTakeGeoWarning, this.Name))) { return; } diff --git a/src/Sql/Sql/ManagedInstance/Services/AzureSqlManagedInstanceAdapter.cs b/src/Sql/Sql/ManagedInstance/Services/AzureSqlManagedInstanceAdapter.cs index d87a42ccac89..24df26783c77 100644 --- a/src/Sql/Sql/ManagedInstance/Services/AzureSqlManagedInstanceAdapter.cs +++ b/src/Sql/Sql/ManagedInstance/Services/AzureSqlManagedInstanceAdapter.cs @@ -252,13 +252,18 @@ public static string GetInstanceSkuPrefix(string tier) /// internal backupStorageRedundancy public static string MapExternalBackupStorageRedundancyToInternal(string backupStorageRedundancy) { - switch (backupStorageRedundancy) + if (string.IsNullOrWhiteSpace(backupStorageRedundancy)) + { + return null; + } + + switch (backupStorageRedundancy.ToLower()) { - case "Geo": + case "geo": return "GRS"; - case "Local": + case "local": return "LRS"; - case "Zone": + case "zone": return "ZRS"; default: return null; diff --git a/src/Sql/Sql/Properties/AssemblyInfo.cs b/src/Sql/Sql/Properties/AssemblyInfo.cs index c5e98de88474..41fae94dabc2 100644 --- a/src/Sql/Sql/Properties/AssemblyInfo.cs +++ b/src/Sql/Sql/Properties/AssemblyInfo.cs @@ -44,8 +44,8 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("2.10.0")] -[assembly: AssemblyFileVersion("2.10.0")] +[assembly: AssemblyVersion("2.11.0")] +[assembly: AssemblyFileVersion("2.11.0")] #if !SIGN [assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Resources.Test")] #endif diff --git a/src/Sql/Sql/Properties/Resources.Designer.cs b/src/Sql/Sql/Properties/Resources.Designer.cs index 00981756ed59..f3acb47d58ec 100644 --- a/src/Sql/Sql/Properties/Resources.Designer.cs +++ b/src/Sql/Sql/Properties/Resources.Designer.cs @@ -294,6 +294,24 @@ internal static string AzureSqlInstancePoolNotExists { } } + /// + /// Looks up a localized string similar to You have not specified the value for backup storage redundancy which will default to geo-redundant storage. Note that database backups will be geo-replicated to the paired region. To learn more about Azure Paired Regions visit https://docs.microsoft.com/en-us/azure/best-practices-availability-paired-regions.. + /// + internal static string BackupRedundancyNotChosenTakeGeoWarning { + get { + return ResourceManager.GetString("BackupRedundancyNotChosenTakeGeoWarning", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to You have not specified the value for backup storage redundancy which will default to the source's backup storage redundancy. To learn more about Azure Paired Regions visit https://docs.microsoft.com/en-us/azure/best-practices-availability-paired-regions.. + /// + internal static string BackupRedundancyNotChosenTakeSourceWarning { + get { + return ResourceManager.GetString("BackupRedundancyNotChosenTakeSourceWarning", resourceCulture); + } + } + /// /// Looks up a localized string similar to About to process resource. /// @@ -564,15 +582,6 @@ internal static string GeoBackupRedundancyChosenWarning { } } - /// - /// Looks up a localized string similar to You have not specified the value for backup storage redundancy which will default to geo-redundant storage. Note that database backups will be geo-replicated to the paired region. To learn more about Azure Paired Regions visit https://docs.microsoft.com/en-us/azure/best-practices-availability-paired-regions.. - /// - internal static string GeoBackupRedundancyNotChosenWarning { - get { - return ResourceManager.GetString("GeoBackupRedundancyNotChosenWarning", resourceCulture); - } - } - /// /// Looks up a localized string similar to The Active Directory Group '{0}' is not security enabled. Only Azure Active Directory Security Enabled Groups are supported.. /// diff --git a/src/Sql/Sql/Properties/Resources.resx b/src/Sql/Sql/Properties/Resources.resx index 5839cb310420..7ddf7e440df5 100644 --- a/src/Sql/Sql/Properties/Resources.resx +++ b/src/Sql/Sql/Properties/Resources.resx @@ -637,7 +637,7 @@ Selected value for backup storage redundancy is geo-redundant storage. Note that database backups will be geo-replicated to the paired region. To learn more about Azure Paired Regions visit https://docs.microsoft.com/en-us/azure/best-practices-availability-paired-regions. - + You have not specified the value for backup storage redundancy which will default to geo-redundant storage. Note that database backups will be geo-replicated to the paired region. To learn more about Azure Paired Regions visit https://docs.microsoft.com/en-us/azure/best-practices-availability-paired-regions. @@ -649,4 +649,7 @@ LastBackupName is required parameter when AutoCompleteRestore is set to true. Please explicitly provide it. + + You have not specified the value for backup storage redundancy which will default to the source's backup storage redundancy. To learn more about Azure Paired Regions visit https://docs.microsoft.com/en-us/azure/best-practices-availability-paired-regions. + \ No newline at end of file diff --git a/src/Sql/Sql/Replication/Cmdlet/NewAzureSqlDatabaseCopy.cs b/src/Sql/Sql/Replication/Cmdlet/NewAzureSqlDatabaseCopy.cs index a0477bc3c102..6d4b6dd248f1 100644 --- a/src/Sql/Sql/Replication/Cmdlet/NewAzureSqlDatabaseCopy.cs +++ b/src/Sql/Sql/Replication/Cmdlet/NewAzureSqlDatabaseCopy.cs @@ -22,6 +22,7 @@ using System.Collections.Generic; using System.Linq; using System.Management.Automation; +using System.Globalization; namespace Microsoft.Azure.Commands.Sql.Replication.Cmdlet { @@ -132,11 +133,34 @@ public class NewAzureSqlDatabaseCopy : AzureSqlDatabaseCopyCmdletBase )] public string LicenseType { get; set; } + /// + /// Gets or sets the database backup storage redundancy. + /// + [Parameter(Mandatory = false, + HelpMessage = "The Backup storage redundancy used to store backups for the SQL Database. Options are: Local, Zone and Geo.")] + [ValidateSet("Local", "Zone", "Geo")] + public string BackupStorageRedundancy { get; set; } + + protected static readonly string[] ListOfRegionsToShowWarningMessageForGeoBackupStorage = { "eastasia", "southeastasia", "brazilsouth", "east asia", "southeast asia", "brazil south" }; + /// /// Overriding to add warning message /// public override void ExecuteCmdlet() { + ModelAdapter = InitModelAdapter(); + string location = ModelAdapter.GetServerLocation(ResourceGroupName, ServerName); + if (ListOfRegionsToShowWarningMessageForGeoBackupStorage.Contains(location.ToLower())) + { + if (this.BackupStorageRedundancy == null) + { + WriteWarning(string.Format(CultureInfo.InvariantCulture, Properties.Resources.BackupRedundancyNotChosenTakeSourceWarning)); + } + else if (string.Equals(this.BackupStorageRedundancy, "Geo", System.StringComparison.OrdinalIgnoreCase)) + { + WriteWarning(string.Format(CultureInfo.InvariantCulture, Properties.Resources.GeoBackupRedundancyChosenWarning)); + } + } base.ExecuteCmdlet(); } @@ -200,7 +224,8 @@ protected override IEnumerable ApplyUserInputToModel( ServiceObjectiveName = ServiceObjectiveName, ElasticPoolName = ElasticPoolName, Tags = TagsConversionHelper.CreateTagDictionary(Tags, validate: true), - LicenseType = LicenseType // note: default license type is LicenseIncluded + LicenseType = LicenseType, // note: default license type is LicenseIncluded + BackupStorageRedundancy = BackupStorageRedundancy, }; if(ParameterSetName == DtuDatabaseParameterSet) diff --git a/src/Sql/Sql/Replication/Cmdlet/NewAzureSqlDatabaseSecondary.cs b/src/Sql/Sql/Replication/Cmdlet/NewAzureSqlDatabaseSecondary.cs index 68e237d3dd83..8c908cba968a 100644 --- a/src/Sql/Sql/Replication/Cmdlet/NewAzureSqlDatabaseSecondary.cs +++ b/src/Sql/Sql/Replication/Cmdlet/NewAzureSqlDatabaseSecondary.cs @@ -22,6 +22,7 @@ using System.Collections.Generic; using System.Linq; using System.Management.Automation; +using System.Globalization; namespace Microsoft.Azure.Commands.Sql.Replication.Cmdlet { @@ -110,6 +111,7 @@ public class NewAzureSqlDatabaseSecondary : AzureSqlDatabaseSecondaryCmdletBase [Parameter(Mandatory = false, HelpMessage = "Run cmdlet in the background")] public SwitchParameter AsJob { get; set; } + /// /// Gets or sets the compute generation of the database copy /// @@ -139,11 +141,35 @@ public class NewAzureSqlDatabaseSecondary : AzureSqlDatabaseSecondaryCmdletBase "BasePrice")] public string LicenseType { get; set; } + /// + /// Gets or sets the database backup storage redundancy. + /// + [Parameter(Mandatory = false, + HelpMessage = "The Backup storage redundancy used to store backups for the SQL Database. Options are: Local, Zone and Geo.")] + [ValidateSet("Local", "Zone", "Geo")] + public string BackupStorageRedundancy { get; set; } + + protected static readonly string[] ListOfRegionsToShowWarningMessageForGeoBackupStorage = { "eastasia", "southeastasia", "brazilsouth", "east asia", "southeast asia", "brazil south" }; + /// /// Overriding to add warning message /// public override void ExecuteCmdlet() { + ModelAdapter = InitModelAdapter(); + string location = ModelAdapter.GetServerLocation(ResourceGroupName, ServerName); + if (ListOfRegionsToShowWarningMessageForGeoBackupStorage.Contains(location.ToLower())) + { + if (this.BackupStorageRedundancy == null) + { + WriteWarning(string.Format(CultureInfo.InvariantCulture, Properties.Resources.BackupRedundancyNotChosenTakeSourceWarning)); + } + else if (string.Equals(this.BackupStorageRedundancy, "Geo", System.StringComparison.OrdinalIgnoreCase)) + { + WriteWarning(string.Format(CultureInfo.InvariantCulture, Properties.Resources.GeoBackupRedundancyChosenWarning)); + + } + } base.ExecuteCmdlet(); } @@ -199,7 +225,8 @@ protected override IEnumerable ApplyUserInputToModel( SecondaryElasticPoolName = this.SecondaryElasticPoolName, AllowConnections = this.AllowConnections, Tags = TagsConversionHelper.CreateTagDictionary(Tags, validate: true), - LicenseType = LicenseType + LicenseType = LicenseType, + BackupStorageRedundancy = BackupStorageRedundancy, }; if(ParameterSetName == DtuDatabaseParameterSet) diff --git a/src/Sql/Sql/Replication/Model/AzureReplicationLinkModel.cs b/src/Sql/Sql/Replication/Model/AzureReplicationLinkModel.cs index cd6bfd65ad41..e7a78c231785 100644 --- a/src/Sql/Sql/Replication/Model/AzureReplicationLinkModel.cs +++ b/src/Sql/Sql/Replication/Model/AzureReplicationLinkModel.cs @@ -111,5 +111,10 @@ public class AzureReplicationLinkModel : AzureSqlDatabaseReplicationModelBase /// Gets or sets the license type of the database /// public string LicenseType { get; set; } + + /// + /// Gets or sets the backup storage redundancy for the database + /// + public string BackupStorageRedundancy { get; set; } } } diff --git a/src/Sql/Sql/Replication/Model/AzureSqlDatabaseCopyModel.cs b/src/Sql/Sql/Replication/Model/AzureSqlDatabaseCopyModel.cs index f0be3e986420..38723d5be122 100644 --- a/src/Sql/Sql/Replication/Model/AzureSqlDatabaseCopyModel.cs +++ b/src/Sql/Sql/Replication/Model/AzureSqlDatabaseCopyModel.cs @@ -81,5 +81,10 @@ public class AzureSqlDatabaseCopyModel : AzureSqlDatabaseReplicationModelBase /// Gets or sets the license type of the database /// public string LicenseType { get; set; } + + /// + /// Gets or sets the backup storage redundancy for the database + /// + public string BackupStorageRedundancy { get; set; } } } diff --git a/src/Sql/Sql/Replication/Services/AzureSqlDatabaseReplicationAdapter.cs b/src/Sql/Sql/Replication/Services/AzureSqlDatabaseReplicationAdapter.cs index c3452af6d689..8c407df22c8b 100644 --- a/src/Sql/Sql/Replication/Services/AzureSqlDatabaseReplicationAdapter.cs +++ b/src/Sql/Sql/Replication/Services/AzureSqlDatabaseReplicationAdapter.cs @@ -150,7 +150,8 @@ internal AzureSqlDatabaseCopyModel CopyDatabaseWithNewSdk(string copyResourceGro Family = model.Family, Capacity = model.Capacity }, - LicenseType = model.LicenseType + LicenseType = model.LicenseType, + StorageAccountType = MapExternalBackupStorageRedundancyToInternal(model.BackupStorageRedundancy) }); return CreateDatabaseCopyModelFromResponse(model.CopyResourceGroupName, model.CopyServerName, model.ResourceGroupName, @@ -214,6 +215,7 @@ private AzureSqlDatabaseCopyModel CreateDatabaseCopyModelFromResponse(string cop model.CopyLocation = database.Location; model.CreationDate = database.CreationDate.Value; model.LicenseType = database.LicenseType; + model.BackupStorageRedundancy = MapInternalBackupStorageRedundancyToExternal(database.StorageAccountType); return model; } @@ -273,7 +275,8 @@ internal AzureReplicationLinkModel CreateLinkWithNewSdk(string resourceGroupName Family = model.Family, Capacity = model.Capacity }, - LicenseType = model.LicenseType + LicenseType = model.LicenseType, + StorageAccountType = MapExternalBackupStorageRedundancyToInternal(model.BackupStorageRedundancy), }); return GetLink(model.ResourceGroupName, model.ServerName, model.DatabaseName, model.PartnerResourceGroupName, model.PartnerServerName); @@ -463,5 +466,50 @@ internal AzureReplicationLinkModel FailoverLink(string resourceGroupName, string return GetLink(link.PartnerResourceGroupName, link.PartnerServerName, link.DatabaseName, link.PartnerResourceGroupName, link.PartnerServerName); } + + /// + /// Map internal BackupStorageRedundancy value (GRS/LRS/ZRS) to external (Geo/Local/Zone) + /// + /// Backup storage redundancy + /// internal backupStorageRedundancy + private static string MapInternalBackupStorageRedundancyToExternal(string backupStorageRedundancy) + { + switch (backupStorageRedundancy) + { + case "GRS": + return "Geo"; + case "LRS": + return "Local"; + case "ZRS": + return "Zone"; + default: + return null; + } + } + + /// + /// Map external BackupStorageRedundancy value (Geo/Local/Zone) to internal (GRS/LRS/ZRS) + /// + /// Backup storage redundancy + /// internal backupStorageRedundancy + private static string MapExternalBackupStorageRedundancyToInternal(string backupStorageRedundancy) + { + if (string.IsNullOrWhiteSpace(backupStorageRedundancy)) + { + return null; + } + + switch (backupStorageRedundancy.ToLower()) + { + case "geo": + return "GRS"; + case "local": + return "LRS"; + case "zone": + return "ZRS"; + default: + return null; + } + } } } diff --git a/src/Sql/Sql/help/New-AzSqlDatabaseCopy.md b/src/Sql/Sql/help/New-AzSqlDatabaseCopy.md index 438f757a5d3c..e2f1f177d904 100644 --- a/src/Sql/Sql/help/New-AzSqlDatabaseCopy.md +++ b/src/Sql/Sql/help/New-AzSqlDatabaseCopy.md @@ -17,16 +17,18 @@ Creates a copy of a SQL Database that uses the snapshot at the current time. ``` New-AzSqlDatabaseCopy [-DatabaseName] [-ServiceObjectiveName ] [-ElasticPoolName ] [-Tags ] [-CopyResourceGroupName ] [-CopyServerName ] -CopyDatabaseName - [-AsJob] [-LicenseType ] [-ServerName] [-ResourceGroupName] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-AsJob] [-LicenseType ] [-BackupStorageRedundancy ] [-ServerName] + [-ResourceGroupName] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ### VcoreBasedDatabase ``` New-AzSqlDatabaseCopy [-DatabaseName] [-Tags ] [-CopyResourceGroupName ] [-CopyServerName ] -CopyDatabaseName [-AsJob] -ComputeGeneration -VCore - [-LicenseType ] [-ServerName] [-ResourceGroupName] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-LicenseType ] [-BackupStorageRedundancy ] [-ServerName] + [-ResourceGroupName] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION @@ -64,6 +66,22 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -BackupStorageRedundancy +The Backup storage redundancy used to store backups for the SQL Database. Options are: Local, Zone and Geo. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: +Accepted values: Local, Zone, Geo + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ComputeGeneration The compute generation to assign to the new copy. diff --git a/src/Sql/Sql/help/New-AzSqlDatabaseSecondary.md b/src/Sql/Sql/help/New-AzSqlDatabaseSecondary.md index 8cd2966db97e..94d56bdb6ab8 100644 --- a/src/Sql/Sql/help/New-AzSqlDatabaseSecondary.md +++ b/src/Sql/Sql/help/New-AzSqlDatabaseSecondary.md @@ -18,17 +18,18 @@ Creates a secondary database for an existing database and starts data replicatio New-AzSqlDatabaseSecondary [-DatabaseName] [-SecondaryServiceObjectiveName ] [-SecondaryElasticPoolName ] [-Tags ] -PartnerResourceGroupName -PartnerServerName [-PartnerDatabaseName ] [-AllowConnections ] [-AsJob] - [-LicenseType ] [-ServerName] [-ResourceGroupName] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-LicenseType ] [-BackupStorageRedundancy ] [-ServerName] + [-ResourceGroupName] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ### VcoreBasedDatabase ``` New-AzSqlDatabaseSecondary [-DatabaseName] [-Tags ] -PartnerResourceGroupName -PartnerServerName [-PartnerDatabaseName ] [-AllowConnections ] [-AsJob] - -SecondaryComputeGeneration -SecondaryVCore [-LicenseType ] [-ServerName] - [-ResourceGroupName] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] + -SecondaryComputeGeneration -SecondaryVCore [-LicenseType ] + [-BackupStorageRedundancy ] [-ServerName] [-ResourceGroupName] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -86,6 +87,22 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -BackupStorageRedundancy +The Backup storage redundancy used to store backups for the SQL Database. Options are: Local, Zone and Geo. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: +Accepted values: Local, Zone, Geo + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -DatabaseName Specifies the name of the database to act as primary. diff --git a/src/Sql/Sql/help/Restore-AzSqlDatabase.md b/src/Sql/Sql/help/Restore-AzSqlDatabase.md index 3027d60fa9fa..91a10d420fda 100644 --- a/src/Sql/Sql/help/Restore-AzSqlDatabase.md +++ b/src/Sql/Sql/help/Restore-AzSqlDatabase.md @@ -17,16 +17,17 @@ Restores a SQL database. ``` Restore-AzSqlDatabase [-FromPointInTimeBackup] -PointInTime -ResourceId -ServerName -TargetDatabaseName [-Edition ] [-ServiceObjectiveName ] - [-ElasticPoolName ] [-AsJob] [-LicenseType ] [-ResourceGroupName] - [-DefaultProfile ] [] + [-ElasticPoolName ] [-AsJob] [-LicenseType ] [-BackupStorageRedundancy ] + [-ResourceGroupName] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ### FromPointInTimeBackupWithVcore ``` Restore-AzSqlDatabase [-FromPointInTimeBackup] -PointInTime -ResourceId -ServerName -TargetDatabaseName -Edition [-AsJob] -ComputeGeneration - -VCore [-LicenseType ] [-ResourceGroupName] - [-DefaultProfile ] [] + -VCore [-LicenseType ] [-BackupStorageRedundancy ] [-ResourceGroupName] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### FromDeletedDatabaseBackup @@ -34,46 +35,49 @@ Restore-AzSqlDatabase [-FromPointInTimeBackup] -PointInTime -Resource Restore-AzSqlDatabase [-FromDeletedDatabaseBackup] [-PointInTime ] -DeletionDate -ResourceId -ServerName -TargetDatabaseName [-Edition ] [-ServiceObjectiveName ] [-ElasticPoolName ] [-AsJob] [-LicenseType ] - [-ResourceGroupName] [-DefaultProfile ] [] + [-BackupStorageRedundancy ] [-ResourceGroupName] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] ``` ### FromDeletedDatabaseBackupWithVcore ``` Restore-AzSqlDatabase [-FromDeletedDatabaseBackup] [-PointInTime ] -DeletionDate -ResourceId -ServerName -TargetDatabaseName -Edition [-AsJob] - -ComputeGeneration -VCore [-LicenseType ] [-ResourceGroupName] - [-DefaultProfile ] [] + -ComputeGeneration -VCore [-LicenseType ] [-BackupStorageRedundancy ] + [-ResourceGroupName] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ### FromGeoBackup ``` Restore-AzSqlDatabase [-FromGeoBackup] -ResourceId -ServerName -TargetDatabaseName [-Edition ] [-ServiceObjectiveName ] [-ElasticPoolName ] [-AsJob] - [-LicenseType ] [-ResourceGroupName] [-DefaultProfile ] - [] + [-LicenseType ] [-BackupStorageRedundancy ] [-ResourceGroupName] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### FromGeoBackupWithVcore ``` Restore-AzSqlDatabase [-FromGeoBackup] -ResourceId -ServerName -TargetDatabaseName -Edition [-AsJob] -ComputeGeneration -VCore [-LicenseType ] - [-ResourceGroupName] [-DefaultProfile ] [] + [-BackupStorageRedundancy ] [-ResourceGroupName] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] ``` ### FromLongTermRetentionBackup ``` Restore-AzSqlDatabase [-FromLongTermRetentionBackup] -ResourceId -ServerName -TargetDatabaseName [-Edition ] [-ServiceObjectiveName ] [-ElasticPoolName ] - [-AsJob] [-LicenseType ] [-ResourceGroupName] [-DefaultProfile ] - [] + [-AsJob] [-LicenseType ] [-BackupStorageRedundancy ] [-ResourceGroupName] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### FromLongTermRetentionBackupWithVcore ``` Restore-AzSqlDatabase [-FromLongTermRetentionBackup] -ResourceId -ServerName -TargetDatabaseName -Edition [-AsJob] -ComputeGeneration -VCore - [-LicenseType ] [-ResourceGroupName] [-DefaultProfile ] - [] + [-LicenseType ] [-BackupStorageRedundancy ] [-ResourceGroupName] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -145,6 +149,22 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -BackupStorageRedundancy +The Backup storage redundancy used to store backups for the SQL Database. Options are: Local, Zone and Geo. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: +Accepted values: Local, Zone, Geo + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ComputeGeneration The compute generation to assign to the restored database @@ -439,6 +459,36 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### CommonParameters This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). diff --git a/src/Storage/Storage.Management.Test/ScenarioTests/StorageBlobTests.ps1 b/src/Storage/Storage.Management.Test/ScenarioTests/StorageBlobTests.ps1 index 4ffc4817588c..c7099ab6a5fe 100644 --- a/src/Storage/Storage.Management.Test/ScenarioTests/StorageBlobTests.ps1 +++ b/src/Storage/Storage.Management.Test/ScenarioTests/StorageBlobTests.ps1 @@ -462,12 +462,12 @@ function Test-StorageBlobRestore # Enable Blob Delete Retension Policy, Enable Changefeed, then enabled blob restore policy, then get blob service proeprties and check the setting Enable-AzStorageBlobDeleteRetentionPolicy -ResourceGroupName $rgname -StorageAccountName $stoname -RetentionDays 5 - Update-AzStorageBlobServiceProperty -ResourceGroupName $rgname -StorageAccountName $stoname -EnableChangeFeed $true + Update-AzStorageBlobServiceProperty -ResourceGroupName $rgname -StorageAccountName $stoname -EnableChangeFeed $true -IsVersioningEnabled $true # If record, need sleep before enable the blob restore policy, or will get server error #sleep 100 Enable-AzStorageBlobRestorePolicy -ResourceGroupName $rgname -StorageAccountName $stoname -RestoreDays 4 $property = Get-AzStorageBlobServiceProperty -ResourceGroupName $rgname -StorageAccountName $stoname - Assert-AreEqual $true $property.ChangeFeed.Enabled + #Assert-AreEqual $true $property.ChangeFeed.Enabled Assert-AreEqual $true $property.DeleteRetentionPolicy.Enabled Assert-AreEqual 5 $property.DeleteRetentionPolicy.Days Assert-AreEqual $true $property.RestorePolicy.Enabled @@ -476,7 +476,8 @@ function Test-StorageBlobRestore # restore blobs by -asjob $range1 = New-AzStorageBlobRangeToRestore -StartRange container1/blob1 -EndRange container2/blob2 $range2 = New-AzStorageBlobRangeToRestore -StartRange container3/blob3 -EndRange "" - $job = Restore-AzStorageBlobRange -ResourceGroupName $rgname -StorageAccountName $stoname -TimeToRestore (Get-Date).AddSeconds(-1) -BlobRestoreRange $range1,$range2 -asjob + sleep 2 + $job = Restore-AzStorageBlobRange -ResourceGroupName $rgname -StorageAccountName $stoname -TimeToRestore (Get-Date).AddSeconds(-1) -BlobRestoreRange $range1,$range2 -WaitForComplete -asjob # Get Storage Account with Blob Restore Status $stos = Get-AzStorageAccount -ResourceGroupName $rgname -StorageAccountName $stoname -IncludeBlobRestoreStatus diff --git a/src/Storage/Storage.Management.Test/ScenarioTests/StorageFileTests.cs b/src/Storage/Storage.Management.Test/ScenarioTests/StorageFileTests.cs index b6e559dfef6d..366536e715c8 100644 --- a/src/Storage/Storage.Management.Test/ScenarioTests/StorageFileTests.cs +++ b/src/Storage/Storage.Management.Test/ScenarioTests/StorageFileTests.cs @@ -43,6 +43,13 @@ public void TestStorageFileShare() public void TestStorageFileShareGetUsage() { TestController.NewInstance.RunPsTest(_logger, "Test-StorageFileShareGetUsage"); - } + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestShareSoftDeletee() + { + TestController.NewInstance.RunPsTest(_logger, "Test-ShareSoftDelete"); + } } } diff --git a/src/Storage/Storage.Management.Test/ScenarioTests/StorageFileTests.ps1 b/src/Storage/Storage.Management.Test/ScenarioTests/StorageFileTests.ps1 index d2cc85e897ec..4893618de5a5 100644 --- a/src/Storage/Storage.Management.Test/ScenarioTests/StorageFileTests.ps1 +++ b/src/Storage/Storage.Management.Test/ScenarioTests/StorageFileTests.ps1 @@ -140,6 +140,107 @@ function Test-StorageFileShareGetUsage Clean-ResourceGroup $rgname } } + +<# +.SYNOPSIS +Test Storage File Share Soft Delete +.DESCRIPTION +SmokeTest +#> +function Test-ShareSoftDelete +{ + # Setup + $rgname = Get-StorageManagementTestResourceName; + + try + { + # Test + $stoname = 'sto' + $rgname; + $stotype = 'Standard_LRS'; + $loc = Get-ProviderLocation ResourceManagement; + $kind = 'StorageV2' + $shareName1 = "share1"+ $rgname + $shareName2 = "share2"+ $rgname + + Write-Verbose "RGName: $rgname | Loc: $loc" + New-AzResourceGroup -Name $rgname -Location $loc; + $loc = Get-ProviderLocation_Stage ResourceManagement; + New-AzStorageAccount -ResourceGroupName $rgname -Name $stoname -Location $loc -Type $stotype -Kind $kind + $stos = Get-AzStorageAccount -ResourceGroupName $rgname; + + # Enable Share Soft delete + Update-AzStorageFileServiceProperty -ResourceGroupName $rgname -StorageAccountName $stoname -EnableShareDeleteRetentionPolicy $true -ShareRetentionDays 5 + $servicePropertie = Get-AzStorageFileServiceProperty -ResourceGroupName $rgname -StorageAccountName $stoname + Assert-AreEqual $true $servicePropertie.ShareDeleteRetentionPolicy.Enabled + Assert-AreEqual 5 $servicePropertie.ShareDeleteRetentionPolicy.Days + + #create Shares + New-AzRmStorageShare -ResourceGroupName $rgname -StorageAccountName $stoname -Name $shareName1 + $share = Get-AzRmStorageShare -ResourceGroupName $rgname -StorageAccountName $stoname -Name $shareName1 + Assert-AreEqual $rgname $share.ResourceGroupName + Assert-AreEqual $stoname $share.StorageAccountName + Assert-AreEqual $shareName1 $share.Name + New-AzRmStorageShare -ResourceGroupName $rgname -StorageAccountName $stoname -Name $shareName2 + + #delete share + Remove-AzRmStorageShare -ResourceGroupName $rgname -StorageAccountName $stoname -Name $shareName1 -Force + + #list share check + $share = Get-AzRmStorageShare -ResourceGroupName $rgname -StorageAccountName $stoname -IncludeDeleted + $deletedShareVersion = $share[0].Version + Assert-AreEqual 2 $share.Count + Assert-AreEqual $shareName1 $share[0].Name + Assert-AreEqual $null $share[0].ShareUsageBytes + Assert-AreEqual $true $share[0].Deleted + Assert-AreNotEqual $null $share[0].DeletedTime + Assert-AreNotEqual $null $share[0].Version + Assert-AreEqual $shareName2 $share[1].Name + Assert-AreEqual $null $share[1].Deleted + Assert-AreEqual $null $share[1].DeletedTime + Assert-AreEqual $null $share[1].Version + + $share = Get-AzRmStorageShare -ResourceGroupName $rgname -StorageAccountName $stoname + Assert-AreEqual 1 $share.Count + Assert-AreEqual $shareName2 $share[0].Name + Assert-AreEqual $null $share[0].Deleted + Assert-AreEqual $null $share[0].DeletedTime + Assert-AreEqual $null $share[0].Version + + # restore share and check + if ($env:AZURE_TEST_MODE -eq "Record") + { + # sleep 1 miniute if record. Don't need sleep in replay + sleep 60 + } + Restore-AzRmStorageShare -ResourceGroupName $rgname -StorageAccountName $stoname -Name $shareName1 -DeletedShareVersion $deletedShareVersion + + $share = Get-AzRmStorageShare -ResourceGroupName $rgname -StorageAccountName $stoname + Assert-AreEqual 2 $share.Count + Assert-AreEqual $shareName1 $share[0].Name + Assert-AreEqual $null $share[0].Deleted + Assert-AreEqual $null $share[0].DeletedTime + Assert-AreEqual $null $share[0].Version + Assert-AreEqual $shareName2 $share[1].Name + Assert-AreEqual $null $share[1].Deleted + Assert-AreEqual $null $share[1].DeletedTime + Assert-AreEqual $null $share[1].Version + + $share = Get-AzRmStorageShare -ResourceGroupName $rgname -StorageAccountName $stoname -IncludeDeleted + Assert-AreEqual 2 $share.Count + + # Disable Share Soft delete + Update-AzStorageFileServiceProperty -ResourceGroupName $rgname -StorageAccountName $stoname -EnableShareDeleteRetentionPolicy $false + $servicePropertie = Get-AzStorageFileServiceProperty -ResourceGroupName $rgname -StorageAccountName $stoname + Assert-AreEqual $false $servicePropertie.ShareDeleteRetentionPolicy.Enabled + + Remove-AzStorageAccount -Force -ResourceGroupName $rgname -Name $stoname; + } + finally + { + # Cleanup + Clean-ResourceGroup $rgname + } +} diff --git a/src/Storage/Storage.Management.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageBlobTests/TestStorageBlobRestore.json b/src/Storage/Storage.Management.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageBlobTests/TestStorageBlobRestore.json index 22fe2704ae20..d25f941a8491 100644 --- a/src/Storage/Storage.Management.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageBlobTests/TestStorageBlobRestore.json +++ b/src/Storage/Storage.Management.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageBlobTests/TestStorageBlobRestore.json @@ -576,132 +576,6 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5491/providers/Microsoft.Storage/storageAccounts/stopstestrg5491/blobServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices\",\r\n \"properties\": {\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"deleteRetentionPolicy\": {\r\n \"enabled\": true,\r\n \"days\": 5\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5491/providers/Microsoft.Storage/storageAccounts/stopstestrg5491/blobServices/default?api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNTQ5MS9ibG9iU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "20eff634-2384-44c7-a0cc-011dc280821a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "188432dc-b276-44a4-a700-3eca0e961d9a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" - ], - "x-ms-correlation-request-id": [ - "c08c9761-b50b-4f90-b2f4-3091b6f845da" - ], - "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200210T151720Z:c08c9761-b50b-4f90-b2f4-3091b6f845da" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Feb 2020 15:17:19 GMT" - ], - "Content-Length": [ - "391" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5491/providers/Microsoft.Storage/storageAccounts/stopstestrg5491/blobServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices\",\r\n \"properties\": {\r\n \"changeFeed\": {\r\n \"enabled\": true\r\n },\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"deleteRetentionPolicy\": {\r\n \"enabled\": true,\r\n \"days\": 5\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5491/providers/Microsoft.Storage/storageAccounts/stopstestrg5491/blobServices/default?api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNTQ5MS9ibG9iU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "86285449-096b-417e-9848-fddb016378f5" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "599b819a-a43d-4f81-a138-1a3d25626c7c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" - ], - "x-ms-correlation-request-id": [ - "7f827ffd-32ba-4501-bcb2-16ad608878e4" - ], - "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200210T151721Z:7f827ffd-32ba-4501-bcb2-16ad608878e4" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Feb 2020 15:17:21 GMT" - ], - "Content-Length": [ - "433" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5491/providers/Microsoft.Storage/storageAccounts/stopstestrg5491/blobServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices\",\r\n \"properties\": {\r\n \"changeFeed\": {\r\n \"enabled\": true\r\n },\r\n \"restorePolicy\": {\r\n \"enabled\": true,\r\n \"days\": 4\r\n },\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"deleteRetentionPolicy\": {\r\n \"enabled\": true,\r\n \"days\": 5\r\n }\r\n }\r\n}", "StatusCode": 200 }, diff --git a/src/Storage/Storage.Management.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageBlobTests/TestStorageBlobServiceProperties.json b/src/Storage/Storage.Management.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageBlobTests/TestStorageBlobServiceProperties.json index e3b7e26f6207..33ab60734ead 100644 --- a/src/Storage/Storage.Management.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageBlobTests/TestStorageBlobServiceProperties.json +++ b/src/Storage/Storage.Management.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageBlobTests/TestStorageBlobServiceProperties.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/providers/Microsoft.Storage?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e79d0fe7-e73f-41c2-823d-27b1934003a3" + "0c5e991a-9472-4a87-8b7e-3fdca0a7a3a1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" ] }, "ResponseHeaders": { @@ -30,13 +30,13 @@ "11999" ], "x-ms-request-id": [ - "6d8c3aba-26f2-4e33-9bb2-e56932049f66" + "c92b957d-66fa-4716-a78f-3d173fa398f2" ], "x-ms-correlation-request-id": [ - "6d8c3aba-26f2-4e33-9bb2-e56932049f66" + "c92b957d-66fa-4716-a78f-3d173fa398f2" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20191129T053054Z:6d8c3aba-26f2-4e33-9bb2-e56932049f66" + "SOUTHEASTASIA:20200921T070034Z:c92b957d-66fa-4716-a78f-3d173fa398f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Fri, 29 Nov 2019 05:30:53 GMT" + "Mon, 21 Sep 2020 07:00:33 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54,29 +54,29 @@ "-1" ], "Content-Length": [ - "11509" + "13639" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n {\r\n \"applicationId\": \"e406a681-f3d4-42a8-90b6-c2b029497af1\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n {\r\n \"applicationId\": \"e406a681-f3d4-42a8-90b6-c2b029497af1\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deletedAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-08-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourcegroups/pstestrg7985?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzk4NT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourcegroups/pstestrg1793?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMTc5Mz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3a8df9f3-a18c-433b-8c30-d25471388220" + "a62b64f6-f6f9-40e0-ad42-ee9b7938b69d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "c8da0a9f-262d-4bb7-ba42-abd095cde0b5" + "0eb9cc32-78cc-4c85-a617-55c2708aa640" ], "x-ms-correlation-request-id": [ - "c8da0a9f-262d-4bb7-ba42-abd095cde0b5" + "0eb9cc32-78cc-4c85-a617-55c2708aa640" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20191129T053057Z:c8da0a9f-262d-4bb7-ba42-abd095cde0b5" + "SOUTHEASTASIA:20200921T070036Z:0eb9cc32-78cc-4c85-a617-55c2708aa640" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Fri, 29 Nov 2019 05:30:56 GMT" + "Mon, 21 Sep 2020 07:00:35 GMT" ], "Content-Length": [ "177" @@ -123,26 +123,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/pstestrg7985\",\r\n \"name\": \"pstestrg7985\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1793\",\r\n \"name\": \"pstestrg1793\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/providers/Microsoft.Storage/checkNameAvailability?api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/checkNameAvailability?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"stopstestrg7985\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "RequestBody": "{\r\n \"name\": \"stopstestrg1793\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "dc859215-b94f-4988-8106-e9b4729a4e89" + "555348b0-9bea-4f8e-99d4-4a02fd0695a7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -159,7 +159,7 @@ "no-cache" ], "x-ms-request-id": [ - "4bec7af4-0d9c-4bd7-88c8-8715ddae048f" + "d6837c39-fad0-4db0-863c-2fe6feebe631" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -171,16 +171,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "ca5e39bb-ff98-4447-a3a0-bb4829b9c480" + "feb4b554-a55e-4957-ab6f-af880cadbf8e" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20191129T053058Z:ca5e39bb-ff98-4447-a3a0-bb4829b9c480" + "SOUTHEASTASIA:20200921T070037Z:feb4b554-a55e-4957-ab6f-af880cadbf8e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 29 Nov 2019 05:30:57 GMT" + "Mon, 21 Sep 2020 07:00:37 GMT" ], "Content-Length": [ "22" @@ -196,22 +196,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/pstestrg7985/providers/Microsoft.Storage/storageAccounts/stopstestrg7985?api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzk4NS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzk4NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1793/providers/Microsoft.Storage/storageAccounts/stopstestrg1793?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTc5My9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTc5Mz9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ed8f09c8-4f3d-4730-ab17-564bc60ab9b6" + "80c0eef9-c1b4-4c14-bb6a-8d2ed170cf61" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -228,13 +228,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/providers/Microsoft.Storage/locations/westus/asyncoperations/6105555a-6de5-42a1-be97-c3b2ac0be303?monitor=true&api-version=2019-06-01" + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/westus/asyncoperations/d94d1a7f-eaba-402d-b824-7616d9c103a9?monitor=true&api-version=2019-06-01" ], "Retry-After": [ "17" ], "x-ms-request-id": [ - "6105555a-6de5-42a1-be97-c3b2ac0be303" + "d94d1a7f-eaba-402d-b824-7616d9c103a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -246,16 +246,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "fe97e53e-a05a-44ee-b2a6-fe2b1b89eb6e" + "33187919-1f16-4fc9-b21c-0b82e45dffe6" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20191129T053105Z:fe97e53e-a05a-44ee-b2a6-fe2b1b89eb6e" + "SOUTHEASTASIA:20200921T070045Z:33187919-1f16-4fc9-b21c-0b82e45dffe6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 29 Nov 2019 05:31:05 GMT" + "Mon, 21 Sep 2020 07:00:44 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -271,16 +271,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/providers/Microsoft.Storage/locations/westus/asyncoperations/6105555a-6de5-42a1-be97-c3b2ac0be303?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdHVzL2FzeW5jb3BlcmF0aW9ucy82MTA1NTU1YS02ZGU1LTQyYTEtYmU5Ny1jM2IyYWMwYmUzMDM/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/westus/asyncoperations/d94d1a7f-eaba-402d-b824-7616d9c103a9?monitor=true&api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdHVzL2FzeW5jb3BlcmF0aW9ucy9kOTRkMWE3Zi1lYWJhLTQwMmQtYjgyNC03NjE2ZDljMTAzYTk/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.0.0" ] }, "ResponseHeaders": { @@ -291,7 +291,7 @@ "no-cache" ], "x-ms-request-id": [ - "3f302a4e-0237-487b-a719-0f5e58f244a8" + "54a22b9e-d50e-43d2-959e-a628cddbc29d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,19 +303,19 @@ "11998" ], "x-ms-correlation-request-id": [ - "af995dab-c769-412c-b7a7-9f2e5599f94d" + "1717abf8-39d5-40a4-8649-b4ec673349ef" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20191129T053123Z:af995dab-c769-412c-b7a7-9f2e5599f94d" + "SOUTHEASTASIA:20200921T070103Z:1717abf8-39d5-40a4-8649-b4ec673349ef" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 29 Nov 2019 05:31:22 GMT" + "Mon, 21 Sep 2020 07:01:02 GMT" ], "Content-Length": [ - "1277" + "1317" ], "Content-Type": [ "application/json" @@ -324,26 +324,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/pstestrg7985/providers/Microsoft.Storage/storageAccounts/stopstestrg7985\",\r\n \"name\": \"stopstestrg7985\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-11-29T05:31:05.3371258Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-11-29T05:31:05.3371258Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-11-29T05:31:05.2590016Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg7985.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg7985.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg7985.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7985.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7985.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg7985.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1793/providers/Microsoft.Storage/storageAccounts/stopstestrg1793\",\r\n \"name\": \"stopstestrg1793\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-09-21T07:00:44.5268263Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-09-21T07:00:44.5268263Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-09-21T07:00:44.4642762Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg1793.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg1793.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg1793.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg1793.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg1793.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg1793.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/pstestrg7985/providers/Microsoft.Storage/storageAccounts/stopstestrg7985?api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzk4NS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzk4NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1793/providers/Microsoft.Storage/storageAccounts/stopstestrg1793?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTc5My9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTc5Mz9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "15c02afd-68fd-4926-adce-8a0ec93dca80" + "fbe57731-3581-480b-93bb-5cf178502791" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.0.0" ] }, "ResponseHeaders": { @@ -354,7 +354,7 @@ "no-cache" ], "x-ms-request-id": [ - "834990e5-d3a7-456b-a268-61678726c410" + "7b8d10ef-1532-41da-9abf-33f2c17db849" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -366,19 +366,19 @@ "11997" ], "x-ms-correlation-request-id": [ - "73344194-1039-4b82-9453-a9d0940969fa" + "00d30a96-15b2-4934-83bb-e65a92b715bf" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20191129T053123Z:73344194-1039-4b82-9453-a9d0940969fa" + "SOUTHEASTASIA:20200921T070103Z:00d30a96-15b2-4934-83bb-e65a92b715bf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 29 Nov 2019 05:31:22 GMT" + "Mon, 21 Sep 2020 07:01:03 GMT" ], "Content-Length": [ - "1277" + "1317" ], "Content-Type": [ "application/json" @@ -387,26 +387,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/pstestrg7985/providers/Microsoft.Storage/storageAccounts/stopstestrg7985\",\r\n \"name\": \"stopstestrg7985\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-11-29T05:31:05.3371258Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-11-29T05:31:05.3371258Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-11-29T05:31:05.2590016Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg7985.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg7985.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg7985.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7985.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7985.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg7985.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1793/providers/Microsoft.Storage/storageAccounts/stopstestrg1793\",\r\n \"name\": \"stopstestrg1793\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-09-21T07:00:44.5268263Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-09-21T07:00:44.5268263Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-09-21T07:00:44.4642762Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg1793.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg1793.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg1793.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg1793.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg1793.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg1793.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/pstestrg7985/providers/Microsoft.Storage/storageAccounts?api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzk4NS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1793/providers/Microsoft.Storage/storageAccounts?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTc5My9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8074ce39-278d-4a4e-92cc-ad2704734488" + "fe642110-c77c-409a-9c3a-46db13f8fbfc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.0.0" ] }, "ResponseHeaders": { @@ -417,7 +417,7 @@ "no-cache" ], "x-ms-request-id": [ - "f685578e-71a4-4bfc-ab07-a846e6659bcb" + "b7ba9fbe-8142-4839-9fe2-b0d909ca398a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,19 +429,19 @@ "11996" ], "x-ms-correlation-request-id": [ - "211baaff-73c5-4a50-98c4-bc2250a5500c" + "0540b017-de33-4400-84b9-555d8406a9e6" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20191129T053123Z:211baaff-73c5-4a50-98c4-bc2250a5500c" + "SOUTHEASTASIA:20200921T070103Z:0540b017-de33-4400-84b9-555d8406a9e6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 29 Nov 2019 05:31:22 GMT" + "Mon, 21 Sep 2020 07:01:03 GMT" ], "Content-Length": [ - "1289" + "1329" ], "Content-Type": [ "application/json" @@ -450,89 +450,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/pstestrg7985/providers/Microsoft.Storage/storageAccounts/stopstestrg7985\",\r\n \"name\": \"stopstestrg7985\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-11-29T05:31:05.3371258Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-11-29T05:31:05.3371258Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-11-29T05:31:05.2590016Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg7985.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg7985.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg7985.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7985.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7985.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg7985.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1793/providers/Microsoft.Storage/storageAccounts/stopstestrg1793\",\r\n \"name\": \"stopstestrg1793\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-09-21T07:00:44.5268263Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-09-21T07:00:44.5268263Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-09-21T07:00:44.4642762Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg1793.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg1793.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg1793.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg1793.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg1793.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg1793.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/pstestrg7985/providers/Microsoft.Storage/storageAccounts/stopstestrg7985/blobServices/default?api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzk4NS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzk4NS9ibG9iU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1793/providers/Microsoft.Storage/storageAccounts/stopstestrg1793/blobServices/default?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTc5My9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTc5My9ibG9iU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"defaultServiceVersion\": \"2018-03-28\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "af576554-8ee9-404f-b61e-46fbf6e99e37" + "cdc3fad7-1e3a-4316-a7b6-0d0abdf99564" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "7c1926a0-4eea-4eca-990a-9cf351d79242" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-correlation-request-id": [ - "6061bbf2-1b12-4e61-8980-5ac6c8079998" - ], - "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20191129T053124Z:6061bbf2-1b12-4e61-8980-5ac6c8079998" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 29 Nov 2019 05:31:23 GMT" - ], - "Content-Length": [ - "323" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.0.0" ], "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/pstestrg7985/providers/Microsoft.Storage/storageAccounts/stopstestrg7985/blobServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices\",\r\n \"properties\": {\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"deleteRetentionPolicy\": {\r\n \"enabled\": false\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/pstestrg7985/providers/Microsoft.Storage/storageAccounts/stopstestrg7985/blobServices/default?api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzk4NS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzk4NS9ibG9iU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0ccd95ca-0fd7-4695-be7a-60a8bb23b26c" - ], - "Accept-Language": [ - "en-US" + "application/json; charset=utf-8" ], - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.1.0.0" + "Content-Length": [ + "71" ] }, "ResponseHeaders": { @@ -543,7 +486,7 @@ "no-cache" ], "x-ms-request-id": [ - "c95163ac-bd37-4454-a784-342f9118de65" + "a2854b41-a92c-4191-8f3c-21abbe065b95" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -551,23 +494,23 @@ "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-correlation-request-id": [ - "3142e95b-26bd-4fc0-9b40-7ce1bee4eb9a" + "a762ee02-9a8b-4c2e-bace-988ddab83cbf" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20191129T053124Z:3142e95b-26bd-4fc0-9b40-7ce1bee4eb9a" + "SOUTHEASTASIA:20200921T070104Z:a762ee02-9a8b-4c2e-bace-988ddab83cbf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 29 Nov 2019 05:31:24 GMT" + "Mon, 21 Sep 2020 07:01:04 GMT" ], "Content-Length": [ - "360" + "294" ], "Content-Type": [ "application/json" @@ -576,89 +519,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/pstestrg7985/providers/Microsoft.Storage/storageAccounts/stopstestrg7985/blobServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices\",\r\n \"properties\": {\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"defaultServiceVersion\": \"2018-03-28\",\r\n \"deleteRetentionPolicy\": {\r\n \"enabled\": false\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1793/providers/Microsoft.Storage/storageAccounts/stopstestrg1793/blobServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices\",\r\n \"properties\": {\r\n \"defaultServiceVersion\": \"2018-03-28\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/pstestrg7985/providers/Microsoft.Storage/storageAccounts/stopstestrg7985/blobServices/default?api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzk4NS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzk4NS9ibG9iU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1793/providers/Microsoft.Storage/storageAccounts/stopstestrg1793/blobServices/default?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTc5My9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTc5My9ibG9iU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"deleteRetentionPolicy\": {\r\n \"enabled\": true,\r\n \"days\": 3\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5d8b18e6-7a7c-4809-9dc9-0ca2ae2578ca" + "7ebd2a32-2c5f-489d-881b-a5fe6531aff7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "3c8f965c-2eef-48ec-be1b-02dbd14034d0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-correlation-request-id": [ - "74280b19-803e-4fae-abd1-3e0a0ce64e73" - ], - "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20191129T053125Z:74280b19-803e-4fae-abd1-3e0a0ce64e73" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 29 Nov 2019 05:31:24 GMT" - ], - "Content-Length": [ - "360" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.0.0" ], "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/pstestrg7985/providers/Microsoft.Storage/storageAccounts/stopstestrg7985/blobServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices\",\r\n \"properties\": {\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"defaultServiceVersion\": \"2018-03-28\",\r\n \"deleteRetentionPolicy\": {\r\n \"enabled\": false\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/pstestrg7985/providers/Microsoft.Storage/storageAccounts/stopstestrg7985/blobServices/default?api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzk4NS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzk4NS9ibG9iU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b21994c3-bbe6-4405-afaa-968cc2796621" - ], - "Accept-Language": [ - "en-US" + "application/json; charset=utf-8" ], - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.1.0.0" + "Content-Length": [ + "108" ] }, "ResponseHeaders": { @@ -669,7 +555,7 @@ "no-cache" ], "x-ms-request-id": [ - "7ab86000-3a2c-4284-bc6e-d6f60ed349f6" + "aec413d0-cf30-4077-9f45-0c0464479638" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -677,23 +563,23 @@ "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" ], "x-ms-correlation-request-id": [ - "23f251ea-6c8b-4d7d-bca7-6cc42a931cdd" + "e9633690-1b86-4302-9012-0f79e843fd46" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20191129T053128Z:23f251ea-6c8b-4d7d-bca7-6cc42a931cdd" + "SOUTHEASTASIA:20200921T070105Z:e9633690-1b86-4302-9012-0f79e843fd46" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 29 Nov 2019 05:31:27 GMT" + "Mon, 21 Sep 2020 07:01:05 GMT" ], "Content-Length": [ - "399" + "307" ], "Content-Type": [ "application/json" @@ -702,26 +588,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/pstestrg7985/providers/Microsoft.Storage/storageAccounts/stopstestrg7985/blobServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices\",\r\n \"properties\": {\r\n \"changeFeed\": {\r\n \"enabled\": false\r\n },\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"defaultServiceVersion\": \"2018-03-28\",\r\n \"deleteRetentionPolicy\": {\r\n \"enabled\": true,\r\n \"days\": 3\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1793/providers/Microsoft.Storage/storageAccounts/stopstestrg1793/blobServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices\",\r\n \"properties\": {\r\n \"deleteRetentionPolicy\": {\r\n \"enabled\": true,\r\n \"days\": 3\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/pstestrg7985/providers/Microsoft.Storage/storageAccounts/stopstestrg7985/blobServices/default?api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzk4NS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzk4NS9ibG9iU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1793/providers/Microsoft.Storage/storageAccounts/stopstestrg1793/blobServices/default?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTc5My9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTc5My9ibG9iU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"deleteRetentionPolicy\": {\r\n \"enabled\": false\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0c637d4f-09ed-4c75-943a-34f1371e9fac" + "a31c70e4-98f6-4ac0-90bf-87df98538a73" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "91" ] }, "ResponseHeaders": { @@ -732,7 +624,7 @@ "no-cache" ], "x-ms-request-id": [ - "ab7ea633-77ff-4f84-aa90-8acf0b1b6768" + "8d589ba0-bfc5-4260-8408-18ffd0e30632" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -740,23 +632,23 @@ "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" ], "x-ms-correlation-request-id": [ - "7976ef8f-d91e-48cd-aede-e59b4ff63a56" + "69722484-1d60-4b51-bec3-e5749cbd53d2" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20191129T053128Z:7976ef8f-d91e-48cd-aede-e59b4ff63a56" + "SOUTHEASTASIA:20200921T070106Z:69722484-1d60-4b51-bec3-e5749cbd53d2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 29 Nov 2019 05:31:27 GMT" + "Mon, 21 Sep 2020 07:01:06 GMT" ], "Content-Length": [ - "399" + "299" ], "Content-Type": [ "application/json" @@ -765,26 +657,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/pstestrg7985/providers/Microsoft.Storage/storageAccounts/stopstestrg7985/blobServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices\",\r\n \"properties\": {\r\n \"changeFeed\": {\r\n \"enabled\": false\r\n },\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"defaultServiceVersion\": \"2018-03-28\",\r\n \"deleteRetentionPolicy\": {\r\n \"enabled\": true,\r\n \"days\": 3\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1793/providers/Microsoft.Storage/storageAccounts/stopstestrg1793/blobServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices\",\r\n \"properties\": {\r\n \"deleteRetentionPolicy\": {\r\n \"enabled\": false\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/pstestrg7985/providers/Microsoft.Storage/storageAccounts/stopstestrg7985/blobServices/default?api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzk4NS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzk4NS9ibG9iU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1793/providers/Microsoft.Storage/storageAccounts/stopstestrg1793/blobServices/default?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTc5My9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTc5My9ibG9iU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f485fda3-3962-4a45-9a1e-5e29cc765ee5" + "2126acfc-7451-4214-8ed6-3b049ae79cfc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.0.0" ] }, "ResponseHeaders": { @@ -795,7 +687,7 @@ "no-cache" ], "x-ms-request-id": [ - "4d067bb4-3583-481d-931a-ce9f2497cce0" + "e823ef87-f238-4245-8b0d-b4aa6266e367" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -804,22 +696,22 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11995" ], "x-ms-correlation-request-id": [ - "1d38c79a-44f4-4e4c-b627-923060374127" + "78e0f55b-f777-4a01-9ed6-6a496f4859e8" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20191129T053128Z:1d38c79a-44f4-4e4c-b627-923060374127" + "SOUTHEASTASIA:20200921T070104Z:78e0f55b-f777-4a01-9ed6-6a496f4859e8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 29 Nov 2019 05:31:27 GMT" + "Mon, 21 Sep 2020 07:01:04 GMT" ], "Content-Length": [ - "391" + "408" ], "Content-Type": [ "application/json" @@ -828,32 +720,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/pstestrg7985/providers/Microsoft.Storage/storageAccounts/stopstestrg7985/blobServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices\",\r\n \"properties\": {\r\n \"changeFeed\": {\r\n \"enabled\": false\r\n },\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"defaultServiceVersion\": \"2018-03-28\",\r\n \"deleteRetentionPolicy\": {\r\n \"enabled\": false\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1793/providers/Microsoft.Storage/storageAccounts/stopstestrg1793/blobServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices\",\r\n \"properties\": {\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"defaultServiceVersion\": \"2018-03-28\",\r\n \"deleteRetentionPolicy\": {\r\n \"enabled\": false\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/pstestrg7985/providers/Microsoft.Storage/storageAccounts/stopstestrg7985/blobServices/default?api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzk4NS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzk4NS9ibG9iU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"defaultServiceVersion\": \"2018-03-28\",\r\n \"deleteRetentionPolicy\": {\r\n \"enabled\": false\r\n }\r\n }\r\n}", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1793/providers/Microsoft.Storage/storageAccounts/stopstestrg1793/blobServices/default?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTc5My9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTc5My9ibG9iU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21954fd3-798f-4f36-9892-4bfe2b530fbf" + "f73a2730-15b3-44da-8af9-9ccecfb2e60f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.1.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "181" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.0.0" ] }, "ResponseHeaders": { @@ -864,7 +750,7 @@ "no-cache" ], "x-ms-request-id": [ - "3586f43c-28ad-4f3e-a349-9b1cc0f8df08" + "c656b40b-80cf-4fdd-b015-17aec9d17e1a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -872,23 +758,23 @@ "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" ], "x-ms-correlation-request-id": [ - "9ad306ca-283a-44a0-880c-040d0a23605e" + "d8d8f84c-d6ea-4f76-a5f1-61619a9c6184" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20191129T053124Z:9ad306ca-283a-44a0-880c-040d0a23605e" + "SOUTHEASTASIA:20200921T070105Z:d8d8f84c-d6ea-4f76-a5f1-61619a9c6184" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 29 Nov 2019 05:31:23 GMT" + "Mon, 21 Sep 2020 07:01:04 GMT" ], "Content-Length": [ - "360" + "408" ], "Content-Type": [ "application/json" @@ -897,32 +783,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/pstestrg7985/providers/Microsoft.Storage/storageAccounts/stopstestrg7985/blobServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices\",\r\n \"properties\": {\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"defaultServiceVersion\": \"2018-03-28\",\r\n \"deleteRetentionPolicy\": {\r\n \"enabled\": false\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1793/providers/Microsoft.Storage/storageAccounts/stopstestrg1793/blobServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices\",\r\n \"properties\": {\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"defaultServiceVersion\": \"2018-03-28\",\r\n \"deleteRetentionPolicy\": {\r\n \"enabled\": false\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/pstestrg7985/providers/Microsoft.Storage/storageAccounts/stopstestrg7985/blobServices/default?api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzk4NS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzk4NS9ibG9iU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"defaultServiceVersion\": \"2018-03-28\",\r\n \"deleteRetentionPolicy\": {\r\n \"enabled\": true,\r\n \"days\": 3\r\n },\r\n \"changeFeed\": {\r\n \"enabled\": false\r\n }\r\n }\r\n}", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1793/providers/Microsoft.Storage/storageAccounts/stopstestrg1793/blobServices/default?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTc5My9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTc5My9ibG9iU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4a530127-cc67-4fcd-9660-1a9ddb32dfdf" + "e9080315-8f65-4370-8a4b-29eb05b773d2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.1.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "251" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.0.0" ] }, "ResponseHeaders": { @@ -933,7 +813,7 @@ "no-cache" ], "x-ms-request-id": [ - "8dedb751-7406-4756-9ecf-f33f2665fb47" + "4210189d-6631-4db2-8f50-dc7c8a735154" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -941,23 +821,23 @@ "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" ], "x-ms-correlation-request-id": [ - "2e14cac7-d1f0-4d16-bbde-bd3033af0b18" + "9064ac17-e661-4c8a-8b12-d8e490acfd42" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20191129T053127Z:2e14cac7-d1f0-4d16-bbde-bd3033af0b18" + "SOUTHEASTASIA:20200921T070106Z:9064ac17-e661-4c8a-8b12-d8e490acfd42" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 29 Nov 2019 05:31:26 GMT" + "Mon, 21 Sep 2020 07:01:05 GMT" ], "Content-Length": [ - "399" + "416" ], "Content-Type": [ "application/json" @@ -966,32 +846,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/pstestrg7985/providers/Microsoft.Storage/storageAccounts/stopstestrg7985/blobServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices\",\r\n \"properties\": {\r\n \"changeFeed\": {\r\n \"enabled\": false\r\n },\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"defaultServiceVersion\": \"2018-03-28\",\r\n \"deleteRetentionPolicy\": {\r\n \"enabled\": true,\r\n \"days\": 3\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1793/providers/Microsoft.Storage/storageAccounts/stopstestrg1793/blobServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices\",\r\n \"properties\": {\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"defaultServiceVersion\": \"2018-03-28\",\r\n \"deleteRetentionPolicy\": {\r\n \"enabled\": true,\r\n \"days\": 3\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/pstestrg7985/providers/Microsoft.Storage/storageAccounts/stopstestrg7985/blobServices/default?api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzk4NS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzk4NS9ibG9iU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"defaultServiceVersion\": \"2018-03-28\",\r\n \"deleteRetentionPolicy\": {\r\n \"enabled\": false\r\n },\r\n \"changeFeed\": {\r\n \"enabled\": false\r\n }\r\n }\r\n}", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1793/providers/Microsoft.Storage/storageAccounts/stopstestrg1793/blobServices/default?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTc5My9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTc5My9ibG9iU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "36606660-7777-4ebe-80ee-65987d38499b" + "cc3716a3-d481-427f-af67-714c8c213266" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.1.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "234" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.0.0" ] }, "ResponseHeaders": { @@ -1002,7 +876,7 @@ "no-cache" ], "x-ms-request-id": [ - "f9fc4779-2ff4-430a-bfa4-6ae380b8d3c1" + "8a0da551-6d10-4e3c-8f42-c71d4f1a907e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1010,23 +884,23 @@ "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" ], "x-ms-correlation-request-id": [ - "637002f3-8986-4e9a-8cdc-3ea24e46ac1e" + "1299a74c-a4b6-4924-97c8-6c3fc585cde7" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20191129T053128Z:637002f3-8986-4e9a-8cdc-3ea24e46ac1e" + "SOUTHEASTASIA:20200921T070106Z:1299a74c-a4b6-4924-97c8-6c3fc585cde7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 29 Nov 2019 05:31:27 GMT" + "Mon, 21 Sep 2020 07:01:06 GMT" ], "Content-Length": [ - "391" + "408" ], "Content-Type": [ "application/json" @@ -1035,26 +909,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/pstestrg7985/providers/Microsoft.Storage/storageAccounts/stopstestrg7985/blobServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices\",\r\n \"properties\": {\r\n \"changeFeed\": {\r\n \"enabled\": false\r\n },\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"defaultServiceVersion\": \"2018-03-28\",\r\n \"deleteRetentionPolicy\": {\r\n \"enabled\": false\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1793/providers/Microsoft.Storage/storageAccounts/stopstestrg1793/blobServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices\",\r\n \"properties\": {\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"defaultServiceVersion\": \"2018-03-28\",\r\n \"deleteRetentionPolicy\": {\r\n \"enabled\": false\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/pstestrg7985/providers/Microsoft.Storage/storageAccounts/stopstestrg7985?api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzk4NS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzk4NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1793/providers/Microsoft.Storage/storageAccounts/stopstestrg1793?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTc5My9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTc5Mz9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "03abed1b-a1e6-4f79-bdcc-3d6553b96389" + "540d8a83-842f-4cb9-ae23-6938c72a1c9e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.0.0" ] }, "ResponseHeaders": { @@ -1065,7 +939,7 @@ "no-cache" ], "x-ms-request-id": [ - "0e2fcc02-bc0b-4c1d-89ac-6506cb23185c" + "d9fc68f6-9f67-4d64-b621-b3faf17f1e61" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1077,16 +951,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "8330c701-804b-421b-a296-3c1d0a1423aa" + "b5339d3b-6768-4783-ad2b-21f26c12355c" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20191129T053131Z:8330c701-804b-421b-a296-3c1d0a1423aa" + "SOUTHEASTASIA:20200921T070112Z:b5339d3b-6768-4783-ad2b-21f26c12355c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 29 Nov 2019 05:31:30 GMT" + "Mon, 21 Sep 2020 07:01:12 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -1102,22 +976,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourcegroups/pstestrg7985?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzk4NT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourcegroups/pstestrg1793?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMTc5Mz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e4506e2f-acc4-4b97-ad6f-41f66eea5c7b" + "4db23633-c893-4c24-97d7-1f69074e9b24" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" ] }, "ResponseHeaders": { @@ -1128,7 +1002,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE3OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1137,13 +1011,13 @@ "14999" ], "x-ms-request-id": [ - "2da03e5c-94f0-414d-b791-48d9109435fe" + "0b951d8f-e993-49ee-bfbc-3453427299ae" ], "x-ms-correlation-request-id": [ - "2da03e5c-94f0-414d-b791-48d9109435fe" + "0b951d8f-e993-49ee-bfbc-3453427299ae" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20191129T053135Z:2da03e5c-94f0-414d-b791-48d9109435fe" + "SOUTHEASTASIA:20200921T070115Z:0b951d8f-e993-49ee-bfbc-3453427299ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1152,7 +1026,7 @@ "nosniff" ], "Date": [ - "Fri, 29 Nov 2019 05:31:35 GMT" + "Mon, 21 Sep 2020 07:01:15 GMT" ], "Expires": [ "-1" @@ -1165,16 +1039,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1T0RVdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE3OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUzT1RNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" ] }, "ResponseHeaders": { @@ -1185,7 +1059,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE3OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1194,13 +1068,13 @@ "11998" ], "x-ms-request-id": [ - "f73865be-5693-4eea-af7a-808e59ca27da" + "8a15983a-4710-41e5-9d20-3c7ae7678970" ], "x-ms-correlation-request-id": [ - "f73865be-5693-4eea-af7a-808e59ca27da" + "8a15983a-4710-41e5-9d20-3c7ae7678970" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20191129T053150Z:f73865be-5693-4eea-af7a-808e59ca27da" + "SOUTHEASTASIA:20200921T070131Z:8a15983a-4710-41e5-9d20-3c7ae7678970" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1209,7 +1083,7 @@ "nosniff" ], "Date": [ - "Fri, 29 Nov 2019 05:31:50 GMT" + "Mon, 21 Sep 2020 07:01:30 GMT" ], "Expires": [ "-1" @@ -1222,16 +1096,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1T0RVdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE3OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUzT1RNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" ] }, "ResponseHeaders": { @@ -1242,7 +1116,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE3OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1251,13 +1125,13 @@ "11997" ], "x-ms-request-id": [ - "0553056c-2e44-4fa2-9b17-d987a62c9b37" + "0596cc8e-00b4-4671-ad3b-ec61e49c4530" ], "x-ms-correlation-request-id": [ - "0553056c-2e44-4fa2-9b17-d987a62c9b37" + "0596cc8e-00b4-4671-ad3b-ec61e49c4530" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20191129T053206Z:0553056c-2e44-4fa2-9b17-d987a62c9b37" + "SOUTHEASTASIA:20200921T070146Z:0596cc8e-00b4-4671-ad3b-ec61e49c4530" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1266,7 +1140,7 @@ "nosniff" ], "Date": [ - "Fri, 29 Nov 2019 05:32:05 GMT" + "Mon, 21 Sep 2020 07:01:46 GMT" ], "Expires": [ "-1" @@ -1279,16 +1153,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1T0RVdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE3OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUzT1RNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" ] }, "ResponseHeaders": { @@ -1298,23 +1172,17 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-request-id": [ - "de05b88e-0523-4eb8-a8a7-91bca80eab3d" + "9ddcb8c6-2fd7-45f4-bfc0-7f132611cc06" ], "x-ms-correlation-request-id": [ - "de05b88e-0523-4eb8-a8a7-91bca80eab3d" + "9ddcb8c6-2fd7-45f4-bfc0-7f132611cc06" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20191129T053221Z:de05b88e-0523-4eb8-a8a7-91bca80eab3d" + "SOUTHEASTASIA:20200921T070201Z:9ddcb8c6-2fd7-45f4-bfc0-7f132611cc06" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1323,7 +1191,7 @@ "nosniff" ], "Date": [ - "Fri, 29 Nov 2019 05:32:21 GMT" + "Mon, 21 Sep 2020 07:02:01 GMT" ], "Expires": [ "-1" @@ -1333,19 +1201,19 @@ ] }, "ResponseBody": "", - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1T0RVdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE3OTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUzT1RNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" ] }, "ResponseHeaders": { @@ -1355,524 +1223,17 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-request-id": [ - "02637ed1-d448-4cc5-ab60-7a686542e0f8" - ], - "x-ms-correlation-request-id": [ - "02637ed1-d448-4cc5-ab60-7a686542e0f8" - ], - "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20191129T053237Z:02637ed1-d448-4cc5-ab60-7a686542e0f8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 29 Nov 2019 05:32:36 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1T0RVdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-request-id": [ - "022194ff-d429-4eba-887f-f65c5b0d7a49" - ], - "x-ms-correlation-request-id": [ - "022194ff-d429-4eba-887f-f65c5b0d7a49" - ], - "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20191129T053252Z:022194ff-d429-4eba-887f-f65c5b0d7a49" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 29 Nov 2019 05:32:51 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1T0RVdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-request-id": [ - "513f3d1f-19bc-471d-a23f-674a612f1ad4" - ], - "x-ms-correlation-request-id": [ - "513f3d1f-19bc-471d-a23f-674a612f1ad4" - ], - "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20191129T053307Z:513f3d1f-19bc-471d-a23f-674a612f1ad4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 29 Nov 2019 05:33:06 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1T0RVdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "x-ms-request-id": [ - "6355bbb8-84bc-4ee9-930a-3282617254ce" - ], - "x-ms-correlation-request-id": [ - "6355bbb8-84bc-4ee9-930a-3282617254ce" - ], - "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20191129T053323Z:6355bbb8-84bc-4ee9-930a-3282617254ce" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 29 Nov 2019 05:33:23 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1T0RVdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "x-ms-request-id": [ - "8fe88f80-c91d-4e5a-b608-4c86690bc382" - ], - "x-ms-correlation-request-id": [ - "8fe88f80-c91d-4e5a-b608-4c86690bc382" - ], - "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20191129T053338Z:8fe88f80-c91d-4e5a-b608-4c86690bc382" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 29 Nov 2019 05:33:38 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1T0RVdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], - "x-ms-request-id": [ - "1cceb32e-4f98-4dee-8bf7-7e037b98ba98" - ], - "x-ms-correlation-request-id": [ - "1cceb32e-4f98-4dee-8bf7-7e037b98ba98" - ], - "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20191129T053354Z:1cceb32e-4f98-4dee-8bf7-7e037b98ba98" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 29 Nov 2019 05:33:53 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1T0RVdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" - ], - "x-ms-request-id": [ - "e271893d-4698-4c57-922d-17a6f9b07344" - ], - "x-ms-correlation-request-id": [ - "e271893d-4698-4c57-922d-17a6f9b07344" - ], - "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20191129T053409Z:e271893d-4698-4c57-922d-17a6f9b07344" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 29 Nov 2019 05:34:09 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1T0RVdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" - ], - "x-ms-request-id": [ - "9356304d-6a43-4e95-b5b8-c1bda954f050" - ], - "x-ms-correlation-request-id": [ - "9356304d-6a43-4e95-b5b8-c1bda954f050" - ], - "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20191129T053424Z:9356304d-6a43-4e95-b5b8-c1bda954f050" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 29 Nov 2019 05:34:24 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1T0RVdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" - ], - "x-ms-request-id": [ - "4ea00082-89a3-4405-9cdd-388c093d7e68" - ], - "x-ms-correlation-request-id": [ - "4ea00082-89a3-4405-9cdd-388c093d7e68" - ], - "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20191129T053440Z:4ea00082-89a3-4405-9cdd-388c093d7e68" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 29 Nov 2019 05:34:39 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5ODUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1T0RVdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" - ], - "x-ms-request-id": [ - "fc45a6a5-8d91-4ea8-837d-f7283a9d2299" + "db284fe1-2802-4d84-bf1b-db5dd788123d" ], "x-ms-correlation-request-id": [ - "fc45a6a5-8d91-4ea8-837d-f7283a9d2299" + "db284fe1-2802-4d84-bf1b-db5dd788123d" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20191129T053440Z:fc45a6a5-8d91-4ea8-837d-f7283a9d2299" + "SOUTHEASTASIA:20200921T070202Z:db284fe1-2802-4d84-bf1b-db5dd788123d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1881,7 +1242,7 @@ "nosniff" ], "Date": [ - "Fri, 29 Nov 2019 05:34:40 GMT" + "Mon, 21 Sep 2020 07:02:01 GMT" ], "Expires": [ "-1" @@ -1896,10 +1257,10 @@ ], "Names": { "Test-StorageBlobServiceProperties": [ - "pstestrg7985" + "pstestrg1793" ] }, "Variables": { - "SubscriptionId": "ce4a7590-4722-4bcf-a2c6-e473e9f11778" + "SubscriptionId": "45b60d85-fd72-427a-a708-f994d26e593e" } } \ No newline at end of file diff --git a/src/Storage/Storage.Management.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageFileTests/TestShareSoftDeletee.json b/src/Storage/Storage.Management.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageFileTests/TestShareSoftDeletee.json new file mode 100644 index 000000000000..73c81af6f3f2 --- /dev/null +++ b/src/Storage/Storage.Management.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageFileTests/TestShareSoftDeletee.json @@ -0,0 +1,1923 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "868a7e0f-b261-47ac-b440-23eee73e44eb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "74fe18d3-70c9-437c-ab6b-5dfe2057fab0" + ], + "x-ms-correlation-request-id": [ + "74fe18d3-70c9-437c-ab6b-5dfe2057fab0" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200907T092609Z:74fe18d3-70c9-437c-ab6b-5dfe2057fab0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 07 Sep 2020 09:26:09 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12336" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n {\r\n \"applicationId\": \"e406a681-f3d4-42a8-90b6-c2b029497af1\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourcegroups/pstestrg7539?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzUzOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4ae804f1-24e2-493b-8d07-fba30cac903b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-request-id": [ + "fd4aa7fc-b758-4fd3-90a3-5a7ddf82db9b" + ], + "x-ms-correlation-request-id": [ + "fd4aa7fc-b758-4fd3-90a3-5a7ddf82db9b" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200907T092612Z:fd4aa7fc-b758-4fd3-90a3-5a7ddf82db9b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 07 Sep 2020 09:26:11 GMT" + ], + "Content-Length": [ + "177" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539\",\r\n \"name\": \"pstestrg7539\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/checkNameAvailability?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"stopstestrg7539\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5508d23a-a28f-4e9c-b301-73156a09c6b5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.10.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "81" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "03f09ad0-f1b8-4f21-99f3-9ee576922920" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "e5286fbd-8885-4ad5-98d6-49752dc40b09" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200907T092613Z:e5286fbd-8885-4ad5-98d6-49752dc40b09" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 07 Sep 2020 09:26:12 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"nameAvailable\": true\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUzOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzUzOT9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e1905457-c0c3-49ea-b266-16d9c844978b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.10.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "99" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/westus/asyncoperations/95b5b623-0d1c-4f2c-b12b-27e18c17d06f?monitor=true&api-version=2019-06-01" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "95b5b623-0d1c-4f2c-b12b-27e18c17d06f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "32843e15-68be-4bc2-9451-86cda06779a3" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200907T092623Z:32843e15-68be-4bc2-9451-86cda06779a3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 07 Sep 2020 09:26:22 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/westus/asyncoperations/95b5b623-0d1c-4f2c-b12b-27e18c17d06f?monitor=true&api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdHVzL2FzeW5jb3BlcmF0aW9ucy85NWI1YjYyMy0wZDFjLTRmMmMtYjEyYi0yN2UxOGMxN2QwNmY/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.10.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d39c8b94-126e-4450-8521-8ddd5084d011" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "936c94ad-f507-4c4e-91cf-4e82d893e072" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200907T092640Z:936c94ad-f507-4c4e-91cf-4e82d893e072" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 07 Sep 2020 09:26:40 GMT" + ], + "Content-Length": [ + "1256" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539\",\r\n \"name\": \"stopstestrg7539\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-09-07T09:26:22.8625685Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-09-07T09:26:22.8625685Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-09-07T09:26:22.7688549Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg7539.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg7539.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg7539.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7539.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7539.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg7539.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUzOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzUzOT9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7e987b12-d656-41c1-91f9-bf04b66597a8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.10.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "90f8e19e-7844-489a-8466-55bb59856ed0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "e29af36a-1ed9-45f7-a0ec-8446a1634bd4" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200907T092641Z:e29af36a-1ed9-45f7-a0ec-8446a1634bd4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 07 Sep 2020 09:26:41 GMT" + ], + "Content-Length": [ + "1256" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539\",\r\n \"name\": \"stopstestrg7539\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-09-07T09:26:22.8625685Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-09-07T09:26:22.8625685Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-09-07T09:26:22.7688549Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg7539.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg7539.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg7539.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7539.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7539.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg7539.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUzOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9d3f5258-f120-4783-b714-04d7e40210cd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.10.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "91cc803b-49a3-4b96-bc2c-6b7aa4838b21" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "2a5a30a8-4b0c-432d-94c1-b7bff04c3e4a" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200907T092641Z:2a5a30a8-4b0c-432d-94c1-b7bff04c3e4a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 07 Sep 2020 09:26:41 GMT" + ], + "Content-Length": [ + "1268" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539\",\r\n \"name\": \"stopstestrg7539\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-09-07T09:26:22.8625685Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-09-07T09:26:22.8625685Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-09-07T09:26:22.7688549Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg7539.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg7539.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg7539.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7539.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7539.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg7539.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUzOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzUzOS9maWxlU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"shareDeleteRetentionPolicy\": {\r\n \"enabled\": true,\r\n \"days\": 5\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f91b4924-51ea-4229-85b8-085f3dd97072" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.10.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "113" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "166cdb6a-a1cc-40dd-a0a0-62bbed02dfcd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "1fdb61df-dd7e-4abd-bc6e-a219dabab7dc" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200907T092642Z:1fdb61df-dd7e-4abd-bc6e-a219dabab7dc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 07 Sep 2020 09:26:42 GMT" + ], + "Content-Length": [ + "312" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices\",\r\n \"properties\": {\r\n \"shareDeleteRetentionPolicy\": {\r\n \"enabled\": true,\r\n \"days\": 5\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUzOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzUzOS9maWxlU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"shareDeleteRetentionPolicy\": {\r\n \"enabled\": false\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4320622a-7def-4186-98eb-b5f520783b06" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.10.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "96" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "29356e8c-a1d8-4a5e-8990-2e45671e72aa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "7fb618ed-9259-4d51-9845-df7ca4029341" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200907T092748Z:7fb618ed-9259-4d51-9845-df7ca4029341" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 07 Sep 2020 09:27:48 GMT" + ], + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices\",\r\n \"properties\": {\r\n \"shareDeleteRetentionPolicy\": {\r\n \"enabled\": false\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUzOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzUzOS9maWxlU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "991602d8-a31c-4c67-a052-90ac2181546c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.10.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ed4c2668-8128-40d6-96b7-64b74b4ed5d3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "96efb748-2d76-48dd-ad82-949d5f5a764e" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200907T092642Z:96efb748-2d76-48dd-ad82-949d5f5a764e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 07 Sep 2020 09:26:42 GMT" + ], + "Content-Length": [ + "446" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices\",\r\n \"properties\": {\r\n \"protocolSettings\": {\r\n \"smb\": {\r\n \"multichannel\": {\r\n \"enabled\": false\r\n }\r\n }\r\n },\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"shareDeleteRetentionPolicy\": {\r\n \"enabled\": true,\r\n \"days\": 5\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUzOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzUzOS9maWxlU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c89cfaed-a90c-4656-a18d-e58b6758b437" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.10.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f0582e99-8b16-427f-82af-9921ea9c1ec3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "695d7642-fb04-4925-922f-ce2881e623fd" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200907T092642Z:695d7642-fb04-4925-922f-ce2881e623fd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 07 Sep 2020 09:26:42 GMT" + ], + "Content-Length": [ + "446" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices\",\r\n \"properties\": {\r\n \"protocolSettings\": {\r\n \"smb\": {\r\n \"multichannel\": {\r\n \"enabled\": false\r\n }\r\n }\r\n },\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"shareDeleteRetentionPolicy\": {\r\n \"enabled\": true,\r\n \"days\": 5\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUzOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzUzOS9maWxlU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2589a13f-be4d-4a32-913d-3ed1ff50776d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.10.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3a035d5e-50fa-403e-aa5a-b37cd012f3ca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "67939ba5-2364-42dc-b9d3-e08868feb451" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200907T092748Z:67939ba5-2364-42dc-b9d3-e08868feb451" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 07 Sep 2020 09:27:48 GMT" + ], + "Content-Length": [ + "447" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices\",\r\n \"properties\": {\r\n \"protocolSettings\": {\r\n \"smb\": {\r\n \"multichannel\": {\r\n \"enabled\": false\r\n }\r\n }\r\n },\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"shareDeleteRetentionPolicy\": {\r\n \"enabled\": false,\r\n \"days\": 0\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUzOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzUzOS9maWxlU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "72563395-6d3c-4369-b3b7-665be440fc69" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.10.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7f8c8766-9bcc-4ca1-8475-ed7d7f997601" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "78d63e9e-4eeb-462a-a937-6085ab3e3bb0" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200907T092749Z:78d63e9e-4eeb-462a-a937-6085ab3e3bb0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 07 Sep 2020 09:27:48 GMT" + ], + "Content-Length": [ + "447" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices\",\r\n \"properties\": {\r\n \"protocolSettings\": {\r\n \"smb\": {\r\n \"multichannel\": {\r\n \"enabled\": false\r\n }\r\n }\r\n },\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"shareDeleteRetentionPolicy\": {\r\n \"enabled\": false,\r\n \"days\": 0\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default/shares/share1pstestrg7539?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUzOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzUzOS9maWxlU2VydmljZXMvZGVmYXVsdC9zaGFyZXMvc2hhcmUxcHN0ZXN0cmc3NTM5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4117dfba-2fc8-4d91-b417-1914d0291e7c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.10.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"0x8D85310223A963B\"" + ], + "x-ms-request-id": [ + "3fdf2a44-16ea-4d12-994a-9f41d852e245" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "c6c958a7-2267-4cec-9e3d-4ae79c3d6798" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200907T092643Z:c6c958a7-2267-4cec-9e3d-4ae79c3d6798" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 07 Sep 2020 09:26:43 GMT" + ], + "Content-Length": [ + "286" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default/shares/share1pstestrg7539\",\r\n \"name\": \"share1pstestrg7539\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default/shares/share1pstestrg7539?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUzOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzUzOS9maWxlU2VydmljZXMvZGVmYXVsdC9zaGFyZXMvc2hhcmUxcHN0ZXN0cmc3NTM5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58bec81e-6400-4f0b-b175-11ccbe4248dc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.10.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"0x8D85310223A963B\"" + ], + "x-ms-request-id": [ + "00397194-e868-4a4f-9b7c-f9669d9f8422" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "920098dd-519e-48ef-8b11-f06104e39642" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200907T092643Z:920098dd-519e-48ef-8b11-f06104e39642" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 07 Sep 2020 09:26:43 GMT" + ], + "Content-Length": [ + "436" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default/shares/share1pstestrg7539\",\r\n \"name\": \"share1pstestrg7539\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\",\r\n \"etag\": \"\\\"0x8D85310223A963B\\\"\",\r\n \"properties\": {\r\n \"accessTier\": \"TransactionOptimized\",\r\n \"lastModifiedTime\": \"2020-09-07T09:26:43Z\",\r\n \"shareQuota\": 5120\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default/shares/share1pstestrg7539?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUzOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzUzOS9maWxlU2VydmljZXMvZGVmYXVsdC9zaGFyZXMvc2hhcmUxcHN0ZXN0cmc3NTM5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d15edb77-dee7-4921-abb3-4f37e27841ea" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.10.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"0x8D8531047EDC9CC\"" + ], + "x-ms-request-id": [ + "afa2d739-0db3-44ed-acb0-e9fd4faed33e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "61c2f7f6-def6-4c36-a6c4-58c4f5af0e3d" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200907T092746Z:61c2f7f6-def6-4c36-a6c4-58c4f5af0e3d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 07 Sep 2020 09:27:46 GMT" + ], + "Content-Length": [ + "436" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default/shares/share1pstestrg7539\",\r\n \"name\": \"share1pstestrg7539\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\",\r\n \"etag\": \"\\\"0x8D8531047EDC9CC\\\"\",\r\n \"properties\": {\r\n \"accessTier\": \"TransactionOptimized\",\r\n \"lastModifiedTime\": \"2020-09-07T09:27:46Z\",\r\n \"shareQuota\": 5120\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default/shares/share2pstestrg7539?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUzOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzUzOS9maWxlU2VydmljZXMvZGVmYXVsdC9zaGFyZXMvc2hhcmUycHN0ZXN0cmc3NTM5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "53e5e272-b338-456f-80b4-6ee61885c48e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.10.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"0x8D8531022C4ECF5\"" + ], + "x-ms-request-id": [ + "979bea62-8557-43a2-9c56-a66bbdd50254" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "bfc1fd2c-d690-47bd-8a75-102976d45798" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200907T092644Z:bfc1fd2c-d690-47bd-8a75-102976d45798" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 07 Sep 2020 09:26:44 GMT" + ], + "Content-Length": [ + "286" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default/shares/share2pstestrg7539\",\r\n \"name\": \"share2pstestrg7539\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default/shares/share1pstestrg7539?api-version=2019-06-01&$expand=stats", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUzOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzUzOS9maWxlU2VydmljZXMvZGVmYXVsdC9zaGFyZXMvc2hhcmUxcHN0ZXN0cmc3NTM5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEmJGV4cGFuZD1zdGF0cw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "277b571a-5d1f-430c-9686-bff9e4595a74" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.10.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"0x8D85310223A963B\"" + ], + "x-ms-request-id": [ + "f38844e4-6ae7-4f24-a625-62673f000e1c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "36130b96-aa10-4c35-8291-5e73fcaafd66" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200907T092644Z:36130b96-aa10-4c35-8291-5e73fcaafd66" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 07 Sep 2020 09:26:44 GMT" + ], + "Content-Length": [ + "456" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default/shares/share1pstestrg7539\",\r\n \"name\": \"share1pstestrg7539\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\",\r\n \"etag\": \"\\\"0x8D85310223A963B\\\"\",\r\n \"properties\": {\r\n \"shareUsageBytes\": 0,\r\n \"accessTier\": \"TransactionOptimized\",\r\n \"lastModifiedTime\": \"2020-09-07T09:26:43Z\",\r\n \"shareQuota\": 5120\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default/shares/share1pstestrg7539?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUzOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzUzOS9maWxlU2VydmljZXMvZGVmYXVsdC9zaGFyZXMvc2hhcmUxcHN0ZXN0cmc3NTM5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b886fa31-25cb-4588-833a-6d094e9a26c2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.10.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f9de0845-0285-4b23-8620-dcb8595da94b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "37881bda-8b9e-431a-b846-a4625f70eb7b" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200907T092644Z:37881bda-8b9e-431a-b846-a4625f70eb7b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 07 Sep 2020 09:26:44 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default/shares?api-version=2019-06-01&$expand=deleted", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUzOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzUzOS9maWxlU2VydmljZXMvZGVmYXVsdC9zaGFyZXM/YXBpLXZlcnNpb249MjAxOS0wNi0wMSYkZXhwYW5kPWRlbGV0ZWQ=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88ddcba3-d1f6-4eb1-8498-22bb371300be" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.10.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3f29397f-c74a-4ff7-9e5c-0d6a909b994e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "b2bb7284-ec03-46ba-9454-0b649a2dcc76" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200907T092645Z:b2bb7284-ec03-46ba-9454-0b649a2dcc76" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 07 Sep 2020 09:26:45 GMT" + ], + "Content-Length": [ + "1069" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default/shares/share1pstestrg7539_01D684F8FFB4EDA9\",\r\n \"name\": \"share1pstestrg7539\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\",\r\n \"etag\": \"\\\"0x8D85310223A963B\\\"\",\r\n \"properties\": {\r\n \"version\": \"01D684F8FFB4EDA9\",\r\n \"deleted\": true,\r\n \"deletedTime\": \"Mon, 07 Sep 2020 09:26:44 GMT\",\r\n \"remainingRetentionDays\": 5,\r\n \"accessTier\": \"TransactionOptimized\",\r\n \"lastModifiedTime\": \"2020-09-07T09:26:43Z\",\r\n \"shareQuota\": 5120,\r\n \"enabledProtocols\": \"SMB\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default/shares/share2pstestrg7539\",\r\n \"name\": \"share2pstestrg7539\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\",\r\n \"etag\": \"\\\"0x8D8531022C4ECF5\\\"\",\r\n \"properties\": {\r\n \"accessTier\": \"TransactionOptimized\",\r\n \"lastModifiedTime\": \"2020-09-07T09:26:44Z\",\r\n \"shareQuota\": 5120,\r\n \"enabledProtocols\": \"SMB\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default/shares?api-version=2019-06-01&$expand=deleted", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUzOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzUzOS9maWxlU2VydmljZXMvZGVmYXVsdC9zaGFyZXM/YXBpLXZlcnNpb249MjAxOS0wNi0wMSYkZXhwYW5kPWRlbGV0ZWQ=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "52b41e7c-dcc6-40e6-9349-de04922d5267" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.10.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ca755ff2-d625-4e75-ba81-21c883b11e56" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "7e2da05c-1f48-4eb9-9ccb-de7ce3f742ea" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200907T092747Z:7e2da05c-1f48-4eb9-9ccb-de7ce3f742ea" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 07 Sep 2020 09:27:47 GMT" + ], + "Content-Length": [ + "935" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default/shares/share1pstestrg7539\",\r\n \"name\": \"share1pstestrg7539\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\",\r\n \"etag\": \"\\\"0x8D8531047EDC9CC\\\"\",\r\n \"properties\": {\r\n \"accessTier\": \"TransactionOptimized\",\r\n \"lastModifiedTime\": \"2020-09-07T09:27:46Z\",\r\n \"shareQuota\": 5120,\r\n \"enabledProtocols\": \"SMB\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default/shares/share2pstestrg7539\",\r\n \"name\": \"share2pstestrg7539\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\",\r\n \"etag\": \"\\\"0x8D8531022C4ECF5\\\"\",\r\n \"properties\": {\r\n \"accessTier\": \"TransactionOptimized\",\r\n \"lastModifiedTime\": \"2020-09-07T09:26:44Z\",\r\n \"shareQuota\": 5120,\r\n \"enabledProtocols\": \"SMB\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default/shares?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUzOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzUzOS9maWxlU2VydmljZXMvZGVmYXVsdC9zaGFyZXM/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7d1ed2f3-abbd-4d12-aab3-d9de4af85732" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.10.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c3e1bc5b-072d-4e83-851e-826c23ad5fd3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "18ea8f3a-bf09-46be-8b28-62ebfdd112e0" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200907T092645Z:18ea8f3a-bf09-46be-8b28-62ebfdd112e0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 07 Sep 2020 09:26:45 GMT" + ], + "Content-Length": [ + "473" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default/shares/share2pstestrg7539\",\r\n \"name\": \"share2pstestrg7539\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\",\r\n \"etag\": \"\\\"0x8D8531022C4ECF5\\\"\",\r\n \"properties\": {\r\n \"accessTier\": \"TransactionOptimized\",\r\n \"lastModifiedTime\": \"2020-09-07T09:26:44Z\",\r\n \"shareQuota\": 5120,\r\n \"enabledProtocols\": \"SMB\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default/shares?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUzOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzUzOS9maWxlU2VydmljZXMvZGVmYXVsdC9zaGFyZXM/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a38937f1-c51a-4fff-9071-0e07d2d52ac4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.10.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0fceef2f-dfbf-400a-a346-d89812cb513a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "06892c6f-d6c5-4cd6-93b7-fb99903f6c3d" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200907T092747Z:06892c6f-d6c5-4cd6-93b7-fb99903f6c3d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 07 Sep 2020 09:27:47 GMT" + ], + "Content-Length": [ + "935" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default/shares/share1pstestrg7539\",\r\n \"name\": \"share1pstestrg7539\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\",\r\n \"etag\": \"\\\"0x8D8531047EDC9CC\\\"\",\r\n \"properties\": {\r\n \"accessTier\": \"TransactionOptimized\",\r\n \"lastModifiedTime\": \"2020-09-07T09:27:46Z\",\r\n \"shareQuota\": 5120,\r\n \"enabledProtocols\": \"SMB\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default/shares/share2pstestrg7539\",\r\n \"name\": \"share2pstestrg7539\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\",\r\n \"etag\": \"\\\"0x8D8531022C4ECF5\\\"\",\r\n \"properties\": {\r\n \"accessTier\": \"TransactionOptimized\",\r\n \"lastModifiedTime\": \"2020-09-07T09:26:44Z\",\r\n \"shareQuota\": 5120,\r\n \"enabledProtocols\": \"SMB\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default/shares/share1pstestrg7539/restore?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUzOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzUzOS9maWxlU2VydmljZXMvZGVmYXVsdC9zaGFyZXMvc2hhcmUxcHN0ZXN0cmc3NTM5L3Jlc3RvcmU/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"deletedShareName\": \"share1pstestrg7539\",\r\n \"deletedShareVersion\": \"01D684F8FFB4EDA9\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "20adc5e6-2b6e-4468-824c-680ead638ea8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.10.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "94" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5b2a59e6-035a-4e7f-9725-bb251934cbb2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "e14ff566-b245-44ec-b69c-959cb3a4fe83" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200907T092746Z:e14ff566-b245-44ec-b69c-959cb3a4fe83" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 07 Sep 2020 09:27:46 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUzOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzUzOT9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "90c15f8c-3168-4cd5-9421-2577560aa3b2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.10.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8d142720-9f4d-4bd0-9f50-9becece4dda8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "18fc40e2-71d5-4a51-aadf-7876c96ca954" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200907T092755Z:18fc40e2-71d5-4a51-aadf-7876c96ca954" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 07 Sep 2020 09:27:55 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourcegroups/pstestrg7539?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzUzOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58d0ca08-064a-42ba-9367-acac41c30700" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc1MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14996" + ], + "x-ms-request-id": [ + "14e257e1-9056-40f2-a980-2d9500af7bc6" + ], + "x-ms-correlation-request-id": [ + "14e257e1-9056-40f2-a980-2d9500af7bc6" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200907T092758Z:14e257e1-9056-40f2-a980-2d9500af7bc6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 07 Sep 2020 09:27:58 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc1MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemMxTXprdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc1MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-request-id": [ + "a214b62d-b4cf-4819-a014-79c70d0d60fc" + ], + "x-ms-correlation-request-id": [ + "a214b62d-b4cf-4819-a014-79c70d0d60fc" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200907T092813Z:a214b62d-b4cf-4819-a014-79c70d0d60fc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 07 Sep 2020 09:28:13 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc1MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemMxTXprdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc1MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-request-id": [ + "da56d507-221f-463f-af6d-e7dec308d39a" + ], + "x-ms-correlation-request-id": [ + "da56d507-221f-463f-af6d-e7dec308d39a" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200907T092829Z:da56d507-221f-463f-af6d-e7dec308d39a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 07 Sep 2020 09:28:28 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc1MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemMxTXprdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-request-id": [ + "d0a0bf61-e3ff-4164-837f-f5b302cdcbf2" + ], + "x-ms-correlation-request-id": [ + "d0a0bf61-e3ff-4164-837f-f5b302cdcbf2" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200907T092844Z:d0a0bf61-e3ff-4164-837f-f5b302cdcbf2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 07 Sep 2020 09:28:44 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc1MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemMxTXprdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-request-id": [ + "62afd1a0-b0da-428c-8966-21d04d8504a5" + ], + "x-ms-correlation-request-id": [ + "62afd1a0-b0da-428c-8966-21d04d8504a5" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200907T092845Z:62afd1a0-b0da-428c-8966-21d04d8504a5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 07 Sep 2020 09:28:44 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-ShareSoftDelete": [ + "pstestrg7539" + ] + }, + "Variables": { + "SubscriptionId": "45b60d85-fd72-427a-a708-f994d26e593e" + } +} \ No newline at end of file diff --git a/src/Storage/Storage.Management/Az.Storage.psd1 b/src/Storage/Storage.Management/Az.Storage.psd1 index 52f12e4fa3b0..e2009ec2638e 100644 --- a/src/Storage/Storage.Management/Az.Storage.psd1 +++ b/src/Storage/Storage.Management/Az.Storage.psd1 @@ -161,6 +161,8 @@ CmdletsToExport = 'Get-AzStorageAccount', 'Get-AzStorageAccountKey', 'Get-AzStorageFileHandle', 'Close-AzStorageFileHandle', 'New-AzRmStorageShare', 'Remove-AzRmStorageShare', 'Get-AzRmStorageShare', 'Update-AzRmStorageShare', + 'Update-AzStorageFileServiceProperty', + 'Get-AzStorageFileServiceProperty', 'Restore-AzRmStorageShare', 'Get-AzDataLakeGen2ChildItem', 'Get-AzDataLakeGen2Item', 'New-AzDataLakeGen2Item', 'Move-AzDataLakeGen2Item', 'Remove-AzDataLakeGen2Item', 'Update-AzDataLakeGen2Item', diff --git a/src/Storage/Storage.Management/Blob/DisableAzureStorageBlobDeleteRetentionPolicy.cs b/src/Storage/Storage.Management/Blob/DisableAzureStorageBlobDeleteRetentionPolicy.cs index 1629e132bbfc..4168d535c5b7 100644 --- a/src/Storage/Storage.Management/Blob/DisableAzureStorageBlobDeleteRetentionPolicy.cs +++ b/src/Storage/Storage.Management/Blob/DisableAzureStorageBlobDeleteRetentionPolicy.cs @@ -103,8 +103,9 @@ public override void ExecuteCmdlet() // For AccountNameParameterSet, the ResourceGroupName and StorageAccountName can get from input directly break; } - BlobServiceProperties serviceProperties = this.StorageClient.BlobServices.GetServiceProperties( this.ResourceGroupName, this.StorageAccountName); + BlobServiceProperties serviceProperties = new BlobServiceProperties(); + serviceProperties.DeleteRetentionPolicy = new DeleteRetentionPolicy(); serviceProperties.DeleteRetentionPolicy.Enabled = false; serviceProperties.DeleteRetentionPolicy.Days = null; diff --git a/src/Storage/Storage.Management/Blob/DisableAzureStorageBlobRestorePolicy.cs b/src/Storage/Storage.Management/Blob/DisableAzureStorageBlobRestorePolicy.cs index 2eea05a6826c..8a4ad86f9bbb 100644 --- a/src/Storage/Storage.Management/Blob/DisableAzureStorageBlobRestorePolicy.cs +++ b/src/Storage/Storage.Management/Blob/DisableAzureStorageBlobRestorePolicy.cs @@ -105,7 +105,7 @@ public override void ExecuteCmdlet() // For AccountNameParameterSet, the ResourceGroupName and StorageAccountName can get from input directly break; } - BlobServiceProperties serviceProperties = this.StorageClient.BlobServices.GetServiceProperties( this.ResourceGroupName, this.StorageAccountName); + BlobServiceProperties serviceProperties = new BlobServiceProperties(); serviceProperties.RestorePolicy = new RestorePolicyProperties(); serviceProperties.RestorePolicy.Enabled = false; diff --git a/src/Storage/Storage.Management/Blob/EnableAzureStorageBlobDeleteRetentionPolicy.cs b/src/Storage/Storage.Management/Blob/EnableAzureStorageBlobDeleteRetentionPolicy.cs index 616aca7cf46a..792ede40e6ad 100644 --- a/src/Storage/Storage.Management/Blob/EnableAzureStorageBlobDeleteRetentionPolicy.cs +++ b/src/Storage/Storage.Management/Blob/EnableAzureStorageBlobDeleteRetentionPolicy.cs @@ -107,8 +107,9 @@ public override void ExecuteCmdlet() // For AccountNameParameterSet, the ResourceGroupName and StorageAccountName can get from input directly break; } - BlobServiceProperties serviceProperties = this.StorageClient.BlobServices.GetServiceProperties( this.ResourceGroupName, this.StorageAccountName); + BlobServiceProperties serviceProperties = new BlobServiceProperties(); + serviceProperties.DeleteRetentionPolicy = new DeleteRetentionPolicy(); serviceProperties.DeleteRetentionPolicy.Enabled = true; serviceProperties.DeleteRetentionPolicy.Days = RetentionDays; diff --git a/src/Storage/Storage.Management/Blob/EnableAzureStorageBlobRestorePolicy.cs b/src/Storage/Storage.Management/Blob/EnableAzureStorageBlobRestorePolicy.cs index b119c1412e64..1dff60b2da9a 100644 --- a/src/Storage/Storage.Management/Blob/EnableAzureStorageBlobRestorePolicy.cs +++ b/src/Storage/Storage.Management/Blob/EnableAzureStorageBlobRestorePolicy.cs @@ -109,7 +109,7 @@ public override void ExecuteCmdlet() // For AccountNameParameterSet, the ResourceGroupName and StorageAccountName can get from input directly break; } - BlobServiceProperties serviceProperties = this.StorageClient.BlobServices.GetServiceProperties( this.ResourceGroupName, this.StorageAccountName); + BlobServiceProperties serviceProperties = new BlobServiceProperties(); serviceProperties.RestorePolicy = new RestorePolicyProperties(); serviceProperties.RestorePolicy.Enabled = true; diff --git a/src/Storage/Storage.Management/Blob/UpdateAzureStorageBlobServiceProperties.cs b/src/Storage/Storage.Management/Blob/UpdateAzureStorageBlobServiceProperties.cs index 6502f136e95b..9034423ee85f 100644 --- a/src/Storage/Storage.Management/Blob/UpdateAzureStorageBlobServiceProperties.cs +++ b/src/Storage/Storage.Management/Blob/UpdateAzureStorageBlobServiceProperties.cs @@ -139,9 +139,7 @@ public override void ExecuteCmdlet() // For AccountNameParameterSet, the ResourceGroupName and StorageAccountName can get from input directly break; } - BlobServiceProperties serviceProperties = null; - - serviceProperties = this.StorageClient.BlobServices.GetServiceProperties(this.ResourceGroupName, this.StorageAccountName); + BlobServiceProperties serviceProperties = new BlobServiceProperties(); if (DefaultServiceVersion != null) { @@ -159,6 +157,9 @@ public override void ExecuteCmdlet() serviceProperties = this.StorageClient.BlobServices.SetServiceProperties(this.ResourceGroupName, this.StorageAccountName, serviceProperties); + //Get the full service properties for output + serviceProperties = this.StorageClient.BlobServices.GetServiceProperties(this.ResourceGroupName, this.StorageAccountName); + WriteObject(new PSBlobServiceProperties(serviceProperties)); } } diff --git a/src/Storage/Storage.Management/ChangeLog.md b/src/Storage/Storage.Management/ChangeLog.md index 91a59353ba25..69cff4753812 100644 --- a/src/Storage/Storage.Management/ChangeLog.md +++ b/src/Storage/Storage.Management/ChangeLog.md @@ -18,6 +18,21 @@ - Additional information about change #1 --> ## Upcoming Release +* Supported enable/disable/get share soft delete properties on file Service of a Storage account + - `Update-AzStorageFileServiceProperty` + - `Get-AzStorageFileServiceProperty` +* Supported list file shares include the deleted ones of a Storage account, and Get single file share usage + - `Get-AzRmStorageShare` +* Supported restore a deleted file share + - `Restore-AzRmStorageShare` +* Changed the cmdlets for modify blob service properties, won't get the orginal properties from server, but only set the modified properties to server. + - `Enable-AzStorageBlobDeleteRetentionPolicy` + - `Disable-AzStorageBlobDeleteRetentionPolicy` + - `Enable-AzStorageBlobRestorePolicy` + - `Disable-AzStorageBlobRestorePolicy` + - `Update-AzStorageBlobServiceProperty` +* Fixed help issue for New-AzStorageAccount parameter -Kind default value [#12189] +* Fixed issue by add example to show how to set correct ContentType in blob upload [#12989] ## Version 2.6.0 * Fixed upload blob fail by upgrade to Microsoft.Azure.Storage.DataMovement 2.0.0 [#12220] diff --git a/src/Storage/Storage.Management/File/GetAzStorageFileServiceProperty.cs b/src/Storage/Storage.Management/File/GetAzStorageFileServiceProperty.cs new file mode 100644 index 000000000000..a41ff1afba87 --- /dev/null +++ b/src/Storage/Storage.Management/File/GetAzStorageFileServiceProperty.cs @@ -0,0 +1,106 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.Management.Storage +{ + using Microsoft.Azure.Commands.Management.Storage.Models; + using Microsoft.Azure.Management.Storage; + using Microsoft.Azure.Management.Storage.Models; + using System; + using System.Collections.Generic; + using System.Management.Automation; + using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; + using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; + + /// + /// Modify Azure Storage service properties + /// + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + StorageFileServiceProperty, DefaultParameterSetName = AccountNameParameterSet), OutputType(typeof(PSFileServiceProperties))] + public class GetAzStorageFileServicePropertyCommand : StorageFileBaseCmdlet + { + + /// + /// AccountName Parameter Set + /// + private const string AccountNameParameterSet = "AccountName"; + + /// + /// Account object parameter set + /// + private const string AccountObjectParameterSet = "AccountObject"; + + /// + /// BlobServiceProperties ResourceId parameter set + /// + private const string PropertiesResourceIdParameterSet = "FileServicePropertiesResourceId"; + + [Parameter( + Position = 0, + Mandatory = true, + HelpMessage = "Resource Group Name.", + ParameterSetName = AccountNameParameterSet)] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter( + Position = 1, + Mandatory = true, + HelpMessage = "Storage Account Name.", + ParameterSetName = AccountNameParameterSet)] + [ResourceNameCompleter("Microsoft.Storage/storageAccounts", nameof(ResourceGroupName))] + [Alias(AccountNameAlias, NameAlias)] + [ValidateNotNullOrEmpty] + public string StorageAccountName { get; set; } + + [Parameter(Mandatory = true, + HelpMessage = "Storage account object", + ValueFromPipeline = true, + ParameterSetName = AccountObjectParameterSet)] + [ValidateNotNullOrEmpty] + public PSStorageAccount StorageAccount { get; set; } + + [Parameter( + Position = 0, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "Input a Storage account Resource Id, or a File service properties Resource Id.", + ParameterSetName = PropertiesResourceIdParameterSet)] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + switch (ParameterSetName) + { + case AccountObjectParameterSet: + this.ResourceGroupName = StorageAccount.ResourceGroupName; + this.StorageAccountName = StorageAccount.StorageAccountName; + break; + case PropertiesResourceIdParameterSet: + ResourceIdentifier blobServicePropertiesResource = new ResourceIdentifier(ResourceId); + this.ResourceGroupName = blobServicePropertiesResource.ResourceGroupName; + this.StorageAccountName = PSBlobServiceProperties.GetStorageAccountNameFromResourceId(ResourceId); + break; + default: + // For AccountNameParameterSet, the ResourceGroupName and StorageAccountName can get from input directly + break; + } + FileServiceProperties serviceProperties = this.StorageClient.FileServices.GetServiceProperties(this.ResourceGroupName, this.StorageAccountName); + + WriteObject(new PSFileServiceProperties(serviceProperties)); + } + } +} diff --git a/src/Storage/Storage.Management/File/GetAzureStorageShare.cs b/src/Storage/Storage.Management/File/GetAzureStorageShare.cs index 1a02d6bae25c..5d01111da04a 100644 --- a/src/Storage/Storage.Management/File/GetAzureStorageShare.cs +++ b/src/Storage/Storage.Management/File/GetAzureStorageShare.cs @@ -110,7 +110,6 @@ public class GetAzureStorageShareCommand : StorageFileBaseCmdlet ParameterSetName = ShareResourceIdParameterSet)] public string Name { get; set; } - [Parameter(HelpMessage = "Specify this parameter to get the Share Usage in Bytes.", Mandatory = false, ParameterSetName = AccountObjectSingleParameterSet)] @@ -121,6 +120,14 @@ public class GetAzureStorageShareCommand : StorageFileBaseCmdlet Mandatory = false, ParameterSetName = ShareResourceIdParameterSet)] public SwitchParameter GetShareUsage { get; set; } + + [Parameter(Mandatory = false, + HelpMessage = "Include deleted shares, by default list shares won't include deleted shares", + ParameterSetName = AccountNameParameterSet)] + [Parameter(Mandatory = false, + HelpMessage = "Include deleted shares, by default list shares won't include deleted shares", + ParameterSetName = AccountObjectParameterSet)] + public SwitchParameter IncludeDeleted { get; set; } public override void ExecuteCmdlet() { @@ -164,9 +171,15 @@ public override void ExecuteCmdlet() } else { + ListSharesExpand? listSharesExpand = null; + if (this.IncludeDeleted.IsPresent) + { + listSharesExpand = ListSharesExpand.Deleted; + } IPage shares = this.StorageClient.FileShares.List( this.ResourceGroupName, - this.StorageAccountName); + this.StorageAccountName, + expand: listSharesExpand); WriteShareList(shares); while (shares.NextPageLink != null) { diff --git a/src/Storage/Storage.Management/File/RestoreAzureStorageShare.cs b/src/Storage/Storage.Management/File/RestoreAzureStorageShare.cs new file mode 100644 index 000000000000..a0f9ce06316d --- /dev/null +++ b/src/Storage/Storage.Management/File/RestoreAzureStorageShare.cs @@ -0,0 +1,143 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.Management.Storage.Models; +using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; +using Microsoft.Azure.Management.Storage; +using Microsoft.Azure.Management.Storage.Models; +using System; +using System.Collections; +using System.Collections.Generic; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.Management.Storage +{ + [Cmdlet("Restore", ResourceManager.Common.AzureRMConstants.AzureRMStoragePrefix + StorageShareNounStr, DefaultParameterSetName = AccountNameParameterSet, SupportsShouldProcess = true), OutputType(typeof(PSShare))] + public class RestoreAzureStorageShareCommand : StorageFileBaseCmdlet + { + /// + /// AccountName Parameter Set + /// + private const string AccountNameParameterSet = "AccountName"; + + /// + /// Account object parameter set + /// + private const string AccountObjectParameterSet = "AccountObject"; + + /// + /// ShareObject Parameter Set + /// + private const string ShareObjectParameterSet = "ShareObject"; + + [Parameter( + Position = 0, + Mandatory = true, + HelpMessage = "Resource Group Name.", + ParameterSetName = AccountNameParameterSet)] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter( + Position = 1, + Mandatory = true, + HelpMessage = "Storage Account Name.", + ParameterSetName = AccountNameParameterSet)] + [Alias(AccountNameAlias)] + [ValidateNotNullOrEmpty] + public string StorageAccountName { get; set; } + + //[Parameter(Mandatory = false, + // HelpMessage = "Target share Name, which will be restored to.")] + //public string ShareName { get; set; } + + [Parameter(Mandatory = true, + HelpMessage = "Storage account object", + ValueFromPipeline = true, + ParameterSetName = AccountObjectParameterSet)] + [ValidateNotNullOrEmpty] + public PSStorageAccount StorageAccount { get; set; } + + [Alias("Share")] + [Parameter(Mandatory = true, + HelpMessage = "Deleted Share object, which will be restored", + ValueFromPipeline = true, + ParameterSetName = ShareObjectParameterSet)] + [ValidateNotNullOrEmpty] + public PSShare InputObject { get; set; } + + [Alias("N", "ShareName")] + [Parameter(Mandatory = true, + HelpMessage = "Deleted Share Name, which will be restored.", + ParameterSetName = AccountNameParameterSet)] + [Parameter(Mandatory = true, + HelpMessage = "Deleted Share Name, which will be restored.", + ParameterSetName = AccountObjectParameterSet)] + public string Name { get; set; } + + [Parameter(Mandatory = true, + HelpMessage = "Deleted Share Version, which will be restored from.", + ParameterSetName = AccountNameParameterSet)] + [Parameter(Mandatory = true, + HelpMessage = "Deleted Share Version, which will be restored from.", + ParameterSetName = AccountObjectParameterSet)] + public string DeletedShareVersion { get; set; } + + //[Parameter(Mandatory = false)] + // public SwitchParameter PassThru { get; set; } + + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + switch (ParameterSetName) + { + case ShareObjectParameterSet: + if(InputObject.Deleted != true) + { + throw new ArithmeticException(string.Format("The input share {0} is not deleted, so can't restore.", this.InputObject.Name)); + } + this.ResourceGroupName = InputObject.ResourceGroupName; + this.StorageAccountName = InputObject.StorageAccountName; + this.Name = InputObject.Name; + this.DeletedShareVersion = InputObject.Version; + break; + case AccountObjectParameterSet: + this.ResourceGroupName = StorageAccount.ResourceGroupName; + this.StorageAccountName = StorageAccount.StorageAccountName; + break; + default: + break; + } + + if (ShouldProcess(this.Name, "Restore Share")) + { + this.StorageClient.FileShares.Restore( + this.ResourceGroupName, + this.StorageAccountName, + this.Name, + this.Name, + this.DeletedShareVersion); + + + var Share = this.StorageClient.FileShares.Get( + this.ResourceGroupName, + this.StorageAccountName, + this.Name); + WriteObject(new PSShare(Share)); + } + } + } +} diff --git a/src/Storage/Storage.Management/File/StorageFileBaseCmdlet.cs b/src/Storage/Storage.Management/File/StorageFileBaseCmdlet.cs index 843996235d62..e5f87cbcc22f 100644 --- a/src/Storage/Storage.Management/File/StorageFileBaseCmdlet.cs +++ b/src/Storage/Storage.Management/File/StorageFileBaseCmdlet.cs @@ -32,6 +32,7 @@ public abstract class StorageFileBaseCmdlet : AzureRMCmdlet protected const string NameAlias = "Name"; protected const string StorageShareNounStr = "StorageShare"; + protected const string StorageFileServiceProperty = "StorageFileServiceProperty"; public const string StorageAccountResourceType = "Microsoft.Storage/storageAccounts"; diff --git a/src/Storage/Storage.Management/File/UpdateAzAzStorageFileServiceProperty.cs b/src/Storage/Storage.Management/File/UpdateAzAzStorageFileServiceProperty.cs new file mode 100644 index 000000000000..b844a97cf00f --- /dev/null +++ b/src/Storage/Storage.Management/File/UpdateAzAzStorageFileServiceProperty.cs @@ -0,0 +1,173 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.Management.Storage +{ + using Microsoft.Azure.Commands.Management.Storage.Models; + using Microsoft.Azure.Management.Storage; + using Microsoft.Azure.Management.Storage.Models; + using System; + using System.Collections.Generic; + using System.Management.Automation; + using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; + using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; + + /// + /// Modify Azure Storage service properties + /// + [Cmdlet("Update", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + StorageFileServiceProperty, SupportsShouldProcess = true, DefaultParameterSetName = AccountNameParameterSet), OutputType(typeof(PSFileServiceProperties))] + public class UpdateAzStorageFileServicePropertyCommand : StorageFileBaseCmdlet + { + /// + /// AccountName Parameter Set + /// + private const string AccountNameParameterSet = "AccountName"; + + /// + /// Account object parameter set + /// + private const string AccountObjectParameterSet = "AccountObject"; + + /// + /// BlobServiceProperties ResourceId parameter set + /// + private const string PropertiesResourceIdParameterSet = "FileServicePropertiesResourceId"; + + [Parameter( + Position = 0, + Mandatory = true, + HelpMessage = "Resource Group Name.", + ParameterSetName = AccountNameParameterSet)] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter( + Position = 1, + Mandatory = true, + HelpMessage = "Storage Account Name.", + ParameterSetName = AccountNameParameterSet)] + [ResourceNameCompleter("Microsoft.Storage/storageAccounts", nameof(ResourceGroupName))] + [Alias(AccountNameAlias, NameAlias)] + [ValidateNotNullOrEmpty] + public string StorageAccountName { get; set; } + + [Parameter(Mandatory = true, + HelpMessage = "Storage account object", + ValueFromPipeline = true, + ParameterSetName = AccountObjectParameterSet)] + [ValidateNotNullOrEmpty] + public PSStorageAccount StorageAccount { get; set; } + + [Parameter( + Position = 0, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "Input a Storage account Resource Id, or a File service properties Resource Id.", + ParameterSetName = PropertiesResourceIdParameterSet)] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Enable share Delete Retention Policy for the storage account by set to $true, disable share Delete Retention Policy by set to $false.")] + [ValidateNotNullOrEmpty] + public bool EnableShareDeleteRetentionPolicy + { + get + { + return enableShareDeleteRetentionPolicy is null ? false : enableShareDeleteRetentionPolicy.Value; + } + set + { + enableShareDeleteRetentionPolicy = value; + } + } + private bool? enableShareDeleteRetentionPolicy = null; + + [Parameter(Mandatory = false, HelpMessage = "Sets the number of retention days for the share DeleteRetentionPolicy. The value should only be set when enable share Delete Retention Policy.")] + [Alias("Days", "RetentionDays")] + public int ShareRetentionDays + { + get + { + return shareRetentionDays is null ? 0 : shareRetentionDays.Value; + } + set + { + shareRetentionDays = value; + } + } + private int? shareRetentionDays = null; + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + // Check input parameter + // ShareRetentionDays should only be specified when EnableShareDeleteRetentionPolicy is true + if (this.enableShareDeleteRetentionPolicy == null || this.enableShareDeleteRetentionPolicy.Value == false) + { + if (this.ShareRetentionDays != 0) + { + throw new ArgumentException("ShareRetentionDays should only be specified when EnableShareDeleteRetentionPolicy is true."); + } + } + else + { + if (this.ShareRetentionDays == 0) + { + throw new ArgumentException("ShareRetentionDays must be specified when EnableShareDeleteRetentionPolicy is true."); + } + } + + if (ShouldProcess("FileServiceProperties", "Update")) + { + switch (ParameterSetName) + { + case AccountObjectParameterSet: + this.ResourceGroupName = StorageAccount.ResourceGroupName; + this.StorageAccountName = StorageAccount.StorageAccountName; + break; + case PropertiesResourceIdParameterSet: + ResourceIdentifier blobServicePropertiesResource = new ResourceIdentifier(ResourceId); + this.ResourceGroupName = blobServicePropertiesResource.ResourceGroupName; + this.StorageAccountName = PSBlobServiceProperties.GetStorageAccountNameFromResourceId(ResourceId); + break; + default: + // For AccountNameParameterSet, the ResourceGroupName and StorageAccountName can get from input directly + break; + } + DeleteRetentionPolicy deleteRetentionPolicy = null; + if (this.enableShareDeleteRetentionPolicy != null) + { + deleteRetentionPolicy = new DeleteRetentionPolicy(); + deleteRetentionPolicy.Enabled = this.enableShareDeleteRetentionPolicy.Value; + if (this.enableShareDeleteRetentionPolicy.Value == true) + { + deleteRetentionPolicy.Days = ShareRetentionDays; + } + } + + FileServiceProperties serviceProperties = this.StorageClient.FileServices.SetServiceProperties(this.ResourceGroupName, this.StorageAccountName, + shareDeleteRetentionPolicy: deleteRetentionPolicy); + + // Get all File service properties from server for output + serviceProperties = this.StorageClient.FileServices.GetServiceProperties(this.ResourceGroupName, this.StorageAccountName); + + WriteObject(new PSFileServiceProperties(serviceProperties)); + } + } + } +} diff --git a/src/Storage/Storage.Management/Models/PSContainer.cs b/src/Storage/Storage.Management/Models/PSContainer.cs index 7c04bf9dde8c..ffde1d85b6fd 100644 --- a/src/Storage/Storage.Management/Models/PSContainer.cs +++ b/src/Storage/Storage.Management/Models/PSContainer.cs @@ -216,7 +216,7 @@ public class PSImmutabilityPolicy { public PSImmutabilityPolicy(StorageModels.ImmutabilityPolicy policy) { - this.ImmutabilityPeriodSinceCreationInDays = policy.ImmutabilityPeriodSinceCreationInDays; + this.ImmutabilityPeriodSinceCreationInDays = policy.ImmutabilityPeriodSinceCreationInDays.Value; this.State = policy.State; this.Etag = policy.Etag; this.Name = policy.Name; @@ -238,7 +238,7 @@ public class PSImmutabilityPolicyProperties { public PSImmutabilityPolicyProperties(StorageModels.ImmutabilityPolicyProperties policy) { - this.ImmutabilityPeriodSinceCreationInDays = policy.ImmutabilityPeriodSinceCreationInDays; + this.ImmutabilityPeriodSinceCreationInDays = policy.ImmutabilityPeriodSinceCreationInDays.Value; this.State = policy.State; this.Etag = policy.Etag; this.AllowProtectedAppendWrites = policy.AllowProtectedAppendWrites; diff --git a/src/Storage/Storage.Management/Models/PSFileServiceProperties.cs b/src/Storage/Storage.Management/Models/PSFileServiceProperties.cs new file mode 100644 index 000000000000..4597292e6fe1 --- /dev/null +++ b/src/Storage/Storage.Management/Models/PSFileServiceProperties.cs @@ -0,0 +1,64 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; +using Microsoft.Azure.Management.Storage.Models; +using Microsoft.WindowsAzure.Commands.Common.Attributes; +using System; +using System.Collections.Generic; + +namespace Microsoft.Azure.Commands.Management.Storage.Models +{ + /// + /// Wrapper of SDK type FileServiceProperties + /// + public class PSFileServiceProperties + { + [Ps1Xml(Label = "ResourceGroupName", Target = ViewControl.Table, Position = 0)] + public string ResourceGroupName { get; set; } + [Ps1Xml(Label = "StorageAccountName", Target = ViewControl.Table, Position = 1)] + public string StorageAccountName { get; set; } + public string Name { get; set; } + public string Id { get; set; } + public string Type { get; set; } + [Ps1Xml(Label = "DeleteRetentionPolicy.Enabled", Target = ViewControl.Table, ScriptBlock = "$_.DeleteRetentionPolicy.Enabled", Position = 2)] + [Ps1Xml(Label = "DeleteRetentionPolicy.Days", Target = ViewControl.Table, ScriptBlock = "$_.DeleteRetentionPolicy.Days", Position = 3)] + public PSDeleteRetentionPolicy ShareDeleteRetentionPolicy { get; set; } + public PSCorsRules Cors { get; set; } + + public PSFileServiceProperties() + { } + + public PSFileServiceProperties(FileServiceProperties policy) + { + this.ResourceGroupName = (new ResourceIdentifier(policy.Id)).ResourceGroupName; + this.StorageAccountName = PSBlobServiceProperties.GetStorageAccountNameFromResourceId(policy.Id); + this.Id = policy.Id; + this.Name = policy.Name; + this.Type = policy.Type; + this.Cors = policy.Cors is null ? null : new PSCorsRules(policy.Cors); + this.ShareDeleteRetentionPolicy = policy.ShareDeleteRetentionPolicy is null ? null : new PSDeleteRetentionPolicy(policy.ShareDeleteRetentionPolicy); + } + public FileServiceProperties ParseBlobServiceProperties() + { + return new FileServiceProperties + { + Cors = this.Cors is null ? null : this.Cors.ParseCorsRules(), + ShareDeleteRetentionPolicy = this.ShareDeleteRetentionPolicy is null ? null : this.ShareDeleteRetentionPolicy.ParseDeleteRetentionPolicy(), + }; + } + } +} + + \ No newline at end of file diff --git a/src/Storage/Storage.Management/StorageAccount/NewAzureStorageAccount.cs b/src/Storage/Storage.Management/StorageAccount/NewAzureStorageAccount.cs index 5ef5a2e8632b..db6293863edf 100644 --- a/src/Storage/Storage.Management/StorageAccount/NewAzureStorageAccount.cs +++ b/src/Storage/Storage.Management/StorageAccount/NewAzureStorageAccount.cs @@ -90,6 +90,7 @@ public class NewAzureStorageAccountCommand : StorageAccountBaseCmdlet StorageModels.Kind.BlockBlobStorage, StorageModels.Kind.FileStorage, IgnoreCase = true)] + [PSDefaultValue(Help = "StorageV2", Value = StorageModels.Kind.StorageV2)] public string Kind { get diff --git a/src/Storage/Storage.Management/help/Az.Storage.md b/src/Storage/Storage.Management/help/Az.Storage.md index d2674769ee20..d5588fe09b57 100644 --- a/src/Storage/Storage.Management/help/Az.Storage.md +++ b/src/Storage/Storage.Management/help/Az.Storage.md @@ -116,6 +116,9 @@ Gets the state of a copy operation. ### [Get-AzStorageFileHandle](Get-AzStorageFileHandle.md) Lists file handles of a file share, a file directory or a file. +### [Get-AzStorageFileServiceProperty](Get-AzStorageFileServiceProperty.md) +Gets service properties for Azure Storage File services. + ### [Get-AzStorageObjectReplicationPolicy](Get-AzStorageObjectReplicationPolicy.md) Gets or lists object replication policy of a Storage account. @@ -302,6 +305,9 @@ Removes a storage table. ### [Remove-AzStorageTableStoredAccessPolicy](Remove-AzStorageTableStoredAccessPolicy.md) Removes a stored access policy from an Azure storage table. +### [Restore-AzRmStorageShare](Restore-AzRmStorageShare.md) +Restores a deleted file share. + ### [Restore-AzStorageBlobRange](Restore-AzStorageBlobRange.md) Restores a Storage account for specific blob ranges. @@ -389,6 +395,9 @@ Update the NetworkRule property of a Storage account ### [Update-AzStorageBlobServiceProperty](Update-AzStorageBlobServiceProperty.md) Modifies the service properties for the Azure Storage Blob service. +### [Update-AzStorageFileServiceProperty](Update-AzStorageFileServiceProperty.md) +Modifies the service properties for the Azure Storage File service. + ### [Update-AzStorageServiceProperty](Update-AzStorageServiceProperty.md) Modifies the properties for the Azure Storage service. diff --git a/src/Storage/Storage.Management/help/Get-AzRmStorageShare.md b/src/Storage/Storage.Management/help/Get-AzRmStorageShare.md index 2655cabe9304..7a6330a79884 100644 --- a/src/Storage/Storage.Management/help/Get-AzRmStorageShare.md +++ b/src/Storage/Storage.Management/help/Get-AzRmStorageShare.md @@ -20,7 +20,7 @@ Get-AzRmStorageShare [-ResourceGroupName] [-StorageAccountName] [-StorageAccountName] +Get-AzRmStorageShare [-ResourceGroupName] [-StorageAccountName] [-IncludeDeleted] [-DefaultProfile ] [] ``` @@ -32,8 +32,8 @@ Get-AzRmStorageShare -StorageAccount -Name [-GetShar ### AccountObject ``` -Get-AzRmStorageShare -StorageAccount [-DefaultProfile ] - [] +Get-AzRmStorageShare -StorageAccount [-IncludeDeleted] + [-DefaultProfile ] [] ``` ### ShareResourceId @@ -53,8 +53,8 @@ PS C:\>Get-AzRmStorageShare -ResourceGroupName "myresourcegroup" -StorageAccount ResourceGroupName: myresourcegroup, StorageAccountName: mystorageaccount -Name QuotaGiB EnabledProtocols AccessTier Deleted Version ShareUsageBytes ----- -------- ---------------- ---------- ------- ------- --------------- +Name QuotaGiB EnabledProtocol AccessTier Deleted Version ShareUsageBytes +---- -------- --------------- ---------- ------- ------- --------------- myshare 5120 ``` @@ -66,8 +66,8 @@ PS C:\>Get-AzRmStorageShare -ResourceGroupName "myresourcegroup" -StorageAccount ResourceGroupName: myresourcegroup, StorageAccountName: mystorageaccount -Name QuotaGiB EnabledProtocols AccessTier Deleted Version ShareUsageBytes ----- -------- ---------------- ---------- ------- ------- --------------- +Name QuotaGiB EnabledProtocol AccessTier Deleted Version ShareUsageBytes +---- -------- --------------- ---------- ------- ------- --------------- share1 5120 TransactionOptimized share2 5120 TransactionOptimized ``` @@ -80,8 +80,8 @@ Get-AzStorageAccount -ResourceGroupName "myresourcegroup" -StorageAccountName "m ResourceGroupName: myresourcegroup, StorageAccountName: mystorageaccount -Name QuotaGiB EnabledProtocols AccessTier Deleted Version ShareUsageBytes ----- -------- ---------------- ---------- ------- ------- --------------- +Name QuotaGiB EnabledProtocol AccessTier Deleted Version ShareUsageBytes +---- -------- --------------- ---------- ------- ------- --------------- myshare 5120 ``` @@ -93,13 +93,27 @@ PS C:\>Get-AzRmStorageShare -ResourceGroupName "myresourcegroup" -StorageAccount ResourceGroupName: myresourcegroup, StorageAccountName: mystorageaccount -Name QuotaGiB EnabledProtocol5 AccessTier Deleted Version ShareUsageBytes ----- -------- ---------------- ---------- ------- ------- --------------- +Name QuotaGiB EnabledProtocol AccessTier Deleted Version ShareUsageBytes +---- -------- --------------- ---------- ------- ------- --------------- myshare 5120 2097152 ``` This command gets a Storage file share with Storage account name and share name, and include the share usage in bytes. +### Example 5: List all Storage file shares of a Storage account, include the deleted shares +``` +PS C:\>Get-AzRmStorageShare -ResourceGroupName "myresourcegroup" -StorageAccountName "mystorageaccount" -IncludeDeleted + + ResourceGroupName: myresourcegroup, StorageAccountName: mystorageaccount + +Name QuotaGiB EnabledProtocol AccessTier Deleted Version ShareUsageBytes +---- -------- --------------- ---------- ------- ------- --------------- +test 100 TransactionOptimized +share1 100 TransactionOptimized True 01D61FD1FC5498B6 +``` + +This command lists all Storage file shares include the deleted shares of a Storage account with Storage account name. + ## PARAMETERS ### -DefaultProfile @@ -132,6 +146,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -IncludeDeleted +Include deleted shares, by default list shares won't include deleted shares + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: AccountName, AccountObject +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Name Share Name diff --git a/src/Storage/Storage.Management/help/Get-AzStorageFileServiceProperty.md b/src/Storage/Storage.Management/help/Get-AzStorageFileServiceProperty.md new file mode 100644 index 000000000000..c2ef9ff6f779 --- /dev/null +++ b/src/Storage/Storage.Management/help/Get-AzStorageFileServiceProperty.md @@ -0,0 +1,141 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Storage.Management.dll-Help.xml +Module Name: Az.Storage +online version: https://docs.microsoft.com/en-us/powershell/module/az.storage/get-azstoragefileserviceproperty +schema: 2.0.0 +--- + +# Get-AzStorageFileServiceProperty + +## SYNOPSIS +Gets service properties for Azure Storage File services. + +## SYNTAX + +### AccountName (Default) +``` +Get-AzStorageFileServiceProperty [-ResourceGroupName] [-StorageAccountName] + [-DefaultProfile ] [] +``` + +### AccountObject +``` +Get-AzStorageFileServiceProperty -StorageAccount [-DefaultProfile ] + [] +``` + +### FileServicePropertiesResourceId +``` +Get-AzStorageFileServiceProperty [-ResourceId] [-DefaultProfile ] + [] +``` + +## DESCRIPTION +The **Get-AzStorageFileServiceProperty** cmdlet gets the service properties for Azure Storage File services. + +## EXAMPLES + +### Example 1: Get Azure Storage File services property of a specified Storage Account +```powershell +PS C:\> Get-AzStorageFileServiceProperty -ResourceGroupName "myresourcegroup" -AccountName "mystorageaccount" + +StorageAccountName ResourceGroupName ShareDeleteRetentionPolicy.Enabled ShareDeleteRetentionPolicy.Days +------------------ ----------------- ---------------------------------- ------------------------------- +mystorageaccount myresourcegroup True 5 +``` + +This command gets the File services property of a specified Storage Account. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +Resource Group Name. + +```yaml +Type: System.String +Parameter Sets: AccountName +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +Input a Storage account Resource Id, or a File service properties Resource Id. + +```yaml +Type: System.String +Parameter Sets: FileServicePropertiesResourceId +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -StorageAccount +Storage account object + +```yaml +Type: Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount +Parameter Sets: AccountObject +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -StorageAccountName +Storage Account Name. + +```yaml +Type: System.String +Parameter Sets: AccountName +Aliases: AccountName, Name + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount + +### System.String + +## OUTPUTS + +### Microsoft.Azure.Commands.Management.Storage.Models.PSFileServiceProperties + +## NOTES + +## RELATED LINKS diff --git a/src/Storage/Storage.Management/help/New-AzRmStorageShare.md b/src/Storage/Storage.Management/help/New-AzRmStorageShare.md index 179a658a81c2..f979dd596cfe 100644 --- a/src/Storage/Storage.Management/help/New-AzRmStorageShare.md +++ b/src/Storage/Storage.Management/help/New-AzRmStorageShare.md @@ -36,8 +36,8 @@ PS C:\>New-AzRmStorageShare -ResourceGroupName "myresourcegroup" -StorageAccount ResourceGroupName: myresourcegroup, StorageAccountName: mystorageaccount -Name QuotaGiB EnabledProtocols AccessTier Deleted Version ShareUsageBytes ----- -------- ---------------- ---------- ------- ------- --------------- +Name QuotaGiB EnabledProtocol AccessTier Deleted Version ShareUsageBytes +---- -------- --------------- ---------- ------- ------- --------------- myshare ``` @@ -49,8 +49,8 @@ Get-AzStorageAccount -ResourceGroupName "myresourcegroup" -StorageAccountName "m ResourceGroupName: myresourcegroup, StorageAccountName: mystorageaccount -Name QuotaGiB EnabledProtocols AccessTier Deleted Version ShareUsageBytes ----- -------- ---------------- ---------- ------- ------- --------------- +Name QuotaGiB EnabledProtocol AccessTier Deleted Version ShareUsageBytes +---- -------- --------------- ---------- ------- ------- --------------- myshare ``` diff --git a/src/Storage/Storage.Management/help/New-AzStorageAccount.md b/src/Storage/Storage.Management/help/New-AzStorageAccount.md index 6f03b49ef2a8..dfa1ee64015a 100644 --- a/src/Storage/Storage.Management/help/New-AzStorageAccount.md +++ b/src/Storage/Storage.Management/help/New-AzStorageAccount.md @@ -461,7 +461,7 @@ Accepted values: Storage, StorageV2, BlobStorage, BlockBlobStorage, FileStorage Required: False Position: Named -Default value: None +Default value: StorageV2 Accept pipeline input: False Accept wildcard characters: False ``` diff --git a/src/Storage/Storage.Management/help/Restore-AzRmStorageShare.md b/src/Storage/Storage.Management/help/Restore-AzRmStorageShare.md new file mode 100644 index 000000000000..351ac51e384b --- /dev/null +++ b/src/Storage/Storage.Management/help/Restore-AzRmStorageShare.md @@ -0,0 +1,217 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Storage.Management.dll-Help.xml +Module Name: Az.Storage +online version: https://docs.microsoft.com/en-us/powershell/module/az.storage/restore-azrmstorageshare +schema: 2.0.0 +--- + +# Restore-AzRmStorageShare + +## SYNOPSIS +Restores a deleted file share. + +## SYNTAX + +### AccountName (Default) +``` +Restore-AzRmStorageShare [-ResourceGroupName] [-StorageAccountName] -Name + -DeletedShareVersion [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### AccountObject +``` +Restore-AzRmStorageShare -StorageAccount -Name -DeletedShareVersion + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ShareObject +``` +Restore-AzRmStorageShare -InputObject [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +## DESCRIPTION +The **Restore-AzRmStorageShare** cmdlet restores a deleted file share within a valid retention days if share soft delete is enabled. + +## EXAMPLES + +### Example 1: Remove and restore a share +```powershell +PS C:\> Remove-AzRmStorageShare -ResourceGroupName "myresourcegroup" -AccountName "mystorageaccount" -Name $shareName -Force + +PS C:\> Get-AzRmStorageShare -ResourceGroupName "myresourcegroup" -AccountName "mystorageaccount" -IncludeDeleted + + ResourceGroupName: myresourcegroup, StorageAccountName: mystorageaccount + +Name QuotaGiB EnabledProtocol AccessTier Deleted Version ShareUsageBytes +---- -------- --------------- ---------- ------- ------- --------------- +test 100 TransactionOptimized +share1 100 TransactionOptimized True 01D61FD1FC5498B6 + +PS C:\> Restore-AzRmStorageShare -ResourceGroupName "myresourcegroup" -AccountName "mystorageaccount" -Name $shareName -DeletedShareVersion 01D61FD1FC5498B6 + + ResourceGroupName: myresourcegroup, StorageAccountName: mystorageaccount + +Name QuotaGiB EnabledProtocol AccessTier Deleted Version ShareUsageBytes +---- -------- --------------- ---------- ------- ------- --------------- +share1 100 +``` + +This command first delete a file share, and then list shares and see the deleted share version, finally restore it back to a normal share. +Need enabled share soft delete with Update-AzStorageFileServiceProperty, before delete the share. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DeletedShareVersion +Deleted Share Version, which will be restored from. + +```yaml +Type: System.String +Parameter Sets: AccountName, AccountObject +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Deleted Share object + +```yaml +Type: Microsoft.Azure.Commands.Management.Storage.Models.PSShare +Parameter Sets: ShareObject +Aliases: Share + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +Deleted Share Name, which will be restored. + +```yaml +Type: System.String +Parameter Sets: AccountName, AccountObject +Aliases: N, ShareName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +Resource Group Name. + +```yaml +Type: System.String +Parameter Sets: AccountName +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -StorageAccount +Storage account object + +```yaml +Type: Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount +Parameter Sets: AccountObject +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -StorageAccountName +Storage Account Name. + +```yaml +Type: System.String +Parameter Sets: AccountName +Aliases: AccountName + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount + +### Microsoft.Azure.Commands.Management.Storage.Models.PSShare + +## OUTPUTS + +### Microsoft.Azure.Commands.Management.Storage.Models.PSShare + +## NOTES + +## RELATED LINKS diff --git a/src/Storage/Storage.Management/help/Restore-AzStorageBlobRange.md b/src/Storage/Storage.Management/help/Restore-AzStorageBlobRange.md index 8a8a52607922..7db1db2d61a7 100644 --- a/src/Storage/Storage.Management/help/Restore-AzStorageBlobRange.md +++ b/src/Storage/Storage.Management/help/Restore-AzStorageBlobRange.md @@ -68,7 +68,7 @@ PS C:\> $job.Output Status RestoreId FailureReason Parameters.TimeToRestore Parameters.BlobRanges ------ --------- ------------- ------------------------ --------------------- -Complete 0387953a-bbe6-4602-818d-e661581ee44b 2020-08-28T07:11:33.9843100Z ["" -> ""] +Complete 0387953a-bbe6-4602-818d-e661581ee44b 2020-08-28T07:11:33.9843100Z ["" -> ""] ``` This command restores all blobs in a Storage account from 30 minutes ago, and wait for the restore complete. Since restore blobs might take a long time, run it in the backend with -Asjob parameter, and then wait for the job complete and show the result. diff --git a/src/Storage/Storage.Management/help/Set-AzStorageBlobContent.md b/src/Storage/Storage.Management/help/Set-AzStorageBlobContent.md index 465e8d3781f3..b82e585cea3d 100644 --- a/src/Storage/Storage.Management/help/Set-AzStorageBlobContent.md +++ b/src/Storage/Storage.Management/help/Set-AzStorageBlobContent.md @@ -92,10 +92,18 @@ The blob includes the metadata stored in $Metadata, and has PremiumPageBlobTier ### Example 6: Upload a file to blob with specified blob properties, and set StandardBlobTier as Cool ``` -PS C:\> Set-AzStorageBlobContent -File "ContosoPlanning" -Container "ContosoUploads" -Properties @{"ContentType" = "image/jpeg"; "ContentMD5" = "i727sP7HigloQDsqadNLHw=="} -StandardBlobTier Cool +PS C:\> $filepath = "c:\temp\index.html" +PS C:\> Set-AzStorageBlobContent -File $filepath -Container "contosouploads" -Properties @{"ContentType" = [System.Web.MimeMapping]::GetMimeMapping($filepath); "ContentMD5" = "i727sP7HigloQDsqadNLHw=="} -StandardBlobTier Cool + + AccountName: storageaccountname, ContainerName: contosouploads + +Name BlobType Length ContentType LastModified AccessTier SnapshotTime IsDeleted VersionId +---- -------- ------ ----------- ------------ ---------- ------------ --------- --------- +index.html BlockBlob 403116 text/html 2020-09-22 08:06:53Z Cool False ``` -This command uploads the file that is named ContosoPlanning to the container named ContosoUploads with specified blob properties, and set StandardBlobTier as Cool. +This command uploads the file c:\temp\index.html to the container named contosouploads with specified blob properties, and set StandardBlobTier as Cool. +This command gets ContentType value set to blob properties by [System.Web.MimeMapping]::GetMimeMapping() API. ## PARAMETERS diff --git a/src/Storage/Storage.Management/help/Update-AzRmStorageShare.md b/src/Storage/Storage.Management/help/Update-AzRmStorageShare.md index 62d7aab2cd8f..444d4cc837a6 100644 --- a/src/Storage/Storage.Management/help/Update-AzRmStorageShare.md +++ b/src/Storage/Storage.Management/help/Update-AzRmStorageShare.md @@ -50,8 +50,8 @@ PS C:\>$share ResourceGroupName: myresourcegroup, StorageAccountName: mystorageaccount -Name QuotaGiB EnabledProtocols AccessTier Deleted Version ShareUsageBytes ----- -------- ---------------- ---------- ------- ------- --------------- +Name QuotaGiB EnabledProtocol AccessTier Deleted Version ShareUsageBytes +---- -------- --------------- ---------- ------- ------- --------------- myshare 200 PS C:\>$share.Metadata @@ -78,8 +78,8 @@ PS C:\>Get-AzRmStorageShare -ResourceGroupName "myresourcegroup" -StorageAccount ResourceGroupName: myresourcegroup, StorageAccountName: mystorageaccount -Name QuotaGiB EnabledProtocols AccessTier Deleted Version ShareUsageBytes ----- -------- ---------------- ---------- ------- ------- --------------- +Name QuotaGiB EnabledProtocol AccessTier Deleted Version ShareUsageBytes +---- -------- --------------- ---------- ------- ------- --------------- share1 5000 share2 5000 ``` diff --git a/src/Storage/Storage.Management/help/Update-AzStorageFileServiceProperty.md b/src/Storage/Storage.Management/help/Update-AzStorageFileServiceProperty.md new file mode 100644 index 000000000000..08f653e14982 --- /dev/null +++ b/src/Storage/Storage.Management/help/Update-AzStorageFileServiceProperty.md @@ -0,0 +1,206 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Storage.Management.dll-Help.xml +Module Name: Az.Storage +online version: https://docs.microsoft.com/en-us/powershell/module/az.storage/update-azstoragefileserviceproperty +schema: 2.0.0 +--- + +# Update-AzStorageFileServiceProperty + +## SYNOPSIS +Modifies the service properties for the Azure Storage File service. + +## SYNTAX + +### AccountName (Default) +``` +Update-AzStorageFileServiceProperty [-ResourceGroupName] [-StorageAccountName] + [-EnableShareDeleteRetentionPolicy ] [-ShareRetentionDays ] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### AccountObject +``` +Update-AzStorageFileServiceProperty -StorageAccount + [-EnableShareDeleteRetentionPolicy ] [-ShareRetentionDays ] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### FileServicePropertiesResourceId +``` +Update-AzStorageFileServiceProperty [-ResourceId] [-EnableShareDeleteRetentionPolicy ] + [-ShareRetentionDays ] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +## DESCRIPTION +The **Update-AzStorageFileServiceProperty** cmdlet modifies the service properties for the Azure Storage File service. + +## EXAMPLES + +### Example 1: Enable File share softdelete +```powershell +PS C:\> Update-AzStorageFileServiceProperty -ResourceGroupName "myresourcegroup" -AccountName "mystorageaccount" -EnableShareDeleteRetentionPolicy $true -ShareRetentionDays 5 + +StorageAccountName ResourceGroupName ShareDeleteRetentionPolicy.Enabled ShareDeleteRetentionPolicy.Days +------------------ ----------------- ---------------------------------- ------------------------------- +mystorageaccount myresourcegroup True 5 +``` + +This command enables File share softdelete delete with retention days as 5 + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -EnableShareDeleteRetentionPolicy +Enable share Delete Retention Policy for the storage account by set to $true, disable share Delete Retention Policy by set to $false. + +```yaml +Type: System.Boolean +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +Resource Group Name. + +```yaml +Type: System.String +Parameter Sets: AccountName +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +Input a Storage account Resource Id, or a File service properties Resource Id. + +```yaml +Type: System.String +Parameter Sets: FileServicePropertiesResourceId +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ShareRetentionDays +Sets the number of retention days for the share DeleteRetentionPolicy. +The value should only be set when enable share Delete Retention Policy. + +```yaml +Type: System.Int32 +Parameter Sets: (All) +Aliases: Days, RetentionDays + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -StorageAccount +Storage account object + +```yaml +Type: Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount +Parameter Sets: AccountObject +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -StorageAccountName +Storage Account Name. + +```yaml +Type: System.String +Parameter Sets: AccountName +Aliases: AccountName, Name + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount + +### System.String + +## OUTPUTS + +### Microsoft.Azure.Commands.Management.Storage.Models.PSFileServiceProperties + +## NOTES + +## RELATED LINKS diff --git a/src/StreamAnalytics/StreamAnalytics/Properties/Resources.resx b/src/StreamAnalytics/StreamAnalytics/Properties/Resources.resx index ecc4bbdf4310..50b50ebfacfb 100644 --- a/src/StreamAnalytics/StreamAnalytics/Properties/Resources.resx +++ b/src/StreamAnalytics/StreamAnalytics/Properties/Resources.resx @@ -147,22 +147,22 @@ Timestamp (Utc):{4} A stream analytics job with the name '{0}' in the resource group '{1}' already exists. -Continuing execution may overwrite the exisiting one. +Continuing execution may overwrite the existing one. Are you sure you want to continue? An input with the name '{0}' in the stream analytics job '{1}' in the resource group '{2}' already exists. -Continuing execution may overwrite the exisiting one. +Continuing execution may overwrite the existing one. Are you sure you want to continue? An output with the name '{0}' in the stream analytics job '{1}' in the resource group '{2}' already exists. -Continuing execution may overwrite the exisiting one. +Continuing execution may overwrite the existing one. Are you sure you want to continue? An transformation with the name '{0}' in the stream analytics job '{1}' in the resource group '{2}' already exists. -Continuing execution may overwrite the exisiting one. +Continuing execution may overwrite the existing one. Are you sure you want to continue? @@ -212,7 +212,7 @@ Are you sure you want to continue? A function with the name '{0}' in the stream analytics job '{1}' in the resource group '{2}' already exists. -Continuing execution may overwrite the exisiting one. +Continuing execution may overwrite the existing one. Are you sure you want to continue? @@ -227,4 +227,4 @@ Are you sure you want to continue? Removing the function '{0}' in the stream analytics job '{1}' in the resource group '{2}'. - \ No newline at end of file + diff --git a/src/StreamAnalytics/StreamAnalytics/help/Get-AzStreamAnalyticsInput.md b/src/StreamAnalytics/StreamAnalytics/help/Get-AzStreamAnalyticsInput.md index 0c946077d400..64dfecf058f0 100644 --- a/src/StreamAnalytics/StreamAnalytics/help/Get-AzStreamAnalyticsInput.md +++ b/src/StreamAnalytics/StreamAnalytics/help/Get-AzStreamAnalyticsInput.md @@ -23,15 +23,15 @@ The **Get-AzStreamAnalyticsInput** cmdlet lists all of the inputs that are defin ## EXAMPLES -### EXAMPLE 1: Get information about the inputs defined on a job -``` +### Example 1: Get information about the inputs defined on a job +```powershell PS C:\>Get-AzStreamAnalyticsInput -ResourceGroupName "StreamAnalytics-Default-West-US" -JobName "StreamingJob" ``` This command returns information about all the inputs defined on the job StreamingJob. -### EXAMPLE 2: Get information about a specific input defined on a job -``` +### Example 2: Get information about a specific input defined on a job +```powershell PS C:\>Get-AzStreamAnalyticsInput -ResourceGroupName "StreamAnalytics-Default-West-US" -JobName "StreamingJob" -Name "EntryStream" ``` diff --git a/src/StreamAnalytics/StreamAnalytics/help/Get-AzStreamAnalyticsOutput.md b/src/StreamAnalytics/StreamAnalytics/help/Get-AzStreamAnalyticsOutput.md index 163677eb2def..a1ff33927d92 100644 --- a/src/StreamAnalytics/StreamAnalytics/help/Get-AzStreamAnalyticsOutput.md +++ b/src/StreamAnalytics/StreamAnalytics/help/Get-AzStreamAnalyticsOutput.md @@ -23,15 +23,15 @@ The **Get-AzStreamAnalyticsOutput** cmdlet lists all of the outputs that are def ## EXAMPLES -### EXAMPLE 1: Get information about job outputs -``` +### Example 1: Get information about job outputs +```powershell PS C:\>Get-AzStreamAnalyticsOutput -ResourceGroupName "StreamAnalytics-Default-West-US" -JobName "StreamingJob" ``` This command returns information about the outputs defined on the job StreamingJob. -### EXAMPLE 2: Get information about a specific job output -``` +### Example 2: Get information about a specific job output +```powershell PS C:\>Get-AzStreamAnalyticsOutput -ResourceGroupName "StreamAnalytics-Default-West-US" -JobName "StreamingJob" -Name "Output" ``` diff --git a/src/StreamAnalytics/StreamAnalytics/help/New-AzStreamAnalyticsInput.md b/src/StreamAnalytics/StreamAnalytics/help/New-AzStreamAnalyticsInput.md index ffc9e872ea65..b2dc7e16a489 100644 --- a/src/StreamAnalytics/StreamAnalytics/help/New-AzStreamAnalyticsInput.md +++ b/src/StreamAnalytics/StreamAnalytics/help/New-AzStreamAnalyticsInput.md @@ -28,24 +28,24 @@ If you specify the *Force* parameter and specify an existing input name, the inp ## EXAMPLES -### EXAMPLE 1: Create a job input with a definition from a file -``` +### Example 1: Create a job input with a definition from a file +```powershell PS C:\>New-AzStreamAnalyticsInput -ResourceGroupName "StreamAnalytics-Default-West-US" -JobName "StreamingJob" -File "C:\Input.json" ``` This command creates an input from the file Input.json. If an existing input with the name specified in the input definition file is already defined, the cmdlet will ask whether or not to replace it. -### EXAMPLE 2: Create a job input -``` +### Example 2: Create a job input +```powershell PS C:\>New-AzStreamAnalyticsInput -ResourceGroupName "StreamAnalytics-Default-West-US" -JobName "StreamingJob" -File "C:\Input.json" -Name "EntryStream" ``` This command creates a new input on the job called EntryStream. If an existing input with this name is already defined, the cmdlet will ask whether or not to replace it. -### EXAMPLE 3: Replace a job input with a definition from a file -``` +### Example 3: Replace a job input with a definition from a file +```powershell PS C:\>New-AzStreamAnalyticsInput -ResourceGroupName "StreamAnalytics-Default-West-US" -JobName "StreamingJob" -File "C:\Input.json" -Name "EntryStream" -Force ``` diff --git a/src/StreamAnalytics/StreamAnalytics/help/New-AzStreamAnalyticsOutput.md b/src/StreamAnalytics/StreamAnalytics/help/New-AzStreamAnalyticsOutput.md index e1e414955d31..7a6c9bfb188f 100644 --- a/src/StreamAnalytics/StreamAnalytics/help/New-AzStreamAnalyticsOutput.md +++ b/src/StreamAnalytics/StreamAnalytics/help/New-AzStreamAnalyticsOutput.md @@ -28,16 +28,16 @@ If you specify the *Force* parameter and specify an existing output name, the ou ## EXAMPLES -### EXAMPLE 1: Add an output to a job -``` +### Example 1: Add an output to a job +```powershell PS C:\>New-AzStreamAnalyticsOutput -ResourceGroupName "StreamAnalytics-Default-West-US" -File "C:\Output.json" -JobName "StreamingJob" -Name "Output" ``` This command creates a new output called Output in the job called StreamingJob. If an existing output with this name is already defined, the cmdlet will ask whether or not to replace it. -### EXAMPLE 2: Replace a job output definition -``` +### Example 2: Replace a job output definition +```powershell PS C:\>New-AzStreamAnalyticsOutput -ResourceGroupName "StreamAnalytics-Default-West-US" -File "C:\Output.json" -JobName "StreamingJob" -Name "Output" -Force ``` diff --git a/src/StreamAnalytics/StreamAnalytics/help/New-AzStreamAnalyticsTransformation.md b/src/StreamAnalytics/StreamAnalytics/help/New-AzStreamAnalyticsTransformation.md index c88a4246961d..b704d952732d 100644 --- a/src/StreamAnalytics/StreamAnalytics/help/New-AzStreamAnalyticsTransformation.md +++ b/src/StreamAnalytics/StreamAnalytics/help/New-AzStreamAnalyticsTransformation.md @@ -28,16 +28,16 @@ If you specify the *Force* parameter and specify an existing transformation name ## EXAMPLES -### EXAMPLE 1: Create or replace a transformation in a job -``` +### Example 1: Create or replace a transformation in a job +```powershell PS C:\>New-AzStreamAnalyticsTransformation -ResourceGroupName "StreamAnalytics-Default-West-US" -File "C:\Transformation.json" -JobName "StreamingJob" -Name "StreamingJobTransform" ``` This command creates a transformation called StreamingJobTransform in the job called StreamingJob. If an existing transformation is already defined with that name, the cmdlet will ask whether or not to replace it. -### EXAMPLE 2: Replace a transformation in a job -``` +### Example 2: Replace a transformation in a job +```powershell PS C:\>New-AzStreamAnalyticsTransformation -ResourceGroupName "StreamAnalytics-Default-West-US" -File "C:\Transformation.json" -JobName "StreamingJob" -Name "StreamingJobTransform" -Force ``` diff --git a/src/StreamAnalytics/StreamAnalytics/help/Start-AzStreamAnalyticsJob.md b/src/StreamAnalytics/StreamAnalytics/help/Start-AzStreamAnalyticsJob.md index 6b54a6ed62e2..efdea5b64b64 100644 --- a/src/StreamAnalytics/StreamAnalytics/help/Start-AzStreamAnalyticsJob.md +++ b/src/StreamAnalytics/StreamAnalytics/help/Start-AzStreamAnalyticsJob.md @@ -23,8 +23,8 @@ The **Start-AzStreamAnalyticsJob** cmdlet asynchronously deploys and starts a St ## EXAMPLES -### EXAMPLE 1: Start a Stream Analytics job -``` +### Example 1: Start a Stream Analytics job +```powershell PS C:\> Start-AzStreamAnalyticsJob -ResourceGroupName "StreamAnalytics-Default-West-US" -Name "StreamingJob" -OutputStartMode "CustomTime" -OutputStartTime "2014-07-03T01:00Z" ``` diff --git a/src/StreamAnalytics/StreamAnalytics/help/Stop-AzStreamAnalyticsJob.md b/src/StreamAnalytics/StreamAnalytics/help/Stop-AzStreamAnalyticsJob.md index 0f5a4a5f8b19..58ac9116892f 100644 --- a/src/StreamAnalytics/StreamAnalytics/help/Stop-AzStreamAnalyticsJob.md +++ b/src/StreamAnalytics/StreamAnalytics/help/Stop-AzStreamAnalyticsJob.md @@ -25,8 +25,8 @@ You will not be charged for a job in the Stopped state. ## EXAMPLES -### EXAMPLE 1: Stop a running job -``` +### Example 1: Stop a running job +```powershell PS C:\>Stop-AzStreamAnalyticsJob -ResourceGroupName "StreamAnalytics-Default-West-US" -Name "StreamingJob" ``` diff --git a/src/StreamAnalytics/StreamAnalytics/help/Test-AzStreamAnalyticsInput.md b/src/StreamAnalytics/StreamAnalytics/help/Test-AzStreamAnalyticsInput.md index b81dc421c0e3..8025303e00a9 100644 --- a/src/StreamAnalytics/StreamAnalytics/help/Test-AzStreamAnalyticsInput.md +++ b/src/StreamAnalytics/StreamAnalytics/help/Test-AzStreamAnalyticsInput.md @@ -23,8 +23,8 @@ The **Test-AzStreamAnalyticsInput** cmdlet tests the ability of Stream Analytics ## EXAMPLES -### EXAMPLE 1: Test the connection status of an input stream -``` +### Example 1: Test the connection status of an input stream +```powershell PS C:\>Test-AzStreamAnalyticsInput -ResourceGroupName "StreamAnalytics-Default-West-US" -JobName "StreamingJob" -Name "EntryStream" ``` diff --git a/src/StreamAnalytics/StreamAnalytics/help/Test-AzStreamAnalyticsOutput.md b/src/StreamAnalytics/StreamAnalytics/help/Test-AzStreamAnalyticsOutput.md index 9c6469fd4efa..5d8d2bcb5acd 100644 --- a/src/StreamAnalytics/StreamAnalytics/help/Test-AzStreamAnalyticsOutput.md +++ b/src/StreamAnalytics/StreamAnalytics/help/Test-AzStreamAnalyticsOutput.md @@ -23,8 +23,8 @@ The **Test-AzStreamAnalyticsOutput** cmdlet tests the ability of Stream Analytic ## EXAMPLES -### EXAMPLE 1: Test the connection status of an output -``` +### Example 1: Test the connection status of an output +```powershell PS C:\>Test-AzStreamAnalyticsOutput -ResourceGroupName "StreamAnalytics-Default-West-US" -JobName "StreamingJob" -Name "Output" ``` diff --git a/src/VMWare/Az.VMWare.csproj b/src/VMWare/Az.VMWare.csproj new file mode 100644 index 000000000000..a96ce88f435c --- /dev/null +++ b/src/VMWare/Az.VMWare.csproj @@ -0,0 +1,7 @@ + + + VMWare + + + + diff --git a/src/VMWare/Az.VMWare.format.ps1xml b/src/VMWare/Az.VMWare.format.ps1xml new file mode 100644 index 000000000000..a1660504ff12 --- /dev/null +++ b/src/VMWare/Az.VMWare.format.ps1xml @@ -0,0 +1,1073 @@ + + + + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.VMWareIdentity + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.VMWareIdentity + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + AuthorizationName + + + ClusterName + + + HcxEnterpriseSiteName + + + Location + + + PrivateCloudName + + + ResourceGroupName + + + SubscriptionId + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.AdminCredentials + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.AdminCredentials + + + + + + + + + + + + + + + + + + + + + NsxtPassword + + + NsxtUsername + + + VcenterPassword + + + VcenterUsername + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.Circuit + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.Circuit + + + + + + + + + + + + + + + + + + + + + ExpressRouteId + + + ExpressRoutePrivatePeeringId + + + PrimarySubnet + + + SecondarySubnet + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.Cluster + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.Cluster + + + + + + + + + + + + + + + Name + + + Type + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ClusterList + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ClusterList + + + + + + + + + + + + NextLink + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ClusterProperties + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ClusterProperties + + + + + + + + + + + + + + + + + + + + + ClusterId + + + ClusterSize + + + Host + + + ProvisioningState + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ClusterUpdateProperties + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ClusterUpdateProperties + + + + + + + + + + + + ClusterSize + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.Endpoints + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.Endpoints + + + + + + + + + + + + + + + + + + HcxCloudManager + + + NsxtManager + + + Vcsa + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ExpressRouteAuthorization + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ExpressRouteAuthorization + + + + + + + + + + + + + + + Name + + + Type + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ExpressRouteAuthorizationList + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ExpressRouteAuthorizationList + + + + + + + + + + + + NextLink + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ExpressRouteAuthorizationProperties + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ExpressRouteAuthorizationProperties + + + + + + + + + + + + + + + + + + ExpressRouteAuthorizationId + + + ExpressRouteAuthorizationKey + + + ProvisioningState + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.HcxEnterpriseSite + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.HcxEnterpriseSite + + + + + + + + + + + + + + + Name + + + Type + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.HcxEnterpriseSiteList + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.HcxEnterpriseSiteList + + + + + + + + + + + + NextLink + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.HcxEnterpriseSiteProperties + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.HcxEnterpriseSiteProperties + + + + + + + + + + + + + + + ActivationKey + + + Status + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IdentitySource + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IdentitySource + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Alias + + + BaseGroupDn + + + BaseUserDn + + + Domain + + + Name + + + Password + + + PrimaryServer + + + SecondaryServer + + + Ssl + + + Username + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ManagementCluster + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ManagementCluster + + + + + + + + + + + + + + + + + + ClusterSize + + + ClusterId + + + Host + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.Operation + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.Operation + + + + + + + + + + + + Name + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.OperationDisplay + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.OperationDisplay + + + + + + + + + + + + + + + + + + + + + Description + + + Operation + + + Provider + + + Resource + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.OperationList + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.OperationList + + + + + + + + + + + + NextLink + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.PrivateCloud + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.PrivateCloud + + + + + + + + + + + + + + + + + + Location + + + Name + + + Type + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.PrivateCloudList + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.PrivateCloudList + + + + + + + + + + + + NextLink + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.PrivateCloudProperties + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.PrivateCloudProperties + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Internet + + + ManagementClusterHost + + + ManagementClusterId + + + ManagementClusterSize + + + ManagementNetwork + + + NetworkBlock + + + NsxtCertificateThumbprint + + + NsxtPassword + + + ProvisioningNetwork + + + ProvisioningState + + + VcenterCertificateThumbprint + + + VcenterPassword + + + VmotionNetwork + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.PrivateCloudUpdateProperties + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.PrivateCloudUpdateProperties + + + + + + + + + + + + Internet + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.PrivateCloudUpdateTags + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.PrivateCloudUpdateTags + + + + + + + + + + + + Item + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.Quota + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.Quota + + + + + + + + + + + + Enabled + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.QuotaHostsRemaining + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.QuotaHostsRemaining + + + + + + + + + + + + Item + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.Resource + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.Resource + + + + + + + + + + + + + + + Name + + + Type + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.Sku + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.Sku + + + + + + + + + + + + Name + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.TrackedResource + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.TrackedResource + + + + + + + + + + + + + + + + + + Name + + + Type + + + Location + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.TrackedResourceTags + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.TrackedResourceTags + + + + + + + + + + + + Item + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.Trial + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.Trial + + + + + + + + + + + + + + + AvailableHost + + + Status + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.ErrorAdditionalInfo + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.ErrorAdditionalInfo + + + + + + + + + + + + Type + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.ErrorResponse + + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.ErrorResponse + + + + + + + + + + + + + + + + + + Code + + + Message + + + Target + + + + + + + + \ No newline at end of file diff --git a/src/VMWare/Az.VMWare.psd1 b/src/VMWare/Az.VMWare.psd1 new file mode 100644 index 000000000000..fbb6267a2eea --- /dev/null +++ b/src/VMWare/Az.VMWare.psd1 @@ -0,0 +1,140 @@ +# +# Module manifest for module 'Az.VMWare' +# +# Generated by: Microsoft Corporation +# +# Generated on: 9/21/2020 +# + +@{ + +# Script module or binary module file associated with this manifest. +RootModule = './Az.VMWare.psm1' + +# Version number of this module. +ModuleVersion = '0.1.0' + +# Supported PSEditions +CompatiblePSEditions = 'Core', 'Desktop' + +# ID used to uniquely identify this module +GUID = '78d2fac8-ec90-47ad-b8aa-a27106b158f5' + +# Author of this module +Author = 'Microsoft Corporation' + +# Company or vendor of this module +CompanyName = 'Microsoft Corporation' + +# Copyright statement for this module +Copyright = 'Microsoft Corporation. All rights reserved.' + +# Description of the functionality provided by this module +Description = 'Microsoft Azure PowerShell: VMWare cmdlets' + +# Minimum version of the PowerShell engine required by this module +PowerShellVersion = '5.1' + +# Name of the PowerShell host required by this module +# PowerShellHostName = '' + +# Minimum version of the PowerShell host required by this module +# PowerShellHostVersion = '' + +# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only. +DotNetFrameworkVersion = '4.7.2' + +# Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only. +# CLRVersion = '' + +# Processor architecture (None, X86, Amd64) required by this module +# ProcessorArchitecture = '' + +# Modules that must be imported into the global environment prior to importing this module +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.9.4'; }) + +# Assemblies that must be loaded prior to importing this module +RequiredAssemblies = './bin/Az.VMWare.private.dll' + +# Script files (.ps1) that are run in the caller's environment prior to importing this module. +# ScriptsToProcess = @() + +# Type files (.ps1xml) to be loaded when importing this module +# TypesToProcess = @() + +# Format files (.ps1xml) to be loaded when importing this module +FormatsToProcess = './Az.VMWare.format.ps1xml' + +# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess +# NestedModules = @() + +# 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 = 'Get-AzVMWareAuthorization', 'Get-AzVMWareCluster', + 'Get-AzVMWarePrivateCloud', + 'Get-AzVMWarePrivateCloudAdminCredentials', + 'New-AzVMWareAuthorization', 'New-AzVMWareCluster', + 'New-AzVMWarePrivateCloud', 'Remove-AzVMWareAuthorization', + 'Remove-AzVMWareCluster', 'Remove-AzVMWarePrivateCloud', + 'Test-AzVMWareLocationQuotaAvailability', + 'Test-AzVMWareLocationTrialAvailability', 'Update-AzVMWareCluster', + 'Update-AzVMWarePrivateCloud' + +# 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 = @() + +# Variables to export from this module +# VariablesToExport = @() + +# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export. +AliasesToExport = '*' + +# DSC resources to export from this module +# DscResourcesToExport = @() + +# List of all modules packaged with this module +# ModuleList = @() + +# List of all files packaged with this module +# FileList = @() + +# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell. +PrivateData = @{ + + PSData = @{ + + # Tags applied to this module. These help with module discovery in online galleries. + Tags = 'Azure','ResourceManager','ARM','PSModule','VMWare' + + # A URL to the license for this module. + LicenseUri = 'https://aka.ms/azps-license' + + # A URL to the main website for this project. + ProjectUri = 'https://github.com/Azure/azure-powershell' + + # A URL to an icon representing this module. + # IconUri = '' + + # ReleaseNotes of this module + # ReleaseNotes = '' + + # Prerelease string of this module + # Prerelease = '' + + # Flag to indicate whether the module requires explicit user acceptance for install/update/save + # RequireLicenseAcceptance = $false + + # External dependent modules of this module + # ExternalModuleDependencies = @() + + } # End of PSData hashtable + + } # End of PrivateData hashtable + +# HelpInfo URI of this module +# HelpInfoURI = '' + +# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. +# DefaultCommandPrefix = '' + +} + diff --git a/src/VMWare/Az.VMWare.psm1 b/src/VMWare/Az.VMWare.psm1 new file mode 100644 index 000000000000..728e2b636941 --- /dev/null +++ b/src/VMWare/Az.VMWare.psm1 @@ -0,0 +1,109 @@ +# region Generated + # ---------------------------------------------------------------------------------- + # + # 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. + # ---------------------------------------------------------------------------------- + # Load required Az.Accounts module + $accountsName = 'Az.Accounts' + $accountsModule = Get-Module -Name $accountsName + if(-not $accountsModule) { + $localAccountsPath = Join-Path $PSScriptRoot 'generated\modules' + if(Test-Path -Path $localAccountsPath) { + $localAccounts = Get-ChildItem -Path $localAccountsPath -Recurse -Include 'Az.Accounts.psd1' | Select-Object -Last 1 + if($localAccounts) { + $accountsModule = Import-Module -Name ($localAccounts.FullName) -Scope Global -PassThru + } + } + if(-not $accountsModule) { + $hasAdequateVersion = (Get-Module -Name $accountsName -ListAvailable | Where-Object { $_.Version -ge [System.Version]'1.8.1' } | Measure-Object).Count -gt 0 + if($hasAdequateVersion) { + $accountsModule = Import-Module -Name $accountsName -MinimumVersion 1.8.1 -Scope Global -PassThru + } + } + } + + if(-not $accountsModule) { + Write-Error "`nThis module requires $accountsName version 1.8.1 or greater. For installation instructions, please see: https://docs.microsoft.com/en-us/powershell/azure/install-az-ps" -ErrorAction Stop + } elseif (($accountsModule.Version -lt [System.Version]'1.8.1') -and (-not $localAccounts)) { + Write-Error "`nThis module requires $accountsName version 1.8.1 or greater. An earlier version of Az.Accounts is imported in the current PowerShell session. If you are running test, please try to remove '.PSSharedModules' in your home directory. Otherwise please open a new PowerShell session and import this module again.`nAdditionally, this error could indicate that multiple incompatible versions of Azure PowerShell modules are installed on your system. For troubleshooting information, please see: https://aka.ms/azps-version-error" -ErrorAction Stop + } + Write-Information "Loaded Module '$($accountsModule.Name)'" + + # Load the private module dll + $null = Import-Module -Name (Join-Path $PSScriptRoot './bin/Az.VMWare.private.dll') + + # Get the private module's instance + $instance = [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module]::Instance + + # Ask for the shared functionality table + $VTable = Register-AzModule + + # Tweaks the pipeline on module load + $instance.OnModuleLoad = $VTable.OnModuleLoad + + # Tweaks the pipeline per call + $instance.OnNewRequest = $VTable.OnNewRequest + + # Gets shared parameter values + $instance.GetParameterValue = $VTable.GetParameterValue + + # Allows shared module to listen to events from this module + $instance.EventListener = $VTable.EventListener + + # Gets shared argument completers + $instance.ArgumentCompleter = $VTable.ArgumentCompleter + + # The name of the currently selected Azure profile + $instance.ProfileName = $VTable.ProfileName + + + # Load the custom module + $customModulePath = Join-Path $PSScriptRoot './custom/Az.VMWare.custom.psm1' + if(Test-Path $customModulePath) { + $null = Import-Module -Name $customModulePath + } + + # Export nothing to clear implicit exports + Export-ModuleMember + + # Export proxy cmdlet scripts + $exportsPath = Join-Path $PSScriptRoot './exports' + $directories = Get-ChildItem -Directory -Path $exportsPath + $profileDirectory = $null + if($instance.ProfileName) { + if(($directories | ForEach-Object { $_.Name }) -contains $instance.ProfileName) { + $profileDirectory = $directories | Where-Object { $_.Name -eq $instance.ProfileName } + } else { + # Don't export anything if the profile doesn't exist for the module + $exportsPath = $null + Write-Warning "Selected Azure profile '$($instance.ProfileName)' does not exist for module '$($instance.Name)'. No cmdlets were loaded." + } + } elseif(($directories | Measure-Object).Count -gt 0) { + # Load the last folder if no profile is selected + $profileDirectory = $directories | Select-Object -Last 1 + } + + if($profileDirectory) { + Write-Information "Loaded Azure profile '$($profileDirectory.Name)' for module '$($instance.Name)'" + $exportsPath = $profileDirectory.FullName + } + + if($exportsPath) { + Get-ChildItem -Path $exportsPath -Recurse -Include '*.ps1' -File | ForEach-Object { . $_.FullName } + $cmdletNames = Get-ScriptCmdlet -ScriptFolder $exportsPath + Export-ModuleMember -Function $cmdletNames -Alias (Get-ScriptCmdlet -ScriptFolder $exportsPath -AsAlias) + } + + # Finalize initialization of this module + $instance.Init(); + Write-Information "Loaded Module '$($instance.Name)'" +# endregion diff --git a/src/VMWare/Changelog.md b/src/VMWare/Changelog.md new file mode 100644 index 000000000000..a14cb7de7d23 --- /dev/null +++ b/src/VMWare/Changelog.md @@ -0,0 +1,24 @@ + +## Upcoming Release + +## Version 0.1.0 +* First preview release for module Az.VMWare + diff --git a/src/VMWare/Properties/AssemblyInfo.cs b/src/VMWare/Properties/AssemblyInfo.cs new file mode 100644 index 000000000000..825e9c63664a --- /dev/null +++ b/src/VMWare/Properties/AssemblyInfo.cs @@ -0,0 +1,28 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Reflection; +using System.Runtime.InteropServices; + +[assembly: AssemblyTitle("Microsoft Azure Powershell - VMWare")] +[assembly: AssemblyCompany(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyCompany)] +[assembly: AssemblyProduct(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyProduct)] +[assembly: AssemblyCopyright(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyCopyright)] + +[assembly: ComVisible(false)] +[assembly: CLSCompliant(false)] +[assembly: Guid("191c05e7-936b-49dd-82cc-fe8c3f1039c4")] +[assembly: AssemblyVersion("0.1.0")] +[assembly: AssemblyFileVersion("0.1.0")] diff --git a/src/VMWare/VMWare.sln b/src/VMWare/VMWare.sln new file mode 100644 index 000000000000..4e6878c40789 --- /dev/null +++ b/src/VMWare/VMWare.sln @@ -0,0 +1,48 @@ +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29709.97 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Accounts", "..\Accounts\Accounts\Accounts.csproj", "{142D7B0B-388A-4CEB-A228-7F6D423C5C2E}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Authentication", "..\Accounts\Authentication\Authentication.csproj", "{62843FE6-7575-4D88-B989-7DF7EEC0BC01}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Authentication.ResourceManager", "..\Accounts\Authentication.ResourceManager\Authentication.ResourceManager.csproj", "{442C609B-A431-4A71-B289-08F0B63C83E5}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Authenticators", "..\Accounts\Authenticators\Authenticators.csproj", "{59E8F6B8-8F0E-403F-B88B-9736DBC396D9}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Az.VMWare", "Az.VMWare.csproj", "{1C203C0C-E0FD-40D2-B79E-C6DA52E4E350}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Release|Any CPU.Build.0 = Release|Any CPU + {62843FE6-7575-4D88-B989-7DF7EEC0BC01}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {62843FE6-7575-4D88-B989-7DF7EEC0BC01}.Debug|Any CPU.Build.0 = Debug|Any CPU + {62843FE6-7575-4D88-B989-7DF7EEC0BC01}.Release|Any CPU.ActiveCfg = Release|Any CPU + {62843FE6-7575-4D88-B989-7DF7EEC0BC01}.Release|Any CPU.Build.0 = Release|Any CPU + {442C609B-A431-4A71-B289-08F0B63C83E5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {442C609B-A431-4A71-B289-08F0B63C83E5}.Debug|Any CPU.Build.0 = Debug|Any CPU + {442C609B-A431-4A71-B289-08F0B63C83E5}.Release|Any CPU.ActiveCfg = Release|Any CPU + {442C609B-A431-4A71-B289-08F0B63C83E5}.Release|Any CPU.Build.0 = Release|Any CPU + {59E8F6B8-8F0E-403F-B88B-9736DBC396D9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {59E8F6B8-8F0E-403F-B88B-9736DBC396D9}.Debug|Any CPU.Build.0 = Debug|Any CPU + {59E8F6B8-8F0E-403F-B88B-9736DBC396D9}.Release|Any CPU.ActiveCfg = Release|Any CPU + {59E8F6B8-8F0E-403F-B88B-9736DBC396D9}.Release|Any CPU.Build.0 = Release|Any CPU + {1C203C0C-E0FD-40D2-B79E-C6DA52E4E350}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {1C203C0C-E0FD-40D2-B79E-C6DA52E4E350}.Debug|Any CPU.Build.0 = Debug|Any CPU + {1C203C0C-E0FD-40D2-B79E-C6DA52E4E350}.Release|Any CPU.ActiveCfg = Release|Any CPU + {1C203C0C-E0FD-40D2-B79E-C6DA52E4E350}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {F9B3D96E-9680-40BE-A917-02EE655D6030} + EndGlobalSection +EndGlobal diff --git a/src/VMWare/build-module.ps1 b/src/VMWare/build-module.ps1 new file mode 100644 index 000000000000..20946a4d1f9d --- /dev/null +++ b/src/VMWare/build-module.ps1 @@ -0,0 +1,153 @@ +# ---------------------------------------------------------------------------------- +# +# 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. +# ---------------------------------------------------------------------------------- +param([switch]$Isolated, [switch]$Run, [switch]$Test, [switch]$Docs, [switch]$Pack, [switch]$Code, [switch]$Release, [switch]$Debugger, [switch]$NoDocs) +$ErrorActionPreference = 'Stop' + +if($PSEdition -ne 'Core') { + Write-Error 'This script requires PowerShell Core to execute. [Note] Generated cmdlets will work in both PowerShell Core or Windows PowerShell.' +} + +if(-not $Isolated -and -not $Debugger) { + Write-Host -ForegroundColor Green 'Creating isolated process...' + $pwsh = [System.Diagnostics.Process]::GetCurrentProcess().Path + & "$pwsh" -NonInteractive -NoLogo -NoProfile -File $MyInvocation.MyCommand.Path @PSBoundParameters -Isolated + + if($LastExitCode -ne 0) { + # Build failed. Don't attempt to run the module. + return + } + + if($Test) { + . (Join-Path $PSScriptRoot 'test-module.ps1') + if($LastExitCode -ne 0) { + # Tests failed. Don't attempt to run the module. + return + } + } + + if($Docs) { + . (Join-Path $PSScriptRoot 'generate-help.ps1') + if($LastExitCode -ne 0) { + # Docs generation failed. Don't attempt to run the module. + return + } + } + + if($Pack) { + . (Join-Path $PSScriptRoot 'pack-module.ps1') + if($LastExitCode -ne 0) { + # Packing failed. Don't attempt to run the module. + return + } + } + + $runModulePath = Join-Path $PSScriptRoot 'run-module.ps1' + if($Code) { + . $runModulePath -Code + } elseif($Run) { + . $runModulePath + } else { + Write-Host -ForegroundColor Cyan "To run this module in an isolated PowerShell session, run the 'run-module.ps1' script or provide the '-Run' parameter to this script." + } + return +} + +$binFolder = Join-Path $PSScriptRoot 'bin' +$objFolder = Join-Path $PSScriptRoot 'obj' + +if(-not $Debugger) { + Write-Host -ForegroundColor Green 'Cleaning build folders...' + $null = Remove-Item -Recurse -ErrorAction SilentlyContinue -Path $binFolder, $objFolder + + if((Test-Path $binFolder) -or (Test-Path $objFolder)) { + Write-Host -ForegroundColor Cyan 'Did you forget to exit your isolated module session before rebuilding?' + Write-Error 'Unable to clean ''bin'' or ''obj'' folder. A process may have an open handle.' + } + + Write-Host -ForegroundColor Green 'Compiling module...' + $buildConfig = 'Debug' + if($Release) { + $buildConfig = 'Release' + } + dotnet publish $PSScriptRoot --verbosity quiet --configuration $buildConfig /nologo + if($LastExitCode -ne 0) { + Write-Error 'Compilation failed.' + } + + $null = Remove-Item -Recurse -ErrorAction SilentlyContinue -Path (Join-Path $binFolder 'Debug'), (Join-Path $binFolder 'Release') +} + +$dll = Join-Path $PSScriptRoot 'bin\Az.VMWare.private.dll' +if(-not (Test-Path $dll)) { + Write-Error "Unable to find output assembly in '$binFolder'." +} + +# Load DLL to use build-time cmdlets +$null = Import-Module -Name $dll + +$modulePaths = $dll +$customPsm1 = Join-Path $PSScriptRoot 'custom\Az.VMWare.custom.psm1' +if(Test-Path $customPsm1) { + $modulePaths = @($dll, $customPsm1) +} + +$exportsFolder = Join-Path $PSScriptRoot 'exports' +if(Test-Path $exportsFolder) { + $null = Get-ChildItem -Path $exportsFolder -Recurse -Exclude 'readme.md' | Remove-Item -Recurse -ErrorAction SilentlyContinue +} +$null = New-Item -ItemType Directory -Force -Path $exportsFolder + +$internalFolder = Join-Path $PSScriptRoot 'internal' +if(Test-Path $internalFolder) { + $null = Get-ChildItem -Path $internalFolder -Recurse -Exclude '*.psm1', 'readme.md' | Remove-Item -Recurse -ErrorAction SilentlyContinue +} +$null = New-Item -ItemType Directory -Force -Path $internalFolder + +$psd1 = Join-Path $PSScriptRoot './Az.VMWare.psd1' +$guid = Get-ModuleGuid -Psd1Path $psd1 +$moduleName = 'Az.VMWare' +$examplesFolder = Join-Path $PSScriptRoot 'examples' +$null = New-Item -ItemType Directory -Force -Path $examplesFolder + +if($NoDocs) { + Write-Host -ForegroundColor Green 'Creating exports...' + Export-ProxyCmdlet -ModuleName $moduleName -ModulePath $modulePaths -ExportsFolder $exportsFolder -InternalFolder $internalFolder -ExcludeDocs +} else { + Write-Host -ForegroundColor Green 'Creating exports and docs...' + $moduleDescription = 'Microsoft Azure PowerShell: VMWare cmdlets' + $docsFolder = Join-Path $PSScriptRoot 'docs' + if(Test-Path $docsFolder) { + $null = Get-ChildItem -Path $docsFolder -Recurse -Exclude 'readme.md' | Remove-Item -Recurse -ErrorAction SilentlyContinue + } + $null = New-Item -ItemType Directory -Force -Path $docsFolder + Export-ProxyCmdlet -ModuleName $moduleName -ModulePath $modulePaths -ExportsFolder $exportsFolder -InternalFolder $internalFolder -ModuleDescription $moduleDescription -DocsFolder $docsFolder -ExamplesFolder $examplesFolder -ModuleGuid $guid +} + +Write-Host -ForegroundColor Green 'Creating format.ps1xml...' +$formatPs1xml = Join-Path $PSScriptRoot './Az.VMWare.format.ps1xml' +Export-FormatPs1xml -FilePath $formatPs1xml + +Write-Host -ForegroundColor Green 'Creating psd1...' +$customFolder = Join-Path $PSScriptRoot 'custom' +Export-Psd1 -ExportsFolder $exportsFolder -CustomFolder $customFolder -Psd1Path $psd1 -ModuleGuid $guid + +Write-Host -ForegroundColor Green 'Creating test stubs...' +$testFolder = Join-Path $PSScriptRoot 'test' +$null = New-Item -ItemType Directory -Force -Path $testFolder +Export-TestStub -ModuleName $moduleName -ExportsFolder $exportsFolder -OutputFolder $testFolder + +Write-Host -ForegroundColor Green 'Creating example stubs...' +Export-ExampleStub -ExportsFolder $exportsFolder -OutputFolder $examplesFolder + +Write-Host -ForegroundColor Green '-------------Done-------------' diff --git a/src/VMWare/check-dependencies.ps1 b/src/VMWare/check-dependencies.ps1 new file mode 100644 index 000000000000..513c52ca2fb5 --- /dev/null +++ b/src/VMWare/check-dependencies.ps1 @@ -0,0 +1,64 @@ +# ---------------------------------------------------------------------------------- +# +# 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. +# ---------------------------------------------------------------------------------- +param([switch]$Isolated, [switch]$Accounts, [switch]$Pester, [switch]$Resources) +$ErrorActionPreference = 'Stop' + +if(-not $Isolated) { + Write-Host -ForegroundColor Green 'Creating isolated process...' + $pwsh = [System.Diagnostics.Process]::GetCurrentProcess().Path + & "$pwsh" -NoExit -NoLogo -NoProfile -File $MyInvocation.MyCommand.Path @PSBoundParameters -Isolated + return +} + +function DownloadModule ([bool]$predicate, [string]$path, [string]$moduleName, [string]$versionMinimum, [string]$requiredVersion) { + if($predicate) { + $module = Get-Module -ListAvailable -Name $moduleName + if((-not $module) -or ($versionMinimum -and ($module | ForEach-Object { $_.Version } | Where-Object { $_ -ge [System.Version]$versionMinimum } | Measure-Object).Count -eq 0)) { + $null = New-Item -ItemType Directory -Force -Path $path + Write-Host -ForegroundColor Green "Installing local $moduleName module into '$path'..." + if ($requiredVersion) { + Find-Module -Name $moduleName -RequiredVersion $requiredVersion -Repository PSGallery | Save-Module -Path $path + }elseif($versionMinimum) { + Find-Module -Name $moduleName -MinimumVersion $versionMinimum -Repository PSGallery | Save-Module -Path $path + } else { + Find-Module -Name $moduleName -Repository PSGallery | Save-Module -Path $path + } + } + } +} + +$ProgressPreference = 'SilentlyContinue' +$all = (@($Accounts.IsPresent, $Pester.IsPresent) | Select-Object -Unique | Measure-Object).Count -eq 1 + +$localModulesPath = Join-Path $PSScriptRoot 'generated\modules' +if(Test-Path -Path $localModulesPath) { + $env:PSModulePath = "$localModulesPath$([IO.Path]::PathSeparator)$env:PSModulePath" +} + +DownloadModule -predicate ($all -or $Accounts) -path $localModulesPath -moduleName 'Az.Accounts' -versionMinimum '1.8.1' +DownloadModule -predicate ($all -or $Pester) -path $localModulesPath -moduleName 'Pester' -requiredVersion '4.10.1' + +$tools = Join-Path $PSScriptRoot 'tools' +$resourceDir = Join-Path $tools 'Resources' +$resourceModule = Join-Path $HOME '.PSSharedModules\Resources\Az.Resources.TestSupport.psm1' + +if ($Resources.IsPresent -and (-not (Test-Path -Path $resourceModule))) { + Write-Host -ForegroundColor Green "Building local Resource module used for test..." + Set-Location $resourceDir + $null = autorest-beta .\readme.md --output-folder=$HOME/.PSSharedModules/Resources + $null = Copy-Item custom/* $HOME/.PSSharedModules/Resources/custom/ + Set-Location $HOME/.PSSharedModules/Resources + $null = .\build-module.ps1 + Set-Location $PSScriptRoot +} diff --git a/src/VMWare/custom/Az.VMWare.custom.psm1 b/src/VMWare/custom/Az.VMWare.custom.psm1 new file mode 100644 index 000000000000..0e076ea19589 --- /dev/null +++ b/src/VMWare/custom/Az.VMWare.custom.psm1 @@ -0,0 +1,17 @@ +# region Generated + # Load the private module dll + $null = Import-Module -PassThru -Name (Join-Path $PSScriptRoot '..\bin\Az.VMWare.private.dll') + + # Load the internal module + $internalModulePath = Join-Path $PSScriptRoot '..\internal\Az.VMWare.internal.psm1' + if(Test-Path $internalModulePath) { + $null = Import-Module -Name $internalModulePath + } + + # Export nothing to clear implicit exports + Export-ModuleMember + + # Export script cmdlets + Get-ChildItem -Path $PSScriptRoot -Recurse -Include '*.ps1' -File | ForEach-Object { . $_.FullName } + Export-ModuleMember -Function (Get-ScriptCmdlet -ScriptFolder $PSScriptRoot) -Alias (Get-ScriptCmdlet -ScriptFolder $PSScriptRoot -AsAlias) +# endregion diff --git a/src/VMWare/custom/New-AzVMWarePrivateCloud.ps1 b/src/VMWare/custom/New-AzVMWarePrivateCloud.ps1 new file mode 100644 index 000000000000..3db46476febb --- /dev/null +++ b/src/VMWare/custom/New-AzVMWarePrivateCloud.ps1 @@ -0,0 +1,200 @@ + +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.Synopsis +Create or update a private cloud +.Description +Create or update a private cloud +.Example +```powershell +PS C:\> New-AzVMWarePrivateCloud -Name azps-test-cloud -ResourceGroupName azps-test-group -NetworkBlock 192.168.48.0/22 -SkuName av36 -ManagementClusterSize 3 -Location australiaeast + +Location Name Type +-------- ---- ---- +australiaeast azps-test-cloud Microsoft.AVS/privateClouds +``` + +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +IDENTITYSOURCE : vCenter Single Sign On Identity Sources + [Alias ]: The domain's NetBIOS name + [BaseGroupDn ]: The base distinguished name for groups + [BaseUserDn ]: The base distinguished name for users + [Domain ]: The domain's dns name + [Name ]: The name of the identity source + [Password ]: The password of the Active Directory user with a minimum of read-only access to Base DN for users and groups. + [PrimaryServer ]: Primary server URL + [SecondaryServer ]: Secondary server URL + [Ssl ]: Protect LDAP communication using SSL certificate (LDAPS) + [Username ]: The ID of an Active Directory user with a minimum of read-only access to Base DN for users and group +.Link +https://docs.microsoft.com/en-us/powershell/module/az.vmware/new-azvmwareprivatecloud +#> +function New-AzVMWarePrivateCloud { + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud])] + [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] + param( + [Parameter(Mandatory)] + [Alias('PrivateCloudName')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # Name of the private cloud + ${Name}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # The name of the resource group. + # The name is case insensitive. + ${ResourceGroupName}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # The ID of the target subscription. + ${SubscriptionId}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [System.String] + # The block of addresses should be unique across VNet in your subscription as well as on-premise. + # Make sure the CIDR format is conformed to (A.B.C.D/X) where A,B,C,D are between 0 and 255, and X is between 0 and 22 + ${NetworkBlock}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [System.String] + # The name of the SKU. + ${Sku}, + + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum])] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum] + # Connectivity to internet is enabled or disabled + ${Internet}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [System.String] + # Resource location + ${Location}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [System.Int32] + # The cluster size + ${ManagementClusterSize}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [System.String] + # Optionally, set the NSX-T Manager password when the private cloud is created + ${NsxtPassword}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResourceTags]))] + [System.Collections.Hashtable] + # Resource tags + ${Tag}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [System.String] + # Optionally, set the vCenter admin password when the private cloud is created + ${VcenterPassword}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} + ) + + process { + try { + if($PSBoundParameters.ContainsKey('Sku')) { + $sku = $PSBoundParameters['Sku'] + $PSBoundParameters.Remove('Sku') + $PSBoundParameters.Add('SkuName', $sku) + } + Az.VMWare.internal\New-AzVMWarePrivateCloud @PSBoundParameters + } catch { + throw + } + } +} + \ No newline at end of file diff --git a/src/VMWare/custom/readme.md b/src/VMWare/custom/readme.md new file mode 100644 index 000000000000..88fb5b84ce23 --- /dev/null +++ b/src/VMWare/custom/readme.md @@ -0,0 +1,41 @@ +# Custom +This directory contains custom implementation for non-generated cmdlets for the `Az.VMWare` module. Both scripts (`.ps1`) and C# files (`.cs`) can be implemented here. They will be used during the build process in `build-module.ps1`, and create cmdlets into the `..\exports` folder. The only generated file into this folder is the `Az.VMWare.custom.psm1`. This file should not be modified. + +## Info +- Modifiable: yes +- Generated: partial +- Committed: yes +- Packaged: yes + +## Details +For `Az.VMWare` to use custom cmdlets, it does this two different ways. We **highly recommend** creating script cmdlets, as they are easier to write and allow access to the other exported cmdlets. C# cmdlets *cannot access exported cmdlets*. + +For C# cmdlets, they are compiled with the rest of the generated low-level cmdlets into the `./bin/Az.VMWare.private.dll`. The names of the cmdlets (methods) and files must follow the `[cmdletName]_[variantName]` syntax used for generated cmdlets. The `variantName` is used as the `ParameterSetName`, so use something appropriate that doesn't clash with already created variant or parameter set names. You cannot use the `ParameterSetName` property in the `Parameter` attribute on C# cmdlets. Each cmdlet must be separated into variants using the same pattern as seen in the `generated/cmdlets` folder. + +For script cmdlets, these are loaded via the `Az.VMWare.custom.psm1`. Then, during the build process, this module is loaded and processed in the same manner as the C# cmdlets. The fundemental difference is the script cmdlets use the `ParameterSetName` attribute and C# cmdlets do not. To create a script cmdlet variant of a generated cmdlet, simply decorate all parameters in the script with the new `ParameterSetName` in the `Parameter` attribute. This will appropriately treat each parameter set as a separate variant when processed to be exported during the build. + +## Purpose +This allows the modules to have cmdlets that were not defined in the REST specification. It also allows combining logic using generated cmdlets. This is a level of customization beyond what can be done using the [readme configuration options](https://github.com/Azure/autorest/blob/master/docs/powershell/options.md) that are currently available. These custom cmdlets are then referenced by the cmdlets created at build-time in the `..\exports` folder. + +## Usage +The easiest way currently to start developing custom cmdlets is to copy an existing cmdlet. For C# cmdlets, copy one from the `generated/cmdlets` folder. For script cmdlets, build the project using `build-module.ps1` and copy one of the scripts from the `..\exports` folder. After that, if you want to add new parameter sets, follow the guidelines in the `Details` section above. For implementing a new cmdlets, at minimum, please keep these parameters: +- Break +- DefaultProfile +- HttpPipelineAppend +- HttpPipelinePrepend +- Proxy +- ProxyCredential +- ProxyUseDefaultCredentials + +These provide functionality to our HTTP pipeline and other useful features. In script, you can forward these parameters using `$PSBoundParameters` to the other cmdlets you're calling within `Az.VMWare`. For C#, follow the usage seen in the `ProcessRecordAsync` method. + +### Attributes +For processing the cmdlets, we've created some additional attributes: +- `Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.DescriptionAttribute` + - Used in C# cmdlets to provide a high-level description of the cmdlet. This is propegated to reference documentation via [help comments](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_comment_based_help) in the exported scripts. +- `Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.DoNotExportAttribute` + - Used in C# and script cmdlets to suppress creating an exported cmdlet at build-time. These cmdlets will *not be exposed* by `Az.VMWare`. +- `Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.InternalExportAttribute` + - Used in C# cmdlets to route exported cmdlets to the `..\internal`, which are *not exposed* by `Az.VMWare`. For more information, see [readme.md](..\internal/readme.md) in the `..\internal` folder. +- `Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.ProfileAttribute` + - Used in C# and script cmdlets to define which Azure profiles the cmdlet supports. This is only supported for Azure (`--azure`) modules. \ No newline at end of file diff --git a/src/VMWare/examples/Get-AzVMWareAuthorization.md b/src/VMWare/examples/Get-AzVMWareAuthorization.md new file mode 100644 index 000000000000..87a511c94471 --- /dev/null +++ b/src/VMWare/examples/Get-AzVMWareAuthorization.md @@ -0,0 +1,25 @@ +### Example 1: Get authorization +```powershell +PS C:\> Get-AzVMWareAuthorization -Name azps-test-auth -PrivateCloudName azps-test-cloud -ResourceGroupName azps-test-group + + + +Name Type +---- ---- +azps-test-auth Microsoft.AVS/privateClouds/authorizations +``` + +This cmdlet gets authorization `azps-test-auth` under private cloud `azps-test-cloud` + +### Example 2: List authorization +```powershell +PS C:\> Get-AzVMWareAuthorization -PrivateCloudName azps-test-cloud -ResourceGroupName azps-test-group + + + +Name Type +---- ---- +azps-test-auth Microsoft.AVS/privateClouds/authorizations +``` + +This cmdlet lists authorization `azps-test-auth` under private cloud `azps-test-cloud` \ No newline at end of file diff --git a/src/VMWare/examples/Get-AzVMWareCluster.md b/src/VMWare/examples/Get-AzVMWareCluster.md new file mode 100644 index 000000000000..1e0d74698587 --- /dev/null +++ b/src/VMWare/examples/Get-AzVMWareCluster.md @@ -0,0 +1,22 @@ +### Example 1: Get cluster +```powershell +PS C:\> Get-AzVMWareCluster -Name azps-test-cluster -PrivateCloudName azps-test-cloud -ResourceGroupName azps-test-group + +Name Type +---- ---- +azps-test-cluster Microsoft.AVS/privateClouds/clusters +``` + +Get cluster + +### Example 2: List clusters +```powershell +PS C:\> Get-AzVMWareCluster -PrivateCloudName azps-test-cloud -ResourceGroupName azps-test-group + +Name Type +---- ---- +azps-test-cluster Microsoft.AVS/privateClouds/clusters +``` + +List clusters + diff --git a/src/VMWare/examples/Get-AzVMWarePrivateCloud.md b/src/VMWare/examples/Get-AzVMWarePrivateCloud.md new file mode 100644 index 000000000000..eed32064fd54 --- /dev/null +++ b/src/VMWare/examples/Get-AzVMWarePrivateCloud.md @@ -0,0 +1,32 @@ +### Example 1: List private cloud under subscription +```powershell +PS C:\> Get-AzVMWarePrivateCloud + +Location Name Type +-------- ---- ---- +australiaeast azps-test-cloud Microsoft.AVS/privateClouds +``` + +List private cloud under subscription + +### Example 2: List private cloud under resource group +```powershell +PS C:\> Get-AzVMWarePrivateCloud -ResourceGroupName azps-test-group + +Location Name Type +-------- ---- ---- +australiaeast azps-test-cloud Microsoft.AVS/privateClouds +``` + +List private cloud under resource group + +### Example 3: Get private cloud +```powershell +PS C:\> Get-AzVMWarePrivateCloud -ResourceGroupName azps-test-group -Name azps-test-cloud + +Location Name Type +-------- ---- ---- +australiaeast azps-test-cloud Microsoft.AVS/privateClouds +``` + +Get private cloud \ No newline at end of file diff --git a/src/VMWare/examples/Get-AzVMWarePrivateCloudAdminCredentials.md b/src/VMWare/examples/Get-AzVMWarePrivateCloudAdminCredentials.md new file mode 100644 index 000000000000..219c46720d73 --- /dev/null +++ b/src/VMWare/examples/Get-AzVMWarePrivateCloudAdminCredentials.md @@ -0,0 +1,11 @@ +### Example 1: Get admin credential of private cloud +```powershell +PS C:\> Get-AzVMWarePrivateCloudAdminCredentials -PrivateCloudName azps-test-cloud -ResourceGroupName azps-test-group + +NsxtPassword NsxtUsername VcenterPassword VcenterUsername +------------ ------------ --------------- --------------- +************ admin ************ cloudadmin@vsphere.local +``` + +Get admin credential of private cloud + diff --git a/src/VMWare/examples/New-AzVMWareAuthorization.md b/src/VMWare/examples/New-AzVMWareAuthorization.md new file mode 100644 index 000000000000..d2432992ec2a --- /dev/null +++ b/src/VMWare/examples/New-AzVMWareAuthorization.md @@ -0,0 +1,12 @@ +### Example 1: Create autorization +```powershell +PS C:\> New-AzVMWareAuthorization -Name azps-test-auth -PrivateCloudName azps-test-cloud -ResourceGroupName azps-test-group + + + +Name Type +---- ---- +azps-test-auth Microsoft.AVS/privateClouds/authorizations +``` + +This cmdlet creates authorization `azps-test-auth` under private cloud `azps-test-cloud` diff --git a/src/VMWare/examples/New-AzVMWareCluster.md b/src/VMWare/examples/New-AzVMWareCluster.md new file mode 100644 index 000000000000..2e1c17ecb4c9 --- /dev/null +++ b/src/VMWare/examples/New-AzVMWareCluster.md @@ -0,0 +1,11 @@ +### Example 1: Create cluster +```powershell +PS C:\> New-AzVMWareCluster -Name azps-test-cluster -PrivateCloudName azps-test-cloud -ResourceGroupName azps-test-group -ClusterSize 3 -SkuName av36 + +Name Type +---- ---- +azps-test-cluster Microsoft.AVS/privateClouds/clusters +``` + +Create cluster + diff --git a/src/VMWare/examples/New-AzVMWarePrivateCloud.md b/src/VMWare/examples/New-AzVMWarePrivateCloud.md new file mode 100644 index 000000000000..0ee590f651c5 --- /dev/null +++ b/src/VMWare/examples/New-AzVMWarePrivateCloud.md @@ -0,0 +1,11 @@ +### Example 1: Create private cloud +```powershell +PS C:\> New-AzVMWarePrivateCloud -Name azps-test-cloud -ResourceGroupName azps-test-group -NetworkBlock 192.168.48.0/22 -SkuName av36 -ManagementClusterSize 3 -Location australiaeast + +Location Name Type +-------- ---- ---- +australiaeast azps-test-cloud Microsoft.AVS/privateClouds +``` + +Create private cloud + diff --git a/src/VMWare/examples/Remove-AzVMWareAuthorization.md b/src/VMWare/examples/Remove-AzVMWareAuthorization.md new file mode 100644 index 000000000000..36851539ca6e --- /dev/null +++ b/src/VMWare/examples/Remove-AzVMWareAuthorization.md @@ -0,0 +1,9 @@ +### Example 1: Delete authorization for private cloud +```powershell +PS C:\> Remove-AzVMWareAuthorization -Name azps-test-auth -PrivateCloudName azps-test-cloud -ResourceGroupName azps-test-group + +``` + +Delete authorization for private cloud + + diff --git a/src/VMWare/examples/Remove-AzVMWareCluster.md b/src/VMWare/examples/Remove-AzVMWareCluster.md new file mode 100644 index 000000000000..9fbe9d2c638e --- /dev/null +++ b/src/VMWare/examples/Remove-AzVMWareCluster.md @@ -0,0 +1,8 @@ +### Example 1: Delete cluster in private cloud +```powershell +PS C:\> Remove-AzVMWareCluster -Name azps-test-cluster -PrivateCloudName azps-test-cloud -ResourceGroupName azps-test-group + +``` + +Delete cluster in private cloud + diff --git a/src/VMWare/examples/Remove-AzVMWarePrivateCloud.md b/src/VMWare/examples/Remove-AzVMWarePrivateCloud.md new file mode 100644 index 000000000000..c403554c23d8 --- /dev/null +++ b/src/VMWare/examples/Remove-AzVMWarePrivateCloud.md @@ -0,0 +1,8 @@ +### Example 1: Delete private cloud +```powershell +PS C:\> Remove-AzVMWarePrivateCloud -ResourceGroupName azps-test-group -Name azps-test-cloud + +``` + +Delete private cloud + diff --git a/src/VMWare/examples/Test-AzVMWareLocationQuotaAvailability.md b/src/VMWare/examples/Test-AzVMWareLocationQuotaAvailability.md new file mode 100644 index 000000000000..9c3870e08b56 --- /dev/null +++ b/src/VMWare/examples/Test-AzVMWareLocationQuotaAvailability.md @@ -0,0 +1,11 @@ +### Example 1: Check quota availability +```powershell +PS C:\> Test-AzVMWareLocationQuotaAvailability -Location eastus + +Enabled +------- +Disabled +``` + +Check quota availability + diff --git a/src/VMWare/examples/Test-AzVMWareLocationTrialAvailability.md b/src/VMWare/examples/Test-AzVMWareLocationTrialAvailability.md new file mode 100644 index 000000000000..ce25a7a92a2d --- /dev/null +++ b/src/VMWare/examples/Test-AzVMWareLocationTrialAvailability.md @@ -0,0 +1,11 @@ +### Example 1: Check trial availability +```powershell +PS C:\> Test-AzVMWareLocationTrialAvailability -Location australiaeast + +AvailableHost Status +------------- ------ +0 TrialDisabled +``` + +Check trial availability + diff --git a/src/VMWare/examples/Update-AzVMWareCluster.md b/src/VMWare/examples/Update-AzVMWareCluster.md new file mode 100644 index 000000000000..9bd064e5f624 --- /dev/null +++ b/src/VMWare/examples/Update-AzVMWareCluster.md @@ -0,0 +1,22 @@ +### Example 1: Update cluster size by name +```powershell +PS C:\> Update-AzVMWareCluster -Name azps-test-cluster -PrivateCloudName azps-test-cloud -ResourceGroupName azps-test-group -ClusterSize 4 + +Name Type +---- ---- +azps-test-cluster Microsoft.AVS/privateClouds/clusters +``` + +Update cluster size by name + +### Example 2: Update cluster size by input object +```powershell +PS C:\> Get-AzVMWareCluster -Name azps-test-cluster -PrivateCloudName azps-test-cloud -ResourceGroupName azps-test-group | Update-AzVMWareCluster -ClusterSize 4 + +Name Type +---- ---- +azps-test-cluster Microsoft.AVS/privateClouds/clusters +``` + +Update cluster size by input object + diff --git a/src/VMWare/examples/Update-AzVMWarePrivateCloud.md b/src/VMWare/examples/Update-AzVMWarePrivateCloud.md new file mode 100644 index 000000000000..f440e876b375 --- /dev/null +++ b/src/VMWare/examples/Update-AzVMWarePrivateCloud.md @@ -0,0 +1,21 @@ +### Example 1: Update size of private cloud by name +```powershell +PS C:\> Update-AzVMWarePrivateCloud -Name azps-test-cloud -ResourceGroupName azps-test-group -ManagementClusterSize 4 + +Location Name Type +-------- ---- ---- +australiaeast azps-test-cloud Microsoft.AVS/privateClouds +``` + +Update size of private cloud by name + +### Example 2: Update size of private cloud by input object +```powershell +PS C:\> Get-AzVMWarePrivateCloud -ResourceGroupName azps-test-group -Name azps-test-cloud | Update-AzVMWarePrivateCloud -ManagementClusterSize 4 + +Location Name Type +-------- ---- ---- +australiaeast azps-test-cloud Microsoft.AVS/privateClouds +``` + +Update size of private cloud by input object diff --git a/src/VMWare/export-surface.ps1 b/src/VMWare/export-surface.ps1 new file mode 100644 index 000000000000..67a2e71f5726 --- /dev/null +++ b/src/VMWare/export-surface.ps1 @@ -0,0 +1,40 @@ +# ---------------------------------------------------------------------------------- +# +# 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. +# ---------------------------------------------------------------------------------- +param([switch]$Isolated, [switch]$IncludeGeneralParameters, [switch]$UseExpandedFormat) +$ErrorActionPreference = 'Stop' + +$pwsh = [System.Diagnostics.Process]::GetCurrentProcess().Path +if(-not $Isolated) { + Write-Host -ForegroundColor Green 'Creating isolated process...' + & "$pwsh" -NonInteractive -NoLogo -NoProfile -File $MyInvocation.MyCommand.Path @PSBoundParameters -Isolated + return +} + +$dll = Join-Path $PSScriptRoot 'bin\Az.VMWare.private.dll' +if(-not (Test-Path $dll)) { + Write-Error "Unable to find output assembly in '$binFolder'." +} +$null = Import-Module -Name $dll + +$moduleName = 'Az.VMWare' +$exportsFolder = Join-Path $PSScriptRoot 'exports' +$resourcesFolder = Join-Path $PSScriptRoot 'resources' + +Export-CmdletSurface -ModuleName $moduleName -CmdletFolder $exportsFolder -OutputFolder $resourcesFolder -IncludeGeneralParameters $IncludeGeneralParameters.IsPresent -UseExpandedFormat $UseExpandedFormat.IsPresent +Write-Host -ForegroundColor Green "CmdletSurface file(s) created in '$resourcesFolder'" + +Export-ModelSurface -OutputFolder $resourcesFolder -UseExpandedFormat $UseExpandedFormat.IsPresent +Write-Host -ForegroundColor Green "ModelSurface file created in '$resourcesFolder'" + +Write-Host -ForegroundColor Green '-------------Done-------------' \ No newline at end of file diff --git a/src/VMWare/exports/Get-AzVMWareAuthorization.ps1 b/src/VMWare/exports/Get-AzVMWareAuthorization.ps1 new file mode 100644 index 000000000000..23428c4505fb --- /dev/null +++ b/src/VMWare/exports/Get-AzVMWareAuthorization.ps1 @@ -0,0 +1,187 @@ + +# ---------------------------------------------------------------------------------- +# +# 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 +Get an ExpressRoute Circuit Authorization by name in a private cloud +.Description +Get an ExpressRoute Circuit Authorization by name in a private cloud +.Example +PS C:\> Get-AzVMWareAuthorization -Name azps-test-auth -PrivateCloudName azps-test-cloud -ResourceGroupName azps-test-group + + + +Name Type +---- ---- +azps-test-auth Microsoft.AVS/privateClouds/authorizations +.Example +PS C:\> Get-AzVMWareAuthorization -PrivateCloudName azps-test-cloud -ResourceGroupName azps-test-group + + + +Name Type +---- ---- +azps-test-auth Microsoft.AVS/privateClouds/authorizations + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorization +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [AuthorizationName ]: Name of the ExpressRoute Circuit Authorization in the private cloud + [ClusterName ]: Name of the cluster in the private cloud + [HcxEnterpriseSiteName ]: Name of the HCX Enterprise Site in the private cloud + [Id ]: Resource identity path + [Location ]: Azure region + [PrivateCloudName ]: Name of the private cloud + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. + [SubscriptionId ]: The ID of the target subscription. +.Link +https://docs.microsoft.com/en-us/powershell/module/az.vmware/get-azvmwareauthorization +#> +function Get-AzVMWareAuthorization { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorization])] +[CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] +param( + [Parameter(ParameterSetName='Get', Mandatory)] + [Alias('AuthorizationName')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # Name of the ExpressRoute Circuit Authorization in the private cloud + ${Name}, + + [Parameter(ParameterSetName='Get', Mandatory)] + [Parameter(ParameterSetName='List', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # Name of the private cloud + ${PrivateCloudName}, + + [Parameter(ParameterSetName='Get', Mandatory)] + [Parameter(ParameterSetName='List', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # The name of the resource group. + # The name is case insensitive. + ${ResourceGroupName}, + + [Parameter(ParameterSetName='Get')] + [Parameter(ParameterSetName='List')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String[]] + # The ID of the target subscription. + ${SubscriptionId}, + + [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + Get = 'Az.VMWare.private\Get-AzVMWareAuthorization_Get'; + GetViaIdentity = 'Az.VMWare.private\Get-AzVMWareAuthorization_GetViaIdentity'; + List = 'Az.VMWare.private\Get-AzVMWareAuthorization_List'; + } + if (('Get', 'List') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} diff --git a/src/VMWare/exports/Get-AzVMWareCluster.ps1 b/src/VMWare/exports/Get-AzVMWareCluster.ps1 new file mode 100644 index 000000000000..17d98022d439 --- /dev/null +++ b/src/VMWare/exports/Get-AzVMWareCluster.ps1 @@ -0,0 +1,183 @@ + +# ---------------------------------------------------------------------------------- +# +# 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 +Get a cluster by name in a private cloud +.Description +Get a cluster by name in a private cloud +.Example +PS C:\> Get-AzVMWareCluster -Name azps-test-cluster -PrivateCloudName azps-test-cloud -ResourceGroupName azps-test-group + +Name Type +---- ---- +azps-test-cluster Microsoft.AVS/privateClouds/clusters +.Example +PS C:\> Get-AzVMWareCluster -PrivateCloudName azps-test-cloud -ResourceGroupName azps-test-group + +Name Type +---- ---- +azps-test-cluster Microsoft.AVS/privateClouds/clusters + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICluster +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [AuthorizationName ]: Name of the ExpressRoute Circuit Authorization in the private cloud + [ClusterName ]: Name of the cluster in the private cloud + [HcxEnterpriseSiteName ]: Name of the HCX Enterprise Site in the private cloud + [Id ]: Resource identity path + [Location ]: Azure region + [PrivateCloudName ]: Name of the private cloud + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. + [SubscriptionId ]: The ID of the target subscription. +.Link +https://docs.microsoft.com/en-us/powershell/module/az.vmware/get-azvmwarecluster +#> +function Get-AzVMWareCluster { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICluster])] +[CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] +param( + [Parameter(ParameterSetName='Get', Mandatory)] + [Alias('ClusterName')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # Name of the cluster in the private cloud + ${Name}, + + [Parameter(ParameterSetName='Get', Mandatory)] + [Parameter(ParameterSetName='List', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # Name of the private cloud + ${PrivateCloudName}, + + [Parameter(ParameterSetName='Get', Mandatory)] + [Parameter(ParameterSetName='List', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # The name of the resource group. + # The name is case insensitive. + ${ResourceGroupName}, + + [Parameter(ParameterSetName='Get')] + [Parameter(ParameterSetName='List')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String[]] + # The ID of the target subscription. + ${SubscriptionId}, + + [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + Get = 'Az.VMWare.private\Get-AzVMWareCluster_Get'; + GetViaIdentity = 'Az.VMWare.private\Get-AzVMWareCluster_GetViaIdentity'; + List = 'Az.VMWare.private\Get-AzVMWareCluster_List'; + } + if (('Get', 'List') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} diff --git a/src/VMWare/exports/Get-AzVMWarePrivateCloud.ps1 b/src/VMWare/exports/Get-AzVMWarePrivateCloud.ps1 new file mode 100644 index 000000000000..ac448905082b --- /dev/null +++ b/src/VMWare/exports/Get-AzVMWarePrivateCloud.ps1 @@ -0,0 +1,184 @@ + +# ---------------------------------------------------------------------------------- +# +# 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 +Get a private cloud +.Description +Get a private cloud +.Example +PS C:\> Get-AzVMWarePrivateCloud + +Location Name Type +-------- ---- ---- +australiaeast azps-test-cloud Microsoft.AVS/privateClouds +.Example +PS C:\> Get-AzVMWarePrivateCloud -ResourceGroupName azps-test-group + +Location Name Type +-------- ---- ---- +australiaeast azps-test-cloud Microsoft.AVS/privateClouds +.Example +PS C:\> Get-AzVMWarePrivateCloud -ResourceGroupName azps-test-group -Name azps-test-cloud + +Location Name Type +-------- ---- ---- +australiaeast azps-test-cloud Microsoft.AVS/privateClouds + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [AuthorizationName ]: Name of the ExpressRoute Circuit Authorization in the private cloud + [ClusterName ]: Name of the cluster in the private cloud + [HcxEnterpriseSiteName ]: Name of the HCX Enterprise Site in the private cloud + [Id ]: Resource identity path + [Location ]: Azure region + [PrivateCloudName ]: Name of the private cloud + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. + [SubscriptionId ]: The ID of the target subscription. +.Link +https://docs.microsoft.com/en-us/powershell/module/az.vmware/get-azvmwareprivatecloud +#> +function Get-AzVMWarePrivateCloud { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud])] +[CmdletBinding(DefaultParameterSetName='List1', PositionalBinding=$false)] +param( + [Parameter(ParameterSetName='Get', Mandatory)] + [Alias('PrivateCloudName')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # Name of the private cloud + ${Name}, + + [Parameter(ParameterSetName='Get', Mandatory)] + [Parameter(ParameterSetName='List', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # The name of the resource group. + # The name is case insensitive. + ${ResourceGroupName}, + + [Parameter(ParameterSetName='Get')] + [Parameter(ParameterSetName='List')] + [Parameter(ParameterSetName='List1')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String[]] + # The ID of the target subscription. + ${SubscriptionId}, + + [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + Get = 'Az.VMWare.private\Get-AzVMWarePrivateCloud_Get'; + GetViaIdentity = 'Az.VMWare.private\Get-AzVMWarePrivateCloud_GetViaIdentity'; + List = 'Az.VMWare.private\Get-AzVMWarePrivateCloud_List'; + List1 = 'Az.VMWare.private\Get-AzVMWarePrivateCloud_List1'; + } + if (('Get', 'List', 'List1') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} diff --git a/src/VMWare/exports/Get-AzVMWarePrivateCloudAdminCredentials.ps1 b/src/VMWare/exports/Get-AzVMWarePrivateCloudAdminCredentials.ps1 new file mode 100644 index 000000000000..e544e7025657 --- /dev/null +++ b/src/VMWare/exports/Get-AzVMWarePrivateCloudAdminCredentials.ps1 @@ -0,0 +1,142 @@ + +# ---------------------------------------------------------------------------------- +# +# 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 +List the admin credentials for the private cloud +.Description +List the admin credentials for the private cloud +.Example +PS C:\> Get-AzVMWarePrivateCloudAdminCredentials -PrivateCloudName azps-test-cloud -ResourceGroupName azps-test-group + +NsxtPassword NsxtUsername VcenterPassword VcenterUsername +------------ ------------ --------------- --------------- +************ admin ************ cloudadmin@vsphere.local + +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IAdminCredentials +.Link +https://docs.microsoft.com/en-us/powershell/module/az.vmware/get-azvmwareprivatecloudadmincredentials +#> +function Get-AzVMWarePrivateCloudAdminCredentials { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IAdminCredentials])] +[CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # Name of the private cloud + ${PrivateCloudName}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # The name of the resource group. + # The name is case insensitive. + ${ResourceGroupName}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String[]] + # The ID of the target subscription. + ${SubscriptionId}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + List = 'Az.VMWare.private\Get-AzVMWarePrivateCloudAdminCredentials_List'; + } + if (('List') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} diff --git a/src/VMWare/exports/New-AzVMWareAuthorization.ps1 b/src/VMWare/exports/New-AzVMWareAuthorization.ps1 new file mode 100644 index 000000000000..e4e29507f5e8 --- /dev/null +++ b/src/VMWare/exports/New-AzVMWareAuthorization.ps1 @@ -0,0 +1,163 @@ + +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.Synopsis +Create or update an ExpressRoute Circuit Authorization in a private cloud +.Description +Create or update an ExpressRoute Circuit Authorization in a private cloud +.Example +PS C:\> New-AzVMWareAuthorization -Name azps-test-auth -PrivateCloudName azps-test-cloud -ResourceGroupName azps-test-group + + + +Name Type +---- ---- +azps-test-auth Microsoft.AVS/privateClouds/authorizations + +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorization +.Link +https://docs.microsoft.com/en-us/powershell/module/az.vmware/new-azvmwareauthorization +#> +function New-AzVMWareAuthorization { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorization])] +[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(Mandatory)] + [Alias('AuthorizationName')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # Name of the ExpressRoute Circuit Authorization in the private cloud + ${Name}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # The name of the private cloud. + ${PrivateCloudName}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # The name of the resource group. + # The name is case insensitive. + ${ResourceGroupName}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # The ID of the target subscription. + ${SubscriptionId}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + CreateExpanded = 'Az.VMWare.private\New-AzVMWareAuthorization_CreateExpanded'; + } + if (('CreateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} diff --git a/src/VMWare/exports/New-AzVMWareCluster.ps1 b/src/VMWare/exports/New-AzVMWareCluster.ps1 new file mode 100644 index 000000000000..d98e5a461245 --- /dev/null +++ b/src/VMWare/exports/New-AzVMWareCluster.ps1 @@ -0,0 +1,173 @@ + +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.Synopsis +Create or update a cluster in a private cloud +.Description +Create or update a cluster in a private cloud +.Example +PS C:\> New-AzVMWareCluster -Name azps-test-cluster -PrivateCloudName azps-test-cloud -ResourceGroupName azps-test-group -ClusterSize 3 -SkuName av36 + +Name Type +---- ---- +azps-test-cluster Microsoft.AVS/privateClouds/clusters + +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICluster +.Link +https://docs.microsoft.com/en-us/powershell/module/az.vmware/new-azvmwarecluster +#> +function New-AzVMWareCluster { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICluster])] +[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(Mandatory)] + [Alias('ClusterName')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # Name of the cluster in the private cloud + ${Name}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # The name of the private cloud. + ${PrivateCloudName}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # The name of the resource group. + # The name is case insensitive. + ${ResourceGroupName}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # The ID of the target subscription. + ${SubscriptionId}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [System.Int32] + # The cluster size + ${ClusterSize}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [System.String] + # The name of the SKU. + ${SkuName}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + CreateExpanded = 'Az.VMWare.private\New-AzVMWareCluster_CreateExpanded'; + } + if (('CreateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} diff --git a/src/VMWare/exports/New-AzVMWarePrivateCloud.ps1 b/src/VMWare/exports/New-AzVMWarePrivateCloud.ps1 new file mode 100644 index 000000000000..adc77a328db6 --- /dev/null +++ b/src/VMWare/exports/New-AzVMWarePrivateCloud.ps1 @@ -0,0 +1,206 @@ + +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.Synopsis +Create or update a private cloud +.Description +Create or update a private cloud +.Example +PS C:\> New-AzVMWarePrivateCloud -Name azps-test-cloud -ResourceGroupName azps-test-group -NetworkBlock 192.168.48.0/22 -SkuName av36 -ManagementClusterSize 3 -Location australiaeast + +Location Name Type +-------- ---- ---- +australiaeast azps-test-cloud Microsoft.AVS/privateClouds + +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud +.Link +https://docs.microsoft.com/en-us/powershell/module/az.vmware/new-azvmwareprivatecloud +#> +function New-AzVMWarePrivateCloud { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud])] +[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(Mandatory)] + [Alias('PrivateCloudName')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # Name of the private cloud + ${Name}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # The name of the resource group. + # The name is case insensitive. + ${ResourceGroupName}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # The ID of the target subscription. + ${SubscriptionId}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [System.String] + # The block of addresses should be unique across VNet in your subscription as well as on-premise. + # Make sure the CIDR format is conformed to (A.B.C.D/X) where A,B,C,D are between 0 and 255, and X is between 0 and 22 + ${NetworkBlock}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [System.String] + # The name of the SKU. + ${Sku}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [System.String] + # Resource location + ${Location}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [System.Int32] + # The cluster size + ${ManagementClusterSize}, + + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum])] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum] + # Connectivity to internet is enabled or disabled + ${Internet}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [System.String] + # Optionally, set the NSX-T Manager password when the private cloud is created + ${NsxtPassword}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResourceTags]))] + [System.Collections.Hashtable] + # Resource tags + ${Tag}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [System.String] + # Optionally, set the vCenter admin password when the private cloud is created + ${VcenterPassword}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + CreateExpanded = 'Az.VMWare.custom\New-AzVMWarePrivateCloud'; + } + if (('CreateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} diff --git a/src/VMWare/exports/ProxyCmdletDefinitions.ps1 b/src/VMWare/exports/ProxyCmdletDefinitions.ps1 new file mode 100644 index 000000000000..02f171eac845 --- /dev/null +++ b/src/VMWare/exports/ProxyCmdletDefinitions.ps1 @@ -0,0 +1,2535 @@ + +# ---------------------------------------------------------------------------------- +# +# 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 +Get an ExpressRoute Circuit Authorization by name in a private cloud +.Description +Get an ExpressRoute Circuit Authorization by name in a private cloud +.Example +PS C:\> Get-AzVMWareAuthorization -Name azps-test-auth -PrivateCloudName azps-test-cloud -ResourceGroupName azps-test-group + + + +Name Type +---- ---- +azps-test-auth Microsoft.AVS/privateClouds/authorizations +.Example +PS C:\> Get-AzVMWareAuthorization -PrivateCloudName azps-test-cloud -ResourceGroupName azps-test-group + + + +Name Type +---- ---- +azps-test-auth Microsoft.AVS/privateClouds/authorizations + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorization +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [AuthorizationName ]: Name of the ExpressRoute Circuit Authorization in the private cloud + [ClusterName ]: Name of the cluster in the private cloud + [HcxEnterpriseSiteName ]: Name of the HCX Enterprise Site in the private cloud + [Id ]: Resource identity path + [Location ]: Azure region + [PrivateCloudName ]: Name of the private cloud + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. + [SubscriptionId ]: The ID of the target subscription. +.Link +https://docs.microsoft.com/en-us/powershell/module/az.vmware/get-azvmwareauthorization +#> +function Get-AzVMWareAuthorization { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorization])] +[CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] +param( + [Parameter(ParameterSetName='Get', Mandatory)] + [Alias('AuthorizationName')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # Name of the ExpressRoute Circuit Authorization in the private cloud + ${Name}, + + [Parameter(ParameterSetName='Get', Mandatory)] + [Parameter(ParameterSetName='List', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # Name of the private cloud + ${PrivateCloudName}, + + [Parameter(ParameterSetName='Get', Mandatory)] + [Parameter(ParameterSetName='List', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # The name of the resource group. + # The name is case insensitive. + ${ResourceGroupName}, + + [Parameter(ParameterSetName='Get')] + [Parameter(ParameterSetName='List')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String[]] + # The ID of the target subscription. + ${SubscriptionId}, + + [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + Get = 'Az.VMWare.private\Get-AzVMWareAuthorization_Get'; + GetViaIdentity = 'Az.VMWare.private\Get-AzVMWareAuthorization_GetViaIdentity'; + List = 'Az.VMWare.private\Get-AzVMWareAuthorization_List'; + } + if (('Get', 'List') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} + +# ---------------------------------------------------------------------------------- +# +# 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 +Get a cluster by name in a private cloud +.Description +Get a cluster by name in a private cloud +.Example +PS C:\> Get-AzVMWareCluster -Name azps-test-cluster -PrivateCloudName azps-test-cloud -ResourceGroupName azps-test-group + +Name Type +---- ---- +azps-test-cluster Microsoft.AVS/privateClouds/clusters +.Example +PS C:\> Get-AzVMWareCluster -PrivateCloudName azps-test-cloud -ResourceGroupName azps-test-group + +Name Type +---- ---- +azps-test-cluster Microsoft.AVS/privateClouds/clusters + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICluster +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [AuthorizationName ]: Name of the ExpressRoute Circuit Authorization in the private cloud + [ClusterName ]: Name of the cluster in the private cloud + [HcxEnterpriseSiteName ]: Name of the HCX Enterprise Site in the private cloud + [Id ]: Resource identity path + [Location ]: Azure region + [PrivateCloudName ]: Name of the private cloud + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. + [SubscriptionId ]: The ID of the target subscription. +.Link +https://docs.microsoft.com/en-us/powershell/module/az.vmware/get-azvmwarecluster +#> +function Get-AzVMWareCluster { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICluster])] +[CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] +param( + [Parameter(ParameterSetName='Get', Mandatory)] + [Alias('ClusterName')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # Name of the cluster in the private cloud + ${Name}, + + [Parameter(ParameterSetName='Get', Mandatory)] + [Parameter(ParameterSetName='List', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # Name of the private cloud + ${PrivateCloudName}, + + [Parameter(ParameterSetName='Get', Mandatory)] + [Parameter(ParameterSetName='List', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # The name of the resource group. + # The name is case insensitive. + ${ResourceGroupName}, + + [Parameter(ParameterSetName='Get')] + [Parameter(ParameterSetName='List')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String[]] + # The ID of the target subscription. + ${SubscriptionId}, + + [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + Get = 'Az.VMWare.private\Get-AzVMWareCluster_Get'; + GetViaIdentity = 'Az.VMWare.private\Get-AzVMWareCluster_GetViaIdentity'; + List = 'Az.VMWare.private\Get-AzVMWareCluster_List'; + } + if (('Get', 'List') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} + +# ---------------------------------------------------------------------------------- +# +# 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 +List the admin credentials for the private cloud +.Description +List the admin credentials for the private cloud +.Example +PS C:\> Get-AzVMWarePrivateCloudAdminCredentials -PrivateCloudName azps-test-cloud -ResourceGroupName azps-test-group + +NsxtPassword NsxtUsername VcenterPassword VcenterUsername +------------ ------------ --------------- --------------- +************ admin ************ cloudadmin@vsphere.local + +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IAdminCredentials +.Link +https://docs.microsoft.com/en-us/powershell/module/az.vmware/get-azvmwareprivatecloudadmincredentials +#> +function Get-AzVMWarePrivateCloudAdminCredentials { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IAdminCredentials])] +[CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # Name of the private cloud + ${PrivateCloudName}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # The name of the resource group. + # The name is case insensitive. + ${ResourceGroupName}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String[]] + # The ID of the target subscription. + ${SubscriptionId}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + List = 'Az.VMWare.private\Get-AzVMWarePrivateCloudAdminCredentials_List'; + } + if (('List') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} + +# ---------------------------------------------------------------------------------- +# +# 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 +Get a private cloud +.Description +Get a private cloud +.Example +PS C:\> Get-AzVMWarePrivateCloud + +Location Name Type +-------- ---- ---- +australiaeast azps-test-cloud Microsoft.AVS/privateClouds +.Example +PS C:\> Get-AzVMWarePrivateCloud -ResourceGroupName azps-test-group + +Location Name Type +-------- ---- ---- +australiaeast azps-test-cloud Microsoft.AVS/privateClouds +.Example +PS C:\> Get-AzVMWarePrivateCloud -ResourceGroupName azps-test-group -Name azps-test-cloud + +Location Name Type +-------- ---- ---- +australiaeast azps-test-cloud Microsoft.AVS/privateClouds + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [AuthorizationName ]: Name of the ExpressRoute Circuit Authorization in the private cloud + [ClusterName ]: Name of the cluster in the private cloud + [HcxEnterpriseSiteName ]: Name of the HCX Enterprise Site in the private cloud + [Id ]: Resource identity path + [Location ]: Azure region + [PrivateCloudName ]: Name of the private cloud + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. + [SubscriptionId ]: The ID of the target subscription. +.Link +https://docs.microsoft.com/en-us/powershell/module/az.vmware/get-azvmwareprivatecloud +#> +function Get-AzVMWarePrivateCloud { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud])] +[CmdletBinding(DefaultParameterSetName='List1', PositionalBinding=$false)] +param( + [Parameter(ParameterSetName='Get', Mandatory)] + [Alias('PrivateCloudName')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # Name of the private cloud + ${Name}, + + [Parameter(ParameterSetName='Get', Mandatory)] + [Parameter(ParameterSetName='List', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # The name of the resource group. + # The name is case insensitive. + ${ResourceGroupName}, + + [Parameter(ParameterSetName='Get')] + [Parameter(ParameterSetName='List')] + [Parameter(ParameterSetName='List1')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String[]] + # The ID of the target subscription. + ${SubscriptionId}, + + [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + Get = 'Az.VMWare.private\Get-AzVMWarePrivateCloud_Get'; + GetViaIdentity = 'Az.VMWare.private\Get-AzVMWarePrivateCloud_GetViaIdentity'; + List = 'Az.VMWare.private\Get-AzVMWarePrivateCloud_List'; + List1 = 'Az.VMWare.private\Get-AzVMWarePrivateCloud_List1'; + } + if (('Get', 'List', 'List1') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} + +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.Synopsis +Create or update an ExpressRoute Circuit Authorization in a private cloud +.Description +Create or update an ExpressRoute Circuit Authorization in a private cloud +.Example +PS C:\> New-AzVMWareAuthorization -Name azps-test-auth -PrivateCloudName azps-test-cloud -ResourceGroupName azps-test-group + + + +Name Type +---- ---- +azps-test-auth Microsoft.AVS/privateClouds/authorizations + +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorization +.Link +https://docs.microsoft.com/en-us/powershell/module/az.vmware/new-azvmwareauthorization +#> +function New-AzVMWareAuthorization { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorization])] +[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(Mandatory)] + [Alias('AuthorizationName')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # Name of the ExpressRoute Circuit Authorization in the private cloud + ${Name}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # The name of the private cloud. + ${PrivateCloudName}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # The name of the resource group. + # The name is case insensitive. + ${ResourceGroupName}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # The ID of the target subscription. + ${SubscriptionId}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + CreateExpanded = 'Az.VMWare.private\New-AzVMWareAuthorization_CreateExpanded'; + } + if (('CreateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} + +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.Synopsis +Create or update a cluster in a private cloud +.Description +Create or update a cluster in a private cloud +.Example +PS C:\> New-AzVMWareCluster -Name azps-test-cluster -PrivateCloudName azps-test-cloud -ResourceGroupName azps-test-group -ClusterSize 3 -SkuName av36 + +Name Type +---- ---- +azps-test-cluster Microsoft.AVS/privateClouds/clusters + +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICluster +.Link +https://docs.microsoft.com/en-us/powershell/module/az.vmware/new-azvmwarecluster +#> +function New-AzVMWareCluster { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICluster])] +[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(Mandatory)] + [Alias('ClusterName')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # Name of the cluster in the private cloud + ${Name}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # The name of the private cloud. + ${PrivateCloudName}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # The name of the resource group. + # The name is case insensitive. + ${ResourceGroupName}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # The ID of the target subscription. + ${SubscriptionId}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [System.Int32] + # The cluster size + ${ClusterSize}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [System.String] + # The name of the SKU. + ${SkuName}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + CreateExpanded = 'Az.VMWare.private\New-AzVMWareCluster_CreateExpanded'; + } + if (('CreateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} + +# ---------------------------------------------------------------------------------- +# +# 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 +Delete an ExpressRoute Circuit Authorization in a private cloud +.Description +Delete an ExpressRoute Circuit Authorization in a private cloud +.Example +PS C:\> Remove-AzVMWareAuthorization -Name azps-test-auth -PrivateCloudName azps-test-cloud -ResourceGroupName azps-test-group + + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity +.Outputs +System.Boolean +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [AuthorizationName ]: Name of the ExpressRoute Circuit Authorization in the private cloud + [ClusterName ]: Name of the cluster in the private cloud + [HcxEnterpriseSiteName ]: Name of the HCX Enterprise Site in the private cloud + [Id ]: Resource identity path + [Location ]: Azure region + [PrivateCloudName ]: Name of the private cloud + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. + [SubscriptionId ]: The ID of the target subscription. +.Link +https://docs.microsoft.com/en-us/powershell/module/az.vmware/remove-azvmwareauthorization +#> +function Remove-AzVMWareAuthorization { +[OutputType([System.Boolean])] +[CmdletBinding(DefaultParameterSetName='Delete', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(ParameterSetName='Delete', Mandatory)] + [Alias('AuthorizationName')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # Name of the ExpressRoute Circuit Authorization in the private cloud + ${Name}, + + [Parameter(ParameterSetName='Delete', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # Name of the private cloud + ${PrivateCloudName}, + + [Parameter(ParameterSetName='Delete', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # The name of the resource group. + # The name is case insensitive. + ${ResourceGroupName}, + + [Parameter(ParameterSetName='Delete')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # The ID of the target subscription. + ${SubscriptionId}, + + [Parameter(ParameterSetName='DeleteViaIdentity', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Returns true when the command succeeds + ${PassThru}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + Delete = 'Az.VMWare.private\Remove-AzVMWareAuthorization_Delete'; + DeleteViaIdentity = 'Az.VMWare.private\Remove-AzVMWareAuthorization_DeleteViaIdentity'; + } + if (('Delete') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} + +# ---------------------------------------------------------------------------------- +# +# 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 +Delete a cluster in a private cloud +.Description +Delete a cluster in a private cloud +.Example +PS C:\> Remove-AzVMWareCluster -Name azps-test-cluster -PrivateCloudName azps-test-cloud -ResourceGroupName azps-test-group + + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity +.Outputs +System.Boolean +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [AuthorizationName ]: Name of the ExpressRoute Circuit Authorization in the private cloud + [ClusterName ]: Name of the cluster in the private cloud + [HcxEnterpriseSiteName ]: Name of the HCX Enterprise Site in the private cloud + [Id ]: Resource identity path + [Location ]: Azure region + [PrivateCloudName ]: Name of the private cloud + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. + [SubscriptionId ]: The ID of the target subscription. +.Link +https://docs.microsoft.com/en-us/powershell/module/az.vmware/remove-azvmwarecluster +#> +function Remove-AzVMWareCluster { +[OutputType([System.Boolean])] +[CmdletBinding(DefaultParameterSetName='Delete', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(ParameterSetName='Delete', Mandatory)] + [Alias('ClusterName')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # Name of the cluster in the private cloud + ${Name}, + + [Parameter(ParameterSetName='Delete', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # Name of the private cloud + ${PrivateCloudName}, + + [Parameter(ParameterSetName='Delete', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # The name of the resource group. + # The name is case insensitive. + ${ResourceGroupName}, + + [Parameter(ParameterSetName='Delete')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # The ID of the target subscription. + ${SubscriptionId}, + + [Parameter(ParameterSetName='DeleteViaIdentity', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Returns true when the command succeeds + ${PassThru}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + Delete = 'Az.VMWare.private\Remove-AzVMWareCluster_Delete'; + DeleteViaIdentity = 'Az.VMWare.private\Remove-AzVMWareCluster_DeleteViaIdentity'; + } + if (('Delete') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} + +# ---------------------------------------------------------------------------------- +# +# 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 +Delete a private cloud +.Description +Delete a private cloud +.Example +PS C:\> Remove-AzVMWarePrivateCloud -ResourceGroupName azps-test-group -Name azps-test-cloud + + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity +.Outputs +System.Boolean +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [AuthorizationName ]: Name of the ExpressRoute Circuit Authorization in the private cloud + [ClusterName ]: Name of the cluster in the private cloud + [HcxEnterpriseSiteName ]: Name of the HCX Enterprise Site in the private cloud + [Id ]: Resource identity path + [Location ]: Azure region + [PrivateCloudName ]: Name of the private cloud + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. + [SubscriptionId ]: The ID of the target subscription. +.Link +https://docs.microsoft.com/en-us/powershell/module/az.vmware/remove-azvmwareprivatecloud +#> +function Remove-AzVMWarePrivateCloud { +[OutputType([System.Boolean])] +[CmdletBinding(DefaultParameterSetName='Delete', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(ParameterSetName='Delete', Mandatory)] + [Alias('PrivateCloudName')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # Name of the private cloud + ${Name}, + + [Parameter(ParameterSetName='Delete', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # The name of the resource group. + # The name is case insensitive. + ${ResourceGroupName}, + + [Parameter(ParameterSetName='Delete')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # The ID of the target subscription. + ${SubscriptionId}, + + [Parameter(ParameterSetName='DeleteViaIdentity', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Returns true when the command succeeds + ${PassThru}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + Delete = 'Az.VMWare.private\Remove-AzVMWarePrivateCloud_Delete'; + DeleteViaIdentity = 'Az.VMWare.private\Remove-AzVMWarePrivateCloud_DeleteViaIdentity'; + } + if (('Delete') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} + +# ---------------------------------------------------------------------------------- +# +# 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 +Return quota for subscription by region +.Description +Return quota for subscription by region +.Example +PS C:\> Test-AzVMWareLocationQuotaAvailability -Location eastus + +Enabled +------- +Disabled + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IQuota +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [AuthorizationName ]: Name of the ExpressRoute Circuit Authorization in the private cloud + [ClusterName ]: Name of the cluster in the private cloud + [HcxEnterpriseSiteName ]: Name of the HCX Enterprise Site in the private cloud + [Id ]: Resource identity path + [Location ]: Azure region + [PrivateCloudName ]: Name of the private cloud + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. + [SubscriptionId ]: The ID of the target subscription. +.Link +https://docs.microsoft.com/en-us/powershell/module/az.vmware/test-azvmwarelocationquotaavailability +#> +function Test-AzVMWareLocationQuotaAvailability { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IQuota])] +[CmdletBinding(DefaultParameterSetName='Check', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(ParameterSetName='Check', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # Azure region + ${Location}, + + [Parameter(ParameterSetName='Check')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # The ID of the target subscription. + ${SubscriptionId}, + + [Parameter(ParameterSetName='CheckViaIdentity', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + Check = 'Az.VMWare.private\Test-AzVMWareLocationQuotaAvailability_Check'; + CheckViaIdentity = 'Az.VMWare.private\Test-AzVMWareLocationQuotaAvailability_CheckViaIdentity'; + } + if (('Check') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} + +# ---------------------------------------------------------------------------------- +# +# 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 +Return trial status for subscription by region +.Description +Return trial status for subscription by region +.Example +PS C:\> Test-AzVMWareLocationTrialAvailability -Location australiaeast + +AvailableHost Status +------------- ------ +0 TrialDisabled + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrial +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [AuthorizationName ]: Name of the ExpressRoute Circuit Authorization in the private cloud + [ClusterName ]: Name of the cluster in the private cloud + [HcxEnterpriseSiteName ]: Name of the HCX Enterprise Site in the private cloud + [Id ]: Resource identity path + [Location ]: Azure region + [PrivateCloudName ]: Name of the private cloud + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. + [SubscriptionId ]: The ID of the target subscription. +.Link +https://docs.microsoft.com/en-us/powershell/module/az.vmware/test-azvmwarelocationtrialavailability +#> +function Test-AzVMWareLocationTrialAvailability { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrial])] +[CmdletBinding(DefaultParameterSetName='Check', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(ParameterSetName='Check', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # Azure region + ${Location}, + + [Parameter(ParameterSetName='Check')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # The ID of the target subscription. + ${SubscriptionId}, + + [Parameter(ParameterSetName='CheckViaIdentity', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + Check = 'Az.VMWare.private\Test-AzVMWareLocationTrialAvailability_Check'; + CheckViaIdentity = 'Az.VMWare.private\Test-AzVMWareLocationTrialAvailability_CheckViaIdentity'; + } + if (('Check') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} + +# ---------------------------------------------------------------------------------- +# +# 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 +Update a cluster in a private cloud +.Description +Update a cluster in a private cloud +.Example +PS C:\> Update-AzVMWareCluster -Name azps-test-cluster -PrivateCloudName azps-test-cloud -ResourceGroupName azps-test-group -ClusterSize 4 + +Name Type +---- ---- +azps-test-cluster Microsoft.AVS/privateClouds/clusters +.Example +PS C:\> Get-AzVMWareCluster -Name azps-test-cluster -PrivateCloudName azps-test-cloud -ResourceGroupName azps-test-group | Update-AzVMWareCluster -ClusterSize 4 + +Name Type +---- ---- +azps-test-cluster Microsoft.AVS/privateClouds/clusters + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICluster +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [AuthorizationName ]: Name of the ExpressRoute Circuit Authorization in the private cloud + [ClusterName ]: Name of the cluster in the private cloud + [HcxEnterpriseSiteName ]: Name of the HCX Enterprise Site in the private cloud + [Id ]: Resource identity path + [Location ]: Azure region + [PrivateCloudName ]: Name of the private cloud + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. + [SubscriptionId ]: The ID of the target subscription. +.Link +https://docs.microsoft.com/en-us/powershell/module/az.vmware/update-azvmwarecluster +#> +function Update-AzVMWareCluster { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICluster])] +[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Alias('ClusterName')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # Name of the cluster in the private cloud + ${Name}, + + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # Name of the private cloud + ${PrivateCloudName}, + + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # The name of the resource group. + # The name is case insensitive. + ${ResourceGroupName}, + + [Parameter(ParameterSetName='UpdateExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # The ID of the target subscription. + ${SubscriptionId}, + + [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [System.Int32] + # The cluster size + ${ClusterSize}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + UpdateExpanded = 'Az.VMWare.private\Update-AzVMWareCluster_UpdateExpanded'; + UpdateViaIdentityExpanded = 'Az.VMWare.private\Update-AzVMWareCluster_UpdateViaIdentityExpanded'; + } + if (('UpdateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} + +# ---------------------------------------------------------------------------------- +# +# 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 +Update a private cloud +.Description +Update a private cloud +.Example +PS C:\> Update-AzVMWarePrivateCloud -Name azps-test-cloud -ResourceGroupName azps-test-group -ManagementClusterSize 4 + +Location Name Type +-------- ---- ---- +australiaeast azps-test-cloud Microsoft.AVS/privateClouds +.Example +PS C:\> Get-AzVMWarePrivateCloud -ResourceGroupName azps-test-group -Name azps-test-cloud | Update-AzVMWarePrivateCloud -ManagementClusterSize 4 + +Location Name Type +-------- ---- ---- +australiaeast azps-test-cloud Microsoft.AVS/privateClouds + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +IDENTITYSOURCE : vCenter Single Sign On Identity Sources + [Alias ]: The domain's NetBIOS name + [BaseGroupDn ]: The base distinguished name for groups + [BaseUserDn ]: The base distinguished name for users + [Domain ]: The domain's dns name + [Name ]: The name of the identity source + [Password ]: The password of the Active Directory user with a minimum of read-only access to Base DN for users and groups. + [PrimaryServer ]: Primary server URL + [SecondaryServer ]: Secondary server URL + [Ssl ]: Protect LDAP communication using SSL certificate (LDAPS) + [Username ]: The ID of an Active Directory user with a minimum of read-only access to Base DN for users and group + +INPUTOBJECT : Identity Parameter + [AuthorizationName ]: Name of the ExpressRoute Circuit Authorization in the private cloud + [ClusterName ]: Name of the cluster in the private cloud + [HcxEnterpriseSiteName ]: Name of the HCX Enterprise Site in the private cloud + [Id ]: Resource identity path + [Location ]: Azure region + [PrivateCloudName ]: Name of the private cloud + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. + [SubscriptionId ]: The ID of the target subscription. +.Link +https://docs.microsoft.com/en-us/powershell/module/az.vmware/update-azvmwareprivatecloud +#> +function Update-AzVMWarePrivateCloud { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud])] +[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Alias('PrivateCloudName')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # Name of the private cloud + ${Name}, + + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # The name of the resource group. + # The name is case insensitive. + ${ResourceGroupName}, + + [Parameter(ParameterSetName='UpdateExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # The ID of the target subscription. + ${SubscriptionId}, + + [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySource[]] + # vCenter Single Sign On Identity Sources + # To construct, see NOTES section for IDENTITYSOURCE properties and create a hash table. + ${IdentitySource}, + + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum])] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum] + # Connectivity to internet is enabled or disabled + ${Internet}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [System.Int32] + # The cluster size + ${ManagementClusterSize}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateTags]))] + [System.Collections.Hashtable] + # Resource tags. + ${Tag}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + UpdateExpanded = 'Az.VMWare.private\Update-AzVMWarePrivateCloud_UpdateExpanded'; + UpdateViaIdentityExpanded = 'Az.VMWare.private\Update-AzVMWarePrivateCloud_UpdateViaIdentityExpanded'; + } + if (('UpdateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} + +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.Synopsis +Create or update a private cloud +.Description +Create or update a private cloud +.Example +PS C:\> New-AzVMWarePrivateCloud -Name azps-test-cloud -ResourceGroupName azps-test-group -NetworkBlock 192.168.48.0/22 -SkuName av36 -ManagementClusterSize 3 -Location australiaeast + +Location Name Type +-------- ---- ---- +australiaeast azps-test-cloud Microsoft.AVS/privateClouds + +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud +.Link +https://docs.microsoft.com/en-us/powershell/module/az.vmware/new-azvmwareprivatecloud +#> +function New-AzVMWarePrivateCloud { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud])] +[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(Mandatory)] + [Alias('PrivateCloudName')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # Name of the private cloud + ${Name}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # The name of the resource group. + # The name is case insensitive. + ${ResourceGroupName}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # The ID of the target subscription. + ${SubscriptionId}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [System.String] + # The block of addresses should be unique across VNet in your subscription as well as on-premise. + # Make sure the CIDR format is conformed to (A.B.C.D/X) where A,B,C,D are between 0 and 255, and X is between 0 and 22 + ${NetworkBlock}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [System.String] + # The name of the SKU. + ${Sku}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [System.String] + # Resource location + ${Location}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [System.Int32] + # The cluster size + ${ManagementClusterSize}, + + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum])] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum] + # Connectivity to internet is enabled or disabled + ${Internet}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [System.String] + # Optionally, set the NSX-T Manager password when the private cloud is created + ${NsxtPassword}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResourceTags]))] + [System.Collections.Hashtable] + # Resource tags + ${Tag}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [System.String] + # Optionally, set the vCenter admin password when the private cloud is created + ${VcenterPassword}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + CreateExpanded = 'Az.VMWare.custom\New-AzVMWarePrivateCloud'; + } + if (('CreateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} diff --git a/src/VMWare/exports/Remove-AzVMWareAuthorization.ps1 b/src/VMWare/exports/Remove-AzVMWareAuthorization.ps1 new file mode 100644 index 000000000000..24abd9e224dc --- /dev/null +++ b/src/VMWare/exports/Remove-AzVMWareAuthorization.ps1 @@ -0,0 +1,188 @@ + +# ---------------------------------------------------------------------------------- +# +# 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 +Delete an ExpressRoute Circuit Authorization in a private cloud +.Description +Delete an ExpressRoute Circuit Authorization in a private cloud +.Example +PS C:\> Remove-AzVMWareAuthorization -Name azps-test-auth -PrivateCloudName azps-test-cloud -ResourceGroupName azps-test-group + + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity +.Outputs +System.Boolean +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [AuthorizationName ]: Name of the ExpressRoute Circuit Authorization in the private cloud + [ClusterName ]: Name of the cluster in the private cloud + [HcxEnterpriseSiteName ]: Name of the HCX Enterprise Site in the private cloud + [Id ]: Resource identity path + [Location ]: Azure region + [PrivateCloudName ]: Name of the private cloud + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. + [SubscriptionId ]: The ID of the target subscription. +.Link +https://docs.microsoft.com/en-us/powershell/module/az.vmware/remove-azvmwareauthorization +#> +function Remove-AzVMWareAuthorization { +[OutputType([System.Boolean])] +[CmdletBinding(DefaultParameterSetName='Delete', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(ParameterSetName='Delete', Mandatory)] + [Alias('AuthorizationName')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # Name of the ExpressRoute Circuit Authorization in the private cloud + ${Name}, + + [Parameter(ParameterSetName='Delete', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # Name of the private cloud + ${PrivateCloudName}, + + [Parameter(ParameterSetName='Delete', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # The name of the resource group. + # The name is case insensitive. + ${ResourceGroupName}, + + [Parameter(ParameterSetName='Delete')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # The ID of the target subscription. + ${SubscriptionId}, + + [Parameter(ParameterSetName='DeleteViaIdentity', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Returns true when the command succeeds + ${PassThru}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + Delete = 'Az.VMWare.private\Remove-AzVMWareAuthorization_Delete'; + DeleteViaIdentity = 'Az.VMWare.private\Remove-AzVMWareAuthorization_DeleteViaIdentity'; + } + if (('Delete') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} diff --git a/src/VMWare/exports/Remove-AzVMWareCluster.ps1 b/src/VMWare/exports/Remove-AzVMWareCluster.ps1 new file mode 100644 index 000000000000..4036046a7946 --- /dev/null +++ b/src/VMWare/exports/Remove-AzVMWareCluster.ps1 @@ -0,0 +1,188 @@ + +# ---------------------------------------------------------------------------------- +# +# 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 +Delete a cluster in a private cloud +.Description +Delete a cluster in a private cloud +.Example +PS C:\> Remove-AzVMWareCluster -Name azps-test-cluster -PrivateCloudName azps-test-cloud -ResourceGroupName azps-test-group + + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity +.Outputs +System.Boolean +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [AuthorizationName ]: Name of the ExpressRoute Circuit Authorization in the private cloud + [ClusterName ]: Name of the cluster in the private cloud + [HcxEnterpriseSiteName ]: Name of the HCX Enterprise Site in the private cloud + [Id ]: Resource identity path + [Location ]: Azure region + [PrivateCloudName ]: Name of the private cloud + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. + [SubscriptionId ]: The ID of the target subscription. +.Link +https://docs.microsoft.com/en-us/powershell/module/az.vmware/remove-azvmwarecluster +#> +function Remove-AzVMWareCluster { +[OutputType([System.Boolean])] +[CmdletBinding(DefaultParameterSetName='Delete', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(ParameterSetName='Delete', Mandatory)] + [Alias('ClusterName')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # Name of the cluster in the private cloud + ${Name}, + + [Parameter(ParameterSetName='Delete', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # Name of the private cloud + ${PrivateCloudName}, + + [Parameter(ParameterSetName='Delete', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # The name of the resource group. + # The name is case insensitive. + ${ResourceGroupName}, + + [Parameter(ParameterSetName='Delete')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # The ID of the target subscription. + ${SubscriptionId}, + + [Parameter(ParameterSetName='DeleteViaIdentity', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Returns true when the command succeeds + ${PassThru}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + Delete = 'Az.VMWare.private\Remove-AzVMWareCluster_Delete'; + DeleteViaIdentity = 'Az.VMWare.private\Remove-AzVMWareCluster_DeleteViaIdentity'; + } + if (('Delete') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} diff --git a/src/VMWare/exports/Remove-AzVMWarePrivateCloud.ps1 b/src/VMWare/exports/Remove-AzVMWarePrivateCloud.ps1 new file mode 100644 index 000000000000..103e58fa771c --- /dev/null +++ b/src/VMWare/exports/Remove-AzVMWarePrivateCloud.ps1 @@ -0,0 +1,182 @@ + +# ---------------------------------------------------------------------------------- +# +# 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 +Delete a private cloud +.Description +Delete a private cloud +.Example +PS C:\> Remove-AzVMWarePrivateCloud -ResourceGroupName azps-test-group -Name azps-test-cloud + + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity +.Outputs +System.Boolean +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [AuthorizationName ]: Name of the ExpressRoute Circuit Authorization in the private cloud + [ClusterName ]: Name of the cluster in the private cloud + [HcxEnterpriseSiteName ]: Name of the HCX Enterprise Site in the private cloud + [Id ]: Resource identity path + [Location ]: Azure region + [PrivateCloudName ]: Name of the private cloud + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. + [SubscriptionId ]: The ID of the target subscription. +.Link +https://docs.microsoft.com/en-us/powershell/module/az.vmware/remove-azvmwareprivatecloud +#> +function Remove-AzVMWarePrivateCloud { +[OutputType([System.Boolean])] +[CmdletBinding(DefaultParameterSetName='Delete', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(ParameterSetName='Delete', Mandatory)] + [Alias('PrivateCloudName')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # Name of the private cloud + ${Name}, + + [Parameter(ParameterSetName='Delete', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # The name of the resource group. + # The name is case insensitive. + ${ResourceGroupName}, + + [Parameter(ParameterSetName='Delete')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # The ID of the target subscription. + ${SubscriptionId}, + + [Parameter(ParameterSetName='DeleteViaIdentity', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Returns true when the command succeeds + ${PassThru}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + Delete = 'Az.VMWare.private\Remove-AzVMWarePrivateCloud_Delete'; + DeleteViaIdentity = 'Az.VMWare.private\Remove-AzVMWarePrivateCloud_DeleteViaIdentity'; + } + if (('Delete') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} diff --git a/src/VMWare/exports/Test-AzVMWareLocationQuotaAvailability.ps1 b/src/VMWare/exports/Test-AzVMWareLocationQuotaAvailability.ps1 new file mode 100644 index 000000000000..7703bb6f3cea --- /dev/null +++ b/src/VMWare/exports/Test-AzVMWareLocationQuotaAvailability.ps1 @@ -0,0 +1,159 @@ + +# ---------------------------------------------------------------------------------- +# +# 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 +Return quota for subscription by region +.Description +Return quota for subscription by region +.Example +PS C:\> Test-AzVMWareLocationQuotaAvailability -Location eastus + +Enabled +------- +Disabled + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IQuota +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [AuthorizationName ]: Name of the ExpressRoute Circuit Authorization in the private cloud + [ClusterName ]: Name of the cluster in the private cloud + [HcxEnterpriseSiteName ]: Name of the HCX Enterprise Site in the private cloud + [Id ]: Resource identity path + [Location ]: Azure region + [PrivateCloudName ]: Name of the private cloud + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. + [SubscriptionId ]: The ID of the target subscription. +.Link +https://docs.microsoft.com/en-us/powershell/module/az.vmware/test-azvmwarelocationquotaavailability +#> +function Test-AzVMWareLocationQuotaAvailability { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IQuota])] +[CmdletBinding(DefaultParameterSetName='Check', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(ParameterSetName='Check', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # Azure region + ${Location}, + + [Parameter(ParameterSetName='Check')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # The ID of the target subscription. + ${SubscriptionId}, + + [Parameter(ParameterSetName='CheckViaIdentity', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + Check = 'Az.VMWare.private\Test-AzVMWareLocationQuotaAvailability_Check'; + CheckViaIdentity = 'Az.VMWare.private\Test-AzVMWareLocationQuotaAvailability_CheckViaIdentity'; + } + if (('Check') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} diff --git a/src/VMWare/exports/Test-AzVMWareLocationTrialAvailability.ps1 b/src/VMWare/exports/Test-AzVMWareLocationTrialAvailability.ps1 new file mode 100644 index 000000000000..0d567dc79ce8 --- /dev/null +++ b/src/VMWare/exports/Test-AzVMWareLocationTrialAvailability.ps1 @@ -0,0 +1,159 @@ + +# ---------------------------------------------------------------------------------- +# +# 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 +Return trial status for subscription by region +.Description +Return trial status for subscription by region +.Example +PS C:\> Test-AzVMWareLocationTrialAvailability -Location australiaeast + +AvailableHost Status +------------- ------ +0 TrialDisabled + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrial +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [AuthorizationName ]: Name of the ExpressRoute Circuit Authorization in the private cloud + [ClusterName ]: Name of the cluster in the private cloud + [HcxEnterpriseSiteName ]: Name of the HCX Enterprise Site in the private cloud + [Id ]: Resource identity path + [Location ]: Azure region + [PrivateCloudName ]: Name of the private cloud + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. + [SubscriptionId ]: The ID of the target subscription. +.Link +https://docs.microsoft.com/en-us/powershell/module/az.vmware/test-azvmwarelocationtrialavailability +#> +function Test-AzVMWareLocationTrialAvailability { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrial])] +[CmdletBinding(DefaultParameterSetName='Check', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(ParameterSetName='Check', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # Azure region + ${Location}, + + [Parameter(ParameterSetName='Check')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # The ID of the target subscription. + ${SubscriptionId}, + + [Parameter(ParameterSetName='CheckViaIdentity', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + Check = 'Az.VMWare.private\Test-AzVMWareLocationTrialAvailability_Check'; + CheckViaIdentity = 'Az.VMWare.private\Test-AzVMWareLocationTrialAvailability_CheckViaIdentity'; + } + if (('Check') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} diff --git a/src/VMWare/exports/Update-AzVMWareCluster.ps1 b/src/VMWare/exports/Update-AzVMWareCluster.ps1 new file mode 100644 index 000000000000..5aedd10a28e4 --- /dev/null +++ b/src/VMWare/exports/Update-AzVMWareCluster.ps1 @@ -0,0 +1,197 @@ + +# ---------------------------------------------------------------------------------- +# +# 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 +Update a cluster in a private cloud +.Description +Update a cluster in a private cloud +.Example +PS C:\> Update-AzVMWareCluster -Name azps-test-cluster -PrivateCloudName azps-test-cloud -ResourceGroupName azps-test-group -ClusterSize 4 + +Name Type +---- ---- +azps-test-cluster Microsoft.AVS/privateClouds/clusters +.Example +PS C:\> Get-AzVMWareCluster -Name azps-test-cluster -PrivateCloudName azps-test-cloud -ResourceGroupName azps-test-group | Update-AzVMWareCluster -ClusterSize 4 + +Name Type +---- ---- +azps-test-cluster Microsoft.AVS/privateClouds/clusters + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICluster +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [AuthorizationName ]: Name of the ExpressRoute Circuit Authorization in the private cloud + [ClusterName ]: Name of the cluster in the private cloud + [HcxEnterpriseSiteName ]: Name of the HCX Enterprise Site in the private cloud + [Id ]: Resource identity path + [Location ]: Azure region + [PrivateCloudName ]: Name of the private cloud + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. + [SubscriptionId ]: The ID of the target subscription. +.Link +https://docs.microsoft.com/en-us/powershell/module/az.vmware/update-azvmwarecluster +#> +function Update-AzVMWareCluster { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICluster])] +[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Alias('ClusterName')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # Name of the cluster in the private cloud + ${Name}, + + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # Name of the private cloud + ${PrivateCloudName}, + + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # The name of the resource group. + # The name is case insensitive. + ${ResourceGroupName}, + + [Parameter(ParameterSetName='UpdateExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # The ID of the target subscription. + ${SubscriptionId}, + + [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [System.Int32] + # The cluster size + ${ClusterSize}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + UpdateExpanded = 'Az.VMWare.private\Update-AzVMWareCluster_UpdateExpanded'; + UpdateViaIdentityExpanded = 'Az.VMWare.private\Update-AzVMWareCluster_UpdateViaIdentityExpanded'; + } + if (('UpdateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} diff --git a/src/VMWare/exports/Update-AzVMWarePrivateCloud.ps1 b/src/VMWare/exports/Update-AzVMWarePrivateCloud.ps1 new file mode 100644 index 000000000000..842f0928b11b --- /dev/null +++ b/src/VMWare/exports/Update-AzVMWarePrivateCloud.ps1 @@ -0,0 +1,224 @@ + +# ---------------------------------------------------------------------------------- +# +# 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 +Update a private cloud +.Description +Update a private cloud +.Example +PS C:\> Update-AzVMWarePrivateCloud -Name azps-test-cloud -ResourceGroupName azps-test-group -ManagementClusterSize 4 + +Location Name Type +-------- ---- ---- +australiaeast azps-test-cloud Microsoft.AVS/privateClouds +.Example +PS C:\> Get-AzVMWarePrivateCloud -ResourceGroupName azps-test-group -Name azps-test-cloud | Update-AzVMWarePrivateCloud -ManagementClusterSize 4 + +Location Name Type +-------- ---- ---- +australiaeast azps-test-cloud Microsoft.AVS/privateClouds + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +IDENTITYSOURCE : vCenter Single Sign On Identity Sources + [Alias ]: The domain's NetBIOS name + [BaseGroupDn ]: The base distinguished name for groups + [BaseUserDn ]: The base distinguished name for users + [Domain ]: The domain's dns name + [Name ]: The name of the identity source + [Password ]: The password of the Active Directory user with a minimum of read-only access to Base DN for users and groups. + [PrimaryServer ]: Primary server URL + [SecondaryServer ]: Secondary server URL + [Ssl ]: Protect LDAP communication using SSL certificate (LDAPS) + [Username ]: The ID of an Active Directory user with a minimum of read-only access to Base DN for users and group + +INPUTOBJECT : Identity Parameter + [AuthorizationName ]: Name of the ExpressRoute Circuit Authorization in the private cloud + [ClusterName ]: Name of the cluster in the private cloud + [HcxEnterpriseSiteName ]: Name of the HCX Enterprise Site in the private cloud + [Id ]: Resource identity path + [Location ]: Azure region + [PrivateCloudName ]: Name of the private cloud + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. + [SubscriptionId ]: The ID of the target subscription. +.Link +https://docs.microsoft.com/en-us/powershell/module/az.vmware/update-azvmwareprivatecloud +#> +function Update-AzVMWarePrivateCloud { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud])] +[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Alias('PrivateCloudName')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # Name of the private cloud + ${Name}, + + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # The name of the resource group. + # The name is case insensitive. + ${ResourceGroupName}, + + [Parameter(ParameterSetName='UpdateExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # The ID of the target subscription. + ${SubscriptionId}, + + [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySource[]] + # vCenter Single Sign On Identity Sources + # To construct, see NOTES section for IDENTITYSOURCE properties and create a hash table. + ${IdentitySource}, + + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum])] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum] + # Connectivity to internet is enabled or disabled + ${Internet}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [System.Int32] + # The cluster size + ${ManagementClusterSize}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateTags]))] + [System.Collections.Hashtable] + # Resource tags. + ${Tag}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + UpdateExpanded = 'Az.VMWare.private\Update-AzVMWarePrivateCloud_UpdateExpanded'; + UpdateViaIdentityExpanded = 'Az.VMWare.private\Update-AzVMWarePrivateCloud_UpdateViaIdentityExpanded'; + } + if (('UpdateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} diff --git a/src/VMWare/exports/readme.md b/src/VMWare/exports/readme.md new file mode 100644 index 000000000000..a89efc2b70e8 --- /dev/null +++ b/src/VMWare/exports/readme.md @@ -0,0 +1,20 @@ +# Exports +This directory contains the cmdlets *exported by* `Az.VMWare`. No other cmdlets in this repository are directly exported. What that means is the `Az.VMWare` module will run [Export-ModuleMember](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/export-modulemember) on the cmldets in this directory. The cmdlets in this directory are generated at **build-time**. Do not put any custom code, files, cmdlets, etc. into this directory. Please use `..\custom` for all custom implementation. + +## Info +- Modifiable: no +- Generated: all +- Committed: no +- Packaged: yes + +## Details +The cmdlets generated here are created every time you run `build-module.ps1`. These cmdlets are a merge of all (excluding `InternalExport`) cmdlets from the private binary (`..\bin\Az.VMWare.private.dll`) and from the `..\custom\Az.VMWare.custom.psm1` module. Cmdlets that are *not merged* from those directories are decorated with the `InternalExport` attribute. This happens when you set the cmdlet to **hide** from configuration. For more information on hiding, see [cmdlet hiding](https://github.com/Azure/autorest/blob/master/docs/powershell/options.md#cmdlet-hiding-exportation-suppression) or the [readme.md](..\internal/readme.md) in the `..\internal` folder. + +## Purpose +We generate script cmdlets out of the binary cmdlets and custom cmdlets. The format of script cmdlets are simplistic; thus, easier to generate at build time. Generating the cmdlets is required as to allow merging of generated binary, hand-written binary, and hand-written custom cmdlets. For Azure cmdlets, having script cmdlets simplifies the mechanism for exporting Azure profiles. + +## Structure +The cmdlets generated here will flat in the directory (no sub-folders) as long as there are no Azure profiles specified for any cmdlets. Azure profiles (the `Profiles` attribute) is only applied when generating with the `--azure` attribute (or `azure: true` in the configuration). When Azure profiles are applied, the folder structure has a folder per profile. Each profile folder has only those cmdlets that apply to that profile. + +## Usage +When `./Az.VMWare.psm1` is loaded, it dynamically exports cmdlets here based on the folder structure and on the selected profile. If there are no sub-folders, it exports all cmdlets at the root of this folder. If there are sub-folders, it checks to see the selected profile. If no profile is selected, it exports the cmdlets in the last sub-folder (alphabetically). If a profile is selected, it exports the cmdlets in the sub-folder that matches the profile name. If there is no sub-folder that matches the profile name, it exports no cmdlets and writes a warning message. \ No newline at end of file diff --git a/src/VMWare/generate-help.ps1 b/src/VMWare/generate-help.ps1 new file mode 100644 index 000000000000..be8d74bef0e9 --- /dev/null +++ b/src/VMWare/generate-help.ps1 @@ -0,0 +1,73 @@ +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- +param([switch]$Isolated) +$ErrorActionPreference = 'Stop' + +$pwsh = [System.Diagnostics.Process]::GetCurrentProcess().Path +if(-not $Isolated) { + Write-Host -ForegroundColor Green 'Creating isolated process...' + & "$pwsh" -NonInteractive -NoLogo -NoProfile -File $MyInvocation.MyCommand.Path @PSBoundParameters -Isolated + return +} + +$exportsFolder = Join-Path $PSScriptRoot 'exports' +if(-not (Test-Path $exportsFolder)) { + Write-Error "Exports folder '$exportsFolder' was not found." +} + +$directories = Get-ChildItem -Directory -Path $exportsFolder +$hasProfiles = ($directories | Measure-Object).Count -gt 0 +if(-not $hasProfiles) { + $directories = Get-Item -Path $exportsFolder +} + +$docsFolder = Join-Path $PSScriptRoot 'docs' +if(Test-Path $docsFolder) { + $null = Get-ChildItem -Path $docsFolder -Recurse -Exclude 'readme.md' | Remove-Item -Recurse -ErrorAction SilentlyContinue +} +$null = New-Item -ItemType Directory -Force -Path $docsFolder -ErrorAction SilentlyContinue +$examplesFolder = Join-Path $PSScriptRoot 'examples' + +$modulePsd1 = Get-Item -Path (Join-Path $PSScriptRoot './Az.VMWare.psd1') +$modulePath = $modulePsd1.FullName +$moduleName = $modulePsd1.BaseName + +# Load DLL to use build-time cmdlets +Import-Module -Name $modulePath +Import-Module -Name (Join-Path $PSScriptRoot './bin/Az.VMWare.private.dll') +$instance = [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module]::Instance +# Module info is shared per profile +$moduleInfo = Get-Module -Name $moduleName + +foreach($directory in $directories) +{ + if($hasProfiles) { + Select-AzProfile -Name $directory.Name + } + # Reload module per profile + Import-Module -Name $modulePath -Force + + $cmdletNames = Get-ScriptCmdlet -ScriptFolder $directory.FullName + $cmdletHelpInfo = $cmdletNames | ForEach-Object { Get-Help -Name $_ -Full } + $cmdletFunctionInfo = Get-ScriptCmdlet -ScriptFolder $directory.FullName -AsFunctionInfo + + $docsPath = Join-Path $docsFolder $directory.Name + $null = New-Item -ItemType Directory -Force -Path $docsPath -ErrorAction SilentlyContinue + $examplesPath = Join-Path $examplesFolder $directory.Name + + Export-HelpMarkdown -ModuleInfo $moduleInfo -FunctionInfo $cmdletFunctionInfo -HelpInfo $cmdletHelpInfo -DocsFolder $docsPath -ExamplesFolder $examplesPath + Write-Host -ForegroundColor Green "Created documentation in '$docsPath'" +} + +Write-Host -ForegroundColor Green '-------------Done-------------' \ No newline at end of file diff --git a/src/VMWare/generated/Module.cs b/src/VMWare/generated/Module.cs new file mode 100644 index 000000000000..be0414597c43 --- /dev/null +++ b/src/VMWare/generated/Module.cs @@ -0,0 +1,158 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + using SendAsyncStepDelegate = global::System.Func, global::System.Threading.Tasks.Task>, global::System.Func, global::System.Threading.Tasks.Task>, global::System.Threading.Tasks.Task>, global::System.Threading.Tasks.Task>; + using PipelineChangeDelegate = global::System.Action, global::System.Threading.Tasks.Task>, global::System.Func, global::System.Threading.Tasks.Task>, global::System.Threading.Tasks.Task>, global::System.Threading.Tasks.Task>>; + using GetParameterDelegate = global::System.Func; + using ModuleLoadPipelineDelegate = global::System.Action, global::System.Threading.Tasks.Task>, global::System.Func, global::System.Threading.Tasks.Task>, global::System.Threading.Tasks.Task>, global::System.Threading.Tasks.Task>>, global::System.Action, global::System.Threading.Tasks.Task>, global::System.Func, global::System.Threading.Tasks.Task>, global::System.Threading.Tasks.Task>, global::System.Threading.Tasks.Task>>>; + using NewRequestPipelineDelegate = global::System.Action, global::System.Threading.Tasks.Task>, global::System.Func, global::System.Threading.Tasks.Task>, global::System.Threading.Tasks.Task>, global::System.Threading.Tasks.Task>>, global::System.Action, global::System.Threading.Tasks.Task>, global::System.Func, global::System.Threading.Tasks.Task>, global::System.Threading.Tasks.Task>, global::System.Threading.Tasks.Task>>>; + using ArgumentCompleterDelegate = global::System.Func; + using SignalDelegate = global::System.Func, global::System.Threading.Tasks.Task>; + using EventListenerDelegate = global::System.Func, global::System.Func, global::System.Threading.Tasks.Task>, global::System.Management.Automation.InvocationInfo, string, string, string, global::System.Exception, global::System.Threading.Tasks.Task>; + using NextDelegate = global::System.Func, global::System.Threading.Tasks.Task>, global::System.Threading.Tasks.Task>; + + /// A class that contains the module-common code and data. + public partial class Module + { + /// The currently selected profile. + public string Profile = global::System.String.Empty; + + public global::System.Net.Http.HttpClientHandler _handler = new global::System.Net.Http.HttpClientHandler(); + + /// the ISendAsync pipeline instance + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.HttpPipeline _pipeline; + + /// the ISendAsync pipeline instance (when proxy is enabled) + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.HttpPipeline _pipelineWithProxy; + + public global::System.Net.WebProxy _webProxy = new global::System.Net.WebProxy(); + + /// Gets completion data for azure specific fields + public ArgumentCompleterDelegate ArgumentCompleter { get; set; } + + /// The instance of the Client API + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.VMWare ClientAPI { get; set; } + + /// A delegate that gets called for each signalled event + public EventListenerDelegate EventListener { get; set; } + + /// The delegate to call to get parameter data from a common module. + public GetParameterDelegate GetParameterValue { get; set; } + + /// Backing field for property. + private static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module _instance; + + /// the singleton of this module class + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module Instance => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module._instance?? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module._instance = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module()); + + /// The Name of this module + public string Name => @"Az.VMWare"; + + /// The delegate to call when this module is loaded (supporting a commmon module). + public ModuleLoadPipelineDelegate OnModuleLoad { get; set; } + + /// The delegate to call before each new request (supporting a commmon module). + public NewRequestPipelineDelegate OnNewRequest { get; set; } + + /// The name of the currently selected Azure profile + public global::System.String ProfileName { get; set; } + + /// The ResourceID for this module (azure arm). + public string ResourceId => @"Az.VMWare"; + + /// The from the cmdlet + /// The HttpPipeline for the request + + partial void AfterCreatePipeline(global::System.Management.Automation.InvocationInfo invocationInfo, ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.HttpPipeline pipeline); + + /// The from the cmdlet + /// The HttpPipeline for the request + + partial void BeforeCreatePipeline(global::System.Management.Automation.InvocationInfo invocationInfo, ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.HttpPipeline pipeline); + + partial void CustomInit(); + + /// Creates an instance of the HttpPipeline for each call. + /// The from the cmdlet + /// the cmdlet's correlation id. + /// the cmdlet's process record correlation id. + /// the cmdlet's parameterset name. + /// An instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.HttpPipeline for the remote call. + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.HttpPipeline CreatePipeline(global::System.Management.Automation.InvocationInfo invocationInfo, string correlationId, string processRecordId, string parameterSetName = null) + { + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.HttpPipeline pipeline = null; + BeforeCreatePipeline(invocationInfo, ref pipeline); + pipeline = (pipeline ?? (_handler.UseProxy ? _pipelineWithProxy : _pipeline)).Clone(); + AfterCreatePipeline(invocationInfo, ref pipeline); + pipeline.Append(new Runtime.CmdInfoHandler(processRecordId, invocationInfo, parameterSetName).SendAsync); + OnNewRequest?.Invoke( invocationInfo, correlationId,processRecordId, (step)=> { pipeline.Prepend(step); } , (step)=> { pipeline.Append(step); } ); + return pipeline; + } + + /// Gets parameters from a common module. + /// The from the cmdlet + /// the cmdlet's correlation id. + /// The name of the parameter to get the value for. + /// + /// The parameter value from the common module. (Note: this should be type converted on the way back) + /// + public object GetParameter(global::System.Management.Automation.InvocationInfo invocationInfo, string correlationId, string parameterName) => GetParameterValue?.Invoke( ResourceId, Name, invocationInfo, correlationId,parameterName ); + + /// Initialization steps performed after the module is loaded. + public void Init() + { + OnModuleLoad?.Invoke( ResourceId, Name ,(step)=> { _pipeline.Prepend(step); } , (step)=> { _pipeline.Append(step); } ); + OnModuleLoad?.Invoke( ResourceId, Name ,(step)=> { _pipelineWithProxy.Prepend(step); } , (step)=> { _pipelineWithProxy.Append(step); } ); + CustomInit(); + } + + /// Creates the module instance. + private Module() + { + /// constructor + ClientAPI = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.VMWare(); + _handler.Proxy = _webProxy; + _pipeline = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.HttpPipeline(new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.HttpClientFactory(new global::System.Net.Http.HttpClient())); + _pipelineWithProxy = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.HttpPipeline(new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.HttpClientFactory(new global::System.Net.Http.HttpClient(_handler))); + } + + /// The HTTP Proxy to use. + /// The HTTP Proxy Credentials + /// True if the proxy should use default credentials + public void SetProxyConfiguration(global::System.Uri proxy, global::System.Management.Automation.PSCredential proxyCredential, bool proxyUseDefaultCredentials) + { + // set the proxy configuration + _webProxy.Address = proxy; + _webProxy.BypassProxyOnLocal = false; + _webProxy.Credentials = proxyCredential ?.GetNetworkCredential(); + _webProxy.UseDefaultCredentials = proxyUseDefaultCredentials; + _handler.UseProxy = proxy != null; + } + + /// Called to dispatch events to the common module listener + /// The ID of the event + /// The cancellation token for the event + /// A delegate to get the detailed event data + /// The callback for the event dispatcher + /// The from the cmdlet + /// the cmdlet's parameterset name. + /// the cmdlet's correlation id. + /// the cmdlet's process record correlation id. + /// the exception that is being thrown (if available) + /// + /// A that will be complete when handling of the event is completed. + /// + public async global::System.Threading.Tasks.Task Signal(string id, global::System.Threading.CancellationToken token, global::System.Func getEventData, SignalDelegate signal, global::System.Management.Automation.InvocationInfo invocationInfo, string parameterSetName, string correlationId, string processRecordId, global::System.Exception exception) + { + using( NoSynchronizationContext ) + { + await EventListener?.Invoke(id,token,getEventData, signal, invocationInfo, parameterSetName, correlationId,processRecordId,exception); + } + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api10/ErrorAdditionalInfo.PowerShell.cs b/src/VMWare/generated/api/Models/Api10/ErrorAdditionalInfo.PowerShell.cs new file mode 100644 index 000000000000..e5c26c7db766 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api10/ErrorAdditionalInfo.PowerShell.cs @@ -0,0 +1,133 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// The resource management error additional info. + [System.ComponentModel.TypeConverter(typeof(ErrorAdditionalInfoTypeConverter))] + public partial class ErrorAdditionalInfo + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorAdditionalInfo DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new ErrorAdditionalInfo(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorAdditionalInfo DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new ErrorAdditionalInfo(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal ErrorAdditionalInfo(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorAdditionalInfoInternal)this).Info = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorAdditionalInfo1) content.GetValueForProperty("Info",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorAdditionalInfoInternal)this).Info, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.ErrorAdditionalInfo1TypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorAdditionalInfoInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorAdditionalInfoInternal)this).Type, global::System.Convert.ToString); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal ErrorAdditionalInfo(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorAdditionalInfoInternal)this).Info = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorAdditionalInfo1) content.GetValueForProperty("Info",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorAdditionalInfoInternal)this).Info, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.ErrorAdditionalInfo1TypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorAdditionalInfoInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorAdditionalInfoInternal)this).Type, global::System.Convert.ToString); + AfterDeserializePSObject(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorAdditionalInfo FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// The resource management error additional info. + [System.ComponentModel.TypeConverter(typeof(ErrorAdditionalInfoTypeConverter))] + public partial interface IErrorAdditionalInfo + + { + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api10/ErrorAdditionalInfo.TypeConverter.cs b/src/VMWare/generated/api/Models/Api10/ErrorAdditionalInfo.TypeConverter.cs new file mode 100644 index 000000000000..8e4f7ba7b082 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api10/ErrorAdditionalInfo.TypeConverter.cs @@ -0,0 +1,142 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class ErrorAdditionalInfoTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorAdditionalInfo ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorAdditionalInfo).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return ErrorAdditionalInfo.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return ErrorAdditionalInfo.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return ErrorAdditionalInfo.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api10/ErrorAdditionalInfo.cs b/src/VMWare/generated/api/Models/Api10/ErrorAdditionalInfo.cs new file mode 100644 index 000000000000..e6292ff43d55 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api10/ErrorAdditionalInfo.cs @@ -0,0 +1,69 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// The resource management error additional info. + public partial class ErrorAdditionalInfo : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorAdditionalInfo, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorAdditionalInfoInternal + { + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorAdditionalInfo1 _info; + + /// The additional info. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorAdditionalInfo1 Info { get => (this._info = this._info ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.ErrorAdditionalInfo1()); } + + /// Internal Acessors for Info + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorAdditionalInfo1 Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorAdditionalInfoInternal.Info { get => (this._info = this._info ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.ErrorAdditionalInfo1()); set { {_info = value;} } } + + /// Internal Acessors for Type + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorAdditionalInfoInternal.Type { get => this._type; set { {_type = value;} } } + + /// Backing field for property. + private string _type; + + /// The additional info type. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string Type { get => this._type; } + + /// Creates an new instance. + public ErrorAdditionalInfo() + { + + } + } + /// The resource management error additional info. + public partial interface IErrorAdditionalInfo : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IJsonSerializable + { + /// The additional info. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The additional info.", + SerializedName = @"info", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorAdditionalInfo1) })] + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorAdditionalInfo1 Info { get; } + /// The additional info type. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The additional info type.", + SerializedName = @"type", + PossibleTypes = new [] { typeof(string) })] + string Type { get; } + + } + /// The resource management error additional info. + internal partial interface IErrorAdditionalInfoInternal + + { + /// The additional info. + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorAdditionalInfo1 Info { get; set; } + /// The additional info type. + string Type { get; set; } + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api10/ErrorAdditionalInfo.json.cs b/src/VMWare/generated/api/Models/Api10/ErrorAdditionalInfo.json.cs new file mode 100644 index 000000000000..e7507330cd2d --- /dev/null +++ b/src/VMWare/generated/api/Models/Api10/ErrorAdditionalInfo.json.cs @@ -0,0 +1,109 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// The resource management error additional info. + public partial class ErrorAdditionalInfo + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject instance to deserialize from. + internal ErrorAdditionalInfo(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_info = If( json?.PropertyT("info"), out var __jsonInfo) ? Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.ErrorAdditionalInfo1.FromJson(__jsonInfo) : Info;} + {_type = If( json?.PropertyT("type"), out var __jsonType) ? (string)__jsonType : (string)Type;} + AfterFromJson(json); + } + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorAdditionalInfo. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorAdditionalInfo. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorAdditionalInfo FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json ? new ErrorAdditionalInfo(json) : null; + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != this._info ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) this._info.ToJson(null,serializationMode) : null, "info" ,container.Add ); + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._type)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._type.ToString()) : null, "type" ,container.Add ); + } + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api10/ErrorAdditionalInfo1.PowerShell.cs b/src/VMWare/generated/api/Models/Api10/ErrorAdditionalInfo1.PowerShell.cs new file mode 100644 index 000000000000..8b57b90598e4 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api10/ErrorAdditionalInfo1.PowerShell.cs @@ -0,0 +1,129 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// The additional info. + [System.ComponentModel.TypeConverter(typeof(ErrorAdditionalInfo1TypeConverter))] + public partial class ErrorAdditionalInfo1 + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorAdditionalInfo1 DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new ErrorAdditionalInfo1(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorAdditionalInfo1 DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new ErrorAdditionalInfo1(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal ErrorAdditionalInfo1(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal ErrorAdditionalInfo1(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + AfterDeserializePSObject(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorAdditionalInfo1 FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// The additional info. + [System.ComponentModel.TypeConverter(typeof(ErrorAdditionalInfo1TypeConverter))] + public partial interface IErrorAdditionalInfo1 + + { + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api10/ErrorAdditionalInfo1.TypeConverter.cs b/src/VMWare/generated/api/Models/Api10/ErrorAdditionalInfo1.TypeConverter.cs new file mode 100644 index 000000000000..88774f152b81 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api10/ErrorAdditionalInfo1.TypeConverter.cs @@ -0,0 +1,142 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class ErrorAdditionalInfo1TypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorAdditionalInfo1 ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorAdditionalInfo1).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return ErrorAdditionalInfo1.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return ErrorAdditionalInfo1.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return ErrorAdditionalInfo1.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api10/ErrorAdditionalInfo1.cs b/src/VMWare/generated/api/Models/Api10/ErrorAdditionalInfo1.cs new file mode 100644 index 000000000000..68de2d7e1997 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api10/ErrorAdditionalInfo1.cs @@ -0,0 +1,29 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// The additional info. + public partial class ErrorAdditionalInfo1 : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorAdditionalInfo1, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorAdditionalInfo1Internal + { + + /// Creates an new instance. + public ErrorAdditionalInfo1() + { + + } + } + /// The additional info. + public partial interface IErrorAdditionalInfo1 : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IJsonSerializable + { + + } + /// The additional info. + internal partial interface IErrorAdditionalInfo1Internal + + { + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api10/ErrorAdditionalInfo1.json.cs b/src/VMWare/generated/api/Models/Api10/ErrorAdditionalInfo1.json.cs new file mode 100644 index 000000000000..a427dcdd695f --- /dev/null +++ b/src/VMWare/generated/api/Models/Api10/ErrorAdditionalInfo1.json.cs @@ -0,0 +1,99 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// The additional info. + public partial class ErrorAdditionalInfo1 + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject instance to deserialize from. + internal ErrorAdditionalInfo1(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + AfterFromJson(json); + } + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorAdditionalInfo1. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorAdditionalInfo1. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorAdditionalInfo1 FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json ? new ErrorAdditionalInfo1(json) : null; + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api10/ErrorResponse.PowerShell.cs b/src/VMWare/generated/api/Models/Api10/ErrorResponse.PowerShell.cs new file mode 100644 index 000000000000..df30b18ec774 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api10/ErrorResponse.PowerShell.cs @@ -0,0 +1,139 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// The resource management error response. + [System.ComponentModel.TypeConverter(typeof(ErrorResponseTypeConverter))] + public partial class ErrorResponse + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponse DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new ErrorResponse(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponse DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new ErrorResponse(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal ErrorResponse(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponseInternal)this).AdditionalInfo = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorAdditionalInfo[]) content.GetValueForProperty("AdditionalInfo",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponseInternal)this).AdditionalInfo, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.ErrorAdditionalInfoTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponseInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponseInternal)this).Code, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponseInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponseInternal)this).Message, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponseInternal)this).Target = (string) content.GetValueForProperty("Target",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponseInternal)this).Target, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponseInternal)this).Detail = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponse[]) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponseInternal)this).Detail, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.ErrorResponseTypeConverter.ConvertFrom)); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal ErrorResponse(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponseInternal)this).AdditionalInfo = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorAdditionalInfo[]) content.GetValueForProperty("AdditionalInfo",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponseInternal)this).AdditionalInfo, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.ErrorAdditionalInfoTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponseInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponseInternal)this).Code, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponseInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponseInternal)this).Message, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponseInternal)this).Target = (string) content.GetValueForProperty("Target",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponseInternal)this).Target, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponseInternal)this).Detail = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponse[]) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponseInternal)this).Detail, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.ErrorResponseTypeConverter.ConvertFrom)); + AfterDeserializePSObject(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponse FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// The resource management error response. + [System.ComponentModel.TypeConverter(typeof(ErrorResponseTypeConverter))] + public partial interface IErrorResponse + + { + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api10/ErrorResponse.TypeConverter.cs b/src/VMWare/generated/api/Models/Api10/ErrorResponse.TypeConverter.cs new file mode 100644 index 000000000000..d419a2f63ddd --- /dev/null +++ b/src/VMWare/generated/api/Models/Api10/ErrorResponse.TypeConverter.cs @@ -0,0 +1,142 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class ErrorResponseTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponse ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponse).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return ErrorResponse.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return ErrorResponse.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return ErrorResponse.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api10/ErrorResponse.cs b/src/VMWare/generated/api/Models/Api10/ErrorResponse.cs new file mode 100644 index 000000000000..3cd881b022fa --- /dev/null +++ b/src/VMWare/generated/api/Models/Api10/ErrorResponse.cs @@ -0,0 +1,129 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// The resource management error response. + public partial class ErrorResponse : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponse, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponseInternal + { + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorAdditionalInfo[] _additionalInfo; + + /// The error additional info. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorAdditionalInfo[] AdditionalInfo { get => this._additionalInfo; } + + /// Backing field for property. + private string _code; + + /// The error code. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string Code { get => this._code; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponse[] _detail; + + /// The error details. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponse[] Detail { get => this._detail; } + + /// Backing field for property. + private string _message; + + /// The error message. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string Message { get => this._message; } + + /// Internal Acessors for AdditionalInfo + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorAdditionalInfo[] Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponseInternal.AdditionalInfo { get => this._additionalInfo; set { {_additionalInfo = value;} } } + + /// Internal Acessors for Code + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponseInternal.Code { get => this._code; set { {_code = value;} } } + + /// Internal Acessors for Detail + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponse[] Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponseInternal.Detail { get => this._detail; set { {_detail = value;} } } + + /// Internal Acessors for Message + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponseInternal.Message { get => this._message; set { {_message = value;} } } + + /// Internal Acessors for Target + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponseInternal.Target { get => this._target; set { {_target = value;} } } + + /// Backing field for property. + private string _target; + + /// The error target. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string Target { get => this._target; } + + /// Creates an new instance. + public ErrorResponse() + { + + } + } + /// The resource management error response. + public partial interface IErrorResponse : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IJsonSerializable + { + /// The error additional info. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The error additional info.", + SerializedName = @"additionalInfo", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorAdditionalInfo) })] + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorAdditionalInfo[] AdditionalInfo { get; } + /// The error code. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The error code.", + SerializedName = @"code", + PossibleTypes = new [] { typeof(string) })] + string Code { get; } + /// The error details. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The error details.", + SerializedName = @"details", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponse) })] + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponse[] Detail { get; } + /// The error message. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The error message.", + SerializedName = @"message", + PossibleTypes = new [] { typeof(string) })] + string Message { get; } + /// The error target. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The error target.", + SerializedName = @"target", + PossibleTypes = new [] { typeof(string) })] + string Target { get; } + + } + /// The resource management error response. + internal partial interface IErrorResponseInternal + + { + /// The error additional info. + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorAdditionalInfo[] AdditionalInfo { get; set; } + /// The error code. + string Code { get; set; } + /// The error details. + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponse[] Detail { get; set; } + /// The error message. + string Message { get; set; } + /// The error target. + string Target { get; set; } + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api10/ErrorResponse.json.cs b/src/VMWare/generated/api/Models/Api10/ErrorResponse.json.cs new file mode 100644 index 000000000000..a88ef9ae8f96 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api10/ErrorResponse.json.cs @@ -0,0 +1,140 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// The resource management error response. + public partial class ErrorResponse + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject instance to deserialize from. + internal ErrorResponse(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_additionalInfo = If( json?.PropertyT("additionalInfo"), out var __jsonAdditionalInfo) ? If( __jsonAdditionalInfo as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorAdditionalInfo) (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.ErrorAdditionalInfo.FromJson(__u) )) ))() : null : AdditionalInfo;} + {_code = If( json?.PropertyT("code"), out var __jsonCode) ? (string)__jsonCode : (string)Code;} + {_message = If( json?.PropertyT("message"), out var __jsonMessage) ? (string)__jsonMessage : (string)Message;} + {_target = If( json?.PropertyT("target"), out var __jsonTarget) ? (string)__jsonTarget : (string)Target;} + {_detail = If( json?.PropertyT("details"), out var __jsonDetails) ? If( __jsonDetails as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonArray, out var __q) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__q, (__p)=>(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponse) (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.ErrorResponse.FromJson(__p) )) ))() : null : Detail;} + AfterFromJson(json); + } + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponse. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponse. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponse FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json ? new ErrorResponse(json) : null; + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + if (null != this._additionalInfo) + { + var __w = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.XNodeArray(); + foreach( var __x in this._additionalInfo ) + { + AddIf(__x?.ToJson(null, serializationMode) ,__w.Add); + } + container.Add("additionalInfo",__w); + } + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._code)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._code.ToString()) : null, "code" ,container.Add ); + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._message)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._message.ToString()) : null, "message" ,container.Add ); + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._target)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._target.ToString()) : null, "target" ,container.Add ); + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + if (null != this._detail) + { + var __r = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.XNodeArray(); + foreach( var __s in this._detail ) + { + AddIf(__s?.ToJson(null, serializationMode) ,__r.Add); + } + container.Add("details",__r); + } + } + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/AdminCredentials.PowerShell.cs b/src/VMWare/generated/api/Models/Api20200320/AdminCredentials.PowerShell.cs new file mode 100644 index 000000000000..10833292b003 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/AdminCredentials.PowerShell.cs @@ -0,0 +1,137 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// Administrative credentials for accessing vCenter and NSX-T + [System.ComponentModel.TypeConverter(typeof(AdminCredentialsTypeConverter))] + public partial class AdminCredentials + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal AdminCredentials(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IAdminCredentialsInternal)this).NsxtPassword = (string) content.GetValueForProperty("NsxtPassword",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IAdminCredentialsInternal)this).NsxtPassword, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IAdminCredentialsInternal)this).NsxtUsername = (string) content.GetValueForProperty("NsxtUsername",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IAdminCredentialsInternal)this).NsxtUsername, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IAdminCredentialsInternal)this).VcenterPassword = (string) content.GetValueForProperty("VcenterPassword",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IAdminCredentialsInternal)this).VcenterPassword, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IAdminCredentialsInternal)this).VcenterUsername = (string) content.GetValueForProperty("VcenterUsername",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IAdminCredentialsInternal)this).VcenterUsername, global::System.Convert.ToString); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal AdminCredentials(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IAdminCredentialsInternal)this).NsxtPassword = (string) content.GetValueForProperty("NsxtPassword",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IAdminCredentialsInternal)this).NsxtPassword, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IAdminCredentialsInternal)this).NsxtUsername = (string) content.GetValueForProperty("NsxtUsername",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IAdminCredentialsInternal)this).NsxtUsername, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IAdminCredentialsInternal)this).VcenterPassword = (string) content.GetValueForProperty("VcenterPassword",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IAdminCredentialsInternal)this).VcenterPassword, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IAdminCredentialsInternal)this).VcenterUsername = (string) content.GetValueForProperty("VcenterUsername",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IAdminCredentialsInternal)this).VcenterUsername, global::System.Convert.ToString); + AfterDeserializePSObject(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IAdminCredentials DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new AdminCredentials(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IAdminCredentials DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new AdminCredentials(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IAdminCredentials FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// Administrative credentials for accessing vCenter and NSX-T + [System.ComponentModel.TypeConverter(typeof(AdminCredentialsTypeConverter))] + public partial interface IAdminCredentials + + { + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/AdminCredentials.TypeConverter.cs b/src/VMWare/generated/api/Models/Api20200320/AdminCredentials.TypeConverter.cs new file mode 100644 index 000000000000..42032814dfb9 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/AdminCredentials.TypeConverter.cs @@ -0,0 +1,142 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class AdminCredentialsTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IAdminCredentials ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IAdminCredentials).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return AdminCredentials.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return AdminCredentials.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return AdminCredentials.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/AdminCredentials.cs b/src/VMWare/generated/api/Models/Api20200320/AdminCredentials.cs new file mode 100644 index 000000000000..3950a869b065 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/AdminCredentials.cs @@ -0,0 +1,109 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// Administrative credentials for accessing vCenter and NSX-T + public partial class AdminCredentials : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IAdminCredentials, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IAdminCredentialsInternal + { + + /// Internal Acessors for NsxtPassword + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IAdminCredentialsInternal.NsxtPassword { get => this._nsxtPassword; set { {_nsxtPassword = value;} } } + + /// Internal Acessors for NsxtUsername + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IAdminCredentialsInternal.NsxtUsername { get => this._nsxtUsername; set { {_nsxtUsername = value;} } } + + /// Internal Acessors for VcenterPassword + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IAdminCredentialsInternal.VcenterPassword { get => this._vcenterPassword; set { {_vcenterPassword = value;} } } + + /// Internal Acessors for VcenterUsername + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IAdminCredentialsInternal.VcenterUsername { get => this._vcenterUsername; set { {_vcenterUsername = value;} } } + + /// Backing field for property. + private string _nsxtPassword; + + /// NSX-T Manager password + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string NsxtPassword { get => this._nsxtPassword; } + + /// Backing field for property. + private string _nsxtUsername; + + /// NSX-T Manager username + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string NsxtUsername { get => this._nsxtUsername; } + + /// Backing field for property. + private string _vcenterPassword; + + /// vCenter admin password + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string VcenterPassword { get => this._vcenterPassword; } + + /// Backing field for property. + private string _vcenterUsername; + + /// vCenter admin username + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string VcenterUsername { get => this._vcenterUsername; } + + /// Creates an new instance. + public AdminCredentials() + { + + } + } + /// Administrative credentials for accessing vCenter and NSX-T + public partial interface IAdminCredentials : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IJsonSerializable + { + /// NSX-T Manager password + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"NSX-T Manager password", + SerializedName = @"nsxtPassword", + PossibleTypes = new [] { typeof(string) })] + string NsxtPassword { get; } + /// NSX-T Manager username + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"NSX-T Manager username", + SerializedName = @"nsxtUsername", + PossibleTypes = new [] { typeof(string) })] + string NsxtUsername { get; } + /// vCenter admin password + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"vCenter admin password", + SerializedName = @"vcenterPassword", + PossibleTypes = new [] { typeof(string) })] + string VcenterPassword { get; } + /// vCenter admin username + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"vCenter admin username", + SerializedName = @"vcenterUsername", + PossibleTypes = new [] { typeof(string) })] + string VcenterUsername { get; } + + } + /// Administrative credentials for accessing vCenter and NSX-T + internal partial interface IAdminCredentialsInternal + + { + /// NSX-T Manager password + string NsxtPassword { get; set; } + /// NSX-T Manager username + string NsxtUsername { get; set; } + /// vCenter admin password + string VcenterPassword { get; set; } + /// vCenter admin username + string VcenterUsername { get; set; } + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/AdminCredentials.json.cs b/src/VMWare/generated/api/Models/Api20200320/AdminCredentials.json.cs new file mode 100644 index 000000000000..074ed14d6575 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/AdminCredentials.json.cs @@ -0,0 +1,119 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// Administrative credentials for accessing vCenter and NSX-T + public partial class AdminCredentials + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject instance to deserialize from. + internal AdminCredentials(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_nsxtPassword = If( json?.PropertyT("nsxtPassword"), out var __jsonNsxtPassword) ? (string)__jsonNsxtPassword : (string)NsxtPassword;} + {_nsxtUsername = If( json?.PropertyT("nsxtUsername"), out var __jsonNsxtUsername) ? (string)__jsonNsxtUsername : (string)NsxtUsername;} + {_vcenterPassword = If( json?.PropertyT("vcenterPassword"), out var __jsonVcenterPassword) ? (string)__jsonVcenterPassword : (string)VcenterPassword;} + {_vcenterUsername = If( json?.PropertyT("vcenterUsername"), out var __jsonVcenterUsername) ? (string)__jsonVcenterUsername : (string)VcenterUsername;} + AfterFromJson(json); + } + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IAdminCredentials. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IAdminCredentials. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IAdminCredentials FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json ? new AdminCredentials(json) : null; + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._nsxtPassword)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._nsxtPassword.ToString()) : null, "nsxtPassword" ,container.Add ); + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._nsxtUsername)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._nsxtUsername.ToString()) : null, "nsxtUsername" ,container.Add ); + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._vcenterPassword)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._vcenterPassword.ToString()) : null, "vcenterPassword" ,container.Add ); + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._vcenterUsername)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._vcenterUsername.ToString()) : null, "vcenterUsername" ,container.Add ); + } + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/AuthorizationsAuthorizationnamePutRequestbodyContentApplicationJsonSchema.PowerShell.cs b/src/VMWare/generated/api/Models/Api20200320/AuthorizationsAuthorizationnamePutRequestbodyContentApplicationJsonSchema.PowerShell.cs new file mode 100644 index 000000000000..9a9c6bb3643e --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/AuthorizationsAuthorizationnamePutRequestbodyContentApplicationJsonSchema.PowerShell.cs @@ -0,0 +1,130 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + [System.ComponentModel.TypeConverter(typeof(Paths15976RbSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameAuthorizationsAuthorizationnamePutRequestbodyContentApplicationJsonSchemaTypeConverter))] + public partial class Paths15976RbSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameAuthorizationsAuthorizationnamePutRequestbodyContentApplicationJsonSchema + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPaths15976RbSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameAuthorizationsAuthorizationnamePutRequestbodyContentApplicationJsonSchema DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new Paths15976RbSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameAuthorizationsAuthorizationnamePutRequestbodyContentApplicationJsonSchema(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPaths15976RbSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameAuthorizationsAuthorizationnamePutRequestbodyContentApplicationJsonSchema DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new Paths15976RbSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameAuthorizationsAuthorizationnamePutRequestbodyContentApplicationJsonSchema(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPaths15976RbSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameAuthorizationsAuthorizationnamePutRequestbodyContentApplicationJsonSchema FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal Paths15976RbSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameAuthorizationsAuthorizationnamePutRequestbodyContentApplicationJsonSchema(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal Paths15976RbSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameAuthorizationsAuthorizationnamePutRequestbodyContentApplicationJsonSchema(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + [System.ComponentModel.TypeConverter(typeof(Paths15976RbSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameAuthorizationsAuthorizationnamePutRequestbodyContentApplicationJsonSchemaTypeConverter))] + public partial interface IPaths15976RbSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameAuthorizationsAuthorizationnamePutRequestbodyContentApplicationJsonSchema + + { + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/AuthorizationsAuthorizationnamePutRequestbodyContentApplicationJsonSchema.TypeConverter.cs b/src/VMWare/generated/api/Models/Api20200320/AuthorizationsAuthorizationnamePutRequestbodyContentApplicationJsonSchema.TypeConverter.cs new file mode 100644 index 000000000000..20d61e1cf105 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/AuthorizationsAuthorizationnamePutRequestbodyContentApplicationJsonSchema.TypeConverter.cs @@ -0,0 +1,147 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class Paths15976RbSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameAuthorizationsAuthorizationnamePutRequestbodyContentApplicationJsonSchemaTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPaths15976RbSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameAuthorizationsAuthorizationnamePutRequestbodyContentApplicationJsonSchema ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPaths15976RbSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameAuthorizationsAuthorizationnamePutRequestbodyContentApplicationJsonSchema).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return Paths15976RbSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameAuthorizationsAuthorizationnamePutRequestbodyContentApplicationJsonSchema.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return Paths15976RbSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameAuthorizationsAuthorizationnamePutRequestbodyContentApplicationJsonSchema.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return Paths15976RbSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameAuthorizationsAuthorizationnamePutRequestbodyContentApplicationJsonSchema.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/AuthorizationsAuthorizationnamePutRequestbodyContentApplicationJsonSchema.cs b/src/VMWare/generated/api/Models/Api20200320/AuthorizationsAuthorizationnamePutRequestbodyContentApplicationJsonSchema.cs new file mode 100644 index 000000000000..47a12350735b --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/AuthorizationsAuthorizationnamePutRequestbodyContentApplicationJsonSchema.cs @@ -0,0 +1,29 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + public partial class Paths15976RbSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameAuthorizationsAuthorizationnamePutRequestbodyContentApplicationJsonSchema : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPaths15976RbSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameAuthorizationsAuthorizationnamePutRequestbodyContentApplicationJsonSchema, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPaths15976RbSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameAuthorizationsAuthorizationnamePutRequestbodyContentApplicationJsonSchemaInternal + { + + /// + /// Creates an new instance. + /// + public Paths15976RbSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameAuthorizationsAuthorizationnamePutRequestbodyContentApplicationJsonSchema() + { + + } + } + public partial interface IPaths15976RbSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameAuthorizationsAuthorizationnamePutRequestbodyContentApplicationJsonSchema : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IJsonSerializable + { + + } + internal partial interface IPaths15976RbSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameAuthorizationsAuthorizationnamePutRequestbodyContentApplicationJsonSchemaInternal + + { + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/AuthorizationsAuthorizationnamePutRequestbodyContentApplicationJsonSchema.json.cs b/src/VMWare/generated/api/Models/Api20200320/AuthorizationsAuthorizationnamePutRequestbodyContentApplicationJsonSchema.json.cs new file mode 100644 index 000000000000..6010acb9b73b --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/AuthorizationsAuthorizationnamePutRequestbodyContentApplicationJsonSchema.json.cs @@ -0,0 +1,101 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + public partial class Paths15976RbSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameAuthorizationsAuthorizationnamePutRequestbodyContentApplicationJsonSchema + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPaths15976RbSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameAuthorizationsAuthorizationnamePutRequestbodyContentApplicationJsonSchema. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPaths15976RbSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameAuthorizationsAuthorizationnamePutRequestbodyContentApplicationJsonSchema. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPaths15976RbSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameAuthorizationsAuthorizationnamePutRequestbodyContentApplicationJsonSchema FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json ? new Paths15976RbSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameAuthorizationsAuthorizationnamePutRequestbodyContentApplicationJsonSchema(json) : null; + } + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject instance to deserialize from. + internal Paths15976RbSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameAuthorizationsAuthorizationnamePutRequestbodyContentApplicationJsonSchema(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + AfterFromJson(json); + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/Circuit.PowerShell.cs b/src/VMWare/generated/api/Models/Api20200320/Circuit.PowerShell.cs new file mode 100644 index 000000000000..4098a2f8f0f6 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/Circuit.PowerShell.cs @@ -0,0 +1,137 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// An ExpressRoute Circuit + [System.ComponentModel.TypeConverter(typeof(CircuitTypeConverter))] + public partial class Circuit + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal Circuit(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICircuitInternal)this).ExpressRouteId = (string) content.GetValueForProperty("ExpressRouteId",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICircuitInternal)this).ExpressRouteId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICircuitInternal)this).ExpressRoutePrivatePeeringId = (string) content.GetValueForProperty("ExpressRoutePrivatePeeringId",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICircuitInternal)this).ExpressRoutePrivatePeeringId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICircuitInternal)this).PrimarySubnet = (string) content.GetValueForProperty("PrimarySubnet",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICircuitInternal)this).PrimarySubnet, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICircuitInternal)this).SecondarySubnet = (string) content.GetValueForProperty("SecondarySubnet",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICircuitInternal)this).SecondarySubnet, global::System.Convert.ToString); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal Circuit(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICircuitInternal)this).ExpressRouteId = (string) content.GetValueForProperty("ExpressRouteId",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICircuitInternal)this).ExpressRouteId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICircuitInternal)this).ExpressRoutePrivatePeeringId = (string) content.GetValueForProperty("ExpressRoutePrivatePeeringId",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICircuitInternal)this).ExpressRoutePrivatePeeringId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICircuitInternal)this).PrimarySubnet = (string) content.GetValueForProperty("PrimarySubnet",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICircuitInternal)this).PrimarySubnet, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICircuitInternal)this).SecondarySubnet = (string) content.GetValueForProperty("SecondarySubnet",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICircuitInternal)this).SecondarySubnet, global::System.Convert.ToString); + AfterDeserializePSObject(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICircuit DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new Circuit(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICircuit DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new Circuit(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICircuit FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// An ExpressRoute Circuit + [System.ComponentModel.TypeConverter(typeof(CircuitTypeConverter))] + public partial interface ICircuit + + { + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/Circuit.TypeConverter.cs b/src/VMWare/generated/api/Models/Api20200320/Circuit.TypeConverter.cs new file mode 100644 index 000000000000..963d48fe185a --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/Circuit.TypeConverter.cs @@ -0,0 +1,142 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class CircuitTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICircuit ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICircuit).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return Circuit.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return Circuit.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return Circuit.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/Circuit.cs b/src/VMWare/generated/api/Models/Api20200320/Circuit.cs new file mode 100644 index 000000000000..803b7bc27641 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/Circuit.cs @@ -0,0 +1,109 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// An ExpressRoute Circuit + public partial class Circuit : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICircuit, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICircuitInternal + { + + /// Backing field for property. + private string _expressRouteId; + + /// Identifier of the ExpressRoute Circuit (Microsoft Colo only) + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string ExpressRouteId { get => this._expressRouteId; } + + /// Backing field for property. + private string _expressRoutePrivatePeeringId; + + /// ExpressRoute Circuit private peering identifier + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string ExpressRoutePrivatePeeringId { get => this._expressRoutePrivatePeeringId; } + + /// Internal Acessors for ExpressRouteId + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICircuitInternal.ExpressRouteId { get => this._expressRouteId; set { {_expressRouteId = value;} } } + + /// Internal Acessors for ExpressRoutePrivatePeeringId + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICircuitInternal.ExpressRoutePrivatePeeringId { get => this._expressRoutePrivatePeeringId; set { {_expressRoutePrivatePeeringId = value;} } } + + /// Internal Acessors for PrimarySubnet + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICircuitInternal.PrimarySubnet { get => this._primarySubnet; set { {_primarySubnet = value;} } } + + /// Internal Acessors for SecondarySubnet + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICircuitInternal.SecondarySubnet { get => this._secondarySubnet; set { {_secondarySubnet = value;} } } + + /// Backing field for property. + private string _primarySubnet; + + /// CIDR of primary subnet + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string PrimarySubnet { get => this._primarySubnet; } + + /// Backing field for property. + private string _secondarySubnet; + + /// CIDR of secondary subnet + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string SecondarySubnet { get => this._secondarySubnet; } + + /// Creates an new instance. + public Circuit() + { + + } + } + /// An ExpressRoute Circuit + public partial interface ICircuit : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IJsonSerializable + { + /// Identifier of the ExpressRoute Circuit (Microsoft Colo only) + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"Identifier of the ExpressRoute Circuit (Microsoft Colo only)", + SerializedName = @"expressRouteID", + PossibleTypes = new [] { typeof(string) })] + string ExpressRouteId { get; } + /// ExpressRoute Circuit private peering identifier + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"ExpressRoute Circuit private peering identifier", + SerializedName = @"expressRoutePrivatePeeringID", + PossibleTypes = new [] { typeof(string) })] + string ExpressRoutePrivatePeeringId { get; } + /// CIDR of primary subnet + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"CIDR of primary subnet", + SerializedName = @"primarySubnet", + PossibleTypes = new [] { typeof(string) })] + string PrimarySubnet { get; } + /// CIDR of secondary subnet + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"CIDR of secondary subnet", + SerializedName = @"secondarySubnet", + PossibleTypes = new [] { typeof(string) })] + string SecondarySubnet { get; } + + } + /// An ExpressRoute Circuit + internal partial interface ICircuitInternal + + { + /// Identifier of the ExpressRoute Circuit (Microsoft Colo only) + string ExpressRouteId { get; set; } + /// ExpressRoute Circuit private peering identifier + string ExpressRoutePrivatePeeringId { get; set; } + /// CIDR of primary subnet + string PrimarySubnet { get; set; } + /// CIDR of secondary subnet + string SecondarySubnet { get; set; } + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/Circuit.json.cs b/src/VMWare/generated/api/Models/Api20200320/Circuit.json.cs new file mode 100644 index 000000000000..56a04a5b0bea --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/Circuit.json.cs @@ -0,0 +1,119 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// An ExpressRoute Circuit + public partial class Circuit + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject instance to deserialize from. + internal Circuit(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_expressRouteId = If( json?.PropertyT("expressRouteID"), out var __jsonExpressRouteId) ? (string)__jsonExpressRouteId : (string)ExpressRouteId;} + {_expressRoutePrivatePeeringId = If( json?.PropertyT("expressRoutePrivatePeeringID"), out var __jsonExpressRoutePrivatePeeringId) ? (string)__jsonExpressRoutePrivatePeeringId : (string)ExpressRoutePrivatePeeringId;} + {_primarySubnet = If( json?.PropertyT("primarySubnet"), out var __jsonPrimarySubnet) ? (string)__jsonPrimarySubnet : (string)PrimarySubnet;} + {_secondarySubnet = If( json?.PropertyT("secondarySubnet"), out var __jsonSecondarySubnet) ? (string)__jsonSecondarySubnet : (string)SecondarySubnet;} + AfterFromJson(json); + } + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICircuit. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICircuit. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICircuit FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json ? new Circuit(json) : null; + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._expressRouteId)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._expressRouteId.ToString()) : null, "expressRouteID" ,container.Add ); + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._expressRoutePrivatePeeringId)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._expressRoutePrivatePeeringId.ToString()) : null, "expressRoutePrivatePeeringID" ,container.Add ); + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._primarySubnet)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._primarySubnet.ToString()) : null, "primarySubnet" ,container.Add ); + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._secondarySubnet)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._secondarySubnet.ToString()) : null, "secondarySubnet" ,container.Add ); + } + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/CloudError.PowerShell.cs b/src/VMWare/generated/api/Models/Api20200320/CloudError.PowerShell.cs new file mode 100644 index 000000000000..408681cf13a9 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/CloudError.PowerShell.cs @@ -0,0 +1,141 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// API error response + [System.ComponentModel.TypeConverter(typeof(CloudErrorTypeConverter))] + public partial class CloudError + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal CloudError(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICloudErrorInternal)this).Error = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponse) content.GetValueForProperty("Error",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICloudErrorInternal)this).Error, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.ErrorResponseTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICloudErrorInternal)this).AdditionalInfo = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorAdditionalInfo[]) content.GetValueForProperty("AdditionalInfo",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICloudErrorInternal)this).AdditionalInfo, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.ErrorAdditionalInfoTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICloudErrorInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICloudErrorInternal)this).Code, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICloudErrorInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICloudErrorInternal)this).Message, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICloudErrorInternal)this).Target = (string) content.GetValueForProperty("Target",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICloudErrorInternal)this).Target, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICloudErrorInternal)this).Detail = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponse[]) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICloudErrorInternal)this).Detail, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.ErrorResponseTypeConverter.ConvertFrom)); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal CloudError(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICloudErrorInternal)this).Error = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponse) content.GetValueForProperty("Error",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICloudErrorInternal)this).Error, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.ErrorResponseTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICloudErrorInternal)this).AdditionalInfo = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorAdditionalInfo[]) content.GetValueForProperty("AdditionalInfo",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICloudErrorInternal)this).AdditionalInfo, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.ErrorAdditionalInfoTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICloudErrorInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICloudErrorInternal)this).Code, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICloudErrorInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICloudErrorInternal)this).Message, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICloudErrorInternal)this).Target = (string) content.GetValueForProperty("Target",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICloudErrorInternal)this).Target, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICloudErrorInternal)this).Detail = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponse[]) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICloudErrorInternal)this).Detail, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.ErrorResponseTypeConverter.ConvertFrom)); + AfterDeserializePSObject(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICloudError DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new CloudError(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICloudError DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new CloudError(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICloudError FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// API error response + [System.ComponentModel.TypeConverter(typeof(CloudErrorTypeConverter))] + public partial interface ICloudError + + { + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/CloudError.TypeConverter.cs b/src/VMWare/generated/api/Models/Api20200320/CloudError.TypeConverter.cs new file mode 100644 index 000000000000..02cc42adc5c0 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/CloudError.TypeConverter.cs @@ -0,0 +1,142 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class CloudErrorTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICloudError ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICloudError).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return CloudError.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return CloudError.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return CloudError.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/CloudError.cs b/src/VMWare/generated/api/Models/Api20200320/CloudError.cs new file mode 100644 index 000000000000..fd541febe2ab --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/CloudError.cs @@ -0,0 +1,126 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// API error response + public partial class CloudError : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICloudError, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICloudErrorInternal + { + + /// The error additional info. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorAdditionalInfo[] AdditionalInfo { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponseInternal)Error).AdditionalInfo; } + + /// The error code. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public string Code { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponseInternal)Error).Code; } + + /// The error details. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponse[] Detail { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponseInternal)Error).Detail; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponse _error; + + /// An error returned by the API + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + internal Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponse Error { get => (this._error = this._error ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.ErrorResponse()); set => this._error = value; } + + /// The error message. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public string Message { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponseInternal)Error).Message; } + + /// Internal Acessors for AdditionalInfo + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorAdditionalInfo[] Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICloudErrorInternal.AdditionalInfo { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponseInternal)Error).AdditionalInfo; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponseInternal)Error).AdditionalInfo = value; } + + /// Internal Acessors for Code + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICloudErrorInternal.Code { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponseInternal)Error).Code; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponseInternal)Error).Code = value; } + + /// Internal Acessors for Detail + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponse[] Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICloudErrorInternal.Detail { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponseInternal)Error).Detail; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponseInternal)Error).Detail = value; } + + /// Internal Acessors for Error + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponse Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICloudErrorInternal.Error { get => (this._error = this._error ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.ErrorResponse()); set { {_error = value;} } } + + /// Internal Acessors for Message + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICloudErrorInternal.Message { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponseInternal)Error).Message; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponseInternal)Error).Message = value; } + + /// Internal Acessors for Target + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICloudErrorInternal.Target { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponseInternal)Error).Target; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponseInternal)Error).Target = value; } + + /// The error target. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public string Target { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponseInternal)Error).Target; } + + /// Creates an new instance. + public CloudError() + { + + } + } + /// API error response + public partial interface ICloudError : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IJsonSerializable + { + /// The error additional info. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The error additional info.", + SerializedName = @"additionalInfo", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorAdditionalInfo) })] + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorAdditionalInfo[] AdditionalInfo { get; } + /// The error code. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The error code.", + SerializedName = @"code", + PossibleTypes = new [] { typeof(string) })] + string Code { get; } + /// The error details. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The error details.", + SerializedName = @"details", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponse) })] + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponse[] Detail { get; } + /// The error message. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The error message.", + SerializedName = @"message", + PossibleTypes = new [] { typeof(string) })] + string Message { get; } + /// The error target. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The error target.", + SerializedName = @"target", + PossibleTypes = new [] { typeof(string) })] + string Target { get; } + + } + /// API error response + internal partial interface ICloudErrorInternal + + { + /// The error additional info. + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorAdditionalInfo[] AdditionalInfo { get; set; } + /// The error code. + string Code { get; set; } + /// The error details. + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponse[] Detail { get; set; } + /// An error returned by the API + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.IErrorResponse Error { get; set; } + /// The error message. + string Message { get; set; } + /// The error target. + string Target { get; set; } + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/CloudError.json.cs b/src/VMWare/generated/api/Models/Api20200320/CloudError.json.cs new file mode 100644 index 000000000000..39955f24b18c --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/CloudError.json.cs @@ -0,0 +1,101 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// API error response + public partial class CloudError + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject instance to deserialize from. + internal CloudError(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_error = If( json?.PropertyT("error"), out var __jsonError) ? Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api10.ErrorResponse.FromJson(__jsonError) : Error;} + AfterFromJson(json); + } + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICloudError. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICloudError. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICloudError FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json ? new CloudError(json) : null; + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + AddIf( null != this._error ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) this._error.ToJson(null,serializationMode) : null, "error" ,container.Add ); + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/Cluster.PowerShell.cs b/src/VMWare/generated/api/Models/Api20200320/Cluster.PowerShell.cs new file mode 100644 index 000000000000..818f671a2f4b --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/Cluster.PowerShell.cs @@ -0,0 +1,149 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// A cluster resource + [System.ComponentModel.TypeConverter(typeof(ClusterTypeConverter))] + public partial class Cluster + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal Cluster(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ClusterPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterInternal)this).Sku = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ISku) content.GetValueForProperty("Sku",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterInternal)this).Sku, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.SkuTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterInternal)this).SkuName = (string) content.GetValueForProperty("SkuName",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterInternal)this).SkuName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterInternal)this).Size = (int?) content.GetValueForProperty("Size",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterInternal)this).Size, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterInternal)this).ClusterId = (int?) content.GetValueForProperty("ClusterId",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterInternal)this).ClusterId, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterInternal)this).Host = (string[]) content.GetValueForProperty("Host",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterInternal)this).Host, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ClusterProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ClusterProvisioningState.CreateFrom); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal Cluster(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ClusterPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterInternal)this).Sku = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ISku) content.GetValueForProperty("Sku",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterInternal)this).Sku, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.SkuTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterInternal)this).SkuName = (string) content.GetValueForProperty("SkuName",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterInternal)this).SkuName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterInternal)this).Size = (int?) content.GetValueForProperty("Size",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterInternal)this).Size, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterInternal)this).ClusterId = (int?) content.GetValueForProperty("ClusterId",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterInternal)this).ClusterId, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterInternal)this).Host = (string[]) content.GetValueForProperty("Host",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterInternal)this).Host, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ClusterProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ClusterProvisioningState.CreateFrom); + AfterDeserializePSObject(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICluster DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new Cluster(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICluster DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new Cluster(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICluster FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// A cluster resource + [System.ComponentModel.TypeConverter(typeof(ClusterTypeConverter))] + public partial interface ICluster + + { + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/Cluster.TypeConverter.cs b/src/VMWare/generated/api/Models/Api20200320/Cluster.TypeConverter.cs new file mode 100644 index 000000000000..d4486a7e4cf2 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/Cluster.TypeConverter.cs @@ -0,0 +1,142 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class ClusterTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICluster ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICluster).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return Cluster.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return Cluster.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return Cluster.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/Cluster.cs b/src/VMWare/generated/api/Models/Api20200320/Cluster.cs new file mode 100644 index 000000000000..126eba638996 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/Cluster.cs @@ -0,0 +1,172 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// A cluster resource + public partial class Cluster : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICluster, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterInternal, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IValidates + { + /// + /// Backing field for Inherited model + /// + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResource __resource = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.Resource(); + + /// The identity + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public int? ClusterId { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementClusterInternal)Property).ClusterId; } + + /// The hosts + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public string[] Host { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementClusterInternal)Property).Host; } + + /// Resource ID. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inherited)] + public string Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)__resource).Id; } + + /// Internal Acessors for ClusterId + int? Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterInternal.ClusterId { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementClusterInternal)Property).ClusterId; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementClusterInternal)Property).ClusterId = value; } + + /// Internal Acessors for Host + string[] Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterInternal.Host { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementClusterInternal)Property).Host; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementClusterInternal)Property).Host = value; } + + /// Internal Acessors for Property + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterProperties Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ClusterProperties()); set { {_property = value;} } } + + /// Internal Acessors for ProvisioningState + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ClusterProvisioningState? Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterInternal.ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterPropertiesInternal)Property).ProvisioningState; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterPropertiesInternal)Property).ProvisioningState = value; } + + /// Internal Acessors for Sku + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ISku Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterInternal.Sku { get => (this._sku = this._sku ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.Sku()); set { {_sku = value;} } } + + /// Internal Acessors for Id + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)__resource).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)__resource).Id = value; } + + /// Internal Acessors for Name + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal.Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)__resource).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)__resource).Name = value; } + + /// Internal Acessors for Type + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)__resource).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)__resource).Type = value; } + + /// Resource name. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inherited)] + public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)__resource).Name; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterProperties _property; + + /// The properties of a cluster resource + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + internal Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ClusterProperties()); set => this._property = value; } + + /// The state of the cluster provisioning + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ClusterProvisioningState? ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterPropertiesInternal)Property).ProvisioningState; } + + /// The cluster size + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public int? Size { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdatePropertiesInternal)Property).ClusterSize; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdatePropertiesInternal)Property).ClusterSize = value; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ISku _sku; + + /// The cluster SKU + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + internal Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ISku Sku { get => (this._sku = this._sku ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.Sku()); set => this._sku = value; } + + /// The name of the SKU. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public string SkuName { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ISkuInternal)Sku).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ISkuInternal)Sku).Name = value; } + + /// Resource type. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inherited)] + public string Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)__resource).Type; } + + /// Creates an new instance. + public Cluster() + { + + } + + /// Validates that this object meets the validation criteria. + /// an instance that will receive validation + /// events. + /// + /// A < see cref = "global::System.Threading.Tasks.Task" /> that will be complete when validation is completed. + /// + public async global::System.Threading.Tasks.Task Validate(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener) + { + await eventListener.AssertNotNull(nameof(__resource), __resource); + await eventListener.AssertObjectIsValid(nameof(__resource), __resource); + } + } + /// A cluster resource + public partial interface ICluster : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IJsonSerializable, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResource + { + /// The identity + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The identity", + SerializedName = @"clusterId", + PossibleTypes = new [] { typeof(int) })] + int? ClusterId { get; } + /// The hosts + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The hosts", + SerializedName = @"hosts", + PossibleTypes = new [] { typeof(string) })] + string[] Host { get; } + /// The state of the cluster provisioning + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The state of the cluster provisioning", + SerializedName = @"provisioningState", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ClusterProvisioningState) })] + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ClusterProvisioningState? ProvisioningState { get; } + /// The cluster size + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The cluster size", + SerializedName = @"clusterSize", + PossibleTypes = new [] { typeof(int) })] + int? Size { get; set; } + /// The name of the SKU. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The name of the SKU.", + SerializedName = @"name", + PossibleTypes = new [] { typeof(string) })] + string SkuName { get; set; } + + } + /// A cluster resource + internal partial interface IClusterInternal : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal + { + /// The identity + int? ClusterId { get; set; } + /// The hosts + string[] Host { get; set; } + /// The properties of a cluster resource + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterProperties Property { get; set; } + /// The state of the cluster provisioning + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ClusterProvisioningState? ProvisioningState { get; set; } + /// The cluster size + int? Size { get; set; } + /// The cluster SKU + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ISku Sku { get; set; } + /// The name of the SKU. + string SkuName { get; set; } + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/Cluster.json.cs b/src/VMWare/generated/api/Models/Api20200320/Cluster.json.cs new file mode 100644 index 000000000000..b2ec748b7188 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/Cluster.json.cs @@ -0,0 +1,105 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// A cluster resource + public partial class Cluster + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject instance to deserialize from. + internal Cluster(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + __resource = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.Resource(json); + {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ClusterProperties.FromJson(__jsonProperties) : Property;} + {_sku = If( json?.PropertyT("sku"), out var __jsonSku) ? Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.Sku.FromJson(__jsonSku) : Sku;} + AfterFromJson(json); + } + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICluster. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICluster. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICluster FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json ? new Cluster(json) : null; + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + __resource?.ToJson(container, serializationMode); + AddIf( null != this._property ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) this._property.ToJson(null,serializationMode) : null, "properties" ,container.Add ); + AddIf( null != this._sku ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) this._sku.ToJson(null,serializationMode) : null, "sku" ,container.Add ); + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/ClusterList.PowerShell.cs b/src/VMWare/generated/api/Models/Api20200320/ClusterList.PowerShell.cs new file mode 100644 index 000000000000..efd1f6ea7fa5 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/ClusterList.PowerShell.cs @@ -0,0 +1,133 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// A paged list of clusters + [System.ComponentModel.TypeConverter(typeof(ClusterListTypeConverter))] + public partial class ClusterList + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal ClusterList(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterListInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterListInternal)this).NextLink, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterListInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICluster[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterListInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ClusterTypeConverter.ConvertFrom)); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal ClusterList(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterListInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterListInternal)this).NextLink, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterListInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICluster[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterListInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ClusterTypeConverter.ConvertFrom)); + AfterDeserializePSObject(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterList DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new ClusterList(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterList DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new ClusterList(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterList FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// A paged list of clusters + [System.ComponentModel.TypeConverter(typeof(ClusterListTypeConverter))] + public partial interface IClusterList + + { + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/ClusterList.TypeConverter.cs b/src/VMWare/generated/api/Models/Api20200320/ClusterList.TypeConverter.cs new file mode 100644 index 000000000000..9e1deae96612 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/ClusterList.TypeConverter.cs @@ -0,0 +1,142 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class ClusterListTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterList ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterList).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return ClusterList.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return ClusterList.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return ClusterList.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/ClusterList.cs b/src/VMWare/generated/api/Models/Api20200320/ClusterList.cs new file mode 100644 index 000000000000..65c81e20d700 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/ClusterList.cs @@ -0,0 +1,69 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// A paged list of clusters + public partial class ClusterList : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterList, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterListInternal + { + + /// Internal Acessors for NextLink + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterListInternal.NextLink { get => this._nextLink; set { {_nextLink = value;} } } + + /// Internal Acessors for Value + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICluster[] Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterListInternal.Value { get => this._value; set { {_value = value;} } } + + /// Backing field for property. + private string _nextLink; + + /// URL to get the next page if any + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string NextLink { get => this._nextLink; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICluster[] _value; + + /// The items on a page + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICluster[] Value { get => this._value; } + + /// Creates an new instance. + public ClusterList() + { + + } + } + /// A paged list of clusters + public partial interface IClusterList : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IJsonSerializable + { + /// URL to get the next page if any + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"URL to get the next page if any", + SerializedName = @"nextLink", + PossibleTypes = new [] { typeof(string) })] + string NextLink { get; } + /// The items on a page + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The items on a page", + SerializedName = @"value", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICluster) })] + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICluster[] Value { get; } + + } + /// A paged list of clusters + internal partial interface IClusterListInternal + + { + /// URL to get the next page if any + string NextLink { get; set; } + /// The items on a page + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICluster[] Value { get; set; } + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/ClusterList.json.cs b/src/VMWare/generated/api/Models/Api20200320/ClusterList.json.cs new file mode 100644 index 000000000000..3f08f8e861bf --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/ClusterList.json.cs @@ -0,0 +1,117 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// A paged list of clusters + public partial class ClusterList + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject instance to deserialize from. + internal ClusterList(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_nextLink = If( json?.PropertyT("nextLink"), out var __jsonNextLink) ? (string)__jsonNextLink : (string)NextLink;} + {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICluster) (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.Cluster.FromJson(__u) )) ))() : null : Value;} + AfterFromJson(json); + } + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterList. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterList. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterList FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json ? new ClusterList(json) : null; + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._nextLink)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._nextLink.ToString()) : null, "nextLink" ,container.Add ); + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + if (null != this._value) + { + var __w = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.XNodeArray(); + foreach( var __x in this._value ) + { + AddIf(__x?.ToJson(null, serializationMode) ,__w.Add); + } + container.Add("value",__w); + } + } + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/ClusterProperties.PowerShell.cs b/src/VMWare/generated/api/Models/Api20200320/ClusterProperties.PowerShell.cs new file mode 100644 index 000000000000..c99d3817877a --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/ClusterProperties.PowerShell.cs @@ -0,0 +1,137 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// The properties of a cluster + [System.ComponentModel.TypeConverter(typeof(ClusterPropertiesTypeConverter))] + public partial class ClusterProperties + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal ClusterProperties(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterPropertiesInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ClusterProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterPropertiesInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ClusterProvisioningState.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdatePropertiesInternal)this).ClusterSize = (int?) content.GetValueForProperty("ClusterSize",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdatePropertiesInternal)this).ClusterSize, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementClusterInternal)this).ClusterId = (int?) content.GetValueForProperty("ClusterId",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementClusterInternal)this).ClusterId, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementClusterInternal)this).Host = (string[]) content.GetValueForProperty("Host",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementClusterInternal)this).Host, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal ClusterProperties(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterPropertiesInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ClusterProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterPropertiesInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ClusterProvisioningState.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdatePropertiesInternal)this).ClusterSize = (int?) content.GetValueForProperty("ClusterSize",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdatePropertiesInternal)this).ClusterSize, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementClusterInternal)this).ClusterId = (int?) content.GetValueForProperty("ClusterId",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementClusterInternal)this).ClusterId, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementClusterInternal)this).Host = (string[]) content.GetValueForProperty("Host",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementClusterInternal)this).Host, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + AfterDeserializePSObject(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new ClusterProperties(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new ClusterProperties(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// The properties of a cluster + [System.ComponentModel.TypeConverter(typeof(ClusterPropertiesTypeConverter))] + public partial interface IClusterProperties + + { + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/ClusterProperties.TypeConverter.cs b/src/VMWare/generated/api/Models/Api20200320/ClusterProperties.TypeConverter.cs new file mode 100644 index 000000000000..5ef758b46a8d --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/ClusterProperties.TypeConverter.cs @@ -0,0 +1,142 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class ClusterPropertiesTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterProperties ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterProperties).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return ClusterProperties.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return ClusterProperties.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return ClusterProperties.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/ClusterProperties.cs b/src/VMWare/generated/api/Models/Api20200320/ClusterProperties.cs new file mode 100644 index 000000000000..b840ea498441 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/ClusterProperties.cs @@ -0,0 +1,86 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// The properties of a cluster + public partial class ClusterProperties : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterProperties, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterPropertiesInternal, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IValidates + { + /// + /// Backing field for Inherited model + /// + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementCluster __managementCluster = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ManagementCluster(); + + /// The identity + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inherited)] + public int? ClusterId { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementClusterInternal)__managementCluster).ClusterId; } + + /// The cluster size + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inherited)] + public int? ClusterSize { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdatePropertiesInternal)__managementCluster).ClusterSize; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdatePropertiesInternal)__managementCluster).ClusterSize = value; } + + /// The hosts + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inherited)] + public string[] Host { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementClusterInternal)__managementCluster).Host; } + + /// Internal Acessors for ProvisioningState + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ClusterProvisioningState? Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterPropertiesInternal.ProvisioningState { get => this._provisioningState; set { {_provisioningState = value;} } } + + /// Internal Acessors for ClusterId + int? Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementClusterInternal.ClusterId { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementClusterInternal)__managementCluster).ClusterId; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementClusterInternal)__managementCluster).ClusterId = value; } + + /// Internal Acessors for Host + string[] Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementClusterInternal.Host { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementClusterInternal)__managementCluster).Host; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementClusterInternal)__managementCluster).Host = value; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ClusterProvisioningState? _provisioningState; + + /// The state of the cluster provisioning + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ClusterProvisioningState? ProvisioningState { get => this._provisioningState; } + + /// Creates an new instance. + public ClusterProperties() + { + + } + + /// Validates that this object meets the validation criteria. + /// an instance that will receive validation + /// events. + /// + /// A < see cref = "global::System.Threading.Tasks.Task" /> that will be complete when validation is completed. + /// + public async global::System.Threading.Tasks.Task Validate(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener) + { + await eventListener.AssertNotNull(nameof(__managementCluster), __managementCluster); + await eventListener.AssertObjectIsValid(nameof(__managementCluster), __managementCluster); + } + } + /// The properties of a cluster + public partial interface IClusterProperties : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IJsonSerializable, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementCluster + { + /// The state of the cluster provisioning + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The state of the cluster provisioning", + SerializedName = @"provisioningState", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ClusterProvisioningState) })] + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ClusterProvisioningState? ProvisioningState { get; } + + } + /// The properties of a cluster + internal partial interface IClusterPropertiesInternal : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementClusterInternal + { + /// The state of the cluster provisioning + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ClusterProvisioningState? ProvisioningState { get; set; } + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/ClusterProperties.json.cs b/src/VMWare/generated/api/Models/Api20200320/ClusterProperties.json.cs new file mode 100644 index 000000000000..e887e5167d41 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/ClusterProperties.json.cs @@ -0,0 +1,106 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// The properties of a cluster + public partial class ClusterProperties + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject instance to deserialize from. + internal ClusterProperties(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + __managementCluster = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ManagementCluster(json); + {_provisioningState = If( json?.PropertyT("provisioningState"), out var __jsonProvisioningState) ? (string)__jsonProvisioningState : (string)ProvisioningState;} + AfterFromJson(json); + } + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterProperties. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterProperties. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json ? new ClusterProperties(json) : null; + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + __managementCluster?.ToJson(container, serializationMode); + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._provisioningState)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._provisioningState.ToString()) : null, "provisioningState" ,container.Add ); + } + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/ClusterUpdate.PowerShell.cs b/src/VMWare/generated/api/Models/Api20200320/ClusterUpdate.PowerShell.cs new file mode 100644 index 000000000000..89b3807ceaee --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/ClusterUpdate.PowerShell.cs @@ -0,0 +1,133 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// An update of a cluster resource + [System.ComponentModel.TypeConverter(typeof(ClusterUpdateTypeConverter))] + public partial class ClusterUpdate + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal ClusterUpdate(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdateInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdateProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdateInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ClusterUpdatePropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdateInternal)this).ClusterSize = (int?) content.GetValueForProperty("ClusterSize",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdateInternal)this).ClusterSize, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal ClusterUpdate(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdateInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdateProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdateInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ClusterUpdatePropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdateInternal)this).ClusterSize = (int?) content.GetValueForProperty("ClusterSize",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdateInternal)this).ClusterSize, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + AfterDeserializePSObject(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdate DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new ClusterUpdate(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdate DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new ClusterUpdate(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdate FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// An update of a cluster resource + [System.ComponentModel.TypeConverter(typeof(ClusterUpdateTypeConverter))] + public partial interface IClusterUpdate + + { + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/ClusterUpdate.TypeConverter.cs b/src/VMWare/generated/api/Models/Api20200320/ClusterUpdate.TypeConverter.cs new file mode 100644 index 000000000000..e6af50b02c68 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/ClusterUpdate.TypeConverter.cs @@ -0,0 +1,142 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class ClusterUpdateTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdate ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdate).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return ClusterUpdate.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return ClusterUpdate.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return ClusterUpdate.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/ClusterUpdate.cs b/src/VMWare/generated/api/Models/Api20200320/ClusterUpdate.cs new file mode 100644 index 000000000000..d8c22f8c7684 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/ClusterUpdate.cs @@ -0,0 +1,55 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// An update of a cluster resource + public partial class ClusterUpdate : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdate, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdateInternal + { + + /// The cluster size + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public int? ClusterSize { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdatePropertiesInternal)Property).ClusterSize; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdatePropertiesInternal)Property).ClusterSize = value; } + + /// Internal Acessors for Property + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdateProperties Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdateInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ClusterUpdateProperties()); set { {_property = value;} } } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdateProperties _property; + + /// The properties of a cluster resource that may be updated + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + internal Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdateProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ClusterUpdateProperties()); set => this._property = value; } + + /// Creates an new instance. + public ClusterUpdate() + { + + } + } + /// An update of a cluster resource + public partial interface IClusterUpdate : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IJsonSerializable + { + /// The cluster size + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The cluster size", + SerializedName = @"clusterSize", + PossibleTypes = new [] { typeof(int) })] + int? ClusterSize { get; set; } + + } + /// An update of a cluster resource + internal partial interface IClusterUpdateInternal + + { + /// The cluster size + int? ClusterSize { get; set; } + /// The properties of a cluster resource that may be updated + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdateProperties Property { get; set; } + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/ClusterUpdate.json.cs b/src/VMWare/generated/api/Models/Api20200320/ClusterUpdate.json.cs new file mode 100644 index 000000000000..8f3c0f470817 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/ClusterUpdate.json.cs @@ -0,0 +1,101 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// An update of a cluster resource + public partial class ClusterUpdate + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject instance to deserialize from. + internal ClusterUpdate(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ClusterUpdateProperties.FromJson(__jsonProperties) : Property;} + AfterFromJson(json); + } + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdate. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdate. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdate FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json ? new ClusterUpdate(json) : null; + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + AddIf( null != this._property ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) this._property.ToJson(null,serializationMode) : null, "properties" ,container.Add ); + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/ClusterUpdateProperties.PowerShell.cs b/src/VMWare/generated/api/Models/Api20200320/ClusterUpdateProperties.PowerShell.cs new file mode 100644 index 000000000000..e7ab31a6925d --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/ClusterUpdateProperties.PowerShell.cs @@ -0,0 +1,131 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// The properties of a cluster that may be updated + [System.ComponentModel.TypeConverter(typeof(ClusterUpdatePropertiesTypeConverter))] + public partial class ClusterUpdateProperties + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal ClusterUpdateProperties(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdatePropertiesInternal)this).ClusterSize = (int?) content.GetValueForProperty("ClusterSize",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdatePropertiesInternal)this).ClusterSize, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal ClusterUpdateProperties(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdatePropertiesInternal)this).ClusterSize = (int?) content.GetValueForProperty("ClusterSize",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdatePropertiesInternal)this).ClusterSize, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + AfterDeserializePSObject(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdateProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new ClusterUpdateProperties(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdateProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new ClusterUpdateProperties(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdateProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// The properties of a cluster that may be updated + [System.ComponentModel.TypeConverter(typeof(ClusterUpdatePropertiesTypeConverter))] + public partial interface IClusterUpdateProperties + + { + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/ClusterUpdateProperties.TypeConverter.cs b/src/VMWare/generated/api/Models/Api20200320/ClusterUpdateProperties.TypeConverter.cs new file mode 100644 index 000000000000..e9b6bd1bed55 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/ClusterUpdateProperties.TypeConverter.cs @@ -0,0 +1,142 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class ClusterUpdatePropertiesTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdateProperties ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdateProperties).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return ClusterUpdateProperties.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return ClusterUpdateProperties.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return ClusterUpdateProperties.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/ClusterUpdateProperties.cs b/src/VMWare/generated/api/Models/Api20200320/ClusterUpdateProperties.cs new file mode 100644 index 000000000000..2990d9f4dc92 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/ClusterUpdateProperties.cs @@ -0,0 +1,46 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// The properties of a cluster that may be updated + public partial class ClusterUpdateProperties : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdateProperties, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdatePropertiesInternal + { + + /// Backing field for property. + private int? _clusterSize; + + /// The cluster size + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public int? ClusterSize { get => this._clusterSize; set => this._clusterSize = value; } + + /// Creates an new instance. + public ClusterUpdateProperties() + { + + } + } + /// The properties of a cluster that may be updated + public partial interface IClusterUpdateProperties : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IJsonSerializable + { + /// The cluster size + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The cluster size", + SerializedName = @"clusterSize", + PossibleTypes = new [] { typeof(int) })] + int? ClusterSize { get; set; } + + } + /// The properties of a cluster that may be updated + internal partial interface IClusterUpdatePropertiesInternal + + { + /// The cluster size + int? ClusterSize { get; set; } + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/ClusterUpdateProperties.json.cs b/src/VMWare/generated/api/Models/Api20200320/ClusterUpdateProperties.json.cs new file mode 100644 index 000000000000..1d95e9ccff94 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/ClusterUpdateProperties.json.cs @@ -0,0 +1,101 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// The properties of a cluster that may be updated + public partial class ClusterUpdateProperties + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject instance to deserialize from. + internal ClusterUpdateProperties(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_clusterSize = If( json?.PropertyT("clusterSize"), out var __jsonClusterSize) ? (int?)__jsonClusterSize : ClusterSize;} + AfterFromJson(json); + } + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdateProperties. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdateProperties. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdateProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json ? new ClusterUpdateProperties(json) : null; + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + AddIf( null != this._clusterSize ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode)new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNumber((int)this._clusterSize) : null, "clusterSize" ,container.Add ); + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/Endpoints.PowerShell.cs b/src/VMWare/generated/api/Models/Api20200320/Endpoints.PowerShell.cs new file mode 100644 index 000000000000..e292c5c50628 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/Endpoints.PowerShell.cs @@ -0,0 +1,135 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// Endpoint addresses + [System.ComponentModel.TypeConverter(typeof(EndpointsTypeConverter))] + public partial class Endpoints + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IEndpoints DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new Endpoints(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IEndpoints DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new Endpoints(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal Endpoints(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IEndpointsInternal)this).HcxCloudManager = (string) content.GetValueForProperty("HcxCloudManager",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IEndpointsInternal)this).HcxCloudManager, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IEndpointsInternal)this).NsxtManager = (string) content.GetValueForProperty("NsxtManager",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IEndpointsInternal)this).NsxtManager, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IEndpointsInternal)this).Vcsa = (string) content.GetValueForProperty("Vcsa",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IEndpointsInternal)this).Vcsa, global::System.Convert.ToString); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal Endpoints(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IEndpointsInternal)this).HcxCloudManager = (string) content.GetValueForProperty("HcxCloudManager",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IEndpointsInternal)this).HcxCloudManager, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IEndpointsInternal)this).NsxtManager = (string) content.GetValueForProperty("NsxtManager",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IEndpointsInternal)this).NsxtManager, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IEndpointsInternal)this).Vcsa = (string) content.GetValueForProperty("Vcsa",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IEndpointsInternal)this).Vcsa, global::System.Convert.ToString); + AfterDeserializePSObject(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IEndpoints FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// Endpoint addresses + [System.ComponentModel.TypeConverter(typeof(EndpointsTypeConverter))] + public partial interface IEndpoints + + { + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/Endpoints.TypeConverter.cs b/src/VMWare/generated/api/Models/Api20200320/Endpoints.TypeConverter.cs new file mode 100644 index 000000000000..4cc825fb553e --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/Endpoints.TypeConverter.cs @@ -0,0 +1,142 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class EndpointsTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IEndpoints ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IEndpoints).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return Endpoints.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return Endpoints.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return Endpoints.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/Endpoints.cs b/src/VMWare/generated/api/Models/Api20200320/Endpoints.cs new file mode 100644 index 000000000000..e5860fae065a --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/Endpoints.cs @@ -0,0 +1,89 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// Endpoint addresses + public partial class Endpoints : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IEndpoints, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IEndpointsInternal + { + + /// Backing field for property. + private string _hcxCloudManager; + + /// Endpoint for the HCX Cloud Manager + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string HcxCloudManager { get => this._hcxCloudManager; } + + /// Internal Acessors for HcxCloudManager + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IEndpointsInternal.HcxCloudManager { get => this._hcxCloudManager; set { {_hcxCloudManager = value;} } } + + /// Internal Acessors for NsxtManager + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IEndpointsInternal.NsxtManager { get => this._nsxtManager; set { {_nsxtManager = value;} } } + + /// Internal Acessors for Vcsa + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IEndpointsInternal.Vcsa { get => this._vcsa; set { {_vcsa = value;} } } + + /// Backing field for property. + private string _nsxtManager; + + /// Endpoint for the NSX-T Data Center manager + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string NsxtManager { get => this._nsxtManager; } + + /// Backing field for property. + private string _vcsa; + + /// Endpoint for Virtual Center Server Appliance + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string Vcsa { get => this._vcsa; } + + /// Creates an new instance. + public Endpoints() + { + + } + } + /// Endpoint addresses + public partial interface IEndpoints : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IJsonSerializable + { + /// Endpoint for the HCX Cloud Manager + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"Endpoint for the HCX Cloud Manager", + SerializedName = @"hcxCloudManager", + PossibleTypes = new [] { typeof(string) })] + string HcxCloudManager { get; } + /// Endpoint for the NSX-T Data Center manager + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"Endpoint for the NSX-T Data Center manager", + SerializedName = @"nsxtManager", + PossibleTypes = new [] { typeof(string) })] + string NsxtManager { get; } + /// Endpoint for Virtual Center Server Appliance + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"Endpoint for Virtual Center Server Appliance", + SerializedName = @"vcsa", + PossibleTypes = new [] { typeof(string) })] + string Vcsa { get; } + + } + /// Endpoint addresses + internal partial interface IEndpointsInternal + + { + /// Endpoint for the HCX Cloud Manager + string HcxCloudManager { get; set; } + /// Endpoint for the NSX-T Data Center manager + string NsxtManager { get; set; } + /// Endpoint for Virtual Center Server Appliance + string Vcsa { get; set; } + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/Endpoints.json.cs b/src/VMWare/generated/api/Models/Api20200320/Endpoints.json.cs new file mode 100644 index 000000000000..9317c48b6a38 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/Endpoints.json.cs @@ -0,0 +1,114 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// Endpoint addresses + public partial class Endpoints + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject instance to deserialize from. + internal Endpoints(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_hcxCloudManager = If( json?.PropertyT("hcxCloudManager"), out var __jsonHcxCloudManager) ? (string)__jsonHcxCloudManager : (string)HcxCloudManager;} + {_nsxtManager = If( json?.PropertyT("nsxtManager"), out var __jsonNsxtManager) ? (string)__jsonNsxtManager : (string)NsxtManager;} + {_vcsa = If( json?.PropertyT("vcsa"), out var __jsonVcsa) ? (string)__jsonVcsa : (string)Vcsa;} + AfterFromJson(json); + } + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IEndpoints. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IEndpoints. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IEndpoints FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json ? new Endpoints(json) : null; + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._hcxCloudManager)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._hcxCloudManager.ToString()) : null, "hcxCloudManager" ,container.Add ); + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._nsxtManager)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._nsxtManager.ToString()) : null, "nsxtManager" ,container.Add ); + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._vcsa)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._vcsa.ToString()) : null, "vcsa" ,container.Add ); + } + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/ExpressRouteAuthorization.PowerShell.cs b/src/VMWare/generated/api/Models/Api20200320/ExpressRouteAuthorization.PowerShell.cs new file mode 100644 index 000000000000..f2adcb4f7496 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/ExpressRouteAuthorization.PowerShell.cs @@ -0,0 +1,143 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// ExpressRoute Circuit Authorization + [System.ComponentModel.TypeConverter(typeof(ExpressRouteAuthorizationTypeConverter))] + public partial class ExpressRouteAuthorization + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorization DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new ExpressRouteAuthorization(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorization DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new ExpressRouteAuthorization(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal ExpressRouteAuthorization(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ExpressRouteAuthorizationPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationInternal)this).ExpressRouteAuthorizationId = (string) content.GetValueForProperty("ExpressRouteAuthorizationId",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationInternal)this).ExpressRouteAuthorizationId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationInternal)this).Key = (string) content.GetValueForProperty("Key",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationInternal)this).Key, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ExpressRouteAuthorizationProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ExpressRouteAuthorizationProvisioningState.CreateFrom); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal ExpressRouteAuthorization(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ExpressRouteAuthorizationPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationInternal)this).ExpressRouteAuthorizationId = (string) content.GetValueForProperty("ExpressRouteAuthorizationId",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationInternal)this).ExpressRouteAuthorizationId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationInternal)this).Key = (string) content.GetValueForProperty("Key",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationInternal)this).Key, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ExpressRouteAuthorizationProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ExpressRouteAuthorizationProvisioningState.CreateFrom); + AfterDeserializePSObject(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorization FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// ExpressRoute Circuit Authorization + [System.ComponentModel.TypeConverter(typeof(ExpressRouteAuthorizationTypeConverter))] + public partial interface IExpressRouteAuthorization + + { + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/ExpressRouteAuthorization.TypeConverter.cs b/src/VMWare/generated/api/Models/Api20200320/ExpressRouteAuthorization.TypeConverter.cs new file mode 100644 index 000000000000..fc63ca7a6537 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/ExpressRouteAuthorization.TypeConverter.cs @@ -0,0 +1,142 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class ExpressRouteAuthorizationTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorization ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorization).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return ExpressRouteAuthorization.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return ExpressRouteAuthorization.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return ExpressRouteAuthorization.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/ExpressRouteAuthorization.cs b/src/VMWare/generated/api/Models/Api20200320/ExpressRouteAuthorization.cs new file mode 100644 index 000000000000..277c6821b289 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/ExpressRouteAuthorization.cs @@ -0,0 +1,132 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// ExpressRoute Circuit Authorization + public partial class ExpressRouteAuthorization : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorization, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationInternal, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IValidates + { + /// + /// Backing field for Inherited model + /// + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResource __resource = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.Resource(); + + /// The ID of the ExpressRoute Circuit Authorization + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public string ExpressRouteAuthorizationId { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationPropertiesInternal)Property).ExpressRouteAuthorizationId; } + + /// Resource ID. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inherited)] + public string Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)__resource).Id; } + + /// The key of the ExpressRoute Circuit Authorization + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public string Key { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationPropertiesInternal)Property).ExpressRouteAuthorizationKey; } + + /// Internal Acessors for ExpressRouteAuthorizationId + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationInternal.ExpressRouteAuthorizationId { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationPropertiesInternal)Property).ExpressRouteAuthorizationId; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationPropertiesInternal)Property).ExpressRouteAuthorizationId = value; } + + /// Internal Acessors for Key + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationInternal.Key { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationPropertiesInternal)Property).ExpressRouteAuthorizationKey; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationPropertiesInternal)Property).ExpressRouteAuthorizationKey = value; } + + /// Internal Acessors for Property + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationProperties Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ExpressRouteAuthorizationProperties()); set { {_property = value;} } } + + /// Internal Acessors for ProvisioningState + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ExpressRouteAuthorizationProvisioningState? Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationInternal.ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationPropertiesInternal)Property).ProvisioningState; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationPropertiesInternal)Property).ProvisioningState = value; } + + /// Internal Acessors for Id + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)__resource).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)__resource).Id = value; } + + /// Internal Acessors for Name + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal.Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)__resource).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)__resource).Name = value; } + + /// Internal Acessors for Type + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)__resource).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)__resource).Type = value; } + + /// Resource name. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inherited)] + public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)__resource).Name; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationProperties _property; + + /// The properties of an ExpressRoute Circuit Authorization resource + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + internal Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ExpressRouteAuthorizationProperties()); set => this._property = value; } + + /// The state of the ExpressRoute Circuit Authorization provisioning + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ExpressRouteAuthorizationProvisioningState? ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationPropertiesInternal)Property).ProvisioningState; } + + /// Resource type. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inherited)] + public string Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)__resource).Type; } + + /// Creates an new instance. + public ExpressRouteAuthorization() + { + + } + + /// Validates that this object meets the validation criteria. + /// an instance that will receive validation + /// events. + /// + /// A < see cref = "global::System.Threading.Tasks.Task" /> that will be complete when validation is completed. + /// + public async global::System.Threading.Tasks.Task Validate(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener) + { + await eventListener.AssertNotNull(nameof(__resource), __resource); + await eventListener.AssertObjectIsValid(nameof(__resource), __resource); + } + } + /// ExpressRoute Circuit Authorization + public partial interface IExpressRouteAuthorization : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IJsonSerializable, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResource + { + /// The ID of the ExpressRoute Circuit Authorization + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The ID of the ExpressRoute Circuit Authorization", + SerializedName = @"expressRouteAuthorizationId", + PossibleTypes = new [] { typeof(string) })] + string ExpressRouteAuthorizationId { get; } + /// The key of the ExpressRoute Circuit Authorization + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The key of the ExpressRoute Circuit Authorization", + SerializedName = @"expressRouteAuthorizationKey", + PossibleTypes = new [] { typeof(string) })] + string Key { get; } + /// The state of the ExpressRoute Circuit Authorization provisioning + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The state of the ExpressRoute Circuit Authorization provisioning", + SerializedName = @"provisioningState", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ExpressRouteAuthorizationProvisioningState) })] + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ExpressRouteAuthorizationProvisioningState? ProvisioningState { get; } + + } + /// ExpressRoute Circuit Authorization + internal partial interface IExpressRouteAuthorizationInternal : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal + { + /// The ID of the ExpressRoute Circuit Authorization + string ExpressRouteAuthorizationId { get; set; } + /// The key of the ExpressRoute Circuit Authorization + string Key { get; set; } + /// The properties of an ExpressRoute Circuit Authorization resource + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationProperties Property { get; set; } + /// The state of the ExpressRoute Circuit Authorization provisioning + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ExpressRouteAuthorizationProvisioningState? ProvisioningState { get; set; } + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/ExpressRouteAuthorization.json.cs b/src/VMWare/generated/api/Models/Api20200320/ExpressRouteAuthorization.json.cs new file mode 100644 index 000000000000..0be149ddc993 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/ExpressRouteAuthorization.json.cs @@ -0,0 +1,103 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// ExpressRoute Circuit Authorization + public partial class ExpressRouteAuthorization + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject instance to deserialize from. + internal ExpressRouteAuthorization(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + __resource = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.Resource(json); + {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ExpressRouteAuthorizationProperties.FromJson(__jsonProperties) : Property;} + AfterFromJson(json); + } + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorization. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorization. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorization FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json ? new ExpressRouteAuthorization(json) : null; + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + __resource?.ToJson(container, serializationMode); + AddIf( null != this._property ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) this._property.ToJson(null,serializationMode) : null, "properties" ,container.Add ); + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/ExpressRouteAuthorizationList.PowerShell.cs b/src/VMWare/generated/api/Models/Api20200320/ExpressRouteAuthorizationList.PowerShell.cs new file mode 100644 index 000000000000..b74c11294ac3 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/ExpressRouteAuthorizationList.PowerShell.cs @@ -0,0 +1,135 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// A paged list of ExpressRoute Circuit Authorizations + [System.ComponentModel.TypeConverter(typeof(ExpressRouteAuthorizationListTypeConverter))] + public partial class ExpressRouteAuthorizationList + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationList DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new ExpressRouteAuthorizationList(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationList DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new ExpressRouteAuthorizationList(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal ExpressRouteAuthorizationList(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationListInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationListInternal)this).NextLink, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationListInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorization[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationListInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ExpressRouteAuthorizationTypeConverter.ConvertFrom)); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal ExpressRouteAuthorizationList(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationListInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationListInternal)this).NextLink, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationListInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorization[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationListInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ExpressRouteAuthorizationTypeConverter.ConvertFrom)); + AfterDeserializePSObject(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationList FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// A paged list of ExpressRoute Circuit Authorizations + [System.ComponentModel.TypeConverter(typeof(ExpressRouteAuthorizationListTypeConverter))] + public partial interface IExpressRouteAuthorizationList + + { + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/ExpressRouteAuthorizationList.TypeConverter.cs b/src/VMWare/generated/api/Models/Api20200320/ExpressRouteAuthorizationList.TypeConverter.cs new file mode 100644 index 000000000000..d5ee7a4aaa52 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/ExpressRouteAuthorizationList.TypeConverter.cs @@ -0,0 +1,142 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class ExpressRouteAuthorizationListTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationList ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationList).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return ExpressRouteAuthorizationList.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return ExpressRouteAuthorizationList.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return ExpressRouteAuthorizationList.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/ExpressRouteAuthorizationList.cs b/src/VMWare/generated/api/Models/Api20200320/ExpressRouteAuthorizationList.cs new file mode 100644 index 000000000000..9e8a59aa01b7 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/ExpressRouteAuthorizationList.cs @@ -0,0 +1,69 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// A paged list of ExpressRoute Circuit Authorizations + public partial class ExpressRouteAuthorizationList : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationList, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationListInternal + { + + /// Internal Acessors for NextLink + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationListInternal.NextLink { get => this._nextLink; set { {_nextLink = value;} } } + + /// Internal Acessors for Value + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorization[] Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationListInternal.Value { get => this._value; set { {_value = value;} } } + + /// Backing field for property. + private string _nextLink; + + /// URL to get the next page if any + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string NextLink { get => this._nextLink; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorization[] _value; + + /// The items on a page + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorization[] Value { get => this._value; } + + /// Creates an new instance. + public ExpressRouteAuthorizationList() + { + + } + } + /// A paged list of ExpressRoute Circuit Authorizations + public partial interface IExpressRouteAuthorizationList : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IJsonSerializable + { + /// URL to get the next page if any + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"URL to get the next page if any", + SerializedName = @"nextLink", + PossibleTypes = new [] { typeof(string) })] + string NextLink { get; } + /// The items on a page + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The items on a page", + SerializedName = @"value", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorization) })] + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorization[] Value { get; } + + } + /// A paged list of ExpressRoute Circuit Authorizations + internal partial interface IExpressRouteAuthorizationListInternal + + { + /// URL to get the next page if any + string NextLink { get; set; } + /// The items on a page + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorization[] Value { get; set; } + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/ExpressRouteAuthorizationList.json.cs b/src/VMWare/generated/api/Models/Api20200320/ExpressRouteAuthorizationList.json.cs new file mode 100644 index 000000000000..2c3e82e5c7cb --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/ExpressRouteAuthorizationList.json.cs @@ -0,0 +1,117 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// A paged list of ExpressRoute Circuit Authorizations + public partial class ExpressRouteAuthorizationList + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject instance to deserialize from. + internal ExpressRouteAuthorizationList(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_nextLink = If( json?.PropertyT("nextLink"), out var __jsonNextLink) ? (string)__jsonNextLink : (string)NextLink;} + {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorization) (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ExpressRouteAuthorization.FromJson(__u) )) ))() : null : Value;} + AfterFromJson(json); + } + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationList. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationList. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationList FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json ? new ExpressRouteAuthorizationList(json) : null; + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._nextLink)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._nextLink.ToString()) : null, "nextLink" ,container.Add ); + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + if (null != this._value) + { + var __w = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.XNodeArray(); + foreach( var __x in this._value ) + { + AddIf(__x?.ToJson(null, serializationMode) ,__w.Add); + } + container.Add("value",__w); + } + } + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/ExpressRouteAuthorizationProperties.PowerShell.cs b/src/VMWare/generated/api/Models/Api20200320/ExpressRouteAuthorizationProperties.PowerShell.cs new file mode 100644 index 000000000000..849429742aa7 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/ExpressRouteAuthorizationProperties.PowerShell.cs @@ -0,0 +1,137 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// The properties of an ExpressRoute Circuit Authorization resource + [System.ComponentModel.TypeConverter(typeof(ExpressRouteAuthorizationPropertiesTypeConverter))] + public partial class ExpressRouteAuthorizationProperties + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new ExpressRouteAuthorizationProperties(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new ExpressRouteAuthorizationProperties(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal ExpressRouteAuthorizationProperties(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationPropertiesInternal)this).ExpressRouteAuthorizationId = (string) content.GetValueForProperty("ExpressRouteAuthorizationId",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationPropertiesInternal)this).ExpressRouteAuthorizationId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationPropertiesInternal)this).ExpressRouteAuthorizationKey = (string) content.GetValueForProperty("ExpressRouteAuthorizationKey",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationPropertiesInternal)this).ExpressRouteAuthorizationKey, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationPropertiesInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ExpressRouteAuthorizationProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationPropertiesInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ExpressRouteAuthorizationProvisioningState.CreateFrom); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal ExpressRouteAuthorizationProperties(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationPropertiesInternal)this).ExpressRouteAuthorizationId = (string) content.GetValueForProperty("ExpressRouteAuthorizationId",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationPropertiesInternal)this).ExpressRouteAuthorizationId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationPropertiesInternal)this).ExpressRouteAuthorizationKey = (string) content.GetValueForProperty("ExpressRouteAuthorizationKey",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationPropertiesInternal)this).ExpressRouteAuthorizationKey, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationPropertiesInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ExpressRouteAuthorizationProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationPropertiesInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ExpressRouteAuthorizationProvisioningState.CreateFrom); + AfterDeserializePSObject(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// The properties of an ExpressRoute Circuit Authorization resource + [System.ComponentModel.TypeConverter(typeof(ExpressRouteAuthorizationPropertiesTypeConverter))] + public partial interface IExpressRouteAuthorizationProperties + + { + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/ExpressRouteAuthorizationProperties.TypeConverter.cs b/src/VMWare/generated/api/Models/Api20200320/ExpressRouteAuthorizationProperties.TypeConverter.cs new file mode 100644 index 000000000000..107816f051d8 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/ExpressRouteAuthorizationProperties.TypeConverter.cs @@ -0,0 +1,143 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class ExpressRouteAuthorizationPropertiesTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise + /// false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationProperties ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationProperties).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return ExpressRouteAuthorizationProperties.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return ExpressRouteAuthorizationProperties.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return ExpressRouteAuthorizationProperties.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/ExpressRouteAuthorizationProperties.cs b/src/VMWare/generated/api/Models/Api20200320/ExpressRouteAuthorizationProperties.cs new file mode 100644 index 000000000000..923f11be5cf9 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/ExpressRouteAuthorizationProperties.cs @@ -0,0 +1,89 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// The properties of an ExpressRoute Circuit Authorization resource + public partial class ExpressRouteAuthorizationProperties : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationProperties, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationPropertiesInternal + { + + /// Backing field for property. + private string _expressRouteAuthorizationId; + + /// The ID of the ExpressRoute Circuit Authorization + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string ExpressRouteAuthorizationId { get => this._expressRouteAuthorizationId; } + + /// Backing field for property. + private string _expressRouteAuthorizationKey; + + /// The key of the ExpressRoute Circuit Authorization + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string ExpressRouteAuthorizationKey { get => this._expressRouteAuthorizationKey; } + + /// Internal Acessors for ExpressRouteAuthorizationId + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationPropertiesInternal.ExpressRouteAuthorizationId { get => this._expressRouteAuthorizationId; set { {_expressRouteAuthorizationId = value;} } } + + /// Internal Acessors for ExpressRouteAuthorizationKey + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationPropertiesInternal.ExpressRouteAuthorizationKey { get => this._expressRouteAuthorizationKey; set { {_expressRouteAuthorizationKey = value;} } } + + /// Internal Acessors for ProvisioningState + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ExpressRouteAuthorizationProvisioningState? Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationPropertiesInternal.ProvisioningState { get => this._provisioningState; set { {_provisioningState = value;} } } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ExpressRouteAuthorizationProvisioningState? _provisioningState; + + /// The state of the ExpressRoute Circuit Authorization provisioning + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ExpressRouteAuthorizationProvisioningState? ProvisioningState { get => this._provisioningState; } + + /// Creates an new instance. + public ExpressRouteAuthorizationProperties() + { + + } + } + /// The properties of an ExpressRoute Circuit Authorization resource + public partial interface IExpressRouteAuthorizationProperties : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IJsonSerializable + { + /// The ID of the ExpressRoute Circuit Authorization + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The ID of the ExpressRoute Circuit Authorization", + SerializedName = @"expressRouteAuthorizationId", + PossibleTypes = new [] { typeof(string) })] + string ExpressRouteAuthorizationId { get; } + /// The key of the ExpressRoute Circuit Authorization + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The key of the ExpressRoute Circuit Authorization", + SerializedName = @"expressRouteAuthorizationKey", + PossibleTypes = new [] { typeof(string) })] + string ExpressRouteAuthorizationKey { get; } + /// The state of the ExpressRoute Circuit Authorization provisioning + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The state of the ExpressRoute Circuit Authorization provisioning", + SerializedName = @"provisioningState", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ExpressRouteAuthorizationProvisioningState) })] + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ExpressRouteAuthorizationProvisioningState? ProvisioningState { get; } + + } + /// The properties of an ExpressRoute Circuit Authorization resource + internal partial interface IExpressRouteAuthorizationPropertiesInternal + + { + /// The ID of the ExpressRoute Circuit Authorization + string ExpressRouteAuthorizationId { get; set; } + /// The key of the ExpressRoute Circuit Authorization + string ExpressRouteAuthorizationKey { get; set; } + /// The state of the ExpressRoute Circuit Authorization provisioning + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ExpressRouteAuthorizationProvisioningState? ProvisioningState { get; set; } + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/ExpressRouteAuthorizationProperties.json.cs b/src/VMWare/generated/api/Models/Api20200320/ExpressRouteAuthorizationProperties.json.cs new file mode 100644 index 000000000000..d3dc8e3def1d --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/ExpressRouteAuthorizationProperties.json.cs @@ -0,0 +1,115 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// The properties of an ExpressRoute Circuit Authorization resource + public partial class ExpressRouteAuthorizationProperties + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject instance to deserialize from. + internal ExpressRouteAuthorizationProperties(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_expressRouteAuthorizationId = If( json?.PropertyT("expressRouteAuthorizationId"), out var __jsonExpressRouteAuthorizationId) ? (string)__jsonExpressRouteAuthorizationId : (string)ExpressRouteAuthorizationId;} + {_expressRouteAuthorizationKey = If( json?.PropertyT("expressRouteAuthorizationKey"), out var __jsonExpressRouteAuthorizationKey) ? (string)__jsonExpressRouteAuthorizationKey : (string)ExpressRouteAuthorizationKey;} + {_provisioningState = If( json?.PropertyT("provisioningState"), out var __jsonProvisioningState) ? (string)__jsonProvisioningState : (string)ProvisioningState;} + AfterFromJson(json); + } + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationProperties. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationProperties. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorizationProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json ? new ExpressRouteAuthorizationProperties(json) : null; + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._expressRouteAuthorizationId)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._expressRouteAuthorizationId.ToString()) : null, "expressRouteAuthorizationId" ,container.Add ); + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._expressRouteAuthorizationKey)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._expressRouteAuthorizationKey.ToString()) : null, "expressRouteAuthorizationKey" ,container.Add ); + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._provisioningState)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._provisioningState.ToString()) : null, "provisioningState" ,container.Add ); + } + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/HcxEnterpriseSite.PowerShell.cs b/src/VMWare/generated/api/Models/Api20200320/HcxEnterpriseSite.PowerShell.cs new file mode 100644 index 000000000000..6ea0f03b3cd2 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/HcxEnterpriseSite.PowerShell.cs @@ -0,0 +1,141 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// An HCX Enterprise Site resource + [System.ComponentModel.TypeConverter(typeof(HcxEnterpriseSiteTypeConverter))] + public partial class HcxEnterpriseSite + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSite DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new HcxEnterpriseSite(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSite DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new HcxEnterpriseSite(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSite FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal HcxEnterpriseSite(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSiteInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSiteProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSiteInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.HcxEnterpriseSitePropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSiteInternal)this).ActivationKey = (string) content.GetValueForProperty("ActivationKey",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSiteInternal)this).ActivationKey, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSiteInternal)this).Status = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.HcxEnterpriseSiteStatus?) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSiteInternal)this).Status, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.HcxEnterpriseSiteStatus.CreateFrom); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal HcxEnterpriseSite(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSiteInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSiteProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSiteInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.HcxEnterpriseSitePropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSiteInternal)this).ActivationKey = (string) content.GetValueForProperty("ActivationKey",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSiteInternal)this).ActivationKey, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSiteInternal)this).Status = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.HcxEnterpriseSiteStatus?) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSiteInternal)this).Status, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.HcxEnterpriseSiteStatus.CreateFrom); + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// An HCX Enterprise Site resource + [System.ComponentModel.TypeConverter(typeof(HcxEnterpriseSiteTypeConverter))] + public partial interface IHcxEnterpriseSite + + { + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/HcxEnterpriseSite.TypeConverter.cs b/src/VMWare/generated/api/Models/Api20200320/HcxEnterpriseSite.TypeConverter.cs new file mode 100644 index 000000000000..e0abe91f655a --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/HcxEnterpriseSite.TypeConverter.cs @@ -0,0 +1,142 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class HcxEnterpriseSiteTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSite ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSite).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return HcxEnterpriseSite.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return HcxEnterpriseSite.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return HcxEnterpriseSite.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/HcxEnterpriseSite.cs b/src/VMWare/generated/api/Models/Api20200320/HcxEnterpriseSite.cs new file mode 100644 index 000000000000..40e401004a89 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/HcxEnterpriseSite.cs @@ -0,0 +1,115 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// An HCX Enterprise Site resource + public partial class HcxEnterpriseSite : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSite, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSiteInternal, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IValidates + { + /// + /// Backing field for Inherited model + /// + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResource __resource = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.Resource(); + + /// The activation key + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public string ActivationKey { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSitePropertiesInternal)Property).ActivationKey; } + + /// Resource ID. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inherited)] + public string Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)__resource).Id; } + + /// Internal Acessors for ActivationKey + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSiteInternal.ActivationKey { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSitePropertiesInternal)Property).ActivationKey; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSitePropertiesInternal)Property).ActivationKey = value; } + + /// Internal Acessors for Property + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSiteProperties Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSiteInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.HcxEnterpriseSiteProperties()); set { {_property = value;} } } + + /// Internal Acessors for Status + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.HcxEnterpriseSiteStatus? Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSiteInternal.Status { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSitePropertiesInternal)Property).Status; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSitePropertiesInternal)Property).Status = value; } + + /// Internal Acessors for Id + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)__resource).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)__resource).Id = value; } + + /// Internal Acessors for Name + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal.Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)__resource).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)__resource).Name = value; } + + /// Internal Acessors for Type + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)__resource).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)__resource).Type = value; } + + /// Resource name. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inherited)] + public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)__resource).Name; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSiteProperties _property; + + /// The properties of an HCX Enterprise Site resource + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + internal Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSiteProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.HcxEnterpriseSiteProperties()); set => this._property = value; } + + /// The status of the HCX Enterprise Site + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.HcxEnterpriseSiteStatus? Status { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSitePropertiesInternal)Property).Status; } + + /// Resource type. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inherited)] + public string Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)__resource).Type; } + + /// Creates an new instance. + public HcxEnterpriseSite() + { + + } + + /// Validates that this object meets the validation criteria. + /// an instance that will receive validation + /// events. + /// + /// A < see cref = "global::System.Threading.Tasks.Task" /> that will be complete when validation is completed. + /// + public async global::System.Threading.Tasks.Task Validate(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener) + { + await eventListener.AssertNotNull(nameof(__resource), __resource); + await eventListener.AssertObjectIsValid(nameof(__resource), __resource); + } + } + /// An HCX Enterprise Site resource + public partial interface IHcxEnterpriseSite : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IJsonSerializable, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResource + { + /// The activation key + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The activation key", + SerializedName = @"activationKey", + PossibleTypes = new [] { typeof(string) })] + string ActivationKey { get; } + /// The status of the HCX Enterprise Site + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The status of the HCX Enterprise Site", + SerializedName = @"status", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.HcxEnterpriseSiteStatus) })] + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.HcxEnterpriseSiteStatus? Status { get; } + + } + /// An HCX Enterprise Site resource + internal partial interface IHcxEnterpriseSiteInternal : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal + { + /// The activation key + string ActivationKey { get; set; } + /// The properties of an HCX Enterprise Site resource + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSiteProperties Property { get; set; } + /// The status of the HCX Enterprise Site + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.HcxEnterpriseSiteStatus? Status { get; set; } + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/HcxEnterpriseSite.json.cs b/src/VMWare/generated/api/Models/Api20200320/HcxEnterpriseSite.json.cs new file mode 100644 index 000000000000..008fc96d0324 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/HcxEnterpriseSite.json.cs @@ -0,0 +1,103 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// An HCX Enterprise Site resource + public partial class HcxEnterpriseSite + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSite. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSite. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSite FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json ? new HcxEnterpriseSite(json) : null; + } + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject instance to deserialize from. + internal HcxEnterpriseSite(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + __resource = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.Resource(json); + {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.HcxEnterpriseSiteProperties.FromJson(__jsonProperties) : Property;} + AfterFromJson(json); + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + __resource?.ToJson(container, serializationMode); + AddIf( null != this._property ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) this._property.ToJson(null,serializationMode) : null, "properties" ,container.Add ); + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/HcxEnterpriseSiteList.PowerShell.cs b/src/VMWare/generated/api/Models/Api20200320/HcxEnterpriseSiteList.PowerShell.cs new file mode 100644 index 000000000000..07f6ebe4bdbb --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/HcxEnterpriseSiteList.PowerShell.cs @@ -0,0 +1,133 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// A paged list of HCX Enterprise Sites + [System.ComponentModel.TypeConverter(typeof(HcxEnterpriseSiteListTypeConverter))] + public partial class HcxEnterpriseSiteList + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSiteList DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new HcxEnterpriseSiteList(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSiteList DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new HcxEnterpriseSiteList(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSiteList FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal HcxEnterpriseSiteList(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSiteListInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSiteListInternal)this).NextLink, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSiteListInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSite[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSiteListInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.HcxEnterpriseSiteTypeConverter.ConvertFrom)); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal HcxEnterpriseSiteList(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSiteListInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSiteListInternal)this).NextLink, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSiteListInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSite[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSiteListInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.HcxEnterpriseSiteTypeConverter.ConvertFrom)); + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// A paged list of HCX Enterprise Sites + [System.ComponentModel.TypeConverter(typeof(HcxEnterpriseSiteListTypeConverter))] + public partial interface IHcxEnterpriseSiteList + + { + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/HcxEnterpriseSiteList.TypeConverter.cs b/src/VMWare/generated/api/Models/Api20200320/HcxEnterpriseSiteList.TypeConverter.cs new file mode 100644 index 000000000000..1896c6ef03e6 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/HcxEnterpriseSiteList.TypeConverter.cs @@ -0,0 +1,142 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class HcxEnterpriseSiteListTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSiteList ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSiteList).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return HcxEnterpriseSiteList.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return HcxEnterpriseSiteList.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return HcxEnterpriseSiteList.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/HcxEnterpriseSiteList.cs b/src/VMWare/generated/api/Models/Api20200320/HcxEnterpriseSiteList.cs new file mode 100644 index 000000000000..1bc975a7c705 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/HcxEnterpriseSiteList.cs @@ -0,0 +1,69 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// A paged list of HCX Enterprise Sites + public partial class HcxEnterpriseSiteList : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSiteList, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSiteListInternal + { + + /// Internal Acessors for NextLink + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSiteListInternal.NextLink { get => this._nextLink; set { {_nextLink = value;} } } + + /// Internal Acessors for Value + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSite[] Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSiteListInternal.Value { get => this._value; set { {_value = value;} } } + + /// Backing field for property. + private string _nextLink; + + /// URL to get the next page if any + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string NextLink { get => this._nextLink; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSite[] _value; + + /// The items on a page + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSite[] Value { get => this._value; } + + /// Creates an new instance. + public HcxEnterpriseSiteList() + { + + } + } + /// A paged list of HCX Enterprise Sites + public partial interface IHcxEnterpriseSiteList : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IJsonSerializable + { + /// URL to get the next page if any + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"URL to get the next page if any", + SerializedName = @"nextLink", + PossibleTypes = new [] { typeof(string) })] + string NextLink { get; } + /// The items on a page + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The items on a page", + SerializedName = @"value", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSite) })] + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSite[] Value { get; } + + } + /// A paged list of HCX Enterprise Sites + internal partial interface IHcxEnterpriseSiteListInternal + + { + /// URL to get the next page if any + string NextLink { get; set; } + /// The items on a page + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSite[] Value { get; set; } + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/HcxEnterpriseSiteList.json.cs b/src/VMWare/generated/api/Models/Api20200320/HcxEnterpriseSiteList.json.cs new file mode 100644 index 000000000000..60e72104fada --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/HcxEnterpriseSiteList.json.cs @@ -0,0 +1,117 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// A paged list of HCX Enterprise Sites + public partial class HcxEnterpriseSiteList + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSiteList. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSiteList. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSiteList FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json ? new HcxEnterpriseSiteList(json) : null; + } + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject instance to deserialize from. + internal HcxEnterpriseSiteList(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_nextLink = If( json?.PropertyT("nextLink"), out var __jsonNextLink) ? (string)__jsonNextLink : (string)NextLink;} + {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSite) (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.HcxEnterpriseSite.FromJson(__u) )) ))() : null : Value;} + AfterFromJson(json); + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._nextLink)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._nextLink.ToString()) : null, "nextLink" ,container.Add ); + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + if (null != this._value) + { + var __w = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.XNodeArray(); + foreach( var __x in this._value ) + { + AddIf(__x?.ToJson(null, serializationMode) ,__w.Add); + } + container.Add("value",__w); + } + } + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/HcxEnterpriseSiteProperties.PowerShell.cs b/src/VMWare/generated/api/Models/Api20200320/HcxEnterpriseSiteProperties.PowerShell.cs new file mode 100644 index 000000000000..c74db999f81f --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/HcxEnterpriseSiteProperties.PowerShell.cs @@ -0,0 +1,133 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// The properties of an HCX Enterprise Site + [System.ComponentModel.TypeConverter(typeof(HcxEnterpriseSitePropertiesTypeConverter))] + public partial class HcxEnterpriseSiteProperties + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSiteProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new HcxEnterpriseSiteProperties(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSiteProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new HcxEnterpriseSiteProperties(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSiteProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal HcxEnterpriseSiteProperties(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSitePropertiesInternal)this).ActivationKey = (string) content.GetValueForProperty("ActivationKey",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSitePropertiesInternal)this).ActivationKey, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSitePropertiesInternal)this).Status = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.HcxEnterpriseSiteStatus?) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSitePropertiesInternal)this).Status, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.HcxEnterpriseSiteStatus.CreateFrom); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal HcxEnterpriseSiteProperties(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSitePropertiesInternal)this).ActivationKey = (string) content.GetValueForProperty("ActivationKey",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSitePropertiesInternal)this).ActivationKey, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSitePropertiesInternal)this).Status = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.HcxEnterpriseSiteStatus?) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSitePropertiesInternal)this).Status, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.HcxEnterpriseSiteStatus.CreateFrom); + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// The properties of an HCX Enterprise Site + [System.ComponentModel.TypeConverter(typeof(HcxEnterpriseSitePropertiesTypeConverter))] + public partial interface IHcxEnterpriseSiteProperties + + { + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/HcxEnterpriseSiteProperties.TypeConverter.cs b/src/VMWare/generated/api/Models/Api20200320/HcxEnterpriseSiteProperties.TypeConverter.cs new file mode 100644 index 000000000000..6bef48e2b99e --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/HcxEnterpriseSiteProperties.TypeConverter.cs @@ -0,0 +1,142 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class HcxEnterpriseSitePropertiesTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSiteProperties ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSiteProperties).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return HcxEnterpriseSiteProperties.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return HcxEnterpriseSiteProperties.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return HcxEnterpriseSiteProperties.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/HcxEnterpriseSiteProperties.cs b/src/VMWare/generated/api/Models/Api20200320/HcxEnterpriseSiteProperties.cs new file mode 100644 index 000000000000..9efa9d131b4b --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/HcxEnterpriseSiteProperties.cs @@ -0,0 +1,69 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// The properties of an HCX Enterprise Site + public partial class HcxEnterpriseSiteProperties : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSiteProperties, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSitePropertiesInternal + { + + /// Backing field for property. + private string _activationKey; + + /// The activation key + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string ActivationKey { get => this._activationKey; } + + /// Internal Acessors for ActivationKey + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSitePropertiesInternal.ActivationKey { get => this._activationKey; set { {_activationKey = value;} } } + + /// Internal Acessors for Status + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.HcxEnterpriseSiteStatus? Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSitePropertiesInternal.Status { get => this._status; set { {_status = value;} } } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.HcxEnterpriseSiteStatus? _status; + + /// The status of the HCX Enterprise Site + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.HcxEnterpriseSiteStatus? Status { get => this._status; } + + /// Creates an new instance. + public HcxEnterpriseSiteProperties() + { + + } + } + /// The properties of an HCX Enterprise Site + public partial interface IHcxEnterpriseSiteProperties : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IJsonSerializable + { + /// The activation key + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The activation key", + SerializedName = @"activationKey", + PossibleTypes = new [] { typeof(string) })] + string ActivationKey { get; } + /// The status of the HCX Enterprise Site + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The status of the HCX Enterprise Site", + SerializedName = @"status", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.HcxEnterpriseSiteStatus) })] + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.HcxEnterpriseSiteStatus? Status { get; } + + } + /// The properties of an HCX Enterprise Site + internal partial interface IHcxEnterpriseSitePropertiesInternal + + { + /// The activation key + string ActivationKey { get; set; } + /// The status of the HCX Enterprise Site + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.HcxEnterpriseSiteStatus? Status { get; set; } + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/HcxEnterpriseSiteProperties.json.cs b/src/VMWare/generated/api/Models/Api20200320/HcxEnterpriseSiteProperties.json.cs new file mode 100644 index 000000000000..ed8b3a3cb14e --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/HcxEnterpriseSiteProperties.json.cs @@ -0,0 +1,109 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// The properties of an HCX Enterprise Site + public partial class HcxEnterpriseSiteProperties + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSiteProperties. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSiteProperties. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IHcxEnterpriseSiteProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json ? new HcxEnterpriseSiteProperties(json) : null; + } + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject instance to deserialize from. + internal HcxEnterpriseSiteProperties(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_activationKey = If( json?.PropertyT("activationKey"), out var __jsonActivationKey) ? (string)__jsonActivationKey : (string)ActivationKey;} + {_status = If( json?.PropertyT("status"), out var __jsonStatus) ? (string)__jsonStatus : (string)Status;} + AfterFromJson(json); + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._activationKey)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._activationKey.ToString()) : null, "activationKey" ,container.Add ); + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._status)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._status.ToString()) : null, "status" ,container.Add ); + } + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/HcxenterprisesitesHcxenterprisesitenamePutRequestbodyContentApplicationJsonSchema.PowerShell.cs b/src/VMWare/generated/api/Models/Api20200320/HcxenterprisesitesHcxenterprisesitenamePutRequestbodyContentApplicationJsonSchema.PowerShell.cs new file mode 100644 index 000000000000..a0600fdce9e6 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/HcxenterprisesitesHcxenterprisesitenamePutRequestbodyContentApplicationJsonSchema.PowerShell.cs @@ -0,0 +1,130 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + [System.ComponentModel.TypeConverter(typeof(PathsZuk3RdSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameHcxenterprisesitesHcxenterprisesitenamePutRequestbodyContentApplicationJsonSchemaTypeConverter))] + public partial class PathsZuk3RdSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameHcxenterprisesitesHcxenterprisesitenamePutRequestbodyContentApplicationJsonSchema + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPathsZuk3RdSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameHcxenterprisesitesHcxenterprisesitenamePutRequestbodyContentApplicationJsonSchema DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new PathsZuk3RdSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameHcxenterprisesitesHcxenterprisesitenamePutRequestbodyContentApplicationJsonSchema(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPathsZuk3RdSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameHcxenterprisesitesHcxenterprisesitenamePutRequestbodyContentApplicationJsonSchema DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new PathsZuk3RdSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameHcxenterprisesitesHcxenterprisesitenamePutRequestbodyContentApplicationJsonSchema(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPathsZuk3RdSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameHcxenterprisesitesHcxenterprisesitenamePutRequestbodyContentApplicationJsonSchema FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal PathsZuk3RdSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameHcxenterprisesitesHcxenterprisesitenamePutRequestbodyContentApplicationJsonSchema(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal PathsZuk3RdSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameHcxenterprisesitesHcxenterprisesitenamePutRequestbodyContentApplicationJsonSchema(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + [System.ComponentModel.TypeConverter(typeof(PathsZuk3RdSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameHcxenterprisesitesHcxenterprisesitenamePutRequestbodyContentApplicationJsonSchemaTypeConverter))] + public partial interface IPathsZuk3RdSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameHcxenterprisesitesHcxenterprisesitenamePutRequestbodyContentApplicationJsonSchema + + { + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/HcxenterprisesitesHcxenterprisesitenamePutRequestbodyContentApplicationJsonSchema.TypeConverter.cs b/src/VMWare/generated/api/Models/Api20200320/HcxenterprisesitesHcxenterprisesitenamePutRequestbodyContentApplicationJsonSchema.TypeConverter.cs new file mode 100644 index 000000000000..51b31b84efbf --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/HcxenterprisesitesHcxenterprisesitenamePutRequestbodyContentApplicationJsonSchema.TypeConverter.cs @@ -0,0 +1,147 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class PathsZuk3RdSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameHcxenterprisesitesHcxenterprisesitenamePutRequestbodyContentApplicationJsonSchemaTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPathsZuk3RdSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameHcxenterprisesitesHcxenterprisesitenamePutRequestbodyContentApplicationJsonSchema ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPathsZuk3RdSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameHcxenterprisesitesHcxenterprisesitenamePutRequestbodyContentApplicationJsonSchema).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return PathsZuk3RdSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameHcxenterprisesitesHcxenterprisesitenamePutRequestbodyContentApplicationJsonSchema.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return PathsZuk3RdSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameHcxenterprisesitesHcxenterprisesitenamePutRequestbodyContentApplicationJsonSchema.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return PathsZuk3RdSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameHcxenterprisesitesHcxenterprisesitenamePutRequestbodyContentApplicationJsonSchema.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/HcxenterprisesitesHcxenterprisesitenamePutRequestbodyContentApplicationJsonSchema.cs b/src/VMWare/generated/api/Models/Api20200320/HcxenterprisesitesHcxenterprisesitenamePutRequestbodyContentApplicationJsonSchema.cs new file mode 100644 index 000000000000..d6c725f52fd0 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/HcxenterprisesitesHcxenterprisesitenamePutRequestbodyContentApplicationJsonSchema.cs @@ -0,0 +1,29 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + public partial class PathsZuk3RdSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameHcxenterprisesitesHcxenterprisesitenamePutRequestbodyContentApplicationJsonSchema : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPathsZuk3RdSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameHcxenterprisesitesHcxenterprisesitenamePutRequestbodyContentApplicationJsonSchema, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPathsZuk3RdSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameHcxenterprisesitesHcxenterprisesitenamePutRequestbodyContentApplicationJsonSchemaInternal + { + + /// + /// Creates an new instance. + /// + public PathsZuk3RdSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameHcxenterprisesitesHcxenterprisesitenamePutRequestbodyContentApplicationJsonSchema() + { + + } + } + public partial interface IPathsZuk3RdSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameHcxenterprisesitesHcxenterprisesitenamePutRequestbodyContentApplicationJsonSchema : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IJsonSerializable + { + + } + internal partial interface IPathsZuk3RdSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameHcxenterprisesitesHcxenterprisesitenamePutRequestbodyContentApplicationJsonSchemaInternal + + { + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/HcxenterprisesitesHcxenterprisesitenamePutRequestbodyContentApplicationJsonSchema.json.cs b/src/VMWare/generated/api/Models/Api20200320/HcxenterprisesitesHcxenterprisesitenamePutRequestbodyContentApplicationJsonSchema.json.cs new file mode 100644 index 000000000000..44a98657919f --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/HcxenterprisesitesHcxenterprisesitenamePutRequestbodyContentApplicationJsonSchema.json.cs @@ -0,0 +1,101 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + public partial class PathsZuk3RdSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameHcxenterprisesitesHcxenterprisesitenamePutRequestbodyContentApplicationJsonSchema + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPathsZuk3RdSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameHcxenterprisesitesHcxenterprisesitenamePutRequestbodyContentApplicationJsonSchema. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPathsZuk3RdSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameHcxenterprisesitesHcxenterprisesitenamePutRequestbodyContentApplicationJsonSchema. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPathsZuk3RdSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameHcxenterprisesitesHcxenterprisesitenamePutRequestbodyContentApplicationJsonSchema FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json ? new PathsZuk3RdSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameHcxenterprisesitesHcxenterprisesitenamePutRequestbodyContentApplicationJsonSchema(json) : null; + } + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject instance to deserialize from. + internal PathsZuk3RdSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameHcxenterprisesitesHcxenterprisesitenamePutRequestbodyContentApplicationJsonSchema(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + AfterFromJson(json); + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/IdentitySource.PowerShell.cs b/src/VMWare/generated/api/Models/Api20200320/IdentitySource.PowerShell.cs new file mode 100644 index 000000000000..897fe737709c --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/IdentitySource.PowerShell.cs @@ -0,0 +1,149 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// vCenter Single Sign On Identity Source + [System.ComponentModel.TypeConverter(typeof(IdentitySourceTypeConverter))] + public partial class IdentitySource + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySource DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new IdentitySource(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySource DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new IdentitySource(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySource FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal IdentitySource(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySourceInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySourceInternal)this).Alias = (string) content.GetValueForProperty("Alias",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySourceInternal)this).Alias, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySourceInternal)this).BaseGroupDn = (string) content.GetValueForProperty("BaseGroupDn",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySourceInternal)this).BaseGroupDn, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySourceInternal)this).BaseUserDn = (string) content.GetValueForProperty("BaseUserDn",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySourceInternal)this).BaseUserDn, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySourceInternal)this).Domain = (string) content.GetValueForProperty("Domain",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySourceInternal)this).Domain, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySourceInternal)this).Password = (string) content.GetValueForProperty("Password",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySourceInternal)this).Password, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySourceInternal)this).PrimaryServer = (string) content.GetValueForProperty("PrimaryServer",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySourceInternal)this).PrimaryServer, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySourceInternal)this).SecondaryServer = (string) content.GetValueForProperty("SecondaryServer",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySourceInternal)this).SecondaryServer, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySourceInternal)this).Ssl = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.SslEnum?) content.GetValueForProperty("Ssl",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySourceInternal)this).Ssl, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.SslEnum.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySourceInternal)this).Username = (string) content.GetValueForProperty("Username",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySourceInternal)this).Username, global::System.Convert.ToString); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal IdentitySource(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySourceInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySourceInternal)this).Alias = (string) content.GetValueForProperty("Alias",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySourceInternal)this).Alias, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySourceInternal)this).BaseGroupDn = (string) content.GetValueForProperty("BaseGroupDn",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySourceInternal)this).BaseGroupDn, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySourceInternal)this).BaseUserDn = (string) content.GetValueForProperty("BaseUserDn",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySourceInternal)this).BaseUserDn, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySourceInternal)this).Domain = (string) content.GetValueForProperty("Domain",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySourceInternal)this).Domain, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySourceInternal)this).Password = (string) content.GetValueForProperty("Password",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySourceInternal)this).Password, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySourceInternal)this).PrimaryServer = (string) content.GetValueForProperty("PrimaryServer",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySourceInternal)this).PrimaryServer, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySourceInternal)this).SecondaryServer = (string) content.GetValueForProperty("SecondaryServer",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySourceInternal)this).SecondaryServer, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySourceInternal)this).Ssl = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.SslEnum?) content.GetValueForProperty("Ssl",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySourceInternal)this).Ssl, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.SslEnum.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySourceInternal)this).Username = (string) content.GetValueForProperty("Username",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySourceInternal)this).Username, global::System.Convert.ToString); + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// vCenter Single Sign On Identity Source + [System.ComponentModel.TypeConverter(typeof(IdentitySourceTypeConverter))] + public partial interface IIdentitySource + + { + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/IdentitySource.TypeConverter.cs b/src/VMWare/generated/api/Models/Api20200320/IdentitySource.TypeConverter.cs new file mode 100644 index 000000000000..9039ae55556c --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/IdentitySource.TypeConverter.cs @@ -0,0 +1,142 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class IdentitySourceTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySource ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySource).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return IdentitySource.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return IdentitySource.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return IdentitySource.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/IdentitySource.cs b/src/VMWare/generated/api/Models/Api20200320/IdentitySource.cs new file mode 100644 index 000000000000..35f51c412424 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/IdentitySource.cs @@ -0,0 +1,211 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// vCenter Single Sign On Identity Source + public partial class IdentitySource : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySource, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySourceInternal + { + + /// Backing field for property. + private string _alias; + + /// The domain's NetBIOS name + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string Alias { get => this._alias; set => this._alias = value; } + + /// Backing field for property. + private string _baseGroupDn; + + /// The base distinguished name for groups + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string BaseGroupDn { get => this._baseGroupDn; set => this._baseGroupDn = value; } + + /// Backing field for property. + private string _baseUserDn; + + /// The base distinguished name for users + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string BaseUserDn { get => this._baseUserDn; set => this._baseUserDn = value; } + + /// Backing field for property. + private string _domain; + + /// The domain's dns name + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string Domain { get => this._domain; set => this._domain = value; } + + /// Backing field for property. + private string _name; + + /// The name of the identity source + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string Name { get => this._name; set => this._name = value; } + + /// Backing field for property. + private string _password; + + /// + /// The password of the Active Directory user with a minimum of read-only access to Base DN for users and groups. + /// + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string Password { get => this._password; set => this._password = value; } + + /// Backing field for property. + private string _primaryServer; + + /// Primary server URL + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string PrimaryServer { get => this._primaryServer; set => this._primaryServer = value; } + + /// Backing field for property. + private string _secondaryServer; + + /// Secondary server URL + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string SecondaryServer { get => this._secondaryServer; set => this._secondaryServer = value; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.SslEnum? _ssl; + + /// Protect LDAP communication using SSL certificate (LDAPS) + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.SslEnum? Ssl { get => this._ssl; set => this._ssl = value; } + + /// Backing field for property. + private string _username; + + /// + /// The ID of an Active Directory user with a minimum of read-only access to Base DN for users and group + /// + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string Username { get => this._username; set => this._username = value; } + + /// Creates an new instance. + public IdentitySource() + { + + } + } + /// vCenter Single Sign On Identity Source + public partial interface IIdentitySource : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IJsonSerializable + { + /// The domain's NetBIOS name + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The domain's NetBIOS name", + SerializedName = @"alias", + PossibleTypes = new [] { typeof(string) })] + string Alias { get; set; } + /// The base distinguished name for groups + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The base distinguished name for groups", + SerializedName = @"baseGroupDN", + PossibleTypes = new [] { typeof(string) })] + string BaseGroupDn { get; set; } + /// The base distinguished name for users + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The base distinguished name for users", + SerializedName = @"baseUserDN", + PossibleTypes = new [] { typeof(string) })] + string BaseUserDn { get; set; } + /// The domain's dns name + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The domain's dns name", + SerializedName = @"domain", + PossibleTypes = new [] { typeof(string) })] + string Domain { get; set; } + /// The name of the identity source + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The name of the identity source", + SerializedName = @"name", + PossibleTypes = new [] { typeof(string) })] + string Name { get; set; } + /// + /// The password of the Active Directory user with a minimum of read-only access to Base DN for users and groups. + /// + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The password of the Active Directory user with a minimum of read-only access to Base DN for users and groups.", + SerializedName = @"password", + PossibleTypes = new [] { typeof(string) })] + string Password { get; set; } + /// Primary server URL + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Primary server URL", + SerializedName = @"primaryServer", + PossibleTypes = new [] { typeof(string) })] + string PrimaryServer { get; set; } + /// Secondary server URL + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Secondary server URL", + SerializedName = @"secondaryServer", + PossibleTypes = new [] { typeof(string) })] + string SecondaryServer { get; set; } + /// Protect LDAP communication using SSL certificate (LDAPS) + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Protect LDAP communication using SSL certificate (LDAPS)", + SerializedName = @"ssl", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.SslEnum) })] + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.SslEnum? Ssl { get; set; } + /// + /// The ID of an Active Directory user with a minimum of read-only access to Base DN for users and group + /// + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The ID of an Active Directory user with a minimum of read-only access to Base DN for users and group", + SerializedName = @"username", + PossibleTypes = new [] { typeof(string) })] + string Username { get; set; } + + } + /// vCenter Single Sign On Identity Source + internal partial interface IIdentitySourceInternal + + { + /// The domain's NetBIOS name + string Alias { get; set; } + /// The base distinguished name for groups + string BaseGroupDn { get; set; } + /// The base distinguished name for users + string BaseUserDn { get; set; } + /// The domain's dns name + string Domain { get; set; } + /// The name of the identity source + string Name { get; set; } + /// + /// The password of the Active Directory user with a minimum of read-only access to Base DN for users and groups. + /// + string Password { get; set; } + /// Primary server URL + string PrimaryServer { get; set; } + /// Secondary server URL + string SecondaryServer { get; set; } + /// Protect LDAP communication using SSL certificate (LDAPS) + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.SslEnum? Ssl { get; set; } + /// + /// The ID of an Active Directory user with a minimum of read-only access to Base DN for users and group + /// + string Username { get; set; } + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/IdentitySource.json.cs b/src/VMWare/generated/api/Models/Api20200320/IdentitySource.json.cs new file mode 100644 index 000000000000..32821b619c21 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/IdentitySource.json.cs @@ -0,0 +1,119 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// vCenter Single Sign On Identity Source + public partial class IdentitySource + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySource. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySource. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySource FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json ? new IdentitySource(json) : null; + } + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject instance to deserialize from. + internal IdentitySource(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_name = If( json?.PropertyT("name"), out var __jsonName) ? (string)__jsonName : (string)Name;} + {_alias = If( json?.PropertyT("alias"), out var __jsonAlias) ? (string)__jsonAlias : (string)Alias;} + {_baseGroupDn = If( json?.PropertyT("baseGroupDN"), out var __jsonBaseGroupDn) ? (string)__jsonBaseGroupDn : (string)BaseGroupDn;} + {_baseUserDn = If( json?.PropertyT("baseUserDN"), out var __jsonBaseUserDn) ? (string)__jsonBaseUserDn : (string)BaseUserDn;} + {_domain = If( json?.PropertyT("domain"), out var __jsonDomain) ? (string)__jsonDomain : (string)Domain;} + {_password = If( json?.PropertyT("password"), out var __jsonPassword) ? (string)__jsonPassword : (string)Password;} + {_primaryServer = If( json?.PropertyT("primaryServer"), out var __jsonPrimaryServer) ? (string)__jsonPrimaryServer : (string)PrimaryServer;} + {_secondaryServer = If( json?.PropertyT("secondaryServer"), out var __jsonSecondaryServer) ? (string)__jsonSecondaryServer : (string)SecondaryServer;} + {_ssl = If( json?.PropertyT("ssl"), out var __jsonSsl) ? (string)__jsonSsl : (string)Ssl;} + {_username = If( json?.PropertyT("username"), out var __jsonUsername) ? (string)__jsonUsername : (string)Username;} + AfterFromJson(json); + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + AddIf( null != (((object)this._name)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._name.ToString()) : null, "name" ,container.Add ); + AddIf( null != (((object)this._alias)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._alias.ToString()) : null, "alias" ,container.Add ); + AddIf( null != (((object)this._baseGroupDn)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._baseGroupDn.ToString()) : null, "baseGroupDN" ,container.Add ); + AddIf( null != (((object)this._baseUserDn)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._baseUserDn.ToString()) : null, "baseUserDN" ,container.Add ); + AddIf( null != (((object)this._domain)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._domain.ToString()) : null, "domain" ,container.Add ); + AddIf( null != (((object)this._password)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._password.ToString()) : null, "password" ,container.Add ); + AddIf( null != (((object)this._primaryServer)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._primaryServer.ToString()) : null, "primaryServer" ,container.Add ); + AddIf( null != (((object)this._secondaryServer)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._secondaryServer.ToString()) : null, "secondaryServer" ,container.Add ); + AddIf( null != (((object)this._ssl)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._ssl.ToString()) : null, "ssl" ,container.Add ); + AddIf( null != (((object)this._username)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._username.ToString()) : null, "username" ,container.Add ); + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/ManagementCluster.PowerShell.cs b/src/VMWare/generated/api/Models/Api20200320/ManagementCluster.PowerShell.cs new file mode 100644 index 000000000000..3173568a4ed2 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/ManagementCluster.PowerShell.cs @@ -0,0 +1,135 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// The properties of a default cluster + [System.ComponentModel.TypeConverter(typeof(ManagementClusterTypeConverter))] + public partial class ManagementCluster + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementCluster DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new ManagementCluster(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementCluster DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new ManagementCluster(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementCluster FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal ManagementCluster(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementClusterInternal)this).ClusterId = (int?) content.GetValueForProperty("ClusterId",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementClusterInternal)this).ClusterId, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementClusterInternal)this).Host = (string[]) content.GetValueForProperty("Host",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementClusterInternal)this).Host, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdatePropertiesInternal)this).ClusterSize = (int?) content.GetValueForProperty("ClusterSize",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdatePropertiesInternal)this).ClusterSize, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal ManagementCluster(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementClusterInternal)this).ClusterId = (int?) content.GetValueForProperty("ClusterId",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementClusterInternal)this).ClusterId, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementClusterInternal)this).Host = (string[]) content.GetValueForProperty("Host",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementClusterInternal)this).Host, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdatePropertiesInternal)this).ClusterSize = (int?) content.GetValueForProperty("ClusterSize",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdatePropertiesInternal)this).ClusterSize, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// The properties of a default cluster + [System.ComponentModel.TypeConverter(typeof(ManagementClusterTypeConverter))] + public partial interface IManagementCluster + + { + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/ManagementCluster.TypeConverter.cs b/src/VMWare/generated/api/Models/Api20200320/ManagementCluster.TypeConverter.cs new file mode 100644 index 000000000000..06334bbef0a6 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/ManagementCluster.TypeConverter.cs @@ -0,0 +1,142 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class ManagementClusterTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementCluster ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementCluster).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return ManagementCluster.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return ManagementCluster.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return ManagementCluster.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/ManagementCluster.cs b/src/VMWare/generated/api/Models/Api20200320/ManagementCluster.cs new file mode 100644 index 000000000000..2b78eb9064f2 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/ManagementCluster.cs @@ -0,0 +1,92 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// The properties of a default cluster + public partial class ManagementCluster : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementCluster, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementClusterInternal, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IValidates + { + /// + /// Backing field for Inherited model + /// + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdateProperties __clusterUpdateProperties = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ClusterUpdateProperties(); + + /// Backing field for property. + private int? _clusterId; + + /// The identity + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public int? ClusterId { get => this._clusterId; } + + /// The cluster size + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inherited)] + public int? ClusterSize { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdatePropertiesInternal)__clusterUpdateProperties).ClusterSize; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdatePropertiesInternal)__clusterUpdateProperties).ClusterSize = value; } + + /// Backing field for property. + private string[] _host; + + /// The hosts + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string[] Host { get => this._host; } + + /// Internal Acessors for ClusterId + int? Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementClusterInternal.ClusterId { get => this._clusterId; set { {_clusterId = value;} } } + + /// Internal Acessors for Host + string[] Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementClusterInternal.Host { get => this._host; set { {_host = value;} } } + + /// Creates an new instance. + public ManagementCluster() + { + + } + + /// Validates that this object meets the validation criteria. + /// an instance that will receive validation + /// events. + /// + /// A < see cref = "global::System.Threading.Tasks.Task" /> that will be complete when validation is completed. + /// + public async global::System.Threading.Tasks.Task Validate(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener) + { + await eventListener.AssertNotNull(nameof(__clusterUpdateProperties), __clusterUpdateProperties); + await eventListener.AssertObjectIsValid(nameof(__clusterUpdateProperties), __clusterUpdateProperties); + } + } + /// The properties of a default cluster + public partial interface IManagementCluster : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IJsonSerializable, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdateProperties + { + /// The identity + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The identity", + SerializedName = @"clusterId", + PossibleTypes = new [] { typeof(int) })] + int? ClusterId { get; } + /// The hosts + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The hosts", + SerializedName = @"hosts", + PossibleTypes = new [] { typeof(string) })] + string[] Host { get; } + + } + /// The properties of a default cluster + internal partial interface IManagementClusterInternal : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdatePropertiesInternal + { + /// The identity + int? ClusterId { get; set; } + /// The hosts + string[] Host { get; set; } + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/ManagementCluster.json.cs b/src/VMWare/generated/api/Models/Api20200320/ManagementCluster.json.cs new file mode 100644 index 000000000000..ac9dd3dc3027 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/ManagementCluster.json.cs @@ -0,0 +1,119 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// The properties of a default cluster + public partial class ManagementCluster + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementCluster. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementCluster. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementCluster FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json ? new ManagementCluster(json) : null; + } + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject instance to deserialize from. + internal ManagementCluster(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + __clusterUpdateProperties = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ClusterUpdateProperties(json); + {_clusterId = If( json?.PropertyT("clusterId"), out var __jsonClusterId) ? (int?)__jsonClusterId : ClusterId;} + {_host = If( json?.PropertyT("hosts"), out var __jsonHosts) ? If( __jsonHosts as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(string) (__u is Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString __t ? (string)(__t.ToString()) : null)) ))() : null : Host;} + AfterFromJson(json); + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + __clusterUpdateProperties?.ToJson(container, serializationMode); + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != this._clusterId ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode)new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNumber((int)this._clusterId) : null, "clusterId" ,container.Add ); + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + if (null != this._host) + { + var __w = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.XNodeArray(); + foreach( var __x in this._host ) + { + AddIf(null != (((object)__x)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(__x.ToString()) : null ,__w.Add); + } + container.Add("hosts",__w); + } + } + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/Operation.PowerShell.cs b/src/VMWare/generated/api/Models/Api20200320/Operation.PowerShell.cs new file mode 100644 index 000000000000..fb550a2a4581 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/Operation.PowerShell.cs @@ -0,0 +1,141 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// A REST API operation + [System.ComponentModel.TypeConverter(typeof(OperationTypeConverter))] + public partial class Operation + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperation DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new Operation(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperation DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new Operation(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperation FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal Operation(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationInternal)this).Display = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationDisplay) content.GetValueForProperty("Display",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationInternal)this).Display, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.OperationDisplayTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationInternal)this).DisplayDescription = (string) content.GetValueForProperty("DisplayDescription",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationInternal)this).DisplayDescription, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationInternal)this).DisplayOperation = (string) content.GetValueForProperty("DisplayOperation",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationInternal)this).DisplayOperation, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationInternal)this).DisplayProvider = (string) content.GetValueForProperty("DisplayProvider",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationInternal)this).DisplayProvider, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationInternal)this).DisplayResource = (string) content.GetValueForProperty("DisplayResource",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationInternal)this).DisplayResource, global::System.Convert.ToString); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal Operation(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationInternal)this).Display = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationDisplay) content.GetValueForProperty("Display",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationInternal)this).Display, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.OperationDisplayTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationInternal)this).DisplayDescription = (string) content.GetValueForProperty("DisplayDescription",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationInternal)this).DisplayDescription, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationInternal)this).DisplayOperation = (string) content.GetValueForProperty("DisplayOperation",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationInternal)this).DisplayOperation, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationInternal)this).DisplayProvider = (string) content.GetValueForProperty("DisplayProvider",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationInternal)this).DisplayProvider, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationInternal)this).DisplayResource = (string) content.GetValueForProperty("DisplayResource",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationInternal)this).DisplayResource, global::System.Convert.ToString); + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// A REST API operation + [System.ComponentModel.TypeConverter(typeof(OperationTypeConverter))] + public partial interface IOperation + + { + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/Operation.TypeConverter.cs b/src/VMWare/generated/api/Models/Api20200320/Operation.TypeConverter.cs new file mode 100644 index 000000000000..69d8836966c1 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/Operation.TypeConverter.cs @@ -0,0 +1,142 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class OperationTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperation ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperation).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return Operation.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return Operation.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return Operation.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/Operation.cs b/src/VMWare/generated/api/Models/Api20200320/Operation.cs new file mode 100644 index 000000000000..7a271225ded3 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/Operation.cs @@ -0,0 +1,129 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// A REST API operation + public partial class Operation : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperation, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationInternal + { + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationDisplay _display; + + /// Contains the localized display information for this operation + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + internal Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationDisplay Display { get => (this._display = this._display ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.OperationDisplay()); } + + /// Localized friendly description for the operation + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public string DisplayDescription { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationDisplayInternal)Display).Description; } + + /// Localized friendly name for the operation + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public string DisplayOperation { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationDisplayInternal)Display).Operation; } + + /// Localized friendly form of the resource provider name + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public string DisplayProvider { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationDisplayInternal)Display).Provider; } + + /// Localized friendly form of the resource type related to this operation + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public string DisplayResource { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationDisplayInternal)Display).Resource; } + + /// Internal Acessors for Display + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationDisplay Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationInternal.Display { get => (this._display = this._display ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.OperationDisplay()); set { {_display = value;} } } + + /// Internal Acessors for DisplayDescription + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationInternal.DisplayDescription { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationDisplayInternal)Display).Description; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationDisplayInternal)Display).Description = value; } + + /// Internal Acessors for DisplayOperation + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationInternal.DisplayOperation { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationDisplayInternal)Display).Operation; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationDisplayInternal)Display).Operation = value; } + + /// Internal Acessors for DisplayProvider + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationInternal.DisplayProvider { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationDisplayInternal)Display).Provider; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationDisplayInternal)Display).Provider = value; } + + /// Internal Acessors for DisplayResource + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationInternal.DisplayResource { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationDisplayInternal)Display).Resource; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationDisplayInternal)Display).Resource = value; } + + /// Internal Acessors for Name + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationInternal.Name { get => this._name; set { {_name = value;} } } + + /// Backing field for property. + private string _name; + + /// Name of the operation being performed on this object + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string Name { get => this._name; } + + /// Creates an new instance. + public Operation() + { + + } + } + /// A REST API operation + public partial interface IOperation : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IJsonSerializable + { + /// Localized friendly description for the operation + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"Localized friendly description for the operation", + SerializedName = @"description", + PossibleTypes = new [] { typeof(string) })] + string DisplayDescription { get; } + /// Localized friendly name for the operation + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"Localized friendly name for the operation", + SerializedName = @"operation", + PossibleTypes = new [] { typeof(string) })] + string DisplayOperation { get; } + /// Localized friendly form of the resource provider name + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"Localized friendly form of the resource provider name", + SerializedName = @"provider", + PossibleTypes = new [] { typeof(string) })] + string DisplayProvider { get; } + /// Localized friendly form of the resource type related to this operation + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"Localized friendly form of the resource type related to this operation", + SerializedName = @"resource", + PossibleTypes = new [] { typeof(string) })] + string DisplayResource { get; } + /// Name of the operation being performed on this object + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"Name of the operation being performed on this object", + SerializedName = @"name", + PossibleTypes = new [] { typeof(string) })] + string Name { get; } + + } + /// A REST API operation + internal partial interface IOperationInternal + + { + /// Contains the localized display information for this operation + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationDisplay Display { get; set; } + /// Localized friendly description for the operation + string DisplayDescription { get; set; } + /// Localized friendly name for the operation + string DisplayOperation { get; set; } + /// Localized friendly form of the resource provider name + string DisplayProvider { get; set; } + /// Localized friendly form of the resource type related to this operation + string DisplayResource { get; set; } + /// Name of the operation being performed on this object + string Name { get; set; } + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/Operation.json.cs b/src/VMWare/generated/api/Models/Api20200320/Operation.json.cs new file mode 100644 index 000000000000..e01645f21beb --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/Operation.json.cs @@ -0,0 +1,109 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// A REST API operation + public partial class Operation + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperation. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperation. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperation FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json ? new Operation(json) : null; + } + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject instance to deserialize from. + internal Operation(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_display = If( json?.PropertyT("display"), out var __jsonDisplay) ? Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.OperationDisplay.FromJson(__jsonDisplay) : Display;} + {_name = If( json?.PropertyT("name"), out var __jsonName) ? (string)__jsonName : (string)Name;} + AfterFromJson(json); + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != this._display ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) this._display.ToJson(null,serializationMode) : null, "display" ,container.Add ); + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._name)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._name.ToString()) : null, "name" ,container.Add ); + } + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/OperationDisplay.PowerShell.cs b/src/VMWare/generated/api/Models/Api20200320/OperationDisplay.PowerShell.cs new file mode 100644 index 000000000000..a04d8b3454b9 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/OperationDisplay.PowerShell.cs @@ -0,0 +1,137 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// Contains the localized display information for this operation + [System.ComponentModel.TypeConverter(typeof(OperationDisplayTypeConverter))] + public partial class OperationDisplay + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationDisplay DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new OperationDisplay(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationDisplay DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new OperationDisplay(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationDisplay FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal OperationDisplay(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationDisplayInternal)this).Description = (string) content.GetValueForProperty("Description",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationDisplayInternal)this).Description, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationDisplayInternal)this).Operation = (string) content.GetValueForProperty("Operation",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationDisplayInternal)this).Operation, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationDisplayInternal)this).Provider = (string) content.GetValueForProperty("Provider",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationDisplayInternal)this).Provider, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationDisplayInternal)this).Resource = (string) content.GetValueForProperty("Resource",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationDisplayInternal)this).Resource, global::System.Convert.ToString); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal OperationDisplay(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationDisplayInternal)this).Description = (string) content.GetValueForProperty("Description",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationDisplayInternal)this).Description, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationDisplayInternal)this).Operation = (string) content.GetValueForProperty("Operation",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationDisplayInternal)this).Operation, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationDisplayInternal)this).Provider = (string) content.GetValueForProperty("Provider",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationDisplayInternal)this).Provider, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationDisplayInternal)this).Resource = (string) content.GetValueForProperty("Resource",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationDisplayInternal)this).Resource, global::System.Convert.ToString); + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// Contains the localized display information for this operation + [System.ComponentModel.TypeConverter(typeof(OperationDisplayTypeConverter))] + public partial interface IOperationDisplay + + { + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/OperationDisplay.TypeConverter.cs b/src/VMWare/generated/api/Models/Api20200320/OperationDisplay.TypeConverter.cs new file mode 100644 index 000000000000..5d65a7f9988b --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/OperationDisplay.TypeConverter.cs @@ -0,0 +1,142 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class OperationDisplayTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationDisplay ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationDisplay).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return OperationDisplay.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return OperationDisplay.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return OperationDisplay.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/OperationDisplay.cs b/src/VMWare/generated/api/Models/Api20200320/OperationDisplay.cs new file mode 100644 index 000000000000..b4d929bc7f24 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/OperationDisplay.cs @@ -0,0 +1,109 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// Contains the localized display information for this operation + public partial class OperationDisplay : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationDisplay, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationDisplayInternal + { + + /// Backing field for property. + private string _description; + + /// Localized friendly description for the operation + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string Description { get => this._description; } + + /// Internal Acessors for Description + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationDisplayInternal.Description { get => this._description; set { {_description = value;} } } + + /// Internal Acessors for Operation + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationDisplayInternal.Operation { get => this._operation; set { {_operation = value;} } } + + /// Internal Acessors for Provider + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationDisplayInternal.Provider { get => this._provider; set { {_provider = value;} } } + + /// Internal Acessors for Resource + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationDisplayInternal.Resource { get => this._resource; set { {_resource = value;} } } + + /// Backing field for property. + private string _operation; + + /// Localized friendly name for the operation + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string Operation { get => this._operation; } + + /// Backing field for property. + private string _provider; + + /// Localized friendly form of the resource provider name + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string Provider { get => this._provider; } + + /// Backing field for property. + private string _resource; + + /// Localized friendly form of the resource type related to this operation + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string Resource { get => this._resource; } + + /// Creates an new instance. + public OperationDisplay() + { + + } + } + /// Contains the localized display information for this operation + public partial interface IOperationDisplay : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IJsonSerializable + { + /// Localized friendly description for the operation + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"Localized friendly description for the operation", + SerializedName = @"description", + PossibleTypes = new [] { typeof(string) })] + string Description { get; } + /// Localized friendly name for the operation + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"Localized friendly name for the operation", + SerializedName = @"operation", + PossibleTypes = new [] { typeof(string) })] + string Operation { get; } + /// Localized friendly form of the resource provider name + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"Localized friendly form of the resource provider name", + SerializedName = @"provider", + PossibleTypes = new [] { typeof(string) })] + string Provider { get; } + /// Localized friendly form of the resource type related to this operation + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"Localized friendly form of the resource type related to this operation", + SerializedName = @"resource", + PossibleTypes = new [] { typeof(string) })] + string Resource { get; } + + } + /// Contains the localized display information for this operation + internal partial interface IOperationDisplayInternal + + { + /// Localized friendly description for the operation + string Description { get; set; } + /// Localized friendly name for the operation + string Operation { get; set; } + /// Localized friendly form of the resource provider name + string Provider { get; set; } + /// Localized friendly form of the resource type related to this operation + string Resource { get; set; } + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/OperationDisplay.json.cs b/src/VMWare/generated/api/Models/Api20200320/OperationDisplay.json.cs new file mode 100644 index 000000000000..adbbdbce943f --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/OperationDisplay.json.cs @@ -0,0 +1,119 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// Contains the localized display information for this operation + public partial class OperationDisplay + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationDisplay. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationDisplay. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationDisplay FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json ? new OperationDisplay(json) : null; + } + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject instance to deserialize from. + internal OperationDisplay(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_description = If( json?.PropertyT("description"), out var __jsonDescription) ? (string)__jsonDescription : (string)Description;} + {_operation = If( json?.PropertyT("operation"), out var __jsonOperation) ? (string)__jsonOperation : (string)Operation;} + {_provider = If( json?.PropertyT("provider"), out var __jsonProvider) ? (string)__jsonProvider : (string)Provider;} + {_resource = If( json?.PropertyT("resource"), out var __jsonResource) ? (string)__jsonResource : (string)Resource;} + AfterFromJson(json); + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._description)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._description.ToString()) : null, "description" ,container.Add ); + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._operation)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._operation.ToString()) : null, "operation" ,container.Add ); + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._provider)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._provider.ToString()) : null, "provider" ,container.Add ); + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._resource)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._resource.ToString()) : null, "resource" ,container.Add ); + } + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/OperationList.PowerShell.cs b/src/VMWare/generated/api/Models/Api20200320/OperationList.PowerShell.cs new file mode 100644 index 000000000000..1f300ca21b3b --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/OperationList.PowerShell.cs @@ -0,0 +1,133 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// Pageable list of operations + [System.ComponentModel.TypeConverter(typeof(OperationListTypeConverter))] + public partial class OperationList + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationList DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new OperationList(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationList DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new OperationList(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationList FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal OperationList(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationListInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationListInternal)this).NextLink, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationListInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperation[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationListInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.OperationTypeConverter.ConvertFrom)); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal OperationList(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationListInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationListInternal)this).NextLink, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationListInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperation[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationListInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.OperationTypeConverter.ConvertFrom)); + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// Pageable list of operations + [System.ComponentModel.TypeConverter(typeof(OperationListTypeConverter))] + public partial interface IOperationList + + { + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/OperationList.TypeConverter.cs b/src/VMWare/generated/api/Models/Api20200320/OperationList.TypeConverter.cs new file mode 100644 index 000000000000..7c34b92dbc4c --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/OperationList.TypeConverter.cs @@ -0,0 +1,142 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class OperationListTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationList ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationList).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return OperationList.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return OperationList.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return OperationList.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/OperationList.cs b/src/VMWare/generated/api/Models/Api20200320/OperationList.cs new file mode 100644 index 000000000000..73fdfaaf4255 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/OperationList.cs @@ -0,0 +1,69 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// Pageable list of operations + public partial class OperationList : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationList, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationListInternal + { + + /// Internal Acessors for NextLink + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationListInternal.NextLink { get => this._nextLink; set { {_nextLink = value;} } } + + /// Internal Acessors for Value + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperation[] Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationListInternal.Value { get => this._value; set { {_value = value;} } } + + /// Backing field for property. + private string _nextLink; + + /// URL to get the next page if any + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string NextLink { get => this._nextLink; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperation[] _value; + + /// List of operations + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperation[] Value { get => this._value; } + + /// Creates an new instance. + public OperationList() + { + + } + } + /// Pageable list of operations + public partial interface IOperationList : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IJsonSerializable + { + /// URL to get the next page if any + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"URL to get the next page if any", + SerializedName = @"nextLink", + PossibleTypes = new [] { typeof(string) })] + string NextLink { get; } + /// List of operations + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"List of operations", + SerializedName = @"value", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperation) })] + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperation[] Value { get; } + + } + /// Pageable list of operations + internal partial interface IOperationListInternal + + { + /// URL to get the next page if any + string NextLink { get; set; } + /// List of operations + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperation[] Value { get; set; } + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/OperationList.json.cs b/src/VMWare/generated/api/Models/Api20200320/OperationList.json.cs new file mode 100644 index 000000000000..e40b70bbbbb5 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/OperationList.json.cs @@ -0,0 +1,117 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// Pageable list of operations + public partial class OperationList + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationList. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationList. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperationList FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json ? new OperationList(json) : null; + } + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject instance to deserialize from. + internal OperationList(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_nextLink = If( json?.PropertyT("nextLink"), out var __jsonNextLink) ? (string)__jsonNextLink : (string)NextLink;} + {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperation) (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.Operation.FromJson(__u) )) ))() : null : Value;} + AfterFromJson(json); + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._nextLink)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._nextLink.ToString()) : null, "nextLink" ,container.Add ); + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + if (null != this._value) + { + var __w = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.XNodeArray(); + foreach( var __x in this._value ) + { + AddIf(__x?.ToJson(null, serializationMode) ,__w.Add); + } + container.Add("value",__w); + } + } + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/PrivateCloud.PowerShell.cs b/src/VMWare/generated/api/Models/Api20200320/PrivateCloud.PowerShell.cs new file mode 100644 index 000000000000..2c47b4791767 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/PrivateCloud.PowerShell.cs @@ -0,0 +1,193 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// A private cloud resource + [System.ComponentModel.TypeConverter(typeof(PrivateCloudTypeConverter))] + public partial class PrivateCloud + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new PrivateCloud(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new PrivateCloud(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal PrivateCloud(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.PrivateCloudPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).Sku = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ISku) content.GetValueForProperty("Sku",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).Sku, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.SkuTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResourceInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResourceInternal)this).Location, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResourceInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResourceTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResourceInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.TrackedResourceTagsTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).ManagementCluster = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementCluster) content.GetValueForProperty("ManagementCluster",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).ManagementCluster, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ManagementClusterTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).Circuit = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICircuit) content.GetValueForProperty("Circuit",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).Circuit, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.CircuitTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).Endpoint = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IEndpoints) content.GetValueForProperty("Endpoint",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).Endpoint, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.EndpointsTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).SkuName = (string) content.GetValueForProperty("SkuName",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).SkuName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).ManagementClusterHost = (string[]) content.GetValueForProperty("ManagementClusterHost",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).ManagementClusterHost, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).IdentitySource = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySource[]) content.GetValueForProperty("IdentitySource",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).IdentitySource, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IdentitySourceTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).Internet = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum?) content.GetValueForProperty("Internet",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).Internet, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).ManagementNetwork = (string) content.GetValueForProperty("ManagementNetwork",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).ManagementNetwork, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).NetworkBlock = (string) content.GetValueForProperty("NetworkBlock",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).NetworkBlock, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).NsxtCertificateThumbprint = (string) content.GetValueForProperty("NsxtCertificateThumbprint",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).NsxtCertificateThumbprint, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).NsxtPassword = (string) content.GetValueForProperty("NsxtPassword",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).NsxtPassword, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).ProvisioningNetwork = (string) content.GetValueForProperty("ProvisioningNetwork",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).ProvisioningNetwork, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.PrivateCloudProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.PrivateCloudProvisioningState.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).VcenterCertificateThumbprint = (string) content.GetValueForProperty("VcenterCertificateThumbprint",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).VcenterCertificateThumbprint, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).VcenterPassword = (string) content.GetValueForProperty("VcenterPassword",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).VcenterPassword, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).VmotionNetwork = (string) content.GetValueForProperty("VmotionNetwork",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).VmotionNetwork, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).CircuitPrimarySubnet = (string) content.GetValueForProperty("CircuitPrimarySubnet",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).CircuitPrimarySubnet, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).CircuitSecondarySubnet = (string) content.GetValueForProperty("CircuitSecondarySubnet",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).CircuitSecondarySubnet, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).EndpointNsxtManager = (string) content.GetValueForProperty("EndpointNsxtManager",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).EndpointNsxtManager, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).EndpointVcsa = (string) content.GetValueForProperty("EndpointVcsa",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).EndpointVcsa, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).ManagementClusterSize = (int?) content.GetValueForProperty("ManagementClusterSize",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).ManagementClusterSize, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).ManagementClusterId = (int?) content.GetValueForProperty("ManagementClusterId",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).ManagementClusterId, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).CircuitExpressRouteId = (string) content.GetValueForProperty("CircuitExpressRouteId",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).CircuitExpressRouteId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).CircuitExpressRoutePrivatePeeringId = (string) content.GetValueForProperty("CircuitExpressRoutePrivatePeeringId",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).CircuitExpressRoutePrivatePeeringId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).EndpointHcxCloudManager = (string) content.GetValueForProperty("EndpointHcxCloudManager",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).EndpointHcxCloudManager, global::System.Convert.ToString); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal PrivateCloud(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.PrivateCloudPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).Sku = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ISku) content.GetValueForProperty("Sku",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).Sku, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.SkuTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResourceInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResourceInternal)this).Location, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResourceInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResourceTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResourceInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.TrackedResourceTagsTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).ManagementCluster = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementCluster) content.GetValueForProperty("ManagementCluster",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).ManagementCluster, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ManagementClusterTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).Circuit = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICircuit) content.GetValueForProperty("Circuit",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).Circuit, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.CircuitTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).Endpoint = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IEndpoints) content.GetValueForProperty("Endpoint",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).Endpoint, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.EndpointsTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).SkuName = (string) content.GetValueForProperty("SkuName",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).SkuName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).ManagementClusterHost = (string[]) content.GetValueForProperty("ManagementClusterHost",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).ManagementClusterHost, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).IdentitySource = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySource[]) content.GetValueForProperty("IdentitySource",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).IdentitySource, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IdentitySourceTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).Internet = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum?) content.GetValueForProperty("Internet",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).Internet, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).ManagementNetwork = (string) content.GetValueForProperty("ManagementNetwork",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).ManagementNetwork, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).NetworkBlock = (string) content.GetValueForProperty("NetworkBlock",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).NetworkBlock, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).NsxtCertificateThumbprint = (string) content.GetValueForProperty("NsxtCertificateThumbprint",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).NsxtCertificateThumbprint, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).NsxtPassword = (string) content.GetValueForProperty("NsxtPassword",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).NsxtPassword, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).ProvisioningNetwork = (string) content.GetValueForProperty("ProvisioningNetwork",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).ProvisioningNetwork, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.PrivateCloudProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.PrivateCloudProvisioningState.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).VcenterCertificateThumbprint = (string) content.GetValueForProperty("VcenterCertificateThumbprint",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).VcenterCertificateThumbprint, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).VcenterPassword = (string) content.GetValueForProperty("VcenterPassword",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).VcenterPassword, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).VmotionNetwork = (string) content.GetValueForProperty("VmotionNetwork",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).VmotionNetwork, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).CircuitPrimarySubnet = (string) content.GetValueForProperty("CircuitPrimarySubnet",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).CircuitPrimarySubnet, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).CircuitSecondarySubnet = (string) content.GetValueForProperty("CircuitSecondarySubnet",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).CircuitSecondarySubnet, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).EndpointNsxtManager = (string) content.GetValueForProperty("EndpointNsxtManager",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).EndpointNsxtManager, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).EndpointVcsa = (string) content.GetValueForProperty("EndpointVcsa",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).EndpointVcsa, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).ManagementClusterSize = (int?) content.GetValueForProperty("ManagementClusterSize",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).ManagementClusterSize, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).ManagementClusterId = (int?) content.GetValueForProperty("ManagementClusterId",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).ManagementClusterId, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).CircuitExpressRouteId = (string) content.GetValueForProperty("CircuitExpressRouteId",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).CircuitExpressRouteId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).CircuitExpressRoutePrivatePeeringId = (string) content.GetValueForProperty("CircuitExpressRoutePrivatePeeringId",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).CircuitExpressRoutePrivatePeeringId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).EndpointHcxCloudManager = (string) content.GetValueForProperty("EndpointHcxCloudManager",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal)this).EndpointHcxCloudManager, global::System.Convert.ToString); + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// A private cloud resource + [System.ComponentModel.TypeConverter(typeof(PrivateCloudTypeConverter))] + public partial interface IPrivateCloud + + { + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/PrivateCloud.TypeConverter.cs b/src/VMWare/generated/api/Models/Api20200320/PrivateCloud.TypeConverter.cs new file mode 100644 index 000000000000..78fe2499f2f7 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/PrivateCloud.TypeConverter.cs @@ -0,0 +1,142 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class PrivateCloudTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return PrivateCloud.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return PrivateCloud.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return PrivateCloud.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/PrivateCloud.cs b/src/VMWare/generated/api/Models/Api20200320/PrivateCloud.cs new file mode 100644 index 000000000000..d03d76394c8f --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/PrivateCloud.cs @@ -0,0 +1,478 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// A private cloud resource + public partial class PrivateCloud : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IValidates + { + /// + /// Backing field for Inherited model + /// + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResource __trackedResource = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.TrackedResource(); + + /// Identifier of the ExpressRoute Circuit (Microsoft Colo only) + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public string CircuitExpressRouteId { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)Property).CircuitExpressRouteId; } + + /// ExpressRoute Circuit private peering identifier + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public string CircuitExpressRoutePrivatePeeringId { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)Property).CircuitExpressRoutePrivatePeeringId; } + + /// CIDR of primary subnet + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public string CircuitPrimarySubnet { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)Property).CircuitPrimarySubnet; } + + /// CIDR of secondary subnet + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public string CircuitSecondarySubnet { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)Property).CircuitSecondarySubnet; } + + /// Endpoint for the HCX Cloud Manager + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public string EndpointHcxCloudManager { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)Property).EndpointHcxCloudManager; } + + /// Endpoint for the NSX-T Data Center manager + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public string EndpointNsxtManager { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)Property).EndpointNsxtManager; } + + /// Endpoint for Virtual Center Server Appliance + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public string EndpointVcsa { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)Property).EndpointVcsa; } + + /// Resource ID. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inherited)] + public string Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)__trackedResource).Id; } + + /// vCenter Single Sign On Identity Sources + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySource[] IdentitySource { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)Property).IdentitySource; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)Property).IdentitySource = value; } + + /// Connectivity to internet is enabled or disabled + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum? Internet { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)Property).Internet; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)Property).Internet = value; } + + /// Resource location + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inherited)] + public string Location { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResourceInternal)__trackedResource).Location; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResourceInternal)__trackedResource).Location = value; } + + /// The hosts + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public string[] ManagementClusterHost { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)Property).ManagementClusterHost; } + + /// The identity + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public int? ManagementClusterId { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)Property).ManagementClusterId; } + + /// The cluster size + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public int? ManagementClusterSize { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)Property).ManagementClusterSize; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)Property).ManagementClusterSize = value; } + + /// Network used to access vCenter Server and NSX-T Manager + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public string ManagementNetwork { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)Property).ManagementNetwork; } + + /// Internal Acessors for Circuit + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICircuit Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal.Circuit { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)Property).Circuit; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)Property).Circuit = value; } + + /// Internal Acessors for CircuitExpressRouteId + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal.CircuitExpressRouteId { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)Property).CircuitExpressRouteId; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)Property).CircuitExpressRouteId = value; } + + /// Internal Acessors for CircuitExpressRoutePrivatePeeringId + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal.CircuitExpressRoutePrivatePeeringId { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)Property).CircuitExpressRoutePrivatePeeringId; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)Property).CircuitExpressRoutePrivatePeeringId = value; } + + /// Internal Acessors for CircuitPrimarySubnet + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal.CircuitPrimarySubnet { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)Property).CircuitPrimarySubnet; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)Property).CircuitPrimarySubnet = value; } + + /// Internal Acessors for CircuitSecondarySubnet + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal.CircuitSecondarySubnet { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)Property).CircuitSecondarySubnet; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)Property).CircuitSecondarySubnet = value; } + + /// Internal Acessors for Endpoint + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IEndpoints Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal.Endpoint { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)Property).Endpoint; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)Property).Endpoint = value; } + + /// Internal Acessors for EndpointHcxCloudManager + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal.EndpointHcxCloudManager { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)Property).EndpointHcxCloudManager; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)Property).EndpointHcxCloudManager = value; } + + /// Internal Acessors for EndpointNsxtManager + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal.EndpointNsxtManager { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)Property).EndpointNsxtManager; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)Property).EndpointNsxtManager = value; } + + /// Internal Acessors for EndpointVcsa + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal.EndpointVcsa { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)Property).EndpointVcsa; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)Property).EndpointVcsa = value; } + + /// Internal Acessors for ManagementCluster + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementCluster Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal.ManagementCluster { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)Property).ManagementCluster; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)Property).ManagementCluster = value; } + + /// Internal Acessors for ManagementClusterHost + string[] Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal.ManagementClusterHost { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)Property).ManagementClusterHost; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)Property).ManagementClusterHost = value; } + + /// Internal Acessors for ManagementClusterId + int? Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal.ManagementClusterId { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)Property).ManagementClusterId; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)Property).ManagementClusterId = value; } + + /// Internal Acessors for ManagementNetwork + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal.ManagementNetwork { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)Property).ManagementNetwork; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)Property).ManagementNetwork = value; } + + /// Internal Acessors for NsxtCertificateThumbprint + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal.NsxtCertificateThumbprint { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)Property).NsxtCertificateThumbprint; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)Property).NsxtCertificateThumbprint = value; } + + /// Internal Acessors for Property + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudProperties Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.PrivateCloudProperties()); set { {_property = value;} } } + + /// Internal Acessors for ProvisioningNetwork + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal.ProvisioningNetwork { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)Property).ProvisioningNetwork; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)Property).ProvisioningNetwork = value; } + + /// Internal Acessors for ProvisioningState + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.PrivateCloudProvisioningState? Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal.ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)Property).ProvisioningState; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)Property).ProvisioningState = value; } + + /// Internal Acessors for Sku + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ISku Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal.Sku { get => (this._sku = this._sku ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.Sku()); set { {_sku = value;} } } + + /// Internal Acessors for VcenterCertificateThumbprint + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal.VcenterCertificateThumbprint { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)Property).VcenterCertificateThumbprint; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)Property).VcenterCertificateThumbprint = value; } + + /// Internal Acessors for VmotionNetwork + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudInternal.VmotionNetwork { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)Property).VmotionNetwork; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)Property).VmotionNetwork = value; } + + /// Internal Acessors for Id + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)__trackedResource).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)__trackedResource).Id = value; } + + /// Internal Acessors for Name + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal.Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)__trackedResource).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)__trackedResource).Name = value; } + + /// Internal Acessors for Type + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)__trackedResource).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)__trackedResource).Type = value; } + + /// Resource name. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inherited)] + public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)__trackedResource).Name; } + + /// + /// The block of addresses should be unique across VNet in your subscription as well as on-premise. Make sure the CIDR format + /// is conformed to (A.B.C.D/X) where A,B,C,D are between 0 and 255, and X is between 0 and 22 + /// + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public string NetworkBlock { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)Property).NetworkBlock; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)Property).NetworkBlock = value; } + + /// Thumbprint of the NSX-T Manager SSL certificate + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public string NsxtCertificateThumbprint { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)Property).NsxtCertificateThumbprint; } + + /// Optionally, set the NSX-T Manager password when the private cloud is created + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public string NsxtPassword { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)Property).NsxtPassword; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)Property).NsxtPassword = value; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudProperties _property; + + /// The properties of a private cloud resource + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + internal Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.PrivateCloudProperties()); set => this._property = value; } + + /// Used for virtual machine cold migration, cloning, and snapshot migration + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public string ProvisioningNetwork { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)Property).ProvisioningNetwork; } + + /// The provisioning state + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.PrivateCloudProvisioningState? ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)Property).ProvisioningState; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ISku _sku; + + /// The private cloud SKU + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + internal Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ISku Sku { get => (this._sku = this._sku ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.Sku()); set => this._sku = value; } + + /// The name of the SKU. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public string SkuName { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ISkuInternal)Sku).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ISkuInternal)Sku).Name = value; } + + /// Resource tags + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inherited)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResourceTags Tag { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResourceInternal)__trackedResource).Tag; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResourceInternal)__trackedResource).Tag = value; } + + /// Resource type. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inherited)] + public string Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)__trackedResource).Type; } + + /// Thumbprint of the vCenter Server SSL certificate + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public string VcenterCertificateThumbprint { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)Property).VcenterCertificateThumbprint; } + + /// Optionally, set the vCenter admin password when the private cloud is created + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public string VcenterPassword { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)Property).VcenterPassword; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)Property).VcenterPassword = value; } + + /// Used for live migration of virtual machines + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public string VmotionNetwork { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)Property).VmotionNetwork; } + + /// Creates an new instance. + public PrivateCloud() + { + + } + + /// Validates that this object meets the validation criteria. + /// an instance that will receive validation + /// events. + /// + /// A < see cref = "global::System.Threading.Tasks.Task" /> that will be complete when validation is completed. + /// + public async global::System.Threading.Tasks.Task Validate(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener) + { + await eventListener.AssertNotNull(nameof(__trackedResource), __trackedResource); + await eventListener.AssertObjectIsValid(nameof(__trackedResource), __trackedResource); + } + } + /// A private cloud resource + public partial interface IPrivateCloud : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IJsonSerializable, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResource + { + /// Identifier of the ExpressRoute Circuit (Microsoft Colo only) + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"Identifier of the ExpressRoute Circuit (Microsoft Colo only)", + SerializedName = @"expressRouteID", + PossibleTypes = new [] { typeof(string) })] + string CircuitExpressRouteId { get; } + /// ExpressRoute Circuit private peering identifier + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"ExpressRoute Circuit private peering identifier", + SerializedName = @"expressRoutePrivatePeeringID", + PossibleTypes = new [] { typeof(string) })] + string CircuitExpressRoutePrivatePeeringId { get; } + /// CIDR of primary subnet + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"CIDR of primary subnet", + SerializedName = @"primarySubnet", + PossibleTypes = new [] { typeof(string) })] + string CircuitPrimarySubnet { get; } + /// CIDR of secondary subnet + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"CIDR of secondary subnet", + SerializedName = @"secondarySubnet", + PossibleTypes = new [] { typeof(string) })] + string CircuitSecondarySubnet { get; } + /// Endpoint for the HCX Cloud Manager + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"Endpoint for the HCX Cloud Manager", + SerializedName = @"hcxCloudManager", + PossibleTypes = new [] { typeof(string) })] + string EndpointHcxCloudManager { get; } + /// Endpoint for the NSX-T Data Center manager + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"Endpoint for the NSX-T Data Center manager", + SerializedName = @"nsxtManager", + PossibleTypes = new [] { typeof(string) })] + string EndpointNsxtManager { get; } + /// Endpoint for Virtual Center Server Appliance + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"Endpoint for Virtual Center Server Appliance", + SerializedName = @"vcsa", + PossibleTypes = new [] { typeof(string) })] + string EndpointVcsa { get; } + /// vCenter Single Sign On Identity Sources + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"vCenter Single Sign On Identity Sources", + SerializedName = @"identitySources", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySource) })] + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySource[] IdentitySource { get; set; } + /// Connectivity to internet is enabled or disabled + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Connectivity to internet is enabled or disabled", + SerializedName = @"internet", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum) })] + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum? Internet { get; set; } + /// The hosts + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The hosts", + SerializedName = @"hosts", + PossibleTypes = new [] { typeof(string) })] + string[] ManagementClusterHost { get; } + /// The identity + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The identity", + SerializedName = @"clusterId", + PossibleTypes = new [] { typeof(int) })] + int? ManagementClusterId { get; } + /// The cluster size + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The cluster size", + SerializedName = @"clusterSize", + PossibleTypes = new [] { typeof(int) })] + int? ManagementClusterSize { get; set; } + /// Network used to access vCenter Server and NSX-T Manager + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"Network used to access vCenter Server and NSX-T Manager", + SerializedName = @"managementNetwork", + PossibleTypes = new [] { typeof(string) })] + string ManagementNetwork { get; } + /// + /// The block of addresses should be unique across VNet in your subscription as well as on-premise. Make sure the CIDR format + /// is conformed to (A.B.C.D/X) where A,B,C,D are between 0 and 255, and X is between 0 and 22 + /// + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The block of addresses should be unique across VNet in your subscription as well as on-premise. Make sure the CIDR format is conformed to (A.B.C.D/X) where A,B,C,D are between 0 and 255, and X is between 0 and 22", + SerializedName = @"networkBlock", + PossibleTypes = new [] { typeof(string) })] + string NetworkBlock { get; set; } + /// Thumbprint of the NSX-T Manager SSL certificate + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"Thumbprint of the NSX-T Manager SSL certificate", + SerializedName = @"nsxtCertificateThumbprint", + PossibleTypes = new [] { typeof(string) })] + string NsxtCertificateThumbprint { get; } + /// Optionally, set the NSX-T Manager password when the private cloud is created + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Optionally, set the NSX-T Manager password when the private cloud is created", + SerializedName = @"nsxtPassword", + PossibleTypes = new [] { typeof(string) })] + string NsxtPassword { get; set; } + /// Used for virtual machine cold migration, cloning, and snapshot migration + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"Used for virtual machine cold migration, cloning, and snapshot migration", + SerializedName = @"provisioningNetwork", + PossibleTypes = new [] { typeof(string) })] + string ProvisioningNetwork { get; } + /// The provisioning state + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The provisioning state", + SerializedName = @"provisioningState", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.PrivateCloudProvisioningState) })] + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.PrivateCloudProvisioningState? ProvisioningState { get; } + /// The name of the SKU. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The name of the SKU.", + SerializedName = @"name", + PossibleTypes = new [] { typeof(string) })] + string SkuName { get; set; } + /// Thumbprint of the vCenter Server SSL certificate + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"Thumbprint of the vCenter Server SSL certificate", + SerializedName = @"vcenterCertificateThumbprint", + PossibleTypes = new [] { typeof(string) })] + string VcenterCertificateThumbprint { get; } + /// Optionally, set the vCenter admin password when the private cloud is created + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Optionally, set the vCenter admin password when the private cloud is created", + SerializedName = @"vcenterPassword", + PossibleTypes = new [] { typeof(string) })] + string VcenterPassword { get; set; } + /// Used for live migration of virtual machines + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"Used for live migration of virtual machines", + SerializedName = @"vmotionNetwork", + PossibleTypes = new [] { typeof(string) })] + string VmotionNetwork { get; } + + } + /// A private cloud resource + internal partial interface IPrivateCloudInternal : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResourceInternal + { + /// An ExpressRoute Circuit + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICircuit Circuit { get; set; } + /// Identifier of the ExpressRoute Circuit (Microsoft Colo only) + string CircuitExpressRouteId { get; set; } + /// ExpressRoute Circuit private peering identifier + string CircuitExpressRoutePrivatePeeringId { get; set; } + /// CIDR of primary subnet + string CircuitPrimarySubnet { get; set; } + /// CIDR of secondary subnet + string CircuitSecondarySubnet { get; set; } + /// The endpoints + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IEndpoints Endpoint { get; set; } + /// Endpoint for the HCX Cloud Manager + string EndpointHcxCloudManager { get; set; } + /// Endpoint for the NSX-T Data Center manager + string EndpointNsxtManager { get; set; } + /// Endpoint for Virtual Center Server Appliance + string EndpointVcsa { get; set; } + /// vCenter Single Sign On Identity Sources + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySource[] IdentitySource { get; set; } + /// Connectivity to internet is enabled or disabled + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum? Internet { get; set; } + /// The default cluster used for management + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementCluster ManagementCluster { get; set; } + /// The hosts + string[] ManagementClusterHost { get; set; } + /// The identity + int? ManagementClusterId { get; set; } + /// The cluster size + int? ManagementClusterSize { get; set; } + /// Network used to access vCenter Server and NSX-T Manager + string ManagementNetwork { get; set; } + /// + /// The block of addresses should be unique across VNet in your subscription as well as on-premise. Make sure the CIDR format + /// is conformed to (A.B.C.D/X) where A,B,C,D are between 0 and 255, and X is between 0 and 22 + /// + string NetworkBlock { get; set; } + /// Thumbprint of the NSX-T Manager SSL certificate + string NsxtCertificateThumbprint { get; set; } + /// Optionally, set the NSX-T Manager password when the private cloud is created + string NsxtPassword { get; set; } + /// The properties of a private cloud resource + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudProperties Property { get; set; } + /// Used for virtual machine cold migration, cloning, and snapshot migration + string ProvisioningNetwork { get; set; } + /// The provisioning state + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.PrivateCloudProvisioningState? ProvisioningState { get; set; } + /// The private cloud SKU + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ISku Sku { get; set; } + /// The name of the SKU. + string SkuName { get; set; } + /// Thumbprint of the vCenter Server SSL certificate + string VcenterCertificateThumbprint { get; set; } + /// Optionally, set the vCenter admin password when the private cloud is created + string VcenterPassword { get; set; } + /// Used for live migration of virtual machines + string VmotionNetwork { get; set; } + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/PrivateCloud.json.cs b/src/VMWare/generated/api/Models/Api20200320/PrivateCloud.json.cs new file mode 100644 index 000000000000..8ec82a623dde --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/PrivateCloud.json.cs @@ -0,0 +1,105 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// A private cloud resource + public partial class PrivateCloud + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json ? new PrivateCloud(json) : null; + } + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject instance to deserialize from. + internal PrivateCloud(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + __trackedResource = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.TrackedResource(json); + {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.PrivateCloudProperties.FromJson(__jsonProperties) : Property;} + {_sku = If( json?.PropertyT("sku"), out var __jsonSku) ? Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.Sku.FromJson(__jsonSku) : Sku;} + AfterFromJson(json); + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + __trackedResource?.ToJson(container, serializationMode); + AddIf( null != this._property ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) this._property.ToJson(null,serializationMode) : null, "properties" ,container.Add ); + AddIf( null != this._sku ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) this._sku.ToJson(null,serializationMode) : null, "sku" ,container.Add ); + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/PrivateCloudList.PowerShell.cs b/src/VMWare/generated/api/Models/Api20200320/PrivateCloudList.PowerShell.cs new file mode 100644 index 000000000000..708049aec9f9 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/PrivateCloudList.PowerShell.cs @@ -0,0 +1,133 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// A paged list of private clouds + [System.ComponentModel.TypeConverter(typeof(PrivateCloudListTypeConverter))] + public partial class PrivateCloudList + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudList DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new PrivateCloudList(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudList DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new PrivateCloudList(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudList FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal PrivateCloudList(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudListInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudListInternal)this).NextLink, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudListInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudListInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.PrivateCloudTypeConverter.ConvertFrom)); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal PrivateCloudList(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudListInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudListInternal)this).NextLink, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudListInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudListInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.PrivateCloudTypeConverter.ConvertFrom)); + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// A paged list of private clouds + [System.ComponentModel.TypeConverter(typeof(PrivateCloudListTypeConverter))] + public partial interface IPrivateCloudList + + { + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/PrivateCloudList.TypeConverter.cs b/src/VMWare/generated/api/Models/Api20200320/PrivateCloudList.TypeConverter.cs new file mode 100644 index 000000000000..5d834c200a07 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/PrivateCloudList.TypeConverter.cs @@ -0,0 +1,142 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class PrivateCloudListTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudList ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudList).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return PrivateCloudList.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return PrivateCloudList.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return PrivateCloudList.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/PrivateCloudList.cs b/src/VMWare/generated/api/Models/Api20200320/PrivateCloudList.cs new file mode 100644 index 000000000000..ec06a5449217 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/PrivateCloudList.cs @@ -0,0 +1,69 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// A paged list of private clouds + public partial class PrivateCloudList : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudList, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudListInternal + { + + /// Internal Acessors for NextLink + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudListInternal.NextLink { get => this._nextLink; set { {_nextLink = value;} } } + + /// Internal Acessors for Value + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud[] Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudListInternal.Value { get => this._value; set { {_value = value;} } } + + /// Backing field for property. + private string _nextLink; + + /// URL to get the next page if any + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string NextLink { get => this._nextLink; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud[] _value; + + /// The items on the page + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud[] Value { get => this._value; } + + /// Creates an new instance. + public PrivateCloudList() + { + + } + } + /// A paged list of private clouds + public partial interface IPrivateCloudList : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IJsonSerializable + { + /// URL to get the next page if any + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"URL to get the next page if any", + SerializedName = @"nextLink", + PossibleTypes = new [] { typeof(string) })] + string NextLink { get; } + /// The items on the page + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The items on the page", + SerializedName = @"value", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud) })] + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud[] Value { get; } + + } + /// A paged list of private clouds + internal partial interface IPrivateCloudListInternal + + { + /// URL to get the next page if any + string NextLink { get; set; } + /// The items on the page + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud[] Value { get; set; } + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/PrivateCloudList.json.cs b/src/VMWare/generated/api/Models/Api20200320/PrivateCloudList.json.cs new file mode 100644 index 000000000000..70f240068f5f --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/PrivateCloudList.json.cs @@ -0,0 +1,117 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// A paged list of private clouds + public partial class PrivateCloudList + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudList. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudList. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudList FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json ? new PrivateCloudList(json) : null; + } + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject instance to deserialize from. + internal PrivateCloudList(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_nextLink = If( json?.PropertyT("nextLink"), out var __jsonNextLink) ? (string)__jsonNextLink : (string)NextLink;} + {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud) (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.PrivateCloud.FromJson(__u) )) ))() : null : Value;} + AfterFromJson(json); + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._nextLink)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._nextLink.ToString()) : null, "nextLink" ,container.Add ); + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + if (null != this._value) + { + var __w = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.XNodeArray(); + foreach( var __x in this._value ) + { + AddIf(__x?.ToJson(null, serializationMode) ,__w.Add); + } + container.Add("value",__w); + } + } + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/PrivateCloudProperties.PowerShell.cs b/src/VMWare/generated/api/Models/Api20200320/PrivateCloudProperties.PowerShell.cs new file mode 100644 index 000000000000..0c542a4d0359 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/PrivateCloudProperties.PowerShell.cs @@ -0,0 +1,177 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// The properties of a private cloud resource + [System.ComponentModel.TypeConverter(typeof(PrivateCloudPropertiesTypeConverter))] + public partial class PrivateCloudProperties + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new PrivateCloudProperties(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new PrivateCloudProperties(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal PrivateCloudProperties(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).Circuit = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICircuit) content.GetValueForProperty("Circuit",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).Circuit, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.CircuitTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).Endpoint = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IEndpoints) content.GetValueForProperty("Endpoint",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).Endpoint, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.EndpointsTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).ManagementNetwork = (string) content.GetValueForProperty("ManagementNetwork",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).ManagementNetwork, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).NetworkBlock = (string) content.GetValueForProperty("NetworkBlock",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).NetworkBlock, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).NsxtCertificateThumbprint = (string) content.GetValueForProperty("NsxtCertificateThumbprint",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).NsxtCertificateThumbprint, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).NsxtPassword = (string) content.GetValueForProperty("NsxtPassword",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).NsxtPassword, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).ProvisioningNetwork = (string) content.GetValueForProperty("ProvisioningNetwork",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).ProvisioningNetwork, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.PrivateCloudProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.PrivateCloudProvisioningState.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).VcenterCertificateThumbprint = (string) content.GetValueForProperty("VcenterCertificateThumbprint",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).VcenterCertificateThumbprint, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).VcenterPassword = (string) content.GetValueForProperty("VcenterPassword",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).VcenterPassword, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).VmotionNetwork = (string) content.GetValueForProperty("VmotionNetwork",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).VmotionNetwork, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)this).ManagementClusterHost = (string[]) content.GetValueForProperty("ManagementClusterHost",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)this).ManagementClusterHost, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)this).ManagementClusterSize = (int?) content.GetValueForProperty("ManagementClusterSize",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)this).ManagementClusterSize, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)this).ManagementClusterId = (int?) content.GetValueForProperty("ManagementClusterId",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)this).ManagementClusterId, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)this).ManagementCluster = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementCluster) content.GetValueForProperty("ManagementCluster",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)this).ManagementCluster, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ManagementClusterTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)this).IdentitySource = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySource[]) content.GetValueForProperty("IdentitySource",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)this).IdentitySource, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IdentitySourceTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)this).Internet = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum?) content.GetValueForProperty("Internet",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)this).Internet, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).CircuitPrimarySubnet = (string) content.GetValueForProperty("CircuitPrimarySubnet",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).CircuitPrimarySubnet, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).CircuitSecondarySubnet = (string) content.GetValueForProperty("CircuitSecondarySubnet",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).CircuitSecondarySubnet, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).EndpointNsxtManager = (string) content.GetValueForProperty("EndpointNsxtManager",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).EndpointNsxtManager, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).EndpointVcsa = (string) content.GetValueForProperty("EndpointVcsa",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).EndpointVcsa, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).CircuitExpressRouteId = (string) content.GetValueForProperty("CircuitExpressRouteId",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).CircuitExpressRouteId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).CircuitExpressRoutePrivatePeeringId = (string) content.GetValueForProperty("CircuitExpressRoutePrivatePeeringId",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).CircuitExpressRoutePrivatePeeringId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).EndpointHcxCloudManager = (string) content.GetValueForProperty("EndpointHcxCloudManager",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).EndpointHcxCloudManager, global::System.Convert.ToString); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal PrivateCloudProperties(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).Circuit = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICircuit) content.GetValueForProperty("Circuit",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).Circuit, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.CircuitTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).Endpoint = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IEndpoints) content.GetValueForProperty("Endpoint",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).Endpoint, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.EndpointsTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).ManagementNetwork = (string) content.GetValueForProperty("ManagementNetwork",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).ManagementNetwork, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).NetworkBlock = (string) content.GetValueForProperty("NetworkBlock",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).NetworkBlock, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).NsxtCertificateThumbprint = (string) content.GetValueForProperty("NsxtCertificateThumbprint",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).NsxtCertificateThumbprint, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).NsxtPassword = (string) content.GetValueForProperty("NsxtPassword",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).NsxtPassword, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).ProvisioningNetwork = (string) content.GetValueForProperty("ProvisioningNetwork",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).ProvisioningNetwork, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.PrivateCloudProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.PrivateCloudProvisioningState.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).VcenterCertificateThumbprint = (string) content.GetValueForProperty("VcenterCertificateThumbprint",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).VcenterCertificateThumbprint, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).VcenterPassword = (string) content.GetValueForProperty("VcenterPassword",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).VcenterPassword, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).VmotionNetwork = (string) content.GetValueForProperty("VmotionNetwork",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).VmotionNetwork, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)this).ManagementClusterHost = (string[]) content.GetValueForProperty("ManagementClusterHost",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)this).ManagementClusterHost, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)this).ManagementClusterSize = (int?) content.GetValueForProperty("ManagementClusterSize",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)this).ManagementClusterSize, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)this).ManagementClusterId = (int?) content.GetValueForProperty("ManagementClusterId",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)this).ManagementClusterId, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)this).ManagementCluster = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementCluster) content.GetValueForProperty("ManagementCluster",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)this).ManagementCluster, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ManagementClusterTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)this).IdentitySource = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySource[]) content.GetValueForProperty("IdentitySource",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)this).IdentitySource, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IdentitySourceTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)this).Internet = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum?) content.GetValueForProperty("Internet",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)this).Internet, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).CircuitPrimarySubnet = (string) content.GetValueForProperty("CircuitPrimarySubnet",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).CircuitPrimarySubnet, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).CircuitSecondarySubnet = (string) content.GetValueForProperty("CircuitSecondarySubnet",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).CircuitSecondarySubnet, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).EndpointNsxtManager = (string) content.GetValueForProperty("EndpointNsxtManager",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).EndpointNsxtManager, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).EndpointVcsa = (string) content.GetValueForProperty("EndpointVcsa",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).EndpointVcsa, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).CircuitExpressRouteId = (string) content.GetValueForProperty("CircuitExpressRouteId",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).CircuitExpressRouteId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).CircuitExpressRoutePrivatePeeringId = (string) content.GetValueForProperty("CircuitExpressRoutePrivatePeeringId",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).CircuitExpressRoutePrivatePeeringId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).EndpointHcxCloudManager = (string) content.GetValueForProperty("EndpointHcxCloudManager",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal)this).EndpointHcxCloudManager, global::System.Convert.ToString); + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// The properties of a private cloud resource + [System.ComponentModel.TypeConverter(typeof(PrivateCloudPropertiesTypeConverter))] + public partial interface IPrivateCloudProperties + + { + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/PrivateCloudProperties.TypeConverter.cs b/src/VMWare/generated/api/Models/Api20200320/PrivateCloudProperties.TypeConverter.cs new file mode 100644 index 000000000000..af61572f138b --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/PrivateCloudProperties.TypeConverter.cs @@ -0,0 +1,142 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class PrivateCloudPropertiesTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudProperties ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudProperties).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return PrivateCloudProperties.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return PrivateCloudProperties.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return PrivateCloudProperties.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/PrivateCloudProperties.cs b/src/VMWare/generated/api/Models/Api20200320/PrivateCloudProperties.cs new file mode 100644 index 000000000000..69bc1cf7d8a4 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/PrivateCloudProperties.cs @@ -0,0 +1,401 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// The properties of a private cloud resource + public partial class PrivateCloudProperties : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudProperties, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IValidates + { + /// + /// Backing field for Inherited model + /// + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateProperties __privateCloudUpdateProperties = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.PrivateCloudUpdateProperties(); + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICircuit _circuit; + + /// An ExpressRoute Circuit + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + internal Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICircuit Circuit { get => (this._circuit = this._circuit ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.Circuit()); set => this._circuit = value; } + + /// Identifier of the ExpressRoute Circuit (Microsoft Colo only) + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public string CircuitExpressRouteId { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICircuitInternal)Circuit).ExpressRouteId; } + + /// ExpressRoute Circuit private peering identifier + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public string CircuitExpressRoutePrivatePeeringId { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICircuitInternal)Circuit).ExpressRoutePrivatePeeringId; } + + /// CIDR of primary subnet + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public string CircuitPrimarySubnet { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICircuitInternal)Circuit).PrimarySubnet; } + + /// CIDR of secondary subnet + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public string CircuitSecondarySubnet { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICircuitInternal)Circuit).SecondarySubnet; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IEndpoints _endpoint; + + /// The endpoints + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + internal Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IEndpoints Endpoint { get => (this._endpoint = this._endpoint ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.Endpoints()); } + + /// Endpoint for the HCX Cloud Manager + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public string EndpointHcxCloudManager { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IEndpointsInternal)Endpoint).HcxCloudManager; } + + /// Endpoint for the NSX-T Data Center manager + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public string EndpointNsxtManager { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IEndpointsInternal)Endpoint).NsxtManager; } + + /// Endpoint for Virtual Center Server Appliance + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public string EndpointVcsa { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IEndpointsInternal)Endpoint).Vcsa; } + + /// vCenter Single Sign On Identity Sources + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inherited)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySource[] IdentitySource { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)__privateCloudUpdateProperties).IdentitySource; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)__privateCloudUpdateProperties).IdentitySource = value; } + + /// Connectivity to internet is enabled or disabled + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inherited)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum? Internet { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)__privateCloudUpdateProperties).Internet; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)__privateCloudUpdateProperties).Internet = value; } + + /// The default cluster used for management + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inherited)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementCluster ManagementCluster { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)__privateCloudUpdateProperties).ManagementCluster; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)__privateCloudUpdateProperties).ManagementCluster = value; } + + /// The hosts + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inherited)] + public string[] ManagementClusterHost { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)__privateCloudUpdateProperties).ManagementClusterHost; } + + /// The identity + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inherited)] + public int? ManagementClusterId { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)__privateCloudUpdateProperties).ManagementClusterId; } + + /// The cluster size + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inherited)] + public int? ManagementClusterSize { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)__privateCloudUpdateProperties).ManagementClusterSize; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)__privateCloudUpdateProperties).ManagementClusterSize = value; } + + /// Backing field for property. + private string _managementNetwork; + + /// Network used to access vCenter Server and NSX-T Manager + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string ManagementNetwork { get => this._managementNetwork; } + + /// Internal Acessors for Circuit + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICircuit Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal.Circuit { get => (this._circuit = this._circuit ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.Circuit()); set { {_circuit = value;} } } + + /// Internal Acessors for CircuitExpressRouteId + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal.CircuitExpressRouteId { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICircuitInternal)Circuit).ExpressRouteId; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICircuitInternal)Circuit).ExpressRouteId = value; } + + /// Internal Acessors for CircuitExpressRoutePrivatePeeringId + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal.CircuitExpressRoutePrivatePeeringId { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICircuitInternal)Circuit).ExpressRoutePrivatePeeringId; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICircuitInternal)Circuit).ExpressRoutePrivatePeeringId = value; } + + /// Internal Acessors for CircuitPrimarySubnet + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal.CircuitPrimarySubnet { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICircuitInternal)Circuit).PrimarySubnet; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICircuitInternal)Circuit).PrimarySubnet = value; } + + /// Internal Acessors for CircuitSecondarySubnet + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal.CircuitSecondarySubnet { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICircuitInternal)Circuit).SecondarySubnet; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICircuitInternal)Circuit).SecondarySubnet = value; } + + /// Internal Acessors for Endpoint + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IEndpoints Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal.Endpoint { get => (this._endpoint = this._endpoint ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.Endpoints()); set { {_endpoint = value;} } } + + /// Internal Acessors for EndpointHcxCloudManager + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal.EndpointHcxCloudManager { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IEndpointsInternal)Endpoint).HcxCloudManager; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IEndpointsInternal)Endpoint).HcxCloudManager = value; } + + /// Internal Acessors for EndpointNsxtManager + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal.EndpointNsxtManager { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IEndpointsInternal)Endpoint).NsxtManager; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IEndpointsInternal)Endpoint).NsxtManager = value; } + + /// Internal Acessors for EndpointVcsa + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal.EndpointVcsa { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IEndpointsInternal)Endpoint).Vcsa; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IEndpointsInternal)Endpoint).Vcsa = value; } + + /// Internal Acessors for ManagementNetwork + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal.ManagementNetwork { get => this._managementNetwork; set { {_managementNetwork = value;} } } + + /// Internal Acessors for NsxtCertificateThumbprint + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal.NsxtCertificateThumbprint { get => this._nsxtCertificateThumbprint; set { {_nsxtCertificateThumbprint = value;} } } + + /// Internal Acessors for ProvisioningNetwork + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal.ProvisioningNetwork { get => this._provisioningNetwork; set { {_provisioningNetwork = value;} } } + + /// Internal Acessors for ProvisioningState + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.PrivateCloudProvisioningState? Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal.ProvisioningState { get => this._provisioningState; set { {_provisioningState = value;} } } + + /// Internal Acessors for VcenterCertificateThumbprint + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal.VcenterCertificateThumbprint { get => this._vcenterCertificateThumbprint; set { {_vcenterCertificateThumbprint = value;} } } + + /// Internal Acessors for VmotionNetwork + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudPropertiesInternal.VmotionNetwork { get => this._vmotionNetwork; set { {_vmotionNetwork = value;} } } + + /// Internal Acessors for ManagementClusterHost + string[] Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal.ManagementClusterHost { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)__privateCloudUpdateProperties).ManagementClusterHost; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)__privateCloudUpdateProperties).ManagementClusterHost = value; } + + /// Internal Acessors for ManagementClusterId + int? Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal.ManagementClusterId { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)__privateCloudUpdateProperties).ManagementClusterId; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)__privateCloudUpdateProperties).ManagementClusterId = value; } + + /// Backing field for property. + private string _networkBlock; + + /// + /// The block of addresses should be unique across VNet in your subscription as well as on-premise. Make sure the CIDR format + /// is conformed to (A.B.C.D/X) where A,B,C,D are between 0 and 255, and X is between 0 and 22 + /// + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string NetworkBlock { get => this._networkBlock; set => this._networkBlock = value; } + + /// Backing field for property. + private string _nsxtCertificateThumbprint; + + /// Thumbprint of the NSX-T Manager SSL certificate + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string NsxtCertificateThumbprint { get => this._nsxtCertificateThumbprint; } + + /// Backing field for property. + private string _nsxtPassword; + + /// Optionally, set the NSX-T Manager password when the private cloud is created + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string NsxtPassword { get => this._nsxtPassword; set => this._nsxtPassword = value; } + + /// Backing field for property. + private string _provisioningNetwork; + + /// Used for virtual machine cold migration, cloning, and snapshot migration + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string ProvisioningNetwork { get => this._provisioningNetwork; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.PrivateCloudProvisioningState? _provisioningState; + + /// The provisioning state + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.PrivateCloudProvisioningState? ProvisioningState { get => this._provisioningState; } + + /// Backing field for property. + private string _vcenterCertificateThumbprint; + + /// Thumbprint of the vCenter Server SSL certificate + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string VcenterCertificateThumbprint { get => this._vcenterCertificateThumbprint; } + + /// Backing field for property. + private string _vcenterPassword; + + /// Optionally, set the vCenter admin password when the private cloud is created + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string VcenterPassword { get => this._vcenterPassword; set => this._vcenterPassword = value; } + + /// Backing field for property. + private string _vmotionNetwork; + + /// Used for live migration of virtual machines + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string VmotionNetwork { get => this._vmotionNetwork; } + + /// Creates an new instance. + public PrivateCloudProperties() + { + + } + + /// Validates that this object meets the validation criteria. + /// an instance that will receive validation + /// events. + /// + /// A < see cref = "global::System.Threading.Tasks.Task" /> that will be complete when validation is completed. + /// + public async global::System.Threading.Tasks.Task Validate(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener) + { + await eventListener.AssertNotNull(nameof(__privateCloudUpdateProperties), __privateCloudUpdateProperties); + await eventListener.AssertObjectIsValid(nameof(__privateCloudUpdateProperties), __privateCloudUpdateProperties); + } + } + /// The properties of a private cloud resource + public partial interface IPrivateCloudProperties : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IJsonSerializable, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateProperties + { + /// Identifier of the ExpressRoute Circuit (Microsoft Colo only) + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"Identifier of the ExpressRoute Circuit (Microsoft Colo only)", + SerializedName = @"expressRouteID", + PossibleTypes = new [] { typeof(string) })] + string CircuitExpressRouteId { get; } + /// ExpressRoute Circuit private peering identifier + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"ExpressRoute Circuit private peering identifier", + SerializedName = @"expressRoutePrivatePeeringID", + PossibleTypes = new [] { typeof(string) })] + string CircuitExpressRoutePrivatePeeringId { get; } + /// CIDR of primary subnet + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"CIDR of primary subnet", + SerializedName = @"primarySubnet", + PossibleTypes = new [] { typeof(string) })] + string CircuitPrimarySubnet { get; } + /// CIDR of secondary subnet + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"CIDR of secondary subnet", + SerializedName = @"secondarySubnet", + PossibleTypes = new [] { typeof(string) })] + string CircuitSecondarySubnet { get; } + /// Endpoint for the HCX Cloud Manager + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"Endpoint for the HCX Cloud Manager", + SerializedName = @"hcxCloudManager", + PossibleTypes = new [] { typeof(string) })] + string EndpointHcxCloudManager { get; } + /// Endpoint for the NSX-T Data Center manager + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"Endpoint for the NSX-T Data Center manager", + SerializedName = @"nsxtManager", + PossibleTypes = new [] { typeof(string) })] + string EndpointNsxtManager { get; } + /// Endpoint for Virtual Center Server Appliance + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"Endpoint for Virtual Center Server Appliance", + SerializedName = @"vcsa", + PossibleTypes = new [] { typeof(string) })] + string EndpointVcsa { get; } + /// Network used to access vCenter Server and NSX-T Manager + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"Network used to access vCenter Server and NSX-T Manager", + SerializedName = @"managementNetwork", + PossibleTypes = new [] { typeof(string) })] + string ManagementNetwork { get; } + /// + /// The block of addresses should be unique across VNet in your subscription as well as on-premise. Make sure the CIDR format + /// is conformed to (A.B.C.D/X) where A,B,C,D are between 0 and 255, and X is between 0 and 22 + /// + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The block of addresses should be unique across VNet in your subscription as well as on-premise. Make sure the CIDR format is conformed to (A.B.C.D/X) where A,B,C,D are between 0 and 255, and X is between 0 and 22", + SerializedName = @"networkBlock", + PossibleTypes = new [] { typeof(string) })] + string NetworkBlock { get; set; } + /// Thumbprint of the NSX-T Manager SSL certificate + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"Thumbprint of the NSX-T Manager SSL certificate", + SerializedName = @"nsxtCertificateThumbprint", + PossibleTypes = new [] { typeof(string) })] + string NsxtCertificateThumbprint { get; } + /// Optionally, set the NSX-T Manager password when the private cloud is created + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Optionally, set the NSX-T Manager password when the private cloud is created", + SerializedName = @"nsxtPassword", + PossibleTypes = new [] { typeof(string) })] + string NsxtPassword { get; set; } + /// Used for virtual machine cold migration, cloning, and snapshot migration + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"Used for virtual machine cold migration, cloning, and snapshot migration", + SerializedName = @"provisioningNetwork", + PossibleTypes = new [] { typeof(string) })] + string ProvisioningNetwork { get; } + /// The provisioning state + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The provisioning state", + SerializedName = @"provisioningState", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.PrivateCloudProvisioningState) })] + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.PrivateCloudProvisioningState? ProvisioningState { get; } + /// Thumbprint of the vCenter Server SSL certificate + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"Thumbprint of the vCenter Server SSL certificate", + SerializedName = @"vcenterCertificateThumbprint", + PossibleTypes = new [] { typeof(string) })] + string VcenterCertificateThumbprint { get; } + /// Optionally, set the vCenter admin password when the private cloud is created + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Optionally, set the vCenter admin password when the private cloud is created", + SerializedName = @"vcenterPassword", + PossibleTypes = new [] { typeof(string) })] + string VcenterPassword { get; set; } + /// Used for live migration of virtual machines + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"Used for live migration of virtual machines", + SerializedName = @"vmotionNetwork", + PossibleTypes = new [] { typeof(string) })] + string VmotionNetwork { get; } + + } + /// The properties of a private cloud resource + internal partial interface IPrivateCloudPropertiesInternal : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal + { + /// An ExpressRoute Circuit + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICircuit Circuit { get; set; } + /// Identifier of the ExpressRoute Circuit (Microsoft Colo only) + string CircuitExpressRouteId { get; set; } + /// ExpressRoute Circuit private peering identifier + string CircuitExpressRoutePrivatePeeringId { get; set; } + /// CIDR of primary subnet + string CircuitPrimarySubnet { get; set; } + /// CIDR of secondary subnet + string CircuitSecondarySubnet { get; set; } + /// The endpoints + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IEndpoints Endpoint { get; set; } + /// Endpoint for the HCX Cloud Manager + string EndpointHcxCloudManager { get; set; } + /// Endpoint for the NSX-T Data Center manager + string EndpointNsxtManager { get; set; } + /// Endpoint for Virtual Center Server Appliance + string EndpointVcsa { get; set; } + /// Network used to access vCenter Server and NSX-T Manager + string ManagementNetwork { get; set; } + /// + /// The block of addresses should be unique across VNet in your subscription as well as on-premise. Make sure the CIDR format + /// is conformed to (A.B.C.D/X) where A,B,C,D are between 0 and 255, and X is between 0 and 22 + /// + string NetworkBlock { get; set; } + /// Thumbprint of the NSX-T Manager SSL certificate + string NsxtCertificateThumbprint { get; set; } + /// Optionally, set the NSX-T Manager password when the private cloud is created + string NsxtPassword { get; set; } + /// Used for virtual machine cold migration, cloning, and snapshot migration + string ProvisioningNetwork { get; set; } + /// The provisioning state + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.PrivateCloudProvisioningState? ProvisioningState { get; set; } + /// Thumbprint of the vCenter Server SSL certificate + string VcenterCertificateThumbprint { get; set; } + /// Optionally, set the vCenter admin password when the private cloud is created + string VcenterPassword { get; set; } + /// Used for live migration of virtual machines + string VmotionNetwork { get; set; } + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/PrivateCloudProperties.json.cs b/src/VMWare/generated/api/Models/Api20200320/PrivateCloudProperties.json.cs new file mode 100644 index 000000000000..8cde746af0bf --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/PrivateCloudProperties.json.cs @@ -0,0 +1,144 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// The properties of a private cloud resource + public partial class PrivateCloudProperties + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudProperties. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudProperties. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json ? new PrivateCloudProperties(json) : null; + } + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject instance to deserialize from. + internal PrivateCloudProperties(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + __privateCloudUpdateProperties = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.PrivateCloudUpdateProperties(json); + {_circuit = If( json?.PropertyT("circuit"), out var __jsonCircuit) ? Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.Circuit.FromJson(__jsonCircuit) : Circuit;} + {_endpoint = If( json?.PropertyT("endpoints"), out var __jsonEndpoints) ? Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.Endpoints.FromJson(__jsonEndpoints) : Endpoint;} + {_managementNetwork = If( json?.PropertyT("managementNetwork"), out var __jsonManagementNetwork) ? (string)__jsonManagementNetwork : (string)ManagementNetwork;} + {_networkBlock = If( json?.PropertyT("networkBlock"), out var __jsonNetworkBlock) ? (string)__jsonNetworkBlock : (string)NetworkBlock;} + {_nsxtCertificateThumbprint = If( json?.PropertyT("nsxtCertificateThumbprint"), out var __jsonNsxtCertificateThumbprint) ? (string)__jsonNsxtCertificateThumbprint : (string)NsxtCertificateThumbprint;} + {_nsxtPassword = If( json?.PropertyT("nsxtPassword"), out var __jsonNsxtPassword) ? (string)__jsonNsxtPassword : (string)NsxtPassword;} + {_provisioningNetwork = If( json?.PropertyT("provisioningNetwork"), out var __jsonProvisioningNetwork) ? (string)__jsonProvisioningNetwork : (string)ProvisioningNetwork;} + {_provisioningState = If( json?.PropertyT("provisioningState"), out var __jsonProvisioningState) ? (string)__jsonProvisioningState : (string)ProvisioningState;} + {_vcenterCertificateThumbprint = If( json?.PropertyT("vcenterCertificateThumbprint"), out var __jsonVcenterCertificateThumbprint) ? (string)__jsonVcenterCertificateThumbprint : (string)VcenterCertificateThumbprint;} + {_vcenterPassword = If( json?.PropertyT("vcenterPassword"), out var __jsonVcenterPassword) ? (string)__jsonVcenterPassword : (string)VcenterPassword;} + {_vmotionNetwork = If( json?.PropertyT("vmotionNetwork"), out var __jsonVmotionNetwork) ? (string)__jsonVmotionNetwork : (string)VmotionNetwork;} + AfterFromJson(json); + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + __privateCloudUpdateProperties?.ToJson(container, serializationMode); + AddIf( null != this._circuit ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) this._circuit.ToJson(null,serializationMode) : null, "circuit" ,container.Add ); + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != this._endpoint ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) this._endpoint.ToJson(null,serializationMode) : null, "endpoints" ,container.Add ); + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._managementNetwork)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._managementNetwork.ToString()) : null, "managementNetwork" ,container.Add ); + } + AddIf( null != (((object)this._networkBlock)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._networkBlock.ToString()) : null, "networkBlock" ,container.Add ); + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._nsxtCertificateThumbprint)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._nsxtCertificateThumbprint.ToString()) : null, "nsxtCertificateThumbprint" ,container.Add ); + } + AddIf( null != (((object)this._nsxtPassword)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._nsxtPassword.ToString()) : null, "nsxtPassword" ,container.Add ); + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._provisioningNetwork)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._provisioningNetwork.ToString()) : null, "provisioningNetwork" ,container.Add ); + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._provisioningState)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._provisioningState.ToString()) : null, "provisioningState" ,container.Add ); + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._vcenterCertificateThumbprint)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._vcenterCertificateThumbprint.ToString()) : null, "vcenterCertificateThumbprint" ,container.Add ); + } + AddIf( null != (((object)this._vcenterPassword)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._vcenterPassword.ToString()) : null, "vcenterPassword" ,container.Add ); + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._vmotionNetwork)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._vmotionNetwork.ToString()) : null, "vmotionNetwork" ,container.Add ); + } + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/PrivateCloudUpdate.PowerShell.cs b/src/VMWare/generated/api/Models/Api20200320/PrivateCloudUpdate.PowerShell.cs new file mode 100644 index 000000000000..0db45e290136 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/PrivateCloudUpdate.PowerShell.cs @@ -0,0 +1,145 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// An update to a private cloud resource + [System.ComponentModel.TypeConverter(typeof(PrivateCloudUpdateTypeConverter))] + public partial class PrivateCloudUpdate + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdate DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new PrivateCloudUpdate(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdate DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new PrivateCloudUpdate(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdate FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal PrivateCloudUpdate(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.PrivateCloudUpdatePropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.PrivateCloudUpdateTagsTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateInternal)this).ManagementCluster = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementCluster) content.GetValueForProperty("ManagementCluster",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateInternal)this).ManagementCluster, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ManagementClusterTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateInternal)this).IdentitySource = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySource[]) content.GetValueForProperty("IdentitySource",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateInternal)this).IdentitySource, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IdentitySourceTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateInternal)this).Internet = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum?) content.GetValueForProperty("Internet",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateInternal)this).Internet, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateInternal)this).ManagementClusterHost = (string[]) content.GetValueForProperty("ManagementClusterHost",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateInternal)this).ManagementClusterHost, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateInternal)this).ManagementClusterSize = (int?) content.GetValueForProperty("ManagementClusterSize",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateInternal)this).ManagementClusterSize, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateInternal)this).ManagementClusterId = (int?) content.GetValueForProperty("ManagementClusterId",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateInternal)this).ManagementClusterId, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal PrivateCloudUpdate(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.PrivateCloudUpdatePropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.PrivateCloudUpdateTagsTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateInternal)this).ManagementCluster = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementCluster) content.GetValueForProperty("ManagementCluster",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateInternal)this).ManagementCluster, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ManagementClusterTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateInternal)this).IdentitySource = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySource[]) content.GetValueForProperty("IdentitySource",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateInternal)this).IdentitySource, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IdentitySourceTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateInternal)this).Internet = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum?) content.GetValueForProperty("Internet",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateInternal)this).Internet, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateInternal)this).ManagementClusterHost = (string[]) content.GetValueForProperty("ManagementClusterHost",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateInternal)this).ManagementClusterHost, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateInternal)this).ManagementClusterSize = (int?) content.GetValueForProperty("ManagementClusterSize",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateInternal)this).ManagementClusterSize, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateInternal)this).ManagementClusterId = (int?) content.GetValueForProperty("ManagementClusterId",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateInternal)this).ManagementClusterId, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// An update to a private cloud resource + [System.ComponentModel.TypeConverter(typeof(PrivateCloudUpdateTypeConverter))] + public partial interface IPrivateCloudUpdate + + { + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/PrivateCloudUpdate.TypeConverter.cs b/src/VMWare/generated/api/Models/Api20200320/PrivateCloudUpdate.TypeConverter.cs new file mode 100644 index 000000000000..e9ac25b33dcf --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/PrivateCloudUpdate.TypeConverter.cs @@ -0,0 +1,142 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class PrivateCloudUpdateTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdate ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdate).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return PrivateCloudUpdate.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return PrivateCloudUpdate.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return PrivateCloudUpdate.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/PrivateCloudUpdate.cs b/src/VMWare/generated/api/Models/Api20200320/PrivateCloudUpdate.cs new file mode 100644 index 000000000000..452628def2ae --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/PrivateCloudUpdate.cs @@ -0,0 +1,139 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// An update to a private cloud resource + public partial class PrivateCloudUpdate : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdate, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateInternal + { + + /// vCenter Single Sign On Identity Sources + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySource[] IdentitySource { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)Property).IdentitySource; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)Property).IdentitySource = value; } + + /// Connectivity to internet is enabled or disabled + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum? Internet { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)Property).Internet; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)Property).Internet = value; } + + /// The hosts + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public string[] ManagementClusterHost { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)Property).ManagementClusterHost; } + + /// The identity + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public int? ManagementClusterId { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)Property).ManagementClusterId; } + + /// The cluster size + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public int? ManagementClusterSize { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)Property).ManagementClusterSize; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)Property).ManagementClusterSize = value; } + + /// Internal Acessors for ManagementCluster + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementCluster Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateInternal.ManagementCluster { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)Property).ManagementCluster; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)Property).ManagementCluster = value; } + + /// Internal Acessors for ManagementClusterHost + string[] Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateInternal.ManagementClusterHost { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)Property).ManagementClusterHost; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)Property).ManagementClusterHost = value; } + + /// Internal Acessors for ManagementClusterId + int? Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateInternal.ManagementClusterId { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)Property).ManagementClusterId; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)Property).ManagementClusterId = value; } + + /// Internal Acessors for Property + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateProperties Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.PrivateCloudUpdateProperties()); set { {_property = value;} } } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateProperties _property; + + /// The updatable properties of a private cloud resource + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + internal Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.PrivateCloudUpdateProperties()); set => this._property = value; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateTags _tag; + + /// Resource tags. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateTags Tag { get => (this._tag = this._tag ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.PrivateCloudUpdateTags()); set => this._tag = value; } + + /// Creates an new instance. + public PrivateCloudUpdate() + { + + } + } + /// An update to a private cloud resource + public partial interface IPrivateCloudUpdate : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IJsonSerializable + { + /// vCenter Single Sign On Identity Sources + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"vCenter Single Sign On Identity Sources", + SerializedName = @"identitySources", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySource) })] + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySource[] IdentitySource { get; set; } + /// Connectivity to internet is enabled or disabled + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Connectivity to internet is enabled or disabled", + SerializedName = @"internet", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum) })] + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum? Internet { get; set; } + /// The hosts + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The hosts", + SerializedName = @"hosts", + PossibleTypes = new [] { typeof(string) })] + string[] ManagementClusterHost { get; } + /// The identity + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The identity", + SerializedName = @"clusterId", + PossibleTypes = new [] { typeof(int) })] + int? ManagementClusterId { get; } + /// The cluster size + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The cluster size", + SerializedName = @"clusterSize", + PossibleTypes = new [] { typeof(int) })] + int? ManagementClusterSize { get; set; } + /// Resource tags. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Resource tags.", + SerializedName = @"tags", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateTags) })] + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateTags Tag { get; set; } + + } + /// An update to a private cloud resource + internal partial interface IPrivateCloudUpdateInternal + + { + /// vCenter Single Sign On Identity Sources + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySource[] IdentitySource { get; set; } + /// Connectivity to internet is enabled or disabled + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum? Internet { get; set; } + /// The default cluster used for management + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementCluster ManagementCluster { get; set; } + /// The hosts + string[] ManagementClusterHost { get; set; } + /// The identity + int? ManagementClusterId { get; set; } + /// The cluster size + int? ManagementClusterSize { get; set; } + /// The updatable properties of a private cloud resource + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateProperties Property { get; set; } + /// Resource tags. + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateTags Tag { get; set; } + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/PrivateCloudUpdate.json.cs b/src/VMWare/generated/api/Models/Api20200320/PrivateCloudUpdate.json.cs new file mode 100644 index 000000000000..cdda9a271ac6 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/PrivateCloudUpdate.json.cs @@ -0,0 +1,103 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// An update to a private cloud resource + public partial class PrivateCloudUpdate + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdate. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdate. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdate FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json ? new PrivateCloudUpdate(json) : null; + } + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject instance to deserialize from. + internal PrivateCloudUpdate(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.PrivateCloudUpdateProperties.FromJson(__jsonProperties) : Property;} + {_tag = If( json?.PropertyT("tags"), out var __jsonTags) ? Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.PrivateCloudUpdateTags.FromJson(__jsonTags) : Tag;} + AfterFromJson(json); + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + AddIf( null != this._property ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) this._property.ToJson(null,serializationMode) : null, "properties" ,container.Add ); + AddIf( null != this._tag ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) this._tag.ToJson(null,serializationMode) : null, "tags" ,container.Add ); + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/PrivateCloudUpdateProperties.PowerShell.cs b/src/VMWare/generated/api/Models/Api20200320/PrivateCloudUpdateProperties.PowerShell.cs new file mode 100644 index 000000000000..1ece2d5e2386 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/PrivateCloudUpdateProperties.PowerShell.cs @@ -0,0 +1,143 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// The properties of a private cloud resource that may be updated + [System.ComponentModel.TypeConverter(typeof(PrivateCloudUpdatePropertiesTypeConverter))] + public partial class PrivateCloudUpdateProperties + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new PrivateCloudUpdateProperties(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new PrivateCloudUpdateProperties(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal PrivateCloudUpdateProperties(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)this).ManagementCluster = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementCluster) content.GetValueForProperty("ManagementCluster",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)this).ManagementCluster, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ManagementClusterTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)this).IdentitySource = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySource[]) content.GetValueForProperty("IdentitySource",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)this).IdentitySource, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IdentitySourceTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)this).Internet = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum?) content.GetValueForProperty("Internet",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)this).Internet, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)this).ManagementClusterHost = (string[]) content.GetValueForProperty("ManagementClusterHost",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)this).ManagementClusterHost, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)this).ManagementClusterSize = (int?) content.GetValueForProperty("ManagementClusterSize",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)this).ManagementClusterSize, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)this).ManagementClusterId = (int?) content.GetValueForProperty("ManagementClusterId",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)this).ManagementClusterId, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal PrivateCloudUpdateProperties(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)this).ManagementCluster = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementCluster) content.GetValueForProperty("ManagementCluster",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)this).ManagementCluster, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ManagementClusterTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)this).IdentitySource = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySource[]) content.GetValueForProperty("IdentitySource",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)this).IdentitySource, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IdentitySourceTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)this).Internet = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum?) content.GetValueForProperty("Internet",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)this).Internet, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)this).ManagementClusterHost = (string[]) content.GetValueForProperty("ManagementClusterHost",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)this).ManagementClusterHost, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)this).ManagementClusterSize = (int?) content.GetValueForProperty("ManagementClusterSize",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)this).ManagementClusterSize, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)this).ManagementClusterId = (int?) content.GetValueForProperty("ManagementClusterId",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal)this).ManagementClusterId, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// The properties of a private cloud resource that may be updated + [System.ComponentModel.TypeConverter(typeof(PrivateCloudUpdatePropertiesTypeConverter))] + public partial interface IPrivateCloudUpdateProperties + + { + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/PrivateCloudUpdateProperties.TypeConverter.cs b/src/VMWare/generated/api/Models/Api20200320/PrivateCloudUpdateProperties.TypeConverter.cs new file mode 100644 index 000000000000..8b2f12371dc5 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/PrivateCloudUpdateProperties.TypeConverter.cs @@ -0,0 +1,142 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class PrivateCloudUpdatePropertiesTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateProperties ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateProperties).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return PrivateCloudUpdateProperties.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return PrivateCloudUpdateProperties.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return PrivateCloudUpdateProperties.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/PrivateCloudUpdateProperties.cs b/src/VMWare/generated/api/Models/Api20200320/PrivateCloudUpdateProperties.cs new file mode 100644 index 000000000000..de223db1e563 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/PrivateCloudUpdateProperties.cs @@ -0,0 +1,123 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// The properties of a private cloud resource that may be updated + public partial class PrivateCloudUpdateProperties : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateProperties, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal + { + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySource[] _identitySource; + + /// vCenter Single Sign On Identity Sources + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySource[] IdentitySource { get => this._identitySource; set => this._identitySource = value; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum? _internet; + + /// Connectivity to internet is enabled or disabled + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum? Internet { get => this._internet; set => this._internet = value; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementCluster _managementCluster; + + /// The default cluster used for management + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + internal Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementCluster ManagementCluster { get => (this._managementCluster = this._managementCluster ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ManagementCluster()); set => this._managementCluster = value; } + + /// The hosts + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public string[] ManagementClusterHost { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementClusterInternal)ManagementCluster).Host; } + + /// The identity + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public int? ManagementClusterId { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementClusterInternal)ManagementCluster).ClusterId; } + + /// The cluster size + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inlined)] + public int? ManagementClusterSize { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdatePropertiesInternal)ManagementCluster).ClusterSize; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdatePropertiesInternal)ManagementCluster).ClusterSize = value; } + + /// Internal Acessors for ManagementCluster + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementCluster Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal.ManagementCluster { get => (this._managementCluster = this._managementCluster ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ManagementCluster()); set { {_managementCluster = value;} } } + + /// Internal Acessors for ManagementClusterHost + string[] Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal.ManagementClusterHost { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementClusterInternal)ManagementCluster).Host; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementClusterInternal)ManagementCluster).Host = value; } + + /// Internal Acessors for ManagementClusterId + int? Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdatePropertiesInternal.ManagementClusterId { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementClusterInternal)ManagementCluster).ClusterId; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementClusterInternal)ManagementCluster).ClusterId = value; } + + /// Creates an new instance. + public PrivateCloudUpdateProperties() + { + + } + } + /// The properties of a private cloud resource that may be updated + public partial interface IPrivateCloudUpdateProperties : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IJsonSerializable + { + /// vCenter Single Sign On Identity Sources + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"vCenter Single Sign On Identity Sources", + SerializedName = @"identitySources", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySource) })] + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySource[] IdentitySource { get; set; } + /// Connectivity to internet is enabled or disabled + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Connectivity to internet is enabled or disabled", + SerializedName = @"internet", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum) })] + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum? Internet { get; set; } + /// The hosts + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The hosts", + SerializedName = @"hosts", + PossibleTypes = new [] { typeof(string) })] + string[] ManagementClusterHost { get; } + /// The identity + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The identity", + SerializedName = @"clusterId", + PossibleTypes = new [] { typeof(int) })] + int? ManagementClusterId { get; } + /// The cluster size + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The cluster size", + SerializedName = @"clusterSize", + PossibleTypes = new [] { typeof(int) })] + int? ManagementClusterSize { get; set; } + + } + /// The properties of a private cloud resource that may be updated + internal partial interface IPrivateCloudUpdatePropertiesInternal + + { + /// vCenter Single Sign On Identity Sources + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySource[] IdentitySource { get; set; } + /// Connectivity to internet is enabled or disabled + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum? Internet { get; set; } + /// The default cluster used for management + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IManagementCluster ManagementCluster { get; set; } + /// The hosts + string[] ManagementClusterHost { get; set; } + /// The identity + int? ManagementClusterId { get; set; } + /// The cluster size + int? ManagementClusterSize { get; set; } + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/PrivateCloudUpdateProperties.json.cs b/src/VMWare/generated/api/Models/Api20200320/PrivateCloudUpdateProperties.json.cs new file mode 100644 index 000000000000..f88318b3a29f --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/PrivateCloudUpdateProperties.json.cs @@ -0,0 +1,113 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// The properties of a private cloud resource that may be updated + public partial class PrivateCloudUpdateProperties + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateProperties. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateProperties. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json ? new PrivateCloudUpdateProperties(json) : null; + } + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject instance to deserialize from. + internal PrivateCloudUpdateProperties(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_managementCluster = If( json?.PropertyT("managementCluster"), out var __jsonManagementCluster) ? Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ManagementCluster.FromJson(__jsonManagementCluster) : ManagementCluster;} + {_identitySource = If( json?.PropertyT("identitySources"), out var __jsonIdentitySources) ? If( __jsonIdentitySources as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySource) (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IdentitySource.FromJson(__u) )) ))() : null : IdentitySource;} + {_internet = If( json?.PropertyT("internet"), out var __jsonInternet) ? (string)__jsonInternet : (string)Internet;} + AfterFromJson(json); + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + AddIf( null != this._managementCluster ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) this._managementCluster.ToJson(null,serializationMode) : null, "managementCluster" ,container.Add ); + if (null != this._identitySource) + { + var __w = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.XNodeArray(); + foreach( var __x in this._identitySource ) + { + AddIf(__x?.ToJson(null, serializationMode) ,__w.Add); + } + container.Add("identitySources",__w); + } + AddIf( null != (((object)this._internet)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._internet.ToString()) : null, "internet" ,container.Add ); + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/PrivateCloudUpdateTags.PowerShell.cs b/src/VMWare/generated/api/Models/Api20200320/PrivateCloudUpdateTags.PowerShell.cs new file mode 100644 index 000000000000..ab8898185cac --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/PrivateCloudUpdateTags.PowerShell.cs @@ -0,0 +1,133 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// Resource tags. + [System.ComponentModel.TypeConverter(typeof(PrivateCloudUpdateTagsTypeConverter))] + public partial class PrivateCloudUpdateTags + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateTags DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new PrivateCloudUpdateTags(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateTags DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new PrivateCloudUpdateTags(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateTags FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal PrivateCloudUpdateTags(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + // this type is a dictionary; copy elements from source to here. + CopyFrom(content); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal PrivateCloudUpdateTags(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + // this type is a dictionary; copy elements from source to here. + CopyFrom(content); + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// Resource tags. + [System.ComponentModel.TypeConverter(typeof(PrivateCloudUpdateTagsTypeConverter))] + public partial interface IPrivateCloudUpdateTags + + { + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/PrivateCloudUpdateTags.TypeConverter.cs b/src/VMWare/generated/api/Models/Api20200320/PrivateCloudUpdateTags.TypeConverter.cs new file mode 100644 index 000000000000..efcc1a8fdbe3 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/PrivateCloudUpdateTags.TypeConverter.cs @@ -0,0 +1,142 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class PrivateCloudUpdateTagsTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateTags ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateTags).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return PrivateCloudUpdateTags.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return PrivateCloudUpdateTags.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return PrivateCloudUpdateTags.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/PrivateCloudUpdateTags.cs b/src/VMWare/generated/api/Models/Api20200320/PrivateCloudUpdateTags.cs new file mode 100644 index 000000000000..baee5981b2d2 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/PrivateCloudUpdateTags.cs @@ -0,0 +1,30 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// Resource tags. + public partial class PrivateCloudUpdateTags : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateTags, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateTagsInternal + { + + /// Creates an new instance. + public PrivateCloudUpdateTags() + { + + } + } + /// Resource tags. + public partial interface IPrivateCloudUpdateTags : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IJsonSerializable, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IAssociativeArray + { + + } + /// Resource tags. + internal partial interface IPrivateCloudUpdateTagsInternal + + { + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/PrivateCloudUpdateTags.dictionary.cs b/src/VMWare/generated/api/Models/Api20200320/PrivateCloudUpdateTags.dictionary.cs new file mode 100644 index 000000000000..9914e7555021 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/PrivateCloudUpdateTags.dictionary.cs @@ -0,0 +1,70 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + public partial class PrivateCloudUpdateTags : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IAssociativeArray + { + protected global::System.Collections.Generic.Dictionary __additionalProperties = new global::System.Collections.Generic.Dictionary(); + + global::System.Collections.Generic.IDictionary Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IAssociativeArray.AdditionalProperties { get => __additionalProperties; } + + int Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IAssociativeArray.Count { get => __additionalProperties.Count; } + + global::System.Collections.Generic.IEnumerable Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IAssociativeArray.Keys { get => __additionalProperties.Keys; } + + global::System.Collections.Generic.IEnumerable Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IAssociativeArray.Values { get => __additionalProperties.Values; } + + public string this[global::System.String index] { get => __additionalProperties[index]; set => __additionalProperties[index] = value; } + + /// + /// + public void Add(global::System.String key, string value) => __additionalProperties.Add( key, value); + + public void Clear() => __additionalProperties.Clear(); + + /// + public bool ContainsKey(global::System.String key) => __additionalProperties.ContainsKey( key); + + /// + public void CopyFrom(global::System.Collections.IDictionary source) + { + if (null != source) + { + foreach( var property in Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.TypeConverterExtensions.GetFilteredProperties(source, new global::System.Collections.Generic.HashSet() { } ) ) + { + if ((null != property.Key && null != property.Value)) + { + this.__additionalProperties.Add(property.Key.ToString(), global::System.Management.Automation.LanguagePrimitives.ConvertTo( property.Value)); + } + } + } + } + + /// + public void CopyFrom(global::System.Management.Automation.PSObject source) + { + if (null != source) + { + foreach( var property in Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.TypeConverterExtensions.GetFilteredProperties(source, new global::System.Collections.Generic.HashSet() { } ) ) + { + if ((null != property.Key && null != property.Value)) + { + this.__additionalProperties.Add(property.Key.ToString(), global::System.Management.Automation.LanguagePrimitives.ConvertTo( property.Value)); + } + } + } + } + + /// + public bool Remove(global::System.String key) => __additionalProperties.Remove( key); + + /// + /// + public bool TryGetValue(global::System.String key, out string value) => __additionalProperties.TryGetValue( key, out value); + + /// + + public static implicit operator global::System.Collections.Generic.Dictionary(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.PrivateCloudUpdateTags source) => source.__additionalProperties; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/PrivateCloudUpdateTags.json.cs b/src/VMWare/generated/api/Models/Api20200320/PrivateCloudUpdateTags.json.cs new file mode 100644 index 000000000000..bf00187e5b50 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/PrivateCloudUpdateTags.json.cs @@ -0,0 +1,102 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// Resource tags. + public partial class PrivateCloudUpdateTags + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateTags. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateTags. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateTags FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json ? new PrivateCloudUpdateTags(json) : null; + } + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject instance to deserialize from. + /// + internal PrivateCloudUpdateTags(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json, global::System.Collections.Generic.HashSet exclusions = null) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.JsonSerializable.FromJson( json, ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IAssociativeArray)this).AdditionalProperties, null ,exclusions ); + AfterFromJson(json); + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.JsonSerializable.ToJson( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IAssociativeArray)this).AdditionalProperties, container); + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/Quota.PowerShell.cs b/src/VMWare/generated/api/Models/Api20200320/Quota.PowerShell.cs new file mode 100644 index 000000000000..ca7d48df202c --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/Quota.PowerShell.cs @@ -0,0 +1,133 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// Subscription quotas + [System.ComponentModel.TypeConverter(typeof(QuotaTypeConverter))] + public partial class Quota + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IQuota DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new Quota(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IQuota DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new Quota(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IQuota FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal Quota(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IQuotaInternal)this).HostsRemaining = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IQuotaHostsRemaining) content.GetValueForProperty("HostsRemaining",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IQuotaInternal)this).HostsRemaining, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.QuotaHostsRemainingTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IQuotaInternal)this).Enabled = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.QuotaEnabled?) content.GetValueForProperty("Enabled",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IQuotaInternal)this).Enabled, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.QuotaEnabled.CreateFrom); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal Quota(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IQuotaInternal)this).HostsRemaining = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IQuotaHostsRemaining) content.GetValueForProperty("HostsRemaining",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IQuotaInternal)this).HostsRemaining, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.QuotaHostsRemainingTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IQuotaInternal)this).Enabled = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.QuotaEnabled?) content.GetValueForProperty("Enabled",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IQuotaInternal)this).Enabled, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.QuotaEnabled.CreateFrom); + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// Subscription quotas + [System.ComponentModel.TypeConverter(typeof(QuotaTypeConverter))] + public partial interface IQuota + + { + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/Quota.TypeConverter.cs b/src/VMWare/generated/api/Models/Api20200320/Quota.TypeConverter.cs new file mode 100644 index 000000000000..054a7d962764 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/Quota.TypeConverter.cs @@ -0,0 +1,142 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class QuotaTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IQuota ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IQuota).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return Quota.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return Quota.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return Quota.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/Quota.cs b/src/VMWare/generated/api/Models/Api20200320/Quota.cs new file mode 100644 index 000000000000..1e8b93643d22 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/Quota.cs @@ -0,0 +1,69 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// Subscription quotas + public partial class Quota : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IQuota, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IQuotaInternal + { + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.QuotaEnabled? _enabled; + + /// Host quota is active for current subscription + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.QuotaEnabled? Enabled { get => this._enabled; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IQuotaHostsRemaining _hostsRemaining; + + /// Remaining hosts quota by sku type + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IQuotaHostsRemaining HostsRemaining { get => (this._hostsRemaining = this._hostsRemaining ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.QuotaHostsRemaining()); } + + /// Internal Acessors for Enabled + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.QuotaEnabled? Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IQuotaInternal.Enabled { get => this._enabled; set { {_enabled = value;} } } + + /// Internal Acessors for HostsRemaining + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IQuotaHostsRemaining Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IQuotaInternal.HostsRemaining { get => (this._hostsRemaining = this._hostsRemaining ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.QuotaHostsRemaining()); set { {_hostsRemaining = value;} } } + + /// Creates an new instance. + public Quota() + { + + } + } + /// Subscription quotas + public partial interface IQuota : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IJsonSerializable + { + /// Host quota is active for current subscription + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"Host quota is active for current subscription", + SerializedName = @"quotaEnabled", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.QuotaEnabled) })] + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.QuotaEnabled? Enabled { get; } + /// Remaining hosts quota by sku type + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"Remaining hosts quota by sku type", + SerializedName = @"hostsRemaining", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IQuotaHostsRemaining) })] + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IQuotaHostsRemaining HostsRemaining { get; } + + } + /// Subscription quotas + internal partial interface IQuotaInternal + + { + /// Host quota is active for current subscription + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.QuotaEnabled? Enabled { get; set; } + /// Remaining hosts quota by sku type + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IQuotaHostsRemaining HostsRemaining { get; set; } + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/Quota.json.cs b/src/VMWare/generated/api/Models/Api20200320/Quota.json.cs new file mode 100644 index 000000000000..9256e011f579 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/Quota.json.cs @@ -0,0 +1,109 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// Subscription quotas + public partial class Quota + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IQuota. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IQuota. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IQuota FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json ? new Quota(json) : null; + } + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject instance to deserialize from. + internal Quota(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_hostsRemaining = If( json?.PropertyT("hostsRemaining"), out var __jsonHostsRemaining) ? Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.QuotaHostsRemaining.FromJson(__jsonHostsRemaining) : HostsRemaining;} + {_enabled = If( json?.PropertyT("quotaEnabled"), out var __jsonQuotaEnabled) ? (string)__jsonQuotaEnabled : (string)Enabled;} + AfterFromJson(json); + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != this._hostsRemaining ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) this._hostsRemaining.ToJson(null,serializationMode) : null, "hostsRemaining" ,container.Add ); + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._enabled)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._enabled.ToString()) : null, "quotaEnabled" ,container.Add ); + } + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/QuotaHostsRemaining.PowerShell.cs b/src/VMWare/generated/api/Models/Api20200320/QuotaHostsRemaining.PowerShell.cs new file mode 100644 index 000000000000..40925f757eeb --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/QuotaHostsRemaining.PowerShell.cs @@ -0,0 +1,133 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// Remaining hosts quota by sku type + [System.ComponentModel.TypeConverter(typeof(QuotaHostsRemainingTypeConverter))] + public partial class QuotaHostsRemaining + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IQuotaHostsRemaining DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new QuotaHostsRemaining(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IQuotaHostsRemaining DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new QuotaHostsRemaining(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IQuotaHostsRemaining FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal QuotaHostsRemaining(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + // this type is a dictionary; copy elements from source to here. + CopyFrom(content); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal QuotaHostsRemaining(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + // this type is a dictionary; copy elements from source to here. + CopyFrom(content); + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// Remaining hosts quota by sku type + [System.ComponentModel.TypeConverter(typeof(QuotaHostsRemainingTypeConverter))] + public partial interface IQuotaHostsRemaining + + { + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/QuotaHostsRemaining.TypeConverter.cs b/src/VMWare/generated/api/Models/Api20200320/QuotaHostsRemaining.TypeConverter.cs new file mode 100644 index 000000000000..ef6927668ba3 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/QuotaHostsRemaining.TypeConverter.cs @@ -0,0 +1,142 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class QuotaHostsRemainingTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IQuotaHostsRemaining ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IQuotaHostsRemaining).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return QuotaHostsRemaining.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return QuotaHostsRemaining.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return QuotaHostsRemaining.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/QuotaHostsRemaining.cs b/src/VMWare/generated/api/Models/Api20200320/QuotaHostsRemaining.cs new file mode 100644 index 000000000000..b951a36e029a --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/QuotaHostsRemaining.cs @@ -0,0 +1,30 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// Remaining hosts quota by sku type + public partial class QuotaHostsRemaining : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IQuotaHostsRemaining, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IQuotaHostsRemainingInternal + { + + /// Creates an new instance. + public QuotaHostsRemaining() + { + + } + } + /// Remaining hosts quota by sku type + public partial interface IQuotaHostsRemaining : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IJsonSerializable, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IAssociativeArray + { + + } + /// Remaining hosts quota by sku type + internal partial interface IQuotaHostsRemainingInternal + + { + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/QuotaHostsRemaining.dictionary.cs b/src/VMWare/generated/api/Models/Api20200320/QuotaHostsRemaining.dictionary.cs new file mode 100644 index 000000000000..52c4a8e46522 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/QuotaHostsRemaining.dictionary.cs @@ -0,0 +1,70 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + public partial class QuotaHostsRemaining : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IAssociativeArray + { + protected global::System.Collections.Generic.Dictionary __additionalProperties = new global::System.Collections.Generic.Dictionary(); + + global::System.Collections.Generic.IDictionary Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IAssociativeArray.AdditionalProperties { get => __additionalProperties; } + + int Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IAssociativeArray.Count { get => __additionalProperties.Count; } + + global::System.Collections.Generic.IEnumerable Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IAssociativeArray.Keys { get => __additionalProperties.Keys; } + + global::System.Collections.Generic.IEnumerable Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IAssociativeArray.Values { get => __additionalProperties.Values; } + + public int this[global::System.String index] { get => __additionalProperties[index]; set => __additionalProperties[index] = value; } + + /// + /// + public void Add(global::System.String key, int value) => __additionalProperties.Add( key, value); + + public void Clear() => __additionalProperties.Clear(); + + /// + public bool ContainsKey(global::System.String key) => __additionalProperties.ContainsKey( key); + + /// + public void CopyFrom(global::System.Collections.IDictionary source) + { + if (null != source) + { + foreach( var property in Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.TypeConverterExtensions.GetFilteredProperties(source, new global::System.Collections.Generic.HashSet() { } ) ) + { + if ((null != property.Key && null != property.Value)) + { + this.__additionalProperties.Add(property.Key.ToString(), global::System.Management.Automation.LanguagePrimitives.ConvertTo( property.Value)); + } + } + } + } + + /// + public void CopyFrom(global::System.Management.Automation.PSObject source) + { + if (null != source) + { + foreach( var property in Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.TypeConverterExtensions.GetFilteredProperties(source, new global::System.Collections.Generic.HashSet() { } ) ) + { + if ((null != property.Key && null != property.Value)) + { + this.__additionalProperties.Add(property.Key.ToString(), global::System.Management.Automation.LanguagePrimitives.ConvertTo( property.Value)); + } + } + } + } + + /// + public bool Remove(global::System.String key) => __additionalProperties.Remove( key); + + /// + /// + public bool TryGetValue(global::System.String key, out int value) => __additionalProperties.TryGetValue( key, out value); + + /// + + public static implicit operator global::System.Collections.Generic.Dictionary(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.QuotaHostsRemaining source) => source.__additionalProperties; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/QuotaHostsRemaining.json.cs b/src/VMWare/generated/api/Models/Api20200320/QuotaHostsRemaining.json.cs new file mode 100644 index 000000000000..f7d6468cf5d8 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/QuotaHostsRemaining.json.cs @@ -0,0 +1,102 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// Remaining hosts quota by sku type + public partial class QuotaHostsRemaining + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IQuotaHostsRemaining. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IQuotaHostsRemaining. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IQuotaHostsRemaining FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json ? new QuotaHostsRemaining(json) : null; + } + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject instance to deserialize from. + /// + internal QuotaHostsRemaining(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json, global::System.Collections.Generic.HashSet exclusions = null) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.JsonSerializable.FromJson( json, ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IAssociativeArray)this).AdditionalProperties, null ,exclusions ); + AfterFromJson(json); + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.JsonSerializable.ToJson( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IAssociativeArray)this).AdditionalProperties, container); + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/Resource.PowerShell.cs b/src/VMWare/generated/api/Models/Api20200320/Resource.PowerShell.cs new file mode 100644 index 000000000000..75e7f8e88d2c --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/Resource.PowerShell.cs @@ -0,0 +1,135 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// The core properties of ARM resources + [System.ComponentModel.TypeConverter(typeof(ResourceTypeConverter))] + public partial class Resource + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResource DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new Resource(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResource DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new Resource(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResource FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal Resource(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Id, global::System.Convert.ToString); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal Resource(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Id, global::System.Convert.ToString); + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// The core properties of ARM resources + [System.ComponentModel.TypeConverter(typeof(ResourceTypeConverter))] + public partial interface IResource + + { + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/Resource.TypeConverter.cs b/src/VMWare/generated/api/Models/Api20200320/Resource.TypeConverter.cs new file mode 100644 index 000000000000..43e9b7b7c8fb --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/Resource.TypeConverter.cs @@ -0,0 +1,142 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class ResourceTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResource ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResource).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return Resource.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return Resource.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return Resource.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/Resource.cs b/src/VMWare/generated/api/Models/Api20200320/Resource.cs new file mode 100644 index 000000000000..0f514eb52689 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/Resource.cs @@ -0,0 +1,89 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// The core properties of ARM resources + public partial class Resource : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResource, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal + { + + /// Backing field for property. + private string _id; + + /// Resource ID. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string Id { get => this._id; } + + /// Internal Acessors for Id + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal.Id { get => this._id; set { {_id = value;} } } + + /// Internal Acessors for Name + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal.Name { get => this._name; set { {_name = value;} } } + + /// Internal Acessors for Type + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal.Type { get => this._type; set { {_type = value;} } } + + /// Backing field for property. + private string _name; + + /// Resource name. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string Name { get => this._name; } + + /// Backing field for property. + private string _type; + + /// Resource type. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string Type { get => this._type; } + + /// Creates an new instance. + public Resource() + { + + } + } + /// The core properties of ARM resources + public partial interface IResource : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IJsonSerializable + { + /// Resource ID. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"Resource ID.", + SerializedName = @"id", + PossibleTypes = new [] { typeof(string) })] + string Id { get; } + /// Resource name. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"Resource name.", + SerializedName = @"name", + PossibleTypes = new [] { typeof(string) })] + string Name { get; } + /// Resource type. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"Resource type.", + SerializedName = @"type", + PossibleTypes = new [] { typeof(string) })] + string Type { get; } + + } + /// The core properties of ARM resources + internal partial interface IResourceInternal + + { + /// Resource ID. + string Id { get; set; } + /// Resource name. + string Name { get; set; } + /// Resource type. + string Type { get; set; } + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/Resource.json.cs b/src/VMWare/generated/api/Models/Api20200320/Resource.json.cs new file mode 100644 index 000000000000..2b4520590e6b --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/Resource.json.cs @@ -0,0 +1,114 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// The core properties of ARM resources + public partial class Resource + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResource. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResource. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResource FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json ? new Resource(json) : null; + } + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject instance to deserialize from. + internal Resource(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_name = If( json?.PropertyT("name"), out var __jsonName) ? (string)__jsonName : (string)Name;} + {_type = If( json?.PropertyT("type"), out var __jsonType) ? (string)__jsonType : (string)Type;} + {_id = If( json?.PropertyT("id"), out var __jsonId) ? (string)__jsonId : (string)Id;} + AfterFromJson(json); + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._name)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._name.ToString()) : null, "name" ,container.Add ); + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._type)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._type.ToString()) : null, "type" ,container.Add ); + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._id)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._id.ToString()) : null, "id" ,container.Add ); + } + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/Sku.PowerShell.cs b/src/VMWare/generated/api/Models/Api20200320/Sku.PowerShell.cs new file mode 100644 index 000000000000..4ab33a2b7b0a --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/Sku.PowerShell.cs @@ -0,0 +1,131 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// The resource model definition representing SKU + [System.ComponentModel.TypeConverter(typeof(SkuTypeConverter))] + public partial class Sku + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ISku DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new Sku(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ISku DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new Sku(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ISku FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal Sku(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ISkuInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ISkuInternal)this).Name, global::System.Convert.ToString); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal Sku(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ISkuInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ISkuInternal)this).Name, global::System.Convert.ToString); + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// The resource model definition representing SKU + [System.ComponentModel.TypeConverter(typeof(SkuTypeConverter))] + public partial interface ISku + + { + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/Sku.TypeConverter.cs b/src/VMWare/generated/api/Models/Api20200320/Sku.TypeConverter.cs new file mode 100644 index 000000000000..9b660c460a22 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/Sku.TypeConverter.cs @@ -0,0 +1,142 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class SkuTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ISku ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ISku).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return Sku.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return Sku.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return Sku.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/Sku.cs b/src/VMWare/generated/api/Models/Api20200320/Sku.cs new file mode 100644 index 000000000000..51661272c332 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/Sku.cs @@ -0,0 +1,46 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// The resource model definition representing SKU + public partial class Sku : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ISku, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ISkuInternal + { + + /// Backing field for property. + private string _name; + + /// The name of the SKU. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string Name { get => this._name; set => this._name = value; } + + /// Creates an new instance. + public Sku() + { + + } + } + /// The resource model definition representing SKU + public partial interface ISku : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IJsonSerializable + { + /// The name of the SKU. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The name of the SKU.", + SerializedName = @"name", + PossibleTypes = new [] { typeof(string) })] + string Name { get; set; } + + } + /// The resource model definition representing SKU + internal partial interface ISkuInternal + + { + /// The name of the SKU. + string Name { get; set; } + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/Sku.json.cs b/src/VMWare/generated/api/Models/Api20200320/Sku.json.cs new file mode 100644 index 000000000000..44eba61667ff --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/Sku.json.cs @@ -0,0 +1,101 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// The resource model definition representing SKU + public partial class Sku + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ISku. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ISku. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ISku FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json ? new Sku(json) : null; + } + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject instance to deserialize from. + internal Sku(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_name = If( json?.PropertyT("name"), out var __jsonName) ? (string)__jsonName : (string)Name;} + AfterFromJson(json); + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + AddIf( null != (((object)this._name)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._name.ToString()) : null, "name" ,container.Add ); + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/TrackedResource.PowerShell.cs b/src/VMWare/generated/api/Models/Api20200320/TrackedResource.PowerShell.cs new file mode 100644 index 000000000000..d82bff313a76 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/TrackedResource.PowerShell.cs @@ -0,0 +1,139 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// The resource model definition for a ARM tracked top level resource + [System.ComponentModel.TypeConverter(typeof(TrackedResourceTypeConverter))] + public partial class TrackedResource + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResource DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new TrackedResource(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResource DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new TrackedResource(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResource FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeAll)?.ToString(); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal TrackedResource(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResourceInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResourceInternal)this).Location, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResourceInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResourceTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResourceInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.TrackedResourceTagsTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Id, global::System.Convert.ToString); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal TrackedResource(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResourceInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResourceInternal)this).Location, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResourceInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResourceTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResourceInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.TrackedResourceTagsTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)this).Id, global::System.Convert.ToString); + AfterDeserializePSObject(content); + } + } + /// The resource model definition for a ARM tracked top level resource + [System.ComponentModel.TypeConverter(typeof(TrackedResourceTypeConverter))] + public partial interface ITrackedResource + + { + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/TrackedResource.TypeConverter.cs b/src/VMWare/generated/api/Models/Api20200320/TrackedResource.TypeConverter.cs new file mode 100644 index 000000000000..5cf58a2c954d --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/TrackedResource.TypeConverter.cs @@ -0,0 +1,142 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class TrackedResourceTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResource ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResource).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return TrackedResource.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return TrackedResource.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return TrackedResource.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/TrackedResource.cs b/src/VMWare/generated/api/Models/Api20200320/TrackedResource.cs new file mode 100644 index 000000000000..87469080f93f --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/TrackedResource.cs @@ -0,0 +1,103 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// The resource model definition for a ARM tracked top level resource + public partial class TrackedResource : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResource, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResourceInternal, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IValidates + { + /// + /// Backing field for Inherited model + /// + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResource __resource = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.Resource(); + + /// Resource ID. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inherited)] + public string Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)__resource).Id; } + + /// Backing field for property. + private string _location; + + /// Resource location + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string Location { get => this._location; set => this._location = value; } + + /// Internal Acessors for Id + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)__resource).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)__resource).Id = value; } + + /// Internal Acessors for Name + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal.Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)__resource).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)__resource).Name = value; } + + /// Internal Acessors for Type + string Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)__resource).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)__resource).Type = value; } + + /// Resource name. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inherited)] + public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)__resource).Name; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResourceTags _tag; + + /// Resource tags + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResourceTags Tag { get => (this._tag = this._tag ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.TrackedResourceTags()); set => this._tag = value; } + + /// Resource type. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Inherited)] + public string Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal)__resource).Type; } + + /// Creates an new instance. + public TrackedResource() + { + + } + + /// Validates that this object meets the validation criteria. + /// an instance that will receive validation + /// events. + /// + /// A < see cref = "global::System.Threading.Tasks.Task" /> that will be complete when validation is completed. + /// + public async global::System.Threading.Tasks.Task Validate(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener) + { + await eventListener.AssertNotNull(nameof(__resource), __resource); + await eventListener.AssertObjectIsValid(nameof(__resource), __resource); + } + } + /// The resource model definition for a ARM tracked top level resource + public partial interface ITrackedResource : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IJsonSerializable, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResource + { + /// Resource location + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Resource location", + SerializedName = @"location", + PossibleTypes = new [] { typeof(string) })] + string Location { get; set; } + /// Resource tags + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Resource tags", + SerializedName = @"tags", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResourceTags) })] + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResourceTags Tag { get; set; } + + } + /// The resource model definition for a ARM tracked top level resource + internal partial interface ITrackedResourceInternal : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IResourceInternal + { + /// Resource location + string Location { get; set; } + /// Resource tags + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResourceTags Tag { get; set; } + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/TrackedResource.json.cs b/src/VMWare/generated/api/Models/Api20200320/TrackedResource.json.cs new file mode 100644 index 000000000000..06a3b102b6e8 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/TrackedResource.json.cs @@ -0,0 +1,105 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// The resource model definition for a ARM tracked top level resource + public partial class TrackedResource + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResource. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResource. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResource FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json ? new TrackedResource(json) : null; + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + __resource?.ToJson(container, serializationMode); + AddIf( null != (((object)this._location)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._location.ToString()) : null, "location" ,container.Add ); + AddIf( null != this._tag ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) this._tag.ToJson(null,serializationMode) : null, "tags" ,container.Add ); + AfterToJson(ref container); + return container; + } + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject instance to deserialize from. + internal TrackedResource(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + __resource = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.Resource(json); + {_location = If( json?.PropertyT("location"), out var __jsonLocation) ? (string)__jsonLocation : (string)Location;} + {_tag = If( json?.PropertyT("tags"), out var __jsonTags) ? Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.TrackedResourceTags.FromJson(__jsonTags) : Tag;} + AfterFromJson(json); + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/TrackedResourceTags.PowerShell.cs b/src/VMWare/generated/api/Models/Api20200320/TrackedResourceTags.PowerShell.cs new file mode 100644 index 000000000000..c3298af7888d --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/TrackedResourceTags.PowerShell.cs @@ -0,0 +1,133 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// Resource tags + [System.ComponentModel.TypeConverter(typeof(TrackedResourceTagsTypeConverter))] + public partial class TrackedResourceTags + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResourceTags DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new TrackedResourceTags(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResourceTags DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new TrackedResourceTags(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResourceTags FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeAll)?.ToString(); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal TrackedResourceTags(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + // this type is a dictionary; copy elements from source to here. + CopyFrom(content); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal TrackedResourceTags(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + // this type is a dictionary; copy elements from source to here. + CopyFrom(content); + AfterDeserializePSObject(content); + } + } + /// Resource tags + [System.ComponentModel.TypeConverter(typeof(TrackedResourceTagsTypeConverter))] + public partial interface ITrackedResourceTags + + { + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/TrackedResourceTags.TypeConverter.cs b/src/VMWare/generated/api/Models/Api20200320/TrackedResourceTags.TypeConverter.cs new file mode 100644 index 000000000000..143709738565 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/TrackedResourceTags.TypeConverter.cs @@ -0,0 +1,142 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class TrackedResourceTagsTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResourceTags ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResourceTags).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return TrackedResourceTags.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return TrackedResourceTags.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return TrackedResourceTags.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/TrackedResourceTags.cs b/src/VMWare/generated/api/Models/Api20200320/TrackedResourceTags.cs new file mode 100644 index 000000000000..e375e17715a4 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/TrackedResourceTags.cs @@ -0,0 +1,30 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// Resource tags + public partial class TrackedResourceTags : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResourceTags, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResourceTagsInternal + { + + /// Creates an new instance. + public TrackedResourceTags() + { + + } + } + /// Resource tags + public partial interface ITrackedResourceTags : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IJsonSerializable, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IAssociativeArray + { + + } + /// Resource tags + internal partial interface ITrackedResourceTagsInternal + + { + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/TrackedResourceTags.dictionary.cs b/src/VMWare/generated/api/Models/Api20200320/TrackedResourceTags.dictionary.cs new file mode 100644 index 000000000000..f3f240ccf7c5 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/TrackedResourceTags.dictionary.cs @@ -0,0 +1,70 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + public partial class TrackedResourceTags : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IAssociativeArray + { + protected global::System.Collections.Generic.Dictionary __additionalProperties = new global::System.Collections.Generic.Dictionary(); + + global::System.Collections.Generic.IDictionary Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IAssociativeArray.AdditionalProperties { get => __additionalProperties; } + + int Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IAssociativeArray.Count { get => __additionalProperties.Count; } + + global::System.Collections.Generic.IEnumerable Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IAssociativeArray.Keys { get => __additionalProperties.Keys; } + + global::System.Collections.Generic.IEnumerable Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IAssociativeArray.Values { get => __additionalProperties.Values; } + + public string this[global::System.String index] { get => __additionalProperties[index]; set => __additionalProperties[index] = value; } + + /// + /// + public void Add(global::System.String key, string value) => __additionalProperties.Add( key, value); + + public void Clear() => __additionalProperties.Clear(); + + /// + public bool ContainsKey(global::System.String key) => __additionalProperties.ContainsKey( key); + + /// + public void CopyFrom(global::System.Collections.IDictionary source) + { + if (null != source) + { + foreach( var property in Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.TypeConverterExtensions.GetFilteredProperties(source, new global::System.Collections.Generic.HashSet() { } ) ) + { + if ((null != property.Key && null != property.Value)) + { + this.__additionalProperties.Add(property.Key.ToString(), global::System.Management.Automation.LanguagePrimitives.ConvertTo( property.Value)); + } + } + } + } + + /// + public void CopyFrom(global::System.Management.Automation.PSObject source) + { + if (null != source) + { + foreach( var property in Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.TypeConverterExtensions.GetFilteredProperties(source, new global::System.Collections.Generic.HashSet() { } ) ) + { + if ((null != property.Key && null != property.Value)) + { + this.__additionalProperties.Add(property.Key.ToString(), global::System.Management.Automation.LanguagePrimitives.ConvertTo( property.Value)); + } + } + } + } + + /// + public bool Remove(global::System.String key) => __additionalProperties.Remove( key); + + /// + /// + public bool TryGetValue(global::System.String key, out string value) => __additionalProperties.TryGetValue( key, out value); + + /// + + public static implicit operator global::System.Collections.Generic.Dictionary(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.TrackedResourceTags source) => source.__additionalProperties; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/TrackedResourceTags.json.cs b/src/VMWare/generated/api/Models/Api20200320/TrackedResourceTags.json.cs new file mode 100644 index 000000000000..8ad0a13092d0 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/TrackedResourceTags.json.cs @@ -0,0 +1,102 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// Resource tags + public partial class TrackedResourceTags + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResourceTags. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResourceTags. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResourceTags FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json ? new TrackedResourceTags(json) : null; + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.JsonSerializable.ToJson( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IAssociativeArray)this).AdditionalProperties, container); + AfterToJson(ref container); + return container; + } + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject instance to deserialize from. + /// + internal TrackedResourceTags(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json, global::System.Collections.Generic.HashSet exclusions = null) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.JsonSerializable.FromJson( json, ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IAssociativeArray)this).AdditionalProperties, null ,exclusions ); + AfterFromJson(json); + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/Trial.PowerShell.cs b/src/VMWare/generated/api/Models/Api20200320/Trial.PowerShell.cs new file mode 100644 index 000000000000..83f5cfafaea0 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/Trial.PowerShell.cs @@ -0,0 +1,133 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// Subscription trial availability + [System.ComponentModel.TypeConverter(typeof(TrialTypeConverter))] + public partial class Trial + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrial DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new Trial(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrial DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new Trial(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrial FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeAll)?.ToString(); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal Trial(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrialInternal)this).AvailableHost = (int?) content.GetValueForProperty("AvailableHost",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrialInternal)this).AvailableHost, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrialInternal)this).Status = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.TrialStatus?) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrialInternal)this).Status, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.TrialStatus.CreateFrom); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal Trial(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrialInternal)this).AvailableHost = (int?) content.GetValueForProperty("AvailableHost",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrialInternal)this).AvailableHost, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrialInternal)this).Status = (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.TrialStatus?) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrialInternal)this).Status, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.TrialStatus.CreateFrom); + AfterDeserializePSObject(content); + } + } + /// Subscription trial availability + [System.ComponentModel.TypeConverter(typeof(TrialTypeConverter))] + public partial interface ITrial + + { + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/Trial.TypeConverter.cs b/src/VMWare/generated/api/Models/Api20200320/Trial.TypeConverter.cs new file mode 100644 index 000000000000..688c3fdd6394 --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/Trial.TypeConverter.cs @@ -0,0 +1,142 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class TrialTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrial ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrial).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return Trial.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return Trial.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return Trial.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/Trial.cs b/src/VMWare/generated/api/Models/Api20200320/Trial.cs new file mode 100644 index 000000000000..69be5bf9b24a --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/Trial.cs @@ -0,0 +1,69 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// Subscription trial availability + public partial class Trial : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrial, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrialInternal + { + + /// Backing field for property. + private int? _availableHost; + + /// Number of trial hosts available + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public int? AvailableHost { get => this._availableHost; } + + /// Internal Acessors for AvailableHost + int? Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrialInternal.AvailableHost { get => this._availableHost; set { {_availableHost = value;} } } + + /// Internal Acessors for Status + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.TrialStatus? Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrialInternal.Status { get => this._status; set { {_status = value;} } } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.TrialStatus? _status; + + /// Trial status + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.TrialStatus? Status { get => this._status; } + + /// Creates an new instance. + public Trial() + { + + } + } + /// Subscription trial availability + public partial interface ITrial : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IJsonSerializable + { + /// Number of trial hosts available + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"Number of trial hosts available", + SerializedName = @"availableHosts", + PossibleTypes = new [] { typeof(int) })] + int? AvailableHost { get; } + /// Trial status + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"Trial status", + SerializedName = @"status", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.TrialStatus) })] + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.TrialStatus? Status { get; } + + } + /// Subscription trial availability + internal partial interface ITrialInternal + + { + /// Number of trial hosts available + int? AvailableHost { get; set; } + /// Trial status + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.TrialStatus? Status { get; set; } + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/Api20200320/Trial.json.cs b/src/VMWare/generated/api/Models/Api20200320/Trial.json.cs new file mode 100644 index 000000000000..8f5c2c75b05e --- /dev/null +++ b/src/VMWare/generated/api/Models/Api20200320/Trial.json.cs @@ -0,0 +1,109 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// Subscription trial availability + public partial class Trial + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrial. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrial. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrial FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json ? new Trial(json) : null; + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != this._availableHost ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode)new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNumber((int)this._availableHost) : null, "availableHosts" ,container.Add ); + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._status)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._status.ToString()) : null, "status" ,container.Add ); + } + AfterToJson(ref container); + return container; + } + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject instance to deserialize from. + internal Trial(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_availableHost = If( json?.PropertyT("availableHosts"), out var __jsonAvailableHosts) ? (int?)__jsonAvailableHosts : AvailableHost;} + {_status = If( json?.PropertyT("status"), out var __jsonStatus) ? (string)__jsonStatus : (string)Status;} + AfterFromJson(json); + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/VMWareIdentity.PowerShell.cs b/src/VMWare/generated/api/Models/VMWareIdentity.PowerShell.cs new file mode 100644 index 000000000000..47038e48c95d --- /dev/null +++ b/src/VMWare/generated/api/Models/VMWareIdentity.PowerShell.cs @@ -0,0 +1,148 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + [System.ComponentModel.TypeConverter(typeof(VMWareIdentityTypeConverter))] + public partial class VMWareIdentity + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new VMWareIdentity(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new VMWareIdentity(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode.IncludeAll)?.ToString(); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal VMWareIdentity(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentityInternal)this).AuthorizationName = (string) content.GetValueForProperty("AuthorizationName",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentityInternal)this).AuthorizationName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentityInternal)this).ClusterName = (string) content.GetValueForProperty("ClusterName",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentityInternal)this).ClusterName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentityInternal)this).HcxEnterpriseSiteName = (string) content.GetValueForProperty("HcxEnterpriseSiteName",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentityInternal)this).HcxEnterpriseSiteName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentityInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentityInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentityInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentityInternal)this).Location, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentityInternal)this).PrivateCloudName = (string) content.GetValueForProperty("PrivateCloudName",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentityInternal)this).PrivateCloudName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentityInternal)this).ResourceGroupName = (string) content.GetValueForProperty("ResourceGroupName",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentityInternal)this).ResourceGroupName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentityInternal)this).SubscriptionId = (string) content.GetValueForProperty("SubscriptionId",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentityInternal)this).SubscriptionId, global::System.Convert.ToString); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal VMWareIdentity(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentityInternal)this).AuthorizationName = (string) content.GetValueForProperty("AuthorizationName",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentityInternal)this).AuthorizationName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentityInternal)this).ClusterName = (string) content.GetValueForProperty("ClusterName",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentityInternal)this).ClusterName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentityInternal)this).HcxEnterpriseSiteName = (string) content.GetValueForProperty("HcxEnterpriseSiteName",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentityInternal)this).HcxEnterpriseSiteName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentityInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentityInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentityInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentityInternal)this).Location, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentityInternal)this).PrivateCloudName = (string) content.GetValueForProperty("PrivateCloudName",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentityInternal)this).PrivateCloudName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentityInternal)this).ResourceGroupName = (string) content.GetValueForProperty("ResourceGroupName",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentityInternal)this).ResourceGroupName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentityInternal)this).SubscriptionId = (string) content.GetValueForProperty("SubscriptionId",((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentityInternal)this).SubscriptionId, global::System.Convert.ToString); + AfterDeserializePSObject(content); + } + } + [System.ComponentModel.TypeConverter(typeof(VMWareIdentityTypeConverter))] + public partial interface IVMWareIdentity + + { + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/VMWareIdentity.TypeConverter.cs b/src/VMWare/generated/api/Models/VMWareIdentity.TypeConverter.cs new file mode 100644 index 000000000000..5eda92599a53 --- /dev/null +++ b/src/VMWare/generated/api/Models/VMWareIdentity.TypeConverter.cs @@ -0,0 +1,157 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models +{ + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class VMWareIdentityTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + // we allow string conversion too. + if (type == typeof(global::System.String)) + { + return true; + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + // support direct string to id type conversion. + if (type == typeof(global::System.String)) + { + return new VMWareIdentity { Id = sourceValue }; + } + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return VMWareIdentity.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return VMWareIdentity.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return VMWareIdentity.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/VMWareIdentity.cs b/src/VMWare/generated/api/Models/VMWareIdentity.cs new file mode 100644 index 000000000000..698804ccd2e5 --- /dev/null +++ b/src/VMWare/generated/api/Models/VMWareIdentity.cs @@ -0,0 +1,167 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + public partial class VMWareIdentity : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentityInternal + { + + /// Backing field for property. + private string _authorizationName; + + /// Name of the ExpressRoute Circuit Authorization in the private cloud + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string AuthorizationName { get => this._authorizationName; set => this._authorizationName = value; } + + /// Backing field for property. + private string _clusterName; + + /// Name of the cluster in the private cloud + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string ClusterName { get => this._clusterName; set => this._clusterName = value; } + + /// Backing field for property. + private string _hcxEnterpriseSiteName; + + /// Name of the HCX Enterprise Site in the private cloud + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string HcxEnterpriseSiteName { get => this._hcxEnterpriseSiteName; set => this._hcxEnterpriseSiteName = value; } + + /// Backing field for property. + private string _id; + + /// Resource identity path + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string Id { get => this._id; set => this._id = value; } + + /// Backing field for property. + private string _location; + + /// Azure region + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string Location { get => this._location; set => this._location = value; } + + /// Backing field for property. + private string _privateCloudName; + + /// Name of the private cloud + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string PrivateCloudName { get => this._privateCloudName; set => this._privateCloudName = value; } + + /// Backing field for property. + private string _resourceGroupName; + + /// The name of the resource group. The name is case insensitive. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string ResourceGroupName { get => this._resourceGroupName; set => this._resourceGroupName = value; } + + /// Backing field for property. + private string _subscriptionId; + + /// The ID of the target subscription. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Origin(Microsoft.Azure.PowerShell.Cmdlets.VMWare.PropertyOrigin.Owned)] + public string SubscriptionId { get => this._subscriptionId; set => this._subscriptionId = value; } + + /// Creates an new instance. + public VMWareIdentity() + { + + } + } + public partial interface IVMWareIdentity : + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IJsonSerializable + { + /// Name of the ExpressRoute Circuit Authorization in the private cloud + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Name of the ExpressRoute Circuit Authorization in the private cloud", + SerializedName = @"authorizationName", + PossibleTypes = new [] { typeof(string) })] + string AuthorizationName { get; set; } + /// Name of the cluster in the private cloud + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Name of the cluster in the private cloud", + SerializedName = @"clusterName", + PossibleTypes = new [] { typeof(string) })] + string ClusterName { get; set; } + /// Name of the HCX Enterprise Site in the private cloud + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Name of the HCX Enterprise Site in the private cloud", + SerializedName = @"hcxEnterpriseSiteName", + PossibleTypes = new [] { typeof(string) })] + string HcxEnterpriseSiteName { get; set; } + /// Resource identity path + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Resource identity path", + SerializedName = @"id", + PossibleTypes = new [] { typeof(string) })] + string Id { get; set; } + /// Azure region + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Azure region", + SerializedName = @"location", + PossibleTypes = new [] { typeof(string) })] + string Location { get; set; } + /// Name of the private cloud + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Name of the private cloud", + SerializedName = @"privateCloudName", + PossibleTypes = new [] { typeof(string) })] + string PrivateCloudName { get; set; } + /// The name of the resource group. The name is case insensitive. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The name of the resource group. The name is case insensitive.", + SerializedName = @"resourceGroupName", + PossibleTypes = new [] { typeof(string) })] + string ResourceGroupName { get; set; } + /// The ID of the target subscription. + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The ID of the target subscription.", + SerializedName = @"subscriptionId", + PossibleTypes = new [] { typeof(string) })] + string SubscriptionId { get; set; } + + } + internal partial interface IVMWareIdentityInternal + + { + /// Name of the ExpressRoute Circuit Authorization in the private cloud + string AuthorizationName { get; set; } + /// Name of the cluster in the private cloud + string ClusterName { get; set; } + /// Name of the HCX Enterprise Site in the private cloud + string HcxEnterpriseSiteName { get; set; } + /// Resource identity path + string Id { get; set; } + /// Azure region + string Location { get; set; } + /// Name of the private cloud + string PrivateCloudName { get; set; } + /// The name of the resource group. The name is case insensitive. + string ResourceGroupName { get; set; } + /// The ID of the target subscription. + string SubscriptionId { get; set; } + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Models/VMWareIdentity.json.cs b/src/VMWare/generated/api/Models/VMWareIdentity.json.cs new file mode 100644 index 000000000000..69b18912b2fa --- /dev/null +++ b/src/VMWare/generated/api/Models/VMWareIdentity.json.cs @@ -0,0 +1,119 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + public partial class VMWareIdentity + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json erialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json ? new VMWareIdentity(json) : null; + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + AddIf( null != (((object)this._authorizationName)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._authorizationName.ToString()) : null, "authorizationName" ,container.Add ); + AddIf( null != (((object)this._clusterName)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._clusterName.ToString()) : null, "clusterName" ,container.Add ); + AddIf( null != (((object)this._hcxEnterpriseSiteName)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._hcxEnterpriseSiteName.ToString()) : null, "hcxEnterpriseSiteName" ,container.Add ); + AddIf( null != (((object)this._id)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._id.ToString()) : null, "id" ,container.Add ); + AddIf( null != (((object)this._location)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._location.ToString()) : null, "location" ,container.Add ); + AddIf( null != (((object)this._privateCloudName)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._privateCloudName.ToString()) : null, "privateCloudName" ,container.Add ); + AddIf( null != (((object)this._resourceGroupName)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._resourceGroupName.ToString()) : null, "resourceGroupName" ,container.Add ); + AddIf( null != (((object)this._subscriptionId)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonString(this._subscriptionId.ToString()) : null, "subscriptionId" ,container.Add ); + AfterToJson(ref container); + return container; + } + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject instance to deserialize from. + internal VMWareIdentity(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_authorizationName = If( json?.PropertyT("authorizationName"), out var __jsonAuthorizationName) ? (string)__jsonAuthorizationName : (string)AuthorizationName;} + {_clusterName = If( json?.PropertyT("clusterName"), out var __jsonClusterName) ? (string)__jsonClusterName : (string)ClusterName;} + {_hcxEnterpriseSiteName = If( json?.PropertyT("hcxEnterpriseSiteName"), out var __jsonHcxEnterpriseSiteName) ? (string)__jsonHcxEnterpriseSiteName : (string)HcxEnterpriseSiteName;} + {_id = If( json?.PropertyT("id"), out var __jsonId) ? (string)__jsonId : (string)Id;} + {_location = If( json?.PropertyT("location"), out var __jsonLocation) ? (string)__jsonLocation : (string)Location;} + {_privateCloudName = If( json?.PropertyT("privateCloudName"), out var __jsonPrivateCloudName) ? (string)__jsonPrivateCloudName : (string)PrivateCloudName;} + {_resourceGroupName = If( json?.PropertyT("resourceGroupName"), out var __jsonResourceGroupName) ? (string)__jsonResourceGroupName : (string)ResourceGroupName;} + {_subscriptionId = If( json?.PropertyT("subscriptionId"), out var __jsonSubscriptionId) ? (string)__jsonSubscriptionId : (string)SubscriptionId;} + AfterFromJson(json); + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Support/ClusterProvisioningState.Completer.cs b/src/VMWare/generated/api/Support/ClusterProvisioningState.Completer.cs new file mode 100644 index 000000000000..80fd7b70e4c9 --- /dev/null +++ b/src/VMWare/generated/api/Support/ClusterProvisioningState.Completer.cs @@ -0,0 +1,51 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support +{ + + /// Argument completer implementation for ClusterProvisioningState. + [System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ClusterProvisioningStateTypeConverter))] + public partial struct ClusterProvisioningState : + System.Management.Automation.IArgumentCompleter + { + + /// + /// Implementations of this function are called by PowerShell to complete arguments. + /// + /// The name of the command that needs argument completion. + /// The name of the parameter that needs argument completion. + /// The (possibly empty) word being completed. + /// The command ast in case it is needed for completion. + /// This parameter is similar to $PSBoundParameters, except that sometimes PowerShell cannot + /// or will not attempt to evaluate an argument, in which case you may need to use commandAst. + /// + /// A collection of completion results, most like with ResultType set to ParameterValue. + /// + public global::System.Collections.Generic.IEnumerable CompleteArgument(global::System.String commandName, global::System.String parameterName, global::System.String wordToComplete, global::System.Management.Automation.Language.CommandAst commandAst, global::System.Collections.IDictionary fakeBoundParameters) + { + if (global::System.String.IsNullOrEmpty(wordToComplete) || "Succeeded".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("Succeeded", "Succeeded", global::System.Management.Automation.CompletionResultType.ParameterValue, "Succeeded"); + } + if (global::System.String.IsNullOrEmpty(wordToComplete) || "Failed".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("Failed", "Failed", global::System.Management.Automation.CompletionResultType.ParameterValue, "Failed"); + } + if (global::System.String.IsNullOrEmpty(wordToComplete) || "Cancelled".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("Cancelled", "Cancelled", global::System.Management.Automation.CompletionResultType.ParameterValue, "Cancelled"); + } + if (global::System.String.IsNullOrEmpty(wordToComplete) || "Deleting".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("Deleting", "Deleting", global::System.Management.Automation.CompletionResultType.ParameterValue, "Deleting"); + } + if (global::System.String.IsNullOrEmpty(wordToComplete) || "Updating".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("Updating", "Updating", global::System.Management.Automation.CompletionResultType.ParameterValue, "Updating"); + } + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Support/ClusterProvisioningState.TypeConverter.cs b/src/VMWare/generated/api/Support/ClusterProvisioningState.TypeConverter.cs new file mode 100644 index 000000000000..6cd1c0be63c4 --- /dev/null +++ b/src/VMWare/generated/api/Support/ClusterProvisioningState.TypeConverter.cs @@ -0,0 +1,59 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support +{ + + /// TypeConverter implementation for ClusterProvisioningState. + public partial class ClusterProvisioningStateTypeConverter : + global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => true; + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ClusterProvisioningState.CreateFrom(sourceValue); + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Support/ClusterProvisioningState.cs b/src/VMWare/generated/api/Support/ClusterProvisioningState.cs new file mode 100644 index 000000000000..ea4cfa6392b5 --- /dev/null +++ b/src/VMWare/generated/api/Support/ClusterProvisioningState.cs @@ -0,0 +1,103 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support +{ + + public partial struct ClusterProvisioningState : + System.IEquatable + { + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ClusterProvisioningState Cancelled = @"Cancelled"; + + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ClusterProvisioningState Deleting = @"Deleting"; + + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ClusterProvisioningState Failed = @"Failed"; + + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ClusterProvisioningState Succeeded = @"Succeeded"; + + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ClusterProvisioningState Updating = @"Updating"; + + /// the value for an instance of the Enum. + private string _value { get; set; } + + /// Creates an instance of the + /// the value to create an instance for. + private ClusterProvisioningState(string underlyingValue) + { + this._value = underlyingValue; + } + + /// Conversion from arbitrary object to ClusterProvisioningState + /// the value to convert to an instance of . + internal static object CreateFrom(object value) + { + return new ClusterProvisioningState(System.Convert.ToString(value)); + } + + /// Compares values of enum type ClusterProvisioningState + /// the value to compare against this instance. + /// true if the two instances are equal to the same value + public bool Equals(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ClusterProvisioningState e) + { + return _value.Equals(e._value); + } + + /// Compares values of enum type ClusterProvisioningState (override for Object) + /// the value to compare against this instance. + /// true if the two instances are equal to the same value + public override bool Equals(object obj) + { + return obj is ClusterProvisioningState && Equals((ClusterProvisioningState)obj); + } + + /// Returns hashCode for enum ClusterProvisioningState + /// The hashCode of the value + public override int GetHashCode() + { + return this._value.GetHashCode(); + } + + /// Returns string representation for ClusterProvisioningState + /// A string for this value. + public override string ToString() + { + return this._value; + } + + /// Implicit operator to convert string to ClusterProvisioningState + /// the value to convert to an instance of . + + public static implicit operator ClusterProvisioningState(string value) + { + return new ClusterProvisioningState(value); + } + + /// Implicit operator to convert ClusterProvisioningState to string + /// the value to convert to an instance of . + + public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ClusterProvisioningState e) + { + return e._value; + } + + /// Overriding != operator for enum ClusterProvisioningState + /// the value to compare against + /// the value to compare against + /// true if the two instances are not equal to the same value + public static bool operator !=(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ClusterProvisioningState e1, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ClusterProvisioningState e2) + { + return !e2.Equals(e1); + } + + /// Overriding == operator for enum ClusterProvisioningState + /// the value to compare against + /// the value to compare against + /// true if the two instances are equal to the same value + public static bool operator ==(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ClusterProvisioningState e1, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ClusterProvisioningState e2) + { + return e2.Equals(e1); + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Support/ExpressRouteAuthorizationProvisioningState.Completer.cs b/src/VMWare/generated/api/Support/ExpressRouteAuthorizationProvisioningState.Completer.cs new file mode 100644 index 000000000000..164cb8091e99 --- /dev/null +++ b/src/VMWare/generated/api/Support/ExpressRouteAuthorizationProvisioningState.Completer.cs @@ -0,0 +1,45 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support +{ + + /// + /// Argument completer implementation for ExpressRouteAuthorizationProvisioningState. + /// + [System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ExpressRouteAuthorizationProvisioningStateTypeConverter))] + public partial struct ExpressRouteAuthorizationProvisioningState : + System.Management.Automation.IArgumentCompleter + { + + /// + /// Implementations of this function are called by PowerShell to complete arguments. + /// + /// The name of the command that needs argument completion. + /// The name of the parameter that needs argument completion. + /// The (possibly empty) word being completed. + /// The command ast in case it is needed for completion. + /// This parameter is similar to $PSBoundParameters, except that sometimes PowerShell cannot + /// or will not attempt to evaluate an argument, in which case you may need to use commandAst. + /// + /// A collection of completion results, most like with ResultType set to ParameterValue. + /// + public global::System.Collections.Generic.IEnumerable CompleteArgument(global::System.String commandName, global::System.String parameterName, global::System.String wordToComplete, global::System.Management.Automation.Language.CommandAst commandAst, global::System.Collections.IDictionary fakeBoundParameters) + { + if (global::System.String.IsNullOrEmpty(wordToComplete) || "Succeeded".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("Succeeded", "Succeeded", global::System.Management.Automation.CompletionResultType.ParameterValue, "Succeeded"); + } + if (global::System.String.IsNullOrEmpty(wordToComplete) || "Failed".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("Failed", "Failed", global::System.Management.Automation.CompletionResultType.ParameterValue, "Failed"); + } + if (global::System.String.IsNullOrEmpty(wordToComplete) || "Updating".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("Updating", "Updating", global::System.Management.Automation.CompletionResultType.ParameterValue, "Updating"); + } + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Support/ExpressRouteAuthorizationProvisioningState.TypeConverter.cs b/src/VMWare/generated/api/Support/ExpressRouteAuthorizationProvisioningState.TypeConverter.cs new file mode 100644 index 000000000000..0d2c11c585db --- /dev/null +++ b/src/VMWare/generated/api/Support/ExpressRouteAuthorizationProvisioningState.TypeConverter.cs @@ -0,0 +1,59 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support +{ + + /// TypeConverter implementation for ExpressRouteAuthorizationProvisioningState. + public partial class ExpressRouteAuthorizationProvisioningStateTypeConverter : + global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => true; + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ExpressRouteAuthorizationProvisioningState.CreateFrom(sourceValue); + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Support/ExpressRouteAuthorizationProvisioningState.cs b/src/VMWare/generated/api/Support/ExpressRouteAuthorizationProvisioningState.cs new file mode 100644 index 000000000000..f14e4fc659c2 --- /dev/null +++ b/src/VMWare/generated/api/Support/ExpressRouteAuthorizationProvisioningState.cs @@ -0,0 +1,109 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support +{ + + public partial struct ExpressRouteAuthorizationProvisioningState : + System.IEquatable + { + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ExpressRouteAuthorizationProvisioningState Failed = @"Failed"; + + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ExpressRouteAuthorizationProvisioningState Succeeded = @"Succeeded"; + + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ExpressRouteAuthorizationProvisioningState Updating = @"Updating"; + + /// + /// the value for an instance of the Enum. + /// + private string _value { get; set; } + + /// Conversion from arbitrary object to ExpressRouteAuthorizationProvisioningState + /// the value to convert to an instance of . + internal static object CreateFrom(object value) + { + return new ExpressRouteAuthorizationProvisioningState(System.Convert.ToString(value)); + } + + /// Compares values of enum type ExpressRouteAuthorizationProvisioningState + /// the value to compare against this instance. + /// true if the two instances are equal to the same value + public bool Equals(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ExpressRouteAuthorizationProvisioningState e) + { + return _value.Equals(e._value); + } + + /// + /// Compares values of enum type ExpressRouteAuthorizationProvisioningState (override for Object) + /// + /// the value to compare against this instance. + /// true if the two instances are equal to the same value + public override bool Equals(object obj) + { + return obj is ExpressRouteAuthorizationProvisioningState && Equals((ExpressRouteAuthorizationProvisioningState)obj); + } + + /// + /// Creates an instance of the + /// + /// the value to create an instance for. + private ExpressRouteAuthorizationProvisioningState(string underlyingValue) + { + this._value = underlyingValue; + } + + /// Returns hashCode for enum ExpressRouteAuthorizationProvisioningState + /// The hashCode of the value + public override int GetHashCode() + { + return this._value.GetHashCode(); + } + + /// Returns string representation for ExpressRouteAuthorizationProvisioningState + /// A string for this value. + public override string ToString() + { + return this._value; + } + + /// + /// Implicit operator to convert string to ExpressRouteAuthorizationProvisioningState + /// + /// the value to convert to an instance of . + + public static implicit operator ExpressRouteAuthorizationProvisioningState(string value) + { + return new ExpressRouteAuthorizationProvisioningState(value); + } + + /// + /// Implicit operator to convert ExpressRouteAuthorizationProvisioningState to string + /// + /// the value to convert to an instance of . + + public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ExpressRouteAuthorizationProvisioningState e) + { + return e._value; + } + + /// Overriding != operator for enum ExpressRouteAuthorizationProvisioningState + /// the value to compare against + /// the value to compare against + /// true if the two instances are not equal to the same value + public static bool operator !=(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ExpressRouteAuthorizationProvisioningState e1, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ExpressRouteAuthorizationProvisioningState e2) + { + return !e2.Equals(e1); + } + + /// Overriding == operator for enum ExpressRouteAuthorizationProvisioningState + /// the value to compare against + /// the value to compare against + /// true if the two instances are equal to the same value + public static bool operator ==(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ExpressRouteAuthorizationProvisioningState e1, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.ExpressRouteAuthorizationProvisioningState e2) + { + return e2.Equals(e1); + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Support/HcxEnterpriseSiteStatus.Completer.cs b/src/VMWare/generated/api/Support/HcxEnterpriseSiteStatus.Completer.cs new file mode 100644 index 000000000000..cf594f116088 --- /dev/null +++ b/src/VMWare/generated/api/Support/HcxEnterpriseSiteStatus.Completer.cs @@ -0,0 +1,47 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support +{ + + /// Argument completer implementation for HcxEnterpriseSiteStatus. + [System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.HcxEnterpriseSiteStatusTypeConverter))] + public partial struct HcxEnterpriseSiteStatus : + System.Management.Automation.IArgumentCompleter + { + + /// + /// Implementations of this function are called by PowerShell to complete arguments. + /// + /// The name of the command that needs argument completion. + /// The name of the parameter that needs argument completion. + /// The (possibly empty) word being completed. + /// The command ast in case it is needed for completion. + /// This parameter is similar to $PSBoundParameters, except that sometimes PowerShell cannot + /// or will not attempt to evaluate an argument, in which case you may need to use commandAst. + /// + /// A collection of completion results, most like with ResultType set to ParameterValue. + /// + public global::System.Collections.Generic.IEnumerable CompleteArgument(global::System.String commandName, global::System.String parameterName, global::System.String wordToComplete, global::System.Management.Automation.Language.CommandAst commandAst, global::System.Collections.IDictionary fakeBoundParameters) + { + if (global::System.String.IsNullOrEmpty(wordToComplete) || "Available".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("Available", "Available", global::System.Management.Automation.CompletionResultType.ParameterValue, "Available"); + } + if (global::System.String.IsNullOrEmpty(wordToComplete) || "Consumed".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("Consumed", "Consumed", global::System.Management.Automation.CompletionResultType.ParameterValue, "Consumed"); + } + if (global::System.String.IsNullOrEmpty(wordToComplete) || "Deactivated".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("Deactivated", "Deactivated", global::System.Management.Automation.CompletionResultType.ParameterValue, "Deactivated"); + } + if (global::System.String.IsNullOrEmpty(wordToComplete) || "Deleted".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("Deleted", "Deleted", global::System.Management.Automation.CompletionResultType.ParameterValue, "Deleted"); + } + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Support/HcxEnterpriseSiteStatus.TypeConverter.cs b/src/VMWare/generated/api/Support/HcxEnterpriseSiteStatus.TypeConverter.cs new file mode 100644 index 000000000000..93d550b6c298 --- /dev/null +++ b/src/VMWare/generated/api/Support/HcxEnterpriseSiteStatus.TypeConverter.cs @@ -0,0 +1,59 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support +{ + + /// TypeConverter implementation for HcxEnterpriseSiteStatus. + public partial class HcxEnterpriseSiteStatusTypeConverter : + global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => true; + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => HcxEnterpriseSiteStatus.CreateFrom(sourceValue); + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Support/HcxEnterpriseSiteStatus.cs b/src/VMWare/generated/api/Support/HcxEnterpriseSiteStatus.cs new file mode 100644 index 000000000000..6dcc30ef9b8a --- /dev/null +++ b/src/VMWare/generated/api/Support/HcxEnterpriseSiteStatus.cs @@ -0,0 +1,101 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support +{ + + public partial struct HcxEnterpriseSiteStatus : + System.IEquatable + { + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.HcxEnterpriseSiteStatus Available = @"Available"; + + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.HcxEnterpriseSiteStatus Consumed = @"Consumed"; + + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.HcxEnterpriseSiteStatus Deactivated = @"Deactivated"; + + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.HcxEnterpriseSiteStatus Deleted = @"Deleted"; + + /// the value for an instance of the Enum. + private string _value { get; set; } + + /// Conversion from arbitrary object to HcxEnterpriseSiteStatus + /// the value to convert to an instance of . + internal static object CreateFrom(object value) + { + return new HcxEnterpriseSiteStatus(System.Convert.ToString(value)); + } + + /// Compares values of enum type HcxEnterpriseSiteStatus + /// the value to compare against this instance. + /// true if the two instances are equal to the same value + public bool Equals(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.HcxEnterpriseSiteStatus e) + { + return _value.Equals(e._value); + } + + /// Compares values of enum type HcxEnterpriseSiteStatus (override for Object) + /// the value to compare against this instance. + /// true if the two instances are equal to the same value + public override bool Equals(object obj) + { + return obj is HcxEnterpriseSiteStatus && Equals((HcxEnterpriseSiteStatus)obj); + } + + /// Returns hashCode for enum HcxEnterpriseSiteStatus + /// The hashCode of the value + public override int GetHashCode() + { + return this._value.GetHashCode(); + } + + /// Creates an instance of the + /// the value to create an instance for. + private HcxEnterpriseSiteStatus(string underlyingValue) + { + this._value = underlyingValue; + } + + /// Returns string representation for HcxEnterpriseSiteStatus + /// A string for this value. + public override string ToString() + { + return this._value; + } + + /// Implicit operator to convert string to HcxEnterpriseSiteStatus + /// the value to convert to an instance of . + + public static implicit operator HcxEnterpriseSiteStatus(string value) + { + return new HcxEnterpriseSiteStatus(value); + } + + /// Implicit operator to convert HcxEnterpriseSiteStatus to string + /// the value to convert to an instance of . + + public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.HcxEnterpriseSiteStatus e) + { + return e._value; + } + + /// Overriding != operator for enum HcxEnterpriseSiteStatus + /// the value to compare against + /// the value to compare against + /// true if the two instances are not equal to the same value + public static bool operator !=(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.HcxEnterpriseSiteStatus e1, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.HcxEnterpriseSiteStatus e2) + { + return !e2.Equals(e1); + } + + /// Overriding == operator for enum HcxEnterpriseSiteStatus + /// the value to compare against + /// the value to compare against + /// true if the two instances are equal to the same value + public static bool operator ==(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.HcxEnterpriseSiteStatus e1, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.HcxEnterpriseSiteStatus e2) + { + return e2.Equals(e1); + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Support/InternetEnum.Completer.cs b/src/VMWare/generated/api/Support/InternetEnum.Completer.cs new file mode 100644 index 000000000000..ddd2c30becb9 --- /dev/null +++ b/src/VMWare/generated/api/Support/InternetEnum.Completer.cs @@ -0,0 +1,39 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support +{ + + /// Argument completer implementation for InternetEnum. + [System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnumTypeConverter))] + public partial struct InternetEnum : + System.Management.Automation.IArgumentCompleter + { + + /// + /// Implementations of this function are called by PowerShell to complete arguments. + /// + /// The name of the command that needs argument completion. + /// The name of the parameter that needs argument completion. + /// The (possibly empty) word being completed. + /// The command ast in case it is needed for completion. + /// This parameter is similar to $PSBoundParameters, except that sometimes PowerShell cannot + /// or will not attempt to evaluate an argument, in which case you may need to use commandAst. + /// + /// A collection of completion results, most like with ResultType set to ParameterValue. + /// + public global::System.Collections.Generic.IEnumerable CompleteArgument(global::System.String commandName, global::System.String parameterName, global::System.String wordToComplete, global::System.Management.Automation.Language.CommandAst commandAst, global::System.Collections.IDictionary fakeBoundParameters) + { + if (global::System.String.IsNullOrEmpty(wordToComplete) || "Enabled".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("Enabled", "Enabled", global::System.Management.Automation.CompletionResultType.ParameterValue, "Enabled"); + } + if (global::System.String.IsNullOrEmpty(wordToComplete) || "Disabled".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("Disabled", "Disabled", global::System.Management.Automation.CompletionResultType.ParameterValue, "Disabled"); + } + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Support/InternetEnum.TypeConverter.cs b/src/VMWare/generated/api/Support/InternetEnum.TypeConverter.cs new file mode 100644 index 000000000000..447e9f5546d4 --- /dev/null +++ b/src/VMWare/generated/api/Support/InternetEnum.TypeConverter.cs @@ -0,0 +1,59 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support +{ + + /// TypeConverter implementation for InternetEnum. + public partial class InternetEnumTypeConverter : + global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => true; + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => InternetEnum.CreateFrom(sourceValue); + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Support/InternetEnum.cs b/src/VMWare/generated/api/Support/InternetEnum.cs new file mode 100644 index 000000000000..57becf75b07c --- /dev/null +++ b/src/VMWare/generated/api/Support/InternetEnum.cs @@ -0,0 +1,97 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support +{ + + public partial struct InternetEnum : + System.IEquatable + { + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum Disabled = @"Disabled"; + + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum Enabled = @"Enabled"; + + /// the value for an instance of the Enum. + private string _value { get; set; } + + /// Conversion from arbitrary object to InternetEnum + /// the value to convert to an instance of . + internal static object CreateFrom(object value) + { + return new InternetEnum(System.Convert.ToString(value)); + } + + /// Compares values of enum type InternetEnum + /// the value to compare against this instance. + /// true if the two instances are equal to the same value + public bool Equals(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum e) + { + return _value.Equals(e._value); + } + + /// Compares values of enum type InternetEnum (override for Object) + /// the value to compare against this instance. + /// true if the two instances are equal to the same value + public override bool Equals(object obj) + { + return obj is InternetEnum && Equals((InternetEnum)obj); + } + + /// Returns hashCode for enum InternetEnum + /// The hashCode of the value + public override int GetHashCode() + { + return this._value.GetHashCode(); + } + + /// Creates an instance of the + /// the value to create an instance for. + private InternetEnum(string underlyingValue) + { + this._value = underlyingValue; + } + + /// Returns string representation for InternetEnum + /// A string for this value. + public override string ToString() + { + return this._value; + } + + /// Implicit operator to convert string to InternetEnum + /// the value to convert to an instance of . + + public static implicit operator InternetEnum(string value) + { + return new InternetEnum(value); + } + + /// Implicit operator to convert InternetEnum to string + /// the value to convert to an instance of . + + public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum e) + { + return e._value; + } + + /// Overriding != operator for enum InternetEnum + /// the value to compare against + /// the value to compare against + /// true if the two instances are not equal to the same value + public static bool operator !=(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum e1, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum e2) + { + return !e2.Equals(e1); + } + + /// Overriding == operator for enum InternetEnum + /// the value to compare against + /// the value to compare against + /// true if the two instances are equal to the same value + public static bool operator ==(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum e1, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum e2) + { + return e2.Equals(e1); + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Support/PrivateCloudProvisioningState.Completer.cs b/src/VMWare/generated/api/Support/PrivateCloudProvisioningState.Completer.cs new file mode 100644 index 000000000000..abf9ae0da259 --- /dev/null +++ b/src/VMWare/generated/api/Support/PrivateCloudProvisioningState.Completer.cs @@ -0,0 +1,59 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support +{ + + /// Argument completer implementation for PrivateCloudProvisioningState. + [System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.PrivateCloudProvisioningStateTypeConverter))] + public partial struct PrivateCloudProvisioningState : + System.Management.Automation.IArgumentCompleter + { + + /// + /// Implementations of this function are called by PowerShell to complete arguments. + /// + /// The name of the command that needs argument completion. + /// The name of the parameter that needs argument completion. + /// The (possibly empty) word being completed. + /// The command ast in case it is needed for completion. + /// This parameter is similar to $PSBoundParameters, except that sometimes PowerShell cannot + /// or will not attempt to evaluate an argument, in which case you may need to use commandAst. + /// + /// A collection of completion results, most like with ResultType set to ParameterValue. + /// + public global::System.Collections.Generic.IEnumerable CompleteArgument(global::System.String commandName, global::System.String parameterName, global::System.String wordToComplete, global::System.Management.Automation.Language.CommandAst commandAst, global::System.Collections.IDictionary fakeBoundParameters) + { + if (global::System.String.IsNullOrEmpty(wordToComplete) || "Succeeded".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("Succeeded", "Succeeded", global::System.Management.Automation.CompletionResultType.ParameterValue, "Succeeded"); + } + if (global::System.String.IsNullOrEmpty(wordToComplete) || "Failed".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("Failed", "Failed", global::System.Management.Automation.CompletionResultType.ParameterValue, "Failed"); + } + if (global::System.String.IsNullOrEmpty(wordToComplete) || "Cancelled".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("Cancelled", "Cancelled", global::System.Management.Automation.CompletionResultType.ParameterValue, "Cancelled"); + } + if (global::System.String.IsNullOrEmpty(wordToComplete) || "Pending".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("Pending", "Pending", global::System.Management.Automation.CompletionResultType.ParameterValue, "Pending"); + } + if (global::System.String.IsNullOrEmpty(wordToComplete) || "Building".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("Building", "Building", global::System.Management.Automation.CompletionResultType.ParameterValue, "Building"); + } + if (global::System.String.IsNullOrEmpty(wordToComplete) || "Deleting".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("Deleting", "Deleting", global::System.Management.Automation.CompletionResultType.ParameterValue, "Deleting"); + } + if (global::System.String.IsNullOrEmpty(wordToComplete) || "Updating".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("Updating", "Updating", global::System.Management.Automation.CompletionResultType.ParameterValue, "Updating"); + } + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Support/PrivateCloudProvisioningState.TypeConverter.cs b/src/VMWare/generated/api/Support/PrivateCloudProvisioningState.TypeConverter.cs new file mode 100644 index 000000000000..bd5c860a52ca --- /dev/null +++ b/src/VMWare/generated/api/Support/PrivateCloudProvisioningState.TypeConverter.cs @@ -0,0 +1,59 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support +{ + + /// TypeConverter implementation for PrivateCloudProvisioningState. + public partial class PrivateCloudProvisioningStateTypeConverter : + global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => true; + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => PrivateCloudProvisioningState.CreateFrom(sourceValue); + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Support/PrivateCloudProvisioningState.cs b/src/VMWare/generated/api/Support/PrivateCloudProvisioningState.cs new file mode 100644 index 000000000000..033c417539b2 --- /dev/null +++ b/src/VMWare/generated/api/Support/PrivateCloudProvisioningState.cs @@ -0,0 +1,113 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support +{ + + public partial struct PrivateCloudProvisioningState : + System.IEquatable + { + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.PrivateCloudProvisioningState Building = @"Building"; + + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.PrivateCloudProvisioningState Cancelled = @"Cancelled"; + + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.PrivateCloudProvisioningState Deleting = @"Deleting"; + + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.PrivateCloudProvisioningState Failed = @"Failed"; + + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.PrivateCloudProvisioningState Pending = @"Pending"; + + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.PrivateCloudProvisioningState Succeeded = @"Succeeded"; + + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.PrivateCloudProvisioningState Updating = @"Updating"; + + /// + /// the value for an instance of the Enum. + /// + private string _value { get; set; } + + /// Conversion from arbitrary object to PrivateCloudProvisioningState + /// the value to convert to an instance of . + internal static object CreateFrom(object value) + { + return new PrivateCloudProvisioningState(System.Convert.ToString(value)); + } + + /// Compares values of enum type PrivateCloudProvisioningState + /// the value to compare against this instance. + /// true if the two instances are equal to the same value + public bool Equals(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.PrivateCloudProvisioningState e) + { + return _value.Equals(e._value); + } + + /// + /// Compares values of enum type PrivateCloudProvisioningState (override for Object) + /// + /// the value to compare against this instance. + /// true if the two instances are equal to the same value + public override bool Equals(object obj) + { + return obj is PrivateCloudProvisioningState && Equals((PrivateCloudProvisioningState)obj); + } + + /// Returns hashCode for enum PrivateCloudProvisioningState + /// The hashCode of the value + public override int GetHashCode() + { + return this._value.GetHashCode(); + } + + /// + /// Creates an instance of the + /// + /// the value to create an instance for. + private PrivateCloudProvisioningState(string underlyingValue) + { + this._value = underlyingValue; + } + + /// Returns string representation for PrivateCloudProvisioningState + /// A string for this value. + public override string ToString() + { + return this._value; + } + + /// Implicit operator to convert string to PrivateCloudProvisioningState + /// the value to convert to an instance of . + + public static implicit operator PrivateCloudProvisioningState(string value) + { + return new PrivateCloudProvisioningState(value); + } + + /// Implicit operator to convert PrivateCloudProvisioningState to string + /// the value to convert to an instance of . + + public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.PrivateCloudProvisioningState e) + { + return e._value; + } + + /// Overriding != operator for enum PrivateCloudProvisioningState + /// the value to compare against + /// the value to compare against + /// true if the two instances are not equal to the same value + public static bool operator !=(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.PrivateCloudProvisioningState e1, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.PrivateCloudProvisioningState e2) + { + return !e2.Equals(e1); + } + + /// Overriding == operator for enum PrivateCloudProvisioningState + /// the value to compare against + /// the value to compare against + /// true if the two instances are equal to the same value + public static bool operator ==(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.PrivateCloudProvisioningState e1, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.PrivateCloudProvisioningState e2) + { + return e2.Equals(e1); + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Support/QuotaEnabled.Completer.cs b/src/VMWare/generated/api/Support/QuotaEnabled.Completer.cs new file mode 100644 index 000000000000..a86e9cf1c5cb --- /dev/null +++ b/src/VMWare/generated/api/Support/QuotaEnabled.Completer.cs @@ -0,0 +1,39 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support +{ + + /// Argument completer implementation for QuotaEnabled. + [System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.QuotaEnabledTypeConverter))] + public partial struct QuotaEnabled : + System.Management.Automation.IArgumentCompleter + { + + /// + /// Implementations of this function are called by PowerShell to complete arguments. + /// + /// The name of the command that needs argument completion. + /// The name of the parameter that needs argument completion. + /// The (possibly empty) word being completed. + /// The command ast in case it is needed for completion. + /// This parameter is similar to $PSBoundParameters, except that sometimes PowerShell cannot + /// or will not attempt to evaluate an argument, in which case you may need to use commandAst. + /// + /// A collection of completion results, most like with ResultType set to ParameterValue. + /// + public global::System.Collections.Generic.IEnumerable CompleteArgument(global::System.String commandName, global::System.String parameterName, global::System.String wordToComplete, global::System.Management.Automation.Language.CommandAst commandAst, global::System.Collections.IDictionary fakeBoundParameters) + { + if (global::System.String.IsNullOrEmpty(wordToComplete) || "Enabled".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("Enabled", "Enabled", global::System.Management.Automation.CompletionResultType.ParameterValue, "Enabled"); + } + if (global::System.String.IsNullOrEmpty(wordToComplete) || "Disabled".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("Disabled", "Disabled", global::System.Management.Automation.CompletionResultType.ParameterValue, "Disabled"); + } + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Support/QuotaEnabled.TypeConverter.cs b/src/VMWare/generated/api/Support/QuotaEnabled.TypeConverter.cs new file mode 100644 index 000000000000..a420013aa5d6 --- /dev/null +++ b/src/VMWare/generated/api/Support/QuotaEnabled.TypeConverter.cs @@ -0,0 +1,59 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support +{ + + /// TypeConverter implementation for QuotaEnabled. + public partial class QuotaEnabledTypeConverter : + global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => true; + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => QuotaEnabled.CreateFrom(sourceValue); + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Support/QuotaEnabled.cs b/src/VMWare/generated/api/Support/QuotaEnabled.cs new file mode 100644 index 000000000000..dbf74d761019 --- /dev/null +++ b/src/VMWare/generated/api/Support/QuotaEnabled.cs @@ -0,0 +1,97 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support +{ + + public partial struct QuotaEnabled : + System.IEquatable + { + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.QuotaEnabled Disabled = @"Disabled"; + + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.QuotaEnabled Enabled = @"Enabled"; + + /// the value for an instance of the Enum. + private string _value { get; set; } + + /// Conversion from arbitrary object to QuotaEnabled + /// the value to convert to an instance of . + internal static object CreateFrom(object value) + { + return new QuotaEnabled(System.Convert.ToString(value)); + } + + /// Compares values of enum type QuotaEnabled + /// the value to compare against this instance. + /// true if the two instances are equal to the same value + public bool Equals(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.QuotaEnabled e) + { + return _value.Equals(e._value); + } + + /// Compares values of enum type QuotaEnabled (override for Object) + /// the value to compare against this instance. + /// true if the two instances are equal to the same value + public override bool Equals(object obj) + { + return obj is QuotaEnabled && Equals((QuotaEnabled)obj); + } + + /// Returns hashCode for enum QuotaEnabled + /// The hashCode of the value + public override int GetHashCode() + { + return this._value.GetHashCode(); + } + + /// Creates an instance of the + /// the value to create an instance for. + private QuotaEnabled(string underlyingValue) + { + this._value = underlyingValue; + } + + /// Returns string representation for QuotaEnabled + /// A string for this value. + public override string ToString() + { + return this._value; + } + + /// Implicit operator to convert string to QuotaEnabled + /// the value to convert to an instance of . + + public static implicit operator QuotaEnabled(string value) + { + return new QuotaEnabled(value); + } + + /// Implicit operator to convert QuotaEnabled to string + /// the value to convert to an instance of . + + public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.QuotaEnabled e) + { + return e._value; + } + + /// Overriding != operator for enum QuotaEnabled + /// the value to compare against + /// the value to compare against + /// true if the two instances are not equal to the same value + public static bool operator !=(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.QuotaEnabled e1, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.QuotaEnabled e2) + { + return !e2.Equals(e1); + } + + /// Overriding == operator for enum QuotaEnabled + /// the value to compare against + /// the value to compare against + /// true if the two instances are equal to the same value + public static bool operator ==(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.QuotaEnabled e1, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.QuotaEnabled e2) + { + return e2.Equals(e1); + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Support/SslEnum.Completer.cs b/src/VMWare/generated/api/Support/SslEnum.Completer.cs new file mode 100644 index 000000000000..d4c1fafb31c0 --- /dev/null +++ b/src/VMWare/generated/api/Support/SslEnum.Completer.cs @@ -0,0 +1,39 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support +{ + + /// Argument completer implementation for SslEnum. + [System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.SslEnumTypeConverter))] + public partial struct SslEnum : + System.Management.Automation.IArgumentCompleter + { + + /// + /// Implementations of this function are called by PowerShell to complete arguments. + /// + /// The name of the command that needs argument completion. + /// The name of the parameter that needs argument completion. + /// The (possibly empty) word being completed. + /// The command ast in case it is needed for completion. + /// This parameter is similar to $PSBoundParameters, except that sometimes PowerShell cannot + /// or will not attempt to evaluate an argument, in which case you may need to use commandAst. + /// + /// A collection of completion results, most like with ResultType set to ParameterValue. + /// + public global::System.Collections.Generic.IEnumerable CompleteArgument(global::System.String commandName, global::System.String parameterName, global::System.String wordToComplete, global::System.Management.Automation.Language.CommandAst commandAst, global::System.Collections.IDictionary fakeBoundParameters) + { + if (global::System.String.IsNullOrEmpty(wordToComplete) || "Enabled".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("Enabled", "Enabled", global::System.Management.Automation.CompletionResultType.ParameterValue, "Enabled"); + } + if (global::System.String.IsNullOrEmpty(wordToComplete) || "Disabled".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("Disabled", "Disabled", global::System.Management.Automation.CompletionResultType.ParameterValue, "Disabled"); + } + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Support/SslEnum.TypeConverter.cs b/src/VMWare/generated/api/Support/SslEnum.TypeConverter.cs new file mode 100644 index 000000000000..0a64e4f45bbb --- /dev/null +++ b/src/VMWare/generated/api/Support/SslEnum.TypeConverter.cs @@ -0,0 +1,59 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support +{ + + /// TypeConverter implementation for SslEnum. + public partial class SslEnumTypeConverter : + global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => true; + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => SslEnum.CreateFrom(sourceValue); + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Support/SslEnum.cs b/src/VMWare/generated/api/Support/SslEnum.cs new file mode 100644 index 000000000000..46c591097a34 --- /dev/null +++ b/src/VMWare/generated/api/Support/SslEnum.cs @@ -0,0 +1,97 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support +{ + + public partial struct SslEnum : + System.IEquatable + { + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.SslEnum Disabled = @"Disabled"; + + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.SslEnum Enabled = @"Enabled"; + + /// the value for an instance of the Enum. + private string _value { get; set; } + + /// Conversion from arbitrary object to SslEnum + /// the value to convert to an instance of . + internal static object CreateFrom(object value) + { + return new SslEnum(System.Convert.ToString(value)); + } + + /// Compares values of enum type SslEnum + /// the value to compare against this instance. + /// true if the two instances are equal to the same value + public bool Equals(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.SslEnum e) + { + return _value.Equals(e._value); + } + + /// Compares values of enum type SslEnum (override for Object) + /// the value to compare against this instance. + /// true if the two instances are equal to the same value + public override bool Equals(object obj) + { + return obj is SslEnum && Equals((SslEnum)obj); + } + + /// Returns hashCode for enum SslEnum + /// The hashCode of the value + public override int GetHashCode() + { + return this._value.GetHashCode(); + } + + /// Creates an instance of the + /// the value to create an instance for. + private SslEnum(string underlyingValue) + { + this._value = underlyingValue; + } + + /// Returns string representation for SslEnum + /// A string for this value. + public override string ToString() + { + return this._value; + } + + /// Implicit operator to convert string to SslEnum + /// the value to convert to an instance of . + + public static implicit operator SslEnum(string value) + { + return new SslEnum(value); + } + + /// Implicit operator to convert SslEnum to string + /// the value to convert to an instance of . + + public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.SslEnum e) + { + return e._value; + } + + /// Overriding != operator for enum SslEnum + /// the value to compare against + /// the value to compare against + /// true if the two instances are not equal to the same value + public static bool operator !=(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.SslEnum e1, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.SslEnum e2) + { + return !e2.Equals(e1); + } + + /// Overriding == operator for enum SslEnum + /// the value to compare against + /// the value to compare against + /// true if the two instances are equal to the same value + public static bool operator ==(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.SslEnum e1, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.SslEnum e2) + { + return e2.Equals(e1); + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Support/TrialStatus.Completer.cs b/src/VMWare/generated/api/Support/TrialStatus.Completer.cs new file mode 100644 index 000000000000..4e354e961526 --- /dev/null +++ b/src/VMWare/generated/api/Support/TrialStatus.Completer.cs @@ -0,0 +1,43 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support +{ + + /// Argument completer implementation for TrialStatus. + [System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.TrialStatusTypeConverter))] + public partial struct TrialStatus : + System.Management.Automation.IArgumentCompleter + { + + /// + /// Implementations of this function are called by PowerShell to complete arguments. + /// + /// The name of the command that needs argument completion. + /// The name of the parameter that needs argument completion. + /// The (possibly empty) word being completed. + /// The command ast in case it is needed for completion. + /// This parameter is similar to $PSBoundParameters, except that sometimes PowerShell cannot + /// or will not attempt to evaluate an argument, in which case you may need to use commandAst. + /// + /// A collection of completion results, most like with ResultType set to ParameterValue. + /// + public global::System.Collections.Generic.IEnumerable CompleteArgument(global::System.String commandName, global::System.String parameterName, global::System.String wordToComplete, global::System.Management.Automation.Language.CommandAst commandAst, global::System.Collections.IDictionary fakeBoundParameters) + { + if (global::System.String.IsNullOrEmpty(wordToComplete) || "TrialAvailable".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("TrialAvailable", "TrialAvailable", global::System.Management.Automation.CompletionResultType.ParameterValue, "TrialAvailable"); + } + if (global::System.String.IsNullOrEmpty(wordToComplete) || "TrialUsed".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("TrialUsed", "TrialUsed", global::System.Management.Automation.CompletionResultType.ParameterValue, "TrialUsed"); + } + if (global::System.String.IsNullOrEmpty(wordToComplete) || "TrialDisabled".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("TrialDisabled", "TrialDisabled", global::System.Management.Automation.CompletionResultType.ParameterValue, "TrialDisabled"); + } + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Support/TrialStatus.TypeConverter.cs b/src/VMWare/generated/api/Support/TrialStatus.TypeConverter.cs new file mode 100644 index 000000000000..266800e47687 --- /dev/null +++ b/src/VMWare/generated/api/Support/TrialStatus.TypeConverter.cs @@ -0,0 +1,59 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support +{ + + /// TypeConverter implementation for TrialStatus. + public partial class TrialStatusTypeConverter : + global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => true; + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => TrialStatus.CreateFrom(sourceValue); + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/Support/TrialStatus.cs b/src/VMWare/generated/api/Support/TrialStatus.cs new file mode 100644 index 000000000000..701b48f04ae6 --- /dev/null +++ b/src/VMWare/generated/api/Support/TrialStatus.cs @@ -0,0 +1,99 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support +{ + + public partial struct TrialStatus : + System.IEquatable + { + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.TrialStatus TrialAvailable = @"TrialAvailable"; + + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.TrialStatus TrialDisabled = @"TrialDisabled"; + + public static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.TrialStatus TrialUsed = @"TrialUsed"; + + /// the value for an instance of the Enum. + private string _value { get; set; } + + /// Conversion from arbitrary object to TrialStatus + /// the value to convert to an instance of . + internal static object CreateFrom(object value) + { + return new TrialStatus(System.Convert.ToString(value)); + } + + /// Compares values of enum type TrialStatus + /// the value to compare against this instance. + /// true if the two instances are equal to the same value + public bool Equals(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.TrialStatus e) + { + return _value.Equals(e._value); + } + + /// Compares values of enum type TrialStatus (override for Object) + /// the value to compare against this instance. + /// true if the two instances are equal to the same value + public override bool Equals(object obj) + { + return obj is TrialStatus && Equals((TrialStatus)obj); + } + + /// Returns hashCode for enum TrialStatus + /// The hashCode of the value + public override int GetHashCode() + { + return this._value.GetHashCode(); + } + + /// Returns string representation for TrialStatus + /// A string for this value. + public override string ToString() + { + return this._value; + } + + /// Creates an instance of the + /// the value to create an instance for. + private TrialStatus(string underlyingValue) + { + this._value = underlyingValue; + } + + /// Implicit operator to convert string to TrialStatus + /// the value to convert to an instance of . + + public static implicit operator TrialStatus(string value) + { + return new TrialStatus(value); + } + + /// Implicit operator to convert TrialStatus to string + /// the value to convert to an instance of . + + public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.TrialStatus e) + { + return e._value; + } + + /// Overriding != operator for enum TrialStatus + /// the value to compare against + /// the value to compare against + /// true if the two instances are not equal to the same value + public static bool operator !=(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.TrialStatus e1, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.TrialStatus e2) + { + return !e2.Equals(e1); + } + + /// Overriding == operator for enum TrialStatus + /// the value to compare against + /// the value to compare against + /// true if the two instances are equal to the same value + public static bool operator ==(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.TrialStatus e1, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.TrialStatus e2) + { + return e2.Equals(e1); + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/api/VMWare.cs b/src/VMWare/generated/api/VMWare.cs new file mode 100644 index 000000000000..15559daead2e --- /dev/null +++ b/src/VMWare/generated/api/VMWare.cs @@ -0,0 +1,4749 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// + /// Low-level API implementation for the VMWare service. + /// + public partial class VMWare + { + + /// Create or update an ExpressRoute Circuit Authorization in a private cloud + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. + /// The name of the private cloud. + /// Name of the ExpressRoute Circuit Authorization in the private cloud + /// An ExpressRoute Circuit Authorization + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task AuthorizationsCreateOrUpdate(string subscriptionId, string resourceGroupName, string privateCloudName, string authorizationName, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPaths15976RbSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameAuthorizationsAuthorizationnamePutRequestbodyContentApplicationJsonSchema body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + var apiVersion = @"2020-03-20"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + global::System.Uri.EscapeDataString(subscriptionId) + + "/resourceGroups/" + + global::System.Uri.EscapeDataString(resourceGroupName) + + "/providers/Microsoft.AVS/privateClouds/" + + global::System.Uri.EscapeDataString(privateCloudName) + + "/authorizations/" + + global::System.Uri.EscapeDataString(authorizationName) + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Put, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // set body content + request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BodyContentSet, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.AuthorizationsCreateOrUpdate_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// Create or update an ExpressRoute Circuit Authorization in a private cloud + /// + /// An ExpressRoute Circuit Authorization + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task AuthorizationsCreateOrUpdateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPaths15976RbSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameAuthorizationsAuthorizationnamePutRequestbodyContentApplicationJsonSchema body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + var apiVersion = @"2020-03-20"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // verify that Identity format is an exact match for uri + + var _match = new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/Microsoft.AVS/privateClouds/(?[^/]+)/authorizations/(?[^/]+)$").Match(viaIdentity); + if (!_match.Success) + { + throw new global::System.Exception("Invalid identity for URI '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AVS/privateClouds/{privateCloudName}/authorizations/{authorizationName}'"); + } + + // replace URI parameters with values from identity + var subscriptionId = _match.Groups["subscriptionId"].Value; + var resourceGroupName = _match.Groups["resourceGroupName"].Value; + var privateCloudName = _match.Groups["privateCloudName"].Value; + var authorizationName = _match.Groups["authorizationName"].Value; + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + subscriptionId + + "/resourceGroups/" + + resourceGroupName + + "/providers/Microsoft.AVS/privateClouds/" + + privateCloudName + + "/authorizations/" + + authorizationName + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Put, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // set body content + request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BodyContentSet, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.AuthorizationsCreateOrUpdate_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// Actual wire call for method. + /// the prepared HttpRequestMessage to send. + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task AuthorizationsCreateOrUpdate_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + using( NoSynchronizationContext ) + { + global::System.Net.Http.HttpResponseMessage _response = null; + try + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + // this operation supports x-ms-long-running-operation + var _originalUri = request.RequestUri.AbsoluteUri; + // declared final-state-via: default + var asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = _response.GetFirstHeader(@"Location"); + while (_response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + { + + // get the delay before polling. (default to 30 seconds if not present) + int delay = (int)(_response.Headers.RetryAfter?.Delta?.TotalSeconds ?? 30); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.DelayBeforePolling, $"Delaying {delay} seconds before polling.", _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + // start the delay timer (we'll await later...) + var waiting = global::System.Threading.Tasks.Task.Delay(delay * 1000, eventListener.Token ); + + // while we wait, let's grab the headers and get ready to poll. + if (!System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Azure-AsyncOperation"))) { + asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + } + if (!global::System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Location"))) { + location = _response.GetFirstHeader(@"Location"); + } + var _uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? _originalUri : location : asyncOperation; + request = request.CloneAndDispose(new global::System.Uri(_uri), Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Get); + + // and let's look at the current response body and see if we have some information we can give back to the listener + var content = await _response.Content.ReadAsStringAsync(); + await waiting; + + // check for cancellation + if( eventListener.Token.IsCancellationRequested ) { return; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Polling, $"Polling {_uri}.", _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + // drop the old response + _response?.Dispose(); + + // make the polling call + _response = await sender.SendAsync(request, eventListener); + + // if we got back an OK, take a peek inside and see if it's done + if( _response.StatusCode == global::System.Net.HttpStatusCode.OK) + { + try { + if( Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(await _response.Content.ReadAsStringAsync()) is Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json) + { + var state = json.Property("properties")?.PropertyT("provisioningState") ?? json.PropertyT("status"); + if( state is null ) + { + // the body doesn't contain any information that has the state of the LRO + // we're going to just get out, and let the consumer have the result + break; + } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Polling, $"Polled {_uri} provisioning state {state}.", _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + switch( state?.ToString()?.ToLower() ) + { + case "succeeded": + case "failed": + case "canceled": + // we're done polling. + break; + + default: + // need to keep polling! + _response.StatusCode = global::System.Net.HttpStatusCode.Created; + continue; + } + } + } catch { + // if we run into a problem peeking into the result, + // we really don't want to do anything special. + } + } + + // check for terminal status code + if (_response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + { + continue; + } + // we are done polling, do a request on final target? + if (!string.IsNullOrWhiteSpace(_originalUri)) + { + // create a new request with the final uri + request = request.CloneAndDispose(new global::System.Uri(_originalUri), Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Get); + + // drop the old response + _response?.Dispose(); + + // make the final call + _response = await sender.SendAsync(request, eventListener); + break; + } + } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ExpressRouteAuthorization.FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Finally, request, _response); + _response?.Dispose(); + request?.Dispose(); + } + } + } + + /// + /// Validation method for method. Call this like the actual call, but you will + /// get validation events back. + /// + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. + /// The name of the private cloud. + /// Name of the ExpressRoute Circuit Authorization in the private cloud + /// An ExpressRoute Circuit Authorization + /// an instance that will receive events. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task AuthorizationsCreateOrUpdate_Validate(string subscriptionId, string resourceGroupName, string privateCloudName, string authorizationName, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPaths15976RbSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameAuthorizationsAuthorizationnamePutRequestbodyContentApplicationJsonSchema body, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener) + { + using( NoSynchronizationContext ) + { + await eventListener.AssertNotNull(nameof(subscriptionId),subscriptionId); + await eventListener.AssertMinimumLength(nameof(subscriptionId),subscriptionId,1); + await eventListener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); + await eventListener.AssertMinimumLength(nameof(resourceGroupName),resourceGroupName,1); + await eventListener.AssertMaximumLength(nameof(resourceGroupName),resourceGroupName,90); + await eventListener.AssertRegEx(nameof(resourceGroupName),resourceGroupName,@"^[-\w\._\(\)]+$"); + await eventListener.AssertNotNull(nameof(privateCloudName),privateCloudName); + await eventListener.AssertNotNull(nameof(authorizationName),authorizationName); + await eventListener.AssertNotNull(nameof(body), body); + await eventListener.AssertObjectIsValid(nameof(body), body); + } + } + + /// Delete an ExpressRoute Circuit Authorization in a private cloud + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. + /// Name of the private cloud + /// Name of the ExpressRoute Circuit Authorization in the private cloud + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns 204 (NoContent). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task AuthorizationsDelete(string subscriptionId, string resourceGroupName, string privateCloudName, string authorizationName, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + var apiVersion = @"2020-03-20"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + global::System.Uri.EscapeDataString(subscriptionId) + + "/resourceGroups/" + + global::System.Uri.EscapeDataString(resourceGroupName) + + "/providers/Microsoft.AVS/privateClouds/" + + global::System.Uri.EscapeDataString(privateCloudName) + + "/authorizations/" + + global::System.Uri.EscapeDataString(authorizationName) + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Delete, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.AuthorizationsDelete_Call(request,onOk,onNoContent,onDefault,eventListener,sender); + } + } + + /// Delete an ExpressRoute Circuit Authorization in a private cloud + /// + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns 204 (NoContent). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task AuthorizationsDeleteViaIdentity(global::System.String viaIdentity, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + var apiVersion = @"2020-03-20"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // verify that Identity format is an exact match for uri + + var _match = new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/Microsoft.AVS/privateClouds/(?[^/]+)/authorizations/(?[^/]+)$").Match(viaIdentity); + if (!_match.Success) + { + throw new global::System.Exception("Invalid identity for URI '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AVS/privateClouds/{privateCloudName}/authorizations/{authorizationName}'"); + } + + // replace URI parameters with values from identity + var subscriptionId = _match.Groups["subscriptionId"].Value; + var resourceGroupName = _match.Groups["resourceGroupName"].Value; + var privateCloudName = _match.Groups["privateCloudName"].Value; + var authorizationName = _match.Groups["authorizationName"].Value; + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + subscriptionId + + "/resourceGroups/" + + resourceGroupName + + "/providers/Microsoft.AVS/privateClouds/" + + privateCloudName + + "/authorizations/" + + authorizationName + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Delete, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.AuthorizationsDelete_Call(request,onOk,onNoContent,onDefault,eventListener,sender); + } + } + + /// Actual wire call for method. + /// the prepared HttpRequestMessage to send. + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns 204 (NoContent). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task AuthorizationsDelete_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + using( NoSynchronizationContext ) + { + global::System.Net.Http.HttpResponseMessage _response = null; + try + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + // this operation supports x-ms-long-running-operation + var _originalUri = request.RequestUri.AbsoluteUri; + // declared final-state-via: default + var _finalUri = _response.GetFirstHeader(@"Location"); + var asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = _response.GetFirstHeader(@"Location"); + while (_response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + { + + // get the delay before polling. (default to 30 seconds if not present) + int delay = (int)(_response.Headers.RetryAfter?.Delta?.TotalSeconds ?? 30); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.DelayBeforePolling, $"Delaying {delay} seconds before polling.", _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + // start the delay timer (we'll await later...) + var waiting = global::System.Threading.Tasks.Task.Delay(delay * 1000, eventListener.Token ); + + // while we wait, let's grab the headers and get ready to poll. + if (!System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Azure-AsyncOperation"))) { + asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + } + if (!global::System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Location"))) { + location = _response.GetFirstHeader(@"Location"); + } + var _uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? _originalUri : location : asyncOperation; + request = request.CloneAndDispose(new global::System.Uri(_uri), Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Get); + + // and let's look at the current response body and see if we have some information we can give back to the listener + var content = await _response.Content.ReadAsStringAsync(); + await waiting; + + // check for cancellation + if( eventListener.Token.IsCancellationRequested ) { return; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Polling, $"Polling {_uri}.", _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + // drop the old response + _response?.Dispose(); + + // make the polling call + _response = await sender.SendAsync(request, eventListener); + + // if we got back an OK, take a peek inside and see if it's done + if( _response.StatusCode == global::System.Net.HttpStatusCode.OK) + { + try { + if( Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(await _response.Content.ReadAsStringAsync()) is Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json) + { + var state = json.Property("properties")?.PropertyT("provisioningState") ?? json.PropertyT("status"); + if( state is null ) + { + // the body doesn't contain any information that has the state of the LRO + // we're going to just get out, and let the consumer have the result + break; + } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Polling, $"Polled {_uri} provisioning state {state}.", _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + switch( state?.ToString()?.ToLower() ) + { + case "succeeded": + case "failed": + case "canceled": + // we're done polling. + break; + + default: + // need to keep polling! + _response.StatusCode = global::System.Net.HttpStatusCode.Created; + continue; + } + } + } catch { + // if we run into a problem peeking into the result, + // we really don't want to do anything special. + } + } + + // check for terminal status code + if (_response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + { + continue; + } + // we are done polling, do a request on final target? + if (!string.IsNullOrWhiteSpace(_finalUri)) + { + // create a new request with the final uri + request = request.CloneAndDispose(new global::System.Uri(_finalUri), Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Get); + + // drop the old response + _response?.Dispose(); + + // make the final call + _response = await sender.SendAsync(request, eventListener); + break; + } + } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onOk(_response); + break; + } + case global::System.Net.HttpStatusCode.NoContent: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onNoContent(_response); + break; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Finally, request, _response); + _response?.Dispose(); + request?.Dispose(); + } + } + } + + /// + /// Validation method for method. Call this like the actual call, but you will get validation + /// events back. + /// + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. + /// Name of the private cloud + /// Name of the ExpressRoute Circuit Authorization in the private cloud + /// an instance that will receive events. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task AuthorizationsDelete_Validate(string subscriptionId, string resourceGroupName, string privateCloudName, string authorizationName, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener) + { + using( NoSynchronizationContext ) + { + await eventListener.AssertNotNull(nameof(subscriptionId),subscriptionId); + await eventListener.AssertMinimumLength(nameof(subscriptionId),subscriptionId,1); + await eventListener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); + await eventListener.AssertMinimumLength(nameof(resourceGroupName),resourceGroupName,1); + await eventListener.AssertMaximumLength(nameof(resourceGroupName),resourceGroupName,90); + await eventListener.AssertRegEx(nameof(resourceGroupName),resourceGroupName,@"^[-\w\._\(\)]+$"); + await eventListener.AssertNotNull(nameof(privateCloudName),privateCloudName); + await eventListener.AssertNotNull(nameof(authorizationName),authorizationName); + } + } + + /// Get an ExpressRoute Circuit Authorization by name in a private cloud + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. + /// Name of the private cloud + /// Name of the ExpressRoute Circuit Authorization in the private cloud + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task AuthorizationsGet(string subscriptionId, string resourceGroupName, string privateCloudName, string authorizationName, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + var apiVersion = @"2020-03-20"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + global::System.Uri.EscapeDataString(subscriptionId) + + "/resourceGroups/" + + global::System.Uri.EscapeDataString(resourceGroupName) + + "/providers/Microsoft.AVS/privateClouds/" + + global::System.Uri.EscapeDataString(privateCloudName) + + "/authorizations/" + + global::System.Uri.EscapeDataString(authorizationName) + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.AuthorizationsGet_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// Get an ExpressRoute Circuit Authorization by name in a private cloud + /// + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task AuthorizationsGetViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + var apiVersion = @"2020-03-20"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // verify that Identity format is an exact match for uri + + var _match = new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/Microsoft.AVS/privateClouds/(?[^/]+)/authorizations/(?[^/]+)$").Match(viaIdentity); + if (!_match.Success) + { + throw new global::System.Exception("Invalid identity for URI '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AVS/privateClouds/{privateCloudName}/authorizations/{authorizationName}'"); + } + + // replace URI parameters with values from identity + var subscriptionId = _match.Groups["subscriptionId"].Value; + var resourceGroupName = _match.Groups["resourceGroupName"].Value; + var privateCloudName = _match.Groups["privateCloudName"].Value; + var authorizationName = _match.Groups["authorizationName"].Value; + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + subscriptionId + + "/resourceGroups/" + + resourceGroupName + + "/providers/Microsoft.AVS/privateClouds/" + + privateCloudName + + "/authorizations/" + + authorizationName + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.AuthorizationsGet_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// Actual wire call for method. + /// the prepared HttpRequestMessage to send. + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task AuthorizationsGet_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + using( NoSynchronizationContext ) + { + global::System.Net.Http.HttpResponseMessage _response = null; + try + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ExpressRouteAuthorization.FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Finally, request, _response); + _response?.Dispose(); + request?.Dispose(); + } + } + } + + /// + /// Validation method for method. Call this like the actual call, but you will get validation + /// events back. + /// + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. + /// Name of the private cloud + /// Name of the ExpressRoute Circuit Authorization in the private cloud + /// an instance that will receive events. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task AuthorizationsGet_Validate(string subscriptionId, string resourceGroupName, string privateCloudName, string authorizationName, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener) + { + using( NoSynchronizationContext ) + { + await eventListener.AssertNotNull(nameof(subscriptionId),subscriptionId); + await eventListener.AssertMinimumLength(nameof(subscriptionId),subscriptionId,1); + await eventListener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); + await eventListener.AssertMinimumLength(nameof(resourceGroupName),resourceGroupName,1); + await eventListener.AssertMaximumLength(nameof(resourceGroupName),resourceGroupName,90); + await eventListener.AssertRegEx(nameof(resourceGroupName),resourceGroupName,@"^[-\w\._\(\)]+$"); + await eventListener.AssertNotNull(nameof(privateCloudName),privateCloudName); + await eventListener.AssertNotNull(nameof(authorizationName),authorizationName); + } + } + + /// List ExpressRoute Circuit Authorizations in a private cloud + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. + /// Name of the private cloud + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task AuthorizationsList(string subscriptionId, string resourceGroupName, string privateCloudName, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + var apiVersion = @"2020-03-20"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + global::System.Uri.EscapeDataString(subscriptionId) + + "/resourceGroups/" + + global::System.Uri.EscapeDataString(resourceGroupName) + + "/providers/Microsoft.AVS/privateClouds/" + + global::System.Uri.EscapeDataString(privateCloudName) + + "/authorizations" + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.AuthorizationsList_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// List ExpressRoute Circuit Authorizations in a private cloud + /// + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task AuthorizationsListViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + var apiVersion = @"2020-03-20"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // verify that Identity format is an exact match for uri + + var _match = new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/Microsoft.AVS/privateClouds/(?[^/]+)/authorizations$").Match(viaIdentity); + if (!_match.Success) + { + throw new global::System.Exception("Invalid identity for URI '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AVS/privateClouds/{privateCloudName}/authorizations'"); + } + + // replace URI parameters with values from identity + var subscriptionId = _match.Groups["subscriptionId"].Value; + var resourceGroupName = _match.Groups["resourceGroupName"].Value; + var privateCloudName = _match.Groups["privateCloudName"].Value; + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + subscriptionId + + "/resourceGroups/" + + resourceGroupName + + "/providers/Microsoft.AVS/privateClouds/" + + privateCloudName + + "/authorizations" + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.AuthorizationsList_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// Actual wire call for method. + /// the prepared HttpRequestMessage to send. + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task AuthorizationsList_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + using( NoSynchronizationContext ) + { + global::System.Net.Http.HttpResponseMessage _response = null; + try + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ExpressRouteAuthorizationList.FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Finally, request, _response); + _response?.Dispose(); + request?.Dispose(); + } + } + } + + /// + /// Validation method for method. Call this like the actual call, but you will get validation + /// events back. + /// + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. + /// Name of the private cloud + /// an instance that will receive events. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task AuthorizationsList_Validate(string subscriptionId, string resourceGroupName, string privateCloudName, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener) + { + using( NoSynchronizationContext ) + { + await eventListener.AssertNotNull(nameof(subscriptionId),subscriptionId); + await eventListener.AssertMinimumLength(nameof(subscriptionId),subscriptionId,1); + await eventListener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); + await eventListener.AssertMinimumLength(nameof(resourceGroupName),resourceGroupName,1); + await eventListener.AssertMaximumLength(nameof(resourceGroupName),resourceGroupName,90); + await eventListener.AssertRegEx(nameof(resourceGroupName),resourceGroupName,@"^[-\w\._\(\)]+$"); + await eventListener.AssertNotNull(nameof(privateCloudName),privateCloudName); + } + } + + /// Create or update a cluster in a private cloud + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. + /// The name of the private cloud. + /// Name of the cluster in the private cloud + /// A cluster in the private cloud + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task ClustersCreateOrUpdate(string subscriptionId, string resourceGroupName, string privateCloudName, string clusterName, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICluster body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + var apiVersion = @"2020-03-20"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + global::System.Uri.EscapeDataString(subscriptionId) + + "/resourceGroups/" + + global::System.Uri.EscapeDataString(resourceGroupName) + + "/providers/Microsoft.AVS/privateClouds/" + + global::System.Uri.EscapeDataString(privateCloudName) + + "/clusters/" + + global::System.Uri.EscapeDataString(clusterName) + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Put, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // set body content + request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BodyContentSet, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.ClustersCreateOrUpdate_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// Create or update a cluster in a private cloud + /// + /// A cluster in the private cloud + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task ClustersCreateOrUpdateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICluster body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + var apiVersion = @"2020-03-20"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // verify that Identity format is an exact match for uri + + var _match = new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/Microsoft.AVS/privateClouds/(?[^/]+)/clusters/(?[^/]+)$").Match(viaIdentity); + if (!_match.Success) + { + throw new global::System.Exception("Invalid identity for URI '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AVS/privateClouds/{privateCloudName}/clusters/{clusterName}'"); + } + + // replace URI parameters with values from identity + var subscriptionId = _match.Groups["subscriptionId"].Value; + var resourceGroupName = _match.Groups["resourceGroupName"].Value; + var privateCloudName = _match.Groups["privateCloudName"].Value; + var clusterName = _match.Groups["clusterName"].Value; + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + subscriptionId + + "/resourceGroups/" + + resourceGroupName + + "/providers/Microsoft.AVS/privateClouds/" + + privateCloudName + + "/clusters/" + + clusterName + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Put, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // set body content + request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BodyContentSet, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.ClustersCreateOrUpdate_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// Actual wire call for method. + /// the prepared HttpRequestMessage to send. + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task ClustersCreateOrUpdate_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + using( NoSynchronizationContext ) + { + global::System.Net.Http.HttpResponseMessage _response = null; + try + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + // this operation supports x-ms-long-running-operation + var _originalUri = request.RequestUri.AbsoluteUri; + // declared final-state-via: default + var asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = _response.GetFirstHeader(@"Location"); + while (_response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + { + + // get the delay before polling. (default to 30 seconds if not present) + int delay = (int)(_response.Headers.RetryAfter?.Delta?.TotalSeconds ?? 30); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.DelayBeforePolling, $"Delaying {delay} seconds before polling.", _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + // start the delay timer (we'll await later...) + var waiting = global::System.Threading.Tasks.Task.Delay(delay * 1000, eventListener.Token ); + + // while we wait, let's grab the headers and get ready to poll. + if (!System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Azure-AsyncOperation"))) { + asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + } + if (!global::System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Location"))) { + location = _response.GetFirstHeader(@"Location"); + } + var _uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? _originalUri : location : asyncOperation; + request = request.CloneAndDispose(new global::System.Uri(_uri), Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Get); + + // and let's look at the current response body and see if we have some information we can give back to the listener + var content = await _response.Content.ReadAsStringAsync(); + await waiting; + + // check for cancellation + if( eventListener.Token.IsCancellationRequested ) { return; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Polling, $"Polling {_uri}.", _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + // drop the old response + _response?.Dispose(); + + // make the polling call + _response = await sender.SendAsync(request, eventListener); + + // if we got back an OK, take a peek inside and see if it's done + if( _response.StatusCode == global::System.Net.HttpStatusCode.OK) + { + try { + if( Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(await _response.Content.ReadAsStringAsync()) is Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json) + { + var state = json.Property("properties")?.PropertyT("provisioningState") ?? json.PropertyT("status"); + if( state is null ) + { + // the body doesn't contain any information that has the state of the LRO + // we're going to just get out, and let the consumer have the result + break; + } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Polling, $"Polled {_uri} provisioning state {state}.", _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + switch( state?.ToString()?.ToLower() ) + { + case "succeeded": + case "failed": + case "canceled": + // we're done polling. + break; + + default: + // need to keep polling! + _response.StatusCode = global::System.Net.HttpStatusCode.Created; + continue; + } + } + } catch { + // if we run into a problem peeking into the result, + // we really don't want to do anything special. + } + } + + // check for terminal status code + if (_response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + { + continue; + } + // we are done polling, do a request on final target? + if (!string.IsNullOrWhiteSpace(_originalUri)) + { + // create a new request with the final uri + request = request.CloneAndDispose(new global::System.Uri(_originalUri), Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Get); + + // drop the old response + _response?.Dispose(); + + // make the final call + _response = await sender.SendAsync(request, eventListener); + break; + } + } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.Cluster.FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Finally, request, _response); + _response?.Dispose(); + request?.Dispose(); + } + } + } + + /// + /// Validation method for method. Call this like the actual call, but you will get validation + /// events back. + /// + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. + /// The name of the private cloud. + /// Name of the cluster in the private cloud + /// A cluster in the private cloud + /// an instance that will receive events. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task ClustersCreateOrUpdate_Validate(string subscriptionId, string resourceGroupName, string privateCloudName, string clusterName, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICluster body, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener) + { + using( NoSynchronizationContext ) + { + await eventListener.AssertNotNull(nameof(subscriptionId),subscriptionId); + await eventListener.AssertMinimumLength(nameof(subscriptionId),subscriptionId,1); + await eventListener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); + await eventListener.AssertMinimumLength(nameof(resourceGroupName),resourceGroupName,1); + await eventListener.AssertMaximumLength(nameof(resourceGroupName),resourceGroupName,90); + await eventListener.AssertRegEx(nameof(resourceGroupName),resourceGroupName,@"^[-\w\._\(\)]+$"); + await eventListener.AssertNotNull(nameof(privateCloudName),privateCloudName); + await eventListener.AssertNotNull(nameof(clusterName),clusterName); + await eventListener.AssertNotNull(nameof(body), body); + await eventListener.AssertObjectIsValid(nameof(body), body); + } + } + + /// Delete a cluster in a private cloud + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. + /// Name of the private cloud + /// Name of the cluster in the private cloud + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns 204 (NoContent). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task ClustersDelete(string subscriptionId, string resourceGroupName, string privateCloudName, string clusterName, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + var apiVersion = @"2020-03-20"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + global::System.Uri.EscapeDataString(subscriptionId) + + "/resourceGroups/" + + global::System.Uri.EscapeDataString(resourceGroupName) + + "/providers/Microsoft.AVS/privateClouds/" + + global::System.Uri.EscapeDataString(privateCloudName) + + "/clusters/" + + global::System.Uri.EscapeDataString(clusterName) + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Delete, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.ClustersDelete_Call(request,onOk,onNoContent,onDefault,eventListener,sender); + } + } + + /// Delete a cluster in a private cloud + /// + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns 204 (NoContent). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task ClustersDeleteViaIdentity(global::System.String viaIdentity, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + var apiVersion = @"2020-03-20"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // verify that Identity format is an exact match for uri + + var _match = new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/Microsoft.AVS/privateClouds/(?[^/]+)/clusters/(?[^/]+)$").Match(viaIdentity); + if (!_match.Success) + { + throw new global::System.Exception("Invalid identity for URI '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AVS/privateClouds/{privateCloudName}/clusters/{clusterName}'"); + } + + // replace URI parameters with values from identity + var subscriptionId = _match.Groups["subscriptionId"].Value; + var resourceGroupName = _match.Groups["resourceGroupName"].Value; + var privateCloudName = _match.Groups["privateCloudName"].Value; + var clusterName = _match.Groups["clusterName"].Value; + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + subscriptionId + + "/resourceGroups/" + + resourceGroupName + + "/providers/Microsoft.AVS/privateClouds/" + + privateCloudName + + "/clusters/" + + clusterName + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Delete, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.ClustersDelete_Call(request,onOk,onNoContent,onDefault,eventListener,sender); + } + } + + /// Actual wire call for method. + /// the prepared HttpRequestMessage to send. + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns 204 (NoContent). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task ClustersDelete_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + using( NoSynchronizationContext ) + { + global::System.Net.Http.HttpResponseMessage _response = null; + try + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + // this operation supports x-ms-long-running-operation + var _originalUri = request.RequestUri.AbsoluteUri; + // declared final-state-via: default + var _finalUri = _response.GetFirstHeader(@"Location"); + var asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = _response.GetFirstHeader(@"Location"); + while (_response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + { + + // get the delay before polling. (default to 30 seconds if not present) + int delay = (int)(_response.Headers.RetryAfter?.Delta?.TotalSeconds ?? 30); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.DelayBeforePolling, $"Delaying {delay} seconds before polling.", _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + // start the delay timer (we'll await later...) + var waiting = global::System.Threading.Tasks.Task.Delay(delay * 1000, eventListener.Token ); + + // while we wait, let's grab the headers and get ready to poll. + if (!System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Azure-AsyncOperation"))) { + asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + } + if (!global::System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Location"))) { + location = _response.GetFirstHeader(@"Location"); + } + var _uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? _originalUri : location : asyncOperation; + request = request.CloneAndDispose(new global::System.Uri(_uri), Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Get); + + // and let's look at the current response body and see if we have some information we can give back to the listener + var content = await _response.Content.ReadAsStringAsync(); + await waiting; + + // check for cancellation + if( eventListener.Token.IsCancellationRequested ) { return; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Polling, $"Polling {_uri}.", _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + // drop the old response + _response?.Dispose(); + + // make the polling call + _response = await sender.SendAsync(request, eventListener); + + // if we got back an OK, take a peek inside and see if it's done + if( _response.StatusCode == global::System.Net.HttpStatusCode.OK) + { + try { + if( Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(await _response.Content.ReadAsStringAsync()) is Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json) + { + var state = json.Property("properties")?.PropertyT("provisioningState") ?? json.PropertyT("status"); + if( state is null ) + { + // the body doesn't contain any information that has the state of the LRO + // we're going to just get out, and let the consumer have the result + break; + } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Polling, $"Polled {_uri} provisioning state {state}.", _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + switch( state?.ToString()?.ToLower() ) + { + case "succeeded": + case "failed": + case "canceled": + // we're done polling. + break; + + default: + // need to keep polling! + _response.StatusCode = global::System.Net.HttpStatusCode.Created; + continue; + } + } + } catch { + // if we run into a problem peeking into the result, + // we really don't want to do anything special. + } + } + + // check for terminal status code + if (_response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + { + continue; + } + // we are done polling, do a request on final target? + if (!string.IsNullOrWhiteSpace(_finalUri)) + { + // create a new request with the final uri + request = request.CloneAndDispose(new global::System.Uri(_finalUri), Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Get); + + // drop the old response + _response?.Dispose(); + + // make the final call + _response = await sender.SendAsync(request, eventListener); + break; + } + } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onOk(_response); + break; + } + case global::System.Net.HttpStatusCode.NoContent: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onNoContent(_response); + break; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Finally, request, _response); + _response?.Dispose(); + request?.Dispose(); + } + } + } + + /// + /// Validation method for method. Call this like the actual call, but you will get validation + /// events back. + /// + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. + /// Name of the private cloud + /// Name of the cluster in the private cloud + /// an instance that will receive events. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task ClustersDelete_Validate(string subscriptionId, string resourceGroupName, string privateCloudName, string clusterName, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener) + { + using( NoSynchronizationContext ) + { + await eventListener.AssertNotNull(nameof(subscriptionId),subscriptionId); + await eventListener.AssertMinimumLength(nameof(subscriptionId),subscriptionId,1); + await eventListener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); + await eventListener.AssertMinimumLength(nameof(resourceGroupName),resourceGroupName,1); + await eventListener.AssertMaximumLength(nameof(resourceGroupName),resourceGroupName,90); + await eventListener.AssertRegEx(nameof(resourceGroupName),resourceGroupName,@"^[-\w\._\(\)]+$"); + await eventListener.AssertNotNull(nameof(privateCloudName),privateCloudName); + await eventListener.AssertNotNull(nameof(clusterName),clusterName); + } + } + + /// Get a cluster by name in a private cloud + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. + /// Name of the private cloud + /// Name of the cluster in the private cloud + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task ClustersGet(string subscriptionId, string resourceGroupName, string privateCloudName, string clusterName, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + var apiVersion = @"2020-03-20"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + global::System.Uri.EscapeDataString(subscriptionId) + + "/resourceGroups/" + + global::System.Uri.EscapeDataString(resourceGroupName) + + "/providers/Microsoft.AVS/privateClouds/" + + global::System.Uri.EscapeDataString(privateCloudName) + + "/clusters/" + + global::System.Uri.EscapeDataString(clusterName) + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.ClustersGet_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// Get a cluster by name in a private cloud + /// + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task ClustersGetViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + var apiVersion = @"2020-03-20"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // verify that Identity format is an exact match for uri + + var _match = new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/Microsoft.AVS/privateClouds/(?[^/]+)/clusters/(?[^/]+)$").Match(viaIdentity); + if (!_match.Success) + { + throw new global::System.Exception("Invalid identity for URI '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AVS/privateClouds/{privateCloudName}/clusters/{clusterName}'"); + } + + // replace URI parameters with values from identity + var subscriptionId = _match.Groups["subscriptionId"].Value; + var resourceGroupName = _match.Groups["resourceGroupName"].Value; + var privateCloudName = _match.Groups["privateCloudName"].Value; + var clusterName = _match.Groups["clusterName"].Value; + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + subscriptionId + + "/resourceGroups/" + + resourceGroupName + + "/providers/Microsoft.AVS/privateClouds/" + + privateCloudName + + "/clusters/" + + clusterName + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.ClustersGet_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// Actual wire call for method. + /// the prepared HttpRequestMessage to send. + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task ClustersGet_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + using( NoSynchronizationContext ) + { + global::System.Net.Http.HttpResponseMessage _response = null; + try + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.Cluster.FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Finally, request, _response); + _response?.Dispose(); + request?.Dispose(); + } + } + } + + /// + /// Validation method for method. Call this like the actual call, but you will get validation events + /// back. + /// + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. + /// Name of the private cloud + /// Name of the cluster in the private cloud + /// an instance that will receive events. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task ClustersGet_Validate(string subscriptionId, string resourceGroupName, string privateCloudName, string clusterName, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener) + { + using( NoSynchronizationContext ) + { + await eventListener.AssertNotNull(nameof(subscriptionId),subscriptionId); + await eventListener.AssertMinimumLength(nameof(subscriptionId),subscriptionId,1); + await eventListener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); + await eventListener.AssertMinimumLength(nameof(resourceGroupName),resourceGroupName,1); + await eventListener.AssertMaximumLength(nameof(resourceGroupName),resourceGroupName,90); + await eventListener.AssertRegEx(nameof(resourceGroupName),resourceGroupName,@"^[-\w\._\(\)]+$"); + await eventListener.AssertNotNull(nameof(privateCloudName),privateCloudName); + await eventListener.AssertNotNull(nameof(clusterName),clusterName); + } + } + + /// List clusters in a private cloud + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. + /// Name of the private cloud + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task ClustersList(string subscriptionId, string resourceGroupName, string privateCloudName, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + var apiVersion = @"2020-03-20"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + global::System.Uri.EscapeDataString(subscriptionId) + + "/resourceGroups/" + + global::System.Uri.EscapeDataString(resourceGroupName) + + "/providers/Microsoft.AVS/privateClouds/" + + global::System.Uri.EscapeDataString(privateCloudName) + + "/clusters" + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.ClustersList_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// List clusters in a private cloud + /// + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task ClustersListViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + var apiVersion = @"2020-03-20"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // verify that Identity format is an exact match for uri + + var _match = new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/Microsoft.AVS/privateClouds/(?[^/]+)/clusters$").Match(viaIdentity); + if (!_match.Success) + { + throw new global::System.Exception("Invalid identity for URI '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AVS/privateClouds/{privateCloudName}/clusters'"); + } + + // replace URI parameters with values from identity + var subscriptionId = _match.Groups["subscriptionId"].Value; + var resourceGroupName = _match.Groups["resourceGroupName"].Value; + var privateCloudName = _match.Groups["privateCloudName"].Value; + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + subscriptionId + + "/resourceGroups/" + + resourceGroupName + + "/providers/Microsoft.AVS/privateClouds/" + + privateCloudName + + "/clusters" + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.ClustersList_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// Actual wire call for method. + /// the prepared HttpRequestMessage to send. + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task ClustersList_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + using( NoSynchronizationContext ) + { + global::System.Net.Http.HttpResponseMessage _response = null; + try + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ClusterList.FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Finally, request, _response); + _response?.Dispose(); + request?.Dispose(); + } + } + } + + /// + /// Validation method for method. Call this like the actual call, but you will get validation + /// events back. + /// + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. + /// Name of the private cloud + /// an instance that will receive events. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task ClustersList_Validate(string subscriptionId, string resourceGroupName, string privateCloudName, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener) + { + using( NoSynchronizationContext ) + { + await eventListener.AssertNotNull(nameof(subscriptionId),subscriptionId); + await eventListener.AssertMinimumLength(nameof(subscriptionId),subscriptionId,1); + await eventListener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); + await eventListener.AssertMinimumLength(nameof(resourceGroupName),resourceGroupName,1); + await eventListener.AssertMaximumLength(nameof(resourceGroupName),resourceGroupName,90); + await eventListener.AssertRegEx(nameof(resourceGroupName),resourceGroupName,@"^[-\w\._\(\)]+$"); + await eventListener.AssertNotNull(nameof(privateCloudName),privateCloudName); + } + } + + /// Update a cluster in a private cloud + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. + /// Name of the private cloud + /// Name of the cluster in the private cloud + /// The cluster properties to be updated + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task ClustersUpdate(string subscriptionId, string resourceGroupName, string privateCloudName, string clusterName, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdate body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + var apiVersion = @"2020-03-20"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + global::System.Uri.EscapeDataString(subscriptionId) + + "/resourceGroups/" + + global::System.Uri.EscapeDataString(resourceGroupName) + + "/providers/Microsoft.AVS/privateClouds/" + + global::System.Uri.EscapeDataString(privateCloudName) + + "/clusters/" + + global::System.Uri.EscapeDataString(clusterName) + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Patch, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // set body content + request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BodyContentSet, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.ClustersUpdate_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// Update a cluster in a private cloud + /// + /// The cluster properties to be updated + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task ClustersUpdateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdate body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + var apiVersion = @"2020-03-20"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // verify that Identity format is an exact match for uri + + var _match = new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/Microsoft.AVS/privateClouds/(?[^/]+)/clusters/(?[^/]+)$").Match(viaIdentity); + if (!_match.Success) + { + throw new global::System.Exception("Invalid identity for URI '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AVS/privateClouds/{privateCloudName}/clusters/{clusterName}'"); + } + + // replace URI parameters with values from identity + var subscriptionId = _match.Groups["subscriptionId"].Value; + var resourceGroupName = _match.Groups["resourceGroupName"].Value; + var privateCloudName = _match.Groups["privateCloudName"].Value; + var clusterName = _match.Groups["clusterName"].Value; + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + subscriptionId + + "/resourceGroups/" + + resourceGroupName + + "/providers/Microsoft.AVS/privateClouds/" + + privateCloudName + + "/clusters/" + + clusterName + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Patch, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // set body content + request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BodyContentSet, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.ClustersUpdate_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// Actual wire call for method. + /// the prepared HttpRequestMessage to send. + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task ClustersUpdate_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + using( NoSynchronizationContext ) + { + global::System.Net.Http.HttpResponseMessage _response = null; + try + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + // this operation supports x-ms-long-running-operation + var _originalUri = request.RequestUri.AbsoluteUri; + // declared final-state-via: default + var asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = _response.GetFirstHeader(@"Location"); + while (_response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + { + + // get the delay before polling. (default to 30 seconds if not present) + int delay = (int)(_response.Headers.RetryAfter?.Delta?.TotalSeconds ?? 30); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.DelayBeforePolling, $"Delaying {delay} seconds before polling.", _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + // start the delay timer (we'll await later...) + var waiting = global::System.Threading.Tasks.Task.Delay(delay * 1000, eventListener.Token ); + + // while we wait, let's grab the headers and get ready to poll. + if (!System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Azure-AsyncOperation"))) { + asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + } + if (!global::System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Location"))) { + location = _response.GetFirstHeader(@"Location"); + } + var _uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? _originalUri : location : asyncOperation; + request = request.CloneAndDispose(new global::System.Uri(_uri), Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Get); + + // and let's look at the current response body and see if we have some information we can give back to the listener + var content = await _response.Content.ReadAsStringAsync(); + await waiting; + + // check for cancellation + if( eventListener.Token.IsCancellationRequested ) { return; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Polling, $"Polling {_uri}.", _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + // drop the old response + _response?.Dispose(); + + // make the polling call + _response = await sender.SendAsync(request, eventListener); + + // if we got back an OK, take a peek inside and see if it's done + if( _response.StatusCode == global::System.Net.HttpStatusCode.OK) + { + try { + if( Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(await _response.Content.ReadAsStringAsync()) is Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json) + { + var state = json.Property("properties")?.PropertyT("provisioningState") ?? json.PropertyT("status"); + if( state is null ) + { + // the body doesn't contain any information that has the state of the LRO + // we're going to just get out, and let the consumer have the result + break; + } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Polling, $"Polled {_uri} provisioning state {state}.", _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + switch( state?.ToString()?.ToLower() ) + { + case "succeeded": + case "failed": + case "canceled": + // we're done polling. + break; + + default: + // need to keep polling! + _response.StatusCode = global::System.Net.HttpStatusCode.Created; + continue; + } + } + } catch { + // if we run into a problem peeking into the result, + // we really don't want to do anything special. + } + } + + // check for terminal status code + if (_response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + { + continue; + } + // we are done polling, do a request on final target? + if (!string.IsNullOrWhiteSpace(_originalUri)) + { + // create a new request with the final uri + request = request.CloneAndDispose(new global::System.Uri(_originalUri), Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Get); + + // drop the old response + _response?.Dispose(); + + // make the final call + _response = await sender.SendAsync(request, eventListener); + break; + } + } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.Cluster.FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Finally, request, _response); + _response?.Dispose(); + request?.Dispose(); + } + } + } + + /// + /// Validation method for method. Call this like the actual call, but you will get validation + /// events back. + /// + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. + /// Name of the private cloud + /// Name of the cluster in the private cloud + /// The cluster properties to be updated + /// an instance that will receive events. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task ClustersUpdate_Validate(string subscriptionId, string resourceGroupName, string privateCloudName, string clusterName, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdate body, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener) + { + using( NoSynchronizationContext ) + { + await eventListener.AssertNotNull(nameof(subscriptionId),subscriptionId); + await eventListener.AssertMinimumLength(nameof(subscriptionId),subscriptionId,1); + await eventListener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); + await eventListener.AssertMinimumLength(nameof(resourceGroupName),resourceGroupName,1); + await eventListener.AssertMaximumLength(nameof(resourceGroupName),resourceGroupName,90); + await eventListener.AssertRegEx(nameof(resourceGroupName),resourceGroupName,@"^[-\w\._\(\)]+$"); + await eventListener.AssertNotNull(nameof(privateCloudName),privateCloudName); + await eventListener.AssertNotNull(nameof(clusterName),clusterName); + await eventListener.AssertNotNull(nameof(body), body); + await eventListener.AssertObjectIsValid(nameof(body), body); + } + } + + /// Create or update an HCX Enterprise Site in a private cloud + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. + /// The name of the private cloud. + /// Name of the HCX Enterprise Site in the private cloud + /// The HCX Enterprise Site + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns 201 (Created). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task HcxEnterpriseSitesCreateOrUpdate(string subscriptionId, string resourceGroupName, string privateCloudName, string hcxEnterpriseSiteName, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPathsZuk3RdSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameHcxenterprisesitesHcxenterprisesitenamePutRequestbodyContentApplicationJsonSchema body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onCreated, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + var apiVersion = @"2020-03-20"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + global::System.Uri.EscapeDataString(subscriptionId) + + "/resourceGroups/" + + global::System.Uri.EscapeDataString(resourceGroupName) + + "/providers/Microsoft.AVS/privateClouds/" + + global::System.Uri.EscapeDataString(privateCloudName) + + "/hcxEnterpriseSites/" + + global::System.Uri.EscapeDataString(hcxEnterpriseSiteName) + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Put, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // set body content + request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BodyContentSet, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.HcxEnterpriseSitesCreateOrUpdate_Call(request,onOk,onCreated,onDefault,eventListener,sender); + } + } + + /// Create or update an HCX Enterprise Site in a private cloud + /// + /// The HCX Enterprise Site + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns 201 (Created). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task HcxEnterpriseSitesCreateOrUpdateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPathsZuk3RdSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameHcxenterprisesitesHcxenterprisesitenamePutRequestbodyContentApplicationJsonSchema body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onCreated, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + var apiVersion = @"2020-03-20"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // verify that Identity format is an exact match for uri + + var _match = new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/Microsoft.AVS/privateClouds/(?[^/]+)/hcxEnterpriseSites/(?[^/]+)$").Match(viaIdentity); + if (!_match.Success) + { + throw new global::System.Exception("Invalid identity for URI '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AVS/privateClouds/{privateCloudName}/hcxEnterpriseSites/{hcxEnterpriseSiteName}'"); + } + + // replace URI parameters with values from identity + var subscriptionId = _match.Groups["subscriptionId"].Value; + var resourceGroupName = _match.Groups["resourceGroupName"].Value; + var privateCloudName = _match.Groups["privateCloudName"].Value; + var hcxEnterpriseSiteName = _match.Groups["hcxEnterpriseSiteName"].Value; + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + subscriptionId + + "/resourceGroups/" + + resourceGroupName + + "/providers/Microsoft.AVS/privateClouds/" + + privateCloudName + + "/hcxEnterpriseSites/" + + hcxEnterpriseSiteName + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Put, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // set body content + request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BodyContentSet, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.HcxEnterpriseSitesCreateOrUpdate_Call(request,onOk,onCreated,onDefault,eventListener,sender); + } + } + + /// Actual wire call for method. + /// the prepared HttpRequestMessage to send. + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns 201 (Created). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task HcxEnterpriseSitesCreateOrUpdate_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onCreated, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + using( NoSynchronizationContext ) + { + global::System.Net.Http.HttpResponseMessage _response = null; + try + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.HcxEnterpriseSite.FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + case global::System.Net.HttpStatusCode.Created: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onCreated(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.HcxEnterpriseSite.FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Finally, request, _response); + _response?.Dispose(); + request?.Dispose(); + } + } + } + + /// + /// Validation method for method. Call this like the actual call, but you + /// will get validation events back. + /// + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. + /// The name of the private cloud. + /// Name of the HCX Enterprise Site in the private cloud + /// The HCX Enterprise Site + /// an instance that will receive events. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task HcxEnterpriseSitesCreateOrUpdate_Validate(string subscriptionId, string resourceGroupName, string privateCloudName, string hcxEnterpriseSiteName, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPathsZuk3RdSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameHcxenterprisesitesHcxenterprisesitenamePutRequestbodyContentApplicationJsonSchema body, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener) + { + using( NoSynchronizationContext ) + { + await eventListener.AssertNotNull(nameof(subscriptionId),subscriptionId); + await eventListener.AssertMinimumLength(nameof(subscriptionId),subscriptionId,1); + await eventListener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); + await eventListener.AssertMinimumLength(nameof(resourceGroupName),resourceGroupName,1); + await eventListener.AssertMaximumLength(nameof(resourceGroupName),resourceGroupName,90); + await eventListener.AssertRegEx(nameof(resourceGroupName),resourceGroupName,@"^[-\w\._\(\)]+$"); + await eventListener.AssertNotNull(nameof(privateCloudName),privateCloudName); + await eventListener.AssertNotNull(nameof(hcxEnterpriseSiteName),hcxEnterpriseSiteName); + await eventListener.AssertNotNull(nameof(body), body); + await eventListener.AssertObjectIsValid(nameof(body), body); + } + } + + /// Delete an HCX Enterprise Site in a private cloud + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. + /// Name of the private cloud + /// Name of the HCX Enterprise Site in the private cloud + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns 204 (NoContent). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task HcxEnterpriseSitesDelete(string subscriptionId, string resourceGroupName, string privateCloudName, string hcxEnterpriseSiteName, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + var apiVersion = @"2020-03-20"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + global::System.Uri.EscapeDataString(subscriptionId) + + "/resourceGroups/" + + global::System.Uri.EscapeDataString(resourceGroupName) + + "/providers/Microsoft.AVS/privateClouds/" + + global::System.Uri.EscapeDataString(privateCloudName) + + "/hcxEnterpriseSites/" + + global::System.Uri.EscapeDataString(hcxEnterpriseSiteName) + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Delete, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.HcxEnterpriseSitesDelete_Call(request,onOk,onNoContent,onDefault,eventListener,sender); + } + } + + /// Delete an HCX Enterprise Site in a private cloud + /// + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns 204 (NoContent). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task HcxEnterpriseSitesDeleteViaIdentity(global::System.String viaIdentity, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + var apiVersion = @"2020-03-20"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // verify that Identity format is an exact match for uri + + var _match = new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/Microsoft.AVS/privateClouds/(?[^/]+)/hcxEnterpriseSites/(?[^/]+)$").Match(viaIdentity); + if (!_match.Success) + { + throw new global::System.Exception("Invalid identity for URI '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AVS/privateClouds/{privateCloudName}/hcxEnterpriseSites/{hcxEnterpriseSiteName}'"); + } + + // replace URI parameters with values from identity + var subscriptionId = _match.Groups["subscriptionId"].Value; + var resourceGroupName = _match.Groups["resourceGroupName"].Value; + var privateCloudName = _match.Groups["privateCloudName"].Value; + var hcxEnterpriseSiteName = _match.Groups["hcxEnterpriseSiteName"].Value; + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + subscriptionId + + "/resourceGroups/" + + resourceGroupName + + "/providers/Microsoft.AVS/privateClouds/" + + privateCloudName + + "/hcxEnterpriseSites/" + + hcxEnterpriseSiteName + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Delete, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.HcxEnterpriseSitesDelete_Call(request,onOk,onNoContent,onDefault,eventListener,sender); + } + } + + /// Actual wire call for method. + /// the prepared HttpRequestMessage to send. + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns 204 (NoContent). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task HcxEnterpriseSitesDelete_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + using( NoSynchronizationContext ) + { + global::System.Net.Http.HttpResponseMessage _response = null; + try + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onOk(_response); + break; + } + case global::System.Net.HttpStatusCode.NoContent: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onNoContent(_response); + break; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Finally, request, _response); + _response?.Dispose(); + request?.Dispose(); + } + } + } + + /// + /// Validation method for method. Call this like the actual call, but you will get + /// validation events back. + /// + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. + /// Name of the private cloud + /// Name of the HCX Enterprise Site in the private cloud + /// an instance that will receive events. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task HcxEnterpriseSitesDelete_Validate(string subscriptionId, string resourceGroupName, string privateCloudName, string hcxEnterpriseSiteName, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener) + { + using( NoSynchronizationContext ) + { + await eventListener.AssertNotNull(nameof(subscriptionId),subscriptionId); + await eventListener.AssertMinimumLength(nameof(subscriptionId),subscriptionId,1); + await eventListener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); + await eventListener.AssertMinimumLength(nameof(resourceGroupName),resourceGroupName,1); + await eventListener.AssertMaximumLength(nameof(resourceGroupName),resourceGroupName,90); + await eventListener.AssertRegEx(nameof(resourceGroupName),resourceGroupName,@"^[-\w\._\(\)]+$"); + await eventListener.AssertNotNull(nameof(privateCloudName),privateCloudName); + await eventListener.AssertNotNull(nameof(hcxEnterpriseSiteName),hcxEnterpriseSiteName); + } + } + + /// Get an HCX Enterprise Site by name in a private cloud + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. + /// Name of the private cloud + /// Name of the HCX Enterprise Site in the private cloud + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task HcxEnterpriseSitesGet(string subscriptionId, string resourceGroupName, string privateCloudName, string hcxEnterpriseSiteName, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + var apiVersion = @"2020-03-20"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + global::System.Uri.EscapeDataString(subscriptionId) + + "/resourceGroups/" + + global::System.Uri.EscapeDataString(resourceGroupName) + + "/providers/Microsoft.AVS/privateClouds/" + + global::System.Uri.EscapeDataString(privateCloudName) + + "/hcxEnterpriseSites/" + + global::System.Uri.EscapeDataString(hcxEnterpriseSiteName) + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.HcxEnterpriseSitesGet_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// Get an HCX Enterprise Site by name in a private cloud + /// + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task HcxEnterpriseSitesGetViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + var apiVersion = @"2020-03-20"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // verify that Identity format is an exact match for uri + + var _match = new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/Microsoft.AVS/privateClouds/(?[^/]+)/hcxEnterpriseSites/(?[^/]+)$").Match(viaIdentity); + if (!_match.Success) + { + throw new global::System.Exception("Invalid identity for URI '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AVS/privateClouds/{privateCloudName}/hcxEnterpriseSites/{hcxEnterpriseSiteName}'"); + } + + // replace URI parameters with values from identity + var subscriptionId = _match.Groups["subscriptionId"].Value; + var resourceGroupName = _match.Groups["resourceGroupName"].Value; + var privateCloudName = _match.Groups["privateCloudName"].Value; + var hcxEnterpriseSiteName = _match.Groups["hcxEnterpriseSiteName"].Value; + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + subscriptionId + + "/resourceGroups/" + + resourceGroupName + + "/providers/Microsoft.AVS/privateClouds/" + + privateCloudName + + "/hcxEnterpriseSites/" + + hcxEnterpriseSiteName + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.HcxEnterpriseSitesGet_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// Actual wire call for method. + /// the prepared HttpRequestMessage to send. + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task HcxEnterpriseSitesGet_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + using( NoSynchronizationContext ) + { + global::System.Net.Http.HttpResponseMessage _response = null; + try + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.HcxEnterpriseSite.FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Finally, request, _response); + _response?.Dispose(); + request?.Dispose(); + } + } + } + + /// + /// Validation method for method. Call this like the actual call, but you will get validation + /// events back. + /// + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. + /// Name of the private cloud + /// Name of the HCX Enterprise Site in the private cloud + /// an instance that will receive events. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task HcxEnterpriseSitesGet_Validate(string subscriptionId, string resourceGroupName, string privateCloudName, string hcxEnterpriseSiteName, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener) + { + using( NoSynchronizationContext ) + { + await eventListener.AssertNotNull(nameof(subscriptionId),subscriptionId); + await eventListener.AssertMinimumLength(nameof(subscriptionId),subscriptionId,1); + await eventListener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); + await eventListener.AssertMinimumLength(nameof(resourceGroupName),resourceGroupName,1); + await eventListener.AssertMaximumLength(nameof(resourceGroupName),resourceGroupName,90); + await eventListener.AssertRegEx(nameof(resourceGroupName),resourceGroupName,@"^[-\w\._\(\)]+$"); + await eventListener.AssertNotNull(nameof(privateCloudName),privateCloudName); + await eventListener.AssertNotNull(nameof(hcxEnterpriseSiteName),hcxEnterpriseSiteName); + } + } + + /// List HCX Enterprise Sites in a private cloud + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. + /// Name of the private cloud + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task HcxEnterpriseSitesList(string subscriptionId, string resourceGroupName, string privateCloudName, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + var apiVersion = @"2020-03-20"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + global::System.Uri.EscapeDataString(subscriptionId) + + "/resourceGroups/" + + global::System.Uri.EscapeDataString(resourceGroupName) + + "/providers/Microsoft.AVS/privateClouds/" + + global::System.Uri.EscapeDataString(privateCloudName) + + "/hcxEnterpriseSites" + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.HcxEnterpriseSitesList_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// List HCX Enterprise Sites in a private cloud + /// + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task HcxEnterpriseSitesListViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + var apiVersion = @"2020-03-20"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // verify that Identity format is an exact match for uri + + var _match = new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/Microsoft.AVS/privateClouds/(?[^/]+)/hcxEnterpriseSites$").Match(viaIdentity); + if (!_match.Success) + { + throw new global::System.Exception("Invalid identity for URI '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AVS/privateClouds/{privateCloudName}/hcxEnterpriseSites'"); + } + + // replace URI parameters with values from identity + var subscriptionId = _match.Groups["subscriptionId"].Value; + var resourceGroupName = _match.Groups["resourceGroupName"].Value; + var privateCloudName = _match.Groups["privateCloudName"].Value; + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + subscriptionId + + "/resourceGroups/" + + resourceGroupName + + "/providers/Microsoft.AVS/privateClouds/" + + privateCloudName + + "/hcxEnterpriseSites" + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.HcxEnterpriseSitesList_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// Actual wire call for method. + /// the prepared HttpRequestMessage to send. + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task HcxEnterpriseSitesList_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + using( NoSynchronizationContext ) + { + global::System.Net.Http.HttpResponseMessage _response = null; + try + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.HcxEnterpriseSiteList.FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Finally, request, _response); + _response?.Dispose(); + request?.Dispose(); + } + } + } + + /// + /// Validation method for method. Call this like the actual call, but you will get validation + /// events back. + /// + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. + /// Name of the private cloud + /// an instance that will receive events. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task HcxEnterpriseSitesList_Validate(string subscriptionId, string resourceGroupName, string privateCloudName, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener) + { + using( NoSynchronizationContext ) + { + await eventListener.AssertNotNull(nameof(subscriptionId),subscriptionId); + await eventListener.AssertMinimumLength(nameof(subscriptionId),subscriptionId,1); + await eventListener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); + await eventListener.AssertMinimumLength(nameof(resourceGroupName),resourceGroupName,1); + await eventListener.AssertMaximumLength(nameof(resourceGroupName),resourceGroupName,90); + await eventListener.AssertRegEx(nameof(resourceGroupName),resourceGroupName,@"^[-\w\._\(\)]+$"); + await eventListener.AssertNotNull(nameof(privateCloudName),privateCloudName); + } + } + + /// Return quota for subscription by region + /// The ID of the target subscription. + /// Azure region + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task LocationsCheckQuotaAvailability(string subscriptionId, string location, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + var apiVersion = @"2020-03-20"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + global::System.Uri.EscapeDataString(subscriptionId) + + "/providers/Microsoft.AVS/locations/" + + global::System.Uri.EscapeDataString(location) + + "/checkQuotaAvailability" + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Post, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.LocationsCheckQuotaAvailability_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// Return quota for subscription by region + /// + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task LocationsCheckQuotaAvailabilityViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + var apiVersion = @"2020-03-20"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // verify that Identity format is an exact match for uri + + var _match = new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/providers/Microsoft.AVS/locations/(?[^/]+)$").Match(viaIdentity); + if (!_match.Success) + { + throw new global::System.Exception("Invalid identity for URI '/subscriptions/{subscriptionId}/providers/Microsoft.AVS/locations/{location}/checkQuotaAvailability'"); + } + + // replace URI parameters with values from identity + var subscriptionId = _match.Groups["subscriptionId"].Value; + var location = _match.Groups["location"].Value; + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + subscriptionId + + "/providers/Microsoft.AVS/locations/" + + location + + "/checkQuotaAvailability" + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Post, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.LocationsCheckQuotaAvailability_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// Actual wire call for method. + /// the prepared HttpRequestMessage to send. + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task LocationsCheckQuotaAvailability_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + using( NoSynchronizationContext ) + { + global::System.Net.Http.HttpResponseMessage _response = null; + try + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.Quota.FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Finally, request, _response); + _response?.Dispose(); + request?.Dispose(); + } + } + } + + /// + /// Validation method for method. Call this like the actual call, but you will + /// get validation events back. + /// + /// The ID of the target subscription. + /// Azure region + /// an instance that will receive events. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task LocationsCheckQuotaAvailability_Validate(string subscriptionId, string location, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener) + { + using( NoSynchronizationContext ) + { + await eventListener.AssertNotNull(nameof(subscriptionId),subscriptionId); + await eventListener.AssertMinimumLength(nameof(subscriptionId),subscriptionId,1); + await eventListener.AssertNotNull(nameof(location),location); + } + } + + /// Return trial status for subscription by region + /// The ID of the target subscription. + /// Azure region + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task LocationsCheckTrialAvailability(string subscriptionId, string location, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + var apiVersion = @"2020-03-20"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + global::System.Uri.EscapeDataString(subscriptionId) + + "/providers/Microsoft.AVS/locations/" + + global::System.Uri.EscapeDataString(location) + + "/checkTrialAvailability" + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Post, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.LocationsCheckTrialAvailability_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// Return trial status for subscription by region + /// + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task LocationsCheckTrialAvailabilityViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + var apiVersion = @"2020-03-20"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // verify that Identity format is an exact match for uri + + var _match = new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/providers/Microsoft.AVS/locations/(?[^/]+)$").Match(viaIdentity); + if (!_match.Success) + { + throw new global::System.Exception("Invalid identity for URI '/subscriptions/{subscriptionId}/providers/Microsoft.AVS/locations/{location}/checkTrialAvailability'"); + } + + // replace URI parameters with values from identity + var subscriptionId = _match.Groups["subscriptionId"].Value; + var location = _match.Groups["location"].Value; + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + subscriptionId + + "/providers/Microsoft.AVS/locations/" + + location + + "/checkTrialAvailability" + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Post, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.LocationsCheckTrialAvailability_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// Actual wire call for method. + /// the prepared HttpRequestMessage to send. + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task LocationsCheckTrialAvailability_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + using( NoSynchronizationContext ) + { + global::System.Net.Http.HttpResponseMessage _response = null; + try + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.Trial.FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Finally, request, _response); + _response?.Dispose(); + request?.Dispose(); + } + } + } + + /// + /// Validation method for method. Call this like the actual call, but you will + /// get validation events back. + /// + /// The ID of the target subscription. + /// Azure region + /// an instance that will receive events. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task LocationsCheckTrialAvailability_Validate(string subscriptionId, string location, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener) + { + using( NoSynchronizationContext ) + { + await eventListener.AssertNotNull(nameof(subscriptionId),subscriptionId); + await eventListener.AssertMinimumLength(nameof(subscriptionId),subscriptionId,1); + await eventListener.AssertNotNull(nameof(location),location); + } + } + + /// Lists all of the available operations + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task OperationsList(global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + var apiVersion = @"2020-03-20"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/providers/Microsoft.AVS/operations" + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.OperationsList_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// Lists all of the available operations + /// + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task OperationsListViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + var apiVersion = @"2020-03-20"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // verify that Identity format is an exact match for uri + + var _match = new global::System.Text.RegularExpressions.Regex("^/providers/Microsoft.AVS/operations$").Match(viaIdentity); + if (!_match.Success) + { + throw new global::System.Exception("Invalid identity for URI '/providers/Microsoft.AVS/operations'"); + } + + // replace URI parameters with values from identity + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/providers/Microsoft.AVS/operations" + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.OperationsList_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// Actual wire call for method. + /// the prepared HttpRequestMessage to send. + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task OperationsList_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + using( NoSynchronizationContext ) + { + global::System.Net.Http.HttpResponseMessage _response = null; + try + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.OperationList.FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Finally, request, _response); + _response?.Dispose(); + request?.Dispose(); + } + } + } + + /// + /// Validation method for method. Call this like the actual call, but you will get validation + /// events back. + /// + /// an instance that will receive events. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task OperationsList_Validate(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener) + { + using( NoSynchronizationContext ) + { + + } + } + + /// Create or update a private cloud + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. + /// Name of the private cloud + /// The private cloud + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task PrivateCloudsCreateOrUpdate(string subscriptionId, string resourceGroupName, string privateCloudName, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + var apiVersion = @"2020-03-20"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + global::System.Uri.EscapeDataString(subscriptionId) + + "/resourceGroups/" + + global::System.Uri.EscapeDataString(resourceGroupName) + + "/providers/Microsoft.AVS/privateClouds/" + + global::System.Uri.EscapeDataString(privateCloudName) + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Put, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // set body content + request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BodyContentSet, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.PrivateCloudsCreateOrUpdate_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// Create or update a private cloud + /// + /// The private cloud + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task PrivateCloudsCreateOrUpdateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + var apiVersion = @"2020-03-20"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // verify that Identity format is an exact match for uri + + var _match = new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/Microsoft.AVS/privateClouds/(?[^/]+)$").Match(viaIdentity); + if (!_match.Success) + { + throw new global::System.Exception("Invalid identity for URI '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AVS/privateClouds/{privateCloudName}'"); + } + + // replace URI parameters with values from identity + var subscriptionId = _match.Groups["subscriptionId"].Value; + var resourceGroupName = _match.Groups["resourceGroupName"].Value; + var privateCloudName = _match.Groups["privateCloudName"].Value; + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + subscriptionId + + "/resourceGroups/" + + resourceGroupName + + "/providers/Microsoft.AVS/privateClouds/" + + privateCloudName + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Put, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // set body content + request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BodyContentSet, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.PrivateCloudsCreateOrUpdate_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// Actual wire call for method. + /// the prepared HttpRequestMessage to send. + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task PrivateCloudsCreateOrUpdate_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + using( NoSynchronizationContext ) + { + global::System.Net.Http.HttpResponseMessage _response = null; + try + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + // this operation supports x-ms-long-running-operation + var _originalUri = request.RequestUri.AbsoluteUri; + // declared final-state-via: default + var asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = _response.GetFirstHeader(@"Location"); + while (_response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + { + + // get the delay before polling. (default to 30 seconds if not present) + int delay = (int)(_response.Headers.RetryAfter?.Delta?.TotalSeconds ?? 30); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.DelayBeforePolling, $"Delaying {delay} seconds before polling.", _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + // start the delay timer (we'll await later...) + var waiting = global::System.Threading.Tasks.Task.Delay(delay * 1000, eventListener.Token ); + + // while we wait, let's grab the headers and get ready to poll. + if (!System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Azure-AsyncOperation"))) { + asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + } + if (!global::System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Location"))) { + location = _response.GetFirstHeader(@"Location"); + } + var _uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? _originalUri : location : asyncOperation; + request = request.CloneAndDispose(new global::System.Uri(_uri), Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Get); + + // and let's look at the current response body and see if we have some information we can give back to the listener + var content = await _response.Content.ReadAsStringAsync(); + await waiting; + + // check for cancellation + if( eventListener.Token.IsCancellationRequested ) { return; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Polling, $"Polling {_uri}.", _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + // drop the old response + _response?.Dispose(); + + // make the polling call + _response = await sender.SendAsync(request, eventListener); + + // if we got back an OK, take a peek inside and see if it's done + if( _response.StatusCode == global::System.Net.HttpStatusCode.OK) + { + try { + if( Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(await _response.Content.ReadAsStringAsync()) is Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json) + { + var state = json.Property("properties")?.PropertyT("provisioningState") ?? json.PropertyT("status"); + if( state is null ) + { + // the body doesn't contain any information that has the state of the LRO + // we're going to just get out, and let the consumer have the result + break; + } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Polling, $"Polled {_uri} provisioning state {state}.", _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + switch( state?.ToString()?.ToLower() ) + { + case "succeeded": + case "failed": + case "canceled": + // we're done polling. + break; + + default: + // need to keep polling! + _response.StatusCode = global::System.Net.HttpStatusCode.Created; + continue; + } + } + } catch { + // if we run into a problem peeking into the result, + // we really don't want to do anything special. + } + } + + // check for terminal status code + if (_response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + { + continue; + } + // we are done polling, do a request on final target? + if (!string.IsNullOrWhiteSpace(_originalUri)) + { + // create a new request with the final uri + request = request.CloneAndDispose(new global::System.Uri(_originalUri), Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Get); + + // drop the old response + _response?.Dispose(); + + // make the final call + _response = await sender.SendAsync(request, eventListener); + break; + } + } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.PrivateCloud.FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Finally, request, _response); + _response?.Dispose(); + request?.Dispose(); + } + } + } + + /// + /// Validation method for method. Call this like the actual call, but you will + /// get validation events back. + /// + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. + /// Name of the private cloud + /// The private cloud + /// an instance that will receive events. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task PrivateCloudsCreateOrUpdate_Validate(string subscriptionId, string resourceGroupName, string privateCloudName, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud body, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener) + { + using( NoSynchronizationContext ) + { + await eventListener.AssertNotNull(nameof(subscriptionId),subscriptionId); + await eventListener.AssertMinimumLength(nameof(subscriptionId),subscriptionId,1); + await eventListener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); + await eventListener.AssertMinimumLength(nameof(resourceGroupName),resourceGroupName,1); + await eventListener.AssertMaximumLength(nameof(resourceGroupName),resourceGroupName,90); + await eventListener.AssertRegEx(nameof(resourceGroupName),resourceGroupName,@"^[-\w\._\(\)]+$"); + await eventListener.AssertNotNull(nameof(privateCloudName),privateCloudName); + await eventListener.AssertNotNull(nameof(body), body); + await eventListener.AssertObjectIsValid(nameof(body), body); + } + } + + /// Delete a private cloud + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. + /// Name of the private cloud + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns 204 (NoContent). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task PrivateCloudsDelete(string subscriptionId, string resourceGroupName, string privateCloudName, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + var apiVersion = @"2020-03-20"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + global::System.Uri.EscapeDataString(subscriptionId) + + "/resourceGroups/" + + global::System.Uri.EscapeDataString(resourceGroupName) + + "/providers/Microsoft.AVS/privateClouds/" + + global::System.Uri.EscapeDataString(privateCloudName) + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Delete, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.PrivateCloudsDelete_Call(request,onOk,onNoContent,onDefault,eventListener,sender); + } + } + + /// Delete a private cloud + /// + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns 204 (NoContent). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task PrivateCloudsDeleteViaIdentity(global::System.String viaIdentity, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + var apiVersion = @"2020-03-20"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // verify that Identity format is an exact match for uri + + var _match = new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/Microsoft.AVS/privateClouds/(?[^/]+)$").Match(viaIdentity); + if (!_match.Success) + { + throw new global::System.Exception("Invalid identity for URI '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AVS/privateClouds/{privateCloudName}'"); + } + + // replace URI parameters with values from identity + var subscriptionId = _match.Groups["subscriptionId"].Value; + var resourceGroupName = _match.Groups["resourceGroupName"].Value; + var privateCloudName = _match.Groups["privateCloudName"].Value; + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + subscriptionId + + "/resourceGroups/" + + resourceGroupName + + "/providers/Microsoft.AVS/privateClouds/" + + privateCloudName + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Delete, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.PrivateCloudsDelete_Call(request,onOk,onNoContent,onDefault,eventListener,sender); + } + } + + /// Actual wire call for method. + /// the prepared HttpRequestMessage to send. + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns 204 (NoContent). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task PrivateCloudsDelete_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + using( NoSynchronizationContext ) + { + global::System.Net.Http.HttpResponseMessage _response = null; + try + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + // this operation supports x-ms-long-running-operation + var _originalUri = request.RequestUri.AbsoluteUri; + // declared final-state-via: default + var _finalUri = _response.GetFirstHeader(@"Location"); + var asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = _response.GetFirstHeader(@"Location"); + while (_response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + { + + // get the delay before polling. (default to 30 seconds if not present) + int delay = (int)(_response.Headers.RetryAfter?.Delta?.TotalSeconds ?? 30); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.DelayBeforePolling, $"Delaying {delay} seconds before polling.", _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + // start the delay timer (we'll await later...) + var waiting = global::System.Threading.Tasks.Task.Delay(delay * 1000, eventListener.Token ); + + // while we wait, let's grab the headers and get ready to poll. + if (!System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Azure-AsyncOperation"))) { + asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + } + if (!global::System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Location"))) { + location = _response.GetFirstHeader(@"Location"); + } + var _uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? _originalUri : location : asyncOperation; + request = request.CloneAndDispose(new global::System.Uri(_uri), Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Get); + + // and let's look at the current response body and see if we have some information we can give back to the listener + var content = await _response.Content.ReadAsStringAsync(); + await waiting; + + // check for cancellation + if( eventListener.Token.IsCancellationRequested ) { return; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Polling, $"Polling {_uri}.", _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + // drop the old response + _response?.Dispose(); + + // make the polling call + _response = await sender.SendAsync(request, eventListener); + + // if we got back an OK, take a peek inside and see if it's done + if( _response.StatusCode == global::System.Net.HttpStatusCode.OK) + { + try { + if( Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(await _response.Content.ReadAsStringAsync()) is Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json) + { + var state = json.Property("properties")?.PropertyT("provisioningState") ?? json.PropertyT("status"); + if( state is null ) + { + // the body doesn't contain any information that has the state of the LRO + // we're going to just get out, and let the consumer have the result + break; + } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Polling, $"Polled {_uri} provisioning state {state}.", _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + switch( state?.ToString()?.ToLower() ) + { + case "succeeded": + case "failed": + case "canceled": + // we're done polling. + break; + + default: + // need to keep polling! + _response.StatusCode = global::System.Net.HttpStatusCode.Created; + continue; + } + } + } catch { + // if we run into a problem peeking into the result, + // we really don't want to do anything special. + } + } + + // check for terminal status code + if (_response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + { + continue; + } + // we are done polling, do a request on final target? + if (!string.IsNullOrWhiteSpace(_finalUri)) + { + // create a new request with the final uri + request = request.CloneAndDispose(new global::System.Uri(_finalUri), Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Get); + + // drop the old response + _response?.Dispose(); + + // make the final call + _response = await sender.SendAsync(request, eventListener); + break; + } + } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onOk(_response); + break; + } + case global::System.Net.HttpStatusCode.NoContent: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onNoContent(_response); + break; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Finally, request, _response); + _response?.Dispose(); + request?.Dispose(); + } + } + } + + /// + /// Validation method for method. Call this like the actual call, but you will get validation + /// events back. + /// + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. + /// Name of the private cloud + /// an instance that will receive events. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task PrivateCloudsDelete_Validate(string subscriptionId, string resourceGroupName, string privateCloudName, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener) + { + using( NoSynchronizationContext ) + { + await eventListener.AssertNotNull(nameof(subscriptionId),subscriptionId); + await eventListener.AssertMinimumLength(nameof(subscriptionId),subscriptionId,1); + await eventListener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); + await eventListener.AssertMinimumLength(nameof(resourceGroupName),resourceGroupName,1); + await eventListener.AssertMaximumLength(nameof(resourceGroupName),resourceGroupName,90); + await eventListener.AssertRegEx(nameof(resourceGroupName),resourceGroupName,@"^[-\w\._\(\)]+$"); + await eventListener.AssertNotNull(nameof(privateCloudName),privateCloudName); + } + } + + /// Get a private cloud + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. + /// Name of the private cloud + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task PrivateCloudsGet(string subscriptionId, string resourceGroupName, string privateCloudName, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + var apiVersion = @"2020-03-20"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + global::System.Uri.EscapeDataString(subscriptionId) + + "/resourceGroups/" + + global::System.Uri.EscapeDataString(resourceGroupName) + + "/providers/Microsoft.AVS/privateClouds/" + + global::System.Uri.EscapeDataString(privateCloudName) + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.PrivateCloudsGet_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// Get a private cloud + /// + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task PrivateCloudsGetViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + var apiVersion = @"2020-03-20"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // verify that Identity format is an exact match for uri + + var _match = new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/Microsoft.AVS/privateClouds/(?[^/]+)$").Match(viaIdentity); + if (!_match.Success) + { + throw new global::System.Exception("Invalid identity for URI '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AVS/privateClouds/{privateCloudName}'"); + } + + // replace URI parameters with values from identity + var subscriptionId = _match.Groups["subscriptionId"].Value; + var resourceGroupName = _match.Groups["resourceGroupName"].Value; + var privateCloudName = _match.Groups["privateCloudName"].Value; + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + subscriptionId + + "/resourceGroups/" + + resourceGroupName + + "/providers/Microsoft.AVS/privateClouds/" + + privateCloudName + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.PrivateCloudsGet_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// Actual wire call for method. + /// the prepared HttpRequestMessage to send. + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task PrivateCloudsGet_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + using( NoSynchronizationContext ) + { + global::System.Net.Http.HttpResponseMessage _response = null; + try + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.PrivateCloud.FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Finally, request, _response); + _response?.Dispose(); + request?.Dispose(); + } + } + } + + /// + /// Validation method for method. Call this like the actual call, but you will get validation + /// events back. + /// + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. + /// Name of the private cloud + /// an instance that will receive events. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task PrivateCloudsGet_Validate(string subscriptionId, string resourceGroupName, string privateCloudName, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener) + { + using( NoSynchronizationContext ) + { + await eventListener.AssertNotNull(nameof(subscriptionId),subscriptionId); + await eventListener.AssertMinimumLength(nameof(subscriptionId),subscriptionId,1); + await eventListener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); + await eventListener.AssertMinimumLength(nameof(resourceGroupName),resourceGroupName,1); + await eventListener.AssertMaximumLength(nameof(resourceGroupName),resourceGroupName,90); + await eventListener.AssertRegEx(nameof(resourceGroupName),resourceGroupName,@"^[-\w\._\(\)]+$"); + await eventListener.AssertNotNull(nameof(privateCloudName),privateCloudName); + } + } + + /// List private clouds in a resource group + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task PrivateCloudsList(string subscriptionId, string resourceGroupName, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + var apiVersion = @"2020-03-20"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + global::System.Uri.EscapeDataString(subscriptionId) + + "/resourceGroups/" + + global::System.Uri.EscapeDataString(resourceGroupName) + + "/providers/Microsoft.AVS/privateClouds" + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.PrivateCloudsList_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// List the admin credentials for the private cloud + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. + /// Name of the private cloud + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task PrivateCloudsListAdminCredentials(string subscriptionId, string resourceGroupName, string privateCloudName, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + var apiVersion = @"2020-03-20"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + global::System.Uri.EscapeDataString(subscriptionId) + + "/resourceGroups/" + + global::System.Uri.EscapeDataString(resourceGroupName) + + "/providers/Microsoft.AVS/privateClouds/" + + global::System.Uri.EscapeDataString(privateCloudName) + + "/listAdminCredentials" + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Post, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.PrivateCloudsListAdminCredentials_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// List the admin credentials for the private cloud + /// + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task PrivateCloudsListAdminCredentialsViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + var apiVersion = @"2020-03-20"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // verify that Identity format is an exact match for uri + + var _match = new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/Microsoft.AVS/privateClouds/(?[^/]+)$").Match(viaIdentity); + if (!_match.Success) + { + throw new global::System.Exception("Invalid identity for URI '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AVS/privateClouds/{privateCloudName}/listAdminCredentials'"); + } + + // replace URI parameters with values from identity + var subscriptionId = _match.Groups["subscriptionId"].Value; + var resourceGroupName = _match.Groups["resourceGroupName"].Value; + var privateCloudName = _match.Groups["privateCloudName"].Value; + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + subscriptionId + + "/resourceGroups/" + + resourceGroupName + + "/providers/Microsoft.AVS/privateClouds/" + + privateCloudName + + "/listAdminCredentials" + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Post, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.PrivateCloudsListAdminCredentials_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// Actual wire call for method. + /// the prepared HttpRequestMessage to send. + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task PrivateCloudsListAdminCredentials_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + using( NoSynchronizationContext ) + { + global::System.Net.Http.HttpResponseMessage _response = null; + try + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.AdminCredentials.FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Finally, request, _response); + _response?.Dispose(); + request?.Dispose(); + } + } + } + + /// + /// Validation method for method. Call this like the actual call, but you + /// will get validation events back. + /// + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. + /// Name of the private cloud + /// an instance that will receive events. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task PrivateCloudsListAdminCredentials_Validate(string subscriptionId, string resourceGroupName, string privateCloudName, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener) + { + using( NoSynchronizationContext ) + { + await eventListener.AssertNotNull(nameof(subscriptionId),subscriptionId); + await eventListener.AssertMinimumLength(nameof(subscriptionId),subscriptionId,1); + await eventListener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); + await eventListener.AssertMinimumLength(nameof(resourceGroupName),resourceGroupName,1); + await eventListener.AssertMaximumLength(nameof(resourceGroupName),resourceGroupName,90); + await eventListener.AssertRegEx(nameof(resourceGroupName),resourceGroupName,@"^[-\w\._\(\)]+$"); + await eventListener.AssertNotNull(nameof(privateCloudName),privateCloudName); + } + } + + /// List private clouds in a subscription + /// The ID of the target subscription. + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task PrivateCloudsListInSubscription(string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + var apiVersion = @"2020-03-20"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + global::System.Uri.EscapeDataString(subscriptionId) + + "/providers/Microsoft.AVS/privateClouds" + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.PrivateCloudsListInSubscription_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// List private clouds in a subscription + /// + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task PrivateCloudsListInSubscriptionViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + var apiVersion = @"2020-03-20"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // verify that Identity format is an exact match for uri + + var _match = new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/providers/Microsoft.AVS/privateClouds$").Match(viaIdentity); + if (!_match.Success) + { + throw new global::System.Exception("Invalid identity for URI '/subscriptions/{subscriptionId}/providers/Microsoft.AVS/privateClouds'"); + } + + // replace URI parameters with values from identity + var subscriptionId = _match.Groups["subscriptionId"].Value; + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + subscriptionId + + "/providers/Microsoft.AVS/privateClouds" + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.PrivateCloudsListInSubscription_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// Actual wire call for method. + /// the prepared HttpRequestMessage to send. + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task PrivateCloudsListInSubscription_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + using( NoSynchronizationContext ) + { + global::System.Net.Http.HttpResponseMessage _response = null; + try + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.PrivateCloudList.FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Finally, request, _response); + _response?.Dispose(); + request?.Dispose(); + } + } + } + + /// + /// Validation method for method. Call this like the actual call, but you will + /// get validation events back. + /// + /// The ID of the target subscription. + /// an instance that will receive events. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task PrivateCloudsListInSubscription_Validate(string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener) + { + using( NoSynchronizationContext ) + { + await eventListener.AssertNotNull(nameof(subscriptionId),subscriptionId); + await eventListener.AssertMinimumLength(nameof(subscriptionId),subscriptionId,1); + } + } + + /// List private clouds in a resource group + /// + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task PrivateCloudsListViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + var apiVersion = @"2020-03-20"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // verify that Identity format is an exact match for uri + + var _match = new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/Microsoft.AVS/privateClouds$").Match(viaIdentity); + if (!_match.Success) + { + throw new global::System.Exception("Invalid identity for URI '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AVS/privateClouds'"); + } + + // replace URI parameters with values from identity + var subscriptionId = _match.Groups["subscriptionId"].Value; + var resourceGroupName = _match.Groups["resourceGroupName"].Value; + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + subscriptionId + + "/resourceGroups/" + + resourceGroupName + + "/providers/Microsoft.AVS/privateClouds" + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.PrivateCloudsList_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// Actual wire call for method. + /// the prepared HttpRequestMessage to send. + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task PrivateCloudsList_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + using( NoSynchronizationContext ) + { + global::System.Net.Http.HttpResponseMessage _response = null; + try + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.PrivateCloudList.FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Finally, request, _response); + _response?.Dispose(); + request?.Dispose(); + } + } + } + + /// + /// Validation method for method. Call this like the actual call, but you will get validation + /// events back. + /// + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. + /// an instance that will receive events. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task PrivateCloudsList_Validate(string subscriptionId, string resourceGroupName, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener) + { + using( NoSynchronizationContext ) + { + await eventListener.AssertNotNull(nameof(subscriptionId),subscriptionId); + await eventListener.AssertMinimumLength(nameof(subscriptionId),subscriptionId,1); + await eventListener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); + await eventListener.AssertMinimumLength(nameof(resourceGroupName),resourceGroupName,1); + await eventListener.AssertMaximumLength(nameof(resourceGroupName),resourceGroupName,90); + await eventListener.AssertRegEx(nameof(resourceGroupName),resourceGroupName,@"^[-\w\._\(\)]+$"); + } + } + + /// Update a private cloud + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. + /// Name of the private cloud + /// The private cloud properties to be updated + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task PrivateCloudsUpdate(string subscriptionId, string resourceGroupName, string privateCloudName, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdate body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + var apiVersion = @"2020-03-20"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + global::System.Uri.EscapeDataString(subscriptionId) + + "/resourceGroups/" + + global::System.Uri.EscapeDataString(resourceGroupName) + + "/providers/Microsoft.AVS/privateClouds/" + + global::System.Uri.EscapeDataString(privateCloudName) + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Patch, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // set body content + request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BodyContentSet, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.PrivateCloudsUpdate_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// Update a private cloud + /// + /// The private cloud properties to be updated + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + public async global::System.Threading.Tasks.Task PrivateCloudsUpdateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdate body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + var apiVersion = @"2020-03-20"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // verify that Identity format is an exact match for uri + + var _match = new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/Microsoft.AVS/privateClouds/(?[^/]+)$").Match(viaIdentity); + if (!_match.Success) + { + throw new global::System.Exception("Invalid identity for URI '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AVS/privateClouds/{privateCloudName}'"); + } + + // replace URI parameters with values from identity + var subscriptionId = _match.Groups["subscriptionId"].Value; + var resourceGroupName = _match.Groups["resourceGroupName"].Value; + var privateCloudName = _match.Groups["privateCloudName"].Value; + // construct URL + var _url = new global::System.Uri(global::System.Text.RegularExpressions.Regex.Replace( + "https://management.azure.com/subscriptions/" + + subscriptionId + + "/resourceGroups/" + + resourceGroupName + + "/providers/Microsoft.AVS/privateClouds/" + + privateCloudName + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2")); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.URLCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + // generate request object + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Patch, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.RequestCreated, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.HeaderParametersAdded, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // set body content + request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null).ToString() : @"{}", global::System.Text.Encoding.UTF8); + request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BodyContentSet, _url); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.PrivateCloudsUpdate_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// Actual wire call for method. + /// the prepared HttpRequestMessage to send. + /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). + /// an instance that will receive events. + /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync pipeline to use to make the request. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task PrivateCloudsUpdate_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.ISendAsync sender) + { + using( NoSynchronizationContext ) + { + global::System.Net.Http.HttpResponseMessage _response = null; + try + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + // this operation supports x-ms-long-running-operation + var _originalUri = request.RequestUri.AbsoluteUri; + // declared final-state-via: default + var asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = _response.GetFirstHeader(@"Location"); + while (_response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + { + + // get the delay before polling. (default to 30 seconds if not present) + int delay = (int)(_response.Headers.RetryAfter?.Delta?.TotalSeconds ?? 30); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.DelayBeforePolling, $"Delaying {delay} seconds before polling.", _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + // start the delay timer (we'll await later...) + var waiting = global::System.Threading.Tasks.Task.Delay(delay * 1000, eventListener.Token ); + + // while we wait, let's grab the headers and get ready to poll. + if (!System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Azure-AsyncOperation"))) { + asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + } + if (!global::System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Location"))) { + location = _response.GetFirstHeader(@"Location"); + } + var _uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? _originalUri : location : asyncOperation; + request = request.CloneAndDispose(new global::System.Uri(_uri), Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Get); + + // and let's look at the current response body and see if we have some information we can give back to the listener + var content = await _response.Content.ReadAsStringAsync(); + await waiting; + + // check for cancellation + if( eventListener.Token.IsCancellationRequested ) { return; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Polling, $"Polling {_uri}.", _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + // drop the old response + _response?.Dispose(); + + // make the polling call + _response = await sender.SendAsync(request, eventListener); + + // if we got back an OK, take a peek inside and see if it's done + if( _response.StatusCode == global::System.Net.HttpStatusCode.OK) + { + try { + if( Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(await _response.Content.ReadAsStringAsync()) is Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json) + { + var state = json.Property("properties")?.PropertyT("provisioningState") ?? json.PropertyT("status"); + if( state is null ) + { + // the body doesn't contain any information that has the state of the LRO + // we're going to just get out, and let the consumer have the result + break; + } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Polling, $"Polled {_uri} provisioning state {state}.", _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + switch( state?.ToString()?.ToLower() ) + { + case "succeeded": + case "failed": + case "canceled": + // we're done polling. + break; + + default: + // need to keep polling! + _response.StatusCode = global::System.Net.HttpStatusCode.Created; + continue; + } + } + } catch { + // if we run into a problem peeking into the result, + // we really don't want to do anything special. + } + } + + // check for terminal status code + if (_response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + { + continue; + } + // we are done polling, do a request on final target? + if (!string.IsNullOrWhiteSpace(_originalUri)) + { + // create a new request with the final uri + request = request.CloneAndDispose(new global::System.Uri(_originalUri), Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Get); + + // drop the old response + _response?.Dispose(); + + // make the final call + _response = await sender.SendAsync(request, eventListener); + break; + } + } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.PrivateCloud.FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Finally, request, _response); + _response?.Dispose(); + request?.Dispose(); + } + } + } + + /// + /// Validation method for method. Call this like the actual call, but you will get validation + /// events back. + /// + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. + /// Name of the private cloud + /// The private cloud properties to be updated + /// an instance that will receive events. + /// + /// A that will be complete when handling of the response is completed. + /// + internal async global::System.Threading.Tasks.Task PrivateCloudsUpdate_Validate(string subscriptionId, string resourceGroupName, string privateCloudName, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdate body, Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener eventListener) + { + using( NoSynchronizationContext ) + { + await eventListener.AssertNotNull(nameof(subscriptionId),subscriptionId); + await eventListener.AssertMinimumLength(nameof(subscriptionId),subscriptionId,1); + await eventListener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); + await eventListener.AssertMinimumLength(nameof(resourceGroupName),resourceGroupName,1); + await eventListener.AssertMaximumLength(nameof(resourceGroupName),resourceGroupName,90); + await eventListener.AssertRegEx(nameof(resourceGroupName),resourceGroupName,@"^[-\w\._\(\)]+$"); + await eventListener.AssertNotNull(nameof(privateCloudName),privateCloudName); + await eventListener.AssertNotNull(nameof(body), body); + await eventListener.AssertObjectIsValid(nameof(body), body); + } + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/cmdlets/GetAzVMWareAuthorization_Get.cs b/src/VMWare/generated/cmdlets/GetAzVMWareAuthorization_Get.cs new file mode 100644 index 000000000000..a35a01c2a177 --- /dev/null +++ b/src/VMWare/generated/cmdlets/GetAzVMWareAuthorization_Get.cs @@ -0,0 +1,413 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// Get an ExpressRoute Circuit Authorization by name in a private cloud + /// + /// [OpenAPI] Authorizations_Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AVS/privateClouds/{privateCloudName}/authorizations/{authorizationName}" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzVMWareAuthorization_Get")] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorization))] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Description(@"Get an ExpressRoute Circuit Authorization by name in a private cloud")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Generated] + public partial class GetAzVMWareAuthorization_Get : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.VMWare Client => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.ClientAPI; + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// Backing field for property. + private string _name; + + /// Name of the ExpressRoute Circuit Authorization in the private cloud + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Name of the ExpressRoute Circuit Authorization in the private cloud")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Name of the ExpressRoute Circuit Authorization in the private cloud", + SerializedName = @"authorizationName", + PossibleTypes = new [] { typeof(string) })] + [global::System.Management.Automation.Alias("AuthorizationName")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string Name { get => this._name; set => this._name = value; } + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.HttpPipeline Pipeline { get; set; } + + /// Backing field for property. + private string _privateCloudName; + + /// Name of the private cloud + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Name of the private cloud")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Name of the private cloud", + SerializedName = @"privateCloudName", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string PrivateCloudName { get => this._privateCloudName; set => this._privateCloudName = value; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Backing field for property. + private string _resourceGroupName; + + /// The name of the resource group. The name is case insensitive. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of the resource group. The name is case insensitive.")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The name of the resource group. The name is case insensitive.", + SerializedName = @"resourceGroupName", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string ResourceGroupName { get => this._resourceGroupName; set => this._resourceGroupName = value; } + + /// Backing field for property. + private string[] _subscriptionId; + + /// The ID of the target subscription. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The ID of the target subscription.")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The ID of the target subscription.", + SerializedName = @"subscriptionId", + PossibleTypes = new [] { typeof(string) })] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.DefaultInfo( + Name = @"", + Description =@"", + Script = @"(Get-AzContext).Subscription.Id")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string[] SubscriptionId { get => this._subscriptionId; set => this._subscriptionId = value; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletEndProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public GetAzVMWareAuthorization_Get() + { + + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Information: + { + var data = messageData(); + WriteInformation(data, new[] { data.Message }); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token); + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncStart); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + foreach( var SubscriptionId in this.SubscriptionId ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.AuthorizationsGet(SubscriptionId, ResourceGroupName, PrivateCloudName, Name, onOk, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId,ResourceGroupName=ResourceGroupName,PrivateCloudName=PrivateCloudName,Name=Name}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, ResourceGroupName=ResourceGroupName, PrivateCloudName=PrivateCloudName, Name=Name }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, ResourceGroupName=ResourceGroupName, PrivateCloudName=PrivateCloudName, Name=Name }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorization + WriteObject((await response)); + } + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/cmdlets/GetAzVMWareAuthorization_GetViaIdentity.cs b/src/VMWare/generated/cmdlets/GetAzVMWareAuthorization_GetViaIdentity.cs new file mode 100644 index 000000000000..83dadb111e5a --- /dev/null +++ b/src/VMWare/generated/cmdlets/GetAzVMWareAuthorization_GetViaIdentity.cs @@ -0,0 +1,381 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// Get an ExpressRoute Circuit Authorization by name in a private cloud + /// + /// [OpenAPI] Authorizations_Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AVS/privateClouds/{privateCloudName}/authorizations/{authorizationName}" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzVMWareAuthorization_GetViaIdentity")] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorization))] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Description(@"Get an ExpressRoute Circuit Authorization by name in a private cloud")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Generated] + public partial class GetAzVMWareAuthorization_GetViaIdentity : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.VMWare Client => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.ClientAPI; + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity _inputObject; + + /// Identity Parameter + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Identity Parameter", ValueFromPipeline = true)] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity InputObject { get => this._inputObject; set => this._inputObject = value; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletEndProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public GetAzVMWareAuthorization_GetViaIdentity() + { + + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Information: + { + var data = messageData(); + WriteInformation(data, new[] { data.Message }); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token); + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncStart); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + if (InputObject?.Id != null) + { + await this.Client.AuthorizationsGetViaIdentity(InputObject.Id, onOk, onDefault, this, Pipeline); + } + else + { + // try to call with PATH parameters from Input Object + if (null == InputObject.SubscriptionId) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.SubscriptionId"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + if (null == InputObject.ResourceGroupName) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.ResourceGroupName"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + if (null == InputObject.PrivateCloudName) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.PrivateCloudName"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + if (null == InputObject.AuthorizationName) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.AuthorizationName"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + await this.Client.AuthorizationsGet(InputObject.SubscriptionId ?? null, InputObject.ResourceGroupName ?? null, InputObject.PrivateCloudName ?? null, InputObject.AuthorizationName ?? null, onOk, onDefault, this, Pipeline); + } + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorization + WriteObject((await response)); + } + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/cmdlets/GetAzVMWareAuthorization_List.cs b/src/VMWare/generated/cmdlets/GetAzVMWareAuthorization_List.cs new file mode 100644 index 000000000000..affc72e58278 --- /dev/null +++ b/src/VMWare/generated/cmdlets/GetAzVMWareAuthorization_List.cs @@ -0,0 +1,409 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// List ExpressRoute Circuit Authorizations in a private cloud + /// + /// [OpenAPI] Authorizations_List=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AVS/privateClouds/{privateCloudName}/authorizations" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzVMWareAuthorization_List")] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorization))] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Description(@"List ExpressRoute Circuit Authorizations in a private cloud")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Generated] + public partial class GetAzVMWareAuthorization_List : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.VMWare Client => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.ClientAPI; + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.HttpPipeline Pipeline { get; set; } + + /// Backing field for property. + private string _privateCloudName; + + /// Name of the private cloud + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Name of the private cloud")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Name of the private cloud", + SerializedName = @"privateCloudName", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string PrivateCloudName { get => this._privateCloudName; set => this._privateCloudName = value; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Backing field for property. + private string _resourceGroupName; + + /// The name of the resource group. The name is case insensitive. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of the resource group. The name is case insensitive.")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The name of the resource group. The name is case insensitive.", + SerializedName = @"resourceGroupName", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string ResourceGroupName { get => this._resourceGroupName; set => this._resourceGroupName = value; } + + /// Backing field for property. + private string[] _subscriptionId; + + /// The ID of the target subscription. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The ID of the target subscription.")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The ID of the target subscription.", + SerializedName = @"subscriptionId", + PossibleTypes = new [] { typeof(string) })] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.DefaultInfo( + Name = @"", + Description =@"", + Script = @"(Get-AzContext).Subscription.Id")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string[] SubscriptionId { get => this._subscriptionId; set => this._subscriptionId = value; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletEndProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public GetAzVMWareAuthorization_List() + { + + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Information: + { + var data = messageData(); + WriteInformation(data, new[] { data.Message }); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token); + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncStart); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + foreach( var SubscriptionId in this.SubscriptionId ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.AuthorizationsList(SubscriptionId, ResourceGroupName, PrivateCloudName, onOk, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId,ResourceGroupName=ResourceGroupName,PrivateCloudName=PrivateCloudName}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, ResourceGroupName=ResourceGroupName, PrivateCloudName=PrivateCloudName }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, ResourceGroupName=ResourceGroupName, PrivateCloudName=PrivateCloudName }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // response should be returning an array of some kind. +Pageable + // pageable / value / nextLink + var result = await response; + WriteObject(result.Value,true); + if (result.NextLink != null) + { + if (responseMessage.RequestMessage is System.Net.Http.HttpRequestMessage requestMessage ) + { + requestMessage = requestMessage.Clone(new global::System.Uri( result.NextLink ),Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Get ); + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.FollowingNextLink); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.AuthorizationsList_Call(requestMessage, onOk, onDefault, this, Pipeline); + } + } + } + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/cmdlets/GetAzVMWareCluster_Get.cs b/src/VMWare/generated/cmdlets/GetAzVMWareCluster_Get.cs new file mode 100644 index 000000000000..7fc05dbe8241 --- /dev/null +++ b/src/VMWare/generated/cmdlets/GetAzVMWareCluster_Get.cs @@ -0,0 +1,413 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// Get a cluster by name in a private cloud + /// + /// [OpenAPI] Clusters_Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AVS/privateClouds/{privateCloudName}/clusters/{clusterName}" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzVMWareCluster_Get")] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICluster))] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Description(@"Get a cluster by name in a private cloud")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Generated] + public partial class GetAzVMWareCluster_Get : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.VMWare Client => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.ClientAPI; + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// Backing field for property. + private string _name; + + /// Name of the cluster in the private cloud + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Name of the cluster in the private cloud")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Name of the cluster in the private cloud", + SerializedName = @"clusterName", + PossibleTypes = new [] { typeof(string) })] + [global::System.Management.Automation.Alias("ClusterName")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string Name { get => this._name; set => this._name = value; } + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.HttpPipeline Pipeline { get; set; } + + /// Backing field for property. + private string _privateCloudName; + + /// Name of the private cloud + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Name of the private cloud")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Name of the private cloud", + SerializedName = @"privateCloudName", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string PrivateCloudName { get => this._privateCloudName; set => this._privateCloudName = value; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Backing field for property. + private string _resourceGroupName; + + /// The name of the resource group. The name is case insensitive. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of the resource group. The name is case insensitive.")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The name of the resource group. The name is case insensitive.", + SerializedName = @"resourceGroupName", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string ResourceGroupName { get => this._resourceGroupName; set => this._resourceGroupName = value; } + + /// Backing field for property. + private string[] _subscriptionId; + + /// The ID of the target subscription. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The ID of the target subscription.")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The ID of the target subscription.", + SerializedName = @"subscriptionId", + PossibleTypes = new [] { typeof(string) })] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.DefaultInfo( + Name = @"", + Description =@"", + Script = @"(Get-AzContext).Subscription.Id")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string[] SubscriptionId { get => this._subscriptionId; set => this._subscriptionId = value; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletEndProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public GetAzVMWareCluster_Get() + { + + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Information: + { + var data = messageData(); + WriteInformation(data, new[] { data.Message }); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token); + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncStart); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + foreach( var SubscriptionId in this.SubscriptionId ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.ClustersGet(SubscriptionId, ResourceGroupName, PrivateCloudName, Name, onOk, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId,ResourceGroupName=ResourceGroupName,PrivateCloudName=PrivateCloudName,Name=Name}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, ResourceGroupName=ResourceGroupName, PrivateCloudName=PrivateCloudName, Name=Name }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, ResourceGroupName=ResourceGroupName, PrivateCloudName=PrivateCloudName, Name=Name }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICluster + WriteObject((await response)); + } + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/cmdlets/GetAzVMWareCluster_GetViaIdentity.cs b/src/VMWare/generated/cmdlets/GetAzVMWareCluster_GetViaIdentity.cs new file mode 100644 index 000000000000..8effe6bf6434 --- /dev/null +++ b/src/VMWare/generated/cmdlets/GetAzVMWareCluster_GetViaIdentity.cs @@ -0,0 +1,381 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// Get a cluster by name in a private cloud + /// + /// [OpenAPI] Clusters_Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AVS/privateClouds/{privateCloudName}/clusters/{clusterName}" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzVMWareCluster_GetViaIdentity")] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICluster))] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Description(@"Get a cluster by name in a private cloud")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Generated] + public partial class GetAzVMWareCluster_GetViaIdentity : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.VMWare Client => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.ClientAPI; + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity _inputObject; + + /// Identity Parameter + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Identity Parameter", ValueFromPipeline = true)] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity InputObject { get => this._inputObject; set => this._inputObject = value; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletEndProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public GetAzVMWareCluster_GetViaIdentity() + { + + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Information: + { + var data = messageData(); + WriteInformation(data, new[] { data.Message }); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token); + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncStart); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + if (InputObject?.Id != null) + { + await this.Client.ClustersGetViaIdentity(InputObject.Id, onOk, onDefault, this, Pipeline); + } + else + { + // try to call with PATH parameters from Input Object + if (null == InputObject.SubscriptionId) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.SubscriptionId"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + if (null == InputObject.ResourceGroupName) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.ResourceGroupName"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + if (null == InputObject.PrivateCloudName) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.PrivateCloudName"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + if (null == InputObject.ClusterName) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.ClusterName"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + await this.Client.ClustersGet(InputObject.SubscriptionId ?? null, InputObject.ResourceGroupName ?? null, InputObject.PrivateCloudName ?? null, InputObject.ClusterName ?? null, onOk, onDefault, this, Pipeline); + } + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICluster + WriteObject((await response)); + } + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/cmdlets/GetAzVMWareCluster_List.cs b/src/VMWare/generated/cmdlets/GetAzVMWareCluster_List.cs new file mode 100644 index 000000000000..74af1e9e1715 --- /dev/null +++ b/src/VMWare/generated/cmdlets/GetAzVMWareCluster_List.cs @@ -0,0 +1,409 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// List clusters in a private cloud + /// + /// [OpenAPI] Clusters_List=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AVS/privateClouds/{privateCloudName}/clusters" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzVMWareCluster_List")] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICluster))] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Description(@"List clusters in a private cloud")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Generated] + public partial class GetAzVMWareCluster_List : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.VMWare Client => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.ClientAPI; + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.HttpPipeline Pipeline { get; set; } + + /// Backing field for property. + private string _privateCloudName; + + /// Name of the private cloud + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Name of the private cloud")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Name of the private cloud", + SerializedName = @"privateCloudName", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string PrivateCloudName { get => this._privateCloudName; set => this._privateCloudName = value; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Backing field for property. + private string _resourceGroupName; + + /// The name of the resource group. The name is case insensitive. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of the resource group. The name is case insensitive.")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The name of the resource group. The name is case insensitive.", + SerializedName = @"resourceGroupName", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string ResourceGroupName { get => this._resourceGroupName; set => this._resourceGroupName = value; } + + /// Backing field for property. + private string[] _subscriptionId; + + /// The ID of the target subscription. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The ID of the target subscription.")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The ID of the target subscription.", + SerializedName = @"subscriptionId", + PossibleTypes = new [] { typeof(string) })] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.DefaultInfo( + Name = @"", + Description =@"", + Script = @"(Get-AzContext).Subscription.Id")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string[] SubscriptionId { get => this._subscriptionId; set => this._subscriptionId = value; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletEndProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public GetAzVMWareCluster_List() + { + + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Information: + { + var data = messageData(); + WriteInformation(data, new[] { data.Message }); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token); + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncStart); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + foreach( var SubscriptionId in this.SubscriptionId ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.ClustersList(SubscriptionId, ResourceGroupName, PrivateCloudName, onOk, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId,ResourceGroupName=ResourceGroupName,PrivateCloudName=PrivateCloudName}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, ResourceGroupName=ResourceGroupName, PrivateCloudName=PrivateCloudName }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, ResourceGroupName=ResourceGroupName, PrivateCloudName=PrivateCloudName }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // response should be returning an array of some kind. +Pageable + // pageable / value / nextLink + var result = await response; + WriteObject(result.Value,true); + if (result.NextLink != null) + { + if (responseMessage.RequestMessage is System.Net.Http.HttpRequestMessage requestMessage ) + { + requestMessage = requestMessage.Clone(new global::System.Uri( result.NextLink ),Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Get ); + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.FollowingNextLink); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.ClustersList_Call(requestMessage, onOk, onDefault, this, Pipeline); + } + } + } + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/cmdlets/GetAzVMWareOperation_List.cs b/src/VMWare/generated/cmdlets/GetAzVMWareOperation_List.cs new file mode 100644 index 000000000000..198906561c55 --- /dev/null +++ b/src/VMWare/generated/cmdlets/GetAzVMWareOperation_List.cs @@ -0,0 +1,361 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// Lists all of the available operations + /// + /// [OpenAPI] Operations_List=>GET:"/providers/Microsoft.AVS/operations" + /// + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.InternalExport] + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzVMWareOperation_List")] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperation))] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Description(@"Lists all of the available operations")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Generated] + public partial class GetAzVMWareOperation_List : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.VMWare Client => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.ClientAPI; + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletEndProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public GetAzVMWareOperation_List() + { + + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Information: + { + var data = messageData(); + WriteInformation(data, new[] { data.Message }); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token); + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncStart); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.OperationsList(onOk, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // response should be returning an array of some kind. +Pageable + // pageable / value / nextLink + var result = await response; + WriteObject(result.Value,true); + if (result.NextLink != null) + { + if (responseMessage.RequestMessage is System.Net.Http.HttpRequestMessage requestMessage ) + { + requestMessage = requestMessage.Clone(new global::System.Uri( result.NextLink ),Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Get ); + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.FollowingNextLink); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.OperationsList_Call(requestMessage, onOk, onDefault, this, Pipeline); + } + } + } + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/cmdlets/GetAzVMWarePrivateCloudAdminCredentials_List.cs b/src/VMWare/generated/cmdlets/GetAzVMWarePrivateCloudAdminCredentials_List.cs new file mode 100644 index 000000000000..452942e297f9 --- /dev/null +++ b/src/VMWare/generated/cmdlets/GetAzVMWarePrivateCloudAdminCredentials_List.cs @@ -0,0 +1,401 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// List the admin credentials for the private cloud + /// + /// [OpenAPI] PrivateClouds_ListAdminCredentials=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AVS/privateClouds/{privateCloudName}/listAdminCredentials" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzVMWarePrivateCloudAdminCredentials_List", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IAdminCredentials))] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Description(@"List the admin credentials for the private cloud")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Generated] + public partial class GetAzVMWarePrivateCloudAdminCredentials_List : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.VMWare Client => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.ClientAPI; + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.HttpPipeline Pipeline { get; set; } + + /// Backing field for property. + private string _privateCloudName; + + /// Name of the private cloud + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Name of the private cloud")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Name of the private cloud", + SerializedName = @"privateCloudName", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string PrivateCloudName { get => this._privateCloudName; set => this._privateCloudName = value; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Backing field for property. + private string _resourceGroupName; + + /// The name of the resource group. The name is case insensitive. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of the resource group. The name is case insensitive.")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The name of the resource group. The name is case insensitive.", + SerializedName = @"resourceGroupName", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string ResourceGroupName { get => this._resourceGroupName; set => this._resourceGroupName = value; } + + /// Backing field for property. + private string[] _subscriptionId; + + /// The ID of the target subscription. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The ID of the target subscription.")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The ID of the target subscription.", + SerializedName = @"subscriptionId", + PossibleTypes = new [] { typeof(string) })] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.DefaultInfo( + Name = @"", + Description =@"", + Script = @"(Get-AzContext).Subscription.Id")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string[] SubscriptionId { get => this._subscriptionId; set => this._subscriptionId = value; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletEndProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public GetAzVMWarePrivateCloudAdminCredentials_List() + { + + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Information: + { + var data = messageData(); + WriteInformation(data, new[] { data.Message }); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'PrivateCloudsListAdminCredentials' operation")) + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token); + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncStart); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + foreach( var SubscriptionId in this.SubscriptionId ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.PrivateCloudsListAdminCredentials(SubscriptionId, ResourceGroupName, PrivateCloudName, onOk, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId,ResourceGroupName=ResourceGroupName,PrivateCloudName=PrivateCloudName}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, ResourceGroupName=ResourceGroupName, PrivateCloudName=PrivateCloudName }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, ResourceGroupName=ResourceGroupName, PrivateCloudName=PrivateCloudName }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IAdminCredentials + WriteObject((await response)); + } + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/cmdlets/GetAzVMWarePrivateCloud_Get.cs b/src/VMWare/generated/cmdlets/GetAzVMWarePrivateCloud_Get.cs new file mode 100644 index 000000000000..c1b7f5b228ae --- /dev/null +++ b/src/VMWare/generated/cmdlets/GetAzVMWarePrivateCloud_Get.cs @@ -0,0 +1,399 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// Get a private cloud + /// + /// [OpenAPI] PrivateClouds_Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AVS/privateClouds/{privateCloudName}" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzVMWarePrivateCloud_Get")] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud))] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Description(@"Get a private cloud")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Generated] + public partial class GetAzVMWarePrivateCloud_Get : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.VMWare Client => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.ClientAPI; + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// Backing field for property. + private string _name; + + /// Name of the private cloud + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Name of the private cloud")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Name of the private cloud", + SerializedName = @"privateCloudName", + PossibleTypes = new [] { typeof(string) })] + [global::System.Management.Automation.Alias("PrivateCloudName")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string Name { get => this._name; set => this._name = value; } + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Backing field for property. + private string _resourceGroupName; + + /// The name of the resource group. The name is case insensitive. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of the resource group. The name is case insensitive.")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The name of the resource group. The name is case insensitive.", + SerializedName = @"resourceGroupName", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string ResourceGroupName { get => this._resourceGroupName; set => this._resourceGroupName = value; } + + /// Backing field for property. + private string[] _subscriptionId; + + /// The ID of the target subscription. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The ID of the target subscription.")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The ID of the target subscription.", + SerializedName = @"subscriptionId", + PossibleTypes = new [] { typeof(string) })] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.DefaultInfo( + Name = @"", + Description =@"", + Script = @"(Get-AzContext).Subscription.Id")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string[] SubscriptionId { get => this._subscriptionId; set => this._subscriptionId = value; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletEndProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public GetAzVMWarePrivateCloud_Get() + { + + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Information: + { + var data = messageData(); + WriteInformation(data, new[] { data.Message }); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token); + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncStart); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + foreach( var SubscriptionId in this.SubscriptionId ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.PrivateCloudsGet(SubscriptionId, ResourceGroupName, Name, onOk, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId,ResourceGroupName=ResourceGroupName,Name=Name}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, ResourceGroupName=ResourceGroupName, Name=Name }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, ResourceGroupName=ResourceGroupName, Name=Name }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud + WriteObject((await response)); + } + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/cmdlets/GetAzVMWarePrivateCloud_GetViaIdentity.cs b/src/VMWare/generated/cmdlets/GetAzVMWarePrivateCloud_GetViaIdentity.cs new file mode 100644 index 000000000000..3b97933fa235 --- /dev/null +++ b/src/VMWare/generated/cmdlets/GetAzVMWarePrivateCloud_GetViaIdentity.cs @@ -0,0 +1,377 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// Get a private cloud + /// + /// [OpenAPI] PrivateClouds_Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AVS/privateClouds/{privateCloudName}" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzVMWarePrivateCloud_GetViaIdentity")] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud))] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Description(@"Get a private cloud")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Generated] + public partial class GetAzVMWarePrivateCloud_GetViaIdentity : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.VMWare Client => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.ClientAPI; + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity _inputObject; + + /// Identity Parameter + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Identity Parameter", ValueFromPipeline = true)] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity InputObject { get => this._inputObject; set => this._inputObject = value; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletEndProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public GetAzVMWarePrivateCloud_GetViaIdentity() + { + + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Information: + { + var data = messageData(); + WriteInformation(data, new[] { data.Message }); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token); + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncStart); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + if (InputObject?.Id != null) + { + await this.Client.PrivateCloudsGetViaIdentity(InputObject.Id, onOk, onDefault, this, Pipeline); + } + else + { + // try to call with PATH parameters from Input Object + if (null == InputObject.SubscriptionId) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.SubscriptionId"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + if (null == InputObject.ResourceGroupName) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.ResourceGroupName"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + if (null == InputObject.PrivateCloudName) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.PrivateCloudName"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + await this.Client.PrivateCloudsGet(InputObject.SubscriptionId ?? null, InputObject.ResourceGroupName ?? null, InputObject.PrivateCloudName ?? null, onOk, onDefault, this, Pipeline); + } + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud + WriteObject((await response)); + } + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/cmdlets/GetAzVMWarePrivateCloud_List.cs b/src/VMWare/generated/cmdlets/GetAzVMWarePrivateCloud_List.cs new file mode 100644 index 000000000000..6758672ea120 --- /dev/null +++ b/src/VMWare/generated/cmdlets/GetAzVMWarePrivateCloud_List.cs @@ -0,0 +1,395 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// List private clouds in a resource group + /// + /// [OpenAPI] PrivateClouds_List=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AVS/privateClouds" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzVMWarePrivateCloud_List")] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud))] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Description(@"List private clouds in a resource group")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Generated] + public partial class GetAzVMWarePrivateCloud_List : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.VMWare Client => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.ClientAPI; + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Backing field for property. + private string _resourceGroupName; + + /// The name of the resource group. The name is case insensitive. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of the resource group. The name is case insensitive.")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The name of the resource group. The name is case insensitive.", + SerializedName = @"resourceGroupName", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string ResourceGroupName { get => this._resourceGroupName; set => this._resourceGroupName = value; } + + /// Backing field for property. + private string[] _subscriptionId; + + /// The ID of the target subscription. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The ID of the target subscription.")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The ID of the target subscription.", + SerializedName = @"subscriptionId", + PossibleTypes = new [] { typeof(string) })] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.DefaultInfo( + Name = @"", + Description =@"", + Script = @"(Get-AzContext).Subscription.Id")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string[] SubscriptionId { get => this._subscriptionId; set => this._subscriptionId = value; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletEndProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public GetAzVMWarePrivateCloud_List() + { + + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Information: + { + var data = messageData(); + WriteInformation(data, new[] { data.Message }); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token); + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncStart); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + foreach( var SubscriptionId in this.SubscriptionId ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.PrivateCloudsList(SubscriptionId, ResourceGroupName, onOk, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId,ResourceGroupName=ResourceGroupName}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, ResourceGroupName=ResourceGroupName }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, ResourceGroupName=ResourceGroupName }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // response should be returning an array of some kind. +Pageable + // pageable / value / nextLink + var result = await response; + WriteObject(result.Value,true); + if (result.NextLink != null) + { + if (responseMessage.RequestMessage is System.Net.Http.HttpRequestMessage requestMessage ) + { + requestMessage = requestMessage.Clone(new global::System.Uri( result.NextLink ),Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Get ); + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.FollowingNextLink); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.PrivateCloudsList_Call(requestMessage, onOk, onDefault, this, Pipeline); + } + } + } + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/cmdlets/GetAzVMWarePrivateCloud_List1.cs b/src/VMWare/generated/cmdlets/GetAzVMWarePrivateCloud_List1.cs new file mode 100644 index 000000000000..380810205e07 --- /dev/null +++ b/src/VMWare/generated/cmdlets/GetAzVMWarePrivateCloud_List1.cs @@ -0,0 +1,381 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// List private clouds in a subscription + /// + /// [OpenAPI] PrivateClouds_ListInSubscription=>GET:"/subscriptions/{subscriptionId}/providers/Microsoft.AVS/privateClouds" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzVMWarePrivateCloud_List1")] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud))] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Description(@"List private clouds in a subscription")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Generated] + public partial class GetAzVMWarePrivateCloud_List1 : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.VMWare Client => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.ClientAPI; + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Backing field for property. + private string[] _subscriptionId; + + /// The ID of the target subscription. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The ID of the target subscription.")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The ID of the target subscription.", + SerializedName = @"subscriptionId", + PossibleTypes = new [] { typeof(string) })] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.DefaultInfo( + Name = @"", + Description =@"", + Script = @"(Get-AzContext).Subscription.Id")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string[] SubscriptionId { get => this._subscriptionId; set => this._subscriptionId = value; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletEndProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public GetAzVMWarePrivateCloud_List1() + { + + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Information: + { + var data = messageData(); + WriteInformation(data, new[] { data.Message }); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token); + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncStart); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + foreach( var SubscriptionId in this.SubscriptionId ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.PrivateCloudsListInSubscription(SubscriptionId, onOk, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // response should be returning an array of some kind. +Pageable + // pageable / value / nextLink + var result = await response; + WriteObject(result.Value,true); + if (result.NextLink != null) + { + if (responseMessage.RequestMessage is System.Net.Http.HttpRequestMessage requestMessage ) + { + requestMessage = requestMessage.Clone(new global::System.Uri( result.NextLink ),Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Method.Get ); + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.FollowingNextLink); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.PrivateCloudsListInSubscription_Call(requestMessage, onOk, onDefault, this, Pipeline); + } + } + } + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/cmdlets/NewAzVMWareAuthorization_CreateExpanded.cs b/src/VMWare/generated/cmdlets/NewAzVMWareAuthorization_CreateExpanded.cs new file mode 100644 index 000000000000..f498b1f51b13 --- /dev/null +++ b/src/VMWare/generated/cmdlets/NewAzVMWareAuthorization_CreateExpanded.cs @@ -0,0 +1,486 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// Create or update an ExpressRoute Circuit Authorization in a private cloud + /// + /// [OpenAPI] Authorizations_CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AVS/privateClouds/{privateCloudName}/authorizations/{authorizationName}" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzVMWareAuthorization_CreateExpanded", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorization))] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Description(@"Create or update an ExpressRoute Circuit Authorization in a private cloud")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Generated] + public partial class NewAzVMWareAuthorization_CreateExpanded : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// when specified, runs this cmdlet as a PowerShell job + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command as a job")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter AsJob { get; set; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPaths15976RbSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameAuthorizationsAuthorizationnamePutRequestbodyContentApplicationJsonSchema _authorizationBody= new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.Paths15976RbSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameAuthorizationsAuthorizationnamePutRequestbodyContentApplicationJsonSchema(); + + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPaths15976RbSubscriptionsSubscriptionidResourcegroupsResourcegroupnameProvidersMicrosoftAvsPrivatecloudsPrivatecloudnameAuthorizationsAuthorizationnamePutRequestbodyContentApplicationJsonSchema AuthorizationBody { get => this._authorizationBody; set => this._authorizationBody = value; } + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.VMWare Client => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.ClientAPI; + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// Backing field for property. + private string _name; + + /// Name of the ExpressRoute Circuit Authorization in the private cloud + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Name of the ExpressRoute Circuit Authorization in the private cloud")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Name of the ExpressRoute Circuit Authorization in the private cloud", + SerializedName = @"authorizationName", + PossibleTypes = new [] { typeof(string) })] + [global::System.Management.Automation.Alias("AuthorizationName")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string Name { get => this._name; set => this._name = value; } + + /// + /// when specified, will make the remote call, and return an AsyncOperationResponse, letting the remote operation continue + /// asynchronously. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command asynchronously")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter NoWait { get; set; } + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.HttpPipeline Pipeline { get; set; } + + /// Backing field for property. + private string _privateCloudName; + + /// The name of the private cloud. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of the private cloud.")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The name of the private cloud.", + SerializedName = @"privateCloudName", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string PrivateCloudName { get => this._privateCloudName; set => this._privateCloudName = value; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Backing field for property. + private string _resourceGroupName; + + /// The name of the resource group. The name is case insensitive. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of the resource group. The name is case insensitive.")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The name of the resource group. The name is case insensitive.", + SerializedName = @"resourceGroupName", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string ResourceGroupName { get => this._resourceGroupName; set => this._resourceGroupName = value; } + + /// Backing field for property. + private string _subscriptionId; + + /// The ID of the target subscription. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The ID of the target subscription.")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The ID of the target subscription.", + SerializedName = @"subscriptionId", + PossibleTypes = new [] { typeof(string) })] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.DefaultInfo( + Name = @"", + Description =@"", + Script = @"(Get-AzContext).Subscription.Id")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string SubscriptionId { get => this._subscriptionId; set => this._subscriptionId = value; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Creates a duplicate instance of this cmdlet (via JSON serialization). + /// a duplicate instance of NewAzVMWareAuthorization_CreateExpanded + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Cmdlets.NewAzVMWareAuthorization_CreateExpanded Clone() + { + var clone = new NewAzVMWareAuthorization_CreateExpanded(); + clone.__correlationId = this.__correlationId; + clone.__processRecordId = this.__processRecordId; + clone.DefaultProfile = this.DefaultProfile; + clone.InvocationInformation = this.InvocationInformation; + clone.Proxy = this.Proxy; + clone.Pipeline = this.Pipeline; + clone.AsJob = this.AsJob; + clone.Break = this.Break; + clone.ProxyCredential = this.ProxyCredential; + clone.ProxyUseDefaultCredentials = this.ProxyUseDefaultCredentials; + clone.HttpPipelinePrepend = this.HttpPipelinePrepend; + clone.HttpPipelineAppend = this.HttpPipelineAppend; + clone.AuthorizationBody = this.AuthorizationBody; + clone.SubscriptionId = this.SubscriptionId; + clone.ResourceGroupName = this.ResourceGroupName; + clone.PrivateCloudName = this.PrivateCloudName; + clone.Name = this.Name; + return clone; + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletEndProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Information: + { + // When an operation supports asjob, Information messages must go thru verbose. + WriteVerbose($"INFORMATION: {(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.DelayBeforePolling: + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("NoWait")) + { + var data = messageData(); + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + var asyncOperation = response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = response.GetFirstHeader(@"Location"); + var uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? response.RequestMessage.RequestUri.AbsoluteUri : location : asyncOperation; + WriteObject(new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.AsyncOperationResponse { Target = uri }); + // do nothing more. + data.Cancel(); + return; + } + } + break; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public NewAzVMWareAuthorization_CreateExpanded() + { + + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'AuthorizationsCreateOrUpdate' operation")) + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("AsJob")) + { + var instance = this.Clone(); + var job = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.AsyncJob(instance, this.MyInvocation.Line, this.MyInvocation.MyCommand.Name, this._cancellationTokenSource.Token, this._cancellationTokenSource.Cancel); + JobRepository.Add(job); + var task = instance.ProcessRecordAsync(); + job.Monitor(task); + WriteObject(job); + } + else + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token); + } + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncStart); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.AuthorizationsCreateOrUpdate(SubscriptionId, ResourceGroupName, PrivateCloudName, Name, AuthorizationBody, onOk, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId,ResourceGroupName=ResourceGroupName,PrivateCloudName=PrivateCloudName,Name=Name,body=AuthorizationBody}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, ResourceGroupName=ResourceGroupName, PrivateCloudName=PrivateCloudName, Name=Name, body=AuthorizationBody }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, ResourceGroupName=ResourceGroupName, PrivateCloudName=PrivateCloudName, Name=Name, body=AuthorizationBody }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorization + WriteObject((await response)); + } + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/cmdlets/NewAzVMWareCluster_CreateExpanded.cs b/src/VMWare/generated/cmdlets/NewAzVMWareCluster_CreateExpanded.cs new file mode 100644 index 000000000000..5c5e2c165aee --- /dev/null +++ b/src/VMWare/generated/cmdlets/NewAzVMWareCluster_CreateExpanded.cs @@ -0,0 +1,509 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// Create or update a cluster in a private cloud + /// + /// [OpenAPI] Clusters_CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AVS/privateClouds/{privateCloudName}/clusters/{clusterName}" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzVMWareCluster_CreateExpanded", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICluster))] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Description(@"Create or update a cluster in a private cloud")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Generated] + public partial class NewAzVMWareCluster_CreateExpanded : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// when specified, runs this cmdlet as a PowerShell job + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command as a job")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter AsJob { get; set; } + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.VMWare Client => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.ClientAPI; + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICluster _clusterBody= new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.Cluster(); + + /// A cluster resource + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICluster ClusterBody { get => this._clusterBody; set => this._clusterBody = value; } + + /// The cluster size + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The cluster size")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The cluster size", + SerializedName = @"clusterSize", + PossibleTypes = new [] { typeof(int) })] + public int ClusterSize { get => ClusterBody.Size ?? default(int); set => ClusterBody.Size = value; } + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// Backing field for property. + private string _name; + + /// Name of the cluster in the private cloud + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Name of the cluster in the private cloud")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Name of the cluster in the private cloud", + SerializedName = @"clusterName", + PossibleTypes = new [] { typeof(string) })] + [global::System.Management.Automation.Alias("ClusterName")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string Name { get => this._name; set => this._name = value; } + + /// + /// when specified, will make the remote call, and return an AsyncOperationResponse, letting the remote operation continue + /// asynchronously. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command asynchronously")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter NoWait { get; set; } + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.HttpPipeline Pipeline { get; set; } + + /// Backing field for property. + private string _privateCloudName; + + /// The name of the private cloud. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of the private cloud.")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The name of the private cloud.", + SerializedName = @"privateCloudName", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string PrivateCloudName { get => this._privateCloudName; set => this._privateCloudName = value; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Backing field for property. + private string _resourceGroupName; + + /// The name of the resource group. The name is case insensitive. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of the resource group. The name is case insensitive.")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The name of the resource group. The name is case insensitive.", + SerializedName = @"resourceGroupName", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string ResourceGroupName { get => this._resourceGroupName; set => this._resourceGroupName = value; } + + /// The name of the SKU. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of the SKU.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The name of the SKU.", + SerializedName = @"name", + PossibleTypes = new [] { typeof(string) })] + public string SkuName { get => ClusterBody.SkuName ?? null; set => ClusterBody.SkuName = value; } + + /// Backing field for property. + private string _subscriptionId; + + /// The ID of the target subscription. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The ID of the target subscription.")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The ID of the target subscription.", + SerializedName = @"subscriptionId", + PossibleTypes = new [] { typeof(string) })] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.DefaultInfo( + Name = @"", + Description =@"", + Script = @"(Get-AzContext).Subscription.Id")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string SubscriptionId { get => this._subscriptionId; set => this._subscriptionId = value; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Creates a duplicate instance of this cmdlet (via JSON serialization). + /// a duplicate instance of NewAzVMWareCluster_CreateExpanded + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Cmdlets.NewAzVMWareCluster_CreateExpanded Clone() + { + var clone = new NewAzVMWareCluster_CreateExpanded(); + clone.__correlationId = this.__correlationId; + clone.__processRecordId = this.__processRecordId; + clone.DefaultProfile = this.DefaultProfile; + clone.InvocationInformation = this.InvocationInformation; + clone.Proxy = this.Proxy; + clone.Pipeline = this.Pipeline; + clone.AsJob = this.AsJob; + clone.Break = this.Break; + clone.ProxyCredential = this.ProxyCredential; + clone.ProxyUseDefaultCredentials = this.ProxyUseDefaultCredentials; + clone.HttpPipelinePrepend = this.HttpPipelinePrepend; + clone.HttpPipelineAppend = this.HttpPipelineAppend; + clone.ClusterBody = this.ClusterBody; + clone.SubscriptionId = this.SubscriptionId; + clone.ResourceGroupName = this.ResourceGroupName; + clone.PrivateCloudName = this.PrivateCloudName; + clone.Name = this.Name; + return clone; + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletEndProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Information: + { + // When an operation supports asjob, Information messages must go thru verbose. + WriteVerbose($"INFORMATION: {(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.DelayBeforePolling: + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("NoWait")) + { + var data = messageData(); + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + var asyncOperation = response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = response.GetFirstHeader(@"Location"); + var uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? response.RequestMessage.RequestUri.AbsoluteUri : location : asyncOperation; + WriteObject(new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.AsyncOperationResponse { Target = uri }); + // do nothing more. + data.Cancel(); + return; + } + } + break; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public NewAzVMWareCluster_CreateExpanded() + { + + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'ClustersCreateOrUpdate' operation")) + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("AsJob")) + { + var instance = this.Clone(); + var job = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.AsyncJob(instance, this.MyInvocation.Line, this.MyInvocation.MyCommand.Name, this._cancellationTokenSource.Token, this._cancellationTokenSource.Cancel); + JobRepository.Add(job); + var task = instance.ProcessRecordAsync(); + job.Monitor(task); + WriteObject(job); + } + else + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token); + } + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncStart); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.ClustersCreateOrUpdate(SubscriptionId, ResourceGroupName, PrivateCloudName, Name, ClusterBody, onOk, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId,ResourceGroupName=ResourceGroupName,PrivateCloudName=PrivateCloudName,Name=Name,body=ClusterBody}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, ResourceGroupName=ResourceGroupName, PrivateCloudName=PrivateCloudName, Name=Name, body=ClusterBody }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, ResourceGroupName=ResourceGroupName, PrivateCloudName=PrivateCloudName, Name=Name, body=ClusterBody }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICluster + WriteObject((await response)); + } + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/cmdlets/NewAzVMWarePrivateCloud_CreateExpanded.cs b/src/VMWare/generated/cmdlets/NewAzVMWarePrivateCloud_CreateExpanded.cs new file mode 100644 index 000000000000..a36a4f0efd40 --- /dev/null +++ b/src/VMWare/generated/cmdlets/NewAzVMWarePrivateCloud_CreateExpanded.cs @@ -0,0 +1,578 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// Create or update a private cloud + /// + /// [OpenAPI] PrivateClouds_CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AVS/privateClouds/{privateCloudName}" + /// + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.InternalExport] + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzVMWarePrivateCloud_CreateExpanded", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud))] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Description(@"Create or update a private cloud")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Generated] + public partial class NewAzVMWarePrivateCloud_CreateExpanded : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// when specified, runs this cmdlet as a PowerShell job + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command as a job")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter AsJob { get; set; } + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.VMWare Client => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.ClientAPI; + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// vCenter Single Sign On Identity Sources + [global::System.Management.Automation.AllowEmptyCollection] + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "vCenter Single Sign On Identity Sources")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"vCenter Single Sign On Identity Sources", + SerializedName = @"identitySources", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySource) })] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySource[] IdentitySource { get => PrivateCloudBody.IdentitySource ?? null /* arrayOf */; set => PrivateCloudBody.IdentitySource = value; } + + /// Connectivity to internet is enabled or disabled + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Connectivity to internet is enabled or disabled")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Connectivity to internet is enabled or disabled", + SerializedName = @"internet", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum) })] + [global::System.Management.Automation.ArgumentCompleter(typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum))] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum Internet { get => PrivateCloudBody.Internet ?? ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum)""); set => PrivateCloudBody.Internet = value; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// Resource location + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Resource location")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Resource location", + SerializedName = @"location", + PossibleTypes = new [] { typeof(string) })] + public string Location { get => PrivateCloudBody.Location ?? null; set => PrivateCloudBody.Location = value; } + + /// The cluster size + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The cluster size")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The cluster size", + SerializedName = @"clusterSize", + PossibleTypes = new [] { typeof(int) })] + public int ManagementClusterSize { get => PrivateCloudBody.ManagementClusterSize ?? default(int); set => PrivateCloudBody.ManagementClusterSize = value; } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// Backing field for property. + private string _name; + + /// Name of the private cloud + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Name of the private cloud")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Name of the private cloud", + SerializedName = @"privateCloudName", + PossibleTypes = new [] { typeof(string) })] + [global::System.Management.Automation.Alias("PrivateCloudName")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string Name { get => this._name; set => this._name = value; } + + /// + /// The block of addresses should be unique across VNet in your subscription as well as on-premise. Make sure the CIDR format + /// is conformed to (A.B.C.D/X) where A,B,C,D are between 0 and 255, and X is between 0 and 22 + /// + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The block of addresses should be unique across VNet in your subscription as well as on-premise. Make sure the CIDR format is conformed to (A.B.C.D/X) where A,B,C,D are between 0 and 255, and X is between 0 and 22")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The block of addresses should be unique across VNet in your subscription as well as on-premise. Make sure the CIDR format is conformed to (A.B.C.D/X) where A,B,C,D are between 0 and 255, and X is between 0 and 22", + SerializedName = @"networkBlock", + PossibleTypes = new [] { typeof(string) })] + public string NetworkBlock { get => PrivateCloudBody.NetworkBlock ?? null; set => PrivateCloudBody.NetworkBlock = value; } + + /// + /// when specified, will make the remote call, and return an AsyncOperationResponse, letting the remote operation continue + /// asynchronously. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command asynchronously")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter NoWait { get; set; } + + /// Optionally, set the NSX-T Manager password when the private cloud is created + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Optionally, set the NSX-T Manager password when the private cloud is created")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Optionally, set the NSX-T Manager password when the private cloud is created", + SerializedName = @"nsxtPassword", + PossibleTypes = new [] { typeof(string) })] + public string NsxtPassword { get => PrivateCloudBody.NsxtPassword ?? null; set => PrivateCloudBody.NsxtPassword = value; } + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.HttpPipeline Pipeline { get; set; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud _privateCloudBody= new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.PrivateCloud(); + + /// A private cloud resource + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud PrivateCloudBody { get => this._privateCloudBody; set => this._privateCloudBody = value; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Backing field for property. + private string _resourceGroupName; + + /// The name of the resource group. The name is case insensitive. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of the resource group. The name is case insensitive.")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The name of the resource group. The name is case insensitive.", + SerializedName = @"resourceGroupName", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string ResourceGroupName { get => this._resourceGroupName; set => this._resourceGroupName = value; } + + /// The name of the SKU. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of the SKU.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The name of the SKU.", + SerializedName = @"name", + PossibleTypes = new [] { typeof(string) })] + public string SkuName { get => PrivateCloudBody.SkuName ?? null; set => PrivateCloudBody.SkuName = value; } + + /// Backing field for property. + private string _subscriptionId; + + /// The ID of the target subscription. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The ID of the target subscription.")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The ID of the target subscription.", + SerializedName = @"subscriptionId", + PossibleTypes = new [] { typeof(string) })] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.DefaultInfo( + Name = @"", + Description =@"", + Script = @"(Get-AzContext).Subscription.Id")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string SubscriptionId { get => this._subscriptionId; set => this._subscriptionId = value; } + + /// Resource tags + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ExportAs(typeof(global::System.Collections.Hashtable))] + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Resource tags")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Resource tags", + SerializedName = @"tags", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResourceTags) })] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResourceTags Tag { get => PrivateCloudBody.Tag ?? null /* object */; set => PrivateCloudBody.Tag = value; } + + /// Optionally, set the vCenter admin password when the private cloud is created + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Optionally, set the vCenter admin password when the private cloud is created")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Optionally, set the vCenter admin password when the private cloud is created", + SerializedName = @"vcenterPassword", + PossibleTypes = new [] { typeof(string) })] + public string VcenterPassword { get => PrivateCloudBody.VcenterPassword ?? null; set => PrivateCloudBody.VcenterPassword = value; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Creates a duplicate instance of this cmdlet (via JSON serialization). + /// a duplicate instance of NewAzVMWarePrivateCloud_CreateExpanded + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Cmdlets.NewAzVMWarePrivateCloud_CreateExpanded Clone() + { + var clone = new NewAzVMWarePrivateCloud_CreateExpanded(); + clone.__correlationId = this.__correlationId; + clone.__processRecordId = this.__processRecordId; + clone.DefaultProfile = this.DefaultProfile; + clone.InvocationInformation = this.InvocationInformation; + clone.Proxy = this.Proxy; + clone.Pipeline = this.Pipeline; + clone.AsJob = this.AsJob; + clone.Break = this.Break; + clone.ProxyCredential = this.ProxyCredential; + clone.ProxyUseDefaultCredentials = this.ProxyUseDefaultCredentials; + clone.HttpPipelinePrepend = this.HttpPipelinePrepend; + clone.HttpPipelineAppend = this.HttpPipelineAppend; + clone.PrivateCloudBody = this.PrivateCloudBody; + clone.SubscriptionId = this.SubscriptionId; + clone.ResourceGroupName = this.ResourceGroupName; + clone.Name = this.Name; + return clone; + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletEndProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Information: + { + // When an operation supports asjob, Information messages must go thru verbose. + WriteVerbose($"INFORMATION: {(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.DelayBeforePolling: + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("NoWait")) + { + var data = messageData(); + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + var asyncOperation = response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = response.GetFirstHeader(@"Location"); + var uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? response.RequestMessage.RequestUri.AbsoluteUri : location : asyncOperation; + WriteObject(new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.AsyncOperationResponse { Target = uri }); + // do nothing more. + data.Cancel(); + return; + } + } + break; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public NewAzVMWarePrivateCloud_CreateExpanded() + { + + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'PrivateCloudsCreateOrUpdate' operation")) + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("AsJob")) + { + var instance = this.Clone(); + var job = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.AsyncJob(instance, this.MyInvocation.Line, this.MyInvocation.MyCommand.Name, this._cancellationTokenSource.Token, this._cancellationTokenSource.Cancel); + JobRepository.Add(job); + var task = instance.ProcessRecordAsync(); + job.Monitor(task); + WriteObject(job); + } + else + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token); + } + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncStart); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.PrivateCloudsCreateOrUpdate(SubscriptionId, ResourceGroupName, Name, PrivateCloudBody, onOk, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId,ResourceGroupName=ResourceGroupName,Name=Name,body=PrivateCloudBody}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, ResourceGroupName=ResourceGroupName, Name=Name, body=PrivateCloudBody }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, ResourceGroupName=ResourceGroupName, Name=Name, body=PrivateCloudBody }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud + WriteObject((await response)); + } + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/cmdlets/RemoveAzVMWareAuthorization_Delete.cs b/src/VMWare/generated/cmdlets/RemoveAzVMWareAuthorization_Delete.cs new file mode 100644 index 000000000000..df5e98bc5f39 --- /dev/null +++ b/src/VMWare/generated/cmdlets/RemoveAzVMWareAuthorization_Delete.cs @@ -0,0 +1,519 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// Delete an ExpressRoute Circuit Authorization in a private cloud + /// + /// [OpenAPI] Authorizations_Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AVS/privateClouds/{privateCloudName}/authorizations/{authorizationName}" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzVMWareAuthorization_Delete", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(bool))] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Description(@"Delete an ExpressRoute Circuit Authorization in a private cloud")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Generated] + public partial class RemoveAzVMWareAuthorization_Delete : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// when specified, runs this cmdlet as a PowerShell job + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command as a job")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter AsJob { get; set; } + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.VMWare Client => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.ClientAPI; + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// Backing field for property. + private string _name; + + /// Name of the ExpressRoute Circuit Authorization in the private cloud + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Name of the ExpressRoute Circuit Authorization in the private cloud")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Name of the ExpressRoute Circuit Authorization in the private cloud", + SerializedName = @"authorizationName", + PossibleTypes = new [] { typeof(string) })] + [global::System.Management.Automation.Alias("AuthorizationName")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string Name { get => this._name; set => this._name = value; } + + /// + /// when specified, will make the remote call, and return an AsyncOperationResponse, letting the remote operation continue + /// asynchronously. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command asynchronously")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter NoWait { get; set; } + + /// + /// When specified, forces the cmdlet return a 'bool' given that there isn't a return type by default. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Returns true when the command succeeds")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter PassThru { get; set; } + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.HttpPipeline Pipeline { get; set; } + + /// Backing field for property. + private string _privateCloudName; + + /// Name of the private cloud + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Name of the private cloud")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Name of the private cloud", + SerializedName = @"privateCloudName", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string PrivateCloudName { get => this._privateCloudName; set => this._privateCloudName = value; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Backing field for property. + private string _resourceGroupName; + + /// The name of the resource group. The name is case insensitive. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of the resource group. The name is case insensitive.")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The name of the resource group. The name is case insensitive.", + SerializedName = @"resourceGroupName", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string ResourceGroupName { get => this._resourceGroupName; set => this._resourceGroupName = value; } + + /// Backing field for property. + private string _subscriptionId; + + /// The ID of the target subscription. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The ID of the target subscription.")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The ID of the target subscription.", + SerializedName = @"subscriptionId", + PossibleTypes = new [] { typeof(string) })] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.DefaultInfo( + Name = @"", + Description =@"", + Script = @"(Get-AzContext).Subscription.Id")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string SubscriptionId { get => this._subscriptionId; set => this._subscriptionId = value; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnNoContent will be called before the regular onNoContent has been processed, allowing customization of + /// what happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// /// Determines if the rest of the onNoContent method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnNoContent(global::System.Net.Http.HttpResponseMessage responseMessage, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Creates a duplicate instance of this cmdlet (via JSON serialization). + /// a duplicate instance of RemoveAzVMWareAuthorization_Delete + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Cmdlets.RemoveAzVMWareAuthorization_Delete Clone() + { + var clone = new RemoveAzVMWareAuthorization_Delete(); + clone.__correlationId = this.__correlationId; + clone.__processRecordId = this.__processRecordId; + clone.DefaultProfile = this.DefaultProfile; + clone.InvocationInformation = this.InvocationInformation; + clone.Proxy = this.Proxy; + clone.Pipeline = this.Pipeline; + clone.AsJob = this.AsJob; + clone.Break = this.Break; + clone.ProxyCredential = this.ProxyCredential; + clone.ProxyUseDefaultCredentials = this.ProxyUseDefaultCredentials; + clone.HttpPipelinePrepend = this.HttpPipelinePrepend; + clone.HttpPipelineAppend = this.HttpPipelineAppend; + clone.SubscriptionId = this.SubscriptionId; + clone.ResourceGroupName = this.ResourceGroupName; + clone.PrivateCloudName = this.PrivateCloudName; + clone.Name = this.Name; + return clone; + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletEndProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Information: + { + // When an operation supports asjob, Information messages must go thru verbose. + WriteVerbose($"INFORMATION: {(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.DelayBeforePolling: + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("NoWait")) + { + var data = messageData(); + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + var asyncOperation = response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = response.GetFirstHeader(@"Location"); + var uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? response.RequestMessage.RequestUri.AbsoluteUri : location : asyncOperation; + WriteObject(new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.AsyncOperationResponse { Target = uri }); + // do nothing more. + data.Cancel(); + return; + } + } + break; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'AuthorizationsDelete' operation")) + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("AsJob")) + { + var instance = this.Clone(); + var job = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.AsyncJob(instance, this.MyInvocation.Line, this.MyInvocation.MyCommand.Name, this._cancellationTokenSource.Token, this._cancellationTokenSource.Cancel); + JobRepository.Add(job); + var task = instance.ProcessRecordAsync(); + job.Monitor(task); + WriteObject(job); + } + else + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token); + } + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncStart); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.AuthorizationsDelete(SubscriptionId, ResourceGroupName, PrivateCloudName, Name, onOk, onNoContent, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId,ResourceGroupName=ResourceGroupName,PrivateCloudName=PrivateCloudName,Name=Name}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public RemoveAzVMWareAuthorization_Delete() + { + + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, ResourceGroupName=ResourceGroupName, PrivateCloudName=PrivateCloudName, Name=Name }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, ResourceGroupName=ResourceGroupName, PrivateCloudName=PrivateCloudName, Name=Name }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 204 (NoContent). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onNoContent(global::System.Net.Http.HttpResponseMessage responseMessage) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnNoContent(responseMessage, ref _returnNow); + // if overrideOnNoContent has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onNoContent - response for 204 / + if (true == MyInvocation?.BoundParameters?.ContainsKey("PassThru")) + { + WriteObject(true); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / + if (true == MyInvocation?.BoundParameters?.ContainsKey("PassThru")) + { + WriteObject(true); + } + } + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/cmdlets/RemoveAzVMWareAuthorization_DeleteViaIdentity.cs b/src/VMWare/generated/cmdlets/RemoveAzVMWareAuthorization_DeleteViaIdentity.cs new file mode 100644 index 000000000000..3064ee004d09 --- /dev/null +++ b/src/VMWare/generated/cmdlets/RemoveAzVMWareAuthorization_DeleteViaIdentity.cs @@ -0,0 +1,486 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// Delete an ExpressRoute Circuit Authorization in a private cloud + /// + /// [OpenAPI] Authorizations_Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AVS/privateClouds/{privateCloudName}/authorizations/{authorizationName}" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzVMWareAuthorization_DeleteViaIdentity", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(bool))] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Description(@"Delete an ExpressRoute Circuit Authorization in a private cloud")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Generated] + public partial class RemoveAzVMWareAuthorization_DeleteViaIdentity : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// when specified, runs this cmdlet as a PowerShell job + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command as a job")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter AsJob { get; set; } + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.VMWare Client => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.ClientAPI; + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity _inputObject; + + /// Identity Parameter + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Identity Parameter", ValueFromPipeline = true)] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity InputObject { get => this._inputObject; set => this._inputObject = value; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// when specified, will make the remote call, and return an AsyncOperationResponse, letting the remote operation continue + /// asynchronously. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command asynchronously")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter NoWait { get; set; } + + /// + /// When specified, forces the cmdlet return a 'bool' given that there isn't a return type by default. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Returns true when the command succeeds")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter PassThru { get; set; } + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnNoContent will be called before the regular onNoContent has been processed, allowing customization of + /// what happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// /// Determines if the rest of the onNoContent method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnNoContent(global::System.Net.Http.HttpResponseMessage responseMessage, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Creates a duplicate instance of this cmdlet (via JSON serialization). + /// a duplicate instance of RemoveAzVMWareAuthorization_DeleteViaIdentity + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Cmdlets.RemoveAzVMWareAuthorization_DeleteViaIdentity Clone() + { + var clone = new RemoveAzVMWareAuthorization_DeleteViaIdentity(); + clone.__correlationId = this.__correlationId; + clone.__processRecordId = this.__processRecordId; + clone.DefaultProfile = this.DefaultProfile; + clone.InvocationInformation = this.InvocationInformation; + clone.Proxy = this.Proxy; + clone.Pipeline = this.Pipeline; + clone.AsJob = this.AsJob; + clone.Break = this.Break; + clone.ProxyCredential = this.ProxyCredential; + clone.ProxyUseDefaultCredentials = this.ProxyUseDefaultCredentials; + clone.HttpPipelinePrepend = this.HttpPipelinePrepend; + clone.HttpPipelineAppend = this.HttpPipelineAppend; + return clone; + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletEndProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Information: + { + // When an operation supports asjob, Information messages must go thru verbose. + WriteVerbose($"INFORMATION: {(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.DelayBeforePolling: + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("NoWait")) + { + var data = messageData(); + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + var asyncOperation = response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = response.GetFirstHeader(@"Location"); + var uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? response.RequestMessage.RequestUri.AbsoluteUri : location : asyncOperation; + WriteObject(new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.AsyncOperationResponse { Target = uri }); + // do nothing more. + data.Cancel(); + return; + } + } + break; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'AuthorizationsDelete' operation")) + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("AsJob")) + { + var instance = this.Clone(); + var job = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.AsyncJob(instance, this.MyInvocation.Line, this.MyInvocation.MyCommand.Name, this._cancellationTokenSource.Token, this._cancellationTokenSource.Cancel); + JobRepository.Add(job); + var task = instance.ProcessRecordAsync(); + job.Monitor(task); + WriteObject(job); + } + else + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token); + } + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncStart); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + if (InputObject?.Id != null) + { + await this.Client.AuthorizationsDeleteViaIdentity(InputObject.Id, onOk, onNoContent, onDefault, this, Pipeline); + } + else + { + // try to call with PATH parameters from Input Object + if (null == InputObject.SubscriptionId) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.SubscriptionId"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + if (null == InputObject.ResourceGroupName) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.ResourceGroupName"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + if (null == InputObject.PrivateCloudName) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.PrivateCloudName"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + if (null == InputObject.AuthorizationName) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.AuthorizationName"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + await this.Client.AuthorizationsDelete(InputObject.SubscriptionId ?? null, InputObject.ResourceGroupName ?? null, InputObject.PrivateCloudName ?? null, InputObject.AuthorizationName ?? null, onOk, onNoContent, onDefault, this, Pipeline); + } + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public RemoveAzVMWareAuthorization_DeleteViaIdentity() + { + + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 204 (NoContent). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onNoContent(global::System.Net.Http.HttpResponseMessage responseMessage) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnNoContent(responseMessage, ref _returnNow); + // if overrideOnNoContent has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onNoContent - response for 204 / + if (true == MyInvocation?.BoundParameters?.ContainsKey("PassThru")) + { + WriteObject(true); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / + if (true == MyInvocation?.BoundParameters?.ContainsKey("PassThru")) + { + WriteObject(true); + } + } + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/cmdlets/RemoveAzVMWareCluster_Delete.cs b/src/VMWare/generated/cmdlets/RemoveAzVMWareCluster_Delete.cs new file mode 100644 index 000000000000..8ba511e84bfd --- /dev/null +++ b/src/VMWare/generated/cmdlets/RemoveAzVMWareCluster_Delete.cs @@ -0,0 +1,519 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// Delete a cluster in a private cloud + /// + /// [OpenAPI] Clusters_Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AVS/privateClouds/{privateCloudName}/clusters/{clusterName}" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzVMWareCluster_Delete", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(bool))] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Description(@"Delete a cluster in a private cloud")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Generated] + public partial class RemoveAzVMWareCluster_Delete : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// when specified, runs this cmdlet as a PowerShell job + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command as a job")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter AsJob { get; set; } + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.VMWare Client => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.ClientAPI; + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// Backing field for property. + private string _name; + + /// Name of the cluster in the private cloud + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Name of the cluster in the private cloud")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Name of the cluster in the private cloud", + SerializedName = @"clusterName", + PossibleTypes = new [] { typeof(string) })] + [global::System.Management.Automation.Alias("ClusterName")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string Name { get => this._name; set => this._name = value; } + + /// + /// when specified, will make the remote call, and return an AsyncOperationResponse, letting the remote operation continue + /// asynchronously. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command asynchronously")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter NoWait { get; set; } + + /// + /// When specified, forces the cmdlet return a 'bool' given that there isn't a return type by default. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Returns true when the command succeeds")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter PassThru { get; set; } + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.HttpPipeline Pipeline { get; set; } + + /// Backing field for property. + private string _privateCloudName; + + /// Name of the private cloud + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Name of the private cloud")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Name of the private cloud", + SerializedName = @"privateCloudName", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string PrivateCloudName { get => this._privateCloudName; set => this._privateCloudName = value; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Backing field for property. + private string _resourceGroupName; + + /// The name of the resource group. The name is case insensitive. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of the resource group. The name is case insensitive.")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The name of the resource group. The name is case insensitive.", + SerializedName = @"resourceGroupName", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string ResourceGroupName { get => this._resourceGroupName; set => this._resourceGroupName = value; } + + /// Backing field for property. + private string _subscriptionId; + + /// The ID of the target subscription. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The ID of the target subscription.")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The ID of the target subscription.", + SerializedName = @"subscriptionId", + PossibleTypes = new [] { typeof(string) })] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.DefaultInfo( + Name = @"", + Description =@"", + Script = @"(Get-AzContext).Subscription.Id")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string SubscriptionId { get => this._subscriptionId; set => this._subscriptionId = value; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnNoContent will be called before the regular onNoContent has been processed, allowing customization of + /// what happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// /// Determines if the rest of the onNoContent method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnNoContent(global::System.Net.Http.HttpResponseMessage responseMessage, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Creates a duplicate instance of this cmdlet (via JSON serialization). + /// a duplicate instance of RemoveAzVMWareCluster_Delete + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Cmdlets.RemoveAzVMWareCluster_Delete Clone() + { + var clone = new RemoveAzVMWareCluster_Delete(); + clone.__correlationId = this.__correlationId; + clone.__processRecordId = this.__processRecordId; + clone.DefaultProfile = this.DefaultProfile; + clone.InvocationInformation = this.InvocationInformation; + clone.Proxy = this.Proxy; + clone.Pipeline = this.Pipeline; + clone.AsJob = this.AsJob; + clone.Break = this.Break; + clone.ProxyCredential = this.ProxyCredential; + clone.ProxyUseDefaultCredentials = this.ProxyUseDefaultCredentials; + clone.HttpPipelinePrepend = this.HttpPipelinePrepend; + clone.HttpPipelineAppend = this.HttpPipelineAppend; + clone.SubscriptionId = this.SubscriptionId; + clone.ResourceGroupName = this.ResourceGroupName; + clone.PrivateCloudName = this.PrivateCloudName; + clone.Name = this.Name; + return clone; + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletEndProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Information: + { + // When an operation supports asjob, Information messages must go thru verbose. + WriteVerbose($"INFORMATION: {(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.DelayBeforePolling: + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("NoWait")) + { + var data = messageData(); + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + var asyncOperation = response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = response.GetFirstHeader(@"Location"); + var uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? response.RequestMessage.RequestUri.AbsoluteUri : location : asyncOperation; + WriteObject(new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.AsyncOperationResponse { Target = uri }); + // do nothing more. + data.Cancel(); + return; + } + } + break; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'ClustersDelete' operation")) + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("AsJob")) + { + var instance = this.Clone(); + var job = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.AsyncJob(instance, this.MyInvocation.Line, this.MyInvocation.MyCommand.Name, this._cancellationTokenSource.Token, this._cancellationTokenSource.Cancel); + JobRepository.Add(job); + var task = instance.ProcessRecordAsync(); + job.Monitor(task); + WriteObject(job); + } + else + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token); + } + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncStart); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.ClustersDelete(SubscriptionId, ResourceGroupName, PrivateCloudName, Name, onOk, onNoContent, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId,ResourceGroupName=ResourceGroupName,PrivateCloudName=PrivateCloudName,Name=Name}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public RemoveAzVMWareCluster_Delete() + { + + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, ResourceGroupName=ResourceGroupName, PrivateCloudName=PrivateCloudName, Name=Name }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, ResourceGroupName=ResourceGroupName, PrivateCloudName=PrivateCloudName, Name=Name }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 204 (NoContent). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onNoContent(global::System.Net.Http.HttpResponseMessage responseMessage) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnNoContent(responseMessage, ref _returnNow); + // if overrideOnNoContent has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onNoContent - response for 204 / + if (true == MyInvocation?.BoundParameters?.ContainsKey("PassThru")) + { + WriteObject(true); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / + if (true == MyInvocation?.BoundParameters?.ContainsKey("PassThru")) + { + WriteObject(true); + } + } + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/cmdlets/RemoveAzVMWareCluster_DeleteViaIdentity.cs b/src/VMWare/generated/cmdlets/RemoveAzVMWareCluster_DeleteViaIdentity.cs new file mode 100644 index 000000000000..29eb54dcbae6 --- /dev/null +++ b/src/VMWare/generated/cmdlets/RemoveAzVMWareCluster_DeleteViaIdentity.cs @@ -0,0 +1,486 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// Delete a cluster in a private cloud + /// + /// [OpenAPI] Clusters_Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AVS/privateClouds/{privateCloudName}/clusters/{clusterName}" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzVMWareCluster_DeleteViaIdentity", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(bool))] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Description(@"Delete a cluster in a private cloud")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Generated] + public partial class RemoveAzVMWareCluster_DeleteViaIdentity : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// when specified, runs this cmdlet as a PowerShell job + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command as a job")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter AsJob { get; set; } + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.VMWare Client => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.ClientAPI; + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity _inputObject; + + /// Identity Parameter + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Identity Parameter", ValueFromPipeline = true)] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity InputObject { get => this._inputObject; set => this._inputObject = value; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// when specified, will make the remote call, and return an AsyncOperationResponse, letting the remote operation continue + /// asynchronously. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command asynchronously")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter NoWait { get; set; } + + /// + /// When specified, forces the cmdlet return a 'bool' given that there isn't a return type by default. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Returns true when the command succeeds")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter PassThru { get; set; } + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnNoContent will be called before the regular onNoContent has been processed, allowing customization of + /// what happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// /// Determines if the rest of the onNoContent method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnNoContent(global::System.Net.Http.HttpResponseMessage responseMessage, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Creates a duplicate instance of this cmdlet (via JSON serialization). + /// a duplicate instance of RemoveAzVMWareCluster_DeleteViaIdentity + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Cmdlets.RemoveAzVMWareCluster_DeleteViaIdentity Clone() + { + var clone = new RemoveAzVMWareCluster_DeleteViaIdentity(); + clone.__correlationId = this.__correlationId; + clone.__processRecordId = this.__processRecordId; + clone.DefaultProfile = this.DefaultProfile; + clone.InvocationInformation = this.InvocationInformation; + clone.Proxy = this.Proxy; + clone.Pipeline = this.Pipeline; + clone.AsJob = this.AsJob; + clone.Break = this.Break; + clone.ProxyCredential = this.ProxyCredential; + clone.ProxyUseDefaultCredentials = this.ProxyUseDefaultCredentials; + clone.HttpPipelinePrepend = this.HttpPipelinePrepend; + clone.HttpPipelineAppend = this.HttpPipelineAppend; + return clone; + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletEndProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Information: + { + // When an operation supports asjob, Information messages must go thru verbose. + WriteVerbose($"INFORMATION: {(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.DelayBeforePolling: + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("NoWait")) + { + var data = messageData(); + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + var asyncOperation = response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = response.GetFirstHeader(@"Location"); + var uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? response.RequestMessage.RequestUri.AbsoluteUri : location : asyncOperation; + WriteObject(new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.AsyncOperationResponse { Target = uri }); + // do nothing more. + data.Cancel(); + return; + } + } + break; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'ClustersDelete' operation")) + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("AsJob")) + { + var instance = this.Clone(); + var job = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.AsyncJob(instance, this.MyInvocation.Line, this.MyInvocation.MyCommand.Name, this._cancellationTokenSource.Token, this._cancellationTokenSource.Cancel); + JobRepository.Add(job); + var task = instance.ProcessRecordAsync(); + job.Monitor(task); + WriteObject(job); + } + else + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token); + } + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncStart); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + if (InputObject?.Id != null) + { + await this.Client.ClustersDeleteViaIdentity(InputObject.Id, onOk, onNoContent, onDefault, this, Pipeline); + } + else + { + // try to call with PATH parameters from Input Object + if (null == InputObject.SubscriptionId) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.SubscriptionId"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + if (null == InputObject.ResourceGroupName) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.ResourceGroupName"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + if (null == InputObject.PrivateCloudName) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.PrivateCloudName"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + if (null == InputObject.ClusterName) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.ClusterName"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + await this.Client.ClustersDelete(InputObject.SubscriptionId ?? null, InputObject.ResourceGroupName ?? null, InputObject.PrivateCloudName ?? null, InputObject.ClusterName ?? null, onOk, onNoContent, onDefault, this, Pipeline); + } + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public RemoveAzVMWareCluster_DeleteViaIdentity() + { + + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 204 (NoContent). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onNoContent(global::System.Net.Http.HttpResponseMessage responseMessage) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnNoContent(responseMessage, ref _returnNow); + // if overrideOnNoContent has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onNoContent - response for 204 / + if (true == MyInvocation?.BoundParameters?.ContainsKey("PassThru")) + { + WriteObject(true); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / + if (true == MyInvocation?.BoundParameters?.ContainsKey("PassThru")) + { + WriteObject(true); + } + } + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/cmdlets/RemoveAzVMWarePrivateCloud_Delete.cs b/src/VMWare/generated/cmdlets/RemoveAzVMWarePrivateCloud_Delete.cs new file mode 100644 index 000000000000..2dcf2c99e4a8 --- /dev/null +++ b/src/VMWare/generated/cmdlets/RemoveAzVMWarePrivateCloud_Delete.cs @@ -0,0 +1,504 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// Delete a private cloud + /// + /// [OpenAPI] PrivateClouds_Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AVS/privateClouds/{privateCloudName}" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzVMWarePrivateCloud_Delete", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(bool))] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Description(@"Delete a private cloud")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Generated] + public partial class RemoveAzVMWarePrivateCloud_Delete : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// when specified, runs this cmdlet as a PowerShell job + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command as a job")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter AsJob { get; set; } + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.VMWare Client => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.ClientAPI; + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// Backing field for property. + private string _name; + + /// Name of the private cloud + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Name of the private cloud")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Name of the private cloud", + SerializedName = @"privateCloudName", + PossibleTypes = new [] { typeof(string) })] + [global::System.Management.Automation.Alias("PrivateCloudName")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string Name { get => this._name; set => this._name = value; } + + /// + /// when specified, will make the remote call, and return an AsyncOperationResponse, letting the remote operation continue + /// asynchronously. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command asynchronously")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter NoWait { get; set; } + + /// + /// When specified, forces the cmdlet return a 'bool' given that there isn't a return type by default. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Returns true when the command succeeds")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter PassThru { get; set; } + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Backing field for property. + private string _resourceGroupName; + + /// The name of the resource group. The name is case insensitive. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of the resource group. The name is case insensitive.")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The name of the resource group. The name is case insensitive.", + SerializedName = @"resourceGroupName", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string ResourceGroupName { get => this._resourceGroupName; set => this._resourceGroupName = value; } + + /// Backing field for property. + private string _subscriptionId; + + /// The ID of the target subscription. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The ID of the target subscription.")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The ID of the target subscription.", + SerializedName = @"subscriptionId", + PossibleTypes = new [] { typeof(string) })] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.DefaultInfo( + Name = @"", + Description =@"", + Script = @"(Get-AzContext).Subscription.Id")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string SubscriptionId { get => this._subscriptionId; set => this._subscriptionId = value; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnNoContent will be called before the regular onNoContent has been processed, allowing customization of + /// what happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// /// Determines if the rest of the onNoContent method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnNoContent(global::System.Net.Http.HttpResponseMessage responseMessage, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Creates a duplicate instance of this cmdlet (via JSON serialization). + /// a duplicate instance of RemoveAzVMWarePrivateCloud_Delete + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Cmdlets.RemoveAzVMWarePrivateCloud_Delete Clone() + { + var clone = new RemoveAzVMWarePrivateCloud_Delete(); + clone.__correlationId = this.__correlationId; + clone.__processRecordId = this.__processRecordId; + clone.DefaultProfile = this.DefaultProfile; + clone.InvocationInformation = this.InvocationInformation; + clone.Proxy = this.Proxy; + clone.Pipeline = this.Pipeline; + clone.AsJob = this.AsJob; + clone.Break = this.Break; + clone.ProxyCredential = this.ProxyCredential; + clone.ProxyUseDefaultCredentials = this.ProxyUseDefaultCredentials; + clone.HttpPipelinePrepend = this.HttpPipelinePrepend; + clone.HttpPipelineAppend = this.HttpPipelineAppend; + clone.SubscriptionId = this.SubscriptionId; + clone.ResourceGroupName = this.ResourceGroupName; + clone.Name = this.Name; + return clone; + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletEndProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Information: + { + // When an operation supports asjob, Information messages must go thru verbose. + WriteVerbose($"INFORMATION: {(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.DelayBeforePolling: + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("NoWait")) + { + var data = messageData(); + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + var asyncOperation = response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = response.GetFirstHeader(@"Location"); + var uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? response.RequestMessage.RequestUri.AbsoluteUri : location : asyncOperation; + WriteObject(new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.AsyncOperationResponse { Target = uri }); + // do nothing more. + data.Cancel(); + return; + } + } + break; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'PrivateCloudsDelete' operation")) + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("AsJob")) + { + var instance = this.Clone(); + var job = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.AsyncJob(instance, this.MyInvocation.Line, this.MyInvocation.MyCommand.Name, this._cancellationTokenSource.Token, this._cancellationTokenSource.Cancel); + JobRepository.Add(job); + var task = instance.ProcessRecordAsync(); + job.Monitor(task); + WriteObject(job); + } + else + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token); + } + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncStart); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.PrivateCloudsDelete(SubscriptionId, ResourceGroupName, Name, onOk, onNoContent, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId,ResourceGroupName=ResourceGroupName,Name=Name}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public RemoveAzVMWarePrivateCloud_Delete() + { + + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, ResourceGroupName=ResourceGroupName, Name=Name }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, ResourceGroupName=ResourceGroupName, Name=Name }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 204 (NoContent). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onNoContent(global::System.Net.Http.HttpResponseMessage responseMessage) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnNoContent(responseMessage, ref _returnNow); + // if overrideOnNoContent has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onNoContent - response for 204 / + if (true == MyInvocation?.BoundParameters?.ContainsKey("PassThru")) + { + WriteObject(true); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / + if (true == MyInvocation?.BoundParameters?.ContainsKey("PassThru")) + { + WriteObject(true); + } + } + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/cmdlets/RemoveAzVMWarePrivateCloud_DeleteViaIdentity.cs b/src/VMWare/generated/cmdlets/RemoveAzVMWarePrivateCloud_DeleteViaIdentity.cs new file mode 100644 index 000000000000..6c03d477dae9 --- /dev/null +++ b/src/VMWare/generated/cmdlets/RemoveAzVMWarePrivateCloud_DeleteViaIdentity.cs @@ -0,0 +1,482 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// Delete a private cloud + /// + /// [OpenAPI] PrivateClouds_Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AVS/privateClouds/{privateCloudName}" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzVMWarePrivateCloud_DeleteViaIdentity", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(bool))] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Description(@"Delete a private cloud")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Generated] + public partial class RemoveAzVMWarePrivateCloud_DeleteViaIdentity : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// when specified, runs this cmdlet as a PowerShell job + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command as a job")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter AsJob { get; set; } + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.VMWare Client => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.ClientAPI; + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity _inputObject; + + /// Identity Parameter + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Identity Parameter", ValueFromPipeline = true)] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity InputObject { get => this._inputObject; set => this._inputObject = value; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// when specified, will make the remote call, and return an AsyncOperationResponse, letting the remote operation continue + /// asynchronously. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command asynchronously")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter NoWait { get; set; } + + /// + /// When specified, forces the cmdlet return a 'bool' given that there isn't a return type by default. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Returns true when the command succeeds")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter PassThru { get; set; } + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnNoContent will be called before the regular onNoContent has been processed, allowing customization of + /// what happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// /// Determines if the rest of the onNoContent method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnNoContent(global::System.Net.Http.HttpResponseMessage responseMessage, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Creates a duplicate instance of this cmdlet (via JSON serialization). + /// a duplicate instance of RemoveAzVMWarePrivateCloud_DeleteViaIdentity + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Cmdlets.RemoveAzVMWarePrivateCloud_DeleteViaIdentity Clone() + { + var clone = new RemoveAzVMWarePrivateCloud_DeleteViaIdentity(); + clone.__correlationId = this.__correlationId; + clone.__processRecordId = this.__processRecordId; + clone.DefaultProfile = this.DefaultProfile; + clone.InvocationInformation = this.InvocationInformation; + clone.Proxy = this.Proxy; + clone.Pipeline = this.Pipeline; + clone.AsJob = this.AsJob; + clone.Break = this.Break; + clone.ProxyCredential = this.ProxyCredential; + clone.ProxyUseDefaultCredentials = this.ProxyUseDefaultCredentials; + clone.HttpPipelinePrepend = this.HttpPipelinePrepend; + clone.HttpPipelineAppend = this.HttpPipelineAppend; + return clone; + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletEndProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Information: + { + // When an operation supports asjob, Information messages must go thru verbose. + WriteVerbose($"INFORMATION: {(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.DelayBeforePolling: + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("NoWait")) + { + var data = messageData(); + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + var asyncOperation = response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = response.GetFirstHeader(@"Location"); + var uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? response.RequestMessage.RequestUri.AbsoluteUri : location : asyncOperation; + WriteObject(new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.AsyncOperationResponse { Target = uri }); + // do nothing more. + data.Cancel(); + return; + } + } + break; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'PrivateCloudsDelete' operation")) + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("AsJob")) + { + var instance = this.Clone(); + var job = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.AsyncJob(instance, this.MyInvocation.Line, this.MyInvocation.MyCommand.Name, this._cancellationTokenSource.Token, this._cancellationTokenSource.Cancel); + JobRepository.Add(job); + var task = instance.ProcessRecordAsync(); + job.Monitor(task); + WriteObject(job); + } + else + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token); + } + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncStart); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + if (InputObject?.Id != null) + { + await this.Client.PrivateCloudsDeleteViaIdentity(InputObject.Id, onOk, onNoContent, onDefault, this, Pipeline); + } + else + { + // try to call with PATH parameters from Input Object + if (null == InputObject.SubscriptionId) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.SubscriptionId"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + if (null == InputObject.ResourceGroupName) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.ResourceGroupName"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + if (null == InputObject.PrivateCloudName) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.PrivateCloudName"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + await this.Client.PrivateCloudsDelete(InputObject.SubscriptionId ?? null, InputObject.ResourceGroupName ?? null, InputObject.PrivateCloudName ?? null, onOk, onNoContent, onDefault, this, Pipeline); + } + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public RemoveAzVMWarePrivateCloud_DeleteViaIdentity() + { + + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 204 (NoContent). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onNoContent(global::System.Net.Http.HttpResponseMessage responseMessage) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnNoContent(responseMessage, ref _returnNow); + // if overrideOnNoContent has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onNoContent - response for 204 / + if (true == MyInvocation?.BoundParameters?.ContainsKey("PassThru")) + { + WriteObject(true); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / + if (true == MyInvocation?.BoundParameters?.ContainsKey("PassThru")) + { + WriteObject(true); + } + } + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/cmdlets/TestAzVMWareLocationQuotaAvailability_Check.cs b/src/VMWare/generated/cmdlets/TestAzVMWareLocationQuotaAvailability_Check.cs new file mode 100644 index 000000000000..d70c2a6b2b98 --- /dev/null +++ b/src/VMWare/generated/cmdlets/TestAzVMWareLocationQuotaAvailability_Check.cs @@ -0,0 +1,384 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// Return quota for subscription by region + /// + /// [OpenAPI] Locations_CheckQuotaAvailability=>POST:"/subscriptions/{subscriptionId}/providers/Microsoft.AVS/locations/{location}/checkQuotaAvailability" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsDiagnostic.Test, @"AzVMWareLocationQuotaAvailability_Check", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IQuota))] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Description(@"Return quota for subscription by region")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Generated] + public partial class TestAzVMWareLocationQuotaAvailability_Check : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.VMWare Client => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.ClientAPI; + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// Backing field for property. + private string _location; + + /// Azure region + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Azure region")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Azure region", + SerializedName = @"location", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string Location { get => this._location; set => this._location = value; } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Backing field for property. + private string _subscriptionId; + + /// The ID of the target subscription. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The ID of the target subscription.")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The ID of the target subscription.", + SerializedName = @"subscriptionId", + PossibleTypes = new [] { typeof(string) })] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.DefaultInfo( + Name = @"", + Description =@"", + Script = @"(Get-AzContext).Subscription.Id")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string SubscriptionId { get => this._subscriptionId; set => this._subscriptionId = value; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletEndProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Information: + { + var data = messageData(); + WriteInformation(data, new[] { data.Message }); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'LocationsCheckQuotaAvailability' operation")) + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token); + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncStart); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.LocationsCheckQuotaAvailability(SubscriptionId, Location, onOk, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId,Location=Location}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public TestAzVMWareLocationQuotaAvailability_Check() + { + + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, Location=Location }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, Location=Location }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IQuota + WriteObject((await response)); + } + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/cmdlets/TestAzVMWareLocationQuotaAvailability_CheckViaIdentity.cs b/src/VMWare/generated/cmdlets/TestAzVMWareLocationQuotaAvailability_CheckViaIdentity.cs new file mode 100644 index 000000000000..02ee33ab25ec --- /dev/null +++ b/src/VMWare/generated/cmdlets/TestAzVMWareLocationQuotaAvailability_CheckViaIdentity.cs @@ -0,0 +1,376 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// Return quota for subscription by region + /// + /// [OpenAPI] Locations_CheckQuotaAvailability=>POST:"/subscriptions/{subscriptionId}/providers/Microsoft.AVS/locations/{location}/checkQuotaAvailability" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsDiagnostic.Test, @"AzVMWareLocationQuotaAvailability_CheckViaIdentity", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IQuota))] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Description(@"Return quota for subscription by region")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Generated] + public partial class TestAzVMWareLocationQuotaAvailability_CheckViaIdentity : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.VMWare Client => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.ClientAPI; + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity _inputObject; + + /// Identity Parameter + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Identity Parameter", ValueFromPipeline = true)] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity InputObject { get => this._inputObject; set => this._inputObject = value; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletEndProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Information: + { + var data = messageData(); + WriteInformation(data, new[] { data.Message }); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'LocationsCheckQuotaAvailability' operation")) + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token); + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncStart); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + if (InputObject?.Id != null) + { + await this.Client.LocationsCheckQuotaAvailabilityViaIdentity(InputObject.Id, onOk, onDefault, this, Pipeline); + } + else + { + // try to call with PATH parameters from Input Object + if (null == InputObject.SubscriptionId) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.SubscriptionId"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + if (null == InputObject.Location) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.Location"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + await this.Client.LocationsCheckQuotaAvailability(InputObject.SubscriptionId ?? null, InputObject.Location ?? null, onOk, onDefault, this, Pipeline); + } + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public TestAzVMWareLocationQuotaAvailability_CheckViaIdentity() + { + + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IQuota + WriteObject((await response)); + } + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/cmdlets/TestAzVMWareLocationTrialAvailability_Check.cs b/src/VMWare/generated/cmdlets/TestAzVMWareLocationTrialAvailability_Check.cs new file mode 100644 index 000000000000..b771f3603838 --- /dev/null +++ b/src/VMWare/generated/cmdlets/TestAzVMWareLocationTrialAvailability_Check.cs @@ -0,0 +1,384 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// Return trial status for subscription by region + /// + /// [OpenAPI] Locations_CheckTrialAvailability=>POST:"/subscriptions/{subscriptionId}/providers/Microsoft.AVS/locations/{location}/checkTrialAvailability" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsDiagnostic.Test, @"AzVMWareLocationTrialAvailability_Check", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrial))] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Description(@"Return trial status for subscription by region")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Generated] + public partial class TestAzVMWareLocationTrialAvailability_Check : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.VMWare Client => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.ClientAPI; + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// Backing field for property. + private string _location; + + /// Azure region + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Azure region")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Azure region", + SerializedName = @"location", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string Location { get => this._location; set => this._location = value; } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Backing field for property. + private string _subscriptionId; + + /// The ID of the target subscription. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The ID of the target subscription.")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The ID of the target subscription.", + SerializedName = @"subscriptionId", + PossibleTypes = new [] { typeof(string) })] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.DefaultInfo( + Name = @"", + Description =@"", + Script = @"(Get-AzContext).Subscription.Id")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string SubscriptionId { get => this._subscriptionId; set => this._subscriptionId = value; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletEndProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Information: + { + var data = messageData(); + WriteInformation(data, new[] { data.Message }); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'LocationsCheckTrialAvailability' operation")) + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token); + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncStart); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.LocationsCheckTrialAvailability(SubscriptionId, Location, onOk, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId,Location=Location}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public TestAzVMWareLocationTrialAvailability_Check() + { + + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, Location=Location }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, Location=Location }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrial + WriteObject((await response)); + } + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/cmdlets/TestAzVMWareLocationTrialAvailability_CheckViaIdentity.cs b/src/VMWare/generated/cmdlets/TestAzVMWareLocationTrialAvailability_CheckViaIdentity.cs new file mode 100644 index 000000000000..986c2516b616 --- /dev/null +++ b/src/VMWare/generated/cmdlets/TestAzVMWareLocationTrialAvailability_CheckViaIdentity.cs @@ -0,0 +1,376 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// Return trial status for subscription by region + /// + /// [OpenAPI] Locations_CheckTrialAvailability=>POST:"/subscriptions/{subscriptionId}/providers/Microsoft.AVS/locations/{location}/checkTrialAvailability" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsDiagnostic.Test, @"AzVMWareLocationTrialAvailability_CheckViaIdentity", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrial))] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Description(@"Return trial status for subscription by region")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Generated] + public partial class TestAzVMWareLocationTrialAvailability_CheckViaIdentity : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.VMWare Client => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.ClientAPI; + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity _inputObject; + + /// Identity Parameter + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Identity Parameter", ValueFromPipeline = true)] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity InputObject { get => this._inputObject; set => this._inputObject = value; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletEndProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Information: + { + var data = messageData(); + WriteInformation(data, new[] { data.Message }); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'LocationsCheckTrialAvailability' operation")) + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token); + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncStart); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + if (InputObject?.Id != null) + { + await this.Client.LocationsCheckTrialAvailabilityViaIdentity(InputObject.Id, onOk, onDefault, this, Pipeline); + } + else + { + // try to call with PATH parameters from Input Object + if (null == InputObject.SubscriptionId) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.SubscriptionId"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + if (null == InputObject.Location) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.Location"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + await this.Client.LocationsCheckTrialAvailability(InputObject.SubscriptionId ?? null, InputObject.Location ?? null, onOk, onDefault, this, Pipeline); + } + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public TestAzVMWareLocationTrialAvailability_CheckViaIdentity() + { + + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrial + WriteObject((await response)); + } + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/cmdlets/UpdateAzVMWareCluster_UpdateExpanded.cs b/src/VMWare/generated/cmdlets/UpdateAzVMWareCluster_UpdateExpanded.cs new file mode 100644 index 000000000000..5a94a97cc7da --- /dev/null +++ b/src/VMWare/generated/cmdlets/UpdateAzVMWareCluster_UpdateExpanded.cs @@ -0,0 +1,498 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// Update a cluster in a private cloud + /// + /// [OpenAPI] Clusters_Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AVS/privateClouds/{privateCloudName}/clusters/{clusterName}" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzVMWareCluster_UpdateExpanded", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICluster))] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Description(@"Update a cluster in a private cloud")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Generated] + public partial class UpdateAzVMWareCluster_UpdateExpanded : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// when specified, runs this cmdlet as a PowerShell job + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command as a job")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter AsJob { get; set; } + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.VMWare Client => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.ClientAPI; + + /// The cluster size + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The cluster size")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The cluster size", + SerializedName = @"clusterSize", + PossibleTypes = new [] { typeof(int) })] + public int ClusterSize { get => ClusterUpdateBody.ClusterSize ?? default(int); set => ClusterUpdateBody.ClusterSize = value; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdate _clusterUpdateBody= new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ClusterUpdate(); + + /// An update of a cluster resource + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdate ClusterUpdateBody { get => this._clusterUpdateBody; set => this._clusterUpdateBody = value; } + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// Backing field for property. + private string _name; + + /// Name of the cluster in the private cloud + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Name of the cluster in the private cloud")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Name of the cluster in the private cloud", + SerializedName = @"clusterName", + PossibleTypes = new [] { typeof(string) })] + [global::System.Management.Automation.Alias("ClusterName")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string Name { get => this._name; set => this._name = value; } + + /// + /// when specified, will make the remote call, and return an AsyncOperationResponse, letting the remote operation continue + /// asynchronously. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command asynchronously")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter NoWait { get; set; } + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.HttpPipeline Pipeline { get; set; } + + /// Backing field for property. + private string _privateCloudName; + + /// Name of the private cloud + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Name of the private cloud")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Name of the private cloud", + SerializedName = @"privateCloudName", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string PrivateCloudName { get => this._privateCloudName; set => this._privateCloudName = value; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Backing field for property. + private string _resourceGroupName; + + /// The name of the resource group. The name is case insensitive. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of the resource group. The name is case insensitive.")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The name of the resource group. The name is case insensitive.", + SerializedName = @"resourceGroupName", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string ResourceGroupName { get => this._resourceGroupName; set => this._resourceGroupName = value; } + + /// Backing field for property. + private string _subscriptionId; + + /// The ID of the target subscription. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The ID of the target subscription.")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The ID of the target subscription.", + SerializedName = @"subscriptionId", + PossibleTypes = new [] { typeof(string) })] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.DefaultInfo( + Name = @"", + Description =@"", + Script = @"(Get-AzContext).Subscription.Id")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string SubscriptionId { get => this._subscriptionId; set => this._subscriptionId = value; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Creates a duplicate instance of this cmdlet (via JSON serialization). + /// a duplicate instance of UpdateAzVMWareCluster_UpdateExpanded + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Cmdlets.UpdateAzVMWareCluster_UpdateExpanded Clone() + { + var clone = new UpdateAzVMWareCluster_UpdateExpanded(); + clone.__correlationId = this.__correlationId; + clone.__processRecordId = this.__processRecordId; + clone.DefaultProfile = this.DefaultProfile; + clone.InvocationInformation = this.InvocationInformation; + clone.Proxy = this.Proxy; + clone.Pipeline = this.Pipeline; + clone.AsJob = this.AsJob; + clone.Break = this.Break; + clone.ProxyCredential = this.ProxyCredential; + clone.ProxyUseDefaultCredentials = this.ProxyUseDefaultCredentials; + clone.HttpPipelinePrepend = this.HttpPipelinePrepend; + clone.HttpPipelineAppend = this.HttpPipelineAppend; + clone.ClusterUpdateBody = this.ClusterUpdateBody; + clone.SubscriptionId = this.SubscriptionId; + clone.ResourceGroupName = this.ResourceGroupName; + clone.PrivateCloudName = this.PrivateCloudName; + clone.Name = this.Name; + return clone; + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletEndProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Information: + { + // When an operation supports asjob, Information messages must go thru verbose. + WriteVerbose($"INFORMATION: {(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.DelayBeforePolling: + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("NoWait")) + { + var data = messageData(); + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + var asyncOperation = response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = response.GetFirstHeader(@"Location"); + var uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? response.RequestMessage.RequestUri.AbsoluteUri : location : asyncOperation; + WriteObject(new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.AsyncOperationResponse { Target = uri }); + // do nothing more. + data.Cancel(); + return; + } + } + break; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'ClustersUpdate' operation")) + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("AsJob")) + { + var instance = this.Clone(); + var job = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.AsyncJob(instance, this.MyInvocation.Line, this.MyInvocation.MyCommand.Name, this._cancellationTokenSource.Token, this._cancellationTokenSource.Cancel); + JobRepository.Add(job); + var task = instance.ProcessRecordAsync(); + job.Monitor(task); + WriteObject(job); + } + else + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token); + } + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncStart); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.ClustersUpdate(SubscriptionId, ResourceGroupName, PrivateCloudName, Name, ClusterUpdateBody, onOk, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId,ResourceGroupName=ResourceGroupName,PrivateCloudName=PrivateCloudName,Name=Name,body=ClusterUpdateBody}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public UpdateAzVMWareCluster_UpdateExpanded() + { + + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, ResourceGroupName=ResourceGroupName, PrivateCloudName=PrivateCloudName, Name=Name, body=ClusterUpdateBody }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, ResourceGroupName=ResourceGroupName, PrivateCloudName=PrivateCloudName, Name=Name, body=ClusterUpdateBody }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICluster + WriteObject((await response)); + } + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/cmdlets/UpdateAzVMWareCluster_UpdateViaIdentityExpanded.cs b/src/VMWare/generated/cmdlets/UpdateAzVMWareCluster_UpdateViaIdentityExpanded.cs new file mode 100644 index 000000000000..4d474a2ac056 --- /dev/null +++ b/src/VMWare/generated/cmdlets/UpdateAzVMWareCluster_UpdateViaIdentityExpanded.cs @@ -0,0 +1,465 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// Update a cluster in a private cloud + /// + /// [OpenAPI] Clusters_Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AVS/privateClouds/{privateCloudName}/clusters/{clusterName}" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzVMWareCluster_UpdateViaIdentityExpanded", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICluster))] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Description(@"Update a cluster in a private cloud")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Generated] + public partial class UpdateAzVMWareCluster_UpdateViaIdentityExpanded : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// when specified, runs this cmdlet as a PowerShell job + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command as a job")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter AsJob { get; set; } + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.VMWare Client => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.ClientAPI; + + /// The cluster size + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The cluster size")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The cluster size", + SerializedName = @"clusterSize", + PossibleTypes = new [] { typeof(int) })] + public int ClusterSize { get => ClusterUpdateBody.ClusterSize ?? default(int); set => ClusterUpdateBody.ClusterSize = value; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdate _clusterUpdateBody= new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ClusterUpdate(); + + /// An update of a cluster resource + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IClusterUpdate ClusterUpdateBody { get => this._clusterUpdateBody; set => this._clusterUpdateBody = value; } + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity _inputObject; + + /// Identity Parameter + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Identity Parameter", ValueFromPipeline = true)] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity InputObject { get => this._inputObject; set => this._inputObject = value; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// when specified, will make the remote call, and return an AsyncOperationResponse, letting the remote operation continue + /// asynchronously. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command asynchronously")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter NoWait { get; set; } + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Creates a duplicate instance of this cmdlet (via JSON serialization). + /// a duplicate instance of UpdateAzVMWareCluster_UpdateViaIdentityExpanded + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Cmdlets.UpdateAzVMWareCluster_UpdateViaIdentityExpanded Clone() + { + var clone = new UpdateAzVMWareCluster_UpdateViaIdentityExpanded(); + clone.__correlationId = this.__correlationId; + clone.__processRecordId = this.__processRecordId; + clone.DefaultProfile = this.DefaultProfile; + clone.InvocationInformation = this.InvocationInformation; + clone.Proxy = this.Proxy; + clone.Pipeline = this.Pipeline; + clone.AsJob = this.AsJob; + clone.Break = this.Break; + clone.ProxyCredential = this.ProxyCredential; + clone.ProxyUseDefaultCredentials = this.ProxyUseDefaultCredentials; + clone.HttpPipelinePrepend = this.HttpPipelinePrepend; + clone.HttpPipelineAppend = this.HttpPipelineAppend; + clone.ClusterUpdateBody = this.ClusterUpdateBody; + return clone; + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletEndProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Information: + { + // When an operation supports asjob, Information messages must go thru verbose. + WriteVerbose($"INFORMATION: {(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.DelayBeforePolling: + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("NoWait")) + { + var data = messageData(); + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + var asyncOperation = response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = response.GetFirstHeader(@"Location"); + var uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? response.RequestMessage.RequestUri.AbsoluteUri : location : asyncOperation; + WriteObject(new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.AsyncOperationResponse { Target = uri }); + // do nothing more. + data.Cancel(); + return; + } + } + break; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'ClustersUpdate' operation")) + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("AsJob")) + { + var instance = this.Clone(); + var job = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.AsyncJob(instance, this.MyInvocation.Line, this.MyInvocation.MyCommand.Name, this._cancellationTokenSource.Token, this._cancellationTokenSource.Cancel); + JobRepository.Add(job); + var task = instance.ProcessRecordAsync(); + job.Monitor(task); + WriteObject(job); + } + else + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token); + } + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncStart); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + if (InputObject?.Id != null) + { + await this.Client.ClustersUpdateViaIdentity(InputObject.Id, ClusterUpdateBody, onOk, onDefault, this, Pipeline); + } + else + { + // try to call with PATH parameters from Input Object + if (null == InputObject.SubscriptionId) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.SubscriptionId"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + if (null == InputObject.ResourceGroupName) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.ResourceGroupName"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + if (null == InputObject.PrivateCloudName) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.PrivateCloudName"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + if (null == InputObject.ClusterName) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.ClusterName"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + await this.Client.ClustersUpdate(InputObject.SubscriptionId ?? null, InputObject.ResourceGroupName ?? null, InputObject.PrivateCloudName ?? null, InputObject.ClusterName ?? null, ClusterUpdateBody, onOk, onDefault, this, Pipeline); + } + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=ClusterUpdateBody}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public UpdateAzVMWareCluster_UpdateViaIdentityExpanded() + { + + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=ClusterUpdateBody }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=ClusterUpdateBody }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICluster + WriteObject((await response)); + } + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/cmdlets/UpdateAzVMWarePrivateCloud_UpdateExpanded.cs b/src/VMWare/generated/cmdlets/UpdateAzVMWarePrivateCloud_UpdateExpanded.cs new file mode 100644 index 000000000000..3ea3113a5a17 --- /dev/null +++ b/src/VMWare/generated/cmdlets/UpdateAzVMWarePrivateCloud_UpdateExpanded.cs @@ -0,0 +1,519 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// Update a private cloud + /// + /// [OpenAPI] PrivateClouds_Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AVS/privateClouds/{privateCloudName}" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzVMWarePrivateCloud_UpdateExpanded", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud))] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Description(@"Update a private cloud")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Generated] + public partial class UpdateAzVMWarePrivateCloud_UpdateExpanded : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// when specified, runs this cmdlet as a PowerShell job + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command as a job")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter AsJob { get; set; } + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.VMWare Client => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.ClientAPI; + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// vCenter Single Sign On Identity Sources + [global::System.Management.Automation.AllowEmptyCollection] + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "vCenter Single Sign On Identity Sources")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"vCenter Single Sign On Identity Sources", + SerializedName = @"identitySources", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySource) })] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySource[] IdentitySource { get => PrivateCloudUpdateBody.IdentitySource ?? null /* arrayOf */; set => PrivateCloudUpdateBody.IdentitySource = value; } + + /// Connectivity to internet is enabled or disabled + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Connectivity to internet is enabled or disabled")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Connectivity to internet is enabled or disabled", + SerializedName = @"internet", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum) })] + [global::System.Management.Automation.ArgumentCompleter(typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum))] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum Internet { get => PrivateCloudUpdateBody.Internet ?? ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum)""); set => PrivateCloudUpdateBody.Internet = value; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// The cluster size + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The cluster size")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The cluster size", + SerializedName = @"clusterSize", + PossibleTypes = new [] { typeof(int) })] + public int ManagementClusterSize { get => PrivateCloudUpdateBody.ManagementClusterSize ?? default(int); set => PrivateCloudUpdateBody.ManagementClusterSize = value; } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// Backing field for property. + private string _name; + + /// Name of the private cloud + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Name of the private cloud")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"Name of the private cloud", + SerializedName = @"privateCloudName", + PossibleTypes = new [] { typeof(string) })] + [global::System.Management.Automation.Alias("PrivateCloudName")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string Name { get => this._name; set => this._name = value; } + + /// + /// when specified, will make the remote call, and return an AsyncOperationResponse, letting the remote operation continue + /// asynchronously. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command asynchronously")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter NoWait { get; set; } + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.HttpPipeline Pipeline { get; set; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdate _privateCloudUpdateBody= new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.PrivateCloudUpdate(); + + /// An update to a private cloud resource + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdate PrivateCloudUpdateBody { get => this._privateCloudUpdateBody; set => this._privateCloudUpdateBody = value; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Backing field for property. + private string _resourceGroupName; + + /// The name of the resource group. The name is case insensitive. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of the resource group. The name is case insensitive.")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The name of the resource group. The name is case insensitive.", + SerializedName = @"resourceGroupName", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string ResourceGroupName { get => this._resourceGroupName; set => this._resourceGroupName = value; } + + /// Backing field for property. + private string _subscriptionId; + + /// The ID of the target subscription. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The ID of the target subscription.")] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The ID of the target subscription.", + SerializedName = @"subscriptionId", + PossibleTypes = new [] { typeof(string) })] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.DefaultInfo( + Name = @"", + Description =@"", + Script = @"(Get-AzContext).Subscription.Id")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public string SubscriptionId { get => this._subscriptionId; set => this._subscriptionId = value; } + + /// Resource tags. + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ExportAs(typeof(global::System.Collections.Hashtable))] + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Resource tags.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Resource tags.", + SerializedName = @"tags", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateTags) })] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateTags Tag { get => PrivateCloudUpdateBody.Tag ?? null /* object */; set => PrivateCloudUpdateBody.Tag = value; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Creates a duplicate instance of this cmdlet (via JSON serialization). + /// a duplicate instance of UpdateAzVMWarePrivateCloud_UpdateExpanded + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Cmdlets.UpdateAzVMWarePrivateCloud_UpdateExpanded Clone() + { + var clone = new UpdateAzVMWarePrivateCloud_UpdateExpanded(); + clone.__correlationId = this.__correlationId; + clone.__processRecordId = this.__processRecordId; + clone.DefaultProfile = this.DefaultProfile; + clone.InvocationInformation = this.InvocationInformation; + clone.Proxy = this.Proxy; + clone.Pipeline = this.Pipeline; + clone.AsJob = this.AsJob; + clone.Break = this.Break; + clone.ProxyCredential = this.ProxyCredential; + clone.ProxyUseDefaultCredentials = this.ProxyUseDefaultCredentials; + clone.HttpPipelinePrepend = this.HttpPipelinePrepend; + clone.HttpPipelineAppend = this.HttpPipelineAppend; + clone.PrivateCloudUpdateBody = this.PrivateCloudUpdateBody; + clone.SubscriptionId = this.SubscriptionId; + clone.ResourceGroupName = this.ResourceGroupName; + clone.Name = this.Name; + return clone; + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletEndProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Information: + { + // When an operation supports asjob, Information messages must go thru verbose. + WriteVerbose($"INFORMATION: {(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.DelayBeforePolling: + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("NoWait")) + { + var data = messageData(); + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + var asyncOperation = response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = response.GetFirstHeader(@"Location"); + var uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? response.RequestMessage.RequestUri.AbsoluteUri : location : asyncOperation; + WriteObject(new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.AsyncOperationResponse { Target = uri }); + // do nothing more. + data.Cancel(); + return; + } + } + break; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'PrivateCloudsUpdate' operation")) + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("AsJob")) + { + var instance = this.Clone(); + var job = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.AsyncJob(instance, this.MyInvocation.Line, this.MyInvocation.MyCommand.Name, this._cancellationTokenSource.Token, this._cancellationTokenSource.Cancel); + JobRepository.Add(job); + var task = instance.ProcessRecordAsync(); + job.Monitor(task); + WriteObject(job); + } + else + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token); + } + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncStart); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.PrivateCloudsUpdate(SubscriptionId, ResourceGroupName, Name, PrivateCloudUpdateBody, onOk, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId,ResourceGroupName=ResourceGroupName,Name=Name,body=PrivateCloudUpdateBody}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public UpdateAzVMWarePrivateCloud_UpdateExpanded() + { + + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, ResourceGroupName=ResourceGroupName, Name=Name, body=PrivateCloudUpdateBody }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, ResourceGroupName=ResourceGroupName, Name=Name, body=PrivateCloudUpdateBody }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud + WriteObject((await response)); + } + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/cmdlets/UpdateAzVMWarePrivateCloud_UpdateViaIdentityExpanded.cs b/src/VMWare/generated/cmdlets/UpdateAzVMWarePrivateCloud_UpdateViaIdentityExpanded.cs new file mode 100644 index 000000000000..cd7ef6ac498d --- /dev/null +++ b/src/VMWare/generated/cmdlets/UpdateAzVMWarePrivateCloud_UpdateViaIdentityExpanded.cs @@ -0,0 +1,497 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + /// Update a private cloud + /// + /// [OpenAPI] PrivateClouds_Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AVS/privateClouds/{privateCloudName}" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzVMWarePrivateCloud_UpdateViaIdentityExpanded", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud))] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Description(@"Update a private cloud")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Generated] + public partial class UpdateAzVMWarePrivateCloud_UpdateViaIdentityExpanded : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// when specified, runs this cmdlet as a PowerShell job + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command as a job")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter AsJob { get; set; } + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.VMWare Client => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.ClientAPI; + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// vCenter Single Sign On Identity Sources + [global::System.Management.Automation.AllowEmptyCollection] + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "vCenter Single Sign On Identity Sources")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"vCenter Single Sign On Identity Sources", + SerializedName = @"identitySources", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySource) })] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySource[] IdentitySource { get => PrivateCloudUpdateBody.IdentitySource ?? null /* arrayOf */; set => PrivateCloudUpdateBody.IdentitySource = value; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity _inputObject; + + /// Identity Parameter + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Identity Parameter", ValueFromPipeline = true)] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Path)] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity InputObject { get => this._inputObject; set => this._inputObject = value; } + + /// Connectivity to internet is enabled or disabled + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Connectivity to internet is enabled or disabled")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Connectivity to internet is enabled or disabled", + SerializedName = @"internet", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum) })] + [global::System.Management.Automation.ArgumentCompleter(typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum))] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum Internet { get => PrivateCloudUpdateBody.Internet ?? ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum)""); set => PrivateCloudUpdateBody.Internet = value; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// The cluster size + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The cluster size")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The cluster size", + SerializedName = @"clusterSize", + PossibleTypes = new [] { typeof(int) })] + public int ManagementClusterSize { get => PrivateCloudUpdateBody.ManagementClusterSize ?? default(int); set => PrivateCloudUpdateBody.ManagementClusterSize = value; } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// when specified, will make the remote call, and return an AsyncOperationResponse, letting the remote operation continue + /// asynchronously. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command asynchronously")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter NoWait { get; set; } + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.HttpPipeline Pipeline { get; set; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdate _privateCloudUpdateBody= new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.PrivateCloudUpdate(); + + /// An update to a private cloud resource + private Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdate PrivateCloudUpdateBody { get => this._privateCloudUpdateBody; set => this._privateCloudUpdateBody = value; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Resource tags. + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ExportAs(typeof(global::System.Collections.Hashtable))] + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Resource tags.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category(global::Microsoft.Azure.PowerShell.Cmdlets.VMWare.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Resource tags.", + SerializedName = @"tags", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateTags) })] + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloudUpdateTags Tag { get => PrivateCloudUpdateBody.Tag ?? null /* object */; set => PrivateCloudUpdateBody.Tag = value; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Creates a duplicate instance of this cmdlet (via JSON serialization). + /// a duplicate instance of UpdateAzVMWarePrivateCloud_UpdateViaIdentityExpanded + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Cmdlets.UpdateAzVMWarePrivateCloud_UpdateViaIdentityExpanded Clone() + { + var clone = new UpdateAzVMWarePrivateCloud_UpdateViaIdentityExpanded(); + clone.__correlationId = this.__correlationId; + clone.__processRecordId = this.__processRecordId; + clone.DefaultProfile = this.DefaultProfile; + clone.InvocationInformation = this.InvocationInformation; + clone.Proxy = this.Proxy; + clone.Pipeline = this.Pipeline; + clone.AsJob = this.AsJob; + clone.Break = this.Break; + clone.ProxyCredential = this.ProxyCredential; + clone.ProxyUseDefaultCredentials = this.ProxyUseDefaultCredentials; + clone.HttpPipelinePrepend = this.HttpPipelinePrepend; + clone.HttpPipelineAppend = this.HttpPipelineAppend; + clone.PrivateCloudUpdateBody = this.PrivateCloudUpdateBody; + return clone; + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletEndProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Information: + { + // When an operation supports asjob, Information messages must go thru verbose. + WriteVerbose($"INFORMATION: {(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.DelayBeforePolling: + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("NoWait")) + { + var data = messageData(); + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + var asyncOperation = response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = response.GetFirstHeader(@"Location"); + var uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? response.RequestMessage.RequestUri.AbsoluteUri : location : asyncOperation; + WriteObject(new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.AsyncOperationResponse { Target = uri }); + // do nothing more. + data.Cancel(); + return; + } + } + break; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'PrivateCloudsUpdate' operation")) + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("AsJob")) + { + var instance = this.Clone(); + var job = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.AsyncJob(instance, this.MyInvocation.Line, this.MyInvocation.MyCommand.Name, this._cancellationTokenSource.Token, this._cancellationTokenSource.Cancel); + JobRepository.Add(job); + var task = instance.ProcessRecordAsync(); + job.Monitor(task); + WriteObject(job); + } + else + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token); + } + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncStart); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + if (InputObject?.Id != null) + { + await this.Client.PrivateCloudsUpdateViaIdentity(InputObject.Id, PrivateCloudUpdateBody, onOk, onDefault, this, Pipeline); + } + else + { + // try to call with PATH parameters from Input Object + if (null == InputObject.SubscriptionId) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.SubscriptionId"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + if (null == InputObject.ResourceGroupName) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.ResourceGroupName"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + if (null == InputObject.PrivateCloudName) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.PrivateCloudName"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + await this.Client.PrivateCloudsUpdate(InputObject.SubscriptionId ?? null, InputObject.ResourceGroupName ?? null, InputObject.PrivateCloudName ?? null, PrivateCloudUpdateBody, onOk, onDefault, this, Pipeline); + } + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=PrivateCloudUpdateBody}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public UpdateAzVMWarePrivateCloud_UpdateViaIdentityExpanded() + { + + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=PrivateCloudUpdateBody }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=PrivateCloudUpdateBody }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud + WriteObject((await response)); + } + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/AsyncCommandRuntime.cs b/src/VMWare/generated/runtime/AsyncCommandRuntime.cs new file mode 100644 index 000000000000..c652b0c25117 --- /dev/null +++ b/src/VMWare/generated/runtime/AsyncCommandRuntime.cs @@ -0,0 +1,828 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell +{ + using System.Management.Automation; + using System.Management.Automation.Host; + using System.Threading; + using System.Linq; + + internal interface IAsyncCommandRuntimeExtensions + { + Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep Wrap(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep func); + System.Collections.Generic.IEnumerable Wrap(System.Collections.Generic.IEnumerable funcs); + + T ExecuteSync(System.Func step); + } + + public class AsyncCommandRuntime : System.Management.Automation.ICommandRuntime2, IAsyncCommandRuntimeExtensions, System.IDisposable + { + private ICommandRuntime2 originalCommandRuntime; + private System.Threading.Thread originalThread; + public bool AllowInteractive { get; set; } = false; + + public CancellationToken cancellationToken; + SemaphoreSlim semaphore = new SemaphoreSlim(1, 1); + ManualResetEventSlim readyToRun = new ManualResetEventSlim(false); + ManualResetEventSlim completed = new ManualResetEventSlim(false); + + System.Action runOnMainThread; + + private System.Management.Automation.PSCmdlet cmdlet; + + internal AsyncCommandRuntime(System.Management.Automation.PSCmdlet cmdlet, CancellationToken cancellationToken) + { + this.originalCommandRuntime = cmdlet.CommandRuntime as ICommandRuntime2; + this.originalThread = System.Threading.Thread.CurrentThread; + this.cancellationToken = cancellationToken; + this.cmdlet = cmdlet; + cmdlet.CommandRuntime = this; + } + + public PSHost Host => this.originalCommandRuntime.Host; + + public PSTransactionContext CurrentPSTransaction => this.originalCommandRuntime.CurrentPSTransaction; + + private void CheckForInteractive() + { + // This is an interactive call -- if we are not on the original thread, this will only work if this was done at ACR creation time; + if (!AllowInteractive) + { + throw new System.Exception("AsyncCommandRuntime is not configured for interactive calls"); + } + } + private void WaitOurTurn() + { + // wait for our turn to play + semaphore?.Wait(cancellationToken); + + // ensure that completed is not set + completed.Reset(); + } + + private void WaitForCompletion() + { + // wait for the result (or cancellation!) + WaitHandle.WaitAny(new[] { cancellationToken.WaitHandle, completed?.WaitHandle }); + + // let go of the semaphore + semaphore?.Release(); + + } + + public bool ShouldContinue(string query, string caption, bool hasSecurityImpact, ref bool yesToAll, ref bool noToAll) + { + // if we are on the original thread, just call straight thru. + if (this.originalThread == System.Threading.Thread.CurrentThread) + { + return originalCommandRuntime.ShouldContinue(query, caption, hasSecurityImpact, ref yesToAll, ref noToAll); + } + + CheckForInteractive(); + + // otherwise, queue up the request and wait for the main thread to do the right thing. + try + { + // wait for our turn to talk to the main thread + WaitOurTurn(); + + bool yta = yesToAll; + bool nta = noToAll; + bool result = false; + + // set the function to run + runOnMainThread = () => result = originalCommandRuntime.ShouldContinue(query, caption, hasSecurityImpact, ref yta, ref nta); + + // tell the main thread to go ahead + readyToRun.Set(); + + // wait for the result (or cancellation!) + WaitForCompletion(); + + // set the output variables + yesToAll = yta; + noToAll = nta; + return result; + } + catch (System.OperationCanceledException exception) + { + // maybe don't even worry? + throw exception; + } + } + + public bool ShouldContinue(string query, string caption) + { + // if we are on the original thread, just call straight thru. + if (this.originalThread == System.Threading.Thread.CurrentThread) + { + return originalCommandRuntime.ShouldContinue(query, caption); + } + + CheckForInteractive(); + + // otherwise, queue up the request and wait for the main thread to do the right thing. + try + { + // wait for our turn to talk to the main thread + WaitOurTurn(); + + bool result = false; + + // set the function to run + runOnMainThread = () => result = originalCommandRuntime.ShouldContinue(query, caption); + + // tell the main thread to go ahead + readyToRun.Set(); + + // wait for the result (or cancellation!) + WaitForCompletion(); + + // set the output variables + return result; + } + catch (System.OperationCanceledException exception) + { + // maybe don't even worry? + throw exception; + } + } + + public bool ShouldContinue(string query, string caption, ref bool yesToAll, ref bool noToAll) + { + // if we are on the original thread, just call straight thru. + if (this.originalThread == System.Threading.Thread.CurrentThread) + { + return originalCommandRuntime.ShouldContinue(query, caption, ref yesToAll, ref noToAll); + } + + CheckForInteractive(); + + // otherwise, queue up the request and wait for the main thread to do the right thing. + try + { + // wait for our turn to talk to the main thread + WaitOurTurn(); + + bool yta = yesToAll; + bool nta = noToAll; + bool result = false; + + // set the function to run + runOnMainThread = () => result = originalCommandRuntime.ShouldContinue(query, caption, ref yta, ref nta); + + // tell the main thread to go ahead + readyToRun.Set(); + + // wait for the result (or cancellation!) + WaitForCompletion(); + + // set the output variables + yesToAll = yta; + noToAll = nta; + return result; + } + catch (System.OperationCanceledException exception) + { + // maybe don't even worry? + throw exception; + } + } + + public bool ShouldProcess(string target) + { + // if we are on the original thread, just call straight thru. + if (this.originalThread == System.Threading.Thread.CurrentThread) + { + return originalCommandRuntime.ShouldProcess(target); + } + + CheckForInteractive(); + + // otherwise, queue up the request and wait for the main thread to do the right thing. + try + { + // wait for our turn to talk to the main thread + WaitOurTurn(); + + bool result = false; + + // set the function to run + runOnMainThread = () => result = originalCommandRuntime.ShouldProcess(target); + + // tell the main thread to go ahead + readyToRun.Set(); + + // wait for the result (or cancellation!) + WaitForCompletion(); + + // set the output variables + return result; + } + catch (System.OperationCanceledException exception) + { + // maybe don't even worry? + throw exception; + } + } + + public bool ShouldProcess(string target, string action) + { + // if we are on the original thread, just call straight thru. + if (this.originalThread == System.Threading.Thread.CurrentThread) + { + return originalCommandRuntime.ShouldProcess(target, action); + } + + CheckForInteractive(); + + // otherwise, queue up the request and wait for the main thread to do the right thing. + try + { + // wait for our turn to talk to the main thread + WaitOurTurn(); + + bool result = false; + + // set the function to run + runOnMainThread = () => result = originalCommandRuntime.ShouldProcess(target, action); + + // tell the main thread to go ahead + readyToRun.Set(); + + // wait for the result (or cancellation!) + WaitForCompletion(); + + // set the output variables + return result; + } + catch (System.OperationCanceledException exception) + { + // maybe don't even worry? + throw exception; + } + } + + public bool ShouldProcess(string verboseDescription, string verboseWarning, string caption) + { + // if we are on the original thread, just call straight thru. + if (this.originalThread == System.Threading.Thread.CurrentThread) + { + return originalCommandRuntime.ShouldProcess(verboseDescription, verboseWarning, caption); + } + + CheckForInteractive(); + + // otherwise, queue up the request and wait for the main thread to do the right thing. + try + { + // wait for our turn to talk to the main thread + WaitOurTurn(); + + bool result = false; + + // set the function to run + runOnMainThread = () => result = originalCommandRuntime.ShouldProcess(verboseDescription, verboseWarning, caption); + + // tell the main thread to go ahead + readyToRun.Set(); + + // wait for the result (or cancellation!) + WaitForCompletion(); + + // set the output variables + return result; + } + catch (System.OperationCanceledException exception) + { + // maybe don't even worry? + throw exception; + } + } + + public bool ShouldProcess(string verboseDescription, string verboseWarning, string caption, out ShouldProcessReason shouldProcessReason) + { + // if we are on the original thread, just call straight thru. + if (this.originalThread == System.Threading.Thread.CurrentThread) + { + return originalCommandRuntime.ShouldProcess(verboseDescription, verboseWarning, caption, out shouldProcessReason); + } + + CheckForInteractive(); + + // otherwise, queue up the request and wait for the main thread to do the right thing. + try + { + // wait for our turn to talk to the main thread + WaitOurTurn(); + + bool result = false; + ShouldProcessReason reason = ShouldProcessReason.None; + + // set the function to run + runOnMainThread = () => result = originalCommandRuntime.ShouldProcess(verboseDescription, verboseWarning, caption, out reason); + + // tell the main thread to go ahead + readyToRun.Set(); + + // wait for the result (or cancellation!) + WaitForCompletion(); + + // set the output variables + shouldProcessReason = reason; + return result; + } + catch (System.OperationCanceledException exception) + { + // maybe don't even worry? + throw exception; + } + } + + public void ThrowTerminatingError(ErrorRecord errorRecord) + { + // if we are on the original thread, just call straight thru. + if (this.originalThread == System.Threading.Thread.CurrentThread) + { + originalCommandRuntime.ThrowTerminatingError(errorRecord); + return; + } + + // otherwise, queue up the request and wait for the main thread to do the right thing. + try + { + // wait for our turn to talk to the main thread + WaitOurTurn(); + + // set the function to run + runOnMainThread = () => originalCommandRuntime.ThrowTerminatingError(errorRecord); + + // tell the main thread to go ahead + readyToRun.Set(); + + // wait for the result (or cancellation!) + WaitForCompletion(); + + // return + return; + } + catch (System.OperationCanceledException exception) + { + // maybe don't even worry? + throw exception; + } + } + + public bool TransactionAvailable() + { + // if we are on the original thread, just call straight thru. + if (this.originalThread == System.Threading.Thread.CurrentThread) + { + return originalCommandRuntime.TransactionAvailable(); + } + + // otherwise, queue up the request and wait for the main thread to do the right thing. + try + { + // wait for our turn to talk to the main thread + WaitOurTurn(); + + bool result = false; + + // set the function to run + runOnMainThread = () => result = originalCommandRuntime.TransactionAvailable(); + + // tell the main thread to go ahead + readyToRun.Set(); + + // wait for the result (or cancellation!) + WaitForCompletion(); + + // set the output variables + return result; + } + catch (System.OperationCanceledException exception) + { + // maybe don't even worry? + throw exception; + } + } + + public void WriteCommandDetail(string text) + { + // if we are on the original thread, just call straight thru. + if (this.originalThread == System.Threading.Thread.CurrentThread) + { + originalCommandRuntime.WriteCommandDetail(text); + return; + } + + // otherwise, queue up the request and wait for the main thread to do the right thing. + try + { + // wait for our turn to talk to the main thread + WaitOurTurn(); + + // set the function to run + runOnMainThread = () => originalCommandRuntime.WriteCommandDetail(text); + + // tell the main thread to go ahead + readyToRun.Set(); + + // wait for the result (or cancellation!) + WaitForCompletion(); + + // return + return; + } + catch (System.OperationCanceledException exception) + { + // maybe don't even worry? + throw exception; + } + } + + public void WriteDebug(string text) + { + // if we are on the original thread, just call straight thru. + if (this.originalThread == System.Threading.Thread.CurrentThread) + { + originalCommandRuntime.WriteDebug(text); + return; + } + + // otherwise, queue up the request and wait for the main thread to do the right thing. + try + { + // wait for our turn to talk to the main thread + WaitOurTurn(); + + // set the function to run + runOnMainThread = () => originalCommandRuntime.WriteDebug(text); + + // tell the main thread to go ahead + readyToRun.Set(); + + // wait for the result (or cancellation!) + WaitForCompletion(); + + // return + return; + } + catch (System.OperationCanceledException exception) + { + // maybe don't even worry? + throw exception; + } + } + + public void WriteError(ErrorRecord errorRecord) + { + // if we are on the original thread, just call straight thru. + if (this.originalThread == System.Threading.Thread.CurrentThread) + { + originalCommandRuntime.WriteError(errorRecord); + return; + } + + // otherwise, queue up the request and wait for the main thread to do the right thing. + try + { + // wait for our turn to talk to the main thread + WaitOurTurn(); + + // set the function to run + runOnMainThread = () => originalCommandRuntime.WriteError(errorRecord); + + // tell the main thread to go ahead + readyToRun.Set(); + + // wait for the result (or cancellation!) + WaitForCompletion(); + + // return + return; + } + catch (System.OperationCanceledException exception) + { + // maybe don't even worry? + throw exception; + } + } + + public void WriteInformation(InformationRecord informationRecord) + { + // if we are on the original thread, just call straight thru. + if (this.originalThread == System.Threading.Thread.CurrentThread) + { + originalCommandRuntime.WriteInformation(informationRecord); + return; + } + + // otherwise, queue up the request and wait for the main thread to do the right thing. + try + { + // wait for our turn to talk to the main thread + WaitOurTurn(); + + // set the function to run + runOnMainThread = () => originalCommandRuntime.WriteInformation(informationRecord); + + // tell the main thread to go ahead + readyToRun.Set(); + + // wait for the result (or cancellation!) + WaitForCompletion(); + + // return + return; + } + catch (System.OperationCanceledException exception) + { + // maybe don't even worry? + throw exception; + } + } + + public void WriteObject(object sendToPipeline) + { + // if we are on the original thread, just call straight thru. + if (this.originalThread == System.Threading.Thread.CurrentThread) + { + originalCommandRuntime.WriteObject(sendToPipeline); + return; + } + + // otherwise, queue up the request and wait for the main thread to do the right thing. + try + { + // wait for our turn to talk to the main thread + WaitOurTurn(); + + // set the function to run + runOnMainThread = () => originalCommandRuntime.WriteObject(sendToPipeline); + + // tell the main thread to go ahead + readyToRun.Set(); + + // wait for the result (or cancellation!) + WaitForCompletion(); + + // return + return; + } + catch (System.OperationCanceledException exception) + { + // maybe don't even worry? + throw exception; + } + } + + public void WriteObject(object sendToPipeline, bool enumerateCollection) + { + // if we are on the original thread, just call straight thru. + if (this.originalThread == System.Threading.Thread.CurrentThread) + { + originalCommandRuntime.WriteObject(sendToPipeline, enumerateCollection); + return; + } + + // otherwise, queue up the request and wait for the main thread to do the right thing. + try + { + // wait for our turn to talk to the main thread + WaitOurTurn(); + + // set the function to run + runOnMainThread = () => originalCommandRuntime.WriteObject(sendToPipeline, enumerateCollection); + + // tell the main thread to go ahead + readyToRun.Set(); + + // wait for the result (or cancellation!) + WaitForCompletion(); + + // return + return; + } + catch (System.OperationCanceledException exception) + { + // maybe don't even worry? + throw exception; + } + } + + public void WriteProgress(ProgressRecord progressRecord) + { + // if we are on the original thread, just call straight thru. + if (this.originalThread == System.Threading.Thread.CurrentThread) + { + originalCommandRuntime.WriteProgress(progressRecord); + return; + } + + // otherwise, queue up the request and wait for the main thread to do the right thing. + try + { + // wait for our turn to talk to the main thread + WaitOurTurn(); + + // set the function to run + runOnMainThread = () => originalCommandRuntime.WriteProgress(progressRecord); + + // tell the main thread to go ahead + readyToRun.Set(); + + // wait for the result (or cancellation!) + WaitForCompletion(); + + // return + return; + } + catch (System.OperationCanceledException exception) + { + // maybe don't even worry? + throw exception; + } + } + + public void WriteProgress(long sourceId, ProgressRecord progressRecord) + { + // if we are on the original thread, just call straight thru. + if (this.originalThread == System.Threading.Thread.CurrentThread) + { + originalCommandRuntime.WriteProgress(sourceId, progressRecord); + return; + } + + // otherwise, queue up the request and wait for the main thread to do the right thing. + try + { + // wait for our turn to talk to the main thread + WaitOurTurn(); + + // set the function to run + runOnMainThread = () => originalCommandRuntime.WriteProgress(sourceId, progressRecord); + + // tell the main thread to go ahead + readyToRun.Set(); + + // wait for the result (or cancellation!) + WaitForCompletion(); + + // return + return; + } + catch (System.OperationCanceledException exception) + { + // maybe don't even worry? + throw exception; + } + } + + public void WriteVerbose(string text) + { + // if we are on the original thread, just call straight thru. + if (this.originalThread == System.Threading.Thread.CurrentThread) + { + originalCommandRuntime.WriteVerbose(text); + return; + } + + // otherwise, queue up the request and wait for the main thread to do the right thing. + try + { + // wait for our turn to talk to the main thread + WaitOurTurn(); + + // set the function to run + runOnMainThread = () => originalCommandRuntime.WriteVerbose(text); + + // tell the main thread to go ahead + readyToRun.Set(); + + // wait for the result (or cancellation!) + WaitForCompletion(); + + // return + return; + } + catch (System.OperationCanceledException exception) + { + // maybe don't even worry? + throw exception; + } + } + + public void WriteWarning(string text) + { + // if we are on the original thread, just call straight thru. + if (this.originalThread == System.Threading.Thread.CurrentThread) + { + originalCommandRuntime.WriteWarning(text); + return; + } + + // otherwise, queue up the request and wait for the main thread to do the right thing. + try + { + // wait for our turn to talk to the main thread + WaitOurTurn(); + + // set the function to run + runOnMainThread = () => originalCommandRuntime.WriteWarning(text); + + // tell the main thread to go ahead + readyToRun.Set(); + + // wait for the result (or cancellation!) + WaitForCompletion(); + + // return + return; + } + catch (System.OperationCanceledException exception) + { + // maybe don't even worry? + throw exception; + } + } + + public void Wait(System.Threading.Tasks.Task ProcessRecordAsyncTask, System.Threading.CancellationToken cancellationToken) + { + do + { + WaitHandle.WaitAny(new[] { readyToRun.WaitHandle, ((System.IAsyncResult)ProcessRecordAsyncTask).AsyncWaitHandle }); + if (readyToRun.IsSet) + { + // reset the request for the next time + readyToRun.Reset(); + + // run the delegate on this thread + runOnMainThread(); + + // tell the originator everything is complete + completed.Set(); + } + } + while (!ProcessRecordAsyncTask.IsCompleted); + if (ProcessRecordAsyncTask.IsFaulted) + { + // don't unwrap a Aggregate Exception -- we'll lose the stack trace of the actual exception. + // if( ProcessRecordAsyncTask.Exception is System.AggregateException aggregate ) { + // throw aggregate.InnerException; + // } + throw ProcessRecordAsyncTask.Exception; + } + } + public Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep Wrap(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep func) => func.Target.GetType().Name != "Closure" ? func : (p1, p2, p3) => ExecuteSync>(() => func(p1, p2, p3)); + public System.Collections.Generic.IEnumerable Wrap(System.Collections.Generic.IEnumerable funcs) => funcs?.Select(Wrap); + + public T ExecuteSync(System.Func step) + { + // if we are on the original thread, just call straight thru. + if (this.originalThread == System.Threading.Thread.CurrentThread) + { + return step(); + } + + T result = default(T); + try + { + // wait for our turn to talk to the main thread + WaitOurTurn(); + // set the function to run + runOnMainThread = () => { result = step(); }; + // tell the main thread to go ahead + readyToRun.Set(); + // wait for the result (or cancellation!) + WaitForCompletion(); + // return + return result; + } + catch (System.OperationCanceledException exception) + { + // maybe don't even worry? + throw exception; + } + } + + public void Dispose() + { + if (cmdlet != null) + { + cmdlet.CommandRuntime = this.originalCommandRuntime; + cmdlet = null; + } + + semaphore?.Dispose(); + semaphore = null; + readyToRun?.Dispose(); + readyToRun = null; + completed?.Dispose(); + completed = null; + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/AsyncJob.cs b/src/VMWare/generated/runtime/AsyncJob.cs new file mode 100644 index 000000000000..d43cba042a52 --- /dev/null +++ b/src/VMWare/generated/runtime/AsyncJob.cs @@ -0,0 +1,270 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell +{ + using System.Management.Automation; + using System.Management.Automation.Host; + using System.Threading; + + using System.Threading.Tasks; + + public class LongRunningJobCancelledException : System.Exception + { + public LongRunningJobCancelledException(string message) : base(message) + { + + } + } + + public class AsyncJob : Job, System.Management.Automation.ICommandRuntime2 + { + const int MaxRecords = 1000; + + private string _statusMessage = string.Empty; + + public override string StatusMessage => _statusMessage; + + public override bool HasMoreData => Output.Count > 0 || Progress.Count > 0 || Error.Count > 0 || Warning.Count > 0 || Verbose.Count > 0 || Debug.Count > 0; + + public override string Location => "localhost"; + + public PSHost Host => originalCommandRuntime.Host; + + public PSTransactionContext CurrentPSTransaction => originalCommandRuntime.CurrentPSTransaction; + + public override void StopJob() + { + Cancel(); + } + + private readonly PSCmdlet cmdlet; + private readonly ICommandRuntime2 originalCommandRuntime; + private readonly System.Threading.Thread originalThread; + + private void CheckForInteractive() + { + // This is an interactive call -- We should never allow interactivity in AsnycJob cmdlets. + throw new System.Exception("Cmdlets in AsyncJob; interactive calls are not permitted."); + } + private bool IsJobDone => CancellationToken.IsCancellationRequested || this.JobStateInfo.State == JobState.Failed || this.JobStateInfo.State == JobState.Stopped || this.JobStateInfo.State == JobState.Stopping || this.JobStateInfo.State == JobState.Completed; + + private readonly System.Action Cancel; + private readonly CancellationToken CancellationToken; + + internal AsyncJob(PSCmdlet cmdlet, string line, string name, CancellationToken cancellationToken, System.Action cancelMethod) : base(line, name) + { + SetJobState(JobState.NotStarted); + // know how to cancel/check for cancelation + this.CancellationToken = cancellationToken; + this.Cancel = cancelMethod; + + // we might need these. + this.originalCommandRuntime = cmdlet.CommandRuntime as ICommandRuntime2; + this.originalThread = System.Threading.Thread.CurrentThread; + + // the instance of the cmdlet we're going to run + this.cmdlet = cmdlet; + + // set the command runtime to the AsyncJob + cmdlet.CommandRuntime = this; + } + + /// + /// Monitors the task (which should be ProcessRecordAsync) to control + /// the lifetime of the job itself + /// + /// + public void Monitor(Task task) + { + SetJobState(JobState.Running); + task.ContinueWith(antecedent => + { + if (antecedent.IsCanceled) + { + // if the task was canceled, we're just going to call it completed. + SetJobState(JobState.Completed); + } + else if (antecedent.IsFaulted) + { + foreach (var innerException in antecedent.Exception.Flatten().InnerExceptions) + { + WriteError(new System.Management.Automation.ErrorRecord(innerException, string.Empty, System.Management.Automation.ErrorCategory.NotSpecified, null)); + } + + // a fault indicates an actual failure + SetJobState(JobState.Failed); + } + else + { + // otherwiser it's a completed state. + SetJobState(JobState.Completed); + } + }, CancellationToken); + } + + private void CheckForCancellation() + { + if (IsJobDone) + { + throw new LongRunningJobCancelledException("Long running job is canceled or stopping, continuation of the cmdlet is not permitted."); + } + } + + public void WriteInformation(InformationRecord informationRecord) + { + CheckForCancellation(); + + this.Information.Add(informationRecord); + } + + public bool ShouldContinue(string query, string caption, bool hasSecurityImpact, ref bool yesToAll, ref bool noToAll) + { + CheckForInteractive(); + return false; + } + + public void WriteDebug(string text) + { + _statusMessage = text; + CheckForCancellation(); + + if (Debug.IsOpen && Debug.Count < MaxRecords) + { + Debug.Add(new DebugRecord(text)); + } + } + + public void WriteError(ErrorRecord errorRecord) + { + if (Error.IsOpen) + { + Error.Add(errorRecord); + } + } + + public void WriteObject(object sendToPipeline) + { + CheckForCancellation(); + + if (Output.IsOpen) + { + Output.Add(new PSObject(sendToPipeline)); + } + } + + public void WriteObject(object sendToPipeline, bool enumerateCollection) + { + CheckForCancellation(); + + if (enumerateCollection && sendToPipeline is System.Collections.IEnumerable enumerable) + { + foreach (var item in enumerable) + { + WriteObject(item); + } + } + else + { + WriteObject(sendToPipeline); + } + } + + public void WriteProgress(ProgressRecord progressRecord) + { + CheckForCancellation(); + + if (Progress.IsOpen && Progress.Count < MaxRecords) + { + Progress.Add(progressRecord); + } + } + + public void WriteProgress(long sourceId, ProgressRecord progressRecord) + { + CheckForCancellation(); + + if (Progress.IsOpen && Progress.Count < MaxRecords) + { + Progress.Add(progressRecord); + } + } + + public void WriteVerbose(string text) + { + CheckForCancellation(); + + if (Verbose.IsOpen && Verbose.Count < MaxRecords) + { + Verbose.Add(new VerboseRecord(text)); + } + } + + public void WriteWarning(string text) + { + CheckForCancellation(); + + if (Warning.IsOpen && Warning.Count < MaxRecords) + { + Warning.Add(new WarningRecord(text)); + } + } + + public void WriteCommandDetail(string text) + { + WriteVerbose(text); + } + + public bool ShouldProcess(string target) + { + CheckForInteractive(); + return false; + } + + public bool ShouldProcess(string target, string action) + { + CheckForInteractive(); + return false; + } + + public bool ShouldProcess(string verboseDescription, string verboseWarning, string caption) + { + CheckForInteractive(); + return false; + } + + public bool ShouldProcess(string verboseDescription, string verboseWarning, string caption, out ShouldProcessReason shouldProcessReason) + { + CheckForInteractive(); + shouldProcessReason = ShouldProcessReason.None; + return false; + } + + public bool ShouldContinue(string query, string caption) + { + CheckForInteractive(); + return false; + } + + public bool ShouldContinue(string query, string caption, ref bool yesToAll, ref bool noToAll) + { + CheckForInteractive(); + return false; + } + + public bool TransactionAvailable() + { + // interactivity required? + return false; + } + + public void ThrowTerminatingError(ErrorRecord errorRecord) + { + if (Error.IsOpen) + { + Error.Add(errorRecord); + } + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/AsyncOperationResponse.cs b/src/VMWare/generated/runtime/AsyncOperationResponse.cs new file mode 100644 index 000000000000..9c1f5305bd21 --- /dev/null +++ b/src/VMWare/generated/runtime/AsyncOperationResponse.cs @@ -0,0 +1,177 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell +{ + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + [System.ComponentModel.TypeConverter(typeof(AsyncOperationResponseTypeConverter))] + public class AsyncOperationResponse + { + private string _target; + public string Target { get => _target; set => _target = value; } + public AsyncOperationResponse() + { + } + internal AsyncOperationResponse(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json) + { + // pull target + { Target = If(json?.PropertyT("target"), out var _v) ? (string)_v : (string)Target; } + } + public string ToJsonString() + { + return $"{{ \"target\" : \"{this.Target}\" }}"; + } + + public static AsyncOperationResponse FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject json ? new AsyncOperationResponse(json) : null; + } + + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static AsyncOperationResponse FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(jsonText)); + + } + + public partial class AsyncOperationResponseTypeConverter : System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter to the parameter using and + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static object ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(AsyncOperationResponse).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return AsyncOperationResponse.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString()); ; + } + catch + { + // Unable to use JSON pattern + } + + if (typeof(System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return new AsyncOperationResponse { Target = (sourceValue as System.Management.Automation.PSObject).GetValueForProperty("target", "", global::System.Convert.ToString) }; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return new AsyncOperationResponse { Target = (sourceValue as global::System.Collections.IDictionary).GetValueForProperty("target", "", global::System.Convert.ToString) }; + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/BuildTime/Cmdlets/ExportCmdletSurface.cs b/src/VMWare/generated/runtime/BuildTime/Cmdlets/ExportCmdletSurface.cs new file mode 100644 index 000000000000..0cd3057f5cfb --- /dev/null +++ b/src/VMWare/generated/runtime/BuildTime/Cmdlets/ExportCmdletSurface.cs @@ -0,0 +1,113 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Management.Automation; +using System.Text; +using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.PsHelpers; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell +{ + [Cmdlet(VerbsData.Export, "CmdletSurface")] + [DoNotExport] + public class ExportCmdletSurface : PSCmdlet + { + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public string ModuleName { get; set; } + + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public string CmdletFolder { get; set; } + + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public string OutputFolder { get; set; } + + [Parameter] + public bool IncludeGeneralParameters { get; set; } + + [Parameter] + public bool UseExpandedFormat { get; set; } + + protected override void ProcessRecord() + { + try + { + var variants = GetScriptCmdlets(this, CmdletFolder) + .SelectMany(fi => fi.ToVariants()) + .Where(v => !v.IsDoNotExport) + .ToArray(); + var allProfiles = variants.SelectMany(v => v.Profiles).Distinct().ToArray(); + var profileGroups = allProfiles.Any() + ? variants + .SelectMany(v => (v.Profiles.Any() ? v.Profiles : allProfiles).Select(p => (profile: p, variant: v))) + .GroupBy(pv => pv.profile) + .Select(pvg => new ProfileGroup(pvg.Select(pv => pv.variant).ToArray(), pvg.Key)) + : new[] { new ProfileGroup(variants) }; + foreach (var profileGroup in profileGroups) + { + var variantGroups = profileGroup.Variants + .GroupBy(v => new { v.CmdletName }) + .Select(vg => new VariantGroup(ModuleName, vg.Key.CmdletName, vg.Select(v => v).ToArray(), String.Empty, profileGroup.ProfileName)); + var sb = UseExpandedFormat ? ExpandedFormat(variantGroups) : CondensedFormat(variantGroups); + Directory.CreateDirectory(OutputFolder); + File.WriteAllText(Path.Combine(OutputFolder, $"CmdletSurface-{profileGroup.ProfileName}.md"), sb.ToString()); + } + } + catch (Exception ee) + { + Console.WriteLine($"${ee.GetType().Name}/{ee.StackTrace}"); + throw ee; + } + } + + private StringBuilder ExpandedFormat(IEnumerable variantGroups) + { + var sb = new StringBuilder(); + foreach (var variantGroup in variantGroups.OrderBy(vg => vg.CmdletName)) + { + sb.Append($"### {variantGroup.CmdletName}{Environment.NewLine}"); + var parameterGroups = variantGroup.ParameterGroups + .Where(pg => !pg.DontShow && (IncludeGeneralParameters || (pg.OrderCategory != ParameterCategory.Azure && pg.OrderCategory != ParameterCategory.Runtime))); + foreach (var parameterGroup in parameterGroups) + { + sb.Append($" - {parameterGroup.ParameterName} `{parameterGroup.ParameterType.ToSyntaxTypeName()}`{Environment.NewLine}"); + } + sb.AppendLine(); + } + + return sb; + } + + private StringBuilder CondensedFormat(IEnumerable variantGroups) + { + var sb = new StringBuilder(); + var condensedGroups = variantGroups + .GroupBy(vg => vg.CmdletNoun) + .Select(vgg => ( + CmdletNoun: vgg.Key, + CmdletVerbs: vgg.Select(vg => vg.CmdletVerb).OrderBy(cv => cv).ToArray(), + ParameterGroups: vgg.SelectMany(vg => vg.ParameterGroups).DistinctBy(p => p.ParameterName).ToArray(), + OutputTypes: vgg.SelectMany(vg => vg.OutputTypes).Select(ot => ot.Type).DistinctBy(t => t.Name).Select(t => t.ToSyntaxTypeName()).ToArray())) + .OrderBy(vg => vg.CmdletNoun); + foreach (var condensedGroup in condensedGroups) + { + sb.Append($"### {condensedGroup.CmdletNoun} [{String.Join(", ", condensedGroup.CmdletVerbs)}] `{String.Join(", ", condensedGroup.OutputTypes)}`{Environment.NewLine}"); + var parameterGroups = condensedGroup.ParameterGroups + .Where(pg => !pg.DontShow && (IncludeGeneralParameters || (pg.OrderCategory != ParameterCategory.Azure && pg.OrderCategory != ParameterCategory.Runtime))); + foreach (var parameterGroup in parameterGroups) + { + sb.Append($" - {parameterGroup.ParameterName} `{parameterGroup.ParameterType.ToSyntaxTypeName()}`{Environment.NewLine}"); + } + sb.AppendLine(); + } + + return sb; + } + } +} diff --git a/src/VMWare/generated/runtime/BuildTime/Cmdlets/ExportExampleStub.cs b/src/VMWare/generated/runtime/BuildTime/Cmdlets/ExportExampleStub.cs new file mode 100644 index 000000000000..0945e7d69f9f --- /dev/null +++ b/src/VMWare/generated/runtime/BuildTime/Cmdlets/ExportExampleStub.cs @@ -0,0 +1,74 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.IO; +using System.Linq; +using System.Management.Automation; +using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.MarkdownTypesExtensions; +using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.PsHelpers; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell +{ + [Cmdlet(VerbsData.Export, "ExampleStub")] + [DoNotExport] + public class ExportExampleStub : PSCmdlet + { + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public string ExportsFolder { get; set; } + + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public string OutputFolder { get; set; } + + protected override void ProcessRecord() + { + try + { + if (!Directory.Exists(ExportsFolder)) + { + throw new ArgumentException($"Exports folder '{ExportsFolder}' does not exist"); + } + + var exportDirectories = Directory.GetDirectories(ExportsFolder); + if (!exportDirectories.Any()) + { + exportDirectories = new[] { ExportsFolder }; + } + + var exampleText = String.Join(String.Empty, DefaultExampleHelpInfos.Select(ehi => ehi.ToHelpExampleOutput())); + foreach (var exportDirectory in exportDirectories) + { + var outputFolder = OutputFolder; + if (exportDirectory != ExportsFolder) + { + outputFolder = Path.Combine(OutputFolder, Path.GetFileName(exportDirectory)); + Directory.CreateDirectory(outputFolder); + } + + var cmdletFilePaths = GetScriptCmdlets(exportDirectory).Select(fi => Path.Combine(outputFolder, $"{fi.Name}.md")).ToArray(); + var currentExamplesFilePaths = Directory.GetFiles(outputFolder).ToArray(); + // Remove examples of non-existing cmdlets + var removedCmdletFilePaths = currentExamplesFilePaths.Except(cmdletFilePaths); + foreach (var removedCmdletFilePath in removedCmdletFilePaths) + { + File.Delete(removedCmdletFilePath); + } + + // Only create example stubs if they don't exist + foreach (var cmdletFilePath in cmdletFilePaths.Except(currentExamplesFilePaths)) + { + File.WriteAllText(cmdletFilePath, exampleText); + } + } + } + catch (Exception ee) + { + Console.WriteLine($"${ee.GetType().Name}/{ee.StackTrace}"); + throw ee; + } + } + } +} diff --git a/src/VMWare/generated/runtime/BuildTime/Cmdlets/ExportFormatPs1xml.cs b/src/VMWare/generated/runtime/BuildTime/Cmdlets/ExportFormatPs1xml.cs new file mode 100644 index 000000000000..d7c7b2c10d64 --- /dev/null +++ b/src/VMWare/generated/runtime/BuildTime/Cmdlets/ExportFormatPs1xml.cs @@ -0,0 +1,99 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Management.Automation; +using System.Reflection; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell +{ + [Cmdlet(VerbsData.Export, "FormatPs1xml")] + [DoNotExport] + public class ExportFormatPs1xml : PSCmdlet + { + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public string FilePath { get; set; } + + private const string ModelNamespace = @"Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models"; + private const string SupportNamespace = @"Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support"; + private static readonly bool IsAzure = Convert.ToBoolean(@"true"); + + protected override void ProcessRecord() + { + try + { + var viewModels = GetFilteredViewParameters().Select(CreateViewModel).ToList(); + var ps1xml = new Configuration + { + ViewDefinitions = new ViewDefinitions + { + Views = viewModels + } + }; + File.WriteAllText(FilePath, ps1xml.ToXmlString()); + } + catch (Exception ee) + { + Console.WriteLine($"${ee.GetType().Name}/{ee.StackTrace}"); + throw ee; + } + } + + private static IEnumerable GetFilteredViewParameters() + { + //https://stackoverflow.com/a/79738/294804 + //https://stackoverflow.com/a/949285/294804 + var types = Assembly.GetExecutingAssembly().GetExportedTypes() + .Where(t => t.IsClass + && (t.Namespace.StartsWith(ModelNamespace) || t.Namespace.StartsWith(SupportNamespace)) + && !t.GetCustomAttributes().Any()); + return types.Select(t => new ViewParameters(t, t.GetProperties() + .Select(p => new PropertyFormat(p)) + .Where(pf => !pf.Property.GetCustomAttributes().Any() + && (!IsAzure || pf.Property.Name != "Id") + && (pf.FormatTable != null || (pf.Origin != PropertyOrigin.Inlined && pf.Property.PropertyType.IsPsSimple()))) + .OrderByDescending(pf => pf.Index.HasValue) + .ThenBy(pf => pf.Index) + .ThenByDescending(pf => pf.Origin.HasValue) + .ThenBy(pf => pf.Origin))).Where(vp => vp.Properties.Any()); + } + + private static View CreateViewModel(ViewParameters viewParameters) + { + var entries = viewParameters.Properties.Select(pf => + (TableColumnHeader: new TableColumnHeader { Label = pf.Label, Width = pf.Width }, + TableColumnItem: new TableColumnItem { PropertyName = pf.Property.Name })).ToArray(); + + return new View + { + Name = viewParameters.Type.FullName, + ViewSelectedBy = new ViewSelectedBy + { + TypeName = viewParameters.Type.FullName + }, + TableControl = new TableControl + { + TableHeaders = new TableHeaders + { + TableColumnHeaders = entries.Select(e => e.TableColumnHeader).ToList() + }, + TableRowEntries = new TableRowEntries + { + TableRowEntry = new TableRowEntry + { + TableColumnItems = new TableColumnItems + { + TableItems = entries.Select(e => e.TableColumnItem).ToList() + } + } + } + } + }; + } + } +} diff --git a/src/VMWare/generated/runtime/BuildTime/Cmdlets/ExportHelpMarkdown.cs b/src/VMWare/generated/runtime/BuildTime/Cmdlets/ExportHelpMarkdown.cs new file mode 100644 index 000000000000..35fe247b281e --- /dev/null +++ b/src/VMWare/generated/runtime/BuildTime/Cmdlets/ExportHelpMarkdown.cs @@ -0,0 +1,53 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Linq; +using System.Management.Automation; +using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.MarkdownRenderer; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell +{ + [Cmdlet(VerbsData.Export, "HelpMarkdown")] + [DoNotExport] + public class ExportHelpMarkdown : PSCmdlet + { + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public PSModuleInfo ModuleInfo { get; set; } + + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public PSObject[] FunctionInfo { get; set; } + + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public PSObject[] HelpInfo { get; set; } + + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public string DocsFolder { get; set; } + + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public string ExamplesFolder { get; set; } + + protected override void ProcessRecord() + { + try + { + var helpInfos = HelpInfo.Select(hi => hi.ToPsHelpInfo()); + var variantGroups = FunctionInfo.Select(fi => fi.BaseObject).Cast() + .Join(helpInfos, fi => fi.Name, phi => phi.CmdletName, (fi, phi) => fi.ToVariants(phi)) + .Select(va => new VariantGroup(ModuleInfo.Name, va.First().CmdletName, va, String.Empty)); + WriteMarkdowns(variantGroups, ModuleInfo.ToModuleInfo(), DocsFolder, ExamplesFolder); + } + catch (Exception ee) + { + Console.WriteLine($"${ee.GetType().Name}/{ee.StackTrace}"); + throw ee; + } + } + } +} diff --git a/src/VMWare/generated/runtime/BuildTime/Cmdlets/ExportModelSurface.cs b/src/VMWare/generated/runtime/BuildTime/Cmdlets/ExportModelSurface.cs new file mode 100644 index 000000000000..635259b08ecc --- /dev/null +++ b/src/VMWare/generated/runtime/BuildTime/Cmdlets/ExportModelSurface.cs @@ -0,0 +1,117 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Management.Automation; +using System.Reflection; +using System.Text; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell +{ + [Cmdlet(VerbsData.Export, "ModelSurface")] + [DoNotExport] + public class ExportModelSurface : PSCmdlet + { + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public string OutputFolder { get; set; } + + [Parameter] + public bool UseExpandedFormat { get; set; } + + private const string ModelNamespace = @"Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models"; + private const string SupportNamespace = @"Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support"; + + protected override void ProcessRecord() + { + try + { + var types = Assembly.GetExecutingAssembly().GetExportedTypes() + .Where(t => t.IsClass && (t.Namespace.StartsWith(ModelNamespace) || t.Namespace.StartsWith(SupportNamespace))); + var typeInfos = types.Select(t => new ModelTypeInfo + { + Type = t, + TypeName = t.Name, + Properties = t.GetProperties(BindingFlags.Public | BindingFlags.Instance).Where(p => !p.GetIndexParameters().Any()).OrderBy(p => p.Name).ToArray(), + NamespaceGroup = t.Namespace.Split('.').LastOrDefault().EmptyIfNull() + }).Where(mti => mti.Properties.Any()); + var sb = UseExpandedFormat ? ExpandedFormat(typeInfos) : CondensedFormat(typeInfos); + Directory.CreateDirectory(OutputFolder); + File.WriteAllText(Path.Combine(OutputFolder, "ModelSurface.md"), sb.ToString()); + } + catch (Exception ee) + { + Console.WriteLine($"${ee.GetType().Name}/{ee.StackTrace}"); + throw ee; + } + } + + private static StringBuilder ExpandedFormat(IEnumerable typeInfos) + { + var sb = new StringBuilder(); + foreach (var typeInfo in typeInfos.OrderBy(mti => mti.TypeName).ThenBy(mti => mti.NamespaceGroup)) + { + sb.Append($"### {typeInfo.TypeName} [{typeInfo.NamespaceGroup}]{Environment.NewLine}"); + foreach (var property in typeInfo.Properties) + { + sb.Append($" - {property.Name} `{property.PropertyType.ToSyntaxTypeName()}`{Environment.NewLine}"); + } + sb.AppendLine(); + } + + return sb; + } + + private static StringBuilder CondensedFormat(IEnumerable typeInfos) + { + var sb = new StringBuilder(); + var typeGroups = typeInfos + .GroupBy(mti => mti.TypeName) + .Select(tig => ( + Types: tig.Select(mti => mti.Type).ToArray(), + TypeName: tig.Key, + Properties: tig.SelectMany(mti => mti.Properties).DistinctBy(p => p.Name).OrderBy(p => p.Name).ToArray(), + NamespaceGroups: tig.Select(mti => mti.NamespaceGroup).OrderBy(ng => ng).ToArray() + )) + .OrderBy(tg => tg.TypeName); + foreach (var typeGroup in typeGroups) + { + var aType = typeGroup.Types.Select(GetAssociativeType).FirstOrDefault(t => t != null); + var aText = aType != null ? $@" \<{aType.ToSyntaxTypeName()}\>" : String.Empty; + sb.Append($"### {typeGroup.TypeName}{aText} [{String.Join(", ", typeGroup.NamespaceGroups)}]{Environment.NewLine}"); + foreach (var property in typeGroup.Properties) + { + var propertyAType = GetAssociativeType(property.PropertyType); + var propertyAText = propertyAType != null ? $" <{propertyAType.ToSyntaxTypeName()}>" : String.Empty; + var enumNames = GetEnumFieldNames(property.PropertyType.Unwrap()); + var enumNamesText = enumNames.Any() ? $" **{{{String.Join(", ", enumNames)}}}**" : String.Empty; + sb.Append($" - {property.Name} `{property.PropertyType.ToSyntaxTypeName()}{propertyAText}`{enumNamesText}{Environment.NewLine}"); + } + sb.AppendLine(); + } + + return sb; + } + + //https://stackoverflow.com/a/4963190/294804 + private static Type GetAssociativeType(Type type) => + type.GetInterfaces().FirstOrDefault(i => i.IsGenericType && i.GetGenericTypeDefinition() == typeof(IAssociativeArray<>))?.GetGenericArguments().First(); + + private static string[] GetEnumFieldNames(Type type) => + type.IsValueType && !type.IsPrimitive && type != typeof(decimal) && type != typeof(DateTime) + ? type.GetFields(BindingFlags.Public | BindingFlags.Static).Where(f => f.FieldType == type).Select(p => p.Name).ToArray() + : new string[] { }; + + private class ModelTypeInfo + { + public Type Type { get; set; } + public string TypeName { get; set; } + public PropertyInfo[] Properties { get; set; } + public string NamespaceGroup { get; set; } + } + } +} diff --git a/src/VMWare/generated/runtime/BuildTime/Cmdlets/ExportProxyCmdlet.cs b/src/VMWare/generated/runtime/BuildTime/Cmdlets/ExportProxyCmdlet.cs new file mode 100644 index 000000000000..6dded4559a51 --- /dev/null +++ b/src/VMWare/generated/runtime/BuildTime/Cmdlets/ExportProxyCmdlet.cs @@ -0,0 +1,159 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.IO; +using System.Linq; +using System.Management.Automation; +using System.Text; +using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.PsHelpers; +using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.MarkdownRenderer; +using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.PsProxyTypeExtensions; +using System.Collections.Generic; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell +{ + [Cmdlet(VerbsData.Export, "ProxyCmdlet", DefaultParameterSetName = "Docs")] + [DoNotExport] + public class ExportProxyCmdlet : PSCmdlet + { + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public string ModuleName { get; set; } + + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public string[] ModulePath { get; set; } + + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public string ExportsFolder { get; set; } + + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public string InternalFolder { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = "Docs")] + [AllowEmptyString] + public string ModuleDescription { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = "Docs")] + [ValidateNotNullOrEmpty] + public string DocsFolder { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = "Docs")] + [ValidateNotNullOrEmpty] + public string ExamplesFolder { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = "Docs")] + public Guid ModuleGuid { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = "NoDocs")] + public SwitchParameter ExcludeDocs { get; set; } + + protected override void ProcessRecord() + { + try { + var variants = GetModuleCmdletsAndHelpInfo(this, ModulePath).SelectMany(ci => ci.ToVariants()).Where(v => !v.IsDoNotExport).ToArray(); + var allProfiles = variants.SelectMany(v => v.Profiles).Distinct().ToArray(); + var profileGroups = allProfiles.Any() + ? variants + .SelectMany(v => (v.Profiles.Any() ? v.Profiles : allProfiles).Select(p => (profile: p, variant: v))) + .GroupBy(pv => pv.profile) + .Select(pvg => new ProfileGroup(pvg.Select(pv => pv.variant).ToArray(), pvg.Key)) + : new[] { new ProfileGroup(variants) }; + var variantGroups = profileGroups.SelectMany(pg => pg.Variants + .GroupBy(v => new { v.CmdletName, v.IsInternal }) + .Select(vg => new VariantGroup(ModuleName, vg.Key.CmdletName, vg.Select(v => v).ToArray(), + Path.Combine(vg.Key.IsInternal ? InternalFolder : ExportsFolder, pg.ProfileFolder), pg.ProfileName, isInternal: vg.Key.IsInternal))) + .ToArray(); + + foreach (var variantGroup in variantGroups) + { + var parameterGroups = variantGroup.ParameterGroups.ToList(); + var isValidProfile = !String.IsNullOrEmpty(variantGroup.ProfileName) && variantGroup.ProfileName != NoProfiles; + var examplesFolder = isValidProfile ? Path.Combine(ExamplesFolder, variantGroup.ProfileName) : ExamplesFolder; + var markdownInfo = new MarkdownHelpInfo(variantGroup, examplesFolder); + List examples = new List(); + foreach (var it in markdownInfo.Examples) + { + examples.Add(it); + } + variantGroup.HelpInfo.Examples = examples.ToArray(); + var sb = new StringBuilder(); + sb.Append(@" +# ---------------------------------------------------------------------------------- +# +# 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. +# ---------------------------------------------------------------------------------- +"); + sb.Append($"{Environment.NewLine}"); + sb.Append(variantGroup.ToHelpCommentOutput()); + sb.Append($"function {variantGroup.CmdletName} {{{Environment.NewLine}"); + sb.Append(variantGroup.Aliases.ToAliasOutput()); + sb.Append(variantGroup.OutputTypes.ToOutputTypeOutput()); + sb.Append(variantGroup.ToCmdletBindingOutput()); + sb.Append(variantGroup.ProfileName.ToProfileOutput()); + + sb.Append("param("); + sb.Append($"{(parameterGroups.Any() ? Environment.NewLine : String.Empty)}"); + foreach (var parameterGroup in parameterGroups) + { + var parameters = parameterGroup.HasAllVariants ? parameterGroup.Parameters.Take(1) : parameterGroup.Parameters; + foreach (var parameter in parameters) + { + sb.Append(parameter.ToParameterOutput(variantGroup.HasMultipleVariants, parameterGroup.HasAllVariants)); + } + sb.Append(parameterGroup.Aliases.ToAliasOutput(true)); + sb.Append(parameterGroup.HasValidateNotNull.ToValidateNotNullOutput()); + sb.Append(parameterGroup.CompleterInfo.ToArgumentCompleterOutput()); + sb.Append(parameterGroup.OrderCategory.ToParameterCategoryOutput()); + sb.Append(parameterGroup.InfoAttribute.ToInfoOutput(parameterGroup.ParameterType)); + sb.Append(parameterGroup.ToDefaultInfoOutput()); + sb.Append(parameterGroup.ParameterType.ToParameterTypeOutput()); + sb.Append(parameterGroup.Description.ToParameterDescriptionOutput()); + sb.Append(parameterGroup.ParameterName.ToParameterNameOutput(parameterGroups.IndexOf(parameterGroup) == parameterGroups.Count - 1)); + } + sb.Append($"){Environment.NewLine}{Environment.NewLine}"); + + sb.Append(variantGroup.ToBeginOutput()); + sb.Append(variantGroup.ToProcessOutput()); + sb.Append(variantGroup.ToEndOutput()); + + sb.Append($"}}{Environment.NewLine}"); + + Directory.CreateDirectory(variantGroup.OutputFolder); + File.WriteAllText(variantGroup.FilePath, sb.ToString()); + + File.AppendAllText(Path.Combine(variantGroup.OutputFolder, "ProxyCmdletDefinitions.ps1"), sb.ToString()); + } + + if (!ExcludeDocs) + { + var moduleInfo = new PsModuleHelpInfo(ModuleName, ModuleGuid, ModuleDescription); + foreach (var variantGroupsByProfile in variantGroups.GroupBy(vg => vg.ProfileName)) + { + var profileName = variantGroupsByProfile.Key; + var isValidProfile = !String.IsNullOrEmpty(profileName) && profileName != NoProfiles; + var docsFolder = isValidProfile ? Path.Combine(DocsFolder, profileName) : DocsFolder; + var examplesFolder = isValidProfile ? Path.Combine(ExamplesFolder, profileName) : ExamplesFolder; + WriteMarkdowns(variantGroupsByProfile, moduleInfo, docsFolder, examplesFolder); + } + } + } catch (Exception ee) { + Console.WriteLine($"${ee.GetType().Name}/{ee.StackTrace}"); + throw ee; + } + } + } +} diff --git a/src/VMWare/generated/runtime/BuildTime/Cmdlets/ExportPsd1.cs b/src/VMWare/generated/runtime/BuildTime/Cmdlets/ExportPsd1.cs new file mode 100644 index 000000000000..9d9bf4b6c862 --- /dev/null +++ b/src/VMWare/generated/runtime/BuildTime/Cmdlets/ExportPsd1.cs @@ -0,0 +1,125 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.IO; +using System.Linq; +using System.Management.Automation; +using System.Text; +using System.Text.RegularExpressions; +using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.PsHelpers; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell +{ + [Cmdlet(VerbsData.Export, "Psd1")] + [DoNotExport] + public class ExportPsd1 : PSCmdlet + { + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public string ExportsFolder { get; set; } + + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public string CustomFolder { get; set; } + + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public string Psd1Path { get; set; } + + [Parameter(Mandatory = true)] + public Guid ModuleGuid { get; set; } + + private static readonly bool IsAzure = Convert.ToBoolean(@"true"); + private const string CustomFolderRelative = "./custom"; + private const string Indent = Psd1Indent; + + protected override void ProcessRecord() + { + try + { + if (!Directory.Exists(ExportsFolder)) + { + throw new ArgumentException($"Exports folder '{ExportsFolder}' does not exist"); + } + + if (!Directory.Exists(CustomFolder)) + { + throw new ArgumentException($"Custom folder '{CustomFolder}' does not exist"); + } + + string version = Convert.ToString(@"0.1.0"); + // Validate the module version should be semantic version + // Following regex is official from https://semver.org/ + Regex rx = new Regex(@"^(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)(?:-((?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?$", RegexOptions.Compiled); + if (rx.Matches(version).Count != 1) + { + throw new ArgumentException("Module-version is not a valid Semantic Version"); + } + + string previewVersion = null; + if (version.Contains('-')) + { + string[] versions = version.Split("-".ToCharArray(), 2); + version = versions[0]; + previewVersion = versions[1]; + } + + var sb = new StringBuilder(); + sb.AppendLine("@{"); + sb.AppendLine($@"{GuidStart} = '{ModuleGuid}'"); + sb.AppendLine($@"{Indent}RootModule = '{"./Az.VMWare.psm1"}'"); + sb.AppendLine($@"{Indent}ModuleVersion = '{version}'"); + sb.AppendLine($@"{Indent}CompatiblePSEditions = 'Core', 'Desktop'"); + sb.AppendLine($@"{Indent}Author = '{"Microsoft Corporation"}'"); + sb.AppendLine($@"{Indent}CompanyName = '{"Microsoft Corporation"}'"); + sb.AppendLine($@"{Indent}Copyright = '{"Microsoft Corporation. All rights reserved."}'"); + sb.AppendLine($@"{Indent}Description = '{"Microsoft Azure PowerShell: VMWare cmdlets"}'"); + sb.AppendLine($@"{Indent}PowerShellVersion = '5.1'"); + sb.AppendLine($@"{Indent}DotNetFrameworkVersion = '4.7.2'"); + sb.AppendLine($@"{Indent}RequiredAssemblies = '{"./bin/Az.VMWare.private.dll"}'"); + + var customFormatPs1xmlFiles = Directory.GetFiles(CustomFolder) + .Where(f => f.EndsWith(".format.ps1xml")) + .Select(f => $"{CustomFolderRelative}/{Path.GetFileName(f)}"); + var formatList = customFormatPs1xmlFiles.Prepend("./Az.VMWare.format.ps1xml").ToPsList(); + sb.AppendLine($@"{Indent}FormatsToProcess = {formatList}"); + + var functionInfos = GetScriptCmdlets(ExportsFolder).ToArray(); + var cmdletsList = functionInfos.Select(fi => fi.Name).Distinct().Append("*").ToPsList(); + sb.AppendLine($@"{Indent}FunctionsToExport = {cmdletsList}"); + var aliasesList = functionInfos.SelectMany(fi => fi.ScriptBlock.Attributes).ToAliasNames().Append("*").ToPsList(); + sb.AppendLine($@"{Indent}AliasesToExport = {aliasesList}"); + + sb.AppendLine($@"{Indent}PrivateData = @{{"); + sb.AppendLine($@"{Indent}{Indent}PSData = @{{"); + + if (previewVersion != null) + { + sb.AppendLine($@"{Indent}{Indent}{Indent}Prerelease = {previewVersion}"); + } + sb.AppendLine($@"{Indent}{Indent}{Indent}Tags = {"Azure ResourceManager ARM PSModule VMWare".Split(' ').ToPsList().NullIfEmpty() ?? "''"}"); + sb.AppendLine($@"{Indent}{Indent}{Indent}LicenseUri = '{"https://aka.ms/azps-license"}'"); + sb.AppendLine($@"{Indent}{Indent}{Indent}ProjectUri = '{"https://github.com/Azure/azure-powershell"}'"); + sb.AppendLine($@"{Indent}{Indent}{Indent}ReleaseNotes = ''"); + var profilesList = ""; + if (IsAzure && !String.IsNullOrEmpty(profilesList)) + { + sb.AppendLine($@"{Indent}{Indent}{Indent}Profiles = {profilesList}"); + } + + sb.AppendLine($@"{Indent}{Indent}}}"); + sb.AppendLine($@"{Indent}}}"); + sb.AppendLine(@"}"); + + File.WriteAllText(Psd1Path, sb.ToString()); + } + catch (Exception ee) + { + Console.WriteLine($"${ee.GetType().Name}/{ee.StackTrace}"); + throw ee; + } + } + } +} diff --git a/src/VMWare/generated/runtime/BuildTime/Cmdlets/ExportTestStub.cs b/src/VMWare/generated/runtime/BuildTime/Cmdlets/ExportTestStub.cs new file mode 100644 index 000000000000..aca32355e12c --- /dev/null +++ b/src/VMWare/generated/runtime/BuildTime/Cmdlets/ExportTestStub.cs @@ -0,0 +1,137 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.IO; +using System.Linq; +using System.Management.Automation; +using System.Text; +using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.PsProxyOutputExtensions; +using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.PsHelpers; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell +{ + [Cmdlet(VerbsData.Export, "TestStub")] + [DoNotExport] + public class ExportTestStub : PSCmdlet + { + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public string ModuleName { get; set; } + + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public string ExportsFolder { get; set; } + + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public string OutputFolder { get; set; } + + [Parameter] + public SwitchParameter IncludeGenerated { get; set; } + + protected override void ProcessRecord() + { + try + { + if (!Directory.Exists(ExportsFolder)) + { + throw new ArgumentException($"Exports folder '{ExportsFolder}' does not exist"); + } + + var exportDirectories = Directory.GetDirectories(ExportsFolder); + if (!exportDirectories.Any()) + { + exportDirectories = new[] { ExportsFolder }; + } + var utilFile = Path.Combine(OutputFolder, "utils.ps1"); + if (!File.Exists(utilFile)) + { + var sc = new StringBuilder(); + sc.AppendLine(@"function RandomString([bool]$allChars, [int32]$len) { + if ($allChars) { + return -join ((33..126) | Get-Random -Count $len | % {[char]$_}) + } else { + return -join ((48..57) + (97..122) | Get-Random -Count $len | % {[char]$_}) + } +} +$env = @{} +function setupEnv() { + # Preload subscriptionId and tenant from context, which will be used in test + # as default. You could change them if needed. + $env.SubscriptionId = (Get-AzContext).Subscription.Id + $env.Tenant = (Get-AzContext).Tenant.Id + # For any resources you created for test, you should add it to $env here. + $envFile = 'env.json' + if ($TestMode -eq 'live') { + $envFile = 'localEnv.json' + } + set-content -Path (Join-Path $PSScriptRoot $envFile) -Value (ConvertTo-Json $env) +} +function cleanupEnv() { + # Clean resources you create for testing +} +"); + File.WriteAllText(utilFile, sc.ToString()); + } + foreach (var exportDirectory in exportDirectories) + { + var outputFolder = OutputFolder; + if (exportDirectory != ExportsFolder) + { + outputFolder = Path.Combine(OutputFolder, Path.GetFileName(exportDirectory)); + Directory.CreateDirectory(outputFolder); + } + + var variantGroups = GetScriptCmdlets(exportDirectory) + .SelectMany(fi => fi.ToVariants()) + .Where(v => !v.IsDoNotExport) + .GroupBy(v => v.CmdletName) + .Select(vg => new VariantGroup(ModuleName, vg.Key, vg.Select(v => v).ToArray(), outputFolder, isTest: true)) + .Where(vtg => !File.Exists(vtg.FilePath) && (IncludeGenerated || !vtg.IsGenerated)); + + foreach (var variantGroup in variantGroups) + { + var sb = new StringBuilder(); + sb.AppendLine(@"$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' +} +. ($loadEnvPath)" +); + sb.AppendLine($@"$TestRecordingFile = Join-Path $PSScriptRoot '{variantGroup.CmdletName}.Recording.json'"); + sb.AppendLine(@"$currentPath = $PSScriptRoot +while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent +} +. ($mockingPath | Select-Object -First 1).FullName +"); + + sb.AppendLine($"Describe '{variantGroup.CmdletName}' {{"); + var variants = variantGroup.Variants + .Where(v => IncludeGenerated || !v.Attributes.OfType().Any()) + .ToList(); + + foreach (var variant in variants) + { + sb.AppendLine($"{Indent}It '{variant.VariantName}' -skip {{"); + sb.AppendLine($"{Indent}{Indent}{{ throw [System.NotImplementedException] }} | Should -Not -Throw"); + var variantSeparator = variants.IndexOf(variant) == variants.Count - 1 ? String.Empty : Environment.NewLine; + sb.AppendLine($"{Indent}}}{variantSeparator}"); + } + sb.AppendLine("}"); + + File.WriteAllText(variantGroup.FilePath, sb.ToString()); + } + } + } + catch (Exception ee) + { + Console.WriteLine($"${ee.GetType().Name}/{ee.StackTrace}"); + throw ee; + } + } + } +} diff --git a/src/VMWare/generated/runtime/BuildTime/Cmdlets/GetCommonParameter.cs b/src/VMWare/generated/runtime/BuildTime/Cmdlets/GetCommonParameter.cs new file mode 100644 index 000000000000..fb36df82b131 --- /dev/null +++ b/src/VMWare/generated/runtime/BuildTime/Cmdlets/GetCommonParameter.cs @@ -0,0 +1,52 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System.Collections.Generic; +using System.Linq; +using System.Management.Automation; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell +{ + [Cmdlet(VerbsCommon.Get, "CommonParameter")] + [OutputType(typeof(Dictionary))] + [DoNotExport] + public class GetCommonParameter : PSCmdlet + { + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public PSCmdlet PSCmdlet { get; set; } + + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public Dictionary PSBoundParameter { get; set; } + + protected override void ProcessRecord() + { + try + { + var variants = PSCmdlet.MyInvocation.MyCommand.ToVariants(); + var commonParameterNames = variants.ToParameterGroups() + .Where(pg => pg.OrderCategory == ParameterCategory.Azure || pg.OrderCategory == ParameterCategory.Runtime) + .Select(pg => pg.ParameterName); + if (variants.Any(v => v.SupportsShouldProcess)) + { + commonParameterNames = commonParameterNames.Append("Confirm").Append("WhatIf"); + } + if (variants.Any(v => v.SupportsPaging)) + { + commonParameterNames = commonParameterNames.Append("First").Append("Skip").Append("IncludeTotalCount"); + } + + var names = commonParameterNames.ToArray(); + var keys = PSBoundParameter.Keys.Where(k => names.Contains(k)); + WriteObject(keys.ToDictionary(key => key, key => PSBoundParameter[key]), true); + } + catch (System.Exception ee) + { + System.Console.WriteLine($"${ee.GetType().Name}/{ee.StackTrace}"); + throw ee; + } + } + } +} diff --git a/src/VMWare/generated/runtime/BuildTime/Cmdlets/GetModuleGuid.cs b/src/VMWare/generated/runtime/BuildTime/Cmdlets/GetModuleGuid.cs new file mode 100644 index 000000000000..dcb52ec456e2 --- /dev/null +++ b/src/VMWare/generated/runtime/BuildTime/Cmdlets/GetModuleGuid.cs @@ -0,0 +1,31 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System.Management.Automation; +using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.PsHelpers; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell +{ + [Cmdlet(VerbsCommon.Get, "ModuleGuid")] + [DoNotExport] + public class GetModuleGuid : PSCmdlet + { + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public string Psd1Path { get; set; } + + protected override void ProcessRecord() + { + try + { + WriteObject(ReadGuidFromPsd1(Psd1Path)); + } + catch (System.Exception ee) + { + System.Console.WriteLine($"${ee.GetType().Name}/{ee.StackTrace}"); + throw ee; + } + } + } +} diff --git a/src/VMWare/generated/runtime/BuildTime/Cmdlets/GetScriptCmdlet.cs b/src/VMWare/generated/runtime/BuildTime/Cmdlets/GetScriptCmdlet.cs new file mode 100644 index 000000000000..3513e6067c16 --- /dev/null +++ b/src/VMWare/generated/runtime/BuildTime/Cmdlets/GetScriptCmdlet.cs @@ -0,0 +1,53 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System.Linq; +using System.Management.Automation; +using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.PsHelpers; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell +{ + [Cmdlet(VerbsCommon.Get, "ScriptCmdlet")] + [OutputType(typeof(string[]))] + [DoNotExport] + public class GetScriptCmdlet : PSCmdlet + { + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public string ScriptFolder { get; set; } + + [Parameter] + public SwitchParameter IncludeDoNotExport { get; set; } + + [Parameter] + public SwitchParameter AsAlias { get; set; } + + [Parameter] + public SwitchParameter AsFunctionInfo { get; set; } + + protected override void ProcessRecord() + { + try + { + var functionInfos = GetScriptCmdlets(this, ScriptFolder) + .Where(fi => IncludeDoNotExport || !fi.ScriptBlock.Attributes.OfType().Any()) + .ToArray(); + if (AsFunctionInfo) + { + WriteObject(functionInfos, true); + return; + } + var aliases = functionInfos.SelectMany(i => i.ScriptBlock.Attributes).ToAliasNames(); + var names = functionInfos.Select(fi => fi.Name).Distinct(); + var output = (AsAlias ? aliases : names).DefaultIfEmpty("''").ToArray(); + WriteObject(output, true); + } + catch (System.Exception ee) + { + System.Console.WriteLine($"${ee.GetType().Name}/{ee.StackTrace}"); + throw ee; + } + } + } +} diff --git a/src/VMWare/generated/runtime/BuildTime/CollectionExtensions.cs b/src/VMWare/generated/runtime/BuildTime/CollectionExtensions.cs new file mode 100644 index 000000000000..ba9f8daa4b57 --- /dev/null +++ b/src/VMWare/generated/runtime/BuildTime/CollectionExtensions.cs @@ -0,0 +1,20 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Collections.Generic; +using System.Linq; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell +{ + internal static class CollectionExtensions + { + public static T[] NullIfEmpty(this T[] collection) => (collection?.Any() ?? false) ? collection : null; + public static IEnumerable EmptyIfNull(this IEnumerable collection) => collection ?? Enumerable.Empty(); + + // https://stackoverflow.com/a/4158364/294804 + public static IEnumerable DistinctBy(this IEnumerable collection, Func selector) => + collection.GroupBy(selector).Select(group => group.First()); + } +} diff --git a/src/VMWare/generated/runtime/BuildTime/MarkdownRenderer.cs b/src/VMWare/generated/runtime/BuildTime/MarkdownRenderer.cs new file mode 100644 index 000000000000..ce32baf06700 --- /dev/null +++ b/src/VMWare/generated/runtime/BuildTime/MarkdownRenderer.cs @@ -0,0 +1,121 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Text; +using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.MarkdownTypesExtensions; +using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.PsProxyOutputExtensions; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell +{ + internal static class MarkdownRenderer + { + public static void WriteMarkdowns(IEnumerable variantGroups, PsModuleHelpInfo moduleHelpInfo, string docsFolder, string examplesFolder) + { + Directory.CreateDirectory(docsFolder); + var markdownInfos = variantGroups.Where(vg => !vg.IsInternal).Select(vg => new MarkdownHelpInfo(vg, examplesFolder)).OrderBy(mhi => mhi.CmdletName).ToArray(); + + foreach (var markdownInfo in markdownInfos) + { + var sb = new StringBuilder(); + sb.Append(markdownInfo.ToHelpMetadataOutput()); + sb.Append($"# {markdownInfo.CmdletName}{Environment.NewLine}{Environment.NewLine}"); + sb.Append($"## SYNOPSIS{Environment.NewLine}{markdownInfo.Synopsis.ToDescriptionFormat()}{Environment.NewLine}{Environment.NewLine}"); + + sb.Append($"## SYNTAX{Environment.NewLine}{Environment.NewLine}"); + var hasMultipleParameterSets = markdownInfo.SyntaxInfos.Length > 1; + foreach (var syntaxInfo in markdownInfo.SyntaxInfos) + { + sb.Append(syntaxInfo.ToHelpSyntaxOutput(hasMultipleParameterSets)); + } + + sb.Append($"## DESCRIPTION{Environment.NewLine}{markdownInfo.Description.ToDescriptionFormat()}{Environment.NewLine}{Environment.NewLine}"); + + sb.Append($"## EXAMPLES{Environment.NewLine}{Environment.NewLine}"); + foreach (var exampleInfo in markdownInfo.Examples) + { + sb.Append(exampleInfo.ToHelpExampleOutput()); + } + + sb.Append($"## PARAMETERS{Environment.NewLine}{Environment.NewLine}"); + foreach (var parameter in markdownInfo.Parameters) + { + sb.Append(parameter.ToHelpParameterOutput()); + } + if (markdownInfo.SupportsShouldProcess) + { + foreach (var parameter in SupportsShouldProcessParameters) + { + sb.Append(parameter.ToHelpParameterOutput()); + } + } + if (markdownInfo.SupportsPaging) + { + foreach (var parameter in SupportsPagingParameters) + { + sb.Append(parameter.ToHelpParameterOutput()); + } + } + + sb.Append($"### CommonParameters{Environment.NewLine}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).{Environment.NewLine}{Environment.NewLine}"); + + sb.Append($"## INPUTS{Environment.NewLine}{Environment.NewLine}"); + foreach (var input in markdownInfo.Inputs) + { + sb.Append($"### {input}{Environment.NewLine}{Environment.NewLine}"); + } + + sb.Append($"## OUTPUTS{Environment.NewLine}{Environment.NewLine}"); + foreach (var output in markdownInfo.Outputs) + { + sb.Append($"### {output}{Environment.NewLine}{Environment.NewLine}"); + } + + sb.Append($"## NOTES{Environment.NewLine}{Environment.NewLine}"); + sb.Append($"ALIASES{Environment.NewLine}{Environment.NewLine}"); + foreach (var alias in markdownInfo.Aliases) + { + sb.Append($"### {alias}{Environment.NewLine}{Environment.NewLine}"); + } + if (markdownInfo.ComplexInterfaceInfos.Any()) + { + sb.Append($"{ComplexParameterHeader}{Environment.NewLine}"); + } + foreach (var complexInterfaceInfo in markdownInfo.ComplexInterfaceInfos) + { + sb.Append($"{complexInterfaceInfo.ToNoteOutput(includeDashes: true, includeBackticks: true)}{Environment.NewLine}{Environment.NewLine}"); + } + + sb.Append($"## RELATED LINKS{Environment.NewLine}{Environment.NewLine}"); + foreach (var relatedLink in markdownInfo.RelatedLinks) + { + sb.Append($"{relatedLink}{Environment.NewLine}{Environment.NewLine}"); + } + + File.WriteAllText(Path.Combine(docsFolder, $"{markdownInfo.CmdletName}.md"), sb.ToString()); + } + + WriteModulePage(moduleHelpInfo, markdownInfos, docsFolder); + } + + private static void WriteModulePage(PsModuleHelpInfo moduleInfo, MarkdownHelpInfo[] markdownInfos, string docsFolder) + { + var sb = new StringBuilder(); + sb.Append(moduleInfo.ToModulePageMetadataOutput()); + sb.Append($"# {moduleInfo.Name} Module{Environment.NewLine}"); + sb.Append($"## Description{Environment.NewLine}{moduleInfo.Description.ToDescriptionFormat()}{Environment.NewLine}{Environment.NewLine}"); + + sb.Append($"## {moduleInfo.Name} Cmdlets{Environment.NewLine}"); + foreach (var markdownInfo in markdownInfos) + { + sb.Append(markdownInfo.ToModulePageCmdletOutput()); + } + + File.WriteAllText(Path.Combine(docsFolder, $"{moduleInfo.Name}.md"), sb.ToString()); + } + } +} diff --git a/src/VMWare/generated/runtime/BuildTime/Models/PsFormatTypes.cs b/src/VMWare/generated/runtime/BuildTime/Models/PsFormatTypes.cs new file mode 100644 index 000000000000..8ba566934735 --- /dev/null +++ b/src/VMWare/generated/runtime/BuildTime/Models/PsFormatTypes.cs @@ -0,0 +1,138 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Reflection; +using System.Xml.Serialization; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell +{ + internal class ViewParameters + { + public Type Type { get; } + public IEnumerable Properties { get; } + + public ViewParameters(Type type, IEnumerable properties) + { + Type = type; + Properties = properties; + } + } + + internal class PropertyFormat + { + public PropertyInfo Property { get; } + public FormatTableAttribute FormatTable { get; } + + public int? Index { get; } + public string Label { get; } + public int? Width { get; } + public PropertyOrigin? Origin { get; } + + public PropertyFormat(PropertyInfo propertyInfo) + { + Property = propertyInfo; + FormatTable = Property.GetCustomAttributes().FirstOrDefault(); + var origin = Property.GetCustomAttributes().FirstOrDefault(); + + Index = FormatTable?.HasIndex ?? false ? (int?)FormatTable.Index : null; + Label = FormatTable?.Label ?? propertyInfo.Name; + Width = FormatTable?.HasWidth ?? false ? (int?)FormatTable.Width : null; + // If we have an index, we don't want to use Origin. + Origin = FormatTable?.HasIndex ?? false ? null : origin?.Origin; + } + } + + [Serializable] + [XmlRoot(nameof(Configuration))] + public class Configuration + { + [XmlElement("ViewDefinitions")] + public ViewDefinitions ViewDefinitions { get; set; } + } + + [Serializable] + public class ViewDefinitions + { + //https://stackoverflow.com/a/10518657/294804 + [XmlElement("View")] + public List Views { get; set; } + } + + [Serializable] + public class View + { + [XmlElement(nameof(Name))] + public string Name { get; set; } + [XmlElement(nameof(ViewSelectedBy))] + public ViewSelectedBy ViewSelectedBy { get; set; } + [XmlElement(nameof(TableControl))] + public TableControl TableControl { get; set; } + } + + [Serializable] + public class ViewSelectedBy + { + [XmlElement(nameof(TypeName))] + public string TypeName { get; set; } + } + + [Serializable] + public class TableControl + { + [XmlElement(nameof(TableHeaders))] + public TableHeaders TableHeaders { get; set; } + [XmlElement(nameof(TableRowEntries))] + public TableRowEntries TableRowEntries { get; set; } + } + + [Serializable] + public class TableHeaders + { + [XmlElement("TableColumnHeader")] + public List TableColumnHeaders { get; set; } + } + + [Serializable] + public class TableColumnHeader + { + [XmlElement(nameof(Label))] + public string Label { get; set; } + [XmlElement(nameof(Width))] + public int? Width { get; set; } + + //https://stackoverflow.com/a/4095225/294804 + public bool ShouldSerializeWidth() => Width.HasValue; + } + + [Serializable] + public class TableRowEntries + { + [XmlElement(nameof(TableRowEntry))] + public TableRowEntry TableRowEntry { get; set; } + } + + [Serializable] + public class TableRowEntry + { + [XmlElement(nameof(TableColumnItems))] + public TableColumnItems TableColumnItems { get; set; } + } + + [Serializable] + public class TableColumnItems + { + [XmlElement("TableColumnItem")] + public List TableItems { get; set; } + } + + [Serializable] + public class TableColumnItem + { + [XmlElement(nameof(PropertyName))] + public string PropertyName { get; set; } + } +} diff --git a/src/VMWare/generated/runtime/BuildTime/Models/PsHelpMarkdownOutputs.cs b/src/VMWare/generated/runtime/BuildTime/Models/PsHelpMarkdownOutputs.cs new file mode 100644 index 000000000000..6422bad64664 --- /dev/null +++ b/src/VMWare/generated/runtime/BuildTime/Models/PsHelpMarkdownOutputs.cs @@ -0,0 +1,177 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Linq; +using System.Management.Automation; +using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.PsHelpOutputExtensions; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell +{ + internal class HelpMetadataOutput + { + public MarkdownHelpInfo HelpInfo { get; } + + public HelpMetadataOutput(MarkdownHelpInfo helpInfo) + { + HelpInfo = helpInfo; + } + + public override string ToString() => $@"--- +external help file:{(!String.IsNullOrEmpty(HelpInfo.ExternalHelpFilename) ? $" {HelpInfo.ExternalHelpFilename}" : String.Empty)} +Module Name: {HelpInfo.ModuleName} +online version: {HelpInfo.OnlineVersion} +schema: {HelpInfo.Schema.ToString(3)} +--- + +"; + } + + internal class HelpSyntaxOutput + { + public MarkdownSyntaxHelpInfo SyntaxInfo { get; } + public bool HasMultipleParameterSets { get; } + + public HelpSyntaxOutput(MarkdownSyntaxHelpInfo syntaxInfo, bool hasMultipleParameterSets) + { + SyntaxInfo = syntaxInfo; + HasMultipleParameterSets = hasMultipleParameterSets; + } + + public override string ToString() + { + var psnText = HasMultipleParameterSets ? $"### {SyntaxInfo.ParameterSetName}{(SyntaxInfo.IsDefault ? " (Default)" : String.Empty)}{Environment.NewLine}" : String.Empty; + return $@"{psnText}``` +{SyntaxInfo.SyntaxText} +``` + +"; + } + } + + internal class HelpExampleOutput + { + public MarkdownExampleHelpInfo ExampleInfo { get; } + + public HelpExampleOutput(MarkdownExampleHelpInfo exampleInfo) + { + ExampleInfo = exampleInfo; + } + + public override string ToString() => $@"{ExampleNameHeader}{ExampleInfo.Name} +{ExampleCodeHeader} +{ExampleInfo.Code} +{ExampleCodeFooter} + +{ExampleInfo.Description.ToDescriptionFormat()} + +"; + } + + + internal class HelpParameterOutput + { + public MarkdownParameterHelpInfo ParameterInfo { get; } + + public HelpParameterOutput(MarkdownParameterHelpInfo parameterInfo) + { + ParameterInfo = parameterInfo; + } + + public override string ToString() + { + var pipelineInputTypes = new[] + { + ParameterInfo.AcceptsPipelineByValue ? "ByValue" : String.Empty, + ParameterInfo.AcceptsPipelineByPropertyName ? "ByPropertyName" : String.Empty + }.JoinIgnoreEmpty(", "); + var pipelineInput = ParameterInfo.AcceptsPipelineByValue || ParameterInfo.AcceptsPipelineByPropertyName + ? $@"{true} ({pipelineInputTypes})" + : false.ToString(); + + return $@"### -{ParameterInfo.Name} +{ParameterInfo.Description.ToDescriptionFormat()} + +```yaml +Type: {ParameterInfo.Type.FullName} +Parameter Sets: {(ParameterInfo.HasAllParameterSets ? "(All)" : ParameterInfo.ParameterSetNames.JoinIgnoreEmpty(", "))} +Aliases:{(ParameterInfo.Aliases.Any() ? $" {ParameterInfo.Aliases.JoinIgnoreEmpty(", ")}" : String.Empty)} + +Required: {ParameterInfo.IsRequired} +Position: {ParameterInfo.Position} +Default value: {ParameterInfo.DefaultValue} +Accept pipeline input: {pipelineInput} +Accept wildcard characters: {ParameterInfo.AcceptsWildcardCharacters} +``` + +"; + } + } + + internal class ModulePageMetadataOutput + { + public PsModuleHelpInfo ModuleInfo { get; } + + private static string HelpLinkPrefix { get; } = @"https://docs.microsoft.com/en-us/powershell/module/"; + + public ModulePageMetadataOutput(PsModuleHelpInfo moduleInfo) + { + ModuleInfo = moduleInfo; + } + + public override string ToString() => $@"--- +Module Name: {ModuleInfo.Name} +Module Guid: {ModuleInfo.Guid} +Download Help Link: {HelpLinkPrefix}{ModuleInfo.Name.ToLowerInvariant()} +Help Version: 1.0.0.0 +Locale: en-US +--- + +"; + } + + internal class ModulePageCmdletOutput + { + public MarkdownHelpInfo HelpInfo { get; } + + public ModulePageCmdletOutput(MarkdownHelpInfo helpInfo) + { + HelpInfo = helpInfo; + } + + public override string ToString() => $@"### [{HelpInfo.CmdletName}]({HelpInfo.CmdletName}.md) +{HelpInfo.Description.ToDescriptionFormat()} + +"; + } + + internal static class PsHelpOutputExtensions + { + public static string EscapeAngleBrackets(this string text) => text?.Replace("<", @"\<").Replace(">", @"\>"); + public static string ReplaceSentenceEndWithNewline(this string text) => text?.Replace(". ", $".{Environment.NewLine}").Replace(". ", $".{Environment.NewLine}"); + public static string ReplaceBrWithNewline(this string text) => text?.Replace("
", $"{Environment.NewLine}"); + public static string ToDescriptionFormat(this string text, bool escapeAngleBrackets = true) + { + var description = text?.ReplaceBrWithNewline(); + description = escapeAngleBrackets ? description?.EscapeAngleBrackets() : description; + return description?.ReplaceSentenceEndWithNewline().Trim(); + } + + public const string ExampleNameHeader = "### "; + public const string ExampleCodeHeader = "```powershell"; + public const string ExampleCodeFooter = "```"; + + public static HelpMetadataOutput ToHelpMetadataOutput(this MarkdownHelpInfo helpInfo) => new HelpMetadataOutput(helpInfo); + + public static HelpSyntaxOutput ToHelpSyntaxOutput(this MarkdownSyntaxHelpInfo syntaxInfo, bool hasMultipleParameterSets) => new HelpSyntaxOutput(syntaxInfo, hasMultipleParameterSets); + + public static HelpExampleOutput ToHelpExampleOutput(this MarkdownExampleHelpInfo exampleInfo) => new HelpExampleOutput(exampleInfo); + + public static HelpParameterOutput ToHelpParameterOutput(this MarkdownParameterHelpInfo parameterInfo) => new HelpParameterOutput(parameterInfo); + + public static ModulePageMetadataOutput ToModulePageMetadataOutput(this PsModuleHelpInfo moduleInfo) => new ModulePageMetadataOutput(moduleInfo); + + public static ModulePageCmdletOutput ToModulePageCmdletOutput(this MarkdownHelpInfo helpInfo) => new ModulePageCmdletOutput(helpInfo); + } +} diff --git a/src/VMWare/generated/runtime/BuildTime/Models/PsHelpTypes.cs b/src/VMWare/generated/runtime/BuildTime/Models/PsHelpTypes.cs new file mode 100644 index 000000000000..24a78c0ac19a --- /dev/null +++ b/src/VMWare/generated/runtime/BuildTime/Models/PsHelpTypes.cs @@ -0,0 +1,199 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Management.Automation; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell +{ + internal class PsHelpInfo + { + public string CmdletName { get; } + public string ModuleName { get; } + public string Synopsis { get; } + public string Description { get; } + public string AlertText { get; } + public string Category { get; } + public PsHelpLinkInfo OnlineVersion { get; } + public PsHelpLinkInfo[] RelatedLinks { get; } + public bool? HasCommonParameters { get; } + public bool? HasWorkflowCommonParameters { get; } + + public PsHelpTypeInfo[] InputTypes { get; } + public PsHelpTypeInfo[] OutputTypes { get; } + public PsHelpExampleInfo[] Examples { get; set; } + public string[] Aliases { get; } + + public PsParameterHelpInfo[] Parameters { get; } + public PsHelpSyntaxInfo[] Syntax { get; } + + public object Component { get; } + public object Functionality { get; } + public object PsSnapIn { get; } + public object Role { get; } + public string NonTerminatingErrors { get; } + + public PsHelpInfo(PSObject helpObject = null) + { + helpObject = helpObject ?? new PSObject(); + CmdletName = helpObject.GetProperty("Name").NullIfEmpty() ?? helpObject.GetNestedProperty("details", "name"); + ModuleName = helpObject.GetProperty("ModuleName"); + Synopsis = helpObject.GetProperty("Synopsis"); + Description = helpObject.GetProperty("description").EmptyIfNull().ToDescriptionText().NullIfEmpty() ?? + helpObject.GetNestedProperty("details", "description").EmptyIfNull().ToDescriptionText(); + AlertText = helpObject.GetNestedProperty("alertSet", "alert").EmptyIfNull().ToDescriptionText(); + Category = helpObject.GetProperty("Category"); + HasCommonParameters = helpObject.GetProperty("CommonParameters").ToNullableBool(); + HasWorkflowCommonParameters = helpObject.GetProperty("WorkflowCommonParameters").ToNullableBool(); + + var links = helpObject.GetNestedProperty("relatedLinks", "navigationLink").EmptyIfNull().Select(nl => nl.ToLinkInfo()).ToArray(); + OnlineVersion = links.FirstOrDefault(l => l.Text?.ToLowerInvariant().StartsWith("online version:") ?? links.Length == 1); + RelatedLinks = links.Where(l => !l.Text?.ToLowerInvariant().StartsWith("online version:") ?? links.Length != 1).ToArray(); + + InputTypes = helpObject.GetNestedProperty("inputTypes", "inputType").EmptyIfNull().Select(it => it.ToTypeInfo()).ToArray(); + OutputTypes = helpObject.GetNestedProperty("returnValues", "returnValue").EmptyIfNull().Select(rv => rv.ToTypeInfo()).ToArray(); + Examples = helpObject.GetNestedProperty("examples", "example").EmptyIfNull().Select(e => e.ToExampleInfo()).ToArray(); + Aliases = helpObject.GetProperty("aliases").EmptyIfNull().Split(new[] { Environment.NewLine }, StringSplitOptions.RemoveEmptyEntries); + + Parameters = helpObject.GetNestedProperty("parameters", "parameter").EmptyIfNull().Select(p => p.ToPsParameterHelpInfo()).ToArray(); + Syntax = helpObject.GetNestedProperty("syntax", "syntaxItem").EmptyIfNull().Select(si => si.ToSyntaxInfo()).ToArray(); + + Component = helpObject.GetProperty("Component"); + Functionality = helpObject.GetProperty("Functionality"); + PsSnapIn = helpObject.GetProperty("PSSnapIn"); + Role = helpObject.GetProperty("Role"); + NonTerminatingErrors = helpObject.GetProperty("nonTerminatingErrors"); + } + } + + internal class PsHelpTypeInfo + { + public string Name { get; } + public string Description { get; } + + public PsHelpTypeInfo(PSObject typeObject) + { + Name = typeObject.GetNestedProperty("type", "name").EmptyIfNull().Trim(); + Description = typeObject.GetProperty("description").EmptyIfNull().ToDescriptionText(); + } + } + + internal class PsHelpLinkInfo + { + public string Uri { get; } + public string Text { get; } + + public PsHelpLinkInfo(PSObject linkObject) + { + Uri = linkObject.GetProperty("uri"); + Text = linkObject.GetProperty("linkText"); + } + } + + internal class PsHelpSyntaxInfo + { + public string CmdletName { get; } + public PsParameterHelpInfo[] Parameters { get; } + + public PsHelpSyntaxInfo(PSObject syntaxObject) + { + CmdletName = syntaxObject.GetProperty("name"); + Parameters = syntaxObject.GetProperty("parameter").EmptyIfNull().Select(p => p.ToPsParameterHelpInfo()).ToArray(); + } + } + + internal class PsHelpExampleInfo + { + public string Title { get; } + public string Code { get; } + public string Remarks { get; } + + public PsHelpExampleInfo(PSObject exampleObject) + { + Title = exampleObject.GetProperty("title"); + Code = exampleObject.GetProperty("code"); + Remarks = exampleObject.GetProperty("remarks").EmptyIfNull().ToDescriptionText(); + } + public PsHelpExampleInfo(MarkdownExampleHelpInfo markdownExample) + { + Title = markdownExample.Name; + Code = markdownExample.Code; + Remarks = markdownExample.Description; + } + + public static implicit operator PsHelpExampleInfo(MarkdownExampleHelpInfo markdownExample) => new PsHelpExampleInfo(markdownExample); + } + + internal class PsParameterHelpInfo + { + public string DefaultValueAsString { get; } + + public string Name { get; } + public string TypeName { get; } + public string Description { get; } + public string SupportsPipelineInput { get; } + public string PositionText { get; } + public string[] ParameterSetNames { get; } + public string[] Aliases { get; } + + public bool? SupportsGlobbing { get; } + public bool? IsRequired { get; } + public bool? IsVariableLength { get; } + public bool? IsDynamic { get; } + + public PsParameterHelpInfo(PSObject parameterHelpObject = null) + { + parameterHelpObject = parameterHelpObject ?? new PSObject(); + DefaultValueAsString = parameterHelpObject.GetProperty("defaultValue"); + Name = parameterHelpObject.GetProperty("name"); + TypeName = parameterHelpObject.GetProperty("parameterValue").NullIfEmpty() ?? parameterHelpObject.GetNestedProperty("type", "name"); + Description = parameterHelpObject.GetProperty("Description").EmptyIfNull().ToDescriptionText(); + SupportsPipelineInput = parameterHelpObject.GetProperty("pipelineInput"); + PositionText = parameterHelpObject.GetProperty("position"); + ParameterSetNames = parameterHelpObject.GetProperty("parameterSetName").EmptyIfNull().Split(new[] { ", " }, StringSplitOptions.RemoveEmptyEntries); + Aliases = parameterHelpObject.GetProperty("aliases").EmptyIfNull().Split(new[] { ", " }, StringSplitOptions.RemoveEmptyEntries); + + SupportsGlobbing = parameterHelpObject.GetProperty("globbing").ToNullableBool(); + IsRequired = parameterHelpObject.GetProperty("required").ToNullableBool(); + IsVariableLength = parameterHelpObject.GetProperty("variableLength").ToNullableBool(); + IsDynamic = parameterHelpObject.GetProperty("isDynamic").ToNullableBool(); + } + } + + internal class PsModuleHelpInfo + { + public string Name { get; } + public Guid Guid { get; } + public string Description { get; } + + public PsModuleHelpInfo(PSModuleInfo moduleInfo) + : this(moduleInfo?.Name ?? String.Empty, moduleInfo?.Guid ?? Guid.NewGuid(), moduleInfo?.Description ?? String.Empty) + { + } + + public PsModuleHelpInfo(string name, Guid guid, string description) + { + Name = name; + Guid = guid; + Description = description; + } + } + + internal static class HelpTypesExtensions + { + public static PsHelpInfo ToPsHelpInfo(this PSObject helpObject) => new PsHelpInfo(helpObject); + public static PsParameterHelpInfo ToPsParameterHelpInfo(this PSObject parameterHelpObject) => new PsParameterHelpInfo(parameterHelpObject); + + public static string ToDescriptionText(this IEnumerable descriptionObject) => descriptionObject != null + ? String.Join(Environment.NewLine, descriptionObject.Select(dl => dl.GetProperty("Text").EmptyIfNull())).NullIfWhiteSpace() + : null; + public static PsHelpTypeInfo ToTypeInfo(this PSObject typeObject) => new PsHelpTypeInfo(typeObject); + public static PsHelpExampleInfo ToExampleInfo(this PSObject exampleObject) => new PsHelpExampleInfo(exampleObject); + public static PsHelpLinkInfo ToLinkInfo(this PSObject linkObject) => new PsHelpLinkInfo(linkObject); + public static PsHelpSyntaxInfo ToSyntaxInfo(this PSObject syntaxObject) => new PsHelpSyntaxInfo(syntaxObject); + public static PsModuleHelpInfo ToModuleInfo(this PSModuleInfo moduleInfo) => new PsModuleHelpInfo(moduleInfo); + } +} diff --git a/src/VMWare/generated/runtime/BuildTime/Models/PsMarkdownTypes.cs b/src/VMWare/generated/runtime/BuildTime/Models/PsMarkdownTypes.cs new file mode 100644 index 000000000000..bcf54fcd238a --- /dev/null +++ b/src/VMWare/generated/runtime/BuildTime/Models/PsMarkdownTypes.cs @@ -0,0 +1,291 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Management.Automation; +using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.MarkdownTypesExtensions; +using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.PsHelpOutputExtensions; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell +{ + internal class MarkdownHelpInfo + { + public string ExternalHelpFilename { get; } + public string ModuleName { get; } + public string OnlineVersion { get; } + public Version Schema { get; } + + public string CmdletName { get; } + public string[] Aliases { get; } + public string Synopsis { get; } + public string Description { get; } + + public MarkdownSyntaxHelpInfo[] SyntaxInfos { get; } + public MarkdownExampleHelpInfo[] Examples { get; } + public MarkdownParameterHelpInfo[] Parameters { get; } + + public string[] Inputs { get; } + public string[] Outputs { get; } + public ComplexInterfaceInfo[] ComplexInterfaceInfos { get; } + public string[] RelatedLinks { get; } + + public bool SupportsShouldProcess { get; } + public bool SupportsPaging { get; } + + public MarkdownHelpInfo(VariantGroup variantGroup, string examplesFolder, string externalHelpFilename = "") + { + ExternalHelpFilename = externalHelpFilename; + ModuleName = variantGroup.ModuleName; + var helpInfo = variantGroup.HelpInfo; + var commentInfo = variantGroup.CommentInfo; + Schema = Version.Parse("2.0.0"); + + CmdletName = variantGroup.CmdletName; + Aliases = (variantGroup.Aliases.NullIfEmpty() ?? helpInfo.Aliases).Where(a => a != "None").ToArray(); + Synopsis = commentInfo.Synopsis; + Description = commentInfo.Description; + + SyntaxInfos = variantGroup.Variants + .Select(v => new MarkdownSyntaxHelpInfo(v, variantGroup.ParameterGroups, v.VariantName == variantGroup.DefaultParameterSetName)) + .OrderByDescending(v => v.IsDefault).ThenBy(v => v.ParameterSetName).ToArray(); + Examples = GetExamplesFromMarkdown(examplesFolder).NullIfEmpty() + ?? helpInfo.Examples.Select(e => e.ToExampleHelpInfo()).ToArray().NullIfEmpty() + ?? DefaultExampleHelpInfos; + + Parameters = variantGroup.ParameterGroups + .Where(pg => !pg.DontShow) + .Select(pg => new MarkdownParameterHelpInfo( + variantGroup.Variants.SelectMany(v => v.HelpInfo.Parameters).Where(phi => phi.Name == pg.ParameterName).ToArray(), pg)) + .OrderBy(phi => phi.Name).ToArray(); + + Inputs = commentInfo.Inputs; + Outputs = commentInfo.Outputs; + + ComplexInterfaceInfos = variantGroup.ComplexInterfaceInfos; + OnlineVersion = commentInfo.OnlineVersion; + RelatedLinks = commentInfo.RelatedLinks; + + SupportsShouldProcess = variantGroup.SupportsShouldProcess; + SupportsPaging = variantGroup.SupportsPaging; + } + + private MarkdownExampleHelpInfo[] GetExamplesFromMarkdown(string examplesFolder) + { + var filePath = Path.Combine(examplesFolder, $"{CmdletName}.md"); + if (!Directory.Exists(examplesFolder) || !File.Exists(filePath)) return null; + + var lines = File.ReadAllLines(filePath); + var nameIndices = lines.Select((l, i) => l.StartsWith(ExampleNameHeader) ? i : -1).Where(i => i != -1).ToArray(); + //https://codereview.stackexchange.com/a/187148/68772 + var indexCountGroups = nameIndices.Skip(1).Append(lines.Length).Zip(nameIndices, (next, current) => (NameIndex: current, LineCount: next - current)); + var exampleGroups = indexCountGroups.Select(icg => lines.Skip(icg.NameIndex).Take(icg.LineCount).ToArray()); + return exampleGroups.Select(eg => + { + var name = eg.First().Replace(ExampleNameHeader, String.Empty); + var codeStartIndex = eg.Select((l, i) => l.StartsWith(ExampleCodeHeader) ? (int?)i : null).FirstOrDefault(i => i.HasValue); + var codeEndIndex = eg.Select((l, i) => l.StartsWith(ExampleCodeFooter) ? (int?)i : null).FirstOrDefault(i => i.HasValue && i != codeStartIndex); + var code = codeStartIndex.HasValue && codeEndIndex.HasValue + ? String.Join(Environment.NewLine, eg.Skip(codeStartIndex.Value + 1).Take(codeEndIndex.Value - (codeStartIndex.Value + 1))) + : String.Empty; + var descriptionStartIndex = (codeEndIndex ?? 0) + 1; + descriptionStartIndex = String.IsNullOrWhiteSpace(eg[descriptionStartIndex]) ? descriptionStartIndex + 1 : descriptionStartIndex; + var descriptionEndIndex = eg.Length - 1; + descriptionEndIndex = String.IsNullOrWhiteSpace(eg[descriptionEndIndex]) ? descriptionEndIndex - 1 : descriptionEndIndex; + var description = String.Join(Environment.NewLine, eg.Skip(descriptionStartIndex).Take((descriptionEndIndex + 1) - descriptionStartIndex)); + return new MarkdownExampleHelpInfo(name, code, description); + }).ToArray(); + } + } + + internal class MarkdownSyntaxHelpInfo + { + public Variant Variant { get; } + public bool IsDefault { get; } + public string ParameterSetName { get; } + public Parameter[] Parameters { get; } + public string SyntaxText { get; } + + public MarkdownSyntaxHelpInfo(Variant variant, ParameterGroup[] parameterGroups, bool isDefault) + { + Variant = variant; + IsDefault = isDefault; + ParameterSetName = Variant.VariantName; + Parameters = Variant.Parameters + .Where(p => !p.DontShow).OrderByDescending(p => p.IsMandatory) + //https://stackoverflow.com/a/6461526/294804 + .ThenByDescending(p => p.Position.HasValue).ThenBy(p => p.Position) + // Use the OrderCategory of the parameter group because the final order category is the highest of the group, and not the order category of the individual parameters from the variants. + .ThenBy(p => parameterGroups.First(pg => pg.ParameterName == p.ParameterName).OrderCategory).ThenBy(p => p.ParameterName).ToArray(); + SyntaxText = CreateSyntaxFormat(); + } + + //https://github.com/PowerShell/platyPS/blob/a607a926bfffe1e1a1e53c19e0057eddd0c07611/src/Markdown.MAML/Renderer/Markdownv2Renderer.cs#L29-L32 + private const int SyntaxLineWidth = 110; + private string CreateSyntaxFormat() + { + var parameterStrings = Parameters.Select(p => p.ToPropertySyntaxOutput().ToString()); + if (Variant.SupportsShouldProcess) + { + parameterStrings = parameterStrings.Append(" [-Confirm]").Append(" [-WhatIf]"); + } + if (Variant.SupportsPaging) + { + parameterStrings = parameterStrings.Append(" [-First ]").Append(" [-IncludeTotalCount]").Append(" [-Skip ]"); + } + parameterStrings = parameterStrings.Append(" []"); + + var lines = new List(20); + return parameterStrings.Aggregate(Variant.CmdletName, (current, ps) => + { + var combined = current + ps; + if (combined.Length <= SyntaxLineWidth) return combined; + + lines.Add(current); + return ps; + }, last => + { + lines.Add(last); + return String.Join(Environment.NewLine, lines); + }); + } + } + + internal class MarkdownExampleHelpInfo + { + public string Name { get; } + public string Code { get; } + public string Description { get; } + + public MarkdownExampleHelpInfo(string name, string code, string description) + { + Name = name; + Code = code; + Description = description; + } + } + + internal class MarkdownParameterHelpInfo + { + public string Name { get; set; } + public string Description { get; set; } + public Type Type { get; set; } + public string Position { get; set; } + public string DefaultValue { get; set; } + + public bool HasAllParameterSets { get; set; } + public string[] ParameterSetNames { get; set; } + public string[] Aliases { get; set; } + + public bool IsRequired { get; set; } + public bool IsDynamic { get; set; } + public bool AcceptsPipelineByValue { get; set; } + public bool AcceptsPipelineByPropertyName { get; set; } + public bool AcceptsWildcardCharacters { get; set; } + + // For use by common parameters that have no backing data in the objects themselves. + public MarkdownParameterHelpInfo() { } + + public MarkdownParameterHelpInfo(PsParameterHelpInfo[] parameterHelpInfos, ParameterGroup parameterGroup) + { + Name = parameterGroup.ParameterName; + Description = parameterGroup.Description.NullIfEmpty() + ?? parameterHelpInfos.Select(phi => phi.Description).FirstOrDefault(d => !String.IsNullOrEmpty(d)).EmptyIfNull(); + Type = parameterGroup.ParameterType; + Position = parameterGroup.FirstPosition?.ToString() + ?? parameterHelpInfos.Select(phi => phi.PositionText).FirstOrDefault(d => !String.IsNullOrEmpty(d)).ToUpperFirstCharacter().NullIfEmpty() + ?? "Named"; + // This no longer uses firstHelpInfo.DefaultValueAsString since it seems to be broken. For example, it has a value of 0 for Int32, but no default value was declared. + DefaultValue = parameterGroup.DefaultInfo?.Script ?? "None"; + + HasAllParameterSets = parameterGroup.HasAllVariants; + ParameterSetNames = (parameterGroup.Parameters.Select(p => p.VariantName).ToArray().NullIfEmpty() + ?? parameterHelpInfos.SelectMany(phi => phi.ParameterSetNames).Distinct()) + .OrderBy(psn => psn).ToArray(); + Aliases = parameterGroup.Aliases.NullIfEmpty() ?? parameterHelpInfos.SelectMany(phi => phi.Aliases).ToArray(); + + IsRequired = parameterHelpInfos.Select(phi => phi.IsRequired).FirstOrDefault(r => r == true) ?? parameterGroup.Parameters.Any(p => p.IsMandatory); + IsDynamic = parameterHelpInfos.Select(phi => phi.IsDynamic).FirstOrDefault(d => d == true) ?? false; + AcceptsPipelineByValue = parameterHelpInfos.Select(phi => phi.SupportsPipelineInput?.Contains("ByValue")).FirstOrDefault(bv => bv == true) ?? parameterGroup.ValueFromPipeline; + AcceptsPipelineByPropertyName = parameterHelpInfos.Select(phi => phi.SupportsPipelineInput?.Contains("ByPropertyName")).FirstOrDefault(bv => bv == true) ?? parameterGroup.ValueFromPipelineByPropertyName; + AcceptsWildcardCharacters = parameterGroup.SupportsWildcards; + } + } + + internal static class MarkdownTypesExtensions + { + public static MarkdownExampleHelpInfo ToExampleHelpInfo(this PsHelpExampleInfo exampleInfo) => new MarkdownExampleHelpInfo(exampleInfo.Title, exampleInfo.Code, exampleInfo.Remarks); + + public static MarkdownExampleHelpInfo[] DefaultExampleHelpInfos = + { + new MarkdownExampleHelpInfo("Example 1: {{ Add title here }}", $@"PS C:\> {{{{ Add code here }}}}{Environment.NewLine}{Environment.NewLine}{{{{ Add output here }}}}", @"{{ Add description here }}"), + new MarkdownExampleHelpInfo("Example 2: {{ Add title here }}", $@"PS C:\> {{{{ Add code here }}}}{Environment.NewLine}{Environment.NewLine}{{{{ Add output here }}}}", @"{{ Add description here }}") + }; + + public static MarkdownParameterHelpInfo[] SupportsShouldProcessParameters = + { + new MarkdownParameterHelpInfo + { + Name = "Confirm", + Description ="Prompts you for confirmation before running the cmdlet.", + Type = typeof(SwitchParameter), + Position = "Named", + DefaultValue = "None", + HasAllParameterSets = true, + ParameterSetNames = new [] { "(All)" }, + Aliases = new [] { "cf" } + }, + new MarkdownParameterHelpInfo + { + Name = "WhatIf", + Description ="Shows what would happen if the cmdlet runs. The cmdlet is not run.", + Type = typeof(SwitchParameter), + Position = "Named", + DefaultValue = "None", + HasAllParameterSets = true, + ParameterSetNames = new [] { "(All)" }, + Aliases = new [] { "wi" } + } + }; + + public static MarkdownParameterHelpInfo[] SupportsPagingParameters = + { + new MarkdownParameterHelpInfo + { + Name = "First", + Description ="Gets only the first 'n' objects.", + Type = typeof(ulong), + Position = "Named", + DefaultValue = "None", + HasAllParameterSets = true, + ParameterSetNames = new [] { "(All)" }, + Aliases = new string[0] + }, + new MarkdownParameterHelpInfo + { + Name = "IncludeTotalCount", + Description ="Reports the number of objects in the data set (an integer) followed by the objects. If the cmdlet cannot determine the total count, it returns \"Unknown total count\".", + Type = typeof(SwitchParameter), + Position = "Named", + DefaultValue = "None", + HasAllParameterSets = true, + ParameterSetNames = new [] { "(All)" }, + Aliases = new string[0] + }, + new MarkdownParameterHelpInfo + { + Name = "Skip", + Description ="Ignores the first 'n' objects and then gets the remaining objects.", + Type = typeof(ulong), + Position = "Named", + DefaultValue = "None", + HasAllParameterSets = true, + ParameterSetNames = new [] { "(All)" }, + Aliases = new string[0] + } + }; + } +} diff --git a/src/VMWare/generated/runtime/BuildTime/Models/PsProxyOutputs.cs b/src/VMWare/generated/runtime/BuildTime/Models/PsProxyOutputs.cs new file mode 100644 index 000000000000..37592ad4b853 --- /dev/null +++ b/src/VMWare/generated/runtime/BuildTime/Models/PsProxyOutputs.cs @@ -0,0 +1,513 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Management.Automation; +using System.Text; +using System.Text.RegularExpressions; +using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.PsProxyOutputExtensions; +using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.PsProxyTypeExtensions; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell +{ + internal class OutputTypeOutput + { + public PSTypeName[] OutputTypes { get; } + + public OutputTypeOutput(IEnumerable outputTypes) + { + OutputTypes = outputTypes.ToArray(); + } + + public override string ToString() => OutputTypes != null && OutputTypes.Any() ? $"[OutputType({OutputTypes.Select(ot => $"[{ot}]").JoinIgnoreEmpty(ItemSeparator)})]{Environment.NewLine}" : String.Empty; + } + + internal class CmdletBindingOutput + { + public VariantGroup VariantGroup { get; } + + public CmdletBindingOutput(VariantGroup variantGroup) + { + VariantGroup = variantGroup; + } + + public override string ToString() + { + var dpsText = VariantGroup.DefaultParameterSetName.IsValidDefaultParameterSetName() ? $"DefaultParameterSetName='{VariantGroup.DefaultParameterSetName}'" : String.Empty; + var sspText = VariantGroup.SupportsShouldProcess ? $"SupportsShouldProcess{ItemSeparator}ConfirmImpact='Medium'" : String.Empty; + var pbText = $"PositionalBinding={false.ToPsBool()}"; + var propertyText = new[] { dpsText, pbText, sspText }.JoinIgnoreEmpty(ItemSeparator); + return $"[CmdletBinding({propertyText})]{Environment.NewLine}"; + } + } + + internal class ParameterOutput + { + public Parameter Parameter { get; } + public bool HasMultipleVariantsInVariantGroup { get; } + public bool HasAllVariantsInParameterGroup { get; } + + public ParameterOutput(Parameter parameter, bool hasMultipleVariantsInVariantGroup, bool hasAllVariantsInParameterGroup) + { + Parameter = parameter; + HasMultipleVariantsInVariantGroup = hasMultipleVariantsInVariantGroup; + HasAllVariantsInParameterGroup = hasAllVariantsInParameterGroup; + } + + public override string ToString() + { + var psnText = HasMultipleVariantsInVariantGroup && !HasAllVariantsInParameterGroup ? $"ParameterSetName='{Parameter.VariantName}'" : String.Empty; + var positionText = Parameter.Position != null ? $"Position={Parameter.Position}" : String.Empty; + var mandatoryText = Parameter.IsMandatory ? "Mandatory" : String.Empty; + var dontShowText = Parameter.DontShow ? "DontShow" : String.Empty; + var vfpText = Parameter.ValueFromPipeline ? "ValueFromPipeline" : String.Empty; + var vfpbpnText = Parameter.ValueFromPipelineByPropertyName ? "ValueFromPipelineByPropertyName" : String.Empty; + var propertyText = new[] { psnText, positionText, mandatoryText, dontShowText, vfpText, vfpbpnText }.JoinIgnoreEmpty(ItemSeparator); + return $"{Indent}[Parameter({propertyText})]{Environment.NewLine}"; + } + } + + internal class AliasOutput + { + public string[] Aliases { get; } + public bool IncludeIndent { get; } + + public AliasOutput(string[] aliases, bool includeIndent = false) + { + Aliases = aliases; + IncludeIndent = includeIndent; + } + + public override string ToString() => Aliases?.Any() ?? false ? $"{(IncludeIndent ? Indent : String.Empty)}[Alias({Aliases.Select(an => $"'{an}'").JoinIgnoreEmpty(ItemSeparator)})]{Environment.NewLine}" : String.Empty; + } + + internal class ValidateNotNullOutput + { + public bool HasValidateNotNull { get; } + + public ValidateNotNullOutput(bool hasValidateNotNull) + { + HasValidateNotNull = hasValidateNotNull; + } + + public override string ToString() => HasValidateNotNull ? $"{Indent}[ValidateNotNull()]{Environment.NewLine}" : String.Empty; + } + + internal class ArgumentCompleterOutput + { + public CompleterInfo CompleterInfo { get; } + + public ArgumentCompleterOutput(CompleterInfo completerInfo) + { + CompleterInfo = completerInfo; + } + + public override string ToString() => CompleterInfo != null + ? $"{Indent}[ArgumentCompleter({(CompleterInfo.IsTypeCompleter ? $"[{CompleterInfo.Type.Unwrap().ToPsType()}]" : $"{{{CompleterInfo.Script.ToPsSingleLine("; ")}}}")})]{Environment.NewLine}" + : String.Empty; + } + + internal class DefaultInfoOutput + { + public bool HasDefaultInfo { get; } + public DefaultInfo DefaultInfo { get; } + + public DefaultInfoOutput(ParameterGroup parameterGroup) + { + HasDefaultInfo = parameterGroup.HasDefaultInfo; + DefaultInfo = parameterGroup.DefaultInfo; + } + + public override string ToString() + { + var nameText = !String.IsNullOrEmpty(DefaultInfo?.Name) ? $"Name='{DefaultInfo?.Name}'" : String.Empty; + var descriptionText = !String.IsNullOrEmpty(DefaultInfo?.Description) ? $"Description='{DefaultInfo?.Description.ToPsStringLiteral()}'" : String.Empty; + var scriptText = !String.IsNullOrEmpty(DefaultInfo?.Script) ? $"Script='{DefaultInfo?.Script.ToPsSingleLine("; ")}'" : String.Empty; + var propertyText = new[] { nameText, descriptionText, scriptText }.JoinIgnoreEmpty(ItemSeparator); + return HasDefaultInfo ? $"{Indent}[{typeof(DefaultInfoAttribute).ToPsAttributeType()}({propertyText})]{Environment.NewLine}" : String.Empty; + } + } + + internal class ParameterTypeOutput + { + public Type ParameterType { get; } + + public ParameterTypeOutput(Type parameterType) + { + ParameterType = parameterType; + } + + public override string ToString() => $"{Indent}[{ParameterType.ToPsType()}]{Environment.NewLine}"; + } + + internal class ParameterNameOutput + { + public string ParameterName { get; } + public bool IsLast { get; } + + public ParameterNameOutput(string parameterName, bool isLast) + { + ParameterName = parameterName; + IsLast = isLast; + } + + public override string ToString() => $"{Indent}${{{ParameterName}}}{(IsLast ? String.Empty : $",{Environment.NewLine}")}{Environment.NewLine}"; + } + + internal class BeginOutput + { + public VariantGroup VariantGroup { get; } + + public BeginOutput(VariantGroup variantGroup) + { + VariantGroup = variantGroup; + } + + public override string ToString() => $@"begin {{ +{Indent}try {{ +{Indent}{Indent}$outBuffer = $null +{Indent}{Indent}if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) {{ +{Indent}{Indent}{Indent}$PSBoundParameters['OutBuffer'] = 1 +{Indent}{Indent}}} +{Indent}{Indent}$parameterSet = $PSCmdlet.ParameterSetName +{GetParameterSetToCmdletMapping()}{GetDefaultValuesStatements()} +{Indent}{Indent}$wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) +{Indent}{Indent}$scriptCmd = {{& $wrappedCmd @PSBoundParameters}} +{Indent}{Indent}$steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) +{Indent}{Indent}$steppablePipeline.Begin($PSCmdlet) +{Indent}}} catch {{ +{Indent}{Indent}throw +{Indent}}} +}} + +"; + + private string GetParameterSetToCmdletMapping() + { + var sb = new StringBuilder(); + sb.AppendLine($"{Indent}{Indent}$mapping = @{{"); + foreach (var variant in VariantGroup.Variants) + { + sb.AppendLine($@"{Indent}{Indent}{Indent}{variant.VariantName} = '{variant.PrivateModuleName}\{variant.PrivateCmdletName}';"); + } + sb.Append($"{Indent}{Indent}}}"); + return sb.ToString(); + } + + private string GetDefaultValuesStatements() + { + var defaultInfos = VariantGroup.ParameterGroups.Where(pg => pg.HasDefaultInfo).Select(pg => pg.DefaultInfo).ToArray(); + var sb = new StringBuilder(); + + foreach (var defaultInfo in defaultInfos) + { + var variantListString = defaultInfo.ParameterGroup.VariantNames.ToPsList(); + var parameterName = defaultInfo.ParameterGroup.ParameterName; + sb.AppendLine(); + sb.AppendLine($"{Indent}{Indent}if (({variantListString}) -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('{parameterName}')) {{"); + sb.AppendLine($"{Indent}{Indent}{Indent}$PSBoundParameters['{parameterName}'] = {defaultInfo.Script}"); + sb.Append($"{Indent}{Indent}}}"); + } + return sb.ToString(); + } + } + + internal class ProcessOutput + { + public override string ToString() => $@"process {{ +{Indent}try {{ +{Indent}{Indent}$steppablePipeline.Process($_) +{Indent}}} catch {{ +{Indent}{Indent}throw +{Indent}}} +}} + +"; + } + + internal class EndOutput + { + public override string ToString() => $@"end {{ +{Indent}try {{ +{Indent}{Indent}$steppablePipeline.End() +{Indent}}} catch {{ +{Indent}{Indent}throw +{Indent}}} +}} +"; + } + + internal class HelpCommentOutput + { + public VariantGroup VariantGroup { get; } + public CommentInfo CommentInfo { get; } + + public HelpCommentOutput(VariantGroup variantGroup) + { + VariantGroup = variantGroup; + CommentInfo = variantGroup.CommentInfo; + } + + public override string ToString() + { + var inputs = String.Join(Environment.NewLine, CommentInfo.Inputs.Select(i => $".Inputs{Environment.NewLine}{i}")); + var inputsText = !String.IsNullOrEmpty(inputs) ? $"{Environment.NewLine}{inputs}" : String.Empty; + var outputs = String.Join(Environment.NewLine, CommentInfo.Outputs.Select(o => $".Outputs{Environment.NewLine}{o}")); + var outputsText = !String.IsNullOrEmpty(outputs) ? $"{Environment.NewLine}{outputs}" : String.Empty; + var notes = String.Join($"{Environment.NewLine}{Environment.NewLine}", VariantGroup.ComplexInterfaceInfos.Select(cii => cii.ToNoteOutput())); + var notesText = !String.IsNullOrEmpty(notes) ? $"{Environment.NewLine}.Notes{Environment.NewLine}{ComplexParameterHeader}{notes}" : String.Empty; + var relatedLinks = String.Join(Environment.NewLine, CommentInfo.RelatedLinks.Select(l => $".Link{Environment.NewLine}{l}")); + var relatedLinksText = !String.IsNullOrEmpty(relatedLinks) ? $"{Environment.NewLine}{relatedLinks}" : String.Empty; + var examples = ""; + foreach (var example in VariantGroup.HelpInfo.Examples) + { + examples = examples + ".Example" + "\r\n" + example.Code + "\r\n"; + } + return $@"<# +.Synopsis +{CommentInfo.Synopsis.ToDescriptionFormat(false)} +.Description +{CommentInfo.Description.ToDescriptionFormat(false)} +{examples}{inputsText}{outputsText}{notesText} +.Link +{CommentInfo.OnlineVersion}{relatedLinksText} +#> +"; + } + } + + internal class ParameterDescriptionOutput + { + public string Description { get; } + + public ParameterDescriptionOutput(string description) + { + Description = description; + } + + public override string ToString() => !String.IsNullOrEmpty(Description) + ? Description.ToDescriptionFormat(false).NormalizeNewLines() + .Split(new [] { Environment.NewLine }, StringSplitOptions.None) + .Aggregate(String.Empty, (c, n) => c + $"{Indent}# {n}{Environment.NewLine}") + : String.Empty; + } + + internal class ProfileOutput + { + public string ProfileName { get; } + + public ProfileOutput(string profileName) + { + ProfileName = profileName; + } + + public override string ToString() => ProfileName != NoProfiles ? $"[{typeof(ProfileAttribute).ToPsAttributeType()}('{ProfileName}')]{Environment.NewLine}" : String.Empty; + } + + internal class DescriptionOutput + { + public string Description { get; } + + public DescriptionOutput(string description) + { + Description = description; + } + + public override string ToString() => !String.IsNullOrEmpty(Description) ? $"[{typeof(DescriptionAttribute).ToPsAttributeType()}('{Description.ToPsStringLiteral()}')]{Environment.NewLine}" : String.Empty; + } + + internal class ParameterCategoryOutput + { + public ParameterCategory Category { get; } + + public ParameterCategoryOutput(ParameterCategory category) + { + Category = category; + } + + public override string ToString() => $"{Indent}[{typeof(CategoryAttribute).ToPsAttributeType()}('{Category}')]{Environment.NewLine}"; + } + + internal class InfoOutput + { + public InfoAttribute Info { get; } + public Type ParameterType { get; } + + public InfoOutput(InfoAttribute info, Type parameterType) + { + Info = info; + ParameterType = parameterType; + } + + public override string ToString() + { + // Rendering of InfoAttribute members that are not used currently + /*var serializedNameText = Info.SerializedName != null ? $"SerializedName='{Info.SerializedName}'" : String.Empty; + var readOnlyText = Info.ReadOnly ? "ReadOnly" : String.Empty; + var descriptionText = !String.IsNullOrEmpty(Info.Description) ? $"Description='{Info.Description.ToPsStringLiteral()}'" : String.Empty;*/ + + var requiredText = Info.Required ? "Required" : String.Empty; + var unwrappedType = ParameterType.Unwrap(); + var hasValidPossibleTypes = Info.PossibleTypes.Any(pt => pt != unwrappedType); + var possibleTypesText = hasValidPossibleTypes + ? $"PossibleTypes=({Info.PossibleTypes.Select(pt => $"[{pt.ToPsType()}]").JoinIgnoreEmpty(ItemSeparator)})" + : String.Empty; + var propertyText = new[] { /*serializedNameText, */requiredText,/* readOnlyText,*/ possibleTypesText/*, descriptionText*/ }.JoinIgnoreEmpty(ItemSeparator); + return hasValidPossibleTypes ? $"{Indent}[{typeof(InfoAttribute).ToPsAttributeType()}({propertyText})]{Environment.NewLine}" : String.Empty; + } + } + + internal class PropertySyntaxOutput + { + public string ParameterName { get; } + public Type ParameterType { get; } + public bool IsMandatory { get; } + public int? Position { get; } + + public bool IncludeSpace { get; } + public bool IncludeDash { get; } + + public PropertySyntaxOutput(Parameter parameter) + { + ParameterName = parameter.ParameterName; + ParameterType = parameter.ParameterType; + IsMandatory = parameter.IsMandatory; + Position = parameter.Position; + IncludeSpace = true; + IncludeDash = true; + } + + public PropertySyntaxOutput(ComplexInterfaceInfo complexInterfaceInfo) + { + ParameterName = complexInterfaceInfo.Name; + ParameterType = complexInterfaceInfo.Type; + IsMandatory = complexInterfaceInfo.Required; + Position = null; + IncludeSpace = false; + IncludeDash = false; + } + + public override string ToString() + { + var leftOptional = !IsMandatory ? "[" : String.Empty; + var leftPositional = Position != null ? "[" : String.Empty; + var rightPositional = Position != null ? "]" : String.Empty; + var type = ParameterType != typeof(SwitchParameter) ? $" <{ParameterType.ToSyntaxTypeName()}>" : String.Empty; + var rightOptional = !IsMandatory ? "]" : String.Empty; + var space = IncludeSpace ? " " : String.Empty; + var dash = IncludeDash ? "-" : String.Empty; + return $"{space}{leftOptional}{leftPositional}{dash}{ParameterName}{rightPositional}{type}{rightOptional}"; + } + } + + internal static class PsProxyOutputExtensions + { + public const string NoParameters = "__NoParameters"; + + public const string AllParameterSets = "__AllParameterSets"; + + public const string HalfIndent = " "; + + public const string Indent = HalfIndent + HalfIndent; + + public const string ItemSeparator = ", "; + + public static readonly string ComplexParameterHeader = $"COMPLEX PARAMETER PROPERTIES{Environment.NewLine}{Environment.NewLine}To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables.{Environment.NewLine}{Environment.NewLine}"; + + public static string ToPsBool(this bool value) => $"${value.ToString().ToLowerInvariant()}"; + + public static string ToPsType(this Type type) + { + var regex = new Regex(@"^(.*)`{1}\d+(.*)$"); + var typeText = type.ToString(); + var match = regex.Match(typeText); + return match.Success ? $"{match.Groups[1]}{match.Groups[2]}" : typeText; + } + + public static string ToPsAttributeType(this Type type) => type.ToPsType().RemoveEnd("Attribute"); + + // https://stackoverflow.com/a/5284606/294804 + private static string RemoveEnd(this string text, string suffix) => text.EndsWith(suffix) ? text.Substring(0, text.Length - suffix.Length) : text; + + public static string ToPsSingleLine(this string value, string replacer = " ") => value.ReplaceNewLines(replacer, new []{"
", "\r\n", "\n"}); + + public static string ToPsStringLiteral(this string value) => value?.Replace("'", "''").Replace("‘", "''").Replace("’", "''").ToPsSingleLine().Trim() ?? String.Empty; + + public static string JoinIgnoreEmpty(this IEnumerable values, string separator) => String.Join(separator, values?.Where(v => !String.IsNullOrEmpty(v))); + + // https://stackoverflow.com/a/41961738/294804 + public static string ToSyntaxTypeName(this Type type) + { + if (type.IsGenericType && type.GetGenericTypeDefinition() == typeof(Nullable<>)) + { + return $"{type.GetGenericArguments().First().ToSyntaxTypeName()}?"; + } + + if (type.IsGenericType) + { + var genericTypes = String.Join(ItemSeparator, type.GetGenericArguments().Select(ToSyntaxTypeName)); + return $"{type.Name.Split('`').First()}<{genericTypes}>"; + } + + return type.Name; + } + + public static OutputTypeOutput ToOutputTypeOutput(this IEnumerable outputTypes) => new OutputTypeOutput(outputTypes); + + public static CmdletBindingOutput ToCmdletBindingOutput(this VariantGroup variantGroup) => new CmdletBindingOutput(variantGroup); + + public static ParameterOutput ToParameterOutput(this Parameter parameter, bool hasMultipleVariantsInVariantGroup, bool hasAllVariantsInParameterGroup) => new ParameterOutput(parameter, hasMultipleVariantsInVariantGroup, hasAllVariantsInParameterGroup); + + public static AliasOutput ToAliasOutput(this string[] aliases, bool includeIndent = false) => new AliasOutput(aliases, includeIndent); + + public static ValidateNotNullOutput ToValidateNotNullOutput(this bool hasValidateNotNull) => new ValidateNotNullOutput(hasValidateNotNull); + + public static ArgumentCompleterOutput ToArgumentCompleterOutput(this CompleterInfo completerInfo) => new ArgumentCompleterOutput(completerInfo); + + public static DefaultInfoOutput ToDefaultInfoOutput(this ParameterGroup parameterGroup) => new DefaultInfoOutput(parameterGroup); + + public static ParameterTypeOutput ToParameterTypeOutput(this Type parameterType) => new ParameterTypeOutput(parameterType); + + public static ParameterNameOutput ToParameterNameOutput(this string parameterName, bool isLast) => new ParameterNameOutput(parameterName, isLast); + + public static BeginOutput ToBeginOutput(this VariantGroup variantGroup) => new BeginOutput(variantGroup); + + public static ProcessOutput ToProcessOutput(this VariantGroup variantGroup) => new ProcessOutput(); + + public static EndOutput ToEndOutput(this VariantGroup variantGroup) => new EndOutput(); + + public static HelpCommentOutput ToHelpCommentOutput(this VariantGroup variantGroup) => new HelpCommentOutput(variantGroup); + + public static ParameterDescriptionOutput ToParameterDescriptionOutput(this string description) => new ParameterDescriptionOutput(description); + + public static ProfileOutput ToProfileOutput(this string profileName) => new ProfileOutput(profileName); + + public static DescriptionOutput ToDescriptionOutput(this string description) => new DescriptionOutput(description); + + public static ParameterCategoryOutput ToParameterCategoryOutput(this ParameterCategory category) => new ParameterCategoryOutput(category); + + public static PropertySyntaxOutput ToPropertySyntaxOutput(this Parameter parameter) => new PropertySyntaxOutput(parameter); + + public static PropertySyntaxOutput ToPropertySyntaxOutput(this ComplexInterfaceInfo complexInterfaceInfo) => new PropertySyntaxOutput(complexInterfaceInfo); + + public static InfoOutput ToInfoOutput(this InfoAttribute info, Type parameterType) => new InfoOutput(info, parameterType); + + public static string ToNoteOutput(this ComplexInterfaceInfo complexInterfaceInfo, string currentIndent = "", bool includeDashes = false, bool includeBackticks = false, bool isFirst = true) + { + string RenderProperty(ComplexInterfaceInfo info, string indent, bool dash, bool backtick) => + $"{indent}{(dash ? "- " : String.Empty)}{(backtick ? "`" : String.Empty)}{info.ToPropertySyntaxOutput()}{(backtick ? "`" : String.Empty)}: {info.Description}"; + + var nested = complexInterfaceInfo.NestedInfos.Select(ni => + { + var nestedIndent = $"{currentIndent}{HalfIndent}"; + return ni.IsComplexInterface + ? ni.ToNoteOutput(nestedIndent, includeDashes, includeBackticks, false) + : RenderProperty(ni, nestedIndent, includeDashes, includeBackticks); + }).Prepend(RenderProperty(complexInterfaceInfo, currentIndent, !isFirst && includeDashes, !isFirst && includeBackticks)); + return String.Join(Environment.NewLine, nested); + } + } +} diff --git a/src/VMWare/generated/runtime/BuildTime/Models/PsProxyTypes.cs b/src/VMWare/generated/runtime/BuildTime/Models/PsProxyTypes.cs new file mode 100644 index 000000000000..059c9b59f834 --- /dev/null +++ b/src/VMWare/generated/runtime/BuildTime/Models/PsProxyTypes.cs @@ -0,0 +1,499 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Management.Automation; +using System.Reflection; +using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.PsProxyOutputExtensions; +using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell.PsProxyTypeExtensions; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell +{ + internal class ProfileGroup + { + public string ProfileName { get; } + public Variant[] Variants { get; } + public string ProfileFolder { get; } + + public ProfileGroup(Variant[] variants, string profileName = NoProfiles) + { + ProfileName = profileName; + Variants = variants; + ProfileFolder = ProfileName != NoProfiles ? ProfileName : String.Empty; + } + } + + internal class VariantGroup + { + public string ModuleName { get; } + public string CmdletName { get; } + public string CmdletVerb { get; } + public string CmdletNoun { get; } + public string ProfileName { get; } + public Variant[] Variants { get; } + public ParameterGroup[] ParameterGroups { get; } + public ComplexInterfaceInfo[] ComplexInterfaceInfos { get; } + + public string[] Aliases { get; } + public PSTypeName[] OutputTypes { get; } + public bool SupportsShouldProcess { get; } + public bool SupportsPaging { get; } + public string DefaultParameterSetName { get; } + public bool HasMultipleVariants { get; } + public PsHelpInfo HelpInfo { get; } + public bool IsGenerated { get; } + public bool IsInternal { get; } + + public string OutputFolder { get; } + public string FileName { get; } + public string FilePath { get; } + + public CommentInfo CommentInfo { get; } + + public VariantGroup(string moduleName, string cmdletName, Variant[] variants, string outputFolder, string profileName = NoProfiles, bool isTest = false, bool isInternal = false) + { + ModuleName = moduleName; + CmdletName = cmdletName; + var cmdletNameParts = CmdletName.Split('-'); + CmdletVerb = cmdletNameParts.First(); + CmdletNoun = cmdletNameParts.Last(); + ProfileName = profileName; + Variants = variants; + ParameterGroups = Variants.ToParameterGroups().OrderBy(pg => pg.OrderCategory).ThenByDescending(pg => pg.IsMandatory).ToArray(); + var aliasDuplicates = ParameterGroups.SelectMany(pg => pg.Aliases) + //https://stackoverflow.com/a/18547390/294804 + .GroupBy(a => a).Where(g => g.Count() > 1).Select(g => g.Key).ToArray(); + if (aliasDuplicates.Any()) + { + throw new ParsingMetadataException($"The alias(es) [{String.Join(", ", aliasDuplicates)}] are defined on multiple parameters for cmdlet '{CmdletName}', which is not supported."); + } + ComplexInterfaceInfos = ParameterGroups.Where(pg => !pg.DontShow && pg.IsComplexInterface).OrderBy(pg => pg.ParameterName).Select(pg => pg.ComplexInterfaceInfo).ToArray(); + + Aliases = Variants.SelectMany(v => v.Attributes).ToAliasNames().ToArray(); + OutputTypes = Variants.SelectMany(v => v.Info.OutputType).Where(ot => ot.Type != null).GroupBy(ot => ot.Type).Select(otg => otg.First()).ToArray(); + SupportsShouldProcess = Variants.Any(v => v.SupportsShouldProcess); + SupportsPaging = Variants.Any(v => v.SupportsPaging); + DefaultParameterSetName = DetermineDefaultParameterSetName(); + HasMultipleVariants = Variants.Length > 1; + HelpInfo = Variants.Select(v => v.HelpInfo).FirstOrDefault() ?? new PsHelpInfo(); + IsGenerated = Variants.All(v => v.Attributes.OfType().Any()); + IsInternal = isInternal; + + OutputFolder = outputFolder; + FileName = $"{CmdletName}{(isTest ? ".Tests" : String.Empty)}.ps1"; + FilePath = Path.Combine(OutputFolder, FileName); + + CommentInfo = new CommentInfo(this); + } + + private string DetermineDefaultParameterSetName() + { + var defaultParameterSet = Variants + .Select(v => v.Metadata.DefaultParameterSetName) + .LastOrDefault(dpsn => dpsn.IsValidDefaultParameterSetName()); + + if (String.IsNullOrEmpty(defaultParameterSet)) + { + var variantParamCountGroups = Variants + .Select(v => ( + variant: v.VariantName, + paramCount: v.CmdletOnlyParameters.Count(p => p.IsMandatory), + isSimple: v.CmdletOnlyParameters.Where(p => p.IsMandatory).All(p => p.ParameterType.IsPsSimple()))) + .GroupBy(vpc => vpc.isSimple) + .ToArray(); + var variantParameterCounts = (variantParamCountGroups.Any(g => g.Key) ? variantParamCountGroups.Where(g => g.Key) : variantParamCountGroups).SelectMany(g => g).ToArray(); + var smallestParameterCount = variantParameterCounts.Min(vpc => vpc.paramCount); + defaultParameterSet = variantParameterCounts.First(vpc => vpc.paramCount == smallestParameterCount).variant; + } + + return defaultParameterSet; + } + } + + internal class Variant + { + public string CmdletName { get; } + public string VariantName { get; } + public CommandInfo Info { get; } + public CommandMetadata Metadata { get; } + public PsHelpInfo HelpInfo { get; } + public bool HasParameterSets { get; } + public bool IsFunction { get; } + public string PrivateModuleName { get; } + public string PrivateCmdletName { get; } + public bool SupportsShouldProcess { get; } + public bool SupportsPaging { get; } + + public Attribute[] Attributes { get; } + public Parameter[] Parameters { get; } + public Parameter[] CmdletOnlyParameters { get; } + public bool IsInternal { get; } + public bool IsDoNotExport { get; } + public string[] Profiles { get; } + + public Variant(string cmdletName, string variantName, CommandInfo info, CommandMetadata metadata, bool hasParameterSets = false, PsHelpInfo helpInfo = null) + { + CmdletName = cmdletName; + VariantName = variantName; + Info = info; + HelpInfo = helpInfo ?? new PsHelpInfo(); + Metadata = metadata; + HasParameterSets = hasParameterSets; + IsFunction = Info.CommandType == CommandTypes.Function; + PrivateModuleName = Info.Source; + PrivateCmdletName = Metadata.Name; + SupportsShouldProcess = Metadata.SupportsShouldProcess; + SupportsPaging = Metadata.SupportsPaging; + + Attributes = this.ToAttributes(); + Parameters = this.ToParameters().OrderBy(p => p.OrderCategory).ThenByDescending(p => p.IsMandatory).ToArray(); + IsInternal = Attributes.OfType().Any(); + IsDoNotExport = Attributes.OfType().Any(); + CmdletOnlyParameters = Parameters.Where(p => !p.Categories.Any(c => c == ParameterCategory.Azure || c == ParameterCategory.Runtime)).ToArray(); + Profiles = Attributes.OfType().SelectMany(pa => pa.Profiles).ToArray(); + } + } + + internal class ParameterGroup + { + public string ParameterName { get; } + public Parameter[] Parameters { get; } + + public string[] VariantNames { get; } + public string[] AllVariantNames { get; } + public bool HasAllVariants { get; } + public Type ParameterType { get; } + public string Description { get; } + + public string[] Aliases { get; } + public bool HasValidateNotNull { get; } + public CompleterInfo CompleterInfo { get; } + public DefaultInfo DefaultInfo { get; } + public bool HasDefaultInfo { get; } + public ParameterCategory OrderCategory { get; } + public bool DontShow { get; } + public bool IsMandatory { get; } + public bool SupportsWildcards { get; } + public bool IsComplexInterface { get; } + public ComplexInterfaceInfo ComplexInterfaceInfo { get; } + public InfoAttribute InfoAttribute { get; } + + public int? FirstPosition { get; } + public bool ValueFromPipeline { get; } + public bool ValueFromPipelineByPropertyName { get; } + public bool IsInputType { get; } + + public ParameterGroup(string parameterName, Parameter[] parameters, string[] allVariantNames) + { + ParameterName = parameterName; + Parameters = parameters; + + VariantNames = Parameters.Select(p => p.VariantName).ToArray(); + AllVariantNames = allVariantNames; + HasAllVariants = VariantNames.Any(vn => vn == AllParameterSets) || !AllVariantNames.Except(VariantNames).Any(); + var types = Parameters.Select(p => p.ParameterType).Distinct().ToArray(); + if (types.Length > 1) + { + throw new ParsingMetadataException($"The parameter '{ParameterName}' has multiple parameter types [{String.Join(", ", types.Select(t => t.Name))}] defined, which is not supported."); + } + ParameterType = types.First(); + Description = Parameters.Select(p => p.Description).FirstOrDefault(d => !String.IsNullOrEmpty(d)).EmptyIfNull(); + + Aliases = Parameters.SelectMany(p => p.Attributes).ToAliasNames().ToArray(); + HasValidateNotNull = Parameters.SelectMany(p => p.Attributes.OfType()).Any(); + CompleterInfo = Parameters.Select(p => p.CompleterInfoAttribute).FirstOrDefault()?.ToCompleterInfo() + ?? Parameters.Select(p => p.ArgumentCompleterAttribute).FirstOrDefault()?.ToCompleterInfo(); + DefaultInfo = Parameters.Select(p => p.DefaultInfoAttribute).FirstOrDefault()?.ToDefaultInfo(this) + ?? Parameters.Select(p => p.DefaultValueAttribute).FirstOrDefault(dv => dv != null)?.ToDefaultInfo(this); + HasDefaultInfo = DefaultInfo != null && !String.IsNullOrEmpty(DefaultInfo.Script); + // When DefaultInfo is present, force all parameters from this group to be optional. + if (HasDefaultInfo) + { + foreach (var parameter in Parameters) + { + parameter.IsMandatory = false; + } + } + OrderCategory = Parameters.Select(p => p.OrderCategory).Distinct().DefaultIfEmpty(ParameterCategory.Body).Min(); + DontShow = Parameters.All(p => p.DontShow); + IsMandatory = HasAllVariants && Parameters.Any(p => p.IsMandatory); + SupportsWildcards = Parameters.Any(p => p.SupportsWildcards); + IsComplexInterface = Parameters.Any(p => p.IsComplexInterface); + ComplexInterfaceInfo = Parameters.Where(p => p.IsComplexInterface).Select(p => p.ComplexInterfaceInfo).FirstOrDefault(); + InfoAttribute = Parameters.Select(p => p.InfoAttribute).First(); + + FirstPosition = Parameters.Select(p => p.Position).FirstOrDefault(p => p != null); + ValueFromPipeline = Parameters.Any(p => p.ValueFromPipeline); + ValueFromPipelineByPropertyName = Parameters.Any(p => p.ValueFromPipelineByPropertyName); + IsInputType = ValueFromPipeline || ValueFromPipelineByPropertyName; + } + } + + internal class Parameter + { + public string VariantName { get; } + public string ParameterName { get; } + public ParameterMetadata Metadata { get; } + public PsParameterHelpInfo HelpInfo { get; } + public Type ParameterType { get; } + + public Attribute[] Attributes { get; } + public ParameterCategory[] Categories { get; } + public ParameterCategory OrderCategory { get; } + public PSDefaultValueAttribute DefaultValueAttribute { get; } + public DefaultInfoAttribute DefaultInfoAttribute { get; } + public ParameterAttribute ParameterAttribute { get; } + public bool SupportsWildcards { get; } + public CompleterInfoAttribute CompleterInfoAttribute { get; } + public ArgumentCompleterAttribute ArgumentCompleterAttribute { get; } + + public bool ValueFromPipeline { get; } + public bool ValueFromPipelineByPropertyName { get; } + public int? Position { get; } + public bool DontShow { get; } + public bool IsMandatory { get; set; } + + public InfoAttribute InfoAttribute { get; } + public ComplexInterfaceInfo ComplexInterfaceInfo { get; } + public bool IsComplexInterface { get; } + public string Description { get; } + + public Parameter(string variantName, string parameterName, ParameterMetadata metadata, PsParameterHelpInfo helpInfo = null) + { + VariantName = variantName; + ParameterName = parameterName; + Metadata = metadata; + HelpInfo = helpInfo ?? new PsParameterHelpInfo(); + + Attributes = Metadata.Attributes.ToArray(); + ParameterType = Attributes.OfType().FirstOrDefault()?.Type ?? Metadata.ParameterType; + Categories = Attributes.OfType().SelectMany(ca => ca.Categories).Distinct().ToArray(); + OrderCategory = Categories.DefaultIfEmpty(ParameterCategory.Body).Min(); + DefaultValueAttribute = Attributes.OfType().FirstOrDefault(); + DefaultInfoAttribute = Attributes.OfType().FirstOrDefault(); + ParameterAttribute = Attributes.OfType().FirstOrDefault(pa => pa.ParameterSetName == VariantName || pa.ParameterSetName == AllParameterSets); + if (ParameterAttribute == null) + { + throw new ParsingMetadataException($"The variant '{VariantName}' has multiple parameter sets defined, which is not supported."); + } + SupportsWildcards = Attributes.OfType().Any(); + CompleterInfoAttribute = Attributes.OfType().FirstOrDefault(); + ArgumentCompleterAttribute = Attributes.OfType().FirstOrDefault(); + + ValueFromPipeline = ParameterAttribute.ValueFromPipeline; + ValueFromPipelineByPropertyName = ParameterAttribute.ValueFromPipelineByPropertyName; + Position = ParameterAttribute.Position == Int32.MinValue ? (int?)null : ParameterAttribute.Position; + DontShow = ParameterAttribute.DontShow; + IsMandatory = ParameterAttribute.Mandatory; + + var complexParameterName = ParameterName.ToUpperInvariant(); + var complexMessage = $"{Environment.NewLine}To construct, see NOTES section for {complexParameterName} properties and create a hash table."; + var description = ParameterAttribute.HelpMessage.NullIfEmpty() ?? HelpInfo.Description.NullIfEmpty() ?? InfoAttribute?.Description.NullIfEmpty() ?? String.Empty; + // Remove the complex type message as it will be reinserted if this is a complex type + description = description.NormalizeNewLines().Replace(complexMessage, String.Empty).Replace(complexMessage.ToPsSingleLine(), String.Empty); + // Make an InfoAttribute for processing only if one isn't provided + InfoAttribute = Attributes.OfType().FirstOrDefault() ?? new InfoAttribute { PossibleTypes = new[] { ParameterType.Unwrap() }, Required = IsMandatory }; + // Set the description if the InfoAttribute does not have one since they are exported without a description + InfoAttribute.Description = String.IsNullOrEmpty(InfoAttribute.Description) ? description : InfoAttribute.Description; + ComplexInterfaceInfo = InfoAttribute.ToComplexInterfaceInfo(complexParameterName, ParameterType, true); + IsComplexInterface = ComplexInterfaceInfo.IsComplexInterface; + Description = $"{description}{(IsComplexInterface ? complexMessage : String.Empty)}"; + } + } + + internal class ComplexInterfaceInfo + { + public InfoAttribute InfoAttribute { get; } + + public string Name { get; } + public Type Type { get; } + public bool Required { get; } + public bool ReadOnly { get; } + public string Description { get; } + + public ComplexInterfaceInfo[] NestedInfos { get; } + public bool IsComplexInterface { get; } + + public ComplexInterfaceInfo(string name, Type type, InfoAttribute infoAttribute, bool? required, List seenTypes) + { + Name = name; + Type = type; + InfoAttribute = infoAttribute; + + Required = required ?? InfoAttribute.Required; + ReadOnly = InfoAttribute.ReadOnly; + Description = InfoAttribute.Description.ToPsSingleLine(); + + var unwrappedType = Type.Unwrap(); + var hasBeenSeen = seenTypes?.Contains(unwrappedType) ?? false; + (seenTypes ?? (seenTypes = new List())).Add(unwrappedType); + NestedInfos = hasBeenSeen ? new ComplexInterfaceInfo[]{} : + unwrappedType.GetInterfaces() + .Concat(InfoAttribute.PossibleTypes) + .SelectMany(pt => pt.GetProperties() + .SelectMany(pi => pi.GetCustomAttributes(true).OfType() + .Select(ia => ia.ToComplexInterfaceInfo(pi.Name, pi.PropertyType, seenTypes: seenTypes)))) + .Where(cii => !cii.ReadOnly).OrderByDescending(cii => cii.Required).ToArray(); + // https://stackoverflow.com/a/503359/294804 + var associativeArrayInnerType = Type.GetInterfaces() + .FirstOrDefault(i => i.IsGenericType && i.GetGenericTypeDefinition() == typeof(IAssociativeArray<>)) + ?.GetTypeInfo().GetGenericArguments().First(); + if (!hasBeenSeen && associativeArrayInnerType != null) + { + var anyInfo = new InfoAttribute { Description = "This indicates any property can be added to this object." }; + NestedInfos = NestedInfos.Prepend(anyInfo.ToComplexInterfaceInfo("(Any)", associativeArrayInnerType)).ToArray(); + } + IsComplexInterface = NestedInfos.Any(); + } + } + + internal class CommentInfo + { + public string Description { get; } + public string Synopsis { get; } + + public string[] Examples { get; } + public string[] Inputs { get; } + public string[] Outputs { get; } + + public string OnlineVersion { get; } + public string[] RelatedLinks { get; } + + private const string HelpLinkPrefix = @"https://docs.microsoft.com/en-us/powershell/module/"; + + public CommentInfo(VariantGroup variantGroup) + { + var helpInfo = variantGroup.HelpInfo; + Description = variantGroup.Variants.SelectMany(v => v.Attributes).OfType().FirstOrDefault()?.Description.NullIfEmpty() + ?? helpInfo.Description.EmptyIfNull(); + // If there is no Synopsis, PowerShell may put in the Syntax string as the Synopsis. This seems unintended, so we remove the Synopsis in this situation. + var synopsis = helpInfo.Synopsis.EmptyIfNull().Trim().StartsWith(variantGroup.CmdletName) ? String.Empty : helpInfo.Synopsis; + Synopsis = synopsis.NullIfEmpty() ?? Description; + + Examples = helpInfo.Examples.Select(rl => rl.Code).ToArray(); + + Inputs = (variantGroup.ParameterGroups.Where(pg => pg.IsInputType).Select(pg => pg.ParameterType.FullName).ToArray().NullIfEmpty() ?? + helpInfo.InputTypes.Where(it => it.Name.NullIfWhiteSpace() != null).Select(it => it.Name).ToArray()) + .Where(i => i != "None").Distinct().OrderBy(i => i).ToArray(); + Outputs = (variantGroup.OutputTypes.Select(ot => ot.Type.FullName).ToArray().NullIfEmpty() ?? + helpInfo.OutputTypes.Where(it => it.Name.NullIfWhiteSpace() != null).Select(ot => ot.Name).ToArray()) + .Where(o => o != "None").Distinct().OrderBy(o => o).ToArray(); + + OnlineVersion = helpInfo.OnlineVersion?.Uri.NullIfEmpty() ?? $@"{HelpLinkPrefix}{variantGroup.ModuleName.ToLowerInvariant()}/{variantGroup.CmdletName.ToLowerInvariant()}"; + RelatedLinks = helpInfo.RelatedLinks.Select(rl => rl.Text).ToArray(); + } + } + + internal class CompleterInfo + { + public string Name { get; } + public string Description { get; } + public string Script { get; } + public Type Type { get; } + public bool IsTypeCompleter { get; } + + public CompleterInfo(CompleterInfoAttribute infoAttribute) + { + Name = infoAttribute.Name; + Description = infoAttribute.Description; + Script = infoAttribute.Script; + } + + public CompleterInfo(ArgumentCompleterAttribute completerAttribute) + { + Script = completerAttribute.ScriptBlock?.ToString(); + if (completerAttribute.Type != null) + { + Type = completerAttribute.Type; + IsTypeCompleter = true; + } + } + } + + internal class DefaultInfo + { + public string Name { get; } + public string Description { get; } + public string Script { get; } + public ParameterGroup ParameterGroup { get; } + + public DefaultInfo(DefaultInfoAttribute infoAttribute, ParameterGroup parameterGroup) + { + Name = infoAttribute.Name; + Description = infoAttribute.Description; + Script = infoAttribute.Script; + ParameterGroup = parameterGroup; + } + + public DefaultInfo(PSDefaultValueAttribute defaultValueAttribute, ParameterGroup parameterGroup) + { + Description = defaultValueAttribute.Help; + ParameterGroup = parameterGroup; + if (defaultValueAttribute.Value != null) + { + Script = defaultValueAttribute.Value.ToString(); + } + } + } + + internal static class PsProxyTypeExtensions + { + public const string NoProfiles = "__NoProfiles"; + + public static bool IsValidDefaultParameterSetName(this string parameterSetName) => + !String.IsNullOrEmpty(parameterSetName) && parameterSetName != AllParameterSets; + + public static Variant[] ToVariants(this CommandInfo info, PsHelpInfo helpInfo) + { + var metadata = new CommandMetadata(info); + var privateCmdletName = metadata.Name.Split('!').First(); + var parts = privateCmdletName.Split('_'); + return parts.Length > 1 + ? new[] { new Variant(parts[0], parts[1], info, metadata, helpInfo: helpInfo) } + // Process multiple parameter sets, so we declare a variant per parameter set. + : info.ParameterSets.Select(ps => new Variant(privateCmdletName, ps.Name, info, metadata, true, helpInfo)).ToArray(); + } + + public static Variant[] ToVariants(this CmdletAndHelpInfo info) => info.CommandInfo.ToVariants(info.HelpInfo); + + public static Variant[] ToVariants(this CommandInfo info, PSObject helpInfo = null) => info.ToVariants(helpInfo?.ToPsHelpInfo()); + + public static Parameter[] ToParameters(this Variant variant) + { + var parameters = variant.Metadata.Parameters.AsEnumerable(); + var parameterHelp = variant.HelpInfo.Parameters.AsEnumerable(); + if (variant.HasParameterSets) + { + parameters = parameters.Where(p => p.Value.ParameterSets.Keys.Any(k => k == variant.VariantName || k == AllParameterSets)); + parameterHelp = parameterHelp.Where(ph => !ph.ParameterSetNames.Any() || ph.ParameterSetNames.Any(psn => psn == variant.VariantName || psn == AllParameterSets)); + } + return parameters.Select(p => new Parameter(variant.VariantName, p.Key, p.Value, parameterHelp.FirstOrDefault(ph => ph.Name == p.Key))).ToArray(); + } + + public static Attribute[] ToAttributes(this Variant variant) => variant.IsFunction + ? ((FunctionInfo)variant.Info).ScriptBlock.Attributes.ToArray() + : variant.Metadata.CommandType.GetCustomAttributes(false).Cast().ToArray(); + + public static IEnumerable ToParameterGroups(this Variant[] variants) + { + var allVariantNames = variants.Select(vg => vg.VariantName).ToArray(); + return variants + .SelectMany(v => v.Parameters) + .GroupBy(p => p.ParameterName, StringComparer.InvariantCultureIgnoreCase) + .Select(pg => new ParameterGroup(pg.Key, pg.Select(p => p).ToArray(), allVariantNames)); + } + + public static ComplexInterfaceInfo ToComplexInterfaceInfo(this InfoAttribute infoAttribute, string name, Type type, bool? required = null, List seenTypes = null) + => new ComplexInterfaceInfo(name, type, infoAttribute, required, seenTypes); + + public static CompleterInfo ToCompleterInfo(this CompleterInfoAttribute infoAttribute) => new CompleterInfo(infoAttribute); + public static CompleterInfo ToCompleterInfo(this ArgumentCompleterAttribute completerAttribute) => new CompleterInfo(completerAttribute); + + public static DefaultInfo ToDefaultInfo(this DefaultInfoAttribute infoAttribute, ParameterGroup parameterGroup) => new DefaultInfo(infoAttribute, parameterGroup); + public static DefaultInfo ToDefaultInfo(this PSDefaultValueAttribute defaultValueAttribute, ParameterGroup parameterGroup) => new DefaultInfo(defaultValueAttribute, parameterGroup); + } +} diff --git a/src/VMWare/generated/runtime/BuildTime/PsAttributes.cs b/src/VMWare/generated/runtime/BuildTime/PsAttributes.cs new file mode 100644 index 000000000000..0cec4184dad2 --- /dev/null +++ b/src/VMWare/generated/runtime/BuildTime/PsAttributes.cs @@ -0,0 +1,114 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare +{ + [AttributeUsage(AttributeTargets.Class)] + public class DescriptionAttribute : Attribute + { + public string Description { get; } + + public DescriptionAttribute(string description) + { + Description = description; + } + } + + [AttributeUsage(AttributeTargets.Class)] + public class DoNotExportAttribute : Attribute + { + } + + [AttributeUsage(AttributeTargets.Class)] + public class InternalExportAttribute : Attribute + { + } + + [AttributeUsage(AttributeTargets.Class)] + public class GeneratedAttribute : Attribute + { + } + + [AttributeUsage(AttributeTargets.Class | AttributeTargets.Property)] + public class DoNotFormatAttribute : Attribute + { + } + + [AttributeUsage(AttributeTargets.Class)] + public class ProfileAttribute : Attribute + { + public string[] Profiles { get; } + + public ProfileAttribute(params string[] profiles) + { + Profiles = profiles; + } + } + + [AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)] + public class CategoryAttribute : Attribute + { + public ParameterCategory[] Categories { get; } + + public CategoryAttribute(params ParameterCategory[] categories) + { + Categories = categories; + } + } + + [AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)] + public class ExportAsAttribute : Attribute + { + public Type Type { get; set; } + + public ExportAsAttribute(Type type) + { + Type = type; + } + } + + public enum ParameterCategory + { + // Note: Order is significant + Uri = 0, + Path, + Query, + Header, + Cookie, + Body, + Azure, + Runtime + } + + [AttributeUsage(AttributeTargets.Property)] + public class OriginAttribute : Attribute + { + public PropertyOrigin Origin { get; } + + public OriginAttribute(PropertyOrigin origin) + { + Origin = origin; + } + } + + public enum PropertyOrigin + { + // Note: Order is significant + Inherited = 0, + Owned, + Inlined + } + + [AttributeUsage(AttributeTargets.Property)] + public class FormatTableAttribute : Attribute + { + public int Index { get; set; } = -1; + public bool HasIndex => Index != -1; + public string Label { get; set; } + public int Width { get; set; } = -1; + public bool HasWidth => Width != -1; + } +} diff --git a/src/VMWare/generated/runtime/BuildTime/PsExtensions.cs b/src/VMWare/generated/runtime/BuildTime/PsExtensions.cs new file mode 100644 index 000000000000..411b226279d5 --- /dev/null +++ b/src/VMWare/generated/runtime/BuildTime/PsExtensions.cs @@ -0,0 +1,160 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Collections; +using System.Collections.Generic; +using System.Linq; +using System.Management.Automation; +using System.Reflection; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell +{ + internal static class PsExtensions + { + // https://stackoverflow.com/a/863944/294804 + // https://stackoverflow.com/a/4452598/294804 + // https://stackoverflow.com/a/28701974/294804 + // Note: This will unwrap nested collections, but we don't generate nested collections. + public static Type Unwrap(this Type type) + { + if (type.IsArray) + { + return type.GetElementType().Unwrap(); + } + + var typeInfo = type.GetTypeInfo(); + if (typeInfo.IsGenericType + && (typeInfo.GetGenericTypeDefinition() == typeof(Nullable<>) || typeof(IEnumerable<>).IsAssignableFrom(type))) + { + return typeInfo.GetGenericArguments().First().Unwrap(); + } + + return type; + } + + // https://stackoverflow.com/a/863944/294804 + private static bool IsSimple(this Type type) + { + var typeInfo = type.GetTypeInfo(); + return typeInfo.IsPrimitive + || typeInfo.IsEnum + || type == typeof(string) + || type == typeof(decimal); + } + + // https://stackoverflow.com/a/32025393/294804 + private static bool HasImplicitConversion(this Type baseType, Type targetType) => + baseType.GetMethods(BindingFlags.Public | BindingFlags.Static) + .Where(mi => mi.Name == "op_Implicit" && mi.ReturnType == targetType) + .Any(mi => mi.GetParameters().FirstOrDefault()?.ParameterType == baseType); + + public static bool IsPsSimple(this Type type) + { + var unwrappedType = type.Unwrap(); + return unwrappedType.IsSimple() + || unwrappedType == typeof(SwitchParameter) + || unwrappedType == typeof(Hashtable) + || unwrappedType == typeof(PSCredential) + || unwrappedType == typeof(ScriptBlock) + || unwrappedType == typeof(DateTime) + || unwrappedType == typeof(Uri) + || unwrappedType.HasImplicitConversion(typeof(string)); + } + + public static string ToPsList(this IEnumerable items) => String.Join(", ", items.Select(i => $"'{i}'")); + + public static IEnumerable ToAliasNames(this IEnumerable attributes) => attributes.OfType().SelectMany(aa => aa.AliasNames).Distinct(); + + public static bool IsArrayAndElementTypeIsT(this object item) + { + var itemType = item.GetType(); + var tType = typeof(T); + return itemType.IsArray && !tType.IsArray && tType.IsAssignableFrom(itemType.GetElementType()); + } + + public static bool IsTArrayAndElementTypeIsItem(this object item) + { + var itemType = item.GetType(); + var tType = typeof(T); + return !itemType.IsArray && tType.IsArray && (tType.GetElementType()?.IsAssignableFrom(itemType) ?? false); + } + + public static bool IsTypeOrArrayOfType(this object item) => item is T || item.IsArrayAndElementTypeIsT() || item.IsTArrayAndElementTypeIsItem(); + + public static T NormalizeArrayType(this object item) + { + if (item is T result) + { + return result; + } + + if (item.IsArrayAndElementTypeIsT()) + { + var array = (T[])Convert.ChangeType(item, typeof(T[])); + return array.FirstOrDefault(); + } + + if (item.IsTArrayAndElementTypeIsItem()) + { + var tType = typeof(T); + var array = Array.CreateInstance(tType.GetElementType(), 1); + array.SetValue(item, 0); + return (T)Convert.ChangeType(array, tType); + } + + return default(T); + } + + public static T GetNestedProperty(this PSObject psObject, params string[] names) => psObject.Properties.GetNestedProperty(names); + + public static T GetNestedProperty(this PSMemberInfoCollection properties, params string[] names) + { + var lastName = names.Last(); + var nestedProperties = names.Take(names.Length - 1).Aggregate(properties, (p, n) => p?.GetProperty(n)?.Properties); + return nestedProperties != null ? nestedProperties.GetProperty(lastName) : default(T); + } + + public static T GetProperty(this PSObject psObject, string name) => psObject.Properties.GetProperty(name); + + public static T GetProperty(this PSMemberInfoCollection properties, string name) + { + switch (properties[name]?.Value) + { + case PSObject psObject when psObject.BaseObject is PSCustomObject && psObject.ImmediateBaseObject.IsTypeOrArrayOfType(): + return psObject.ImmediateBaseObject.NormalizeArrayType(); + case PSObject psObject when psObject.BaseObject.IsTypeOrArrayOfType(): + return psObject.BaseObject.NormalizeArrayType(); + case object value when value.IsTypeOrArrayOfType(): + return value.NormalizeArrayType(); + default: + return default(T); + } + } + + public static IEnumerable RunScript(this PSCmdlet cmdlet, string script) + => PsHelpers.RunScript(cmdlet.InvokeCommand, script); + + public static void RunScript(this PSCmdlet cmdlet, string script) + => cmdlet.RunScript(script); + + public static IEnumerable RunScript(this EngineIntrinsics engineIntrinsics, string script) + => PsHelpers.RunScript(engineIntrinsics.InvokeCommand, script); + + public static void RunScript(this EngineIntrinsics engineIntrinsics, string script) + => engineIntrinsics.RunScript(script); + + public static IEnumerable RunScript(this PSCmdlet cmdlet, ScriptBlock block) + => PsHelpers.RunScript(cmdlet.InvokeCommand, block.ToString()); + + public static void RunScript(this PSCmdlet cmdlet, ScriptBlock block) + => cmdlet.RunScript(block.ToString()); + + public static IEnumerable RunScript(this EngineIntrinsics engineIntrinsics, ScriptBlock block) + => PsHelpers.RunScript(engineIntrinsics.InvokeCommand, block.ToString()); + + public static void RunScript(this EngineIntrinsics engineIntrinsics, ScriptBlock block) + => engineIntrinsics.RunScript(block.ToString()); + } +} diff --git a/src/VMWare/generated/runtime/BuildTime/PsHelpers.cs b/src/VMWare/generated/runtime/BuildTime/PsHelpers.cs new file mode 100644 index 000000000000..315df2b89d80 --- /dev/null +++ b/src/VMWare/generated/runtime/BuildTime/PsHelpers.cs @@ -0,0 +1,104 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Collections; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Management.Automation; +using Pwsh = System.Management.Automation.PowerShell; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell +{ + internal static class PsHelpers + { + public static IEnumerable RunScript(string script) + => Pwsh.Create().AddScript(script).Invoke(); + + public static void RunScript(string script) + => RunScript(script); + + public static IEnumerable RunScript(CommandInvocationIntrinsics cii, string script) + => cii.InvokeScript(script).Select(o => o?.BaseObject).Where(o => o != null).OfType(); + + public static void RunScript(CommandInvocationIntrinsics cii, string script) + => RunScript(cii, script); + + public static IEnumerable GetModuleCmdlets(PSCmdlet cmdlet, params string[] modulePaths) + { + var getCmdletsCommand = String.Join(" + ", modulePaths.Select(mp => $"(Get-Command -Module (Import-Module '{mp}' -PassThru))")); + return (cmdlet?.RunScript(getCmdletsCommand) ?? RunScript(getCmdletsCommand)) + .Where(ci => ci.CommandType != CommandTypes.Alias); + } + + public static IEnumerable GetModuleCmdlets(params string[] modulePaths) + => GetModuleCmdlets(null, modulePaths); + + public static IEnumerable GetScriptCmdlets(PSCmdlet cmdlet, string scriptFolder) + { + // https://stackoverflow.com/a/40969712/294804 + var getCmdletsCommand = $@" +$currentFunctions = Get-ChildItem function: +Get-ChildItem -Path '{scriptFolder}' -Recurse -Include '*.ps1' -File | ForEach-Object {{ . $_.FullName }} +Get-ChildItem function: | Where-Object {{ ($currentFunctions -notcontains $_) -and $_.CmdletBinding }} +"; + return cmdlet?.RunScript(getCmdletsCommand) ?? RunScript(getCmdletsCommand); + } + + public static IEnumerable GetScriptCmdlets(string scriptFolder) + => GetScriptCmdlets(null, scriptFolder); + + public static IEnumerable GetScriptHelpInfo(PSCmdlet cmdlet, params string[] modulePaths) + { + var importModules = String.Join(Environment.NewLine, modulePaths.Select(mp => $"Import-Module '{mp}'")); + var getHelpCommand = $@" +$currentFunctions = Get-ChildItem function: +{importModules} +Get-ChildItem function: | Where-Object {{ ($currentFunctions -notcontains $_) -and $_.CmdletBinding }} | ForEach-Object {{ Get-Help -Name $_.Name -Full }} +"; + return cmdlet?.RunScript(getHelpCommand) ?? RunScript(getHelpCommand); + } + + public static IEnumerable GetScriptHelpInfo(params string[] modulePaths) + => GetScriptHelpInfo(null, modulePaths); + + public static IEnumerable GetModuleCmdletsAndHelpInfo(PSCmdlet cmdlet, params string[] modulePaths) + { + var getCmdletAndHelp = String.Join(" + ", modulePaths.Select(mp => + $@"(Get-Command -Module (Import-Module '{mp}' -PassThru) | Where-Object {{ $_.CommandType -ne 'Alias' }} | ForEach-Object {{ @{{ CommandInfo = $_; HelpInfo = ( invoke-command {{ try {{ Get-Help -Name $_.Name -Full }} catch{{ '' }} }} ) }} }})" + )); + return (cmdlet?.RunScript(getCmdletAndHelp) ?? RunScript(getCmdletAndHelp)) + .Select(h => new CmdletAndHelpInfo { CommandInfo = (h["CommandInfo"] as PSObject)?.BaseObject as CommandInfo, HelpInfo = h["HelpInfo"] as PSObject }); + } + + public static IEnumerable GetModuleCmdletsAndHelpInfo(params string[] modulePaths) + => GetModuleCmdletsAndHelpInfo(null, modulePaths); + + public static CmdletAndHelpInfo ToCmdletAndHelpInfo(this CommandInfo commandInfo, PSObject helpInfo) => new CmdletAndHelpInfo { CommandInfo = commandInfo, HelpInfo = helpInfo }; + + public const string Psd1Indent = " "; + public const string GuidStart = Psd1Indent + "GUID"; + + public static Guid ReadGuidFromPsd1(string psd1Path) + { + var guid = Guid.NewGuid(); + if (File.Exists(psd1Path)) + { + var currentGuid = File.ReadAllLines(psd1Path) + .FirstOrDefault(l => l.StartsWith(GuidStart))?.Split(new[] { " = " }, StringSplitOptions.RemoveEmptyEntries) + .LastOrDefault()?.Replace("'", String.Empty); + guid = currentGuid != null ? Guid.Parse(currentGuid) : guid; + } + + return guid; + } + } + + internal class CmdletAndHelpInfo + { + public CommandInfo CommandInfo { get; set; } + public PSObject HelpInfo { get; set; } + } +} diff --git a/src/VMWare/generated/runtime/BuildTime/StringExtensions.cs b/src/VMWare/generated/runtime/BuildTime/StringExtensions.cs new file mode 100644 index 000000000000..60a04264552c --- /dev/null +++ b/src/VMWare/generated/runtime/BuildTime/StringExtensions.cs @@ -0,0 +1,24 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Linq; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell +{ + internal static class StringExtensions + { + public static string NullIfEmpty(this string text) => String.IsNullOrEmpty(text) ? null : text; + public static string NullIfWhiteSpace(this string text) => String.IsNullOrWhiteSpace(text) ? null : text; + public static string EmptyIfNull(this string text) => text ?? String.Empty; + + public static bool? ToNullableBool(this string text) => String.IsNullOrEmpty(text) ? (bool?)null : Convert.ToBoolean(text.ToLowerInvariant()); + + public static string ToUpperFirstCharacter(this string text) => String.IsNullOrEmpty(text) ? text : $"{text[0].ToString().ToUpperInvariant()}{text.Remove(0, 1)}"; + + public static string ReplaceNewLines(this string value, string replacer = " ", string[] newLineSymbols = null) + => (newLineSymbols ?? new []{ "\r\n", "\n" }).Aggregate(value.EmptyIfNull(), (current, symbol) => current.Replace(symbol, replacer)); + public static string NormalizeNewLines(this string value) => value.ReplaceNewLines("\u00A0").Replace("\u00A0", Environment.NewLine); + } +} diff --git a/src/VMWare/generated/runtime/BuildTime/XmlExtensions.cs b/src/VMWare/generated/runtime/BuildTime/XmlExtensions.cs new file mode 100644 index 000000000000..59002e915d58 --- /dev/null +++ b/src/VMWare/generated/runtime/BuildTime/XmlExtensions.cs @@ -0,0 +1,28 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System.IO; +using System.Xml; +using System.Xml.Serialization; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell +{ + internal static class XmlExtensions + { + public static string ToXmlString(this T inputObject, bool excludeDeclaration = false) + { + var serializer = new XmlSerializer(typeof(T)); + //https://stackoverflow.com/a/760290/294804 + //https://stackoverflow.com/a/3732234/294804 + var namespaces = new XmlSerializerNamespaces(new[] { XmlQualifiedName.Empty }); + var xmlSettings = new XmlWriterSettings { OmitXmlDeclaration = excludeDeclaration, Indent = true }; + using (var stringWriter = new StringWriter()) + using (var xmlWriter = XmlWriter.Create(stringWriter, xmlSettings)) + { + serializer.Serialize(xmlWriter, inputObject, namespaces); + return stringWriter.ToString(); + } + } + } +} diff --git a/src/VMWare/generated/runtime/CmdInfoHandler.cs b/src/VMWare/generated/runtime/CmdInfoHandler.cs new file mode 100644 index 000000000000..7740b58efa97 --- /dev/null +++ b/src/VMWare/generated/runtime/CmdInfoHandler.cs @@ -0,0 +1,40 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Management.Automation; +using System.Net.Http; +using System.Threading; +using System.Threading.Tasks; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime +{ + using NextDelegate = Func, Task>, Task>; + using SignalDelegate = Func, Task>; + + public class CmdInfoHandler + { + private readonly string processRecordId; + private readonly string parameterSetName; + private readonly InvocationInfo invocationInfo; + + public CmdInfoHandler(string processRecordId, InvocationInfo invocationInfo, string parameterSetName) + { + this.processRecordId = processRecordId; + this.parameterSetName = parameterSetName; + this.invocationInfo = invocationInfo; + } + + public Task SendAsync(HttpRequestMessage request, CancellationToken token, Action cancel, SignalDelegate signal, NextDelegate next) + { + request.Headers.Add("x-ms-client-request-id", processRecordId); + request.Headers.Add("CommandName", invocationInfo?.InvocationName); + request.Headers.Add("FullCommandName", invocationInfo?.MyCommand?.Name); + request.Headers.Add("ParameterSetName", parameterSetName); + + // continue with pipeline. + return next(request, token, cancel, signal); + } + } +} diff --git a/src/VMWare/generated/runtime/Conversions/ConversionException.cs b/src/VMWare/generated/runtime/Conversions/ConversionException.cs new file mode 100644 index 000000000000..9714d6532917 --- /dev/null +++ b/src/VMWare/generated/runtime/Conversions/ConversionException.cs @@ -0,0 +1,17 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + internal class ConversionException : Exception + { + internal ConversionException(string message) + : base(message) { } + + internal ConversionException(JsonNode node, Type targetType) + : base($"Cannot convert '{node.Type}' to a {targetType.Name}") { } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Conversions/IJsonConverter.cs b/src/VMWare/generated/runtime/Conversions/IJsonConverter.cs new file mode 100644 index 000000000000..ab3fb027833a --- /dev/null +++ b/src/VMWare/generated/runtime/Conversions/IJsonConverter.cs @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + internal interface IJsonConverter + { + JsonNode ToJson(object value); + + object FromJson(JsonNode node); + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Conversions/Instances/BinaryConverter.cs b/src/VMWare/generated/runtime/Conversions/Instances/BinaryConverter.cs new file mode 100644 index 000000000000..fd6435c8a9ba --- /dev/null +++ b/src/VMWare/generated/runtime/Conversions/Instances/BinaryConverter.cs @@ -0,0 +1,24 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + public sealed class BinaryConverter : JsonConverter + { + internal override JsonNode ToJson(byte[] value) => new XBinary(value); + + internal override byte[] FromJson(JsonNode node) + { + switch (node.Type) + { + case JsonType.String : return Convert.FromBase64String(node.ToString()); // Base64 Encoded + case JsonType.Binary : return ((XBinary)node).Value; + } + + throw new ConversionException(node, typeof(byte[])); + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Conversions/Instances/BooleanConverter.cs b/src/VMWare/generated/runtime/Conversions/Instances/BooleanConverter.cs new file mode 100644 index 000000000000..aa605d78a299 --- /dev/null +++ b/src/VMWare/generated/runtime/Conversions/Instances/BooleanConverter.cs @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + public sealed class BooleanConverter : JsonConverter + { + internal override JsonNode ToJson(bool value) => new JsonBoolean(value); + + internal override bool FromJson(JsonNode node) => (bool)node; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Conversions/Instances/DateTimeConverter.cs b/src/VMWare/generated/runtime/Conversions/Instances/DateTimeConverter.cs new file mode 100644 index 000000000000..5658c61e7a5d --- /dev/null +++ b/src/VMWare/generated/runtime/Conversions/Instances/DateTimeConverter.cs @@ -0,0 +1,18 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + public sealed class DateTimeConverter : JsonConverter + { + internal override JsonNode ToJson(DateTime value) + { + return new JsonDate(value); + } + + internal override DateTime FromJson(JsonNode node) => (DateTime)node; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Conversions/Instances/DateTimeOffsetConverter.cs b/src/VMWare/generated/runtime/Conversions/Instances/DateTimeOffsetConverter.cs new file mode 100644 index 000000000000..2f43717a54d9 --- /dev/null +++ b/src/VMWare/generated/runtime/Conversions/Instances/DateTimeOffsetConverter.cs @@ -0,0 +1,15 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + public sealed class DateTimeOffsetConverter : JsonConverter + { + internal override JsonNode ToJson(DateTimeOffset value) => new JsonDate(value); + + internal override DateTimeOffset FromJson(JsonNode node) => (DateTimeOffset)node; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Conversions/Instances/DecimalConverter.cs b/src/VMWare/generated/runtime/Conversions/Instances/DecimalConverter.cs new file mode 100644 index 000000000000..cf98629c9603 --- /dev/null +++ b/src/VMWare/generated/runtime/Conversions/Instances/DecimalConverter.cs @@ -0,0 +1,16 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + public sealed class DecimalConverter : JsonConverter + { + internal override JsonNode ToJson(decimal value) => new JsonNumber(value.ToString()); + + internal override decimal FromJson(JsonNode node) + { + return (decimal)node; + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Conversions/Instances/DoubleConverter.cs b/src/VMWare/generated/runtime/Conversions/Instances/DoubleConverter.cs new file mode 100644 index 000000000000..2276002cdf4b --- /dev/null +++ b/src/VMWare/generated/runtime/Conversions/Instances/DoubleConverter.cs @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + public sealed class DoubleConverter : JsonConverter + { + internal override JsonNode ToJson(double value) => new JsonNumber(value); + + internal override double FromJson(JsonNode node) => (double)node; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Conversions/Instances/EnumConverter.cs b/src/VMWare/generated/runtime/Conversions/Instances/EnumConverter.cs new file mode 100644 index 000000000000..2c2ea3f9d3f1 --- /dev/null +++ b/src/VMWare/generated/runtime/Conversions/Instances/EnumConverter.cs @@ -0,0 +1,30 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + public sealed class EnumConverter : IJsonConverter + { + private readonly Type type; + + internal EnumConverter(Type type) + { + this.type = type ?? throw new ArgumentNullException(nameof(type)); + } + + public JsonNode ToJson(object value) => new JsonString(value.ToString()); + + public object FromJson(JsonNode node) + { + if (node.Type == JsonType.Number) + { + return Enum.ToObject(type, (int)node); + } + + return Enum.Parse(type, node.ToString(), ignoreCase: true); + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Conversions/Instances/GuidConverter.cs b/src/VMWare/generated/runtime/Conversions/Instances/GuidConverter.cs new file mode 100644 index 000000000000..1fae618f3c37 --- /dev/null +++ b/src/VMWare/generated/runtime/Conversions/Instances/GuidConverter.cs @@ -0,0 +1,15 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + public sealed class GuidConverter : JsonConverter + { + internal override JsonNode ToJson(Guid value) => new JsonString(value.ToString()); + + internal override Guid FromJson(JsonNode node) => (Guid)node; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Conversions/Instances/HashSet'1Converter.cs b/src/VMWare/generated/runtime/Conversions/Instances/HashSet'1Converter.cs new file mode 100644 index 000000000000..4d2f66c6c5a4 --- /dev/null +++ b/src/VMWare/generated/runtime/Conversions/Instances/HashSet'1Converter.cs @@ -0,0 +1,27 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System.Collections.Generic; +using System.Linq; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + public sealed class HashSetConverter : JsonConverter> + { + internal override JsonNode ToJson(HashSet value) + { + return new XSet(value); + } + + internal override HashSet FromJson(JsonNode node) + { + var collection = node as ICollection; + + if (collection.Count == 0) return null; + + // TODO: Remove Linq depedency + return new HashSet(collection.Cast()); + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Conversions/Instances/Int16Converter.cs b/src/VMWare/generated/runtime/Conversions/Instances/Int16Converter.cs new file mode 100644 index 000000000000..9dfa532feee0 --- /dev/null +++ b/src/VMWare/generated/runtime/Conversions/Instances/Int16Converter.cs @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + public sealed class Int16Converter : JsonConverter + { + internal override JsonNode ToJson(short value) => new JsonNumber(value); + + internal override short FromJson(JsonNode node) => (short)node; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Conversions/Instances/Int32Converter.cs b/src/VMWare/generated/runtime/Conversions/Instances/Int32Converter.cs new file mode 100644 index 000000000000..da5b8ea07f81 --- /dev/null +++ b/src/VMWare/generated/runtime/Conversions/Instances/Int32Converter.cs @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + public sealed class Int32Converter : JsonConverter + { + internal override JsonNode ToJson(int value) => new JsonNumber(value); + + internal override int FromJson(JsonNode node) => (int)node; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Conversions/Instances/Int64Converter.cs b/src/VMWare/generated/runtime/Conversions/Instances/Int64Converter.cs new file mode 100644 index 000000000000..08c1013a7ace --- /dev/null +++ b/src/VMWare/generated/runtime/Conversions/Instances/Int64Converter.cs @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + public sealed class Int64Converter : JsonConverter + { + internal override JsonNode ToJson(long value) => new JsonNumber(value); + + internal override long FromJson(JsonNode node) => (long)node; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Conversions/Instances/JsonArrayConverter.cs b/src/VMWare/generated/runtime/Conversions/Instances/JsonArrayConverter.cs new file mode 100644 index 000000000000..eab32f0015b6 --- /dev/null +++ b/src/VMWare/generated/runtime/Conversions/Instances/JsonArrayConverter.cs @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + public sealed class JsonArrayConverter : JsonConverter + { + internal override JsonNode ToJson(JsonArray value) => value; + + internal override JsonArray FromJson(JsonNode node) => (JsonArray)node; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Conversions/Instances/JsonObjectConverter.cs b/src/VMWare/generated/runtime/Conversions/Instances/JsonObjectConverter.cs new file mode 100644 index 000000000000..bf5635671b88 --- /dev/null +++ b/src/VMWare/generated/runtime/Conversions/Instances/JsonObjectConverter.cs @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + public sealed class JsonObjectConverter : JsonConverter + { + internal override JsonNode ToJson(JsonObject value) => value; + + internal override JsonObject FromJson(JsonNode node) => (JsonObject)node; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Conversions/Instances/SingleConverter.cs b/src/VMWare/generated/runtime/Conversions/Instances/SingleConverter.cs new file mode 100644 index 000000000000..ecb5cef271fd --- /dev/null +++ b/src/VMWare/generated/runtime/Conversions/Instances/SingleConverter.cs @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + public sealed class SingleConverter : JsonConverter + { + internal override JsonNode ToJson(float value) => new JsonNumber(value.ToString()); + + internal override float FromJson(JsonNode node) => (float)node; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Conversions/Instances/StringConverter.cs b/src/VMWare/generated/runtime/Conversions/Instances/StringConverter.cs new file mode 100644 index 000000000000..b81f141e687d --- /dev/null +++ b/src/VMWare/generated/runtime/Conversions/Instances/StringConverter.cs @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + public sealed class StringConverter : JsonConverter + { + internal override JsonNode ToJson(string value) => new JsonString(value); + + internal override string FromJson(JsonNode node) => node.ToString(); + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Conversions/Instances/TimeSpanConverter.cs b/src/VMWare/generated/runtime/Conversions/Instances/TimeSpanConverter.cs new file mode 100644 index 000000000000..77a1d2cdd185 --- /dev/null +++ b/src/VMWare/generated/runtime/Conversions/Instances/TimeSpanConverter.cs @@ -0,0 +1,15 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + public sealed class TimeSpanConverter : JsonConverter + { + internal override JsonNode ToJson(TimeSpan value) => new JsonString(value.ToString()); + + internal override TimeSpan FromJson(JsonNode node) => (TimeSpan)node; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Conversions/Instances/UInt16Converter.cs b/src/VMWare/generated/runtime/Conversions/Instances/UInt16Converter.cs new file mode 100644 index 000000000000..bd62f4d2c588 --- /dev/null +++ b/src/VMWare/generated/runtime/Conversions/Instances/UInt16Converter.cs @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + public sealed class UInt16Converter : JsonConverter + { + internal override JsonNode ToJson(ushort value) => new JsonNumber(value); + + internal override ushort FromJson(JsonNode node) => (ushort)node; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Conversions/Instances/UInt32Converter.cs b/src/VMWare/generated/runtime/Conversions/Instances/UInt32Converter.cs new file mode 100644 index 000000000000..6c62d95b2976 --- /dev/null +++ b/src/VMWare/generated/runtime/Conversions/Instances/UInt32Converter.cs @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + public sealed class UInt32Converter : JsonConverter + { + internal override JsonNode ToJson(uint value) => new JsonNumber(value); + + internal override uint FromJson(JsonNode node) => (uint)node; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Conversions/Instances/UInt64Converter.cs b/src/VMWare/generated/runtime/Conversions/Instances/UInt64Converter.cs new file mode 100644 index 000000000000..71d5b3c30d9c --- /dev/null +++ b/src/VMWare/generated/runtime/Conversions/Instances/UInt64Converter.cs @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + public sealed class UInt64Converter : JsonConverter + { + internal override JsonNode ToJson(ulong value) => new JsonNumber(value.ToString()); + + internal override ulong FromJson(JsonNode node) => (ulong)node; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Conversions/Instances/UriConverter.cs b/src/VMWare/generated/runtime/Conversions/Instances/UriConverter.cs new file mode 100644 index 000000000000..e8daaa605327 --- /dev/null +++ b/src/VMWare/generated/runtime/Conversions/Instances/UriConverter.cs @@ -0,0 +1,15 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + public sealed class UriConverter : JsonConverter + { + internal override JsonNode ToJson(Uri value) => new JsonString(value.AbsoluteUri); + + internal override Uri FromJson(JsonNode node) => (Uri)node; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Conversions/JsonConverter.cs b/src/VMWare/generated/runtime/Conversions/JsonConverter.cs new file mode 100644 index 000000000000..f78415858ab4 --- /dev/null +++ b/src/VMWare/generated/runtime/Conversions/JsonConverter.cs @@ -0,0 +1,21 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + public abstract class JsonConverter : IJsonConverter + { + internal abstract T FromJson(JsonNode node); + + internal abstract JsonNode ToJson(T value); + + #region IConverter + + object IJsonConverter.FromJson(JsonNode node) => FromJson(node); + + JsonNode IJsonConverter.ToJson(object value) => ToJson((T)value); + + #endregion + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Conversions/JsonConverterAttribute.cs b/src/VMWare/generated/runtime/Conversions/JsonConverterAttribute.cs new file mode 100644 index 000000000000..08ce0914f5af --- /dev/null +++ b/src/VMWare/generated/runtime/Conversions/JsonConverterAttribute.cs @@ -0,0 +1,18 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + public sealed class JsonConverterAttribute : Attribute + { + internal JsonConverterAttribute(Type type) + { + Converter = (IJsonConverter)Activator.CreateInstance(type); + } + + internal IJsonConverter Converter { get; } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Conversions/JsonConverterFactory.cs b/src/VMWare/generated/runtime/Conversions/JsonConverterFactory.cs new file mode 100644 index 000000000000..391a6d8ab664 --- /dev/null +++ b/src/VMWare/generated/runtime/Conversions/JsonConverterFactory.cs @@ -0,0 +1,91 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Collections.Generic; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + public sealed class JsonConverterFactory + { + private static readonly Dictionary converters = new Dictionary(); + + static JsonConverterFactory() + { + AddInternal(new BooleanConverter()); + AddInternal(new DateTimeConverter()); + AddInternal(new DateTimeOffsetConverter()); + AddInternal(new BinaryConverter()); + AddInternal(new DecimalConverter()); + AddInternal(new DoubleConverter()); + AddInternal(new GuidConverter()); + AddInternal(new Int16Converter()); + AddInternal(new Int32Converter()); + AddInternal(new Int64Converter()); + AddInternal(new SingleConverter()); + AddInternal(new StringConverter()); + AddInternal(new TimeSpanConverter()); + AddInternal(new UInt16Converter()); + AddInternal(new UInt32Converter()); + AddInternal(new UInt64Converter()); + AddInternal(new UriConverter()); + + // Hash sets + AddInternal(new HashSetConverter()); + AddInternal(new HashSetConverter()); + AddInternal(new HashSetConverter()); + AddInternal(new HashSetConverter()); + AddInternal(new HashSetConverter()); + AddInternal(new HashSetConverter()); + + // JSON + + AddInternal(new JsonObjectConverter()); + AddInternal(new JsonArrayConverter()); + } + + internal static Dictionary Instances => converters; + + internal static IJsonConverter Get(Type type) + { + var details = TypeDetails.Get(type); + + if (details.JsonConverter == null) + { + throw new ConversionException($"No converter found for '{type.Name}'."); + } + + return details.JsonConverter; + } + + internal static bool TryGet(Type type, out IJsonConverter converter) + { + var typeDetails = TypeDetails.Get(type); + + converter = typeDetails.JsonConverter; + + return converter != null; + } + + private static void AddInternal(JsonConverter converter) + => converters.Add(typeof(T), converter); + + private static void AddInternal(IJsonConverter converter) + => converters.Add(typeof(T), converter); + + internal static void Add(JsonConverter converter) + { + if (converter == null) + { + throw new ArgumentNullException(nameof(converter)); + } + + AddInternal(converter); + + var type = TypeDetails.Get(); + + type.JsonConverter = converter; + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Conversions/StringLikeConverter.cs b/src/VMWare/generated/runtime/Conversions/StringLikeConverter.cs new file mode 100644 index 000000000000..e8bfe06cc7a5 --- /dev/null +++ b/src/VMWare/generated/runtime/Conversions/StringLikeConverter.cs @@ -0,0 +1,45 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Reflection; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + public sealed class StringLikeConverter : IJsonConverter + { + private readonly Type type; + private readonly MethodInfo parseMethod; + + internal StringLikeConverter(Type type) + { + this.type = type ?? throw new ArgumentNullException(nameof(type)); + this.parseMethod = StringLikeHelper.GetParseMethod(type); + } + + public object FromJson(JsonNode node) => + parseMethod.Invoke(null, new[] { node.ToString() }); + + public JsonNode ToJson(object value) => new JsonString(value.ToString()); + } + + internal static class StringLikeHelper + { + private static readonly Type[] parseMethodParamaterTypes = new[] { typeof(string) }; + + internal static bool IsStringLike(Type type) + { + return GetParseMethod(type) != null; + } + + internal static MethodInfo GetParseMethod(Type type) + { + MethodInfo method = type.GetMethod("Parse", parseMethodParamaterTypes); + + if (method?.IsPublic != true) return null; + + return method; + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Customizations/IJsonSerializable.cs b/src/VMWare/generated/runtime/Customizations/IJsonSerializable.cs new file mode 100644 index 000000000000..d76fbab2a033 --- /dev/null +++ b/src/VMWare/generated/runtime/Customizations/IJsonSerializable.cs @@ -0,0 +1,249 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json; +using System; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime +{ + public interface IJsonSerializable + { + JsonNode ToJson(JsonObject container = null, SerializationMode serializationMode = SerializationMode.None); + } + internal static class JsonSerializable + { + /// + /// Serializes an enumerable and returns a JsonNode. + /// + /// an IEnumerable collection of items + /// A JsonNode that contains the collection of items serialized. + private static JsonNode ToJsonValue(System.Collections.IEnumerable enumerable) + { + if (enumerable != null) + { + // is it a byte array of some kind? + if (enumerable is System.Collections.Generic.IEnumerable byteEnumerable) + { + return new XBinary(System.Linq.Enumerable.ToArray(byteEnumerable)); + } + + var hasValues = false; + // just create an array of value nodes. + var result = new XNodeArray(); + foreach (var each in enumerable) + { + // we had at least one value. + hasValues = true; + + // try to serialize it. + var node = ToJsonValue(each); + if (null != node) + { + result.Add(node); + } + } + + // if we were able to add values, (or it was just empty), return it. + if (result.Count > 0 || !hasValues) + { + return result; + } + } + + // we couldn't serialize the values. Sorry. + return null; + } + + /// + /// Serializes a valuetype to a JsonNode. + /// + /// a ValueType (ie, a primitive, enum or struct) to be serialized + /// a JsonNode with the serialized value + private static JsonNode ToJsonValue(ValueType vValue) + { + // numeric type + if (vValue is SByte || vValue is Int16 || vValue is Int32 || vValue is Int64 || vValue is Byte || vValue is UInt16 || vValue is UInt32 || vValue is UInt64 || vValue is decimal || vValue is float || vValue is double) + { + return new JsonNumber(vValue.ToString()); + } + + // boolean type + if (vValue is bool bValue) + { + return new JsonBoolean(bValue); + } + + // dates + if (vValue is DateTime dtValue) + { + return new JsonDate(dtValue); + } + + // sorry, no idea. + return null; + } + /// + /// Attempts to serialize an object by using ToJson() or ToJsonString() if they exist. + /// + /// the object to be serialized. + /// the serialized JsonNode (if successful), otherwise, null + private static JsonNode TryToJsonValue(dynamic oValue) + { + object jsonValue = null; + dynamic v = oValue; + try + { + jsonValue = v.ToJson().ToString(); + } + catch + { + // no harm... + try + { + jsonValue = v.ToJsonString().ToString(); + } + catch + { + // no worries here either. + } + } + + // if we got something out, let's use it. + if (null != jsonValue) + { + // JsonNumber is really a literal json value. Just don't try to cast that back to an actual number, ok? + return new JsonNumber(jsonValue.ToString()); + } + + return null; + } + + /// + /// Serialize an object by using a variety of methods. + /// + /// the object to be serialized. + /// the serialized JsonNode (if successful), otherwise, null + internal static JsonNode ToJsonValue(object value) + { + // things that implement our interface are preferred. + if (value is Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IJsonSerializable jsonSerializable) + { + return jsonSerializable.ToJson(); + } + + // strings are easy. + if (value is string || value is char) + { + return new JsonString(value.ToString()); + } + + // value types are fairly straightforward (fallback to ToJson()/ToJsonString() or literal JsonString ) + if (value is System.ValueType vValue) + { + return ToJsonValue(vValue) ?? TryToJsonValue(vValue) ?? new JsonString(vValue.ToString()); + } + + // dictionaries are objects that should be able to serialize + if (value is System.Collections.Generic.IDictionary dictionary) + { + return Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.JsonSerializable.ToJson(dictionary, null); + } + + // enumerable collections are handled like arrays (again, fallback to ToJson()/ToJsonString() or literal JsonString) + if (value is System.Collections.IEnumerable enumerableValue) + { + // some kind of enumerable value + return ToJsonValue(enumerableValue) ?? TryToJsonValue(value) ?? new JsonString(value.ToString()); + } + + // at this point, we're going to fallback to a string literal here, since we really have no idea what it is. + return new JsonString(value.ToString()); + } + + internal static JsonObject ToJson(System.Collections.Generic.Dictionary dictionary, JsonObject container) => ToJson((System.Collections.Generic.IDictionary)dictionary, container); + + /// + /// Serializes a dictionary into a JsonObject container. + /// + /// The dictionary to serailize + /// the container to serialize the dictionary into + /// the container + internal static JsonObject ToJson(System.Collections.Generic.IDictionary dictionary, JsonObject container) + { + container = container ?? new JsonObject(); + if (dictionary != null && dictionary.Count > 0) + { + foreach (var key in dictionary) + { + // currently, we don't serialize null values. + if (null != key.Value) + { + container.Add(key.Key, ToJsonValue(key.Value)); + continue; + } + } + } + return container; + } + + internal static Func> DeserializeDictionary(Func> dictionaryFactory) + { + return (node) => FromJson(node, dictionaryFactory(), (object)(DeserializeDictionary(dictionaryFactory)) as Func); + } + + internal static System.Collections.Generic.IDictionary FromJson(JsonObject json, System.Collections.Generic.Dictionary container, System.Func objectFactory, System.Collections.Generic.HashSet excludes = null) => FromJson(json, (System.Collections.Generic.IDictionary)container, objectFactory, excludes); + + + internal static System.Collections.Generic.IDictionary FromJson(JsonObject json, System.Collections.Generic.IDictionary container, System.Func objectFactory, System.Collections.Generic.HashSet excludes = null) + { + if (null == json) + { + return container; + } + + foreach (var key in json.Keys) + { + if (true == excludes?.Contains(key)) + { + continue; + } + + var value = json[key]; + try + { + switch (value.Type) + { + case JsonType.Null: + // skip null values. + continue; + + case JsonType.Array: + case JsonType.Boolean: + case JsonType.Date: + case JsonType.Binary: + case JsonType.Number: + case JsonType.String: + container.Add(key, (V)value.ToValue()); + break; + case JsonType.Object: + if (objectFactory != null) + { + var v = objectFactory(value as JsonObject); + if (null != v) + { + container.Add(key, v); + } + } + break; + } + } + catch + { + } + } + return container; + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Customizations/JsonArray.cs b/src/VMWare/generated/runtime/Customizations/JsonArray.cs new file mode 100644 index 000000000000..78ffd5d683da --- /dev/null +++ b/src/VMWare/generated/runtime/Customizations/JsonArray.cs @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + public partial class JsonArray + { + internal override object ToValue() => Count == 0 ? new object[0] : System.Linq.Enumerable.ToArray(System.Linq.Enumerable.Select(this, each => each.ToValue())); + } + + +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Customizations/JsonBoolean.cs b/src/VMWare/generated/runtime/Customizations/JsonBoolean.cs new file mode 100644 index 000000000000..bd6c6e3c7dc7 --- /dev/null +++ b/src/VMWare/generated/runtime/Customizations/JsonBoolean.cs @@ -0,0 +1,16 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + internal partial class JsonBoolean + { + internal static JsonBoolean Create(bool? value) => value is bool b ? new JsonBoolean(b) : null; + internal bool ToBoolean() => Value; + + internal override object ToValue() => Value; + } + + +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Customizations/JsonNode.cs b/src/VMWare/generated/runtime/Customizations/JsonNode.cs new file mode 100644 index 000000000000..8f8393401b4a --- /dev/null +++ b/src/VMWare/generated/runtime/Customizations/JsonNode.cs @@ -0,0 +1,21 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + using System; + using System.Collections.Generic; + + public partial class JsonNode + { + /// + /// Returns the content of this node as the underlying value. + /// Will default to the string representation if not overridden in child classes. + /// + /// an object with the underlying value of the node. + internal virtual object ToValue() { + return this.ToString(); + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Customizations/JsonNumber.cs b/src/VMWare/generated/runtime/Customizations/JsonNumber.cs new file mode 100644 index 000000000000..7051c97c54b6 --- /dev/null +++ b/src/VMWare/generated/runtime/Customizations/JsonNumber.cs @@ -0,0 +1,78 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + using System; + + public partial class JsonNumber + { + internal static readonly DateTime EpochDate = new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc); + private static long ToUnixTime(DateTime dateTime) + { + return (long)dateTime.Subtract(EpochDate).TotalSeconds; + } + private static DateTime FromUnixTime(long totalSeconds) + { + return EpochDate.AddSeconds(totalSeconds); + } + internal byte ToByte() => this; + internal int ToInt() => this; + internal long ToLong() => this; + internal short ToShort() => this; + internal UInt16 ToUInt16() => this; + internal UInt32 ToUInt32() => this; + internal UInt64 ToUInt64() => this; + internal decimal ToDecimal() => this; + internal double ToDouble() => this; + internal float ToFloat() => this; + + internal static JsonNumber Create(int? value) => value is int n ? new JsonNumber(n) : null; + internal static JsonNumber Create(long? value) => value is long n ? new JsonNumber(n) : null; + internal static JsonNumber Create(float? value) => value is float n ? new JsonNumber(n) : null; + internal static JsonNumber Create(double? value) => value is double n ? new JsonNumber(n) : null; + internal static JsonNumber Create(decimal? value) => value is decimal n ? new JsonNumber(n) : null; + internal static JsonNumber Create(DateTime? value) => value is DateTime date ? new JsonNumber(ToUnixTime(date)) : null; + + public static implicit operator DateTime(JsonNumber number) => FromUnixTime(number); + internal DateTime ToDateTime() => this; + + internal JsonNumber(decimal value) + { + this.value = value.ToString(); + } + internal override object ToValue() + { + if (IsInteger) + { + if (int.TryParse(this.value, out int iValue)) + { + return iValue; + } + if (long.TryParse(this.value, out long lValue)) + { + return lValue; + } + } + else + { + if (float.TryParse(this.value, out float fValue)) + { + return fValue; + } + if (double.TryParse(this.value, out double dValue)) + { + return dValue; + } + if (decimal.TryParse(this.value, out decimal dcValue)) + { + return dcValue; + } + } + return null; + } + } + + +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Customizations/JsonObject.cs b/src/VMWare/generated/runtime/Customizations/JsonObject.cs new file mode 100644 index 000000000000..3a14c61a254d --- /dev/null +++ b/src/VMWare/generated/runtime/Customizations/JsonObject.cs @@ -0,0 +1,183 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + using System; + using System.Collections.Generic; + + public partial class JsonObject + { + internal override object ToValue() => Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.JsonSerializable.FromJson(this, new System.Collections.Generic.Dictionary(), (obj) => obj.ToValue()); + + internal void SafeAdd(string name, Func valueFn) + { + if (valueFn != null) + { + var value = valueFn(); + if (null != value) + { + items.Add(name, value); + } + } + } + + internal void SafeAdd(string name, JsonNode value) + { + if (null != value) + { + items.Add(name, value); + } + } + + internal T NullableProperty(string propertyName) where T : JsonNode + { + if (this.TryGetValue(propertyName, out JsonNode value)) + { + if (value.IsNull) + { + return null; + } + if (value is T tval) + { + return tval; + } + /* it's present, but not the correct type... */ + //throw new Exception($"Property {propertyName} in object expected type {typeof(T).Name} but value of type {value.Type.ToString()} was found."); + } + return null; + } + + internal JsonObject Property(string propertyName) + { + return PropertyT(propertyName); + } + + internal T PropertyT(string propertyName) where T : JsonNode + { + if (this.TryGetValue(propertyName, out JsonNode value)) + { + if (value.IsNull) + { + return null; // we're going to assume that the consumer knows what to do if null is explicity returned? + } + + if (value is T tval) + { + return tval; + } + /* it's present, but not the correct type... */ + // throw new Exception($"Property {propertyName} in object expected type {typeof(T).Name} but value of type {value.Type.ToString()} was found."); + } + return null; + } + + internal int NumberProperty(string propertyName, ref int output) => output = this.PropertyT(propertyName)?.ToInt() ?? output; + internal float NumberProperty(string propertyName, ref float output) => output = this.PropertyT(propertyName)?.ToFloat() ?? output; + internal byte NumberProperty(string propertyName, ref byte output) => output = this.PropertyT(propertyName)?.ToByte() ?? output; + internal long NumberProperty(string propertyName, ref long output) => output = this.PropertyT(propertyName)?.ToLong() ?? output; + internal double NumberProperty(string propertyName, ref double output) => output = this.PropertyT(propertyName)?.ToDouble() ?? output; + internal decimal NumberProperty(string propertyName, ref decimal output) => output = this.PropertyT(propertyName)?.ToDecimal() ?? output; + internal short NumberProperty(string propertyName, ref short output) => output = this.PropertyT(propertyName)?.ToShort() ?? output; + internal DateTime NumberProperty(string propertyName, ref DateTime output) => output = this.PropertyT(propertyName)?.ToDateTime() ?? output; + + internal int? NumberProperty(string propertyName, ref int? output) => output = this.NullableProperty(propertyName)?.ToInt() ?? null; + internal float? NumberProperty(string propertyName, ref float? output) => output = this.NullableProperty(propertyName)?.ToFloat() ?? null; + internal byte? NumberProperty(string propertyName, ref byte? output) => output = this.NullableProperty(propertyName)?.ToByte() ?? null; + internal long? NumberProperty(string propertyName, ref long? output) => output = this.NullableProperty(propertyName)?.ToLong() ?? null; + internal double? NumberProperty(string propertyName, ref double? output) => output = this.NullableProperty(propertyName)?.ToDouble() ?? null; + internal decimal? NumberProperty(string propertyName, ref decimal? output) => output = this.NullableProperty(propertyName)?.ToDecimal() ?? null; + internal short? NumberProperty(string propertyName, ref short? output) => output = this.NullableProperty(propertyName)?.ToShort() ?? null; + + internal DateTime? NumberProperty(string propertyName, ref DateTime? output) => output = this.NullableProperty(propertyName)?.ToDateTime() ?? null; + + + internal string StringProperty(string propertyName) => this.PropertyT(propertyName)?.ToString(); + internal string StringProperty(string propertyName, ref string output) => output = this.PropertyT(propertyName)?.ToString() ?? output; + internal char StringProperty(string propertyName, ref char output) => output = this.PropertyT(propertyName)?.ToChar() ?? output; + internal char? StringProperty(string propertyName, ref char? output) => output = this.PropertyT(propertyName)?.ToChar() ?? null; + + internal DateTime StringProperty(string propertyName, ref DateTime output) => DateTime.TryParse(this.PropertyT(propertyName)?.ToString(), out output) ? output : output; + internal DateTime? StringProperty(string propertyName, ref DateTime? output) => output = DateTime.TryParse(this.PropertyT(propertyName)?.ToString(), out var o) ? o : output; + + + internal bool BooleanProperty(string propertyName, ref bool output) => output = this.PropertyT(propertyName)?.ToBoolean() ?? output; + internal bool? BooleanProperty(string propertyName, ref bool? output) => output = this.PropertyT(propertyName)?.ToBoolean() ?? null; + + internal T[] ArrayProperty(string propertyName, ref T[] output, Func deserializer) + { + var array = this.PropertyT(propertyName); + if (array != null) + { + output = new T[array.Count]; + for (var i = 0; i < output.Length; i++) + { + output[i] = deserializer(array[i]); + } + } + return output; + } + internal T[] ArrayProperty(string propertyName, Func deserializer) + { + var array = this.PropertyT(propertyName); + if (array != null) + { + var output = new T[array.Count]; + for (var i = 0; i < output.Length; i++) + { + output[i] = deserializer(array[i]); + } + return output; + } + return new T[0]; + } + internal void IterateArrayProperty(string propertyName, Action deserializer) + { + var array = this.PropertyT(propertyName); + if (array != null) + { + for (var i = 0; i < array.Count; i++) + { + deserializer(array[i]); + } + } + } + + internal Dictionary DictionaryProperty(string propertyName, ref Dictionary output, Func deserializer) + { + var dictionary = this.PropertyT(propertyName); + if (output == null) + { + output = new Dictionary(); + } + else + { + output.Clear(); + } + if (dictionary != null) + { + foreach (var key in dictionary.Keys) + { + output[key] = deserializer(dictionary[key]); + } + } + return output; + } + + internal static JsonObject Create(IDictionary source, Func selector) + { + if (source == null || selector == null) + { + return null; + } + var result = new JsonObject(); + + foreach (var key in source.Keys) + { + result.SafeAdd(key, selector(source[key])); + } + return result; + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Customizations/JsonString.cs b/src/VMWare/generated/runtime/Customizations/JsonString.cs new file mode 100644 index 000000000000..e1dbe581ef5b --- /dev/null +++ b/src/VMWare/generated/runtime/Customizations/JsonString.cs @@ -0,0 +1,34 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + using System; + using System.Globalization; + using System.Linq; + + public partial class JsonString + { + internal static string DateFormat = "yyyy-MM-dd"; + internal static string DateTimeFormat = "yyyy'-'MM'-'dd'T'HH':'mm':'ss.FFFFFFFK"; + internal static string DateTimeRfc1123Format = "R"; + + internal static JsonString Create(string value) => value == null ? null : new JsonString(value); + internal static JsonString Create(char? value) => value is char c ? new JsonString(c.ToString()) : null; + + internal static JsonString CreateDate(DateTime? value) => value is DateTime date ? new JsonString(date.ToString(DateFormat, CultureInfo.CurrentCulture)) : null; + internal static JsonString CreateDateTime(DateTime? value) => value is DateTime date ? new JsonString(date.ToString(DateTimeFormat, CultureInfo.CurrentCulture)) : null; + internal static JsonString CreateDateTimeRfc1123(DateTime? value) => value is DateTime date ? new JsonString(date.ToString(DateTimeRfc1123Format, CultureInfo.CurrentCulture)) : null; + + internal char ToChar() => this.Value?.ToString()?.FirstOrDefault() ?? default(char); + public static implicit operator char(JsonString value) => value?.ToString()?.FirstOrDefault() ?? default(char); + public static implicit operator char? (JsonString value) => value?.ToString()?.FirstOrDefault(); + + public static implicit operator DateTime(JsonString value) => DateTime.TryParse(value, out var output) ? output : default(DateTime); + public static implicit operator DateTime? (JsonString value) => DateTime.TryParse(value, out var output) ? output : default(DateTime?); + + } + + +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Customizations/XNodeArray.cs b/src/VMWare/generated/runtime/Customizations/XNodeArray.cs new file mode 100644 index 000000000000..480caac1a14c --- /dev/null +++ b/src/VMWare/generated/runtime/Customizations/XNodeArray.cs @@ -0,0 +1,44 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + using System; + using System.Linq; + + public partial class XNodeArray + { + internal static XNodeArray Create(T[] source, Func selector) + { + if (source == null || selector == null) + { + return null; + } + var result = new XNodeArray(); + foreach (var item in source.Select(selector)) + { + result.SafeAdd(item); + } + return result; + } + internal void SafeAdd(JsonNode item) + { + if (item != null) + { + items.Add(item); + } + } + internal void SafeAdd(Func itemFn) + { + if (itemFn != null) + { + var item = itemFn(); + if (item != null) + { + items.Add(item); + } + } + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Debugging.cs b/src/VMWare/generated/runtime/Debugging.cs new file mode 100644 index 000000000000..5e09bc5a804f --- /dev/null +++ b/src/VMWare/generated/runtime/Debugging.cs @@ -0,0 +1,28 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime +{ + internal static class AttachDebugger + { + internal static void Break() + { + while (!System.Diagnostics.Debugger.IsAttached) + { + System.Console.Error.WriteLine($"Waiting for debugger to attach to process {System.Diagnostics.Process.GetCurrentProcess().Id}"); + for (int i = 0; i < 50; i++) + { + if (System.Diagnostics.Debugger.IsAttached) + { + break; + } + System.Threading.Thread.Sleep(100); + System.Console.Error.Write("."); + } + System.Console.Error.WriteLine(); + } + System.Diagnostics.Debugger.Break(); + } + } +} diff --git a/src/VMWare/generated/runtime/DictionaryExtensions.cs b/src/VMWare/generated/runtime/DictionaryExtensions.cs new file mode 100644 index 000000000000..52cfce6a61e3 --- /dev/null +++ b/src/VMWare/generated/runtime/DictionaryExtensions.cs @@ -0,0 +1,36 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime +{ + internal static class DictionaryExtensions + { + internal static void HashTableToDictionary(System.Collections.Hashtable hashtable, System.Collections.Generic.IDictionary dictionary) + { + foreach (var each in hashtable.Keys) + { + var key = each.ToString(); + var value = hashtable[key]; + if (null != value) + { + if (value is System.Collections.Hashtable nested) + { + HashTableToDictionary(nested, new System.Collections.Generic.Dictionary()); + } + else + { + try + { + dictionary[key] = (V)value; + } + catch + { + // Values getting dropped; not compatible with target dictionary. Not sure what to do here. + } + } + } + } + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/EventData.cs b/src/VMWare/generated/runtime/EventData.cs new file mode 100644 index 000000000000..6006ff5e2fb6 --- /dev/null +++ b/src/VMWare/generated/runtime/EventData.cs @@ -0,0 +1,78 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime +{ + + using System; + using System.Threading; + + ///Represents the data in signaled event. + public partial class EventData + { + /// + /// The type of the event being signaled + /// + public string Id; + + /// + /// The user-ready message from the event. + /// + public string Message; + + /// + /// When the event is about a parameter, this is the parameter name. + /// Used in Validation Events + /// + public string Parameter; + + /// + /// This represents a numeric value associated with the event. + /// Use for progress-style events + /// + public double Value; + + /// + /// Any extended data for an event should be serialized and stored here. + /// + public string ExtendedData; + + /// + /// If the event triggers after the request message has been created, this will contain the Request Message (which in HTTP calls would be HttpRequestMessage) + /// + /// Typically you'd cast this to the expected type to use it: + /// + /// if(eventData.RequestMessgae is HttpRequestMessage httpRequest) + /// { + /// httpRequest.Headers.Add("x-request-flavor", "vanilla"); + /// } + /// + /// + public object RequestMessage; + + /// + /// If the event triggers after the response is back, this will contain the Response Message (which in HTTP calls would be HttpResponseMessage) + /// + /// Typically you'd cast this to the expected type to use it: + /// + /// if(eventData.ResponseMessage is HttpResponseMessage httpResponse){ + /// var flavor = httpResponse.Headers.GetValue("x-request-flavor"); + /// } + /// + /// + public object ResponseMessage; + + /// + /// Cancellation method for this event. + /// + /// If the event consumer wishes to cancel the request that initiated this event, call Cancel() + /// + /// + /// The original initiator of the request must provide the implementation of this. + /// + public System.Action Cancel; + } + +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/EventDataExtensions.cs b/src/VMWare/generated/runtime/EventDataExtensions.cs new file mode 100644 index 000000000000..a3b2db837d36 --- /dev/null +++ b/src/VMWare/generated/runtime/EventDataExtensions.cs @@ -0,0 +1,94 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime +{ + using System; + + [System.ComponentModel.TypeConverter(typeof(EventDataConverter))] + /// + /// PowerShell-specific data on top of the llc# EventData + /// + /// + /// In PowerShell, we add on the EventDataConverter to support sending events between modules. + /// Obviously, this code would need to be duplcated on both modules. + /// This is preferable to sharing a common library, as versioning makes that problematic. + /// + public partial class EventData : EventArgs + { + } + + /// + /// A PowerShell PSTypeConverter to adapt an EventData object that has been passed. + /// Usually used between modules. + /// + public class EventDataConverter : System.Management.Automation.PSTypeConverter + { + public override bool CanConvertTo(object sourceValue, Type destinationType) => false; + public override object ConvertTo(object sourceValue, Type destinationType, IFormatProvider formatProvider, bool ignoreCase) => null; + public override bool CanConvertFrom(dynamic sourceValue, Type destinationType) => destinationType == typeof(EventData) && CanConvertFrom(sourceValue); + public override object ConvertFrom(dynamic sourceValue, Type destinationType, IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Verifies that a given object has the required members to convert it to the target type (EventData) + /// + /// Uses a dynamic type so that it is able to use the simplest code without excessive checking. + /// + /// The instance to verify + /// True, if the object has all the required parameters. + public static bool CanConvertFrom(dynamic sourceValue) + { + try + { + // check if this has *required* parameters... + sourceValue?.Id?.GetType(); + sourceValue?.Message?.GetType(); + sourceValue?.Cancel?.GetType(); + + // remaining parameters are not *required*, + // and if they have values, it will copy them at conversion time. + } + catch + { + // if anything throws an exception (because it's null, or doesn't have that member) + return false; + } + return true; + } + + /// + /// Returns result of the delegate as the expected type, or default(T) + /// + /// This isolates any exceptions from the consumer. + /// + /// A delegate that returns a value + /// The desired output type + /// The value from the function if the type is correct + private static T To(Func srcValue) + { + try { return srcValue(); } + catch { return default(T); } + } + + /// + /// Converts an incoming object to the expected type by treating the incoming object as a dynamic, and coping the expected values. + /// + /// the incoming object + /// EventData + public static EventData ConvertFrom(dynamic sourceValue) + { + return new EventData + { + Id = To(() => sourceValue.Id), + Message = To(() => sourceValue.Message), + Parameter = To(() => sourceValue.Parameter), + Value = To(() => sourceValue.Value), + RequestMessage = To(() => sourceValue.RequestMessage), + ResponseMessage = To(() => sourceValue.ResponseMessage), + Cancel = To(() => sourceValue.Cancel) + }; + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/EventListener.cs b/src/VMWare/generated/runtime/EventListener.cs new file mode 100644 index 000000000000..b9a67b7fc5e4 --- /dev/null +++ b/src/VMWare/generated/runtime/EventListener.cs @@ -0,0 +1,247 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime +{ + + using System; + using System.Linq; + using System.Collections; + using System.Collections.Generic; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + using GetEventData = System.Func; + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + public interface IValidates + { + Task Validate(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IEventListener listener); + } + + /// + /// The IEventListener Interface defines the communication mechanism for Signaling events during a remote call. + /// + /// + /// The interface is designed to be as minimal as possible, allow for quick peeking of the event type (id) + /// and the cancellation status and provides a delegate for retrieving the event details themselves. + /// + public interface IEventListener + { + Task Signal(string id, CancellationToken token, GetEventData createMessage); + CancellationToken Token { get; } + System.Action Cancel { get; } + } + + internal static partial class Extensions + { + public static Task Signal(this IEventListener instance, string id, CancellationToken token, Func createMessage) => instance.Signal(id, token, createMessage); + public static Task Signal(this IEventListener instance, string id, CancellationToken token) => instance.Signal(id, token, () => new EventData { Id = id, Cancel = instance.Cancel }); + public static Task Signal(this IEventListener instance, string id, CancellationToken token, string messageText) => instance.Signal(id, token, () => new EventData { Id = id, Message = messageText, Cancel = instance.Cancel }); + public static Task Signal(this IEventListener instance, string id, CancellationToken token, string messageText, HttpRequestMessage request) => instance.Signal(id, token, () => new EventData { Id = id, Message = messageText, RequestMessage = request, Cancel = instance.Cancel }); + public static Task Signal(this IEventListener instance, string id, CancellationToken token, string messageText, HttpResponseMessage response) => instance.Signal(id, token, () => new EventData { Id = id, Message = messageText, RequestMessage = response.RequestMessage, ResponseMessage = response, Cancel = instance.Cancel }); + public static Task Signal(this IEventListener instance, string id, CancellationToken token, string messageText, double magnitude) => instance.Signal(id, token, () => new EventData { Id = id, Message = messageText, Value = magnitude, Cancel = instance.Cancel }); + public static Task Signal(this IEventListener instance, string id, CancellationToken token, string messageText, double magnitude, HttpRequestMessage request) => instance.Signal(id, token, () => new EventData { Id = id, Message = messageText, RequestMessage = request, Value = magnitude, Cancel = instance.Cancel }); + public static Task Signal(this IEventListener instance, string id, CancellationToken token, string messageText, double magnitude, HttpResponseMessage response) => instance.Signal(id, token, () => new EventData { Id = id, Message = messageText, RequestMessage = response.RequestMessage, ResponseMessage = response, Value = magnitude, Cancel = instance.Cancel }); + public static Task Signal(this IEventListener instance, string id, CancellationToken token, HttpRequestMessage request) => instance.Signal(id, token, () => new EventData { Id = id, RequestMessage = request, Cancel = instance.Cancel }); + public static Task Signal(this IEventListener instance, string id, CancellationToken token, HttpRequestMessage request, HttpResponseMessage response) => instance.Signal(id, token, () => new EventData { Id = id, RequestMessage = request, ResponseMessage = response, Cancel = instance.Cancel }); + public static Task Signal(this IEventListener instance, string id, CancellationToken token, HttpResponseMessage response) => instance.Signal(id, token, () => new EventData { Id = id, RequestMessage = response.RequestMessage, ResponseMessage = response, Cancel = instance.Cancel }); + public static Task Signal(this IEventListener instance, string id, CancellationToken token, EventData message) => instance.Signal(id, token, () => { message.Id = id; message.Cancel = instance.Cancel; return message; }); + + public static Task Signal(this IEventListener instance, string id, Func createMessage) => instance.Signal(id, instance.Token, createMessage); + public static Task Signal(this IEventListener instance, string id) => instance.Signal(id, instance.Token, () => new EventData { Id = id, Cancel = instance.Cancel }); + public static Task Signal(this IEventListener instance, string id, string messageText) => instance.Signal(id, instance.Token, () => new EventData { Id = id, Message = messageText, Cancel = instance.Cancel }); + public static Task Signal(this IEventListener instance, string id, string messageText, HttpRequestMessage request) => instance.Signal(id, instance.Token, () => new EventData { Id = id, Message = messageText, RequestMessage = request, Cancel = instance.Cancel }); + public static Task Signal(this IEventListener instance, string id, string messageText, HttpResponseMessage response) => instance.Signal(id, instance.Token, () => new EventData { Id = id, Message = messageText, RequestMessage = response.RequestMessage, ResponseMessage = response, Cancel = instance.Cancel }); + public static Task Signal(this IEventListener instance, string id, string messageText, double magnitude) => instance.Signal(id, instance.Token, () => new EventData { Id = id, Message = messageText, Value = magnitude, Cancel = instance.Cancel }); + public static Task Signal(this IEventListener instance, string id, string messageText, double magnitude, HttpRequestMessage request) => instance.Signal(id, instance.Token, () => new EventData { Id = id, Message = messageText, RequestMessage = request, Value = magnitude, Cancel = instance.Cancel }); + public static Task Signal(this IEventListener instance, string id, string messageText, double magnitude, HttpResponseMessage response) => instance.Signal(id, instance.Token, () => new EventData { Id = id, Message = messageText, RequestMessage = response.RequestMessage, ResponseMessage = response, Value = magnitude, Cancel = instance.Cancel }); + public static Task Signal(this IEventListener instance, string id, HttpRequestMessage request) => instance.Signal(id, instance.Token, () => new EventData { Id = id, RequestMessage = request, Cancel = instance.Cancel }); + public static Task Signal(this IEventListener instance, string id, HttpRequestMessage request, HttpResponseMessage response) => instance.Signal(id, instance.Token, () => new EventData { Id = id, RequestMessage = request, ResponseMessage = response, Cancel = instance.Cancel }); + public static Task Signal(this IEventListener instance, string id, HttpResponseMessage response) => instance.Signal(id, instance.Token, () => new EventData { Id = id, RequestMessage = response.RequestMessage, ResponseMessage = response, Cancel = instance.Cancel }); + public static Task Signal(this IEventListener instance, string id, EventData message) => instance.Signal(id, instance.Token, () => { message.Id = id; message.Cancel = instance.Cancel; return message; }); + + public static Task Signal(this IEventListener instance, string id, System.Uri uri) => instance.Signal(id, instance.Token, () => new EventData { Id = id, Message = uri.ToString(), Cancel = instance.Cancel }); + + public static async Task AssertNotNull(this IEventListener instance, string parameterName, object value) + { + if (value == null) + { + await instance.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.ValidationWarning, instance.Token, () => new EventData { Id = Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.ValidationWarning, Message = $"'{parameterName}' should not be null", Parameter = parameterName, Cancel = instance.Cancel }); + } + } + public static async Task AssertMinimumLength(this IEventListener instance, string parameterName, string value, int length) + { + if (value != null && value.Length < length) + { + await instance.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.ValidationWarning, instance.Token, () => new EventData { Id = Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.ValidationWarning, Message = $"Length of '{parameterName}' is less than {length}", Parameter = parameterName, Cancel = instance.Cancel }); + } + } + public static async Task AssertMaximumLength(this IEventListener instance, string parameterName, string value, int length) + { + if (value != null && value.Length > length) + { + await instance.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.ValidationWarning, instance.Token, () => new EventData { Id = Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.ValidationWarning, Message = $"Length of '{parameterName}' is greater than {length}", Parameter = parameterName, Cancel = instance.Cancel }); + } + } + + public static async Task AssertRegEx(this IEventListener instance, string parameterName, string value, string regularExpression) + { + if (value != null && !System.Text.RegularExpressions.Regex.Match(value, regularExpression).Success) + { + await instance.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.ValidationWarning, instance.Token, () => new EventData { Id = Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.ValidationWarning, Message = $"'{parameterName}' does not validate against pattern /{regularExpression}/", Parameter = parameterName, Cancel = instance.Cancel }); + } + } + public static async Task AssertEnum(this IEventListener instance, string parameterName, string value, params string[] values) + { + if (!values.Any(each => each.Equals(value))) + { + await instance.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.ValidationWarning, instance.Token, () => new EventData { Id = Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.ValidationWarning, Message = $"'{parameterName}' is not one of ({values.Aggregate((c, e) => $"'{e}',{c}")}", Parameter = parameterName, Cancel = instance.Cancel }); + } + } + public static async Task AssertObjectIsValid(this IEventListener instance, string parameterName, object inst) + { + await (inst as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.IValidates)?.Validate(instance); + } + + public static async Task AssertIsLessThan(this IEventListener instance, string parameterName, T? value, T max) where T : struct, System.IComparable + { + if (null != value && ((T)value).CompareTo(max) >= 0) + { + await instance.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.ValidationWarning, instance.Token, () => new EventData { Id = Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.ValidationWarning, Message = $"Value of '{parameterName}' must be less than {max} (value is {value})", Parameter = parameterName, Cancel = instance.Cancel }); + } + } + public static async Task AssertIsGreaterThan(this IEventListener instance, string parameterName, T? value, T max) where T : struct, System.IComparable + { + if (null != value && ((T)value).CompareTo(max) <= 0) + { + await instance.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.ValidationWarning, instance.Token, () => new EventData { Id = Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.ValidationWarning, Message = $"Value of '{parameterName}' must be greater than {max} (value is {value})", Parameter = parameterName, Cancel = instance.Cancel }); + } + } + public static async Task AssertIsLessThanOrEqual(this IEventListener instance, string parameterName, T? value, T max) where T : struct, System.IComparable + { + if (null != value && ((T)value).CompareTo(max) > 0) + { + await instance.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.ValidationWarning, instance.Token, () => new EventData { Id = Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.ValidationWarning, Message = $"Value of '{parameterName}' must be less than or equal to {max} (value is {value})", Parameter = parameterName, Cancel = instance.Cancel }); + } + } + public static async Task AssertIsGreaterThanOrEqual(this IEventListener instance, string parameterName, T? value, T max) where T : struct, System.IComparable + { + if (null != value && ((T)value).CompareTo(max) < 0) + { + await instance.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.ValidationWarning, instance.Token, () => new EventData { Id = Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.ValidationWarning, Message = $"Value of '{parameterName}' must be greater than or equal to {max} (value is {value})", Parameter = parameterName, Cancel = instance.Cancel }); + } + } + public static async Task AssertIsMultipleOf(this IEventListener instance, string parameterName, Int64? value, Int64 multiple) + { + if (null != value && value % multiple != 0) + { + await instance.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.ValidationWarning, instance.Token, () => new EventData { Id = Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.ValidationWarning, Message = $"Value of '{parameterName}' must be multiple of {multiple} (value is {value})", Parameter = parameterName, Cancel = instance.Cancel }); + } + } + public static async Task AssertIsMultipleOf(this IEventListener instance, string parameterName, double? value, double multiple) + { + if (null != value) + { + var i = (Int64)(value / multiple); + if (i != value / multiple) + { + await instance.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.ValidationWarning, instance.Token, () => new EventData { Id = Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.ValidationWarning, Message = $"Value of '{parameterName}' must be multiple of {multiple} (value is {value})", Parameter = parameterName, Cancel = instance.Cancel }); + } + } + } + public static async Task AssertIsMultipleOf(this IEventListener instance, string parameterName, decimal? value, decimal multiple) + { + if (null != value) + { + var i = (Int64)(value / multiple); + if (i != value / multiple) + { + await instance.Signal(Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.ValidationWarning, instance.Token, () => new EventData { Id = Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Events.ValidationWarning, Message = $"Value of '{parameterName}' must be multiple of {multiple} (value is {value})", Parameter = parameterName, Cancel = instance.Cancel }); + } + } + } + } + + /// + /// An Implementation of the IEventListener that supports subscribing to events and dispatching them + /// (used for manually using the lowlevel interface) + /// + public class EventListener : CancellationTokenSource, IEnumerable>, IEventListener + { + private Dictionary calls = new Dictionary(); + public IEnumerator> GetEnumerator() => calls.GetEnumerator(); + IEnumerator IEnumerable.GetEnumerator() => calls.GetEnumerator(); + public EventListener() + { + } + + public new Action Cancel => base.Cancel; + private Event tracer; + + public EventListener(params (string name, Event callback)[] initializer) + { + foreach (var each in initializer) + { + Add(each.name, each.callback); + } + } + + public void Add(string name, SynchEvent callback) + { + Add(name, (message) => { callback(message); return Task.CompletedTask; }); + } + + public void Add(string name, Event callback) + { + if (callback != null) + { + if (string.IsNullOrEmpty(name)) + { + if (calls.ContainsKey(name)) + { + tracer += callback; + } + else + { + tracer = callback; + } + } + else + { + if (calls.ContainsKey(name)) + { + calls[name ?? System.String.Empty] += callback; + } + else + { + calls[name ?? System.String.Empty] = callback; + } + } + } + } + + + public async Task Signal(string id, CancellationToken token, GetEventData createMessage) + { + using (NoSynchronizationContext) + { + if (!string.IsNullOrEmpty(id) && (calls.TryGetValue(id, out Event listener) || tracer != null)) + { + var message = createMessage(); + message.Id = id; + + await listener?.Invoke(message); + await tracer?.Invoke(message); + + if (token.IsCancellationRequested) + { + throw new OperationCanceledException($"Canceled by event {id} ", this.Token); + } + } + } + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Events.cs b/src/VMWare/generated/runtime/Events.cs new file mode 100644 index 000000000000..c81ec1b6dbca --- /dev/null +++ b/src/VMWare/generated/runtime/Events.cs @@ -0,0 +1,27 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime +{ + public static partial class Events + { + public const string Log = nameof(Log); + public const string Validation = nameof(Validation); + public const string ValidationWarning = nameof(ValidationWarning); + public const string AfterValidation = nameof(AfterValidation); + public const string RequestCreated = nameof(RequestCreated); + public const string ResponseCreated = nameof(ResponseCreated); + public const string URLCreated = nameof(URLCreated); + public const string Finally = nameof(Finally); + public const string HeaderParametersAdded = nameof(HeaderParametersAdded); + public const string BodyContentSet = nameof(BodyContentSet); + public const string BeforeCall = nameof(BeforeCall); + public const string BeforeResponseDispatch = nameof(BeforeResponseDispatch); + public const string FollowingNextLink = nameof(FollowingNextLink); + public const string DelayBeforePolling = nameof(DelayBeforePolling); + public const string Polling = nameof(Polling); + + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/EventsExtensions.cs b/src/VMWare/generated/runtime/EventsExtensions.cs new file mode 100644 index 000000000000..01d67853510e --- /dev/null +++ b/src/VMWare/generated/runtime/EventsExtensions.cs @@ -0,0 +1,27 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime +{ + public static partial class Events + { + public const string CmdletProcessRecordStart = nameof(CmdletProcessRecordStart); + public const string CmdletProcessRecordAsyncStart = nameof(CmdletProcessRecordAsyncStart); + public const string CmdletException = nameof(CmdletException); + public const string CmdletGetPipeline = nameof(CmdletGetPipeline); + public const string CmdletBeforeAPICall = nameof(CmdletBeforeAPICall); + public const string CmdletBeginProcessing = nameof(CmdletBeginProcessing); + public const string CmdletEndProcessing = nameof(CmdletEndProcessing); + public const string CmdletProcessRecordEnd = nameof(CmdletProcessRecordEnd); + public const string CmdletProcessRecordAsyncEnd = nameof(CmdletProcessRecordAsyncEnd); + public const string CmdletAfterAPICall = nameof(CmdletAfterAPICall); + + public const string Verbose = nameof(Verbose); + public const string Debug = nameof(Debug); + public const string Information = nameof(Information); + public const string Error = nameof(Error); + public const string Warning = nameof(Warning); + } + +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Extensions.cs b/src/VMWare/generated/runtime/Extensions.cs new file mode 100644 index 000000000000..70d1a99d6f26 --- /dev/null +++ b/src/VMWare/generated/runtime/Extensions.cs @@ -0,0 +1,111 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime +{ + using System.Linq; + + internal static partial class Extensions + { + + public static T ReadHeaders(this T instance, global::System.Net.Http.Headers.HttpResponseHeaders headers) where T : class + { + (instance as IHeaderSerializable)?.ReadHeaders(headers); + return instance; + } + + internal static bool If(T input, out T output) + { + if (null == input) + { + output = default(T); + return false; + } + output = input; + return true; + } + + internal static void AddIf(T value, System.Action addMethod) + { + // if value is present (and it's not just an empty JSON Object) + if (null != value && (value as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject)?.Keys.Count != 0) + { + addMethod(value); + } + } + + internal static void AddIf(T value, string serializedName, System.Action addMethod) + { + // if value is present (and it's not just an empty JSON Object) + if (null != value && (value as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject)?.Keys.Count != 0) + { + addMethod(serializedName, value); + } + } + + /// + /// Returns the first header value as a string from an HttpReponseMessage. + /// + /// the HttpResponseMessage to fetch a header from + /// the header name + /// the first header value as a string from an HttpReponseMessage. string.empty if there is no header value matching + internal static string GetFirstHeader(this System.Net.Http.HttpResponseMessage response, string headerName) => response.Headers.FirstOrDefault(each => headerName == each.Key).Value?.FirstOrDefault() ?? string.Empty; + + /// + /// Sets the Synchronization Context to null, and returns an IDisposable that when disposed, + /// will restore the synchonization context to the original value. + /// + /// This is used a less-invasive means to ensure that code in the library that doesn't + /// need to be continued in the original context doesn't have to have ConfigureAwait(false) + /// on every single await + /// + /// If the SynchronizationContext is null when this is used, the resulting IDisposable + /// will not do anything (this prevents excessive re-setting of the SynchronizationContext) + /// + /// Usage: + /// + /// using(NoSynchronizationContext) { + /// await SomeAsyncOperation(); + /// await SomeOtherOperation(); + /// } + /// + /// + /// + /// An IDisposable that will return the SynchronizationContext to original state + internal static System.IDisposable NoSynchronizationContext => System.Threading.SynchronizationContext.Current == null ? Dummy : new NoSyncContext(); + + /// + /// An instance of the Dummy IDispoable. + /// + /// + internal static System.IDisposable Dummy = new DummyDisposable(); + + /// + /// An IDisposable that does absolutely nothing. + /// + internal class DummyDisposable : System.IDisposable + { + public void Dispose() + { + } + } + /// + /// An IDisposable that saves the SynchronizationContext,sets it to null and + /// restores it to the original upon Dispose(). + /// + /// NOTE: This is designed to be less invasive than using .ConfigureAwait(false) + /// on every single await in library code (ie, places where we know we don't need + /// to continue in the same context as we went async) + /// + internal class NoSyncContext : System.IDisposable + { + private System.Threading.SynchronizationContext original = System.Threading.SynchronizationContext.Current; + internal NoSyncContext() + { + System.Threading.SynchronizationContext.SetSynchronizationContext(null); + } + public void Dispose() => System.Threading.SynchronizationContext.SetSynchronizationContext(original); + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Helpers/Extensions/StringBuilderExtensions.cs b/src/VMWare/generated/runtime/Helpers/Extensions/StringBuilderExtensions.cs new file mode 100644 index 000000000000..62f9b0f38c36 --- /dev/null +++ b/src/VMWare/generated/runtime/Helpers/Extensions/StringBuilderExtensions.cs @@ -0,0 +1,23 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System.Text; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + internal static class StringBuilderExtensions + { + /// + /// Extracts the buffered value and resets the buffer + /// + internal static string Extract(this StringBuilder builder) + { + var text = builder.ToString(); + + builder.Clear(); + + return text; + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Helpers/Extensions/TypeExtensions.cs b/src/VMWare/generated/runtime/Helpers/Extensions/TypeExtensions.cs new file mode 100644 index 000000000000..bc4d868000da --- /dev/null +++ b/src/VMWare/generated/runtime/Helpers/Extensions/TypeExtensions.cs @@ -0,0 +1,61 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + internal static class TypeExtensions + { + internal static bool IsNullable(this Type type) => + type.IsGenericType && type.GetGenericTypeDefinition().Equals(typeof(Nullable<>)); + + internal static Type GetOpenGenericInterface(this Type candidateType, Type openGenericInterfaceType) + { + + if (candidateType.IsGenericType && candidateType.GetGenericTypeDefinition() == openGenericInterfaceType) + { + return candidateType; + } + + // Check if it references it's own converter.... + + foreach (Type interfaceType in candidateType.GetInterfaces()) + { + if (interfaceType.IsGenericType + && interfaceType.GetGenericTypeDefinition().Equals(openGenericInterfaceType)) + { + return interfaceType; + } + } + + return null; + } + + // Author: Sebastian Good + // http://stackoverflow.com/questions/503263/how-to-determine-if-a-type-implements-a-specific-generic-interface-type + internal static bool ImplementsOpenGenericInterface(this Type candidateType, Type openGenericInterfaceType) + { + if (candidateType.Equals(openGenericInterfaceType)) + { + return true; + } + + if (candidateType.IsGenericType && candidateType.GetGenericTypeDefinition().Equals(openGenericInterfaceType)) + { + return true; + } + + foreach (Type i in candidateType.GetInterfaces()) + { + if (i.IsGenericType && i.ImplementsOpenGenericInterface(openGenericInterfaceType)) + { + return true; + } + } + + return false; + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Helpers/Seperator.cs b/src/VMWare/generated/runtime/Helpers/Seperator.cs new file mode 100644 index 000000000000..ea9561dcc724 --- /dev/null +++ b/src/VMWare/generated/runtime/Helpers/Seperator.cs @@ -0,0 +1,11 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + internal static class Seperator + { + internal static readonly char[] Dash = { '-' }; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Helpers/TypeDetails.cs b/src/VMWare/generated/runtime/Helpers/TypeDetails.cs new file mode 100644 index 000000000000..68a0d0e663ca --- /dev/null +++ b/src/VMWare/generated/runtime/Helpers/TypeDetails.cs @@ -0,0 +1,116 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Collections; +using System.Collections.Concurrent; +using System.Collections.Generic; +using System.Reflection; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + + + + internal class TypeDetails + { + private readonly Type info; + + internal TypeDetails(Type info) + { + this.info = info ?? throw new ArgumentNullException(nameof(info)); + } + + internal Type NonNullType { get; set; } + + internal object DefaultValue { get; set; } + + internal bool IsNullable { get; set; } + + internal bool IsList { get; set; } + + internal bool IsStringLike { get; set; } + + internal bool IsEnum => info.IsEnum; + + internal bool IsArray => info.IsArray; + + internal bool IsValueType => info.IsValueType; + + internal Type ElementType { get; set; } + + internal IJsonConverter JsonConverter { get; set; } + + #region Creation + + private static readonly ConcurrentDictionary cache = new ConcurrentDictionary(); + + internal static TypeDetails Get() => Get(typeof(T)); + + internal static TypeDetails Get(Type type) => cache.GetOrAdd(type, Create); + + private static TypeDetails Create(Type type) + { + var isGenericList = !type.IsPrimitive && type.ImplementsOpenGenericInterface(typeof(IList<>)); + var isList = !type.IsPrimitive && (isGenericList || typeof(IList).IsAssignableFrom(type)); + + var isNullable = type.IsNullable(); + + Type elementType; + + if (type.IsArray) + { + elementType = type.GetElementType(); + } + else if (isGenericList) + { + var iList = type.GetOpenGenericInterface(typeof(IList<>)); + + elementType = iList.GetGenericArguments()[0]; + } + else + { + elementType = null; + } + + var nonNullType = isNullable ? type.GetGenericArguments()[0] : type; + + var isStringLike = false; + + IJsonConverter converter; + + var jsonConverterAttribute = type.GetCustomAttribute(); + + if (jsonConverterAttribute != null) + { + converter = jsonConverterAttribute.Converter; + } + else if (nonNullType.IsEnum) + { + converter = new EnumConverter(nonNullType); + } + else if (JsonConverterFactory.Instances.TryGetValue(nonNullType, out converter)) + { + } + else if (StringLikeHelper.IsStringLike(nonNullType)) + { + isStringLike = true; + + converter = new StringLikeConverter(nonNullType); + } + + return new TypeDetails(nonNullType) { + NonNullType = nonNullType, + DefaultValue = type.IsValueType ? Activator.CreateInstance(type) : null, + IsNullable = isNullable, + IsList = isList, + IsStringLike = isStringLike, + ElementType = elementType, + JsonConverter = converter + }; + } + + #endregion + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Helpers/XHelper.cs b/src/VMWare/generated/runtime/Helpers/XHelper.cs new file mode 100644 index 000000000000..2807bedf7499 --- /dev/null +++ b/src/VMWare/generated/runtime/Helpers/XHelper.cs @@ -0,0 +1,75 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + internal static class XHelper + { + internal static JsonNode Create(JsonType type, TypeCode code, object value) + { + switch (type) + { + case JsonType.Binary : return new XBinary((byte[])value); + case JsonType.Boolean : return new JsonBoolean((bool)value); + case JsonType.Number : return new JsonNumber(value.ToString()); + case JsonType.String : return new JsonString((string)value); + } + + throw new Exception($"JsonType '{type}' does not have a fast conversion"); + } + + internal static bool TryGetElementType(TypeCode code, out JsonType type) + { + switch (code) + { + case TypeCode.Boolean : type = JsonType.Boolean; return true; + case TypeCode.Byte : type = JsonType.Number; return true; + case TypeCode.DateTime : type = JsonType.Date; return true; + case TypeCode.Decimal : type = JsonType.Number; return true; + case TypeCode.Double : type = JsonType.Number; return true; + case TypeCode.Empty : type = JsonType.Null; return true; + case TypeCode.Int16 : type = JsonType.Number; return true; + case TypeCode.Int32 : type = JsonType.Number; return true; + case TypeCode.Int64 : type = JsonType.Number; return true; + case TypeCode.SByte : type = JsonType.Number; return true; + case TypeCode.Single : type = JsonType.Number; return true; + case TypeCode.String : type = JsonType.String; return true; + case TypeCode.UInt16 : type = JsonType.Number; return true; + case TypeCode.UInt32 : type = JsonType.Number; return true; + case TypeCode.UInt64 : type = JsonType.Number; return true; + } + + type = default; + + return false; + } + + internal static JsonType GetElementType(TypeCode code) + { + switch (code) + { + case TypeCode.Boolean : return JsonType.Boolean; + case TypeCode.Byte : return JsonType.Number; + case TypeCode.DateTime : return JsonType.Date; + case TypeCode.Decimal : return JsonType.Number; + case TypeCode.Double : return JsonType.Number; + case TypeCode.Empty : return JsonType.Null; + case TypeCode.Int16 : return JsonType.Number; + case TypeCode.Int32 : return JsonType.Number; + case TypeCode.Int64 : return JsonType.Number; + case TypeCode.SByte : return JsonType.Number; + case TypeCode.Single : return JsonType.Number; + case TypeCode.String : return JsonType.String; + case TypeCode.UInt16 : return JsonType.Number; + case TypeCode.UInt32 : return JsonType.Number; + case TypeCode.UInt64 : return JsonType.Number; + default : return JsonType.Object; + } + + throw new Exception($"TypeCode '{code}' does not have a fast converter"); + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/HttpPipeline.cs b/src/VMWare/generated/runtime/HttpPipeline.cs new file mode 100644 index 000000000000..e5258e9fce94 --- /dev/null +++ b/src/VMWare/generated/runtime/HttpPipeline.cs @@ -0,0 +1,88 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime +{ + using System.Net.Http; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + using System.Collections; + using System.Linq; + + using GetEventData = System.Func; + using NextDelegate = System.Func, System.Threading.Tasks.Task>, System.Threading.Tasks.Task>; + + using SignalDelegate = System.Func, System.Threading.Tasks.Task>; + using GetParameterDelegate = System.Func, string, object>; + using SendAsyncStepDelegate = System.Func, System.Threading.Tasks.Task>, System.Func, System.Threading.Tasks.Task>, System.Threading.Tasks.Task>, System.Threading.Tasks.Task>; + using PipelineChangeDelegate = System.Action, System.Threading.Tasks.Task>, System.Func, System.Threading.Tasks.Task>, System.Threading.Tasks.Task>, System.Threading.Tasks.Task>>; + using ModuleLoadPipelineDelegate = System.Action, System.Threading.Tasks.Task>, System.Func, System.Threading.Tasks.Task>, System.Threading.Tasks.Task>, System.Threading.Tasks.Task>>, System.Action, System.Threading.Tasks.Task>, System.Func, System.Threading.Tasks.Task>, System.Threading.Tasks.Task>, System.Threading.Tasks.Task>>>; + using NewRequestPipelineDelegate = System.Action, System.Action, System.Threading.Tasks.Task>, System.Func, System.Threading.Tasks.Task>, System.Threading.Tasks.Task>, System.Threading.Tasks.Task>>, System.Action, System.Threading.Tasks.Task>, System.Func, System.Threading.Tasks.Task>, System.Threading.Tasks.Task>, System.Threading.Tasks.Task>>>; + +/* + public class DelegateBasedEventListener : IEventListener + { + private EventListenerDelegate _listener; + public DelegateBasedEventListener(EventListenerDelegate listener) + { + _listener = listener; + } + public CancellationToken Token => CancellationToken.None; + public System.Action Cancel => () => { }; + + + public Task Signal(string id, CancellationToken token, GetEventData createMessage) + { + return _listener(id, token, () => createMessage()); + } + } +*/ + /// + /// This is a necessary extension to the SendAsyncFactory to support the 'generic' delegate format. + /// + public partial class SendAsyncFactory + { + /// + /// This translates a generic-defined delegate for a listener into one that fits our ISendAsync pattern. + /// (Provided to support out-of-module delegation for Azure Cmdlets) + /// + /// The Pipeline Step as a delegate + public SendAsyncFactory(SendAsyncStepDelegate step) => this.implementation = (request, listener, next) => + step( + request, + listener.Token, + listener.Cancel, + (id, token, getEventData) => listener.Signal(id, token, () => { + var data = EventDataConverter.ConvertFrom( getEventData() ) as EventData; + data.Id = id; + data.Cancel = listener.Cancel; + data.RequestMessage = request; + return data; + }), + (req, token, cancel, listenerDelegate) => next.SendAsync(req, listener)); + } + + public partial class HttpPipeline : ISendAsync + { + public HttpPipeline Append(SendAsyncStepDelegate item) + { + if (item != null) + { + Append(new SendAsyncFactory(item)); + } + return this; + } + + public HttpPipeline Prepend(SendAsyncStepDelegate item) + { + if (item != null) + { + Prepend(new SendAsyncFactory(item)); + } + return this; + } + } +} diff --git a/src/VMWare/generated/runtime/HttpPipelineMocking.ps1 b/src/VMWare/generated/runtime/HttpPipelineMocking.ps1 new file mode 100644 index 000000000000..5f421f3b6687 --- /dev/null +++ b/src/VMWare/generated/runtime/HttpPipelineMocking.ps1 @@ -0,0 +1,110 @@ +$ErrorActionPreference = "Stop" + +# get the recording path +if (-not $TestRecordingFile) { + $TestRecordingFile = Join-Path $PSScriptRoot 'recording.json' +} + +# create the Http Pipeline Recorder +$Mock = New-Object -Type Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PipelineMock $TestRecordingFile + +# set the recorder to the appropriate mode (default to 'live') +Write-Host -ForegroundColor Green "Running '$TestMode' mode..." +switch ($TestMode) { + 'record' { + Write-Host -ForegroundColor Green "Recording to $TestRecordingFile" + $Mock.SetRecord() + $null = erase -ea 0 $TestRecordingFile + } + 'playback' { + if (-not (Test-Path $TestRecordingFile)) { + Write-Host -fore:yellow "Recording file '$TestRecordingFile' is not present. Tests expecting recorded responses will fail" + } else { + Write-Host -ForegroundColor Green "Using recording $TestRecordingFile" + } + $Mock.SetPlayback() + $Mock.ForceResponseHeaders["Retry-After"] = "0"; + } + default: { + $Mock.SetLive() + } +} + +# overrides for Pester Describe/Context/It + +function Describe( + [Parameter(Mandatory = $true, Position = 0)] + [string] $Name, + + [Alias('Tags')] + [string[]] $Tag = @(), + + [Parameter(Position = 1)] + [ValidateNotNull()] + [ScriptBlock] $Fixture = $(Throw "No test script block is provided. (Have you put the open curly brace on the next line?)") +) { + $Mock.PushDescription($Name) + try { + return pester\Describe -Name $Name -Tag $Tag -Fixture $fixture + } + finally { + $Mock.PopDescription() + } +} + +function Context( + [Parameter(Mandatory = $true, Position = 0)] + [string] $Name, + + [Alias('Tags')] + [string[]] $Tag = @(), + + [Parameter(Position = 1)] + [ValidateNotNull()] + [ScriptBlock] $Fixture = $(Throw "No test script block is provided. (Have you put the open curly brace on the next line?)") +) { + $Mock.PushContext($Name) + try { + return pester\Context -Name $Name -Tag $Tag -Fixture $fixture + } + finally { + $Mock.PopContext() + } +} + +function It { + [CmdletBinding(DefaultParameterSetName = 'Normal')] + param( + [Parameter(Mandatory = $true, Position = 0)] + [string]$Name, + + [Parameter(Position = 1)] + [ScriptBlock] $Test = { }, + + [System.Collections.IDictionary[]] $TestCases, + + [Parameter(ParameterSetName = 'Pending')] + [Switch] $Pending, + + [Parameter(ParameterSetName = 'Skip')] + [Alias('Ignore')] + [Switch] $Skip + ) + $Mock.PushScenario($Name) + + try { + if ($skip) { + return pester\It -Name $Name -Test $Test -TestCases $TestCases -Skip + } + if ($pending) { + return pester\It -Name $Name -Test $Test -TestCases $TestCases -Pending + } + return pester\It -Name $Name -Test $Test -TestCases $TestCases + } + finally { + $null = $Mock.PopScenario() + } +} + +# set the HttpPipelineAppend for all the cmdlets +$PSDefaultParameterValues["*:HttpPipelinePrepend"] = $Mock diff --git a/src/VMWare/generated/runtime/IAssociativeArray.cs b/src/VMWare/generated/runtime/IAssociativeArray.cs new file mode 100644 index 000000000000..f6102c0bf862 --- /dev/null +++ b/src/VMWare/generated/runtime/IAssociativeArray.cs @@ -0,0 +1,21 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime +{ + /// A subset of IDictionary that doesn't implement IEnumerable or IDictionary to work around PowerShell's aggressive formatter + public interface IAssociativeArray + { + System.Collections.Generic.IEnumerable Keys { get; } + System.Collections.Generic.IEnumerable Values { get; } + System.Collections.Generic.IDictionary AdditionalProperties { get; } + T this[string index] { get; set; } + int Count { get; } + void Add(string key, T value); + bool ContainsKey(string key); + bool Remove(string key); + bool TryGetValue(string key, out T value); + void Clear(); + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/IHeaderSerializable.cs b/src/VMWare/generated/runtime/IHeaderSerializable.cs new file mode 100644 index 000000000000..1793fca09072 --- /dev/null +++ b/src/VMWare/generated/runtime/IHeaderSerializable.cs @@ -0,0 +1,14 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +using System; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime +{ + public interface IHeaderSerializable + { + void ReadHeaders(global::System.Net.Http.Headers.HttpResponseHeaders headers); + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/ISendAsync.cs b/src/VMWare/generated/runtime/ISendAsync.cs new file mode 100644 index 000000000000..135700e470d3 --- /dev/null +++ b/src/VMWare/generated/runtime/ISendAsync.cs @@ -0,0 +1,296 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime +{ + using System.Net.Http; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + using System.Collections; + using System.Linq; + + /// + /// The interface for sending an HTTP request across the wire. + /// + public interface ISendAsync + { + Task SendAsync(HttpRequestMessage request, IEventListener callback); + } + + public class SendAsyncTerminalFactory : ISendAsyncTerminalFactory, ISendAsync + { + SendAsync implementation; + + public SendAsyncTerminalFactory(SendAsync implementation) => this.implementation = implementation; + public SendAsyncTerminalFactory(ISendAsync implementation) => this.implementation = implementation.SendAsync; + public ISendAsync Create() => this; + public Task SendAsync(HttpRequestMessage request, IEventListener callback) => implementation(request, callback); + } + + public partial class SendAsyncFactory : ISendAsyncFactory + { + public class Sender : ISendAsync + { + internal ISendAsync next; + internal SendAsyncStep implementation; + + public Task SendAsync(HttpRequestMessage request, IEventListener callback) => implementation(request, callback, next); + } + SendAsyncStep implementation; + + public SendAsyncFactory(SendAsyncStep implementation) => this.implementation = implementation; + public ISendAsync Create(ISendAsync next) => new Sender { next = next, implementation = implementation }; + + } + + public class HttpClientFactory : ISendAsyncTerminalFactory, ISendAsync + { + HttpClient client; + public HttpClientFactory() : this(new HttpClient()) + { + } + public HttpClientFactory(HttpClient client) => this.client = client; + public ISendAsync Create() => this; + + public Task SendAsync(HttpRequestMessage request, IEventListener callback) => client.SendAsync(request, HttpCompletionOption.ResponseHeadersRead, callback.Token); + } + + public interface ISendAsyncFactory + { + ISendAsync Create(ISendAsync next); + } + + public interface ISendAsyncTerminalFactory + { + ISendAsync Create(); + } + + public partial class HttpPipeline : ISendAsync + { + private ISendAsync pipeline; + private ISendAsyncTerminalFactory terminal; + private List steps = new List(); + + public HttpPipeline() : this(new HttpClientFactory()) + { + } + + public HttpPipeline(ISendAsyncTerminalFactory terminalStep) + { + if (terminalStep == null) + { + throw new System.ArgumentNullException(nameof(terminalStep), "Terminal Step Factory in HttpPipeline may not be null"); + } + TerminalFactory = terminalStep; + } + + /// + /// Returns an HttpPipeline with the current state of this pipeline. + /// + public HttpPipeline Clone() => new HttpPipeline(terminal) { steps = this.steps.ToList(), pipeline = this.pipeline }; + + public ISendAsyncTerminalFactory TerminalFactory + { + get => terminal; + set + { + if (value == null) + { + throw new System.ArgumentNullException("TerminalFactory in HttpPipeline may not be null"); + } + terminal = value; + } + } + + public ISendAsync Pipeline + { + get + { + // if the pipeline has been created and not invalidated, return it. + if (this.pipeline != null) + { + return this.pipeline; + } + + // create the pipeline from scratch. + var next = terminal.Create(); + foreach (var factory in steps) + { + // skip factories that return null. + next = factory.Create(next) ?? next; + } + return this.pipeline = next; + } + } + + public int Count => steps.Count; + + public HttpPipeline Prepend(ISendAsyncFactory item) + { + if (item != null) + { + steps.Add(item); + pipeline = null; + } + return this; + } + + public HttpPipeline Append(SendAsyncStep item) + { + if (item != null) + { + Append(new SendAsyncFactory(item)); + } + return this; + } + + public HttpPipeline Prepend(SendAsyncStep item) + { + if (item != null) + { + Prepend(new SendAsyncFactory(item)); + } + return this; + } + public HttpPipeline Append(IEnumerable items) + { + if (items != null) + { + foreach (var item in items) + { + Append(new SendAsyncFactory(item)); + } + } + return this; + } + + public HttpPipeline Prepend(IEnumerable items) + { + if (items != null) + { + foreach (var item in items) + { + Prepend(new SendAsyncFactory(item)); + } + } + return this; + } + + public HttpPipeline Append(ISendAsyncFactory item) + { + if (item != null) + { + steps.Insert(0, item); + pipeline = null; + } + return this; + } + public HttpPipeline Prepend(IEnumerable items) + { + if (items != null) + { + foreach (var item in items) + { + Prepend(item); + } + } + return this; + } + + public HttpPipeline Append(IEnumerable items) + { + if (items != null) + { + foreach (var item in items) + { + Append(item); + } + } + return this; + } + + // you can use this as the ISendAsync Implementation + public Task SendAsync(HttpRequestMessage request, IEventListener callback) => Pipeline.SendAsync(request, callback); + } + + internal static partial class Extensions + { + internal static HttpRequestMessage CloneAndDispose(this HttpRequestMessage original, System.Uri requestUri = null, System.Net.Http.HttpMethod method = null) + { + using (original) + { + return original.Clone(requestUri, method); + } + } + + internal static Task CloneWithContentAndDispose(this HttpRequestMessage original, System.Uri requestUri = null, System.Net.Http.HttpMethod method = null) + { + using (original) + { + return original.CloneWithContent(requestUri, method); + } + } + + /// + /// Clones an HttpRequestMessage (without the content) + /// + /// Original HttpRequestMessage (Will be diposed before returning) + /// A clone of the HttpRequestMessage + internal static HttpRequestMessage Clone(this HttpRequestMessage original, System.Uri requestUri = null, System.Net.Http.HttpMethod method = null) + { + var clone = new HttpRequestMessage + { + Method = method ?? original.Method, + RequestUri = requestUri ?? original.RequestUri, + Version = original.Version, + }; + + foreach (KeyValuePair prop in original.Properties) + { + clone.Properties.Add(prop); + } + + foreach (KeyValuePair> header in original.Headers) + { + /* + **temporarily skip cloning telemetry related headers** + clone.Headers.TryAddWithoutValidation(header.Key, header.Value); + */ + if (!"x-ms-unique-id".Equals(header.Key) && !"x-ms-client-request-id".Equals(header.Key) && !"CommandName".Equals(header.Key) && !"FullCommandName".Equals(header.Key) && !"ParameterSetName".Equals(header.Key) && !"User-Agent".Equals(header.Key)) + { + clone.Headers.TryAddWithoutValidation(header.Key, header.Value); + } + } + + return clone; + } + + /// + /// Clones an HttpRequestMessage (including the content stream and content headers) + /// + /// Original HttpRequestMessage (Will be diposed before returning) + /// A clone of the HttpRequestMessage + internal static async Task CloneWithContent(this HttpRequestMessage original, System.Uri requestUri = null, System.Net.Http.HttpMethod method = null) + { + var clone = original.Clone(requestUri, method); + var stream = new System.IO.MemoryStream(); + if (original.Content != null) + { + await original.Content.CopyToAsync(stream).ConfigureAwait(false); + stream.Position = 0; + clone.Content = new StreamContent(stream); + if (original.Content.Headers != null) + { + foreach (var h in original.Content.Headers) + { + clone.Content.Headers.Add(h.Key, h.Value); + } + } + } + return clone; + } + } +} diff --git a/src/VMWare/generated/runtime/InfoAttribute.cs b/src/VMWare/generated/runtime/InfoAttribute.cs new file mode 100644 index 000000000000..08b60cef31fa --- /dev/null +++ b/src/VMWare/generated/runtime/InfoAttribute.cs @@ -0,0 +1,34 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime +{ + using System; + + [AttributeUsage(AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Class)] + public class InfoAttribute : Attribute + { + public bool Required { get; set; } = false; + public bool ReadOnly { get; set; } = false; + public Type[] PossibleTypes { get; set; } = new Type[0]; + public string Description { get; set; } = ""; + public string SerializedName { get; set; } = ""; + } + + [AttributeUsage(AttributeTargets.Property | AttributeTargets.Field)] + public class CompleterInfoAttribute : Attribute + { + public string Script { get; set; } = ""; + public string Name { get; set; } = ""; + public string Description { get; set; } = ""; + } + + [AttributeUsage(AttributeTargets.Property | AttributeTargets.Field)] + public class DefaultInfoAttribute : Attribute + { + public string Script { get; set; } = ""; + public string Name { get; set; } = ""; + public string Description { get; set; } = ""; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Iso/IsoDate.cs b/src/VMWare/generated/runtime/Iso/IsoDate.cs new file mode 100644 index 000000000000..55d32258d0dc --- /dev/null +++ b/src/VMWare/generated/runtime/Iso/IsoDate.cs @@ -0,0 +1,214 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Text; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + internal struct IsoDate + { + internal int Year { get; set; } // 0-3000 + + internal int Month { get; set; } // 1-12 + + internal int Day { get; set; } // 1-31 + + internal int Hour { get; set; } // 0-24 + + internal int Minute { get; set; } // 0-60 (60 is a special case) + + internal int Second { get; set; } // 0-60 (60 is used for leap seconds) + + internal double Millisecond { get; set; } // 0-999.9... + + internal TimeSpan Offset { get; set; } + + internal DateTimeKind Kind { get; set; } + + internal TimeSpan TimeOfDay => new TimeSpan(Hour, Minute, Second); + + internal DateTime ToDateTime() + { + if (Kind == DateTimeKind.Utc || Offset == TimeSpan.Zero) + { + return new DateTime(Year, Month, Day, Hour, Minute, Second, (int)Millisecond, DateTimeKind.Utc); + } + + return ToDateTimeOffset().DateTime; + } + + internal DateTimeOffset ToDateTimeOffset() + { + return new DateTimeOffset( + Year, + Month, + Day, + Hour, + Minute, + Second, + (int)Millisecond, + Offset + ); + } + + internal DateTime ToUtcDateTime() + { + return ToDateTimeOffset().UtcDateTime; + } + + public override string ToString() + { + var sb = new StringBuilder(); + + // yyyy-MM-dd + sb.Append($"{Year}-{Month:00}-{Day:00}"); + + if (TimeOfDay > new TimeSpan(0)) + { + sb.Append($"T{Hour:00}:{Minute:00}"); + + if (TimeOfDay.Seconds > 0) + { + sb.Append($":{Second:00}"); + } + } + + if (Offset.Ticks == 0) + { + sb.Append('Z'); // UTC + } + else + { + if (Offset.Ticks >= 0) + { + sb.Append('+'); + } + + sb.Append($"{Offset.Hours:00}:{Offset.Minutes:00}"); + } + + return sb.ToString(); + } + + internal static IsoDate FromDateTimeOffset(DateTimeOffset date) + { + return new IsoDate { + Year = date.Year, + Month = date.Month, + Day = date.Day, + Hour = date.Hour, + Minute = date.Minute, + Second = date.Second, + Offset = date.Offset, + Kind = date.Offset == TimeSpan.Zero ? DateTimeKind.Utc : DateTimeKind.Unspecified + }; + } + + private static readonly char[] timeSeperators = { ':', '.' }; + + internal static IsoDate Parse(string text) + { + var tzIndex = -1; + var timeIndex = text.IndexOf('T'); + + var builder = new IsoDate { Day = 1, Month = 1 }; + + // TODO: strip the time zone offset off the end + string dateTime = text; + string timeZone = null; + + if (dateTime.IndexOf('Z') > -1) + { + tzIndex = dateTime.LastIndexOf('Z'); + + builder.Kind = DateTimeKind.Utc; + } + else if (dateTime.LastIndexOf('+') > 10) + { + tzIndex = dateTime.LastIndexOf('+'); + } + else if (dateTime.LastIndexOf('-') > 10) + { + tzIndex = dateTime.LastIndexOf('-'); + } + + if (tzIndex > -1) + { + timeZone = dateTime.Substring(tzIndex); + dateTime = dateTime.Substring(0, tzIndex); + } + + string date = (timeIndex == -1) ? dateTime : dateTime.Substring(0, timeIndex); + + var dateParts = date.Split(Seperator.Dash); // '-' + + for (int i = 0; i < dateParts.Length; i++) + { + var part = dateParts[i]; + + switch (i) + { + case 0: builder.Year = int.Parse(part); break; + case 1: builder.Month = int.Parse(part); break; + case 2: builder.Day = int.Parse(part); break; + } + } + + if (timeIndex > -1) + { + string[] timeParts = dateTime.Substring(timeIndex + 1).Split(timeSeperators); + + for (int i = 0; i < timeParts.Length; i++) + { + var part = timeParts[i]; + + switch (i) + { + case 0: builder.Hour = int.Parse(part); break; + case 1: builder.Minute = int.Parse(part); break; + case 2: builder.Second = int.Parse(part); break; + case 3: builder.Millisecond = double.Parse("0." + part) * 1000; break; + } + } + } + + if (timeZone != null && timeZone != "Z") + { + var hours = int.Parse(timeZone.Substring(1, 2)); + var minutes = int.Parse(timeZone.Substring(4, 2)); + + if (timeZone[0] == '-') + { + hours = -hours; + minutes = -minutes; + } + + builder.Offset = new TimeSpan(hours, minutes, 0); + } + + return builder; + } + } + + /* + YYYY # eg 1997 + YYYY-MM # eg 1997-07 + YYYY-MM-DD # eg 1997-07-16 + YYYY-MM-DDThh:mmTZD # eg 1997-07-16T19:20+01:00 + YYYY-MM-DDThh:mm:ssTZD # eg 1997-07-16T19:20:30+01:00 + YYYY-MM-DDThh:mm:ss.sTZD # eg 1997-07-16T19:20:30.45+01:00 + + where: + + YYYY = four-digit year + MM = two-digit month (01=January, etc.) + DD = two-digit day of month (01 through 31) + hh = two digits of hour (00 through 23) (am/pm NOT allowed) + mm = two digits of minute (00 through 59) + ss = two digits of second (00 through 59) + s = one or more digits representing a decimal fraction of a second + TZD = time zone designator (Z or +hh:mm or -hh:mm) + */ +} diff --git a/src/VMWare/generated/runtime/JsonType.cs b/src/VMWare/generated/runtime/JsonType.cs new file mode 100644 index 000000000000..21a8cef8d2da --- /dev/null +++ b/src/VMWare/generated/runtime/JsonType.cs @@ -0,0 +1,18 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + internal enum JsonType + { + Null = 0, + Object = 1, + Array = 2, + Binary = 3, + Boolean = 4, + Date = 5, + Number = 6, + String = 7 + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Method.cs b/src/VMWare/generated/runtime/Method.cs new file mode 100644 index 000000000000..88a572b43bc6 --- /dev/null +++ b/src/VMWare/generated/runtime/Method.cs @@ -0,0 +1,19 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime +{ + internal static class Method + { + internal static System.Net.Http.HttpMethod Get = System.Net.Http.HttpMethod.Get; + internal static System.Net.Http.HttpMethod Put = System.Net.Http.HttpMethod.Put; + internal static System.Net.Http.HttpMethod Head = System.Net.Http.HttpMethod.Head; + internal static System.Net.Http.HttpMethod Post = System.Net.Http.HttpMethod.Post; + internal static System.Net.Http.HttpMethod Delete = System.Net.Http.HttpMethod.Delete; + internal static System.Net.Http.HttpMethod Options = System.Net.Http.HttpMethod.Options; + internal static System.Net.Http.HttpMethod Trace = System.Net.Http.HttpMethod.Trace; + internal static System.Net.Http.HttpMethod Patch = new System.Net.Http.HttpMethod("PATCH"); + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Models/JsonMember.cs b/src/VMWare/generated/runtime/Models/JsonMember.cs new file mode 100644 index 000000000000..e209623792ad --- /dev/null +++ b/src/VMWare/generated/runtime/Models/JsonMember.cs @@ -0,0 +1,83 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Reflection; +using System.Runtime.Serialization; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + + + internal sealed class JsonMember + { + private readonly TypeDetails type; + + private readonly Func getter; + private readonly Action setter; + + internal JsonMember(PropertyInfo property, int defaultOrder) + { + getter = property.GetValue; + setter = property.SetValue; + + var dataMember = property.GetCustomAttribute(); + + Name = dataMember?.Name ?? property.Name; + Order = dataMember?.Order ?? defaultOrder; + EmitDefaultValue = dataMember?.EmitDefaultValue ?? true; + + this.type = TypeDetails.Get(property.PropertyType); + + CanRead = property.CanRead; + } + + internal JsonMember(FieldInfo field, int defaultOrder) + { + getter = field.GetValue; + setter = field.SetValue; + + var dataMember = field.GetCustomAttribute(); + + Name = dataMember?.Name ?? field.Name; + Order = dataMember?.Order ?? defaultOrder; + EmitDefaultValue = dataMember?.EmitDefaultValue ?? true; + + this.type = TypeDetails.Get(field.FieldType); + + CanRead = true; + } + + internal string Name { get; } + + internal int Order { get; } + + internal TypeDetails TypeDetails => type; + + internal Type Type => type.NonNullType; + + internal bool IsList => type.IsList; + + // Arrays, Sets, ... + internal Type ElementType => type.ElementType; + + internal IJsonConverter Converter => type.JsonConverter; + + internal bool EmitDefaultValue { get; } + + internal bool IsStringLike => type.IsStringLike; + + internal object DefaultValue => type.DefaultValue; + + internal bool CanRead { get; } + + #region Helpers + + internal object GetValue(object instance) => getter(instance); + + internal void SetValue(object instance, object value) => setter(instance, value); + + #endregion + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Models/JsonModel.cs b/src/VMWare/generated/runtime/Models/JsonModel.cs new file mode 100644 index 000000000000..37c418a2389f --- /dev/null +++ b/src/VMWare/generated/runtime/Models/JsonModel.cs @@ -0,0 +1,89 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; +using System.Reflection; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + internal class JsonModel + { + private Dictionary map; + private readonly object _sync = new object(); + + private JsonModel(Type type, List members) + { + Type = type ?? throw new ArgumentNullException(nameof(type)); + Members = members ?? throw new ArgumentNullException(nameof(members)); + } + + internal string Name => Type.Name; + + internal Type Type { get; } + + internal List Members { get; } + + internal JsonMember this[string name] + { + get + { + if (map == null) + { + lock (_sync) + { + if (map == null) + { + map = new Dictionary(); + + foreach (JsonMember m in Members) + { + map[m.Name.ToLower()] = m; + } + } + } + } + + + map.TryGetValue(name.ToLower(), out JsonMember member); + + return member; + } + } + + internal static JsonModel FromType(Type type) + { + var members = new List(); + + int i = 0; + + // BindingFlags.Instance | BindingFlags.Public + + foreach (var member in type.GetFields()) + { + if (member.IsStatic) continue; + + if (member.IsDefined(typeof(IgnoreDataMemberAttribute))) continue; + + members.Add(new JsonMember(member, i)); + + i++; + } + + foreach (var member in type.GetProperties(BindingFlags.Public | BindingFlags.Instance)) + { + if (member.IsDefined(typeof(IgnoreDataMemberAttribute))) continue; + + members.Add(new JsonMember(member, i)); + + i++; + } + + members.Sort((a, b) => a.Order.CompareTo(b.Order)); // inline sort + + return new JsonModel(type, members); + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Models/JsonModelCache.cs b/src/VMWare/generated/runtime/Models/JsonModelCache.cs new file mode 100644 index 000000000000..46cd0cda716d --- /dev/null +++ b/src/VMWare/generated/runtime/Models/JsonModelCache.cs @@ -0,0 +1,19 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Runtime.CompilerServices; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + internal static class JsonModelCache + { + private static readonly ConditionalWeakTable cache + = new ConditionalWeakTable(); + + internal static JsonModel Get(Type type) => cache.GetValue(type, Create); + + private static JsonModel Create(Type type) => JsonModel.FromType(type); + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Nodes/Collections/JsonArray.cs b/src/VMWare/generated/runtime/Nodes/Collections/JsonArray.cs new file mode 100644 index 000000000000..8df9b0a8a778 --- /dev/null +++ b/src/VMWare/generated/runtime/Nodes/Collections/JsonArray.cs @@ -0,0 +1,65 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Collections; +using System.Collections.Generic; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + public abstract partial class JsonArray : JsonNode, IEnumerable + { + internal override JsonType Type => JsonType.Array; + + internal abstract JsonType? ElementType { get; } + + public abstract int Count { get; } + + internal virtual bool IsSet => false; + + internal bool IsEmpty => Count == 0; + + #region IEnumerable + + IEnumerator IEnumerable.GetEnumerator() + { + throw new NotImplementedException(); + } + + IEnumerator IEnumerable.GetEnumerator() + { + throw new NotImplementedException(); + } + + #endregion + + #region Static Helpers + + internal static JsonArray Create(short[] values) + => new XImmutableArray(values); + + internal static JsonArray Create(int[] values) + => new XImmutableArray(values); + + internal static JsonArray Create(long[] values) + => new XImmutableArray(values); + + internal static JsonArray Create(decimal[] values) + => new XImmutableArray(values); + + internal static JsonArray Create(float[] values) + => new XImmutableArray(values); + + internal static JsonArray Create(string[] values) + => new XImmutableArray(values); + + internal static JsonArray Create(XBinary[] values) + => new XImmutableArray(values); + + #endregion + + internal static new JsonArray Parse(string text) + => (JsonArray)JsonNode.Parse(text); + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Nodes/Collections/XImmutableArray.cs b/src/VMWare/generated/runtime/Nodes/Collections/XImmutableArray.cs new file mode 100644 index 000000000000..6668176a4979 --- /dev/null +++ b/src/VMWare/generated/runtime/Nodes/Collections/XImmutableArray.cs @@ -0,0 +1,62 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Collections; +using System.Collections.Generic; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + internal sealed class XImmutableArray : JsonArray, IEnumerable + { + private readonly T[] values; + private readonly JsonType elementType; + private readonly TypeCode elementCode; + + internal XImmutableArray(T[] values) + { + this.values = values ?? throw new ArgumentNullException(nameof(values)); + this.elementCode = System.Type.GetTypeCode(typeof(T)); + this.elementType = XHelper.GetElementType(this.elementCode); + } + + public override JsonNode this[int index] => + XHelper.Create(elementType, elementCode, values[index]); + + internal override JsonType? ElementType => elementType; + + public override int Count => values.Length; + + public bool IsReadOnly => true; + + #region IEnumerable Members + + IEnumerator IEnumerable.GetEnumerator() + { + foreach (T value in values) + { + yield return XHelper.Create(elementType, elementCode, value); + } + } + + IEnumerator IEnumerable.GetEnumerator() + { + foreach (T value in values) + { + yield return XHelper.Create(elementType, elementCode, value); + } + } + + #endregion + + #region Static Constructor + + internal XImmutableArray Create(T[] items) + { + return new XImmutableArray(items); + } + + #endregion + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Nodes/Collections/XList.cs b/src/VMWare/generated/runtime/Nodes/Collections/XList.cs new file mode 100644 index 000000000000..6a82ecacb555 --- /dev/null +++ b/src/VMWare/generated/runtime/Nodes/Collections/XList.cs @@ -0,0 +1,64 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Collections; +using System.Collections.Generic; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + internal sealed class XList : JsonArray, IEnumerable + { + private readonly IList values; + private readonly JsonType elementType; + private readonly TypeCode elementCode; + + internal XList(IList values) + { + this.values = values ?? throw new ArgumentNullException(nameof(values)); + this.elementCode = System.Type.GetTypeCode(typeof(T)); + this.elementType = XHelper.GetElementType(this.elementCode); + } + + public override JsonNode this[int index] => + XHelper.Create(elementType, elementCode, values[index]); + + internal override JsonType? ElementType => elementType; + + public override int Count => values.Count; + + public bool IsReadOnly => values.IsReadOnly; + + #region IList + + public void Add(T value) + { + values.Add(value); + } + + public bool Contains(T value) => values.Contains(value); + + #endregion + + #region IEnumerable Members + + IEnumerator IEnumerable.GetEnumerator() + { + foreach (var value in values) + { + yield return XHelper.Create(elementType, elementCode, value); + } + } + + IEnumerator IEnumerable.GetEnumerator() + { + foreach (var value in values) + { + yield return XHelper.Create(elementType, elementCode, value); + } + } + + #endregion + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Nodes/Collections/XNodeArray.cs b/src/VMWare/generated/runtime/Nodes/Collections/XNodeArray.cs new file mode 100644 index 000000000000..9a8cee1d5b23 --- /dev/null +++ b/src/VMWare/generated/runtime/Nodes/Collections/XNodeArray.cs @@ -0,0 +1,68 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System.Collections; +using System.Collections.Generic; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + public sealed partial class XNodeArray : JsonArray, ICollection + { + private readonly List items; + + internal XNodeArray() + { + items = new List(); + } + + internal XNodeArray(params JsonNode[] values) + { + items = new List(values); + } + + public override JsonNode this[int index] => items[index]; + + internal override JsonType? ElementType => null; + + public bool IsReadOnly => false; + + public override int Count => items.Count; + + #region ICollection Members + + public void Add(JsonNode item) + { + items.Add(item); + } + + void ICollection.Clear() + { + items.Clear(); + } + + public bool Contains(JsonNode item) => items.Contains(item); + + void ICollection.CopyTo(JsonNode[] array, int arrayIndex) + { + items.CopyTo(array, arrayIndex); + } + + public bool Remove(JsonNode item) + { + return items.Remove(item); + } + + #endregion + + #region IEnumerable Members + + IEnumerator IEnumerable.GetEnumerator() + => items.GetEnumerator(); + + IEnumerator IEnumerable.GetEnumerator() + => items.GetEnumerator(); + + #endregion + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Nodes/Collections/XSet.cs b/src/VMWare/generated/runtime/Nodes/Collections/XSet.cs new file mode 100644 index 000000000000..c83a94cc74f2 --- /dev/null +++ b/src/VMWare/generated/runtime/Nodes/Collections/XSet.cs @@ -0,0 +1,60 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Collections; +using System.Collections.Generic; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + internal sealed class XSet : JsonArray, IEnumerable + { + private readonly HashSet values; + private readonly JsonType elementType; + private readonly TypeCode elementCode; + + internal XSet(IEnumerable values) + : this(new HashSet(values)) + { } + + internal XSet(HashSet values) + { + this.values = values ?? throw new ArgumentNullException(nameof(values)); + this.elementCode = System.Type.GetTypeCode(typeof(T)); + this.elementType = XHelper.GetElementType(this.elementCode); + } + + internal override JsonType Type => JsonType.Array; + + internal override JsonType? ElementType => elementType; + + public bool IsReadOnly => true; + + public override int Count => values.Count; + + internal override bool IsSet => true; + + #region IEnumerable Members + + IEnumerator IEnumerable.GetEnumerator() + { + foreach (var value in values) + { + yield return XHelper.Create(elementType, elementCode, value); + } + } + + IEnumerator IEnumerable.GetEnumerator() + { + foreach (var value in values) + { + yield return XHelper.Create(elementType, elementCode, value); + } + } + + #endregion + + internal HashSet AsHashSet() => values; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Nodes/JsonBoolean.cs b/src/VMWare/generated/runtime/Nodes/JsonBoolean.cs new file mode 100644 index 000000000000..b6d685135b68 --- /dev/null +++ b/src/VMWare/generated/runtime/Nodes/JsonBoolean.cs @@ -0,0 +1,42 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + internal sealed partial class JsonBoolean : JsonNode + { + internal static readonly JsonBoolean True = new JsonBoolean(true); + internal static readonly JsonBoolean False = new JsonBoolean(false); + + internal JsonBoolean(bool value) + { + Value = value; + } + + internal bool Value { get; } + + internal override JsonType Type => JsonType.Boolean; + + internal static new JsonBoolean Parse(string text) + { + switch (text) + { + case "false": return False; + case "true": return True; + + default: throw new ArgumentException($"Expected true or false. Was {text}."); + } + } + + #region Implicit Casts + + public static implicit operator bool(JsonBoolean data) => data.Value; + + public static implicit operator JsonBoolean(bool data) => new JsonBoolean(data); + + #endregion + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Nodes/JsonDate.cs b/src/VMWare/generated/runtime/Nodes/JsonDate.cs new file mode 100644 index 000000000000..9bdd1362a00e --- /dev/null +++ b/src/VMWare/generated/runtime/Nodes/JsonDate.cs @@ -0,0 +1,173 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + + + internal sealed partial class JsonDate : JsonNode, IEquatable, IComparable + { + internal static bool AssumeUtcWhenKindIsUnspecified = true; + + private readonly DateTimeOffset value; + + internal JsonDate(DateTime value) + { + if (value.Kind == DateTimeKind.Unspecified && AssumeUtcWhenKindIsUnspecified) + { + value = DateTime.SpecifyKind(value, DateTimeKind.Utc); + } + + this.value = value; + } + + internal JsonDate(DateTimeOffset value) + { + this.value = value; + } + + internal override JsonType Type => JsonType.Date; + + #region Helpers + + internal DateTimeOffset ToDateTimeOffset() + { + return value; + } + + internal DateTime ToDateTime() + { + if (value.Offset == TimeSpan.Zero) + { + return value.UtcDateTime; + } + + return value.DateTime; + } + + internal DateTime ToUtcDateTime() => value.UtcDateTime; + + internal int ToUnixTimeSeconds() + { + return (int)value.ToUnixTimeSeconds(); + } + + internal long ToUnixTimeMilliseconds() + { + return (int)value.ToUnixTimeMilliseconds(); + } + + internal string ToIsoString() + { + return IsoDate.FromDateTimeOffset(value).ToString(); + } + + #endregion + + public override string ToString() + { + return ToIsoString(); + } + + internal static new JsonDate Parse(string text) + { + if (text == null) throw new ArgumentNullException(nameof(text)); + + // TODO support: unixtimeseconds.partialseconds + + if (text.Length > 4 && _IsNumber(text)) // UnixTime + { + var date = DateTimeOffset.FromUnixTimeSeconds(long.Parse(text)); + + return new JsonDate(date); + } + else if (text.Length <= 4 || text[4] == '-') // ISO: 2012- + { + return new JsonDate(IsoDate.Parse(text).ToDateTimeOffset()); + } + else + { + // NOT ISO ENCODED + // "Thu, 5 Apr 2012 16:59:01 +0200", + return new JsonDate(DateTimeOffset.Parse(text)); + } + } + + private static bool _IsNumber(string text) + { + foreach (var c in text) + { + if (!char.IsDigit(c)) return false; + } + + return true; + } + + internal static JsonDate FromUnixTime(int seconds) + { + return new JsonDate(DateTimeOffset.FromUnixTimeSeconds(seconds)); + } + + internal static JsonDate FromUnixTime(double seconds) + { + var milliseconds = (long)(seconds * 1000d); + + return new JsonDate(DateTimeOffset.FromUnixTimeMilliseconds(milliseconds)); + } + + #region Implicit Casts + + public static implicit operator DateTimeOffset(JsonDate value) + => value.ToDateTimeOffset(); + + public static implicit operator DateTime(JsonDate value) + => value.ToDateTime(); + + // From Date + public static implicit operator JsonDate(DateTimeOffset value) + { + return new JsonDate(value); + } + + public static implicit operator JsonDate(DateTime value) + { + return new JsonDate(value); + } + + // From String + public static implicit operator JsonDate(string value) + { + return Parse(value); + } + + #endregion + + #region Equality + + public override bool Equals(object obj) + { + return obj is JsonDate date && date.value == this.value; + } + + public bool Equals(JsonDate other) + { + return this.value == other.value; + } + + public override int GetHashCode() => value.GetHashCode(); + + #endregion + + #region IComparable Members + + int IComparable.CompareTo(JsonDate other) + { + return value.CompareTo(other.value); + } + + #endregion + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Nodes/JsonNode.cs b/src/VMWare/generated/runtime/Nodes/JsonNode.cs new file mode 100644 index 000000000000..8e71d15c73b0 --- /dev/null +++ b/src/VMWare/generated/runtime/Nodes/JsonNode.cs @@ -0,0 +1,250 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.IO; +using System.Text; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + + + public abstract partial class JsonNode + { + internal abstract JsonType Type { get; } + + public virtual JsonNode this[int index] => throw new NotImplementedException(); + + public virtual JsonNode this[string name] + { + get => throw new NotImplementedException(); + set => throw new NotImplementedException(); + } + + #region Type Helpers + + internal bool IsArray => Type == JsonType.Array; + + internal bool IsDate => Type == JsonType.Date; + + internal bool IsObject => Type == JsonType.Object; + + internal bool IsNumber => Type == JsonType.Number; + + internal bool IsNull => Type == JsonType.Null; + + #endregion + + internal void WriteTo(TextWriter textWriter, bool pretty = true) + { + var writer = new JsonWriter(textWriter, pretty); + + writer.WriteNode(this); + } + + internal T As() + where T : new() + => new JsonSerializer().Deseralize((JsonObject)this); + + internal T[] ToArrayOf() + { + return (T[])new JsonSerializer().DeserializeArray(typeof(T[]), (JsonArray)this); + } + + #region ToString Overrides + + public override string ToString() => ToString(pretty: true); + + internal string ToString(bool pretty) + { + var sb = new StringBuilder(); + + using (var writer = new StringWriter(sb)) + { + WriteTo(writer, pretty); + + return sb.ToString(); + } + } + + #endregion + + #region Static Constructors + + internal static JsonNode Parse(string text) + { + return Parse(new SourceReader(new StringReader(text))); + } + + internal static JsonNode Parse(TextReader textReader) + => Parse(new SourceReader(textReader)); + + private static JsonNode Parse(SourceReader sourceReader) + { + using (var parser = new JsonParser(sourceReader)) + { + return parser.ReadNode(); + } + } + + internal static JsonNode FromObject(object instance) + => new JsonSerializer().Serialize(instance); + + #endregion + + #region Implict Casts + + public static implicit operator string(JsonNode node) => node.ToString(); + + #endregion + + #region Explict Casts + + public static explicit operator DateTime(JsonNode node) + { + switch (node.Type) + { + case JsonType.Date: + return ((JsonDate)node).ToDateTime(); + + case JsonType.String: + return JsonDate.Parse(node.ToString()).ToDateTime(); + + case JsonType.Number: + var num = (JsonNumber)node; + + if (num.IsInteger) + { + return DateTimeOffset.FromUnixTimeSeconds(num).UtcDateTime; + } + else + { + return DateTimeOffset.FromUnixTimeMilliseconds((long)((double)num * 1000)).UtcDateTime; + } + } + + throw new ConversionException(node, typeof(DateTime)); + } + + public static explicit operator DateTimeOffset(JsonNode node) + { + switch (node.Type) + { + case JsonType.Date : return ((JsonDate)node).ToDateTimeOffset(); + case JsonType.String : return JsonDate.Parse(node.ToString()).ToDateTimeOffset(); + + case JsonType.Number: + var num = (JsonNumber)node; + + if (num.IsInteger) + { + return DateTimeOffset.FromUnixTimeSeconds(num); + } + else + { + return DateTimeOffset.FromUnixTimeMilliseconds((long)((double)num * 1000)); + } + + } + + throw new ConversionException(node, typeof(DateTimeOffset)); + } + + public static explicit operator float(JsonNode node) + { + switch (node.Type) + { + case JsonType.Number : return (JsonNumber)node; + case JsonType.String : return float.Parse(node.ToString()); + } + + throw new ConversionException(node, typeof(float)); + } + + public static explicit operator double(JsonNode node) + { + switch (node.Type) + { + case JsonType.Number : return (JsonNumber)node; + case JsonType.String : return double.Parse(node.ToString()); + } + + throw new ConversionException(node, typeof(double)); + } + + public static explicit operator decimal(JsonNode node) + { + switch (node.Type) + { + case JsonType.Number: return (JsonNumber)node; + case JsonType.String: return decimal.Parse(node.ToString()); + } + + throw new ConversionException(node, typeof(decimal)); + } + + public static explicit operator Guid(JsonNode node) + => new Guid(node.ToString()); + + public static explicit operator short(JsonNode node) + { + switch (node.Type) + { + case JsonType.Number : return (JsonNumber)node; + case JsonType.String : return short.Parse(node.ToString()); + } + + throw new ConversionException(node, typeof(short)); + } + + public static explicit operator int(JsonNode node) + { + switch (node.Type) + { + case JsonType.Number : return (JsonNumber)node; + case JsonType.String : return int.Parse(node.ToString()); + } + + throw new ConversionException(node, typeof(int)); + } + + public static explicit operator long(JsonNode node) + { + switch (node.Type) + { + case JsonType.Number: return (JsonNumber)node; + case JsonType.String: return long.Parse(node.ToString()); + } + + throw new ConversionException(node, typeof(long)); + } + + public static explicit operator bool(JsonNode node) + => ((JsonBoolean)node).Value; + + public static explicit operator ushort(JsonNode node) + => (JsonNumber)node; + + public static explicit operator uint(JsonNode node) + => (JsonNumber)node; + + public static explicit operator ulong(JsonNode node) + => (JsonNumber)node; + + public static explicit operator TimeSpan(JsonNode node) + => TimeSpan.Parse(node.ToString()); + + public static explicit operator Uri(JsonNode node) + { + if (node.Type == JsonType.String) + { + return new Uri(node.ToString()); + } + + throw new ConversionException(node, typeof(Uri)); + } + + #endregion + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Nodes/JsonNumber.cs b/src/VMWare/generated/runtime/Nodes/JsonNumber.cs new file mode 100644 index 000000000000..9919f849ff11 --- /dev/null +++ b/src/VMWare/generated/runtime/Nodes/JsonNumber.cs @@ -0,0 +1,109 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + public sealed partial class JsonNumber : JsonNode + { + private readonly string value; + private readonly bool overflows = false; + + internal JsonNumber(string value) + { + this.value = value ?? throw new ArgumentNullException(nameof(value)); + } + + internal JsonNumber(int value) + { + this.value = value.ToString(); + } + + internal JsonNumber(long value) + { + this.value = value.ToString(); + + if (value > 9007199254740991) + { + overflows = true; + } + } + + internal JsonNumber(float value) + { + this.value = value.ToString(); + } + + internal JsonNumber(double value) + { + this.value = value.ToString(); + } + + internal override JsonType Type => JsonType.Number; + + internal string Value => value; + + #region Helpers + + internal bool Overflows => overflows; + + internal bool IsInteger => !value.Contains("."); + + internal bool IsFloat => value.Contains("."); + + #endregion + + #region Casting + + public static implicit operator byte(JsonNumber number) + => byte.Parse(number.Value); + + public static implicit operator short(JsonNumber number) + => short.Parse(number.Value); + + public static implicit operator int(JsonNumber number) + => int.Parse(number.Value); + + public static implicit operator long(JsonNumber number) + => long.Parse(number.value); + + public static implicit operator UInt16(JsonNumber number) + => ushort.Parse(number.Value); + + public static implicit operator UInt32(JsonNumber number) + => uint.Parse(number.Value); + + public static implicit operator UInt64(JsonNumber number) + => ulong.Parse(number.Value); + + public static implicit operator decimal(JsonNumber number) + => decimal.Parse(number.Value); + + public static implicit operator Double(JsonNumber number) + => double.Parse(number.value); + + public static implicit operator float(JsonNumber number) + => float.Parse(number.value); + + public static implicit operator JsonNumber(short data) + => new JsonNumber(data.ToString()); + + public static implicit operator JsonNumber(int data) + => new JsonNumber(data); + + public static implicit operator JsonNumber(long data) + => new JsonNumber(data); + + public static implicit operator JsonNumber(Single data) + => new JsonNumber(data.ToString()); + + public static implicit operator JsonNumber(double data) + => new JsonNumber(data.ToString()); + + #endregion + + public override string ToString() => value; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Nodes/JsonObject.cs b/src/VMWare/generated/runtime/Nodes/JsonObject.cs new file mode 100644 index 000000000000..5cb0a64e6711 --- /dev/null +++ b/src/VMWare/generated/runtime/Nodes/JsonObject.cs @@ -0,0 +1,172 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Collections; +using System.Collections.Generic; +using System.IO; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + public partial class JsonObject : JsonNode, IDictionary + { + private readonly Dictionary items; + + internal JsonObject() + { + items = new Dictionary(); + } + + internal JsonObject(IEnumerable> properties) + { + if (properties == null) throw new ArgumentNullException(nameof(properties)); + + items = new Dictionary(); + + foreach (var field in properties) + { + items.Add(field.Key, field.Value); + } + } + + #region IDictionary Constructors + + internal JsonObject(IDictionary dic) + { + items = new Dictionary(dic.Count); + + foreach (var pair in dic) + { + Add(pair.Key, pair.Value); + } + } + + #endregion + + internal override JsonType Type => JsonType.Object; + + #region Add Overloads + + public void Add(string name, JsonNode value) => + items.Add(name, value); + + public void Add(string name, byte[] value) => + items.Add(name, new XBinary(value)); + + public void Add(string name, DateTime value) => + items.Add(name, new JsonDate(value)); + + public void Add(string name, int value) => + items.Add(name, new JsonNumber(value.ToString())); + + public void Add(string name, long value) => + items.Add(name, new JsonNumber(value.ToString())); + + public void Add(string name, float value) => + items.Add(name, new JsonNumber(value.ToString())); + + public void Add(string name, double value) => + items.Add(name, new JsonNumber(value.ToString())); + + public void Add(string name, string value) => + items.Add(name, new JsonString(value)); + + public void Add(string name, bool value) => + items.Add(name, new JsonBoolean(value)); + + public void Add(string name, Uri url) => + items.Add(name, new JsonString(url.AbsoluteUri)); + + public void Add(string name, string[] values) => + items.Add(name, new XImmutableArray(values)); + + public void Add(string name, int[] values) => + items.Add(name, new XImmutableArray(values)); + + #endregion + + #region ICollection> Members + + void ICollection>.Add(KeyValuePair item) + { + items.Add(item.Key, item.Value); + } + + void ICollection>.Clear() + { + items.Clear(); + } + + bool ICollection>.Contains(KeyValuePair item) => + throw new NotImplementedException(); + + void ICollection>.CopyTo(KeyValuePair[] array, int arrayIndex) => + throw new NotImplementedException(); + + + int ICollection>.Count => items.Count; + + bool ICollection>.IsReadOnly => false; + + bool ICollection>.Remove(KeyValuePair item) => + throw new NotImplementedException(); + + #endregion + + #region IDictionary Members + + public bool ContainsKey(string key) => items.ContainsKey(key); + + public ICollection Keys => items.Keys; + + public bool Remove(string key) => items.Remove(key); + + public bool TryGetValue(string key, out JsonNode value) => + items.TryGetValue(key, out value); + + public ICollection Values => items.Values; + + public override JsonNode this[string key] + { + get => items[key]; + set => items[key] = value; + } + + #endregion + + #region IEnumerable + + IEnumerator> IEnumerable>.GetEnumerator() + => items.GetEnumerator(); + + IEnumerator IEnumerable.GetEnumerator() + => items.GetEnumerator(); + + #endregion + + #region Helpers + + internal static new JsonObject FromObject(object instance) => + (JsonObject)new JsonSerializer().Serialize(instance); + + #endregion + + #region Static Constructors + + internal static JsonObject FromStream(Stream stream) + { + using (var tr = new StreamReader(stream)) + { + return (JsonObject)Parse(tr); + } + } + + internal static new JsonObject Parse(string text) + { + return (JsonObject)JsonNode.Parse(text); + } + + #endregion + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Nodes/JsonString.cs b/src/VMWare/generated/runtime/Nodes/JsonString.cs new file mode 100644 index 000000000000..71e746eced5e --- /dev/null +++ b/src/VMWare/generated/runtime/Nodes/JsonString.cs @@ -0,0 +1,42 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + public sealed partial class JsonString : JsonNode, IEquatable + { + private readonly string value; + + internal JsonString(string value) + { + this.value = value ?? throw new ArgumentNullException(nameof(value)); + } + + internal override JsonType Type => JsonType.String; + + internal string Value => value; + + internal int Length => value.Length; + + #region #region Implicit Casts + + public static implicit operator string(JsonString data) => data.Value; + + public static implicit operator JsonString(string value) => new JsonString(value); + + #endregion + + public override int GetHashCode() => value.GetHashCode(); + + public override string ToString() => value; + + #region IEquatable + + bool IEquatable.Equals(JsonString other) => this.Value == other.Value; + + #endregion + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Nodes/XBinary.cs b/src/VMWare/generated/runtime/Nodes/XBinary.cs new file mode 100644 index 000000000000..ecceadbe101a --- /dev/null +++ b/src/VMWare/generated/runtime/Nodes/XBinary.cs @@ -0,0 +1,40 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + internal sealed class XBinary : JsonNode + { + private readonly byte[] _value; + private readonly string _base64; + + internal XBinary(byte[] value) + { + _value = value ?? throw new ArgumentNullException(nameof(value)); + } + + internal XBinary(string base64EncodedString) + { + _base64 = base64EncodedString ?? throw new ArgumentNullException(nameof(base64EncodedString)); + } + + internal override JsonType Type => JsonType.Binary; + + internal byte[] Value => _value ?? Convert.FromBase64String(_base64); + + #region #region Implicit Casts + + public static implicit operator byte[] (XBinary data) => data.Value; + + public static implicit operator XBinary(byte[] data) => new XBinary(data); + + #endregion + + public override int GetHashCode() => Value.GetHashCode(); + + public override string ToString() => _base64 ?? Convert.ToBase64String(_value); + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Nodes/XNull.cs b/src/VMWare/generated/runtime/Nodes/XNull.cs new file mode 100644 index 000000000000..9ffa55ae1ace --- /dev/null +++ b/src/VMWare/generated/runtime/Nodes/XNull.cs @@ -0,0 +1,15 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + internal sealed class XNull : JsonNode + { + internal static readonly XNull Instance = new XNull(); + + private XNull() { } + + internal override JsonType Type => JsonType.Null; + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Parser/Exceptions/ParseException.cs b/src/VMWare/generated/runtime/Parser/Exceptions/ParseException.cs new file mode 100644 index 000000000000..eaa0e253c5c1 --- /dev/null +++ b/src/VMWare/generated/runtime/Parser/Exceptions/ParseException.cs @@ -0,0 +1,24 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + internal class ParserException : Exception + { + internal ParserException(string message) + : base(message) + { } + + internal ParserException(string message, SourceLocation location) + : base(message) + { + + Location = location; + } + + internal SourceLocation Location { get; } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Parser/JsonParser.cs b/src/VMWare/generated/runtime/Parser/JsonParser.cs new file mode 100644 index 000000000000..8c836879d83e --- /dev/null +++ b/src/VMWare/generated/runtime/Parser/JsonParser.cs @@ -0,0 +1,180 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Collections.Generic; +using System.IO; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + public class JsonParser : IDisposable + { + private readonly TokenReader reader; + + internal JsonParser(TextReader reader) + : this(new SourceReader(reader)) { } + + internal JsonParser(SourceReader sourceReader) + { + if (sourceReader == null) + throw new ArgumentNullException(nameof(sourceReader)); + + this.reader = new TokenReader(new JsonTokenizer(sourceReader)); + + this.reader.Next(); // Start with the first token + } + + internal IEnumerable ReadNodes() + { + JsonNode node; + + while ((node = ReadNode()) != null) yield return node; + } + + internal JsonNode ReadNode() + { + if (reader.Current.Kind == TokenKind.Eof || reader.Current.IsTerminator) + { + return null; + } + + switch (reader.Current.Kind) + { + case TokenKind.LeftBrace : return ReadObject(); // { + case TokenKind.LeftBracket : return ReadArray(); // [ + + default: throw new ParserException($"Expected '{{' or '['. Was {reader.Current}."); + } + } + + private JsonNode ReadFieldValue() + { + // Boolean, Date, Null, Number, String, Uri + if (reader.Current.IsLiteral) + { + return ReadLiteral(); + } + else + { + switch (reader.Current.Kind) + { + case TokenKind.LeftBracket: return ReadArray(); + case TokenKind.LeftBrace : return ReadObject(); + + default: throw new ParserException($"Unexpected token reading field value. Was {reader.Current}."); + } + } + } + + private JsonNode ReadLiteral() + { + var literal = reader.Current; + + reader.Next(); // Read the literal token + + switch (literal.Kind) + { + case TokenKind.Boolean : return JsonBoolean.Parse(literal.Value); + case TokenKind.Null : return XNull.Instance; + case TokenKind.Number : return new JsonNumber(literal.Value); + case TokenKind.String : return new JsonString(literal.Value); + + default: throw new ParserException($"Unexpected token reading literal. Was {literal}."); + } + } + + internal JsonObject ReadObject() + { + reader.Ensure(TokenKind.LeftBrace, "object"); + + reader.Next(); // Read '{' (Object start) + + var jsonObject = new JsonObject(); + + // Read the object's fields until we reach the end of the object ('}') + while (reader.Current.Kind != TokenKind.RightBrace) + { + if (reader.Current.Kind == TokenKind.Comma) + { + reader.Next(); // Read ',' (Seperator) + } + + // Ensure we have a field name + reader.Ensure(TokenKind.String, "Expected field name"); + + var field = ReadField(); + + jsonObject.Add(field.Key, field.Value); + } + + reader.Next(); // Read '}' (Object end) + + return jsonObject; + } + + + // TODO: Use ValueTuple in C#7 + private KeyValuePair ReadField() + { + var fieldName = reader.Current.Value; + + reader.Next(); // Read the field name + + reader.Ensure(TokenKind.Colon, "field"); + + reader.Next(); // Read ':' (Field value indicator) + + return new KeyValuePair(fieldName, ReadFieldValue()); + } + + + internal JsonArray ReadArray() + { + reader.Ensure(TokenKind.LeftBracket, "array"); + + var array = new XNodeArray(); + + reader.Next(); // Read the '[' (Array start) + + // Read the array's items + while (reader.Current.Kind != TokenKind.RightBracket) + { + if (reader.Current.Kind == TokenKind.Comma) + { + reader.Next(); // Read the ',' (Seperator) + } + + if (reader.Current.IsLiteral) + { + array.Add(ReadLiteral()); // Boolean, Date, Number, Null, String, Uri + } + else if (reader.Current.Kind == TokenKind.LeftBracket) + { + array.Add(ReadArray()); // Array + } + else if (reader.Current.Kind == TokenKind.LeftBrace) + { + array.Add(ReadObject()); // Object + } + else + { + throw new ParserException($"Expected comma, literal, or object. Was {reader.Current}."); + } + } + + reader.Next(); // Read the ']' (Array end) + + return array; + } + + #region IDisposable + + public void Dispose() + { + reader.Dispose(); + } + + #endregion + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Parser/JsonToken.cs b/src/VMWare/generated/runtime/Parser/JsonToken.cs new file mode 100644 index 000000000000..1ca7c802c028 --- /dev/null +++ b/src/VMWare/generated/runtime/Parser/JsonToken.cs @@ -0,0 +1,66 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + internal enum TokenKind + { + LeftBrace, // { Object start + RightBrace, // } Object end + + LeftBracket, // [ Array start + RightBracket, // ] Array end + + Comma, // , Comma + Colon, // : Value indicator + Dot, // . Access field indicator + Terminator, // \0 Stream terminator + + Boolean = 31, // true or false + Null = 33, // null + Number = 34, // i.e. -1.93, -1, 0, 1, 1.1 + String = 35, // i.e. "text" + + Eof = 50 + } + + internal /* readonly */ struct JsonToken + { + internal static readonly JsonToken BraceOpen = new JsonToken(TokenKind.LeftBrace, "{"); + internal static readonly JsonToken BraceClose = new JsonToken(TokenKind.RightBrace, "}"); + + internal static readonly JsonToken BracketOpen = new JsonToken(TokenKind.LeftBracket, "["); + internal static readonly JsonToken BracketClose = new JsonToken(TokenKind.RightBracket, "]"); + + internal static readonly JsonToken Colon = new JsonToken(TokenKind.Colon, ":"); + internal static readonly JsonToken Comma = new JsonToken(TokenKind.Comma, ","); + internal static readonly JsonToken Terminator = new JsonToken(TokenKind.Terminator, "\0"); + + internal static readonly JsonToken True = new JsonToken(TokenKind.Boolean, "true"); + internal static readonly JsonToken False = new JsonToken(TokenKind.Boolean, "false"); + internal static readonly JsonToken Null = new JsonToken(TokenKind.Null, "null"); + + internal static readonly JsonToken Eof = new JsonToken(TokenKind.Eof, null); + + internal JsonToken(TokenKind kind, string value) + { + Kind = kind; + Value = value; + } + + internal readonly TokenKind Kind; + + internal readonly string Value; + + public override string ToString() => Kind + ": " + Value; + + #region Helpers + + internal bool IsLiteral => (byte)Kind > 30 && (byte)Kind < 40; + + internal bool IsTerminator => Kind == TokenKind.Terminator; + + #endregion + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Parser/JsonTokenizer.cs b/src/VMWare/generated/runtime/Parser/JsonTokenizer.cs new file mode 100644 index 000000000000..9f6c7dad3528 --- /dev/null +++ b/src/VMWare/generated/runtime/Parser/JsonTokenizer.cs @@ -0,0 +1,177 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Text; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + using System.IO; + + + public class JsonTokenizer : IDisposable + { + private readonly StringBuilder sb = new StringBuilder(); + + private readonly SourceReader reader; + + internal JsonTokenizer(TextReader reader) + : this(new SourceReader(reader)) { } + + internal JsonTokenizer(SourceReader reader) + { + this.reader = reader; + + reader.Next(); // Start with the first char + } + + internal JsonToken ReadNext() + { + reader.SkipWhitespace(); + + if (reader.IsEof) return JsonToken.Eof; + + switch (reader.Current) + { + case '"': return ReadQuotedString(); + + // Symbols + case '[' : reader.Next(); return JsonToken.BracketOpen; // Array start + case ']' : reader.Next(); return JsonToken.BracketClose; // Array end + case ',' : reader.Next(); return JsonToken.Comma; // Value seperator + case ':' : reader.Next(); return JsonToken.Colon; // Field value indicator + case '{' : reader.Next(); return JsonToken.BraceOpen; // Object start + case '}' : reader.Next(); return JsonToken.BraceClose; // Object end + case '\0' : reader.Next(); return JsonToken.Terminator; // Stream terminiator + + default: return ReadLiteral(); + } + } + + private JsonToken ReadQuotedString() + { + Expect('"', "quoted string indicator"); + + reader.Next(); // Read '"' (Starting quote) + + // Read until we reach an unescaped quote char + while (reader.Current != '"') + { + EnsureNotEof("quoted string"); + + if (reader.Current == '\\') + { + char escapedCharacter = reader.ReadEscapeCode(); + + sb.Append(escapedCharacter); + + continue; + } + + StoreCurrentCharacterAndReadNext(); + } + + reader.Next(); // Read '"' (Ending quote) + + return new JsonToken(TokenKind.String, value: sb.Extract()); + } + + private JsonToken ReadLiteral() + { + if (char.IsDigit(reader.Current) || + reader.Current == '-' || + reader.Current == '+') + { + return ReadNumber(); + } + + return ReadIdentifer(); + } + + private JsonToken ReadNumber() + { + // Read until we hit a non-numeric character + // -6.247737e-06 + // E + + while (char.IsDigit(reader.Current) + || reader.Current == '.' + || reader.Current == 'e' + || reader.Current == 'E' + || reader.Current == '-' + || reader.Current == '+') + { + StoreCurrentCharacterAndReadNext(); + } + + return new JsonToken(TokenKind.Number, value: sb.Extract()); + } + + int count = 0; + + private JsonToken ReadIdentifer() + { + count++; + + if (!char.IsLetter(reader.Current)) + { + throw new ParserException( + message : $"Expected literal (number, boolean, or null). Was '{reader.Current}'.", + location : reader.Location + ); + } + + // Read letters, numbers, and underscores '_' + while (char.IsLetterOrDigit(reader.Current) || reader.Current == '_') + { + StoreCurrentCharacterAndReadNext(); + } + + string text = sb.Extract(); + + switch (text) + { + case "true": return JsonToken.True; + case "false": return JsonToken.False; + case "null": return JsonToken.Null; + + default: return new JsonToken(TokenKind.String, text); + } + } + + private void Expect(char character, string description) + { + if (reader.Current != character) + { + throw new ParserException( + message: $"Expected {description} ('{character}'). Was '{reader.Current}'.", + location: reader.Location + ); + } + } + + private void EnsureNotEof(string tokenType) + { + if (reader.IsEof) + { + throw new ParserException( + message: $"Unexpected EOF while reading {tokenType}.", + location: reader.Location + ); + } + } + + private void StoreCurrentCharacterAndReadNext() + { + sb.Append(reader.Current); + + reader.Next(); + } + + public void Dispose() + { + reader.Dispose(); + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Parser/Location.cs b/src/VMWare/generated/runtime/Parser/Location.cs new file mode 100644 index 000000000000..453ffbaa6fd7 --- /dev/null +++ b/src/VMWare/generated/runtime/Parser/Location.cs @@ -0,0 +1,43 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + internal struct SourceLocation + { + private int line; + private int column; + private int position; + + internal SourceLocation(int line = 0, int column = 0, int position = 0) + { + this.line = line; + this.column = column; + this.position = position; + } + + internal int Line => line; + + internal int Column => column; + + internal int Position => position; + + internal void Advance() + { + this.column++; + this.position++; + } + + internal void MarkNewLine() + { + this.line++; + this.column = 0; + } + + internal SourceLocation Clone() + { + return new SourceLocation(line, column, position); + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Parser/Readers/SourceReader.cs b/src/VMWare/generated/runtime/Parser/Readers/SourceReader.cs new file mode 100644 index 000000000000..8e1841d59ca8 --- /dev/null +++ b/src/VMWare/generated/runtime/Parser/Readers/SourceReader.cs @@ -0,0 +1,130 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Globalization; +using System.IO; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + public sealed class SourceReader : IDisposable + { + private readonly TextReader source; + + private char current; + + private readonly SourceLocation location = new SourceLocation(); + + private bool isEof = false; + + internal SourceReader(TextReader textReader) + { + this.source = textReader ?? throw new ArgumentNullException(nameof(textReader)); + } + + /// + /// Advances to the next character + /// + internal void Next() + { + // Advance to the new line when we see a new line '\n'. + // A new line may be prefixed by a carriage return '\r'. + + if (current == '\n') + { + location.MarkNewLine(); + } + + int charCode = source.Read(); // -1 for end + + if (charCode >= 0) + { + current = (char)charCode; + } + else + { + // If we've already marked this as the EOF, throw an exception + if (isEof) + { + throw new EndOfStreamException("Cannot advance past end of stream."); + } + + isEof = true; + + current = '\0'; + } + + location.Advance(); + } + + internal void SkipWhitespace() + { + while (char.IsWhiteSpace(current)) + { + Next(); + } + } + + internal char ReadEscapeCode() + { + Next(); + + char escapedChar = current; + + Next(); // Consume escaped character + + switch (escapedChar) + { + // Special escape codes + case '"': return '"'; // " (Quotation mark) U+0022 + case '/': return '/'; // / (Solidus) U+002F + case '\\': return '\\'; // \ (Reverse solidus) U+005C + + // Control Characters + case '0': return '\0'; // Nul (0) U+0000 + case 'a': return '\a'; // Alert (7) + case 'b': return '\b'; // Backspace (8) U+0008 + case 'f': return '\f'; // Form feed (12) U+000C + case 'n': return '\n'; // Line feed (10) U+000A + case 'r': return '\r'; // Carriage return (13) U+000D + case 't': return '\t'; // Horizontal tab (9) U+0009 + case 'v': return '\v'; // Vertical tab + + // Unicode escape sequence + case 'u': return ReadUnicodeEscapeSequence(); // U+XXXX + + default: throw new Exception($"Unrecognized escape sequence '\\{escapedChar}'"); + } + } + + private readonly char[] hexCode = new char[4]; + + private char ReadUnicodeEscapeSequence() + { + hexCode[0] = current; Next(); + hexCode[1] = current; Next(); + hexCode[2] = current; Next(); + hexCode[3] = current; Next(); + + return Convert.ToChar(int.Parse( + s : new string(hexCode), + style : NumberStyles.HexNumber, + provider: NumberFormatInfo.InvariantInfo + )); + } + + internal char Current => current; + + internal bool IsEof => isEof; + + internal char Peek() => (char)source.Peek(); + + internal SourceLocation Location => location; + + public void Dispose() + { + source.Dispose(); + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Parser/TokenReader.cs b/src/VMWare/generated/runtime/Parser/TokenReader.cs new file mode 100644 index 000000000000..8b734d4cc5d9 --- /dev/null +++ b/src/VMWare/generated/runtime/Parser/TokenReader.cs @@ -0,0 +1,39 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + public class TokenReader : IDisposable + { + private readonly JsonTokenizer tokenizer; + private JsonToken current; + + internal TokenReader(JsonTokenizer tokenizer) + { + this.tokenizer = tokenizer ?? throw new ArgumentNullException(nameof(tokenizer)); + } + + internal void Next() + { + current = tokenizer.ReadNext(); + } + + internal JsonToken Current => current; + + internal void Ensure(TokenKind kind, string readerName) + { + if (current.Kind != kind) + { + throw new ParserException($"Expected {kind} while reading {readerName}). Was {current}."); + } + } + + public void Dispose() + { + tokenizer.Dispose(); + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/PipelineMocking.cs b/src/VMWare/generated/runtime/PipelineMocking.cs new file mode 100644 index 000000000000..fd6d4fc06898 --- /dev/null +++ b/src/VMWare/generated/runtime/PipelineMocking.cs @@ -0,0 +1,254 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime +{ + using System.Threading.Tasks; + using System.Collections.Generic; + using System.Net.Http; + using System.Linq; + using System.Net; + using Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json; + + public enum MockMode + { + Live, + Record, + Playback, + + } + + public class PipelineMock + { + + private System.Collections.Generic.Stack scenario = new System.Collections.Generic.Stack(); + private System.Collections.Generic.Stack context = new System.Collections.Generic.Stack(); + private System.Collections.Generic.Stack description = new System.Collections.Generic.Stack(); + + private readonly string recordingPath; + private int counter = 0; + + public static implicit operator Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep(PipelineMock instance) => instance.SendAsync; + + public MockMode Mode { get; set; } = MockMode.Live; + public PipelineMock(string recordingPath) + { + this.recordingPath = recordingPath; + } + + public void PushContext(string text) => context.Push(text); + + public void PushDescription(string text) => description.Push(text); + + + public void PushScenario(string it) + { + // reset counter too + counter = 0; + + scenario.Push(it); + } + + public void PopContext() => context.Pop(); + + public void PopDescription() => description.Pop(); + + public void PopScenario() => scenario.Pop(); + + public void SetRecord() => Mode = MockMode.Record; + + public void SetPlayback() => Mode = MockMode.Playback; + + public void SetLive() => Mode = MockMode.Live; + + public string Scenario => (scenario.Count > 0 ? scenario.Peek() : "[NoScenario]"); + public string Description => (description.Count > 0 ? description.Peek() : "[NoDescription]"); + public string Context => (context.Count > 0 ? context.Peek() : "[NoContext]"); + + /// + /// Headers that we substitute out blank values for in the recordings + /// Add additional headers as necessary + /// + public static HashSet Blacklist = new HashSet(System.StringComparer.CurrentCultureIgnoreCase) { + "Authorization", + }; + + public Dictionary ForceResponseHeaders = new Dictionary(); + + internal static XImmutableArray Removed = new XImmutableArray(new string[] { "[Filtered]" }); + + internal static IEnumerable> FilterHeaders(IEnumerable>> headers) => headers.Select(header => new KeyValuePair(header.Key, Blacklist.Contains(header.Key) ? Removed : new XImmutableArray(header.Value.ToArray()))); + + internal static JsonNode SerializeContent(HttpContent content) => content == null ? XNull.Instance : SerializeContent(content.ReadAsByteArrayAsync().Result); + + internal static JsonNode SerializeContent(byte[] content) + { + if (null == content || content.Length == 0) + { + return XNull.Instance; + } + var first = content[0]; + var last = content[content.Length - 1]; + + // plaintext for JSON/SGML/XML/HTML/STRINGS/ARRAYS + if ((first == '{' && last == '}') || (first == '<' && last == '>') || (first == '[' && last == ']') || (first == '"' && last == '"')) + { + return new JsonString(System.Text.Encoding.UTF8.GetString(content)); + } + + // base64 for everyone else + return new JsonString(System.Convert.ToBase64String(content)); + } + + internal static byte[] DeserializeContent(string content) + { + if (string.IsNullOrWhiteSpace(content)) + { + return new byte[0]; + } + + if (content.EndsWith("==")) + { + try + { + return System.Convert.FromBase64String(content); + } + catch + { + // hmm. didn't work, return it as a string I guess. + } + } + return System.Text.Encoding.UTF8.GetBytes(content); + } + + public void SaveMessage(string rqKey, HttpRequestMessage request, HttpResponseMessage response) + { + var messages = System.IO.File.Exists(this.recordingPath) ? Load() : new JsonObject() ?? new JsonObject(); + messages[rqKey] = new JsonObject { + { "Request",new JsonObject { + { "Method", request.Method.Method }, + { "RequestUri", request.RequestUri }, + { "Content", SerializeContent( request.Content) }, + { "Headers", new JsonObject(FilterHeaders(request.Headers)) }, + { "ContentHeaders", request.Content == null ? new JsonObject() : new JsonObject(FilterHeaders(request.Content.Headers))} + } }, + {"Response", new JsonObject { + { "StatusCode", (int)response.StatusCode}, + { "Headers", new JsonObject(FilterHeaders(response.Headers))}, + { "ContentHeaders", new JsonObject(FilterHeaders(response.Content.Headers))}, + { "Content", SerializeContent(response.Content) }, + }} + }; + System.IO.File.WriteAllText(this.recordingPath, messages.ToString()); + } + + private JsonObject Load() + { + if (System.IO.File.Exists(this.recordingPath)) + { + try + { + return JsonObject.FromStream(System.IO.File.OpenRead(this.recordingPath)); + } + catch + { + throw new System.Exception($"Invalid recording file: '{recordingPath}'"); + } + } + + throw new System.ArgumentException($"Missing recording file: '{recordingPath}'", nameof(recordingPath)); + } + + public HttpResponseMessage LoadMessage(string rqKey) + { + var responses = Load(); + var message = responses.Property(rqKey); + + if (null == message) + { + throw new System.ArgumentException($"Missing Request '{rqKey}' in recording file", nameof(rqKey)); + } + + var sc = 0; + var reqMessage = message.Property("Request"); + var respMessage = message.Property("Response"); + + // --------------------------- deserialize response ---------------------------------------------------------------- + var response = new HttpResponseMessage + { + StatusCode = (HttpStatusCode)respMessage.NumberProperty("StatusCode", ref sc), + Content = new System.Net.Http.ByteArrayContent(DeserializeContent(respMessage.StringProperty("Content"))) + }; + + foreach (var each in respMessage.Property("Headers")) + { + response.Headers.TryAddWithoutValidation(each.Key, each.Value.ToArrayOf()); + } + + foreach (var frh in ForceResponseHeaders) + { + response.Headers.Remove(frh.Key); + response.Headers.TryAddWithoutValidation(frh.Key, frh.Value); + } + + foreach (var each in respMessage.Property("ContentHeaders")) + { + response.Content.Headers.TryAddWithoutValidation(each.Key, each.Value.ToArrayOf()); + } + + // --------------------------- deserialize request ---------------------------------------------------------------- + response.RequestMessage = new HttpRequestMessage + { + Method = new HttpMethod(reqMessage.StringProperty("Method")), + RequestUri = new System.Uri(reqMessage.StringProperty("RequestUri")), + Content = new System.Net.Http.ByteArrayContent(DeserializeContent(reqMessage.StringProperty("Content"))) + }; + + foreach (var each in reqMessage.Property("Headers")) + { + response.RequestMessage.Headers.TryAddWithoutValidation(each.Key, each.Value.ToArrayOf()); + } + foreach (var each in reqMessage.Property("ContentHeaders")) + { + response.RequestMessage.Content.Headers.TryAddWithoutValidation(each.Key, each.Value.ToArrayOf()); + } + + return response; + } + + public async Task SendAsync(HttpRequestMessage request, IEventListener callback, ISendAsync next) + { + counter++; + var rqkey = $"{Description}+{Context}+{Scenario}+${request.Method.Method}+{request.RequestUri}+{counter}"; + + switch (Mode) + { + case MockMode.Record: + //Add following code since the request.Content will be released after sendAsync + var requestClone = request; + if (requestClone.Content != null) + { + requestClone = await request.CloneWithContent(request.RequestUri, request.Method); + } + // make the call + var response = await next.SendAsync(request, callback); + + // save the message to the recording file + SaveMessage(rqkey, requestClone, response); + + // return the response. + return response; + + case MockMode.Playback: + // load and return the response. + return LoadMessage(rqkey); + + default: + // pass-thru, do nothing + return await next.SendAsync(request, callback); + } + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Response.cs b/src/VMWare/generated/runtime/Response.cs new file mode 100644 index 000000000000..484e323a3416 --- /dev/null +++ b/src/VMWare/generated/runtime/Response.cs @@ -0,0 +1,27 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime +{ + using System; + using System.Threading.Tasks; + public class Response : EventData + { + public Response() : base() + { + } + } + + public class Response : Response + { + private Func> _resultDelegate; + private Task _resultValue; + + public Response(T value) : base() => _resultValue = Task.FromResult(value); + public Response(Func value) : base() => _resultDelegate = () => Task.FromResult(value()); + public Response(Func> value) : base() => _resultDelegate = value; + public Task Result => _resultValue ?? (_resultValue = this._resultDelegate()); + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Serialization/JsonSerializer.cs b/src/VMWare/generated/runtime/Serialization/JsonSerializer.cs new file mode 100644 index 000000000000..0046748a35f7 --- /dev/null +++ b/src/VMWare/generated/runtime/Serialization/JsonSerializer.cs @@ -0,0 +1,350 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Collections; +using System.Collections.Generic; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + internal class JsonSerializer + { + private int depth = 0; + + private SerializationOptions options = new SerializationOptions(); + + #region Deserialization + + internal T Deseralize(JsonObject json) + where T : new() + { + var contract = JsonModelCache.Get(typeof(T)); + + return (T)DeserializeObject(contract, json); + } + + internal object DeserializeObject(JsonModel contract, JsonObject json) + { + var instance = Activator.CreateInstance(contract.Type); + + depth++; + + // Ensure we don't recurse forever + if (depth > 5) throw new Exception("Depth greater than 5"); + + foreach (var field in json) + { + var member = contract[field.Key]; + + if (member != null) + { + var value = DeserializeValue(member, field.Value); + + member.SetValue(instance, value); + } + } + + depth--; + + return instance; + } + + private object DeserializeValue(JsonMember member, JsonNode value) + { + if (value.Type == JsonType.Null) return null; + + var type = member.Type; + + if (member.IsStringLike && value.Type != JsonType.String) + { + // Take the long path... + return DeserializeObject(JsonModelCache.Get(type), (JsonObject)value); + } + else if (member.Converter != null) + { + return member.Converter.FromJson(value); + } + else if (type.IsArray) + { + return DeserializeArray(type, (JsonArray)value); + } + else if (member.IsList) + { + return DeserializeList(type, (JsonArray)value); + } + else + { + var contract = JsonModelCache.Get(type); + + return DeserializeObject(contract, (JsonObject)value); + } + } + + private object DeserializeValue(Type type, JsonNode value) + { + if (type == null) throw new ArgumentNullException(nameof(type)); + + if (value.Type == JsonType.Null) return null; + + var typeDetails = TypeDetails.Get(type); + + if (typeDetails.JsonConverter != null) + { + return typeDetails.JsonConverter.FromJson(value); + } + else if (typeDetails.IsEnum) + { + return Enum.Parse(type, value.ToString(), ignoreCase: true); + } + else if (type.IsArray) + { + return DeserializeArray(type, (JsonArray)value); + } + else if (typeDetails.IsList) + { + return DeserializeList(type, (JsonArray)value); + } + else + { + var contract = JsonModelCache.Get(type); + + return DeserializeObject(contract, (JsonObject)value); + } + } + + internal Array DeserializeArray(Type type, JsonArray elements) + { + var elementType = type.GetElementType(); + + var elementTypeDetails = TypeDetails.Get(elementType); + + var array = Array.CreateInstance(elementType, elements.Count); + + int i = 0; + + if (elementTypeDetails.JsonConverter != null) + { + foreach (var value in elements) + { + array.SetValue(elementTypeDetails.JsonConverter.FromJson(value), i); + + i++; + } + } + else + { + foreach (var value in elements) + { + array.SetValue(DeserializeValue(elementType, value), i); + + i++; + } + } + + return array; + } + + internal IList DeserializeList(Type type, JsonArray jsonArray) + { + // TODO: Handle non-generic types + if (!type.IsGenericType) + throw new ArgumentException("Must be a generic type", nameof(type)); + + var elementType = type.GetGenericArguments()[0]; + + IList list; + + if (type.IsInterface) + { + // Create a concrete generic list + list = (IList)Activator.CreateInstance(typeof(List<>).MakeGenericType(elementType)); + } + else + { + list = (IList)Activator.CreateInstance(type); + } + + foreach (var value in jsonArray) + { + list.Add(DeserializeValue(elementType, value)); + } + + return list; + } + + #endregion + + #region Serialization + + internal JsonNode Serialize(object instance) => + Serialize(instance, SerializationOptions.Default); + + internal JsonNode Serialize(object instance, string[] include) => + Serialize(instance, new SerializationOptions { Include = include }); + + internal JsonNode Serialize(object instance, SerializationOptions options) + { + this.options = options; + + if (instance == null) + { + return XNull.Instance; + } + + return ReadValue(instance.GetType(), instance); + } + + #region Readers + + internal JsonArray ReadArray(IEnumerable collection) + { + var array = new XNodeArray(); + + foreach (var item in collection) + { + array.Add(ReadValue(item.GetType(), item)); + } + + return array; + } + + internal IEnumerable> ReadProperties(object instance) + { + var contract = JsonModelCache.Get(instance.GetType()); + + foreach (var member in contract.Members) + { + string name = member.Name; + + if (options.PropertyNameTransformer != null) + { + name = options.PropertyNameTransformer.Invoke(name); + } + + // Skip the field if it's not included + if ((depth == 1 && !options.IsIncluded(name))) + { + continue; + } + + var value = member.GetValue(instance); + + if (!member.EmitDefaultValue && (value == null || (member.IsList && ((IList)value).Count == 0) || value.Equals(member.DefaultValue))) + { + continue; + } + else if (options.IgnoreNullValues && value == null) // Ignore null values + { + continue; + } + + // Transform the value if there is one + if (options.Transformations != null) + { + var transform = options.GetTransformation(name); + + if (transform != null) + { + value = transform.Transformer(value); + } + } + + yield return new KeyValuePair(name, ReadValue(member.TypeDetails, value)); + } + } + + private JsonObject ReadObject(object instance) + { + depth++; + + // TODO: Guard against a self referencing graph + if (depth > options.MaxDepth) + { + depth--; + + return new JsonObject(); + } + + var node = new JsonObject(ReadProperties(instance)); + + depth--; + + return node; + } + + private JsonNode ReadValue(Type type, object value) + { + if (value == null) + { + return XNull.Instance; + } + + var member = TypeDetails.Get(type); + + return ReadValue(member, value); + } + + private JsonNode ReadValue(TypeDetails type, object value) + { + if (value == null) + { + return XNull.Instance; + } + + if (type.JsonConverter != null) + { + return type.JsonConverter.ToJson(value); + } + else if (type.IsArray) + { + switch (Type.GetTypeCode(type.ElementType)) + { + case TypeCode.String: return CreateArray((string[])value); + case TypeCode.UInt16: return CreateArray((ushort[])value); + case TypeCode.UInt32: return CreateArray((uint[])value); + case TypeCode.UInt64: return CreateArray((ulong[])value); + case TypeCode.Int16: return CreateArray((short[])value); + case TypeCode.Int32: return CreateArray((int[])value); + case TypeCode.Int64: return CreateArray((long[])value); + case TypeCode.Single: return CreateArray((float[])value); + case TypeCode.Double: return CreateArray((double[])value); + default: return ReadArray((IEnumerable)value); + } + } + else if (value is IEnumerable) + { + if (type.IsList && type.ElementType != null) + { + switch (Type.GetTypeCode(type.ElementType)) + { + case TypeCode.String: return CreateList(value); + case TypeCode.UInt16: return CreateList(value); + case TypeCode.UInt32: return CreateList(value); + case TypeCode.UInt64: return CreateList(value); + case TypeCode.Int16: return CreateList(value); + case TypeCode.Int32: return CreateList(value); + case TypeCode.Int64: return CreateList(value); + case TypeCode.Single: return CreateList(value); + case TypeCode.Double: return CreateList(value); + } + } + + return ReadArray((IEnumerable)value); + } + else + { + // Complex object + return ReadObject(value); + } + } + + private XList CreateList(object value) => new XList((IList)value); + + private XImmutableArray CreateArray(T[] array) => new XImmutableArray(array); + + #endregion + + #endregion + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Serialization/PropertyTransformation.cs b/src/VMWare/generated/runtime/Serialization/PropertyTransformation.cs new file mode 100644 index 000000000000..c4608f3fd6c1 --- /dev/null +++ b/src/VMWare/generated/runtime/Serialization/PropertyTransformation.cs @@ -0,0 +1,21 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + internal class PropertyTransformation + { + internal PropertyTransformation(string name, Func transformer) + { + Name = name ?? throw new ArgumentNullException(nameof(name)); + Transformer = transformer ?? throw new ArgumentNullException(nameof(transformer)); + } + + internal string Name { get; } + + internal Func Transformer { get; } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Serialization/SerializationOptions.cs b/src/VMWare/generated/runtime/Serialization/SerializationOptions.cs new file mode 100644 index 000000000000..1dbd1c9deee8 --- /dev/null +++ b/src/VMWare/generated/runtime/Serialization/SerializationOptions.cs @@ -0,0 +1,65 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Linq; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + internal class SerializationOptions + { + internal static readonly SerializationOptions Default = new SerializationOptions(); + + internal SerializationOptions() { } + + internal SerializationOptions( + string[] include = null, + bool ingoreNullValues = false) + { + Include = include; + IgnoreNullValues = ingoreNullValues; + } + + internal string[] Include { get; set; } + + internal string[] Exclude { get; set; } + + internal bool IgnoreNullValues { get; set; } + + internal PropertyTransformation[] Transformations { get; set; } + + internal Func PropertyNameTransformer { get; set; } + + internal int MaxDepth { get; set; } = 5; + + internal bool IsIncluded(string name) + { + if (Exclude != null) + { + return !Exclude.Any(exclude => exclude.Equals(name, StringComparison.OrdinalIgnoreCase)); + } + else if (Include != null) + { + return Include.Any(exclude => exclude.Equals(name, StringComparison.OrdinalIgnoreCase)); + } + + return true; + } + + internal PropertyTransformation GetTransformation(string propertyName) + { + if (Transformations == null) return null; + + foreach (var t in Transformations) + { + if (t.Name.Equals(propertyName, StringComparison.OrdinalIgnoreCase)) + { + return t; + } + } + + return null; + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/SerializationMode.cs b/src/VMWare/generated/runtime/SerializationMode.cs new file mode 100644 index 000000000000..c2d48a43baec --- /dev/null +++ b/src/VMWare/generated/runtime/SerializationMode.cs @@ -0,0 +1,16 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime +{ + [System.Flags] + public enum SerializationMode + { + None = 0, + IncludeHeaders = 1 << 0, + IncludeReadOnly = 1 << 1, + + IncludeAll = IncludeHeaders | IncludeReadOnly + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/TypeConverterExtensions.cs b/src/VMWare/generated/runtime/TypeConverterExtensions.cs new file mode 100644 index 000000000000..b73ab0288ee2 --- /dev/null +++ b/src/VMWare/generated/runtime/TypeConverterExtensions.cs @@ -0,0 +1,190 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System.IO; +using System.Linq; +using System.Xml; +using System.Xml.Serialization; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.PowerShell +{ + internal static class TypeConverterExtensions + { + internal static T[] SelectToArray(object source, System.Func converter) + { + // null begets null + if (source == null) + { + return null; + } + + // single values and strings are just encapsulated in the array. + if (source is string || !(source is System.Collections.IEnumerable)) + { + try + { + return new T[] { (T)converter(source) }; + } +#if DEBUG + catch (System.Exception E) + { + System.Console.Error.WriteLine($"{E.GetType().Name}/{E.Message}/{E.StackTrace}"); + } +#else + catch + { + // silent conversion fail + } +#endif + return new T[0]; // empty result if couldn't convert. + } + + var result = new System.Collections.Generic.List(); + foreach (var each in (System.Collections.IEnumerable)source) + { + try + { + result.Add((T)converter(each)); + } +#if DEBUG + catch (System.Exception E) + { + System.Console.Error.WriteLine($"{E.GetType().Name}/{E.Message}/{E.StackTrace}"); + } +#else + catch + { + // silent conversion fail + } +#endif + } + return result.ToArray(); + } + + internal static System.Collections.Generic.IEnumerable GetPropertyKeys(this System.Collections.Generic.IDictionary dictionary) + { + if (null != dictionary) + { + foreach (var each in dictionary.Keys) + { + yield return each; + } + } + } + internal static System.Collections.Generic.IEnumerable GetPropertyKeys(this System.Collections.IDictionary dictionary) + { + if (null != dictionary) + { + foreach (var each in dictionary.Keys) + { + yield return each; + } + } + } + internal static System.Collections.Generic.IEnumerable GetPropertyKeys(this System.Management.Automation.PSObject instance) + { + if (null != instance) + { + foreach (var each in instance.Properties) + { + yield return each; + } + } + } + + internal static System.Collections.Generic.IEnumerable> GetFilteredProperties(this System.Collections.Generic.IDictionary instance, global::System.Collections.Generic.HashSet exclusions = null, global::System.Collections.Generic.HashSet inclusions = null) + { + return (null == instance || instance.Count == 0) ? + Enumerable.Empty>() : + instance.Keys + .Where(key => + !(true == exclusions?.Contains(key?.ToString())) + && (false != inclusions?.Contains(key?.ToString()))) + .Select(key => new System.Collections.Generic.KeyValuePair(key, instance[key])); + } + + internal static System.Collections.Generic.IEnumerable> GetFilteredProperties(this System.Collections.IDictionary instance, global::System.Collections.Generic.HashSet exclusions = null, global::System.Collections.Generic.HashSet inclusions = null) + { + return (null == instance || instance.Count == 0) ? + Enumerable.Empty>() : + instance.Keys.OfType() + .Where(key => + !(true == exclusions?.Contains(key?.ToString())) + && (false != inclusions?.Contains(key?.ToString()))) + .Select(key => new System.Collections.Generic.KeyValuePair(key, instance[key])); + } + + internal static System.Collections.Generic.IEnumerable> GetFilteredProperties(this System.Management.Automation.PSObject instance, global::System.Collections.Generic.HashSet exclusions = null, global::System.Collections.Generic.HashSet inclusions = null) + { + // new global::System.Collections.Generic.HashSet(System.StringComparer.InvariantCultureIgnoreCase) + return (null == instance || !instance.Properties.Any()) ? + Enumerable.Empty>() : + instance.Properties + .Where(property => + !(true == exclusions?.Contains(property.Name)) + && (false != inclusions?.Contains(property.Name))) + .Select(property => new System.Collections.Generic.KeyValuePair(property.Name, property.Value)); + } + + + internal static T GetValueForProperty(this System.Collections.Generic.IDictionary dictionary, string propertyName, T defaultValue, System.Func converter) + { + try + { + var key = System.Linq.Enumerable.FirstOrDefault(dictionary.Keys, each => System.String.Equals(each.ToString(), propertyName, System.StringComparison.CurrentCultureIgnoreCase)); + return key == null ? defaultValue : (T)converter(dictionary[key]); + } +#if DEBUG + catch (System.Exception E) + { + System.Console.Error.WriteLine($"{E.GetType().Name}/{E.Message}/{E.StackTrace}"); + } +#else + catch + { + } +#endif + return defaultValue; + } + internal static T GetValueForProperty(this System.Collections.IDictionary dictionary, string propertyName, T defaultValue, System.Func converter) + { + try + { + var key = System.Linq.Enumerable.FirstOrDefault(dictionary.Keys.OfType(), each => System.String.Equals(each.ToString(), propertyName, System.StringComparison.CurrentCultureIgnoreCase)); + return key == null ? defaultValue : (T)converter(dictionary[key]); + } +#if DEBUG + catch (System.Exception E) + { + System.Console.Error.WriteLine($"{E.GetType().Name}/{E.Message}/{E.StackTrace}"); + } +#else + catch + { + } +#endif + return defaultValue; + } + + internal static T GetValueForProperty(this System.Management.Automation.PSObject psObject, string propertyName, T defaultValue, System.Func converter) + { + try + { + var property = System.Linq.Enumerable.FirstOrDefault(psObject.Properties, each => System.String.Equals(each.Name.ToString(), propertyName, System.StringComparison.CurrentCultureIgnoreCase)); + return property == null ? defaultValue : (T)converter(property.Value); + } +#if DEBUG + catch (System.Exception E) + { + System.Console.Error.WriteLine($"{E.GetType().Name}/{E.Message}/{E.StackTrace}"); + } +#else + catch + { + } +#endif + return defaultValue; + } + } +} diff --git a/src/VMWare/generated/runtime/UndeclaredResponseException.cs b/src/VMWare/generated/runtime/UndeclaredResponseException.cs new file mode 100644 index 000000000000..870e4ee2a409 --- /dev/null +++ b/src/VMWare/generated/runtime/UndeclaredResponseException.cs @@ -0,0 +1,104 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime +{ + using System; + using System.Net.Http; + using System.Net.Http.Headers; + using static Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Extensions; + + public class RestException : Exception, IDisposable + { + public System.Net.HttpStatusCode StatusCode { get; set; } + public string Code { get; protected set; } + protected string message; + public HttpRequestMessage RequestMessage { get; protected set; } + public HttpResponseHeaders ResponseHeaders { get; protected set; } + + public string ResponseBody { get; protected set; } + public string ClientRequestId { get; protected set; } + public string RequestId { get; protected set; } + + public override string Message => message; + public string Action { get; protected set; } + + public RestException(System.Net.Http.HttpResponseMessage response) + { + StatusCode = response.StatusCode; + //CloneWithContent will not work here since the content is disposed after sendAsync + //Besides, it seems there is no need for the request content cloned here. + RequestMessage = response.RequestMessage.Clone(); + ResponseBody = response.Content.ReadAsStringAsync().Result; + ResponseHeaders = response.Headers; + + RequestId = response.GetFirstHeader("x-ms-request-id"); + ClientRequestId = response.GetFirstHeader("x-ms-client-request-id"); + + try + { + // try to parse the body as JSON, and see if a code and message are in there. + var json = Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonNode.Parse(ResponseBody) as Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json.JsonObject; + + // see if there is an error block in the body + json = json.Property("error") ?? json; + + { Code = If(json?.PropertyT("code"), out var c) ? (string)c : (string)StatusCode.ToString(); } + { message = If(json?.PropertyT("message"), out var m) ? (string)m : (string)Message; } + { Action = If(json?.PropertyT("action"), out var a) ? (string)a : (string)Action; } + } +#if DEBUG + catch (System.Exception E) + { + System.Console.Error.WriteLine($"{E.GetType().Name}/{E.Message}/{E.StackTrace}"); + } +#else + catch + { + // couldn't get the code/message from the body response. + // we'll create one below. + } +#endif + if (string.IsNullOrEmpty(message)) + { + if (StatusCode >= System.Net.HttpStatusCode.BadRequest && StatusCode < System.Net.HttpStatusCode.InternalServerError) + { + message = $"The server responded with a Request Error, Status: {StatusCode}"; + } + else if (StatusCode >= System.Net.HttpStatusCode.InternalServerError) + { + message = $"The server responded with a Server Error, Status: {StatusCode}"; + } + else + { + message = $"The server responded with an unrecognized response, Status: {StatusCode}"; + } + } + } + + public void Dispose() + { + ((IDisposable)RequestMessage).Dispose(); + } + } + + public class RestException : RestException + { + public T Error { get; protected set; } + public RestException(System.Net.Http.HttpResponseMessage response, T error) : base(response) + { + Error = error; + } + } + + + public class UndeclaredResponseException : RestException + { + public UndeclaredResponseException(System.Net.Http.HttpResponseMessage response) : base(response) + { + + } + } +} \ No newline at end of file diff --git a/src/VMWare/generated/runtime/Writers/JsonWriter.cs b/src/VMWare/generated/runtime/Writers/JsonWriter.cs new file mode 100644 index 000000000000..183c671466f3 --- /dev/null +++ b/src/VMWare/generated/runtime/Writers/JsonWriter.cs @@ -0,0 +1,223 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +using System; +using System.Collections.Generic; +using System.IO; +using System.Web; + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Json +{ + internal class JsonWriter + { + const string indentation = " "; // 2 spaces + + private readonly bool pretty; + private readonly TextWriter writer; + + protected int currentLevel = 0; + + internal JsonWriter(TextWriter writer, bool pretty = true) + { + this.writer = writer ?? throw new ArgumentNullException(nameof(writer)); + this.pretty = pretty; + } + + internal void WriteNode(JsonNode node) + { + switch (node.Type) + { + case JsonType.Array: WriteArray((IEnumerable)node); break; + case JsonType.Object: WriteObject((JsonObject)node); break; + + // Primitives + case JsonType.Binary: WriteBinary((XBinary)node); break; + case JsonType.Boolean: WriteBoolean((bool)node); break; + case JsonType.Date: WriteDate((JsonDate)node); break; + case JsonType.Null: WriteNull(); break; + case JsonType.Number: WriteNumber((JsonNumber)node); break; + case JsonType.String: WriteString(node); break; + } + } + + internal void WriteArray(IEnumerable array) + { + currentLevel++; + + writer.Write('['); + + bool doIndentation = false; + + if (pretty) + { + foreach (var node in array) + { + if (node.Type == JsonType.Object || node.Type == JsonType.Array) + { + doIndentation = true; + + break; + } + } + } + + bool isFirst = true; + + foreach (JsonNode node in array) + { + if (!isFirst) writer.Write(','); + + if (doIndentation) + { + WriteIndent(); + } + else if (pretty) + { + writer.Write(' '); + } + + WriteNode(node); + + isFirst = false; + } + + currentLevel--; + + if (doIndentation) + { + WriteIndent(); + } + else if (pretty) + { + writer.Write(' '); + } + + writer.Write(']'); + } + + internal void WriteIndent() + { + if (pretty) + { + writer.Write(Environment.NewLine); + + for (int level = 0; level < currentLevel; level++) + { + writer.Write(indentation); + } + } + } + + internal void WriteObject(JsonObject obj) + { + currentLevel++; + + writer.Write('{'); + + bool isFirst = true; + + foreach (var field in obj) + { + if (!isFirst) writer.Write(','); + + WriteIndent(); + + WriteFieldName(field.Key); + + writer.Write(':'); + + if (pretty) + { + writer.Write(' '); + } + + // Write the field value + WriteNode(field.Value); + + isFirst = false; + } + + currentLevel--; + + WriteIndent(); + + writer.Write('}'); + } + + internal void WriteFieldName(string fieldName) + { + writer.Write('"'); + writer.Write(HttpUtility.JavaScriptStringEncode(fieldName)); + writer.Write('"'); + } + + #region Primitives + + internal void WriteBinary(XBinary value) + { + writer.Write('"'); + writer.Write(value.ToString()); + writer.Write('"'); + } + + internal void WriteBoolean(bool value) + { + writer.Write(value ? "true" : "false"); + } + + internal void WriteDate(JsonDate date) + { + if (date.ToDateTime().Year == 1) + { + WriteNull(); + } + else + { + writer.Write('"'); + writer.Write(date.ToIsoString()); + writer.Write('"'); + } + } + + internal void WriteNull() + { + writer.Write("null"); + } + + internal void WriteNumber(JsonNumber number) + { + if (number.Overflows) + { + writer.Write('"'); + writer.Write(number.Value); + writer.Write('"'); + } + else + { + writer.Write(number.Value); + } + } + + internal void WriteString(string text) + { + if (text == null) + { + WriteNull(); + } + else + { + writer.Write('"'); + + writer.Write(HttpUtility.JavaScriptStringEncode(text)); + + writer.Write('"'); + } + } + + #endregion + } +} + + +// TODO: Replace with System.Text.Json when available diff --git a/src/VMWare/generated/runtime/delegates.cs b/src/VMWare/generated/runtime/delegates.cs new file mode 100644 index 000000000000..0544b5fe4e52 --- /dev/null +++ b/src/VMWare/generated/runtime/delegates.cs @@ -0,0 +1,23 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +namespace Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime +{ + using System; + using System.Collections; + using System.Collections.Generic; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + using GetEventData=System.Func; + + public delegate Task SendAsync(HttpRequestMessage request, IEventListener callback); + public delegate Task SendAsyncStep(HttpRequestMessage request, IEventListener callback, ISendAsync next); + public delegate Task SignalEvent(string id, CancellationToken token, GetEventData getEventData); + public delegate Task Event(EventData message); + public delegate void SynchEvent(EventData message); + public delegate Task OnResponse(Response message); + public delegate Task OnResponse(Response message); +} \ No newline at end of file diff --git a/src/VMWare/help/Az.VMWare.md b/src/VMWare/help/Az.VMWare.md new file mode 100644 index 000000000000..99ed04cceca7 --- /dev/null +++ b/src/VMWare/help/Az.VMWare.md @@ -0,0 +1,55 @@ +--- +Module Name: Az.VMWare +Module Guid: 78d2fac8-ec90-47ad-b8aa-a27106b158f5 +Download Help Link: https://docs.microsoft.com/en-us/powershell/module/az.vmware +Help Version: 1.0.0.0 +Locale: en-US +--- + +# Az.VMWare Module +## Description +Microsoft Azure PowerShell: VMWare cmdlets + +## Az.VMWare Cmdlets +### [Get-AzVMWareAuthorization](Get-AzVMWareAuthorization.md) +Get an ExpressRoute Circuit Authorization by name in a private cloud + +### [Get-AzVMWareCluster](Get-AzVMWareCluster.md) +Get a cluster by name in a private cloud + +### [Get-AzVMWarePrivateCloud](Get-AzVMWarePrivateCloud.md) +Get a private cloud + +### [Get-AzVMWarePrivateCloudAdminCredentials](Get-AzVMWarePrivateCloudAdminCredentials.md) +List the admin credentials for the private cloud + +### [New-AzVMWareAuthorization](New-AzVMWareAuthorization.md) +Create or update an ExpressRoute Circuit Authorization in a private cloud + +### [New-AzVMWareCluster](New-AzVMWareCluster.md) +Create or update a cluster in a private cloud + +### [New-AzVMWarePrivateCloud](New-AzVMWarePrivateCloud.md) +Create or update a private cloud + +### [Remove-AzVMWareAuthorization](Remove-AzVMWareAuthorization.md) +Delete an ExpressRoute Circuit Authorization in a private cloud + +### [Remove-AzVMWareCluster](Remove-AzVMWareCluster.md) +Delete a cluster in a private cloud + +### [Remove-AzVMWarePrivateCloud](Remove-AzVMWarePrivateCloud.md) +Delete a private cloud + +### [Test-AzVMWareLocationQuotaAvailability](Test-AzVMWareLocationQuotaAvailability.md) +Return quota for subscription by region + +### [Test-AzVMWareLocationTrialAvailability](Test-AzVMWareLocationTrialAvailability.md) +Return trial status for subscription by region + +### [Update-AzVMWareCluster](Update-AzVMWareCluster.md) +Update a cluster in a private cloud + +### [Update-AzVMWarePrivateCloud](Update-AzVMWarePrivateCloud.md) +Update a private cloud + diff --git a/src/VMWare/help/Get-AzVMWareAuthorization.md b/src/VMWare/help/Get-AzVMWareAuthorization.md new file mode 100644 index 000000000000..1061ff8f7b48 --- /dev/null +++ b/src/VMWare/help/Get-AzVMWareAuthorization.md @@ -0,0 +1,188 @@ +--- +external help file: +Module Name: Az.VMWare +online version: https://docs.microsoft.com/en-us/powershell/module/az.vmware/get-azvmwareauthorization +schema: 2.0.0 +--- + +# Get-AzVMWareAuthorization + +## SYNOPSIS +Get an ExpressRoute Circuit Authorization by name in a private cloud + +## SYNTAX + +### List (Default) +``` +Get-AzVMWareAuthorization -PrivateCloudName -ResourceGroupName [-SubscriptionId ] + [-DefaultProfile ] [] +``` + +### Get +``` +Get-AzVMWareAuthorization -Name -PrivateCloudName -ResourceGroupName + [-SubscriptionId ] [-DefaultProfile ] [] +``` + +### GetViaIdentity +``` +Get-AzVMWareAuthorization -InputObject [-DefaultProfile ] [] +``` + +## DESCRIPTION +Get an ExpressRoute Circuit Authorization by name in a private cloud + +## EXAMPLES + +### Example 1: Get authorization +```powershell +PS C:\> Get-AzVMWareAuthorization -Name azps-test-auth -PrivateCloudName azps-test-cloud -ResourceGroupName azps-test-group + + + +Name Type +---- ---- +azps-test-auth Microsoft.AVS/privateClouds/authorizations +``` + +This cmdlet gets authorization `azps-test-auth` under private cloud `azps-test-cloud` + +### Example 2: List authorization +```powershell +PS C:\> Get-AzVMWareAuthorization -PrivateCloudName azps-test-cloud -ResourceGroupName azps-test-group + + + +Name Type +---- ---- +azps-test-auth Microsoft.AVS/privateClouds/authorizations +``` + +This cmdlet lists authorization `azps-test-auth` under private cloud `azps-test-cloud` + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Identity Parameter +To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity +Parameter Sets: GetViaIdentity +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +Name of the ExpressRoute Circuit Authorization in the private cloud + +```yaml +Type: System.String +Parameter Sets: Get +Aliases: AuthorizationName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PrivateCloudName +Name of the private cloud + +```yaml +Type: System.String +Parameter Sets: Get, List +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. +The name is case insensitive. + +```yaml +Type: System.String +Parameter Sets: Get, List +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SubscriptionId +The ID of the target subscription. + +```yaml +Type: System.String[] +Parameter Sets: Get, List +Aliases: + +Required: False +Position: Named +Default value: (Get-AzContext).Subscription.Id +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity + +## OUTPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorization + +## NOTES + +ALIASES + +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + + +INPUTOBJECT : Identity Parameter + - `[AuthorizationName ]`: Name of the ExpressRoute Circuit Authorization in the private cloud + - `[ClusterName ]`: Name of the cluster in the private cloud + - `[HcxEnterpriseSiteName ]`: Name of the HCX Enterprise Site in the private cloud + - `[Id ]`: Resource identity path + - `[Location ]`: Azure region + - `[PrivateCloudName ]`: Name of the private cloud + - `[ResourceGroupName ]`: The name of the resource group. The name is case insensitive. + - `[SubscriptionId ]`: The ID of the target subscription. + +## RELATED LINKS + diff --git a/src/VMWare/help/Get-AzVMWareCluster.md b/src/VMWare/help/Get-AzVMWareCluster.md new file mode 100644 index 000000000000..9a660b3f799f --- /dev/null +++ b/src/VMWare/help/Get-AzVMWareCluster.md @@ -0,0 +1,184 @@ +--- +external help file: +Module Name: Az.VMWare +online version: https://docs.microsoft.com/en-us/powershell/module/az.vmware/get-azvmwarecluster +schema: 2.0.0 +--- + +# Get-AzVMWareCluster + +## SYNOPSIS +Get a cluster by name in a private cloud + +## SYNTAX + +### List (Default) +``` +Get-AzVMWareCluster -PrivateCloudName -ResourceGroupName [-SubscriptionId ] + [-DefaultProfile ] [] +``` + +### Get +``` +Get-AzVMWareCluster -Name -PrivateCloudName -ResourceGroupName + [-SubscriptionId ] [-DefaultProfile ] [] +``` + +### GetViaIdentity +``` +Get-AzVMWareCluster -InputObject [-DefaultProfile ] [] +``` + +## DESCRIPTION +Get a cluster by name in a private cloud + +## EXAMPLES + +### Example 1: Get cluster +```powershell +PS C:\> Get-AzVMWareCluster -Name azps-test-cluster -PrivateCloudName azps-test-cloud -ResourceGroupName azps-test-group + +Name Type +---- ---- +azps-test-cluster Microsoft.AVS/privateClouds/clusters +``` + +Get cluster + +### Example 2: List clusters +```powershell +PS C:\> Get-AzVMWareCluster -PrivateCloudName azps-test-cloud -ResourceGroupName azps-test-group + +Name Type +---- ---- +azps-test-cluster Microsoft.AVS/privateClouds/clusters +``` + +List clusters + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Identity Parameter +To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity +Parameter Sets: GetViaIdentity +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +Name of the cluster in the private cloud + +```yaml +Type: System.String +Parameter Sets: Get +Aliases: ClusterName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PrivateCloudName +Name of the private cloud + +```yaml +Type: System.String +Parameter Sets: Get, List +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. +The name is case insensitive. + +```yaml +Type: System.String +Parameter Sets: Get, List +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SubscriptionId +The ID of the target subscription. + +```yaml +Type: System.String[] +Parameter Sets: Get, List +Aliases: + +Required: False +Position: Named +Default value: (Get-AzContext).Subscription.Id +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity + +## OUTPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICluster + +## NOTES + +ALIASES + +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + + +INPUTOBJECT : Identity Parameter + - `[AuthorizationName ]`: Name of the ExpressRoute Circuit Authorization in the private cloud + - `[ClusterName ]`: Name of the cluster in the private cloud + - `[HcxEnterpriseSiteName ]`: Name of the HCX Enterprise Site in the private cloud + - `[Id ]`: Resource identity path + - `[Location ]`: Azure region + - `[PrivateCloudName ]`: Name of the private cloud + - `[ResourceGroupName ]`: The name of the resource group. The name is case insensitive. + - `[SubscriptionId ]`: The ID of the target subscription. + +## RELATED LINKS + diff --git a/src/VMWare/help/Get-AzVMWarePrivateCloud.md b/src/VMWare/help/Get-AzVMWarePrivateCloud.md new file mode 100644 index 000000000000..97d70a0d1d76 --- /dev/null +++ b/src/VMWare/help/Get-AzVMWarePrivateCloud.md @@ -0,0 +1,185 @@ +--- +external help file: +Module Name: Az.VMWare +online version: https://docs.microsoft.com/en-us/powershell/module/az.vmware/get-azvmwareprivatecloud +schema: 2.0.0 +--- + +# Get-AzVMWarePrivateCloud + +## SYNOPSIS +Get a private cloud + +## SYNTAX + +### List1 (Default) +``` +Get-AzVMWarePrivateCloud [-SubscriptionId ] [-DefaultProfile ] [] +``` + +### Get +``` +Get-AzVMWarePrivateCloud -Name -ResourceGroupName [-SubscriptionId ] + [-DefaultProfile ] [] +``` + +### GetViaIdentity +``` +Get-AzVMWarePrivateCloud -InputObject [-DefaultProfile ] [] +``` + +### List +``` +Get-AzVMWarePrivateCloud -ResourceGroupName [-SubscriptionId ] [-DefaultProfile ] + [] +``` + +## DESCRIPTION +Get a private cloud + +## EXAMPLES + +### Example 1: List private cloud under subscription +```powershell +PS C:\> Get-AzVMWarePrivateCloud + +Location Name Type +-------- ---- ---- +australiaeast azps-test-cloud Microsoft.AVS/privateClouds +``` + +List private cloud under subscription + +### Example 2: List private cloud under resource group +```powershell +PS C:\> Get-AzVMWarePrivateCloud -ResourceGroupName azps-test-group + +Location Name Type +-------- ---- ---- +australiaeast azps-test-cloud Microsoft.AVS/privateClouds +``` + +List private cloud under resource group + +### Example 3: Get private cloud +```powershell +PS C:\> Get-AzVMWarePrivateCloud -ResourceGroupName azps-test-group -Name azps-test-cloud + +Location Name Type +-------- ---- ---- +australiaeast azps-test-cloud Microsoft.AVS/privateClouds +``` + +Get private cloud + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Identity Parameter +To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity +Parameter Sets: GetViaIdentity +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +Name of the private cloud + +```yaml +Type: System.String +Parameter Sets: Get +Aliases: PrivateCloudName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. +The name is case insensitive. + +```yaml +Type: System.String +Parameter Sets: Get, List +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SubscriptionId +The ID of the target subscription. + +```yaml +Type: System.String[] +Parameter Sets: Get, List, List1 +Aliases: + +Required: False +Position: Named +Default value: (Get-AzContext).Subscription.Id +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity + +## OUTPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud + +## NOTES + +ALIASES + +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + + +INPUTOBJECT : Identity Parameter + - `[AuthorizationName ]`: Name of the ExpressRoute Circuit Authorization in the private cloud + - `[ClusterName ]`: Name of the cluster in the private cloud + - `[HcxEnterpriseSiteName ]`: Name of the HCX Enterprise Site in the private cloud + - `[Id ]`: Resource identity path + - `[Location ]`: Azure region + - `[PrivateCloudName ]`: Name of the private cloud + - `[ResourceGroupName ]`: The name of the resource group. The name is case insensitive. + - `[SubscriptionId ]`: The ID of the target subscription. + +## RELATED LINKS + diff --git a/src/VMWare/help/Get-AzVMWarePrivateCloudAdminCredentials.md b/src/VMWare/help/Get-AzVMWarePrivateCloudAdminCredentials.md new file mode 100644 index 000000000000..151c6a2a80e1 --- /dev/null +++ b/src/VMWare/help/Get-AzVMWarePrivateCloudAdminCredentials.md @@ -0,0 +1,144 @@ +--- +external help file: +Module Name: Az.VMWare +online version: https://docs.microsoft.com/en-us/powershell/module/az.vmware/get-azvmwareprivatecloudadmincredentials +schema: 2.0.0 +--- + +# Get-AzVMWarePrivateCloudAdminCredentials + +## SYNOPSIS +List the admin credentials for the private cloud + +## SYNTAX + +``` +Get-AzVMWarePrivateCloudAdminCredentials -PrivateCloudName -ResourceGroupName + [-SubscriptionId ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] +``` + +## DESCRIPTION +List the admin credentials for the private cloud + +## EXAMPLES + +### Example 1: Get admin credential of private cloud +```powershell +PS C:\> Get-AzVMWarePrivateCloudAdminCredentials -PrivateCloudName azps-test-cloud -ResourceGroupName azps-test-group + +NsxtPassword NsxtUsername VcenterPassword VcenterUsername +------------ ------------ --------------- --------------- +************ admin ************ cloudadmin@vsphere.local +``` + +Get admin credential of private cloud + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PrivateCloudName +Name of the private cloud + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. +The name is case insensitive. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SubscriptionId +The ID of the target subscription. + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: (Get-AzContext).Subscription.Id +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IAdminCredentials + +## NOTES + +ALIASES + +## RELATED LINKS + diff --git a/src/VMWare/help/New-AzVMWareAuthorization.md b/src/VMWare/help/New-AzVMWareAuthorization.md new file mode 100644 index 000000000000..05db0306ae2c --- /dev/null +++ b/src/VMWare/help/New-AzVMWareAuthorization.md @@ -0,0 +1,192 @@ +--- +external help file: +Module Name: Az.VMWare +online version: https://docs.microsoft.com/en-us/powershell/module/az.vmware/new-azvmwareauthorization +schema: 2.0.0 +--- + +# New-AzVMWareAuthorization + +## SYNOPSIS +Create or update an ExpressRoute Circuit Authorization in a private cloud + +## SYNTAX + +``` +New-AzVMWareAuthorization -Name -PrivateCloudName -ResourceGroupName + [-SubscriptionId ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] + [] +``` + +## DESCRIPTION +Create or update an ExpressRoute Circuit Authorization in a private cloud + +## EXAMPLES + +### Example 1: Create autorization +```powershell +PS C:\> New-AzVMWareAuthorization -Name azps-test-auth -PrivateCloudName azps-test-cloud -ResourceGroupName azps-test-group + + + +Name Type +---- ---- +azps-test-auth Microsoft.AVS/privateClouds/authorizations +``` + +This cmdlet creates authorization `azps-test-auth` under private cloud `azps-test-cloud` + +## PARAMETERS + +### -AsJob +Run the command as a job + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +Name of the ExpressRoute Circuit Authorization in the private cloud + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: AuthorizationName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NoWait +Run the command asynchronously + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PrivateCloudName +The name of the private cloud. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. +The name is case insensitive. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SubscriptionId +The ID of the target subscription. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: (Get-AzContext).Subscription.Id +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IExpressRouteAuthorization + +## NOTES + +ALIASES + +## RELATED LINKS + diff --git a/src/VMWare/help/New-AzVMWareCluster.md b/src/VMWare/help/New-AzVMWareCluster.md new file mode 100644 index 000000000000..a650127a090f --- /dev/null +++ b/src/VMWare/help/New-AzVMWareCluster.md @@ -0,0 +1,220 @@ +--- +external help file: +Module Name: Az.VMWare +online version: https://docs.microsoft.com/en-us/powershell/module/az.vmware/new-azvmwarecluster +schema: 2.0.0 +--- + +# New-AzVMWareCluster + +## SYNOPSIS +Create or update a cluster in a private cloud + +## SYNTAX + +``` +New-AzVMWareCluster -Name -PrivateCloudName -ResourceGroupName -ClusterSize + -SkuName [-SubscriptionId ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] + [-WhatIf] [] +``` + +## DESCRIPTION +Create or update a cluster in a private cloud + +## EXAMPLES + +### Example 1: Create cluster +```powershell +PS C:\> New-AzVMWareCluster -Name azps-test-cluster -PrivateCloudName azps-test-cloud -ResourceGroupName azps-test-group -ClusterSize 3 -SkuName av36 + +Name Type +---- ---- +azps-test-cluster Microsoft.AVS/privateClouds/clusters +``` + +Create cluster + +## PARAMETERS + +### -AsJob +Run the command as a job + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ClusterSize +The cluster size + +```yaml +Type: System.Int32 +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +Name of the cluster in the private cloud + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: ClusterName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NoWait +Run the command asynchronously + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PrivateCloudName +The name of the private cloud. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. +The name is case insensitive. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SkuName +The name of the SKU. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SubscriptionId +The ID of the target subscription. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: (Get-AzContext).Subscription.Id +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICluster + +## NOTES + +ALIASES + +## RELATED LINKS + diff --git a/src/VMWare/help/New-AzVMWarePrivateCloud.md b/src/VMWare/help/New-AzVMWarePrivateCloud.md new file mode 100644 index 000000000000..05f151046aec --- /dev/null +++ b/src/VMWare/help/New-AzVMWarePrivateCloud.md @@ -0,0 +1,297 @@ +--- +external help file: +Module Name: Az.VMWare +online version: https://docs.microsoft.com/en-us/powershell/module/az.vmware/new-azvmwareprivatecloud +schema: 2.0.0 +--- + +# New-AzVMWarePrivateCloud + +## SYNOPSIS +Create or update a private cloud + +## SYNTAX + +``` +New-AzVMWarePrivateCloud -Name -ResourceGroupName -Location + -ManagementClusterSize -NetworkBlock -Sku [-SubscriptionId ] + [-Internet ] [-NsxtPassword ] [-Tag ] [-VcenterPassword ] + [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] +``` + +## DESCRIPTION +Create or update a private cloud + +## EXAMPLES + +### Example 1: Create private cloud +```powershell +PS C:\> New-AzVMWarePrivateCloud -Name azps-test-cloud -ResourceGroupName azps-test-group -NetworkBlock 192.168.48.0/22 -SkuName av36 -ManagementClusterSize 3 -Location australiaeast + +Location Name Type +-------- ---- ---- +australiaeast azps-test-cloud Microsoft.AVS/privateClouds +``` + +Create private cloud + +## PARAMETERS + +### -AsJob +Run the command as a job + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Internet +Connectivity to internet is enabled or disabled + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Location +Resource location + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ManagementClusterSize +The cluster size + +```yaml +Type: System.Int32 +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +Name of the private cloud + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: PrivateCloudName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NetworkBlock +The block of addresses should be unique across VNet in your subscription as well as on-premise. +Make sure the CIDR format is conformed to (A.B.C.D/X) where A,B,C,D are between 0 and 255, and X is between 0 and 22 + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NoWait +Run the command asynchronously + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NsxtPassword +Optionally, set the NSX-T Manager password when the private cloud is created + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. +The name is case insensitive. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Sku +The name of the SKU. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SubscriptionId +The ID of the target subscription. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: (Get-AzContext).Subscription.Id +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Tag +Resource tags + +```yaml +Type: System.Collections.Hashtable +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -VcenterPassword +Optionally, set the vCenter admin password when the private cloud is created + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud + +## NOTES + +ALIASES + +## RELATED LINKS + diff --git a/src/VMWare/help/Remove-AzVMWareAuthorization.md b/src/VMWare/help/Remove-AzVMWareAuthorization.md new file mode 100644 index 000000000000..ff05265ad616 --- /dev/null +++ b/src/VMWare/help/Remove-AzVMWareAuthorization.md @@ -0,0 +1,242 @@ +--- +external help file: +Module Name: Az.VMWare +online version: https://docs.microsoft.com/en-us/powershell/module/az.vmware/remove-azvmwareauthorization +schema: 2.0.0 +--- + +# Remove-AzVMWareAuthorization + +## SYNOPSIS +Delete an ExpressRoute Circuit Authorization in a private cloud + +## SYNTAX + +### Delete (Default) +``` +Remove-AzVMWareAuthorization -Name -PrivateCloudName -ResourceGroupName + [-SubscriptionId ] [-DefaultProfile ] [-AsJob] [-NoWait] [-PassThru] [-Confirm] [-WhatIf] + [] +``` + +### DeleteViaIdentity +``` +Remove-AzVMWareAuthorization -InputObject [-DefaultProfile ] [-AsJob] [-NoWait] + [-PassThru] [-Confirm] [-WhatIf] [] +``` + +## DESCRIPTION +Delete an ExpressRoute Circuit Authorization in a private cloud + +## EXAMPLES + +### Example 1: Delete authorization for private cloud +```powershell +PS C:\> Remove-AzVMWareAuthorization -Name azps-test-auth -PrivateCloudName azps-test-cloud -ResourceGroupName azps-test-group + +``` + +Delete authorization for private cloud + +## PARAMETERS + +### -AsJob +Run the command as a job + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Identity Parameter +To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity +Parameter Sets: DeleteViaIdentity +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +Name of the ExpressRoute Circuit Authorization in the private cloud + +```yaml +Type: System.String +Parameter Sets: Delete +Aliases: AuthorizationName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NoWait +Run the command asynchronously + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PassThru +Returns true when the command succeeds + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PrivateCloudName +Name of the private cloud + +```yaml +Type: System.String +Parameter Sets: Delete +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. +The name is case insensitive. + +```yaml +Type: System.String +Parameter Sets: Delete +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SubscriptionId +The ID of the target subscription. + +```yaml +Type: System.String +Parameter Sets: Delete +Aliases: + +Required: False +Position: Named +Default value: (Get-AzContext).Subscription.Id +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity + +## OUTPUTS + +### System.Boolean + +## NOTES + +ALIASES + +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + + +INPUTOBJECT : Identity Parameter + - `[AuthorizationName ]`: Name of the ExpressRoute Circuit Authorization in the private cloud + - `[ClusterName ]`: Name of the cluster in the private cloud + - `[HcxEnterpriseSiteName ]`: Name of the HCX Enterprise Site in the private cloud + - `[Id ]`: Resource identity path + - `[Location ]`: Azure region + - `[PrivateCloudName ]`: Name of the private cloud + - `[ResourceGroupName ]`: The name of the resource group. The name is case insensitive. + - `[SubscriptionId ]`: The ID of the target subscription. + +## RELATED LINKS + diff --git a/src/VMWare/help/Remove-AzVMWareCluster.md b/src/VMWare/help/Remove-AzVMWareCluster.md new file mode 100644 index 000000000000..8611f15a68dc --- /dev/null +++ b/src/VMWare/help/Remove-AzVMWareCluster.md @@ -0,0 +1,242 @@ +--- +external help file: +Module Name: Az.VMWare +online version: https://docs.microsoft.com/en-us/powershell/module/az.vmware/remove-azvmwarecluster +schema: 2.0.0 +--- + +# Remove-AzVMWareCluster + +## SYNOPSIS +Delete a cluster in a private cloud + +## SYNTAX + +### Delete (Default) +``` +Remove-AzVMWareCluster -Name -PrivateCloudName -ResourceGroupName + [-SubscriptionId ] [-DefaultProfile ] [-AsJob] [-NoWait] [-PassThru] [-Confirm] [-WhatIf] + [] +``` + +### DeleteViaIdentity +``` +Remove-AzVMWareCluster -InputObject [-DefaultProfile ] [-AsJob] [-NoWait] + [-PassThru] [-Confirm] [-WhatIf] [] +``` + +## DESCRIPTION +Delete a cluster in a private cloud + +## EXAMPLES + +### Example 1: Delete cluster in private cloud +```powershell +PS C:\> Remove-AzVMWareCluster -Name azps-test-cluster -PrivateCloudName azps-test-cloud -ResourceGroupName azps-test-group + +``` + +Delete cluster in private cloud + +## PARAMETERS + +### -AsJob +Run the command as a job + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Identity Parameter +To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity +Parameter Sets: DeleteViaIdentity +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +Name of the cluster in the private cloud + +```yaml +Type: System.String +Parameter Sets: Delete +Aliases: ClusterName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NoWait +Run the command asynchronously + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PassThru +Returns true when the command succeeds + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PrivateCloudName +Name of the private cloud + +```yaml +Type: System.String +Parameter Sets: Delete +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. +The name is case insensitive. + +```yaml +Type: System.String +Parameter Sets: Delete +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SubscriptionId +The ID of the target subscription. + +```yaml +Type: System.String +Parameter Sets: Delete +Aliases: + +Required: False +Position: Named +Default value: (Get-AzContext).Subscription.Id +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity + +## OUTPUTS + +### System.Boolean + +## NOTES + +ALIASES + +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + + +INPUTOBJECT : Identity Parameter + - `[AuthorizationName ]`: Name of the ExpressRoute Circuit Authorization in the private cloud + - `[ClusterName ]`: Name of the cluster in the private cloud + - `[HcxEnterpriseSiteName ]`: Name of the HCX Enterprise Site in the private cloud + - `[Id ]`: Resource identity path + - `[Location ]`: Azure region + - `[PrivateCloudName ]`: Name of the private cloud + - `[ResourceGroupName ]`: The name of the resource group. The name is case insensitive. + - `[SubscriptionId ]`: The ID of the target subscription. + +## RELATED LINKS + diff --git a/src/VMWare/help/Remove-AzVMWarePrivateCloud.md b/src/VMWare/help/Remove-AzVMWarePrivateCloud.md new file mode 100644 index 000000000000..9bbbaa7eda95 --- /dev/null +++ b/src/VMWare/help/Remove-AzVMWarePrivateCloud.md @@ -0,0 +1,226 @@ +--- +external help file: +Module Name: Az.VMWare +online version: https://docs.microsoft.com/en-us/powershell/module/az.vmware/remove-azvmwareprivatecloud +schema: 2.0.0 +--- + +# Remove-AzVMWarePrivateCloud + +## SYNOPSIS +Delete a private cloud + +## SYNTAX + +### Delete (Default) +``` +Remove-AzVMWarePrivateCloud -Name -ResourceGroupName [-SubscriptionId ] + [-DefaultProfile ] [-AsJob] [-NoWait] [-PassThru] [-Confirm] [-WhatIf] [] +``` + +### DeleteViaIdentity +``` +Remove-AzVMWarePrivateCloud -InputObject [-DefaultProfile ] [-AsJob] [-NoWait] + [-PassThru] [-Confirm] [-WhatIf] [] +``` + +## DESCRIPTION +Delete a private cloud + +## EXAMPLES + +### Example 1: Delete private cloud +```powershell +PS C:\> Remove-AzVMWarePrivateCloud -ResourceGroupName azps-test-group -Name azps-test-cloud + +``` + +Delete private cloud + +## PARAMETERS + +### -AsJob +Run the command as a job + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Identity Parameter +To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity +Parameter Sets: DeleteViaIdentity +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +Name of the private cloud + +```yaml +Type: System.String +Parameter Sets: Delete +Aliases: PrivateCloudName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NoWait +Run the command asynchronously + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PassThru +Returns true when the command succeeds + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. +The name is case insensitive. + +```yaml +Type: System.String +Parameter Sets: Delete +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SubscriptionId +The ID of the target subscription. + +```yaml +Type: System.String +Parameter Sets: Delete +Aliases: + +Required: False +Position: Named +Default value: (Get-AzContext).Subscription.Id +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity + +## OUTPUTS + +### System.Boolean + +## NOTES + +ALIASES + +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + + +INPUTOBJECT : Identity Parameter + - `[AuthorizationName ]`: Name of the ExpressRoute Circuit Authorization in the private cloud + - `[ClusterName ]`: Name of the cluster in the private cloud + - `[HcxEnterpriseSiteName ]`: Name of the HCX Enterprise Site in the private cloud + - `[Id ]`: Resource identity path + - `[Location ]`: Azure region + - `[PrivateCloudName ]`: Name of the private cloud + - `[ResourceGroupName ]`: The name of the resource group. The name is case insensitive. + - `[SubscriptionId ]`: The ID of the target subscription. + +## RELATED LINKS + diff --git a/src/VMWare/help/Test-AzVMWareLocationQuotaAvailability.md b/src/VMWare/help/Test-AzVMWareLocationQuotaAvailability.md new file mode 100644 index 000000000000..8da1ea0b9025 --- /dev/null +++ b/src/VMWare/help/Test-AzVMWareLocationQuotaAvailability.md @@ -0,0 +1,168 @@ +--- +external help file: +Module Name: Az.VMWare +online version: https://docs.microsoft.com/en-us/powershell/module/az.vmware/test-azvmwarelocationquotaavailability +schema: 2.0.0 +--- + +# Test-AzVMWareLocationQuotaAvailability + +## SYNOPSIS +Return quota for subscription by region + +## SYNTAX + +### Check (Default) +``` +Test-AzVMWareLocationQuotaAvailability -Location [-SubscriptionId ] + [-DefaultProfile ] [-Confirm] [-WhatIf] [] +``` + +### CheckViaIdentity +``` +Test-AzVMWareLocationQuotaAvailability -InputObject [-DefaultProfile ] [-Confirm] + [-WhatIf] [] +``` + +## DESCRIPTION +Return quota for subscription by region + +## EXAMPLES + +### Example 1: Check quota availability +```powershell +PS C:\> Test-AzVMWareLocationQuotaAvailability -Location eastus + +Enabled +------- +Disabled +``` + +Check quota availability + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Identity Parameter +To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity +Parameter Sets: CheckViaIdentity +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Location +Azure region + +```yaml +Type: System.String +Parameter Sets: Check +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SubscriptionId +The ID of the target subscription. + +```yaml +Type: System.String +Parameter Sets: Check +Aliases: + +Required: False +Position: Named +Default value: (Get-AzContext).Subscription.Id +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity + +## OUTPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IQuota + +## NOTES + +ALIASES + +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + + +INPUTOBJECT : Identity Parameter + - `[AuthorizationName ]`: Name of the ExpressRoute Circuit Authorization in the private cloud + - `[ClusterName ]`: Name of the cluster in the private cloud + - `[HcxEnterpriseSiteName ]`: Name of the HCX Enterprise Site in the private cloud + - `[Id ]`: Resource identity path + - `[Location ]`: Azure region + - `[PrivateCloudName ]`: Name of the private cloud + - `[ResourceGroupName ]`: The name of the resource group. The name is case insensitive. + - `[SubscriptionId ]`: The ID of the target subscription. + +## RELATED LINKS + diff --git a/src/VMWare/help/Test-AzVMWareLocationTrialAvailability.md b/src/VMWare/help/Test-AzVMWareLocationTrialAvailability.md new file mode 100644 index 000000000000..d6913e129887 --- /dev/null +++ b/src/VMWare/help/Test-AzVMWareLocationTrialAvailability.md @@ -0,0 +1,168 @@ +--- +external help file: +Module Name: Az.VMWare +online version: https://docs.microsoft.com/en-us/powershell/module/az.vmware/test-azvmwarelocationtrialavailability +schema: 2.0.0 +--- + +# Test-AzVMWareLocationTrialAvailability + +## SYNOPSIS +Return trial status for subscription by region + +## SYNTAX + +### Check (Default) +``` +Test-AzVMWareLocationTrialAvailability -Location [-SubscriptionId ] + [-DefaultProfile ] [-Confirm] [-WhatIf] [] +``` + +### CheckViaIdentity +``` +Test-AzVMWareLocationTrialAvailability -InputObject [-DefaultProfile ] [-Confirm] + [-WhatIf] [] +``` + +## DESCRIPTION +Return trial status for subscription by region + +## EXAMPLES + +### Example 1: Check trial availability +```powershell +PS C:\> Test-AzVMWareLocationTrialAvailability -Location australiaeast + +AvailableHost Status +------------- ------ +0 TrialDisabled +``` + +Check trial availability + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Identity Parameter +To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity +Parameter Sets: CheckViaIdentity +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Location +Azure region + +```yaml +Type: System.String +Parameter Sets: Check +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SubscriptionId +The ID of the target subscription. + +```yaml +Type: System.String +Parameter Sets: Check +Aliases: + +Required: False +Position: Named +Default value: (Get-AzContext).Subscription.Id +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity + +## OUTPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrial + +## NOTES + +ALIASES + +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + + +INPUTOBJECT : Identity Parameter + - `[AuthorizationName ]`: Name of the ExpressRoute Circuit Authorization in the private cloud + - `[ClusterName ]`: Name of the cluster in the private cloud + - `[HcxEnterpriseSiteName ]`: Name of the HCX Enterprise Site in the private cloud + - `[Id ]`: Resource identity path + - `[Location ]`: Azure region + - `[PrivateCloudName ]`: Name of the private cloud + - `[ResourceGroupName ]`: The name of the resource group. The name is case insensitive. + - `[SubscriptionId ]`: The ID of the target subscription. + +## RELATED LINKS + diff --git a/src/VMWare/help/Update-AzVMWareCluster.md b/src/VMWare/help/Update-AzVMWareCluster.md new file mode 100644 index 000000000000..394991e9f51c --- /dev/null +++ b/src/VMWare/help/Update-AzVMWareCluster.md @@ -0,0 +1,256 @@ +--- +external help file: +Module Name: Az.VMWare +online version: https://docs.microsoft.com/en-us/powershell/module/az.vmware/update-azvmwarecluster +schema: 2.0.0 +--- + +# Update-AzVMWareCluster + +## SYNOPSIS +Update a cluster in a private cloud + +## SYNTAX + +### UpdateExpanded (Default) +``` +Update-AzVMWareCluster -Name -PrivateCloudName -ResourceGroupName + [-SubscriptionId ] [-ClusterSize ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] + [-WhatIf] [] +``` + +### UpdateViaIdentityExpanded +``` +Update-AzVMWareCluster -InputObject [-ClusterSize ] [-DefaultProfile ] + [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] +``` + +## DESCRIPTION +Update a cluster in a private cloud + +## EXAMPLES + +### Example 1: Update cluster size by name +```powershell +PS C:\> Update-AzVMWareCluster -Name azps-test-cluster -PrivateCloudName azps-test-cloud -ResourceGroupName azps-test-group -ClusterSize 4 + +Name Type +---- ---- +azps-test-cluster Microsoft.AVS/privateClouds/clusters +``` + +Update cluster size by name + +### Example 2: Update cluster size by input object +```powershell +PS C:\> Get-AzVMWareCluster -Name azps-test-cluster -PrivateCloudName azps-test-cloud -ResourceGroupName azps-test-group | Update-AzVMWareCluster -ClusterSize 4 + +Name Type +---- ---- +azps-test-cluster Microsoft.AVS/privateClouds/clusters +``` + +Update cluster size by input object + +## PARAMETERS + +### -AsJob +Run the command as a job + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ClusterSize +The cluster size + +```yaml +Type: System.Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Identity Parameter +To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity +Parameter Sets: UpdateViaIdentityExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +Name of the cluster in the private cloud + +```yaml +Type: System.String +Parameter Sets: UpdateExpanded +Aliases: ClusterName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NoWait +Run the command asynchronously + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PrivateCloudName +Name of the private cloud + +```yaml +Type: System.String +Parameter Sets: UpdateExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. +The name is case insensitive. + +```yaml +Type: System.String +Parameter Sets: UpdateExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SubscriptionId +The ID of the target subscription. + +```yaml +Type: System.String +Parameter Sets: UpdateExpanded +Aliases: + +Required: False +Position: Named +Default value: (Get-AzContext).Subscription.Id +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity + +## OUTPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ICluster + +## NOTES + +ALIASES + +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + + +INPUTOBJECT : Identity Parameter + - `[AuthorizationName ]`: Name of the ExpressRoute Circuit Authorization in the private cloud + - `[ClusterName ]`: Name of the cluster in the private cloud + - `[HcxEnterpriseSiteName ]`: Name of the HCX Enterprise Site in the private cloud + - `[Id ]`: Resource identity path + - `[Location ]`: Azure region + - `[PrivateCloudName ]`: Name of the private cloud + - `[ResourceGroupName ]`: The name of the resource group. The name is case insensitive. + - `[SubscriptionId ]`: The ID of the target subscription. + +## RELATED LINKS + diff --git a/src/VMWare/help/Update-AzVMWarePrivateCloud.md b/src/VMWare/help/Update-AzVMWarePrivateCloud.md new file mode 100644 index 000000000000..876e8cd9e3f1 --- /dev/null +++ b/src/VMWare/help/Update-AzVMWarePrivateCloud.md @@ -0,0 +1,300 @@ +--- +external help file: +Module Name: Az.VMWare +online version: https://docs.microsoft.com/en-us/powershell/module/az.vmware/update-azvmwareprivatecloud +schema: 2.0.0 +--- + +# Update-AzVMWarePrivateCloud + +## SYNOPSIS +Update a private cloud + +## SYNTAX + +### UpdateExpanded (Default) +``` +Update-AzVMWarePrivateCloud -Name -ResourceGroupName [-SubscriptionId ] + [-IdentitySource ] [-Internet ] [-ManagementClusterSize ] + [-Tag ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] +``` + +### UpdateViaIdentityExpanded +``` +Update-AzVMWarePrivateCloud -InputObject [-IdentitySource ] + [-Internet ] [-ManagementClusterSize ] [-Tag ] [-DefaultProfile ] + [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] +``` + +## DESCRIPTION +Update a private cloud + +## EXAMPLES + +### Example 1: Update size of private cloud by name +```powershell +PS C:\> Update-AzVMWarePrivateCloud -Name azps-test-cloud -ResourceGroupName azps-test-group -ManagementClusterSize 4 + +Location Name Type +-------- ---- ---- +australiaeast azps-test-cloud Microsoft.AVS/privateClouds +``` + +Update size of private cloud by name + +### Example 2: Update size of private cloud by input object +```powershell +PS C:\> Get-AzVMWarePrivateCloud -ResourceGroupName azps-test-group -Name azps-test-cloud | Update-AzVMWarePrivateCloud -ManagementClusterSize 4 + +Location Name Type +-------- ---- ---- +australiaeast azps-test-cloud Microsoft.AVS/privateClouds +``` + +Update size of private cloud by input object + +## PARAMETERS + +### -AsJob +Run the command as a job + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -IdentitySource +vCenter Single Sign On Identity Sources +To construct, see NOTES section for IDENTITYSOURCE properties and create a hash table. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySource[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Identity Parameter +To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity +Parameter Sets: UpdateViaIdentityExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Internet +Connectivity to internet is enabled or disabled + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ManagementClusterSize +The cluster size + +```yaml +Type: System.Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +Name of the private cloud + +```yaml +Type: System.String +Parameter Sets: UpdateExpanded +Aliases: PrivateCloudName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NoWait +Run the command asynchronously + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. +The name is case insensitive. + +```yaml +Type: System.String +Parameter Sets: UpdateExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SubscriptionId +The ID of the target subscription. + +```yaml +Type: System.String +Parameter Sets: UpdateExpanded +Aliases: + +Required: False +Position: Named +Default value: (Get-AzContext).Subscription.Id +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Tag +Resource tags. + +```yaml +Type: System.Collections.Hashtable +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.IVMWareIdentity + +## OUTPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud + +## NOTES + +ALIASES + +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + + +IDENTITYSOURCE : vCenter Single Sign On Identity Sources + - `[Alias ]`: The domain's NetBIOS name + - `[BaseGroupDn ]`: The base distinguished name for groups + - `[BaseUserDn ]`: The base distinguished name for users + - `[Domain ]`: The domain's dns name + - `[Name ]`: The name of the identity source + - `[Password ]`: The password of the Active Directory user with a minimum of read-only access to Base DN for users and groups. + - `[PrimaryServer ]`: Primary server URL + - `[SecondaryServer ]`: Secondary server URL + - `[Ssl ]`: Protect LDAP communication using SSL certificate (LDAPS) + - `[Username ]`: The ID of an Active Directory user with a minimum of read-only access to Base DN for users and group + +INPUTOBJECT : Identity Parameter + - `[AuthorizationName ]`: Name of the ExpressRoute Circuit Authorization in the private cloud + - `[ClusterName ]`: Name of the cluster in the private cloud + - `[HcxEnterpriseSiteName ]`: Name of the HCX Enterprise Site in the private cloud + - `[Id ]`: Resource identity path + - `[Location ]`: Azure region + - `[PrivateCloudName ]`: Name of the private cloud + - `[ResourceGroupName ]`: The name of the resource group. The name is case insensitive. + - `[SubscriptionId ]`: The ID of the target subscription. + +## RELATED LINKS + diff --git a/src/VMWare/how-to.md b/src/VMWare/how-to.md new file mode 100644 index 000000000000..0727983d8800 --- /dev/null +++ b/src/VMWare/how-to.md @@ -0,0 +1,58 @@ +# How-To +This document describes how to develop for `Az.VMWare`. + +## Building `Az.VMWare` +To build, run the `build-module.ps1` at the root of the module directory. This will generate the proxy script cmdlets that are the cmdlets being exported by this module. After the build completes, the proxy script cmdlets will be output to the `exports` folder. To read more about the proxy script cmdlets, look at the [readme.md](exports/readme.md) in the `exports` folder. + +## Creating custom cmdlets +To add cmdlets that were not generated by the REST specification, use the `custom` folder. This folder allows you to add handwritten `.ps1` and `.cs` files. Currently, we support using `.ps1` scripts as new cmdlets or as additional low-level variants (via `ParameterSet`), and `.cs` files as low-level (variants) cmdlets that the exported script cmdlets call. We do not support exporting any `.cs` (dll) cmdlets directly. To read more about custom cmdlets, look at the [readme.md](custom/readme.md) in the `custom` folder. + +## Generating documentation +To generate documentation, the process is now integrated into the `build-module.ps1` script. If you don't want to run this process as part of `build-module.ps1`, you can provide the `-NoDocs` switch. If you want to run documentation generation after the build process, you may still run the `generate-help.ps1` script. Overall, the process will look at the documentation comments in the generated and custom cmdlets and types, and create `.md` files into the `docs` folder. Additionally, this pulls in any examples from the `examples` folder and adds them to the generated help markdown documents. To read more about examples, look at the [readme.md](examples/readme.md) in the `examples` folder. To read more about documentation, look at the [readme.md](docs/readme.md) in the `docs` folder. + +## Testing `Az.VMWare` +To test the cmdlets, we use [Pester](https://github.com/pester/Pester). Tests scripts (`.ps1`) should be added to the `test` folder. To execute the Pester tests, run the `test-module.ps1` script. This will run all tests in `playback` mode within the `test` folder. To read more about testing cmdlets, look at the [readme.md](examples/readme.md) in the `examples` folder. + +## Packing `Az.VMWare` +To pack `Az.VMWare` for distribution, run the `pack-module.ps1` script. This will take the contents of multiple directories and certain root-folder files to create a `.nupkg`. The structure of the `.nupkg` is created so it can be loaded part of a [PSRepository](https://docs.microsoft.com/en-us/powershell/module/powershellget/register-psrepository). Additionally, this package is in a format for distribution to the [PSGallery](https://www.powershellgallery.com/). For signing an Azure module, please contact the [Azure PowerShell](https://github.com/Azure/azure-powershell) team. + +## Module Script Details +There are multiple scripts created for performing different actions for developing `Az.VMWare`. +- `build-module.ps1` + - Builds the module DLL (`./bin/Az.VMWare.private.dll`), creates the exported cmdlets and documentation, generates custom cmdlet test stubs and exported cmdlet example stubs, and updates `./Az.VMWare.psd1` with Azure profile information. + - **Parameters**: [`Switch` parameters] + - `-Run`: After building, creates an isolated PowerShell session and loads `Az.VMWare`. + - `-Test`: After building, runs the `Pester` tests defined in the `test` folder. + - `-Docs`: After building, generates the Markdown documents for the modules into the `docs` folder. + - `-Pack`: After building, packages the module into a `.nupkg`. + - `-Code`: After building, opens a VSCode window with the module's directory and runs (see `-Run`) the module. + - `-Release`: Builds the module in `Release` configuration (as opposed to `Debug` configuration). + - `-NoDocs`: Supresses writing the documentation markdown files as part of the cmdlet exporting process. + - `-Debugger`: Used when attaching the debugger in Visual Studio to the PowerShell session, and running the build process without recompiling the DLL. This suppresses running the script as an isolated process. +- `run-module.ps1` + - Creates an isolated PowerShell session and loads `Az.VMWare` into the session. + - Same as `-Run` in `build-module.ps1`. + - **Parameters**: [`Switch` parameters] + - `-Code`: Opens a VSCode window with the module's directory. + - Same as `-Code` in `build-module.ps1`. +- `generate-help.ps1` + - Generates the Markdown documents for the modules into the `docs` folder. + - Same as `-Docs` in `build-module.ps1`. +- `test-module.ps1` + - Runs the `Pester` tests defined in the `test` folder. + - Same as `-Test` in `build-module.ps1`. +- `pack-module.ps1` + - Packages the module into a `.nupkg` for distribution. + - Same as `-Pack` in `build-module.ps1`. +- `generate-help.ps1` + - Generates the Markdown documents for the modules into the `docs` folder. + - Same as `-Docs` in `build-module.ps1`. + - This process is now integrated into `build-module.ps1` automatically. To disable, use `-NoDocs` when running `build-module.ps1`. +- `export-surface.ps1` + - Generates Markdown documents for both the cmdlet surface and the model (class) surface of the module. + - These files are placed into the `resources` folder. + - Used for investigating the surface of your module. These are *not* documentation for distribution. +- `check-dependencies.ps1` + - Used in `run-module.ps1` and `test-module.ps1` to verify dependent modules are available to run those tasks. + - It will download local (within the module's directory structure) versions of those modules as needed. + - This script *does not* need to be ran by-hand. \ No newline at end of file diff --git a/src/VMWare/internal/Az.VMWare.internal.psm1 b/src/VMWare/internal/Az.VMWare.internal.psm1 new file mode 100644 index 000000000000..fa21467bb329 --- /dev/null +++ b/src/VMWare/internal/Az.VMWare.internal.psm1 @@ -0,0 +1,38 @@ +# region Generated + # Load the private module dll + $null = Import-Module -PassThru -Name (Join-Path $PSScriptRoot '..\bin\Az.VMWare.private.dll') + + # Get the private module's instance + $instance = [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Module]::Instance + + # Export nothing to clear implicit exports + Export-ModuleMember + + # Export proxy cmdlet scripts + $exportsPath = $PSScriptRoot + $directories = Get-ChildItem -Directory -Path $exportsPath + $profileDirectory = $null + if($instance.ProfileName) { + if(($directories | ForEach-Object { $_.Name }) -contains $instance.ProfileName) { + $profileDirectory = $directories | Where-Object { $_.Name -eq $instance.ProfileName } + } else { + # Don't export anything if the profile doesn't exist for the module + $exportsPath = $null + Write-Warning "Selected Azure profile '$($instance.ProfileName)' does not exist for module '$($instance.Name)'. No cmdlets were loaded." + } + } elseif(($directories | Measure-Object).Count -gt 0) { + # Load the last folder if no profile is selected + $profileDirectory = $directories | Select-Object -Last 1 + } + + if($profileDirectory) { + Write-Information "Loaded Azure profile '$($profileDirectory.Name)' for module '$($instance.Name)'" + $exportsPath = $profileDirectory.FullName + } + + if($exportsPath) { + Get-ChildItem -Path $exportsPath -Recurse -Include '*.ps1' -File | ForEach-Object { . $_.FullName } + $cmdletNames = Get-ScriptCmdlet -ScriptFolder $exportsPath + Export-ModuleMember -Function $cmdletNames -Alias (Get-ScriptCmdlet -ScriptFolder $exportsPath -AsAlias) + } +# endregion diff --git a/src/VMWare/internal/Get-AzVMWareOperation.ps1 b/src/VMWare/internal/Get-AzVMWareOperation.ps1 new file mode 100644 index 000000000000..cfde164d7d5b --- /dev/null +++ b/src/VMWare/internal/Get-AzVMWareOperation.ps1 @@ -0,0 +1,121 @@ + +# ---------------------------------------------------------------------------------- +# +# 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 +Lists all of the available operations +.Description +Lists all of the available operations +.Example +PS C:\> {{ Add code here }} + +{{ Add output here }} +.Example +PS C:\> {{ Add code here }} + +{{ Add output here }} + +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperation +.Link +https://docs.microsoft.com/en-us/powershell/module/az.vmware/get-azvmwareoperation +#> +function Get-AzVMWareOperation { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperation])] +[CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] +param( + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + List = 'Az.VMWare.private\Get-AzVMWareOperation_List'; + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} diff --git a/src/VMWare/internal/New-AzVMWarePrivateCloud.ps1 b/src/VMWare/internal/New-AzVMWarePrivateCloud.ps1 new file mode 100644 index 000000000000..013874158b83 --- /dev/null +++ b/src/VMWare/internal/New-AzVMWarePrivateCloud.ps1 @@ -0,0 +1,229 @@ + +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.Synopsis +Create or update a private cloud +.Description +Create or update a private cloud +.Example +PS C:\> New-AzVMWarePrivateCloud -Name azps-test-cloud -ResourceGroupName azps-test-group -NetworkBlock 192.168.48.0/22 -SkuName av36 -ManagementClusterSize 3 -Location australiaeast + +Location Name Type +-------- ---- ---- +australiaeast azps-test-cloud Microsoft.AVS/privateClouds + +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +IDENTITYSOURCE : vCenter Single Sign On Identity Sources + [Alias ]: The domain's NetBIOS name + [BaseGroupDn ]: The base distinguished name for groups + [BaseUserDn ]: The base distinguished name for users + [Domain ]: The domain's dns name + [Name ]: The name of the identity source + [Password ]: The password of the Active Directory user with a minimum of read-only access to Base DN for users and groups. + [PrimaryServer ]: Primary server URL + [SecondaryServer ]: Secondary server URL + [Ssl ]: Protect LDAP communication using SSL certificate (LDAPS) + [Username ]: The ID of an Active Directory user with a minimum of read-only access to Base DN for users and group +.Link +https://docs.microsoft.com/en-us/powershell/module/az.vmware/new-azvmwareprivatecloud +#> +function New-AzVMWarePrivateCloud { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud])] +[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(Mandatory)] + [Alias('PrivateCloudName')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # Name of the private cloud + ${Name}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # The name of the resource group. + # The name is case insensitive. + ${ResourceGroupName}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # The ID of the target subscription. + ${SubscriptionId}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [System.String] + # Resource location + ${Location}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [System.String] + # The block of addresses should be unique across VNet in your subscription as well as on-premise. + # Make sure the CIDR format is conformed to (A.B.C.D/X) where A,B,C,D are between 0 and 255, and X is between 0 and 22 + ${NetworkBlock}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [System.String] + # The name of the SKU. + ${SkuName}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySource[]] + # vCenter Single Sign On Identity Sources + # To construct, see NOTES section for IDENTITYSOURCE properties and create a hash table. + ${IdentitySource}, + + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum])] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum] + # Connectivity to internet is enabled or disabled + ${Internet}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [System.Int32] + # The cluster size + ${ManagementClusterSize}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [System.String] + # Optionally, set the NSX-T Manager password when the private cloud is created + ${NsxtPassword}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResourceTags]))] + [System.Collections.Hashtable] + # Resource tags + ${Tag}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [System.String] + # Optionally, set the vCenter admin password when the private cloud is created + ${VcenterPassword}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + CreateExpanded = 'Az.VMWare.private\New-AzVMWarePrivateCloud_CreateExpanded'; + } + if (('CreateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} diff --git a/src/VMWare/internal/ProxyCmdletDefinitions.ps1 b/src/VMWare/internal/ProxyCmdletDefinitions.ps1 new file mode 100644 index 000000000000..91f92f6c70f1 --- /dev/null +++ b/src/VMWare/internal/ProxyCmdletDefinitions.ps1 @@ -0,0 +1,350 @@ + +# ---------------------------------------------------------------------------------- +# +# 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 +Lists all of the available operations +.Description +Lists all of the available operations +.Example +PS C:\> {{ Add code here }} + +{{ Add output here }} +.Example +PS C:\> {{ Add code here }} + +{{ Add output here }} + +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperation +.Link +https://docs.microsoft.com/en-us/powershell/module/az.vmware/get-azvmwareoperation +#> +function Get-AzVMWareOperation { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IOperation])] +[CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] +param( + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + List = 'Az.VMWare.private\Get-AzVMWareOperation_List'; + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} + +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.Synopsis +Create or update a private cloud +.Description +Create or update a private cloud +.Example +PS C:\> New-AzVMWarePrivateCloud -Name azps-test-cloud -ResourceGroupName azps-test-group -NetworkBlock 192.168.48.0/22 -SkuName av36 -ManagementClusterSize 3 -Location australiaeast + +Location Name Type +-------- ---- ---- +australiaeast azps-test-cloud Microsoft.AVS/privateClouds + +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +IDENTITYSOURCE : vCenter Single Sign On Identity Sources + [Alias ]: The domain's NetBIOS name + [BaseGroupDn ]: The base distinguished name for groups + [BaseUserDn ]: The base distinguished name for users + [Domain ]: The domain's dns name + [Name ]: The name of the identity source + [Password ]: The password of the Active Directory user with a minimum of read-only access to Base DN for users and groups. + [PrimaryServer ]: Primary server URL + [SecondaryServer ]: Secondary server URL + [Ssl ]: Protect LDAP communication using SSL certificate (LDAPS) + [Username ]: The ID of an Active Directory user with a minimum of read-only access to Base DN for users and group +.Link +https://docs.microsoft.com/en-us/powershell/module/az.vmware/new-azvmwareprivatecloud +#> +function New-AzVMWarePrivateCloud { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IPrivateCloud])] +[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(Mandatory)] + [Alias('PrivateCloudName')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # Name of the private cloud + ${Name}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [System.String] + # The name of the resource group. + # The name is case insensitive. + ${ResourceGroupName}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # The ID of the target subscription. + ${SubscriptionId}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [System.String] + # Resource location + ${Location}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [System.String] + # The block of addresses should be unique across VNet in your subscription as well as on-premise. + # Make sure the CIDR format is conformed to (A.B.C.D/X) where A,B,C,D are between 0 and 255, and X is between 0 and 22 + ${NetworkBlock}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [System.String] + # The name of the SKU. + ${SkuName}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.IIdentitySource[]] + # vCenter Single Sign On Identity Sources + # To construct, see NOTES section for IDENTITYSOURCE properties and create a hash table. + ${IdentitySource}, + + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum])] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Support.InternetEnum] + # Connectivity to internet is enabled or disabled + ${Internet}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [System.Int32] + # The cluster size + ${ManagementClusterSize}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [System.String] + # Optionally, set the NSX-T Manager password when the private cloud is created + ${NsxtPassword}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.VMWare.Models.Api20200320.ITrackedResourceTags]))] + [System.Collections.Hashtable] + # Resource tags + ${Tag}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Body')] + [System.String] + # Optionally, set the vCenter admin password when the private cloud is created + ${VcenterPassword}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.VMWare.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + CreateExpanded = 'Az.VMWare.private\New-AzVMWarePrivateCloud_CreateExpanded'; + } + if (('CreateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} diff --git a/src/VMWare/internal/readme.md b/src/VMWare/internal/readme.md new file mode 100644 index 000000000000..6dc57ed641a7 --- /dev/null +++ b/src/VMWare/internal/readme.md @@ -0,0 +1,14 @@ +# Internal +This directory contains a module to handle *internal only* cmdlets. Cmdlets that you **hide** in configuration are created here. For more information on hiding, see [cmdlet hiding](https://github.com/Azure/autorest/blob/master/docs/powershell/options.md#cmdlet-hiding-exportation-suppression). The cmdlets in this directory are generated at **build-time**. Do not put any custom code, files, cmdlets, etc. into this directory. Please use `..\custom` for all custom implementation. + +## Info +- Modifiable: no +- Generated: all +- Committed: no +- Packaged: yes + +## Details +The `Az.VMWare.internal.psm1` file is generated to this folder. This module file handles the hidden cmdlets. These cmdlets will not be exported by `Az.VMWare`. Instead, this sub-module is imported by the `..\custom\Az.VMWare.custom.psm1` module, allowing you to use hidden cmdlets in your custom, exposed cmdlets. To call these cmdlets in your custom scripts, simply use [module-qualified calls](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_command_precedence?view=powershell-6#qualified-names). For example, `Az.VMWare.internal\Get-Example` would call an internal cmdlet named `Get-Example`. + +## Purpose +This allows you to include REST specifications for services that you *do not wish to expose from your module*, but simply want to call within custom cmdlets. For example, if you want to make a custom cmdlet that uses `Storage` services, you could include a simplified `Storage` REST specification that has only the operations you need. When you run the generator and build this module, note the generated `Storage` cmdlets. Then, in your readme configuration, use [cmdlet hiding](https://github.com/Azure/autorest/blob/master/docs/powershell/options.md#cmdlet-hiding-exportation-suppression) on the `Storage` cmdlets and they will *only be exposed to the custom cmdlets* you want to write, and not be exported as part of `Az.VMWare`. \ No newline at end of file diff --git a/src/VMWare/pack-module.ps1 b/src/VMWare/pack-module.ps1 new file mode 100644 index 000000000000..c22fad33d87b --- /dev/null +++ b/src/VMWare/pack-module.ps1 @@ -0,0 +1,16 @@ +# ---------------------------------------------------------------------------------- +# +# 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. +# ---------------------------------------------------------------------------------- +Write-Host -ForegroundColor Green 'Packing module...' +dotnet pack $PSScriptRoot --no-build /nologo +Write-Host -ForegroundColor Green '-------------Done-------------' \ No newline at end of file diff --git a/src/VMWare/readme.md b/src/VMWare/readme.md new file mode 100644 index 000000000000..40e554f6e1e7 --- /dev/null +++ b/src/VMWare/readme.md @@ -0,0 +1,82 @@ + +# Az.VMWare +This directory contains the PowerShell module for the VMWare service. + +--- +## Status +[![Az.VMWare](https://img.shields.io/powershellgallery/v/Az.VMWare.svg?style=flat-square&label=Az.VMWare "Az.VMWare")](https://www.powershellgallery.com/packages/Az.VMWare/) + +## Info +- Modifiable: yes +- Generated: all +- Committed: yes +- Packaged: yes + +--- +## Detail +This module was primarily generated via [AutoRest](https://github.com/Azure/autorest) using the [PowerShell](https://github.com/Azure/autorest.powershell) extension. + +## Module Requirements +- [Az.Accounts module](https://www.powershellgallery.com/packages/Az.Accounts/), version 1.8.1 or greater + +## Authentication +AutoRest does not generate authentication code for the module. Authentication is handled via Az.Accounts by altering the HTTP payload before it is sent. + +## Development +For information on how to develop for `Az.VMWare`, see [how-to.md](how-to.md). + + +--- +## Generation Requirements +Use of the beta version of `autorest.powershell` generator requires the following: +- [NodeJS LTS](https://nodejs.org) (10.15.x LTS preferred) + - **Note**: It *will not work* with Node < 10.x. Using 11.x builds may cause issues as they may introduce instability or breaking changes. +> If you want an easy way to install and update Node, [NVS - Node Version Switcher](../nodejs/installing-via-nvs.md) or [NVM - Node Version Manager](../nodejs/installing-via-nvm.md) is recommended. +- [AutoRest](https://aka.ms/autorest) v3 beta
`npm install -g autorest@beta`
  +- PowerShell 6.0 or greater + - If you don't have it installed, you can use the cross-platform npm package
`npm install -g pwsh`
  +- .NET Core SDK 2.0 or greater + - If you don't have it installed, you can use the cross-platform npm package
`npm install -g dotnet-sdk-2.2`
  + +## Run Generation +In this directory, run AutoRest: +> `autorest` + +--- +### AutoRest Configuration +> see https://aka.ms/autorest + +``` yaml +require: +# readme.azure.noprofile.md is the common configuration file + - $(this-folder)/../readme.azure.noprofile.md +input-file: + - https://github.com/Azure/azure-rest-api-specs/blob/master/specification/vmware/resource-manager/Microsoft.AVS/stable/2020-03-20/vmware.json + +module-version: 0.1.0 +title: VMWare +subject-prefix: $(service-name) + +identity-correction-for-post: true + +directive: + # Following is two common directive which are normally required in all the RPs + # 1. Remove the unexpanded parameter set + # 2. For New-* cmdlets, ViaIdentity is not required, so CreateViaIdentityExpanded is removed as well + - where: + variant: ^Create$|^CreateViaIdentity$|^CreateViaIdentityExpanded$|^Update$|^UpdateViaIdentity$ + remove: true + # Remove the set-* cmdlet + - where: + verb: Set + remove: true + # Hide cmdlets. + - where: + verb: New + subject: PrivateCloud + hide: true + - where: + verb: New|Get|Remove + subject: HcxEnterpriseSite + remove: true +``` diff --git a/src/VMWare/run-module.ps1 b/src/VMWare/run-module.ps1 new file mode 100644 index 000000000000..ce53ae50919f --- /dev/null +++ b/src/VMWare/run-module.ps1 @@ -0,0 +1,59 @@ +# ---------------------------------------------------------------------------------- +# +# 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. +# ---------------------------------------------------------------------------------- +param([switch]$Isolated, [switch]$Code) +$ErrorActionPreference = 'Stop' + +if(-not $Isolated) { + Write-Host -ForegroundColor Green 'Creating isolated process...' + $pwsh = [System.Diagnostics.Process]::GetCurrentProcess().Path + & "$pwsh" -NoExit -NoLogo -NoProfile -File $MyInvocation.MyCommand.Path @PSBoundParameters -Isolated + return +} + +$isAzure = $true +if($isAzure) { + . (Join-Path $PSScriptRoot 'check-dependencies.ps1') -Isolated -Accounts +} + +$localModulesPath = Join-Path $PSScriptRoot 'generated\modules' +if(Test-Path -Path $localModulesPath) { + $env:PSModulePath = "$localModulesPath$([IO.Path]::PathSeparator)$env:PSModulePath" +} + +$modulePsd1 = Get-Item -Path (Join-Path $PSScriptRoot './Az.VMWare.psd1') +$modulePath = $modulePsd1.FullName +$moduleName = $modulePsd1.BaseName + +function Prompt { + Write-Host -NoNewline -ForegroundColor Green "PS $(Get-Location)" + Write-Host -NoNewline -ForegroundColor Gray ' [' + Write-Host -NoNewline -ForegroundColor White -BackgroundColor DarkCyan $moduleName + ']> ' +} + +# where we would find the launch.json file +$vscodeDirectory = New-Item -ItemType Directory -Force -Path (Join-Path $PSScriptRoot '.vscode') +$launchJson = Join-Path $vscodeDirectory 'launch.json' + +# if there is a launch.json file, let's just assume -Code, and update the file +if(($Code) -or (test-Path $launchJson) ) { + $launchContent = '{ "version": "0.2.0", "configurations":[{ "name":"Attach to PowerShell", "type":"coreclr", "request":"attach", "processId":"' + ([System.Diagnostics.Process]::GetCurrentProcess().Id) + '", "justMyCode":false }] }' + Set-Content -Path $launchJson -Value $launchContent + if($Code) { + # only launch vscode if they say -code + code $PSScriptRoot + } +} + +Import-Module -Name $modulePath \ No newline at end of file diff --git a/src/VMWare/test-module.ps1 b/src/VMWare/test-module.ps1 new file mode 100644 index 000000000000..c8e82fbd794c --- /dev/null +++ b/src/VMWare/test-module.ps1 @@ -0,0 +1,68 @@ +# ---------------------------------------------------------------------------------- +# +# 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. +# ---------------------------------------------------------------------------------- +param([switch]$Isolated, [switch]$Live, [switch]$Record, [switch]$Playback) +$ErrorActionPreference = 'Stop' + +if(-not $Isolated) { + Write-Host -ForegroundColor Green 'Creating isolated process...' + $pwsh = [System.Diagnostics.Process]::GetCurrentProcess().Path + & "$pwsh" -NonInteractive -NoLogo -NoProfile -File $MyInvocation.MyCommand.Path @PSBoundParameters -Isolated + return +} + +$ProgressPreference = 'SilentlyContinue' +$baseName = $PSScriptRoot.BaseName +$requireResourceModule = (($baseName -ne "Resources") -and ($Record.IsPresent -or $Live.IsPresent)) +. (Join-Path $PSScriptRoot 'check-dependencies.ps1') -Isolated -Accounts:$false -Pester -Resources:$requireResourceModule +. ("$PSScriptRoot\test\utils.ps1") + +if ($requireResourceModule) { + $resourceModulePSD = Get-Item -Path (Join-Path $HOME '.PSSharedModules\Resources\Az.Resources.TestSupport.psd1') + Import-Module -Name $resourceModulePSD.FullName +} + +$localModulesPath = Join-Path $PSScriptRoot 'generated\modules' +if(Test-Path -Path $localModulesPath) { + $env:PSModulePath = "$localModulesPath$([IO.Path]::PathSeparator)$env:PSModulePath" +} + +$modulePsd1 = Get-Item -Path (Join-Path $PSScriptRoot './Az.VMWare.psd1') +$modulePath = $modulePsd1.FullName +$moduleName = $modulePsd1.BaseName + +Import-Module -Name Pester +Import-Module -Name $modulePath + +$TestMode = 'playback' +if($Live) { + $TestMode = 'live' +} +if($Record) { + $TestMode = 'record' +} +try { + if ($TestMode -ne 'playback') { + setupEnv + } + $testFolder = Join-Path $PSScriptRoot 'test' + Invoke-Pester -Script @{ Path = $testFolder } -EnableExit -OutputFile (Join-Path $testFolder "$moduleName-TestResults.xml") +} +Finally +{ + if ($TestMode -ne 'playback') { + cleanupEnv + } +} + +Write-Host -ForegroundColor Green '-------------Done-------------' \ No newline at end of file diff --git a/src/VMWare/test/Az.VMWare-TestResults.xml b/src/VMWare/test/Az.VMWare-TestResults.xml new file mode 100644 index 000000000000..100b72f7924e --- /dev/null +++ b/src/VMWare/test/Az.VMWare-TestResults.xml @@ -0,0 +1,75 @@ + + + + + + + + + + + + + Cannot bind argument to parameter 'PrivateCloudName' because it is an empty string. + at <ScriptBlock>, C:\workspace\generation\src\VMWare\test\New-AzVMWareAuthorization.Tests.ps1: line 21 +21: $auth = New-AzVMWareAuthorization -Name $env.rstr3 -PrivateCloudName $cloud.Name -ResourceGroupName $env.resourceGroup + + + + + + + + + + + + + + Cannot update a partially provisioned private cloud + at <ScriptBlock>, C:\workspace\generation\src\VMWare\custom\New-AzVMWarePrivateCloud.ps1: line 189 +189: Az.VMWare.internal\New-AzVMWarePrivateCloud @PSBoundParameters + + + + + + + + + + + + + + Cannot update a partially provisioned private cloud + at <ScriptBlock>, C:\workspace\generation\src\VMWare\custom\New-AzVMWarePrivateCloud.ps1: line 189 +189: Az.VMWare.internal\New-AzVMWarePrivateCloud @PSBoundParameters + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/VMWare/test/Get-AzVMWareAuthorization.Tests.ps1 b/src/VMWare/test/Get-AzVMWareAuthorization.Tests.ps1 new file mode 100644 index 000000000000..38a6c8f5ece0 --- /dev/null +++ b/src/VMWare/test/Get-AzVMWareAuthorization.Tests.ps1 @@ -0,0 +1,26 @@ +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' +} +. ($loadEnvPath) +$TestRecordingFile = Join-Path $PSScriptRoot 'Get-AzVMWareAuthorization.Recording.json' +$currentPath = $PSScriptRoot +while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent +} +. ($mockingPath | Select-Object -First 1).FullName + +Describe 'Get-AzVMWareAuthorization' { + It 'List' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'Get' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'GetViaIdentity' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } +} diff --git a/src/VMWare/test/Get-AzVMWareCluster.Tests.ps1 b/src/VMWare/test/Get-AzVMWareCluster.Tests.ps1 new file mode 100644 index 000000000000..231f3d10aa00 --- /dev/null +++ b/src/VMWare/test/Get-AzVMWareCluster.Tests.ps1 @@ -0,0 +1,26 @@ +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' +} +. ($loadEnvPath) +$TestRecordingFile = Join-Path $PSScriptRoot 'Get-AzVMWareCluster.Recording.json' +$currentPath = $PSScriptRoot +while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent +} +. ($mockingPath | Select-Object -First 1).FullName + +Describe 'Get-AzVMWareCluster' { + It 'List' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'Get' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'GetViaIdentity' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } +} diff --git a/src/VMWare/test/Get-AzVMWarePrivateCloud.Tests.ps1 b/src/VMWare/test/Get-AzVMWarePrivateCloud.Tests.ps1 new file mode 100644 index 000000000000..a052603e14dc --- /dev/null +++ b/src/VMWare/test/Get-AzVMWarePrivateCloud.Tests.ps1 @@ -0,0 +1,30 @@ +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' +} +. ($loadEnvPath) +$TestRecordingFile = Join-Path $PSScriptRoot 'Get-AzVMWarePrivateCloud.Recording.json' +$currentPath = $PSScriptRoot +while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent +} +. ($mockingPath | Select-Object -First 1).FullName + +Describe 'Get-AzVMWarePrivateCloud' { + It 'List1' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'Get' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'List' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'GetViaIdentity' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } +} diff --git a/src/VMWare/test/Get-AzVMWarePrivateCloudAdminCredentials.Tests.ps1 b/src/VMWare/test/Get-AzVMWarePrivateCloudAdminCredentials.Tests.ps1 new file mode 100644 index 000000000000..0d8c73842922 --- /dev/null +++ b/src/VMWare/test/Get-AzVMWarePrivateCloudAdminCredentials.Tests.ps1 @@ -0,0 +1,18 @@ +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' +} +. ($loadEnvPath) +$TestRecordingFile = Join-Path $PSScriptRoot 'Get-AzVMWarePrivateCloudAdminCredentials.Recording.json' +$currentPath = $PSScriptRoot +while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent +} +. ($mockingPath | Select-Object -First 1).FullName + +Describe 'Get-AzVMWarePrivateCloudAdminCredentials' { + It 'List' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } +} diff --git a/src/VMWare/test/New-AzVMWareAuthorization.Recording.json b/src/VMWare/test/New-AzVMWareAuthorization.Recording.json new file mode 100644 index 000000000000..d2539fd077cf --- /dev/null +++ b/src/VMWare/test/New-AzVMWareAuthorization.Recording.json @@ -0,0 +1,25838 @@ +{ + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz?api-version=2020-03-20+1": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz?api-version=2020-03-20", + "Content": "{\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"managementCluster\": {\r\n \"clusterSize\": 3\r\n },\r\n \"networkBlock\": \"192.168.48.0/22\"\r\n },\r\n \"sku\": {\r\n \"name\": \"av36\"\r\n }\r\n}", + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "197" ] + } + }, + "Response": { + "StatusCode": 201, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20" ], + "x-ms-request-id": [ "942f7b7f-5f19-496f-a9b3-e462d66dea50" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "5beb92ab-13aa-4560-a8b0-db1a5185dfbe" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080000Z:5beb92ab-13aa-4560-a8b0-db1a5185dfbe" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 07:59:59 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "835" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz\",\"location\":\"australiaeast\",\"name\":\"2nyogz\",\"properties\":{\"endpoints\":{\"hcxCloudManager\":\"https://192.168.48.6/\",\"nsxtManager\":\"https://192.168.48.3/\",\"vcsa\":\"https://192.168.48.2/\"},\"identitySources\":[],\"internet\":\"Disabled\",\"managementCluster\":{\"clusterId\":1,\"clusterSize\":3,\"hosts\":[\"esx20-r07.p01.australiaeast.avs.azure.com\",\"esx19-r19.p01.australiaeast.avs.azure.com\",\"esx15-r02.p01.australiaeast.avs.azure.com\"],\"provisioningState\":\"Building\"},\"managementNetwork\":\"192.168.48.0/26\",\"networkBlock\":\"192.168.48.0/22\",\"provisioningNetwork\":\"192.168.50.0/25\",\"provisioningState\":\"Building\",\"vmotionNetwork\":\"192.168.49.128/25\"},\"sku\":{\"name\":\"av36\"},\"tags\":{},\"type\":\"Microsoft.AVS/privateClouds\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+2": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "3" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], + "x-ms-request-id": [ "bb771a78-fa64-4b85-90a4-0119f365648b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "2031d034-682f-45be-abfb-b84d55dab85f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080010Z:2031d034-682f-45be-abfb-b84d55dab85f" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:00:10 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "325" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":0,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "4" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], + "x-ms-request-id": [ "f01bea58-9d94-4175-aa3d-2baa031978bf" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "3c4c986d-c1cf-4123-b6c4-44d9e55b5cb6" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080020Z:3c4c986d-c1cf-4123-b6c4-44d9e55b5cb6" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:00:20 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "325" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":0,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+4": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "5" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], + "x-ms-request-id": [ "89eb2fea-3b90-49b7-b0ce-25a1eaea35cb" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "69228afd-2a31-4b7a-80cb-1a70a6b18519" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080031Z:69228afd-2a31-4b7a-80cb-1a70a6b18519" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:00:30 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "325" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":0,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+5": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "6" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], + "x-ms-request-id": [ "adfe77b6-bfbe-4053-a986-c596f7b3f11b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "04934706-c23d-4962-bcf0-efadf4ffdce9" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080041Z:04934706-c23d-4962-bcf0-efadf4ffdce9" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:00:40 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "325" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":0,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+6": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "7" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], + "x-ms-request-id": [ "18d4ee3f-96b4-4f28-8219-86a3162a53c6" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "112b2e6d-37d1-44cd-b39c-a0754b50a344" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080051Z:112b2e6d-37d1-44cd-b39c-a0754b50a344" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:00:50 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":2.5,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+7": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "8" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], + "x-ms-request-id": [ "243f7d70-aba1-47cf-b669-3533976c8074" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "940cdabf-19cb-4bb9-883d-f96fed68901f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080102Z:940cdabf-19cb-4bb9-883d-f96fed68901f" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:01:01 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":2.5,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+8": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "9" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11989" ], + "x-ms-request-id": [ "df0d8ff0-6139-495f-8b16-0a423ad3d632" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "af883b34-bf96-4352-8530-26636f6749dc" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080112Z:af883b34-bf96-4352-8530-26636f6749dc" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:01:11 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":2.5,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+9": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "10" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11988" ], + "x-ms-request-id": [ "2637223a-183b-43d6-85c5-d3d6f2d887b5" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "ef80af38-5c42-4f15-8eb1-4a061dad7b7c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080122Z:ef80af38-5c42-4f15-8eb1-4a061dad7b7c" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:01:22 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":2.5,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+10": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "11" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11987" ], + "x-ms-request-id": [ "31a0ca25-e137-4bd4-ad2e-68be999426e3" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "588b6976-d4ab-45f3-a139-4d4e8e63a4c4" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080133Z:588b6976-d4ab-45f3-a139-4d4e8e63a4c4" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:01:32 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":2.5,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+11": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "12" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11986" ], + "x-ms-request-id": [ "b1c6c498-ca3c-4545-8163-3203b47ff1de" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "fa47e721-8b6e-4583-b533-b3bfdf0f43ab" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080143Z:fa47e721-8b6e-4583-b533-b3bfdf0f43ab" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:01:43 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":2.5,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+12": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "13" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11985" ], + "x-ms-request-id": [ "345def92-6a53-48f7-a611-3401531f9c28" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "7e137fe1-1b20-4e62-898e-fd2c1d7d8b8e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080153Z:7e137fe1-1b20-4e62-898e-fd2c1d7d8b8e" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:01:53 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":2.5,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+13": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "14" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11984" ], + "x-ms-request-id": [ "1ce890f5-6faa-4829-a30a-6685d2315acc" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "518a176e-15c5-47f2-8928-7e10d7e825e3" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080203Z:518a176e-15c5-47f2-8928-7e10d7e825e3" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:02:03 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":2.5,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+14": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "15" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11983" ], + "x-ms-request-id": [ "188fc9d8-d4ce-4d52-8218-1c52430395a8" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "e834274c-0c79-4ee1-97b4-5f612a80ab1d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080214Z:e834274c-0c79-4ee1-97b4-5f612a80ab1d" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:02:13 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":2.5,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+15": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "16" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11982" ], + "x-ms-request-id": [ "4eed19c9-869d-4621-ba84-bdb1e6fdd234" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "b5ee7a14-d8b8-4c33-9471-9355de197f31" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080224Z:b5ee7a14-d8b8-4c33-9471-9355de197f31" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:02:23 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "325" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":5,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+16": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "17" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11981" ], + "x-ms-request-id": [ "ce6681f2-f7e4-469f-b9ab-ec17f8e32179" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "65e88d87-5cec-46c9-816b-290c3241623d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080234Z:65e88d87-5cec-46c9-816b-290c3241623d" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:02:34 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "325" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":5,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+17": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "18" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11980" ], + "x-ms-request-id": [ "7e4ff732-1aaa-43d8-ad20-ad2c9e3aa351" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "76556571-3044-42b5-8dba-e6d125deb2de" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080245Z:76556571-3044-42b5-8dba-e6d125deb2de" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:02:44 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "325" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":5,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+18": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "19" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11979" ], + "x-ms-request-id": [ "3c102820-29ce-4f08-a899-3e45e029f7f2" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "d201d71c-f2c3-46eb-ac85-6fb3c5a399db" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080255Z:d201d71c-f2c3-46eb-ac85-6fb3c5a399db" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:02:54 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "329" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":88.75,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+19": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "20" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11978" ], + "x-ms-request-id": [ "50bd9067-4e07-41e5-9b6f-c6fab953d074" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "f6803591-d6a9-4b23-a0f7-fdf568700284" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080305Z:f6803591-d6a9-4b23-a0f7-fdf568700284" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:03:05 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "329" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":88.75,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+20": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "21" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11977" ], + "x-ms-request-id": [ "e7f8c301-4f4c-4637-af1d-2f22968cf945" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "51cc2140-5e6e-43c2-b793-1ce3bb96b9ae" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080316Z:51cc2140-5e6e-43c2-b793-1ce3bb96b9ae" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:03:15 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "329" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":88.75,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+21": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "22" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11976" ], + "x-ms-request-id": [ "dba6be59-e037-4ce1-851b-384424f2094c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "cdbedbd2-f31f-483a-9e18-c8680f8519a1" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080326Z:cdbedbd2-f31f-483a-9e18-c8680f8519a1" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:03:26 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "329" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":88.75,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+22": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "23" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11975" ], + "x-ms-request-id": [ "d0ae7747-1117-46aa-973e-74fda2025be3" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "022d3c27-8e3b-4c2e-998a-ccab007fa38b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080336Z:022d3c27-8e3b-4c2e-998a-ccab007fa38b" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:03:36 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "329" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":88.75,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+23": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "24" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11974" ], + "x-ms-request-id": [ "a3c0d8a2-1db7-4adb-ade3-d9d9835da6aa" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "311ce229-3c15-4ab4-b249-455db45ec810" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080346Z:311ce229-3c15-4ab4-b249-455db45ec810" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:03:46 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "329" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":88.75,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+24": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "25" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11973" ], + "x-ms-request-id": [ "560f27e5-d211-4afd-b83b-e0e70bdddde6" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "80c7998e-caf2-4b5d-8e9f-60b2adfb710b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080357Z:80c7998e-caf2-4b5d-8e9f-60b2adfb710b" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:03:56 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "329" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":88.75,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+25": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "26" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11972" ], + "x-ms-request-id": [ "01eb09c4-20dc-4d20-9963-50d1e5060844" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "3c17d3f8-5554-453b-93f2-0ced5c13d604" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080407Z:3c17d3f8-5554-453b-93f2-0ced5c13d604" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:04:06 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "329" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":88.75,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+26": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "27" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11971" ], + "x-ms-request-id": [ "b1aea71d-75b0-495b-ba26-011858fea84a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "8f8c4f5b-3aa0-43ca-af96-d4f94760075d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080417Z:8f8c4f5b-3aa0-43ca-af96-d4f94760075d" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:04:16 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "329" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":88.75,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+27": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "28" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11970" ], + "x-ms-request-id": [ "a5f2d59d-d52d-4556-84f2-94e333975ed3" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "6d1c891a-4e02-405e-9bd4-f73bb4d0d31c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080427Z:6d1c891a-4e02-405e-9bd4-f73bb4d0d31c" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:04:27 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "329" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":88.75,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+28": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "29" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11969" ], + "x-ms-request-id": [ "49853d13-a5bd-444c-ba59-86a11d82384f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "34f083f3-7c20-4305-b19d-fc8b540a1f6e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080438Z:34f083f3-7c20-4305-b19d-fc8b540a1f6e" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:04:37 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "329" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":88.75,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+29": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "30" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11968" ], + "x-ms-request-id": [ "8b4c2b50-02b2-4ee0-b359-247b8a5a0082" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "0b79abce-57ca-45e7-933e-078fa3ff88b8" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080448Z:0b79abce-57ca-45e7-933e-078fa3ff88b8" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:04:47 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "329" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":88.75,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+30": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "31" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11967" ], + "x-ms-request-id": [ "17acd4ee-8fea-4ce9-8b87-90347b751427" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "17c64b58-f579-4659-8fe7-b20151719f7b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080458Z:17c64b58-f579-4659-8fe7-b20151719f7b" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:04:58 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "329" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":88.75,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+31": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "32" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11966" ], + "x-ms-request-id": [ "21ce08f0-daec-429a-b1f2-c7f4057ef6c9" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "77e11e41-005c-480b-9299-9ca7518c83dc" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080509Z:77e11e41-005c-480b-9299-9ca7518c83dc" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:05:08 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "329" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":88.75,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+32": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "33" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11965" ], + "x-ms-request-id": [ "8a7eca85-a5d2-4c57-b98c-fc5bc78a0dd7" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "23d3a800-0eb3-4554-a074-f20af798d543" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080519Z:23d3a800-0eb3-4554-a074-f20af798d543" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:05:19 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "329" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":88.75,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+33": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "34" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11964" ], + "x-ms-request-id": [ "34bb4e51-e22a-4326-9d94-a0b9fa5d31e9" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "751df695-8e55-436b-8581-b4ec306507a8" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080529Z:751df695-8e55-436b-8581-b4ec306507a8" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:05:29 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "329" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":88.75,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+34": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "35" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11963" ], + "x-ms-request-id": [ "fe85b39d-508a-4ff5-9f69-6bf22a66010d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "71ca84e2-fc74-497f-a9a0-00105b35310a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080540Z:71ca84e2-fc74-497f-a9a0-00105b35310a" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:05:39 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "329" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":88.75,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+35": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "36" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11962" ], + "x-ms-request-id": [ "9d3b1a86-db46-4aff-9967-b78f87745420" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "04e463c4-22ba-4d53-ba10-1effb68ad758" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080550Z:04e463c4-22ba-4d53-ba10-1effb68ad758" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:05:50 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "329" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":88.75,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+36": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "37" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11961" ], + "x-ms-request-id": [ "8207e3c7-f8d3-47b4-bf6c-2de28ad7a192" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "6ea60062-0480-4bb6-b239-6beb31892bdd" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080600Z:6ea60062-0480-4bb6-b239-6beb31892bdd" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:06:00 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+37": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "38" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11960" ], + "x-ms-request-id": [ "f84501a9-e6de-47e9-9f39-2b99d5361837" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "d154b793-3758-48f7-be2b-227bf3e950c9" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080611Z:d154b793-3758-48f7-be2b-227bf3e950c9" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:06:10 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+38": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "39" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11959" ], + "x-ms-request-id": [ "088eccf8-1114-4daa-ab35-f279d4a1f10c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "119b9553-9cef-41c9-be4e-a4b23ef889cc" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080621Z:119b9553-9cef-41c9-be4e-a4b23ef889cc" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:06:20 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+39": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "40" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11958" ], + "x-ms-request-id": [ "ce8f4fae-0424-4202-ab72-5d93fb66bbf5" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "cb6dd1f2-f3e1-4d26-8ea9-1bdfa46b13bf" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080631Z:cb6dd1f2-f3e1-4d26-8ea9-1bdfa46b13bf" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:06:31 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+40": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "41" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11957" ], + "x-ms-request-id": [ "9e13f908-69b2-4d90-b8c6-50189eebd52b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "8b447fd5-15c0-49f9-8b5e-9140e108681a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080642Z:8b447fd5-15c0-49f9-8b5e-9140e108681a" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:06:41 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+41": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "42" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11956" ], + "x-ms-request-id": [ "369d6fe3-2b41-4cbe-ab2a-8c40997eae74" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "49d9dba6-1b16-4561-b0e9-d66ee39f6961" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080652Z:49d9dba6-1b16-4561-b0e9-d66ee39f6961" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:06:51 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+42": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "43" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11955" ], + "x-ms-request-id": [ "625f3e30-af07-4574-9ceb-0c0af34b28a2" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "63503f9d-e07f-455e-a498-7850eb86d595" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080702Z:63503f9d-e07f-455e-a498-7850eb86d595" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:07:01 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+43": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "44" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11954" ], + "x-ms-request-id": [ "2d337361-5208-401f-889f-7b1662e1c76b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "d88c3991-1dff-4dc3-9109-0eebddd5c7cc" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080712Z:d88c3991-1dff-4dc3-9109-0eebddd5c7cc" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:07:12 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+44": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "45" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11953" ], + "x-ms-request-id": [ "057e74b8-2182-4b34-8199-ce02a04012bc" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "8a9d0c30-cb19-4e13-8f2b-aadab82d524f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080723Z:8a9d0c30-cb19-4e13-8f2b-aadab82d524f" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:07:22 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+45": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "46" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11952" ], + "x-ms-request-id": [ "6c27889a-cfd4-406f-87b3-b36d1e6e06b1" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "d437be96-a990-479a-bbd4-48c150f1a438" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080733Z:d437be96-a990-479a-bbd4-48c150f1a438" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:07:33 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+46": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "47" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11951" ], + "x-ms-request-id": [ "f1a8cbef-2bfe-4f0b-aed3-98b76a6a249e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "0855de5c-fac8-4724-b574-5086876a792e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080743Z:0855de5c-fac8-4724-b574-5086876a792e" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:07:43 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+47": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "48" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11950" ], + "x-ms-request-id": [ "9a1ce395-4ff4-4f68-8606-65b6fcfca7fd" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "e6dcd88a-016e-4883-bf88-0d546dc3441d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080753Z:e6dcd88a-016e-4883-bf88-0d546dc3441d" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:07:53 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+48": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "49" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11949" ], + "x-ms-request-id": [ "d707ce05-9048-4b16-b846-4dec842e0710" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "78019f07-65ba-46ba-9321-c982ea68172b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080804Z:78019f07-65ba-46ba-9321-c982ea68172b" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:08:03 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+49": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "50" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11948" ], + "x-ms-request-id": [ "57ac6970-c4c2-4516-80b2-dad48b2963a0" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "b5126363-d45d-401c-99ea-4b19a007a192" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080814Z:b5126363-d45d-401c-99ea-4b19a007a192" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:08:13 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+50": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "51" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11947" ], + "x-ms-request-id": [ "5078bf43-8869-4810-ae7b-1ba12afb271f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "3528c269-ed04-432c-b92e-ff629f62a2a1" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080824Z:3528c269-ed04-432c-b92e-ff629f62a2a1" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:08:24 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+51": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "52" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11946" ], + "x-ms-request-id": [ "1087f15d-87f0-4712-a9b0-756d7bccc2f7" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "d2e5b0ac-dd02-49c6-9338-bb37508ad8fd" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080834Z:d2e5b0ac-dd02-49c6-9338-bb37508ad8fd" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:08:34 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+52": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "53" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11945" ], + "x-ms-request-id": [ "e0bd7261-42fb-46ee-bd3a-4403fc9c967f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "52612e6e-ff4d-4136-ab95-3a6bcce62413" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080845Z:52612e6e-ff4d-4136-ab95-3a6bcce62413" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:08:44 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+53": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "54" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11944" ], + "x-ms-request-id": [ "9a785e76-09bf-4415-85e1-336e990f31a2" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "d7fe4465-58ca-499a-8dc5-2233e5cf3ec5" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080855Z:d7fe4465-58ca-499a-8dc5-2233e5cf3ec5" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:08:55 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+54": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "55" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11943" ], + "x-ms-request-id": [ "7bc9001e-c0a4-4f75-930d-4ee601da4880" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "37a2f4a5-3b0f-4adb-bb7d-4de239579ac0" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080905Z:37a2f4a5-3b0f-4adb-bb7d-4de239579ac0" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:09:05 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+55": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "56" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11942" ], + "x-ms-request-id": [ "4ae1eef2-c754-4b74-ab4b-36ad263f009d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "5fc114c1-c1f7-4d94-8219-de953b459b2e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080916Z:5fc114c1-c1f7-4d94-8219-de953b459b2e" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:09:16 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+56": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "57" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11941" ], + "x-ms-request-id": [ "4ef08dbf-dbd5-4c3c-a0ff-4ed5990d51db" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "6fc05987-4205-4d20-a149-8ff84500c902" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080926Z:6fc05987-4205-4d20-a149-8ff84500c902" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:09:26 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+57": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "58" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11940" ], + "x-ms-request-id": [ "d2d87c97-2be3-4714-a6c7-453f383c9651" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "3faccd95-2eab-4ee9-947b-77326618d8bf" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080936Z:3faccd95-2eab-4ee9-947b-77326618d8bf" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:09:36 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+58": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "59" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11939" ], + "x-ms-request-id": [ "cd5d23ef-3c52-4d0c-a106-292cd9092ad3" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "003cc80e-8350-445a-a94d-09b7b8fb8f72" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080947Z:003cc80e-8350-445a-a94d-09b7b8fb8f72" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:09:46 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+59": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "60" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11938" ], + "x-ms-request-id": [ "521025a8-2ed2-4516-8a79-5e1ae2cd64a2" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "03925c00-89f1-4137-bda3-c966320823b8" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T080957Z:03925c00-89f1-4137-bda3-c966320823b8" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:09:56 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+60": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "61" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11937" ], + "x-ms-request-id": [ "e662c39d-227e-4f8f-867e-5a11e28c7423" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "e3b3f4cd-8f65-47c2-b19f-d5ddba972cae" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081007Z:e3b3f4cd-8f65-47c2-b19f-d5ddba972cae" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:10:06 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+61": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "62" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11936" ], + "x-ms-request-id": [ "64d20cb4-f78b-412d-b52b-a4d3b3d8fb74" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "1fc192f5-1516-4c69-84e4-6e8a591cfe2b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081017Z:1fc192f5-1516-4c69-84e4-6e8a591cfe2b" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:10:17 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+62": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "63" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11935" ], + "x-ms-request-id": [ "5027afb8-b4f0-4157-8537-416c90c342f4" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "63113ee3-3ffa-45d3-a365-930ca77f43fd" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081028Z:63113ee3-3ffa-45d3-a365-930ca77f43fd" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:10:27 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+63": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "64" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11934" ], + "x-ms-request-id": [ "4f562e32-b8a4-442f-8f7d-44fa0817d9ba" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "5ecdad14-d949-496e-8d8c-ae9822ee1ffa" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081038Z:5ecdad14-d949-496e-8d8c-ae9822ee1ffa" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:10:37 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+64": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "65" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11933" ], + "x-ms-request-id": [ "02b4cd7a-8423-4136-abb1-18850cb9c748" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "8712430b-5093-4eed-b026-f75a0113bf45" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081048Z:8712430b-5093-4eed-b026-f75a0113bf45" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:10:48 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+65": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "66" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11932" ], + "x-ms-request-id": [ "36c4297e-8a73-4e8e-8762-eb992342bac6" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "232ec7b1-c516-40bb-a46b-663a42283c49" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081058Z:232ec7b1-c516-40bb-a46b-663a42283c49" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:10:58 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+66": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "67" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11931" ], + "x-ms-request-id": [ "77a801ee-b20f-4c34-a7a6-beef1e4cfdb0" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "209a3e9e-ebc5-4f0f-81c2-b9c5c99def8d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081109Z:209a3e9e-ebc5-4f0f-81c2-b9c5c99def8d" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:11:09 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+67": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "68" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11930" ], + "x-ms-request-id": [ "cd3b9e49-168b-43bd-b28f-db5dfa5006cc" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "ae034dcd-30f5-4572-817a-7e42dcdbacd3" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081119Z:ae034dcd-30f5-4572-817a-7e42dcdbacd3" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:11:19 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+68": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "69" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11929" ], + "x-ms-request-id": [ "ed21dfda-0b75-415e-bdef-6fc48e9e0bad" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "c4188d87-7b51-44c7-ab10-583e8622df5a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081129Z:c4188d87-7b51-44c7-ab10-583e8622df5a" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:11:29 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+69": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "70" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11928" ], + "x-ms-request-id": [ "40ebc6d8-e63a-499a-b435-6a3afad14c1a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "0dcd138e-e9c7-4a51-92e7-c2d678186e3d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081140Z:0dcd138e-e9c7-4a51-92e7-c2d678186e3d" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:11:39 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+70": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "71" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11927" ], + "x-ms-request-id": [ "df23c069-1b26-488d-bd3e-d1df232499aa" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "b1da7499-86e0-4c21-b102-a61b575a2907" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081150Z:b1da7499-86e0-4c21-b102-a61b575a2907" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:11:49 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+71": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "72" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11926" ], + "x-ms-request-id": [ "40a2e93f-0ae0-4a3a-93e8-fe8c7d0f4523" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "3dae186d-2ee2-40c5-ba08-501f499d623b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081200Z:3dae186d-2ee2-40c5-ba08-501f499d623b" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:12:00 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+72": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "73" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11925" ], + "x-ms-request-id": [ "78779594-8e09-4935-b0ef-894b3d5fcc4d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "3a530324-56c5-4709-90a7-9bbfa5a1afe8" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081211Z:3a530324-56c5-4709-90a7-9bbfa5a1afe8" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:12:10 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+73": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "74" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11924" ], + "x-ms-request-id": [ "0ffd722d-18ad-4f26-9b1b-1c80906244cb" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "46bc7c8d-5b30-4386-a901-878431278d73" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081221Z:46bc7c8d-5b30-4386-a901-878431278d73" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:12:20 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+74": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "75" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11923" ], + "x-ms-request-id": [ "f3536696-2aa9-4675-a7dc-a0091a84184d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "626a0367-9031-4206-b6e0-19745fc65b9a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081231Z:626a0367-9031-4206-b6e0-19745fc65b9a" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:12:31 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+75": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "76" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11922" ], + "x-ms-request-id": [ "6ddfb952-124c-46a0-981c-89ae9ae3111a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "7bddc442-f31b-4444-b9a9-b8135d802f7a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081242Z:7bddc442-f31b-4444-b9a9-b8135d802f7a" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:12:42 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+76": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "77" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11921" ], + "x-ms-request-id": [ "be077be5-cf79-41a0-91dd-cf855fd7b0f9" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "77e95f75-d6f1-418a-a018-29eb528e8480" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081252Z:77e95f75-d6f1-418a-a018-29eb528e8480" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:12:52 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+77": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "78" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11920" ], + "x-ms-request-id": [ "43495ce5-3859-44a4-80ec-8af3d15a2afe" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "c503a8bc-223e-43cb-9a52-320ee080a44a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081302Z:c503a8bc-223e-43cb-9a52-320ee080a44a" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:13:02 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+78": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "79" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11919" ], + "x-ms-request-id": [ "c991ca94-4bbe-42e0-ba96-55312ba2937d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "6b3fabc2-d6c9-45ed-b58e-b99520bc1419" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081313Z:6b3fabc2-d6c9-45ed-b58e-b99520bc1419" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:13:13 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+79": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "80" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11918" ], + "x-ms-request-id": [ "3b9a5857-0430-426a-8d87-26b0314461a1" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "e5c16422-5836-48d8-ba20-252a7d71d3d9" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081323Z:e5c16422-5836-48d8-ba20-252a7d71d3d9" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:13:23 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+80": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "81" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11917" ], + "x-ms-request-id": [ "895b88f9-d76a-481b-9f62-cc84b34cff9c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "7e9ccc10-53f0-4f92-baef-e118a7594415" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081333Z:7e9ccc10-53f0-4f92-baef-e118a7594415" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:13:33 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+81": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "82" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11916" ], + "x-ms-request-id": [ "e0717867-e9bd-4f57-9a08-bec7a66ad6ec" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "a8757a32-f5a1-4a41-b88b-fa8705c7c705" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081344Z:a8757a32-f5a1-4a41-b88b-fa8705c7c705" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:13:43 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+82": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "83" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11915" ], + "x-ms-request-id": [ "e843d8c1-12f6-4b4f-904f-774fad39edef" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "f6a18b5e-3973-4a53-8b4b-e22fc6c314c7" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081354Z:f6a18b5e-3973-4a53-8b4b-e22fc6c314c7" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:13:53 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+83": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "84" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11914" ], + "x-ms-request-id": [ "32fd0ab2-8f93-4511-ae53-6b4d622fa7e5" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "1748f0ef-3108-4471-8fce-fb79cfdb26d6" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081404Z:1748f0ef-3108-4471-8fce-fb79cfdb26d6" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:14:04 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+84": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "85" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11913" ], + "x-ms-request-id": [ "b4742d0b-5e2c-45ee-b9a6-f05bc654ea63" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "f9a8115d-c95e-4b84-94e0-986c386f371d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081415Z:f9a8115d-c95e-4b84-94e0-986c386f371d" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:14:14 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+85": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "86" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11912" ], + "x-ms-request-id": [ "62782aa8-f179-4789-9d74-a0cde976227f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "83d31932-f587-4081-8cb9-f2e8dd402713" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081425Z:83d31932-f587-4081-8cb9-f2e8dd402713" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:14:24 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+86": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "87" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11911" ], + "x-ms-request-id": [ "faed4069-5956-4c8c-b42d-17b57df44d90" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "edc27734-a9b3-468c-819a-374c26ff1107" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081435Z:edc27734-a9b3-468c-819a-374c26ff1107" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:14:34 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+87": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "88" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11910" ], + "x-ms-request-id": [ "611f223a-902e-414a-a448-abf9b1eee5a6" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "ffa70fa3-8d11-4e3a-9eed-db588db8de5f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081445Z:ffa70fa3-8d11-4e3a-9eed-db588db8de5f" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:14:45 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+88": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "89" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11909" ], + "x-ms-request-id": [ "37c11080-51d1-485b-b6b7-db162ee5ca20" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "0f1aea21-0e6f-4918-8f24-2af06be0e0e4" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081456Z:0f1aea21-0e6f-4918-8f24-2af06be0e0e4" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:14:55 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+89": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "90" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11908" ], + "x-ms-request-id": [ "7fe18707-859e-4377-a596-93ddf6010204" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "8fc4d7f7-3143-468c-90aa-354c7ab7302b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081506Z:8fc4d7f7-3143-468c-90aa-354c7ab7302b" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:15:05 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+90": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "91" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11907" ], + "x-ms-request-id": [ "e77559d7-9212-4480-b519-c4ab8bbee858" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "1e584a36-45a1-4588-8c06-8d2eff8be389" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081516Z:1e584a36-45a1-4588-8c06-8d2eff8be389" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:15:15 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+91": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "92" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11906" ], + "x-ms-request-id": [ "01799799-1690-43db-a64b-c9596b705e2e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "db408f2b-faef-45bb-9f0e-8df6506d0053" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081527Z:db408f2b-faef-45bb-9f0e-8df6506d0053" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:15:27 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+92": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "93" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11905" ], + "x-ms-request-id": [ "b7365b7f-bf4b-4780-b50a-950c5195a1ba" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "6ee01ce0-ccd2-4669-8182-dc4027285df7" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081537Z:6ee01ce0-ccd2-4669-8182-dc4027285df7" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:15:37 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+93": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "94" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11904" ], + "x-ms-request-id": [ "6741ba0a-4b68-41d6-9d2f-99eb7aed342a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "0a3b47fa-3f00-44da-a334-ddbe96c157b0" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081547Z:0a3b47fa-3f00-44da-a334-ddbe96c157b0" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:15:47 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+94": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "95" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11903" ], + "x-ms-request-id": [ "4f0cc4bd-9afd-450e-9b50-1201cad4f3a2" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "c02da7c9-7f07-4413-a285-09d02a99bb01" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081558Z:c02da7c9-7f07-4413-a285-09d02a99bb01" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:15:57 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+95": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "96" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11902" ], + "x-ms-request-id": [ "da44a0f1-04a9-41c8-a6c2-ad3ce86ed8b0" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "965d73c9-e60a-414a-b0c0-154fc3cde218" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081608Z:965d73c9-e60a-414a-b0c0-154fc3cde218" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:16:07 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+96": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "97" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11901" ], + "x-ms-request-id": [ "13888c5e-024f-489c-9f04-f82eda330cad" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "9b08666d-4f8d-4319-95eb-9350eafb086f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081618Z:9b08666d-4f8d-4319-95eb-9350eafb086f" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:16:18 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+97": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "98" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11900" ], + "x-ms-request-id": [ "e8da5686-bb47-4bf6-919b-7b656cfae623" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "696fe942-3ac9-4987-afa0-b01d32b62c16" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081628Z:696fe942-3ac9-4987-afa0-b01d32b62c16" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:16:28 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+98": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "99" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11899" ], + "x-ms-request-id": [ "cc64d441-171d-4ebd-93d5-a3e1116995d1" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "73b027a6-a098-4c82-a2fa-54dc5dfcf752" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081639Z:73b027a6-a098-4c82-a2fa-54dc5dfcf752" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:16:38 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+99": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "100" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11898" ], + "x-ms-request-id": [ "eb88b5ad-cb01-4811-ad66-37636738f63b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "71f5f0fc-bfdb-4fdc-8c98-ae87c50a3a63" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081649Z:71f5f0fc-bfdb-4fdc-8c98-ae87c50a3a63" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:16:48 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+100": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "101" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11897" ], + "x-ms-request-id": [ "64a09443-9aca-4a2f-926b-2e84a78d2238" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "61082d60-fd7c-4aaf-bec5-3340a38e971d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081659Z:61082d60-fd7c-4aaf-bec5-3340a38e971d" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:16:58 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+101": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "102" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11896" ], + "x-ms-request-id": [ "2ff8bded-c82d-4e9c-bd97-a608aa51b212" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "868bb890-d677-4008-b230-d94c5594cb25" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081710Z:868bb890-d677-4008-b230-d94c5594cb25" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:17:10 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+102": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "103" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11895" ], + "x-ms-request-id": [ "da75bc4e-0f4e-4324-b535-d5d908921e6d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "821b3731-3800-4ea2-8699-1a511207d06a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081720Z:821b3731-3800-4ea2-8699-1a511207d06a" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:17:20 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+103": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "104" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11894" ], + "x-ms-request-id": [ "8be67671-814f-4db5-a4ef-a7b07634291f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "36f6dfa1-50cd-4aa8-a270-3149388a9f83" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081730Z:36f6dfa1-50cd-4aa8-a270-3149388a9f83" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:17:30 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+104": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "105" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11893" ], + "x-ms-request-id": [ "14a335e3-af19-4daf-8a35-612571b80e4a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "9ae697a0-d086-438a-9e33-f79bd08f73d0" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081741Z:9ae697a0-d086-438a-9e33-f79bd08f73d0" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:17:40 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+105": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "106" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11892" ], + "x-ms-request-id": [ "73052f02-b69c-4462-b9a9-4d7fe3b9f184" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "e82710bb-6e16-47e2-86e6-94fc07f8b95a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081751Z:e82710bb-6e16-47e2-86e6-94fc07f8b95a" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:17:51 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+106": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "107" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11891" ], + "x-ms-request-id": [ "36d6eb21-5dc4-4270-bec6-d6b1f3108a14" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "54fe3c01-a424-4b17-851e-2f8615a6ae29" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081801Z:54fe3c01-a424-4b17-851e-2f8615a6ae29" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:18:01 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+107": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "108" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11890" ], + "x-ms-request-id": [ "56b4e503-2930-4c57-8649-e1ac817f2b9a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "421afdb8-4f75-4174-a8d0-2cee51a23996" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081812Z:421afdb8-4f75-4174-a8d0-2cee51a23996" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:18:11 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+108": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "109" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11889" ], + "x-ms-request-id": [ "d0cc67d9-59c4-4cab-9d11-7dc5eaf1b038" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "a1645727-b60d-4ce2-9b29-58246b1903e0" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081822Z:a1645727-b60d-4ce2-9b29-58246b1903e0" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:18:21 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+109": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "110" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11888" ], + "x-ms-request-id": [ "3adb4f85-9db1-4b28-b154-f8089e55e0ec" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "0f11f663-d89f-4d7d-85ef-3ba8193a070e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081833Z:0f11f663-d89f-4d7d-85ef-3ba8193a070e" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:18:32 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+110": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "111" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11887" ], + "x-ms-request-id": [ "70dd47bb-caaf-461d-b17a-1c7024ba6366" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "973e972d-24f2-462e-93e7-44d25f269442" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081843Z:973e972d-24f2-462e-93e7-44d25f269442" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:18:42 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+111": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "112" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11886" ], + "x-ms-request-id": [ "029915b0-70e1-47c7-8751-6f9a37b4ff2d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "60088af0-30a9-47c3-8b22-6792cd372ce8" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081853Z:60088af0-30a9-47c3-8b22-6792cd372ce8" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:18:53 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+112": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "113" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11885" ], + "x-ms-request-id": [ "c023bae9-f02b-471b-8ff4-adb8ea673ad9" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "4b69b346-b907-43e1-8fce-6fba2c749960" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081904Z:4b69b346-b907-43e1-8fce-6fba2c749960" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:19:04 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+113": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "114" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11884" ], + "x-ms-request-id": [ "c00f30be-ce8d-4e57-aeec-b58b7629d7ab" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "6353802a-e18f-4c2a-a5c3-75c5ac18139c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081914Z:6353802a-e18f-4c2a-a5c3-75c5ac18139c" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:19:14 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+114": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "115" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11883" ], + "x-ms-request-id": [ "7303ca3b-8cb6-416e-8704-d2958b0da7bd" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "43897ad9-08ef-4152-a9cf-c127aea088e5" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081924Z:43897ad9-08ef-4152-a9cf-c127aea088e5" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:19:24 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+115": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "116" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11882" ], + "x-ms-request-id": [ "89445aee-4803-4270-b639-6379e9e1ac29" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "a43f0d3d-5147-4400-b8f7-6fecb544327b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081935Z:a43f0d3d-5147-4400-b8f7-6fecb544327b" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:19:34 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+116": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "117" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11881" ], + "x-ms-request-id": [ "d4373dfb-b87b-4469-8777-22b34189b617" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "f3d3af25-647f-4a55-abd0-9a0a21bb0e40" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081945Z:f3d3af25-647f-4a55-abd0-9a0a21bb0e40" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:19:45 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+117": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "118" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11880" ], + "x-ms-request-id": [ "fabfe265-83e3-4d38-b196-ca944b995381" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "aa2834fc-9c91-486e-9468-64ab80310944" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T081955Z:aa2834fc-9c91-486e-9468-64ab80310944" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:19:55 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+118": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "119" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11879" ], + "x-ms-request-id": [ "6ffed88d-2d17-4d40-bd97-93e3a4813ce9" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "4e04daa1-323c-4d6c-bbd3-68607bd85f4c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082006Z:4e04daa1-323c-4d6c-bbd3-68607bd85f4c" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:20:05 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+119": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "120" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11878" ], + "x-ms-request-id": [ "f13775c7-32d9-4828-a3d5-573e029859b9" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "2c72adcd-781b-42f5-93e9-5457313e3fef" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082016Z:2c72adcd-781b-42f5-93e9-5457313e3fef" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:20:15 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+120": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "121" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11877" ], + "x-ms-request-id": [ "41fbaba8-a6f8-4335-92e5-3055c914a6aa" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "408c39f5-414f-45f7-8601-bd9a64131e73" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082026Z:408c39f5-414f-45f7-8601-bd9a64131e73" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:20:26 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+121": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "122" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11876" ], + "x-ms-request-id": [ "5394882f-db6d-4583-8fe2-8c4fee413bce" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "f9623cb0-12fe-4336-b6f9-22eda8dd55ea" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082036Z:f9623cb0-12fe-4336-b6f9-22eda8dd55ea" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:20:36 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+122": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "123" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11875" ], + "x-ms-request-id": [ "81ec9445-619f-4122-82f8-cf7c319d0410" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "b39a1ab4-86c6-4f84-b4e0-252f9eb10047" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082047Z:b39a1ab4-86c6-4f84-b4e0-252f9eb10047" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:20:46 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+123": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "124" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11874" ], + "x-ms-request-id": [ "753ef307-fed5-4efb-82f2-7a24af878eff" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "19761b51-cf3c-45c4-880e-c625948a918d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082057Z:19761b51-cf3c-45c4-880e-c625948a918d" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:20:56 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+124": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "125" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11873" ], + "x-ms-request-id": [ "046dbff9-778f-4335-82f5-0c7ea94520d9" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "7e40d5f1-c6ab-42e8-96fe-32620924344b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082107Z:7e40d5f1-c6ab-42e8-96fe-32620924344b" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:21:07 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+125": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "126" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11872" ], + "x-ms-request-id": [ "9d418546-6ebd-4e2f-a4c4-2ff902e7a287" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "913ba00a-d4de-4548-b500-ff46b4c22d0a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082118Z:913ba00a-d4de-4548-b500-ff46b4c22d0a" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:21:18 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+126": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "127" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11871" ], + "x-ms-request-id": [ "6d3be5cc-1fd0-4b8d-9fc8-686eb7bb6bcf" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "789a9389-489b-458f-9a7e-75d20e515c01" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082128Z:789a9389-489b-458f-9a7e-75d20e515c01" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:21:28 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+127": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "128" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11870" ], + "x-ms-request-id": [ "bde00b07-808e-4d21-8d76-586310ecdc4a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "ec9a0904-d48c-4dcd-ba72-02e59380c006" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082138Z:ec9a0904-d48c-4dcd-ba72-02e59380c006" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:21:38 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+128": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "129" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11869" ], + "x-ms-request-id": [ "6fc0192a-9227-412a-924c-411281300a3e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "0f25fbc8-7ca6-4b60-87eb-ced45693b5c7" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082149Z:0f25fbc8-7ca6-4b60-87eb-ced45693b5c7" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:21:48 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+129": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "130" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11868" ], + "x-ms-request-id": [ "86a39144-b2fc-4b50-8dfb-340b461fb8ac" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "7d553f9e-3469-4a72-aa9a-1fedacfdd4eb" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082159Z:7d553f9e-3469-4a72-aa9a-1fedacfdd4eb" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:21:59 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+130": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "131" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11867" ], + "x-ms-request-id": [ "66959cfd-ff8c-4e39-9b89-935967c038c6" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "1b1eed6b-b1b7-46a3-8787-1fd492515c44" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082209Z:1b1eed6b-b1b7-46a3-8787-1fd492515c44" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:22:09 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+131": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "132" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11866" ], + "x-ms-request-id": [ "f6abe47b-f89c-42a6-a558-3f16b7ef7ae3" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "b927e99d-5b28-4651-b346-e75bc8d23bb7" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082220Z:b927e99d-5b28-4651-b346-e75bc8d23bb7" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:22:19 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+132": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "133" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11865" ], + "x-ms-request-id": [ "6f431163-bfa4-45e3-bccf-6b4199d1a852" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "0b855893-bb77-4e06-a92a-84c4621041be" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082230Z:0b855893-bb77-4e06-a92a-84c4621041be" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:22:29 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+133": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "134" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11864" ], + "x-ms-request-id": [ "55917f1e-d2d4-4b27-b2f3-8c08843e243f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "ce8f8783-e6f5-4c95-ae28-a28e7316515c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082240Z:ce8f8783-e6f5-4c95-ae28-a28e7316515c" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:22:40 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+134": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "135" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11863" ], + "x-ms-request-id": [ "2a0c413a-476b-4254-8214-acec02930c0e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "86a63b6e-9a16-48a2-ac8e-9f2801105c7b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082251Z:86a63b6e-9a16-48a2-ac8e-9f2801105c7b" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:22:50 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+135": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "136" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11862" ], + "x-ms-request-id": [ "1a0f9d10-5d5b-4efe-99da-826fb357a439" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "6bb8e036-5f15-46d5-87ee-fb0cf8ce8288" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082301Z:6bb8e036-5f15-46d5-87ee-fb0cf8ce8288" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:23:00 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+136": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "137" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11861" ], + "x-ms-request-id": [ "14c6e9d9-8da9-4a57-bd3d-b0dbe26c16a7" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "96b78118-7073-4975-ba12-68cc3afb1f3b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082311Z:96b78118-7073-4975-ba12-68cc3afb1f3b" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:23:10 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+137": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "138" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11860" ], + "x-ms-request-id": [ "8baa6397-6ca0-4972-945f-6200ca7f8ddd" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "ed7a27f7-ea8d-4f19-9d0c-9f48d180de85" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082322Z:ed7a27f7-ea8d-4f19-9d0c-9f48d180de85" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:23:21 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+138": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "139" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11859" ], + "x-ms-request-id": [ "09c492e4-8f39-4865-b60c-3f757c8a1c62" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "c75262c0-08d9-4664-85c2-7648baf3b231" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082332Z:c75262c0-08d9-4664-85c2-7648baf3b231" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:23:31 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+139": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "140" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11858" ], + "x-ms-request-id": [ "e9b0fed7-6c11-44d0-b5f0-4be2deab91c7" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "ec846720-6083-4952-9aa7-84001af764d4" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082342Z:ec846720-6083-4952-9aa7-84001af764d4" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:23:42 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+140": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "141" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11857" ], + "x-ms-request-id": [ "fbf8f8ff-728d-4533-8773-766f18ac0ad4" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "8805f4a4-9eb8-4cb6-9c58-9adf5ebf8e49" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082352Z:8805f4a4-9eb8-4cb6-9c58-9adf5ebf8e49" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:23:52 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+141": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "142" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11856" ], + "x-ms-request-id": [ "d1d3837f-51ff-4c20-a804-c20397817eba" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "1bcad580-141f-4239-8cbd-dc81338e070f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082403Z:1bcad580-141f-4239-8cbd-dc81338e070f" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:24:03 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+142": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "143" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11855" ], + "x-ms-request-id": [ "f9532f49-8cc5-451b-b205-241b7369aa63" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "97fb998a-a7f5-48ad-9877-f99341ddb06c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082413Z:97fb998a-a7f5-48ad-9877-f99341ddb06c" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:24:13 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+143": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "144" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11854" ], + "x-ms-request-id": [ "72302702-06ee-42be-a498-64d8571a269d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "04469efb-cbd6-4891-859b-6c4ecc1d3314" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082423Z:04469efb-cbd6-4891-859b-6c4ecc1d3314" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:24:23 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+144": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "145" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11853" ], + "x-ms-request-id": [ "63892279-a617-4b6b-b1bd-0da3c3b6409a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "e7a9aa8a-f450-4f03-9877-15bca30b68fc" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082434Z:e7a9aa8a-f450-4f03-9877-15bca30b68fc" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:24:34 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+145": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "146" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11852" ], + "x-ms-request-id": [ "a239643a-a7e7-4854-9d8c-7fb2ddd8d643" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "4f8a20e5-3d8f-4296-8609-f775b0e8310b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082444Z:4f8a20e5-3d8f-4296-8609-f775b0e8310b" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:24:44 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+146": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "147" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11851" ], + "x-ms-request-id": [ "a376ab2c-8600-42b9-b8f6-b6b58300a5fb" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "94d171f2-3366-41b4-8a08-9b26827c01f6" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082455Z:94d171f2-3366-41b4-8a08-9b26827c01f6" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:24:54 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+147": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "148" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11850" ], + "x-ms-request-id": [ "11727e07-83a2-43f4-98cf-51f281827381" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "ea8c529a-804b-4339-b7b2-e70350bdd601" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082505Z:ea8c529a-804b-4339-b7b2-e70350bdd601" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:25:05 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+148": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "149" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11849" ], + "x-ms-request-id": [ "00cb2114-1885-4a55-b2fa-0758f154b471" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "ed6c1915-dc8c-40e6-b177-808a68c86a4f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082515Z:ed6c1915-dc8c-40e6-b177-808a68c86a4f" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:25:15 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+149": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "150" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11848" ], + "x-ms-request-id": [ "643b8734-163e-494e-a2e8-b2a4ca3f0fc5" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "dd442d5e-8cd2-4d12-8371-46a4b13fd00c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082526Z:dd442d5e-8cd2-4d12-8371-46a4b13fd00c" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:25:25 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+150": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "151" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11847" ], + "x-ms-request-id": [ "b89a4a22-ad7b-4833-9fc4-e2db22832712" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "00f65574-ecd6-4ba4-8447-150a21cd5fc6" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082536Z:00f65574-ecd6-4ba4-8447-150a21cd5fc6" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:25:35 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+151": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "152" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11846" ], + "x-ms-request-id": [ "673ffab0-6414-4fd2-86fc-295d0a80e4d3" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "e70116c0-9f26-4f69-8ac3-cb284e4ddb88" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082546Z:e70116c0-9f26-4f69-8ac3-cb284e4ddb88" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:25:45 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+152": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "153" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11845" ], + "x-ms-request-id": [ "529718f1-1257-4835-9f8c-50cdfe7bf31d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "352482ac-9b6f-4cc6-a038-c7055a5553ab" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082557Z:352482ac-9b6f-4cc6-a038-c7055a5553ab" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:25:56 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+153": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "154" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11844" ], + "x-ms-request-id": [ "3a93acd3-5ae6-41e1-a14a-70ff448bf76e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "b30a5906-8f3e-40f7-b187-717e28d0a323" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082607Z:b30a5906-8f3e-40f7-b187-717e28d0a323" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:26:06 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+154": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "155" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11843" ], + "x-ms-request-id": [ "f0e865e2-1a08-4058-8313-81599f87dfaf" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "769799c9-e061-4bba-aa67-838b1462b148" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082617Z:769799c9-e061-4bba-aa67-838b1462b148" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:26:16 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+155": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "156" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11842" ], + "x-ms-request-id": [ "980a7edf-7875-4d8a-affc-03172c0a8576" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "0ea445a3-d332-4b15-a399-047a12d997a0" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082627Z:0ea445a3-d332-4b15-a399-047a12d997a0" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:26:27 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+156": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "157" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11841" ], + "x-ms-request-id": [ "d20b95a8-c12e-42f2-a2b5-7176979b5ce1" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "9faf2058-c0ca-4c9f-acac-55b840a79056" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082638Z:9faf2058-c0ca-4c9f-acac-55b840a79056" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:26:38 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+157": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "158" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11840" ], + "x-ms-request-id": [ "9b11fdd5-42bb-426d-b8a6-8d4fdb7c2d48" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "b2cbda1d-9a21-43a8-a9fe-042f8334a601" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082648Z:b2cbda1d-9a21-43a8-a9fe-042f8334a601" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:26:48 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+158": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "159" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11839" ], + "x-ms-request-id": [ "ab095f8d-d3a6-4748-9d90-40cb8783c9ff" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "6854b9fe-9130-4eec-9848-a439a36416a2" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082658Z:6854b9fe-9130-4eec-9848-a439a36416a2" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:26:58 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+159": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "160" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11838" ], + "x-ms-request-id": [ "a4659a3f-da16-47e0-a8aa-956cc509f1f0" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "3c4afc97-96a9-40ef-9b13-0b44ae16626d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082709Z:3c4afc97-96a9-40ef-9b13-0b44ae16626d" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:27:08 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+160": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "161" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11837" ], + "x-ms-request-id": [ "130dd60a-2906-45b2-a724-d93e29d44377" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "f8136d89-9302-48d7-90c6-492dcc1b8748" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082719Z:f8136d89-9302-48d7-90c6-492dcc1b8748" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:27:19 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+161": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "162" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11836" ], + "x-ms-request-id": [ "22c108da-283b-45da-813b-a4f4c37633b2" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "fb64fc59-7d7b-4b28-a7fc-6b44e485bbf8" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082729Z:fb64fc59-7d7b-4b28-a7fc-6b44e485bbf8" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:27:29 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+162": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "163" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11835" ], + "x-ms-request-id": [ "4e020a36-3730-4e62-88f3-dea2419b0875" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "a694a055-884a-493c-a9d5-9b0f98244319" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082740Z:a694a055-884a-493c-a9d5-9b0f98244319" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:27:39 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+163": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "164" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11834" ], + "x-ms-request-id": [ "15ee1f09-922c-4bc8-9560-6a9c31b2a5d8" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "175f3e62-4817-4339-84cc-7f027e1fd495" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082750Z:175f3e62-4817-4339-84cc-7f027e1fd495" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:27:49 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+164": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "165" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11833" ], + "x-ms-request-id": [ "0cfa1154-cb1f-4c91-8d9e-97cf156b6b03" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "e99d18db-e934-486c-a8e0-02c0189cace5" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082800Z:e99d18db-e934-486c-a8e0-02c0189cace5" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:28:00 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+165": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "166" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11832" ], + "x-ms-request-id": [ "dc227b96-8376-40a0-9c2a-786fc6feda79" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "59ea34cf-94b3-452e-9114-1579cbe82ff3" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082811Z:59ea34cf-94b3-452e-9114-1579cbe82ff3" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:28:10 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+166": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "167" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11831" ], + "x-ms-request-id": [ "43624737-6bcc-4a38-ac70-634a13f6c74a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "2a2d6dce-a5a3-46cd-bda1-b2d6b744ef77" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082821Z:2a2d6dce-a5a3-46cd-bda1-b2d6b744ef77" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:28:20 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+167": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "168" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11830" ], + "x-ms-request-id": [ "722961d2-7b49-4a0e-87bb-f5c30aa07c89" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "aa09d0f4-5c80-48b1-b89e-704e2d33a7a7" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082831Z:aa09d0f4-5c80-48b1-b89e-704e2d33a7a7" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:28:31 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+168": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "169" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11829" ], + "x-ms-request-id": [ "0d2479fe-0761-4268-8bd0-f1bc2f13db61" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "385bd6a5-647a-4784-bcb8-aafff638f99e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082842Z:385bd6a5-647a-4784-bcb8-aafff638f99e" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:28:41 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+169": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "170" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11828" ], + "x-ms-request-id": [ "6e5509ee-5214-483a-922a-60a38b72f95f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "7d7badc3-23ce-41a2-878e-d3c98ea078b0" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082852Z:7d7badc3-23ce-41a2-878e-d3c98ea078b0" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:28:51 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+170": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "171" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11827" ], + "x-ms-request-id": [ "9ade3661-d0b4-439b-a917-48583f62f4aa" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "bce6a59c-1fc0-4f4f-bbad-961dc6cc4e24" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082902Z:bce6a59c-1fc0-4f4f-bbad-961dc6cc4e24" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:29:01 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+171": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "172" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11826" ], + "x-ms-request-id": [ "c94724d9-3487-42de-aa1f-f247ddbfd359" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "b551e072-ec84-477c-a244-fa79e5835bc6" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082913Z:b551e072-ec84-477c-a244-fa79e5835bc6" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:29:13 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+172": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "173" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11825" ], + "x-ms-request-id": [ "66680edf-b22c-4891-9c2d-e46605d8e2dd" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "73c81838-85c7-4181-9f85-3a38dc4b2069" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082923Z:73c81838-85c7-4181-9f85-3a38dc4b2069" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:29:23 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+173": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "174" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11824" ], + "x-ms-request-id": [ "f05b5189-d704-4336-9362-27369a881d86" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "3dbb518b-2855-44ca-8fc9-43d743289561" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082933Z:3dbb518b-2855-44ca-8fc9-43d743289561" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:29:33 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+174": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "175" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11823" ], + "x-ms-request-id": [ "a7cc4808-8fc8-4a05-9ca0-57e71c5eaf04" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "da465fbb-58c2-46a1-977d-b130956cd2b3" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082943Z:da465fbb-58c2-46a1-977d-b130956cd2b3" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:29:43 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+175": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "176" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11822" ], + "x-ms-request-id": [ "d66173c7-fc1e-408f-be15-5044881b024c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "98ebde64-6f95-4ea0-a0fd-0ef04800a424" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T082954Z:98ebde64-6f95-4ea0-a0fd-0ef04800a424" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:29:53 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+176": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "177" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11821" ], + "x-ms-request-id": [ "baa84faf-8cf8-4ab8-a15c-489086d07b06" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "3523a889-1176-4d9f-be77-cd1d62ebad2e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083004Z:3523a889-1176-4d9f-be77-cd1d62ebad2e" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:30:04 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+177": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "178" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11820" ], + "x-ms-request-id": [ "05ac328f-30ba-488d-8430-fd1ada051881" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "3b8db301-cbc4-4e15-80a5-4167f44bc1fe" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083014Z:3b8db301-cbc4-4e15-80a5-4167f44bc1fe" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:30:14 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+178": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "179" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11819" ], + "x-ms-request-id": [ "63001118-66fe-40cd-a3dd-06a528078a39" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "903005b7-6f7e-4062-b261-86c930a9bfa6" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083025Z:903005b7-6f7e-4062-b261-86c930a9bfa6" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:30:24 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+179": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "180" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11818" ], + "x-ms-request-id": [ "de52b8a1-d420-4c28-a624-ca828564e7e7" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "8d475762-6e01-4cb7-a0b5-3363236de625" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083035Z:8d475762-6e01-4cb7-a0b5-3363236de625" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:30:34 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+180": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "181" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11817" ], + "x-ms-request-id": [ "fe9cb4ac-69a9-4960-8b67-45d7de07f545" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "4e174999-3649-4385-959a-e81ed955aba2" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083046Z:4e174999-3649-4385-959a-e81ed955aba2" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:30:46 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+181": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "182" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11816" ], + "x-ms-request-id": [ "a0c209af-8b9f-43ab-9671-ac3eb86965c3" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "c78878f4-f2ee-40e3-9ba8-3cedf048cd5f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083056Z:c78878f4-f2ee-40e3-9ba8-3cedf048cd5f" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:30:56 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+182": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "183" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11815" ], + "x-ms-request-id": [ "4d93b091-037e-470a-8cae-4096f39bc5f1" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "801fafdc-c906-46a1-b92a-97ace6c5617c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083106Z:801fafdc-c906-46a1-b92a-97ace6c5617c" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:31:06 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+183": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "184" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11814" ], + "x-ms-request-id": [ "baa9d948-c786-48c3-a7f0-bb23f5150493" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "54251b84-2e99-4d1e-b4e8-0644954f05bd" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083117Z:54251b84-2e99-4d1e-b4e8-0644954f05bd" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:31:16 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+184": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "185" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11813" ], + "x-ms-request-id": [ "071d5db6-8756-41c7-a5be-e98a1691b51d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "500f6053-832f-4e7d-abaf-67a457b7f405" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083127Z:500f6053-832f-4e7d-abaf-67a457b7f405" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:31:27 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+185": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "186" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11812" ], + "x-ms-request-id": [ "ec279565-bff3-49c9-b176-684bd3c01e09" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "50190594-9648-41d4-8ac4-a407b7edb21f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083137Z:50190594-9648-41d4-8ac4-a407b7edb21f" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:31:37 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+186": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "187" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11811" ], + "x-ms-request-id": [ "2265040b-d94e-4191-86c3-9a5d53fa21fe" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "9966994a-fff0-4f96-9897-a363b3eee8d0" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083148Z:9966994a-fff0-4f96-9897-a363b3eee8d0" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:31:47 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+187": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "188" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11810" ], + "x-ms-request-id": [ "2ea1d068-9a65-4b62-9a81-1ba0a7361cf1" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "a2b4cd75-45e2-4cc7-ac33-cc0657573ec1" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083158Z:a2b4cd75-45e2-4cc7-ac33-cc0657573ec1" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:31:57 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+188": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "189" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11809" ], + "x-ms-request-id": [ "39d501d4-4902-4de5-824f-21003477c590" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "00a5df4d-39f8-49bc-a95d-0006e1a57c80" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083208Z:00a5df4d-39f8-49bc-a95d-0006e1a57c80" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:32:08 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+189": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "190" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11808" ], + "x-ms-request-id": [ "087d0c2d-fac8-475e-abf4-9fd11f8e0cf0" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "dea59497-f825-42dd-9078-c83809b248a7" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083219Z:dea59497-f825-42dd-9078-c83809b248a7" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:32:18 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+190": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "191" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11807" ], + "x-ms-request-id": [ "795f0cfa-6205-4d98-bf39-872531bfa515" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "b9a7dac0-29dc-409a-a90d-33913a687339" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083229Z:b9a7dac0-29dc-409a-a90d-33913a687339" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:32:28 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+191": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "192" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11806" ], + "x-ms-request-id": [ "362e068a-d8d6-4b7a-b2f7-4ad503c4ca13" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "2573a5b2-fca3-4ce6-898b-cd04ab8dabab" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083239Z:2573a5b2-fca3-4ce6-898b-cd04ab8dabab" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:32:38 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+192": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "193" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11805" ], + "x-ms-request-id": [ "176b2445-527f-423a-b678-753d900ae51c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "7e2cdbe0-87b4-4a55-857a-5c96eb50a110" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083250Z:7e2cdbe0-87b4-4a55-857a-5c96eb50a110" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:32:50 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+193": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "194" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11804" ], + "x-ms-request-id": [ "b03f66a8-a495-4292-a2c6-8e77fc7ec0e2" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "2b30ba8b-9e34-4b3f-9709-772854153c25" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083300Z:2b30ba8b-9e34-4b3f-9709-772854153c25" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:33:00 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+194": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "195" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11803" ], + "x-ms-request-id": [ "53d5d05e-48d4-4ca8-b46b-e42f099d48ae" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "f08bc162-0a95-4726-b8e0-eeb042d2b56f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083310Z:f08bc162-0a95-4726-b8e0-eeb042d2b56f" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:33:10 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+195": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "196" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11802" ], + "x-ms-request-id": [ "5cc0e6a7-5031-4207-9b18-c19b6aaa824c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "6762985f-392c-4df3-9587-76ab7dcc5ac8" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083321Z:6762985f-392c-4df3-9587-76ab7dcc5ac8" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:33:20 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+196": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "197" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11801" ], + "x-ms-request-id": [ "d573d025-225c-40d7-91f0-ed1d473e8cc4" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "a4ff2d74-4b96-4e8d-bb64-38ed135fce94" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083331Z:a4ff2d74-4b96-4e8d-bb64-38ed135fce94" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:33:30 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+197": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "198" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11800" ], + "x-ms-request-id": [ "da0e6fb4-95e0-47a9-99a5-e11edb77e0eb" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "332569b3-72ea-44f0-8876-8259c57ff385" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083341Z:332569b3-72ea-44f0-8876-8259c57ff385" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:33:41 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+198": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "199" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11799" ], + "x-ms-request-id": [ "9d2e5253-20aa-4775-bf8a-5f308a728f80" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "302c66e5-4f10-4e5b-af6c-6ace8b6609b9" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083352Z:302c66e5-4f10-4e5b-af6c-6ace8b6609b9" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:33:51 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+199": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "200" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11798" ], + "x-ms-request-id": [ "6e1f837c-d72d-4bb3-9682-c1a3b3bdaed5" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "b87e6b46-1504-4eff-b93d-f00c76e54d50" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083402Z:b87e6b46-1504-4eff-b93d-f00c76e54d50" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:34:01 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+200": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "201" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11797" ], + "x-ms-request-id": [ "d45cb313-bc3a-4938-afb9-8be192049d15" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "619c2c17-af52-46ff-a93c-3370871b008b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083412Z:619c2c17-af52-46ff-a93c-3370871b008b" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:34:11 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+201": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "202" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11796" ], + "x-ms-request-id": [ "e2339d54-06b6-4153-9c64-a3455993a8e1" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "a162fa73-687c-4fd4-a27f-be1588b9eb8e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083423Z:a162fa73-687c-4fd4-a27f-be1588b9eb8e" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:34:23 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+202": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "203" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11795" ], + "x-ms-request-id": [ "5d9de4b7-10be-440c-a012-81765950317b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "2eaa2231-7f07-4ec0-8caf-ebabb6d006ed" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083433Z:2eaa2231-7f07-4ec0-8caf-ebabb6d006ed" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:34:33 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+203": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "204" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11794" ], + "x-ms-request-id": [ "b93b45e6-ac67-4a2b-bad8-cafbc72ce2bf" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "fbe89661-fe2c-46de-921a-7160650e7ca6" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083443Z:fbe89661-fe2c-46de-921a-7160650e7ca6" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:34:43 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+204": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "205" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11793" ], + "x-ms-request-id": [ "d255db6d-2794-463e-9e0f-6308174ca077" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "6fbcbf12-af41-4c20-9ac5-07241d246ea5" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083454Z:6fbcbf12-af41-4c20-9ac5-07241d246ea5" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:34:53 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+205": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "206" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11795" ], + "x-ms-request-id": [ "d0d315e5-e5a6-4256-8c37-ff6ec20581b0" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "158e3fa3-d368-4ea0-846b-1d9c26596bd3" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083504Z:158e3fa3-d368-4ea0-846b-1d9c26596bd3" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:35:04 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+206": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "207" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11794" ], + "x-ms-request-id": [ "c96d6bb0-fcc1-4f40-bd6a-a4d353ef9722" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "866e7f4a-6783-4c49-8cc1-7b0b6e336af3" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083514Z:866e7f4a-6783-4c49-8cc1-7b0b6e336af3" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:35:14 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+207": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "208" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11793" ], + "x-ms-request-id": [ "dcbcb2d7-fc8f-4a13-bc50-510732ce3818" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "85e1a135-4cb0-43d9-9a08-a5a576fed314" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083525Z:85e1a135-4cb0-43d9-9a08-a5a576fed314" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:35:24 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+208": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "209" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11792" ], + "x-ms-request-id": [ "24f77bc3-cec9-40d0-b971-3249bd834e29" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "41f40828-e4f4-45ec-a730-307661b431f7" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083535Z:41f40828-e4f4-45ec-a730-307661b431f7" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:35:34 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+209": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "210" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11791" ], + "x-ms-request-id": [ "97f9a53e-b543-4984-9d58-8f7d1fd0eac3" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "df2cf5db-6848-417d-a704-551c7fa2913c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083545Z:df2cf5db-6848-417d-a704-551c7fa2913c" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:35:45 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+210": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "211" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11790" ], + "x-ms-request-id": [ "43f69ec7-1a68-4056-90f1-9ef877db4101" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "d0de3149-38c8-410e-aaab-acfde35cc0b1" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083556Z:d0de3149-38c8-410e-aaab-acfde35cc0b1" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:35:55 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+211": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "212" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11789" ], + "x-ms-request-id": [ "3b95f9fa-3e49-4005-8515-5d49df4222e5" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "229c3bfd-e1d6-48d9-9ba4-8ddf508a63a0" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083606Z:229c3bfd-e1d6-48d9-9ba4-8ddf508a63a0" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:36:05 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+212": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "213" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11788" ], + "x-ms-request-id": [ "137b2dbe-bb85-4190-9120-00298fa219a3" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "ccc010e1-0d61-4913-beb4-5582b57442b8" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083617Z:ccc010e1-0d61-4913-beb4-5582b57442b8" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:36:16 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+213": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "214" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11787" ], + "x-ms-request-id": [ "f2edb9f5-14ab-4468-9526-159de18d3275" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "80c51169-6735-4027-a339-f5bdc59798ec" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083627Z:80c51169-6735-4027-a339-f5bdc59798ec" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:36:26 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+214": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "215" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11786" ], + "x-ms-request-id": [ "6a262812-79b1-437d-8e0a-b7ead62064dc" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "c42bd6d9-3105-46b8-8993-1670782cc2bb" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083637Z:c42bd6d9-3105-46b8-8993-1670782cc2bb" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:36:37 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+215": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "216" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11785" ], + "x-ms-request-id": [ "658300aa-8cf2-46c5-9d67-71e08f9548db" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "e54f0a19-7532-4972-912e-0761e177e1c1" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083647Z:e54f0a19-7532-4972-912e-0761e177e1c1" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:36:47 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+216": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "217" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11784" ], + "x-ms-request-id": [ "922b8e9f-b0f6-407a-8b82-8644a5925b16" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "9f958cc1-cf5a-403a-894b-39dfb722947f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083658Z:9f958cc1-cf5a-403a-894b-39dfb722947f" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:36:58 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+217": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "218" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11783" ], + "x-ms-request-id": [ "1c46729b-8c35-49a8-88f3-7874754743a9" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "b08cdba4-c1af-4c6e-ad52-5f2a9b407b50" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083708Z:b08cdba4-c1af-4c6e-ad52-5f2a9b407b50" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:37:08 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+218": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "219" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11782" ], + "x-ms-request-id": [ "7bf7a888-8b54-43dc-862c-d9545599806b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "41c42150-6ea0-482b-971b-90f7b7557f03" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083718Z:41c42150-6ea0-482b-971b-90f7b7557f03" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:37:18 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+219": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "220" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11781" ], + "x-ms-request-id": [ "62434694-fcb5-4f12-acbe-05f5ff966796" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "05de8dce-8c53-488d-bd0d-ff3fd4dbc65e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083729Z:05de8dce-8c53-488d-bd0d-ff3fd4dbc65e" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:37:28 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+220": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "221" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11780" ], + "x-ms-request-id": [ "54b6fbc2-5c52-4f3c-82aa-2919daa0796a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "b3c86f24-ee6c-4fce-aabe-76b1677f1746" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083740Z:b3c86f24-ee6c-4fce-aabe-76b1677f1746" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:37:39 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+221": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "222" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11779" ], + "x-ms-request-id": [ "9b81e153-12b6-4f67-9689-09e82c7afb65" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "c1450ec7-0d51-46d0-9834-883707d472b3" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083750Z:c1450ec7-0d51-46d0-9834-883707d472b3" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:37:49 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+222": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "223" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11778" ], + "x-ms-request-id": [ "1bc6cbf2-fa88-483c-84ba-0da0837b1cd9" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "260d0054-bce4-43fa-b61d-7f82e4418564" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083800Z:260d0054-bce4-43fa-b61d-7f82e4418564" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:38:00 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+223": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "224" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11777" ], + "x-ms-request-id": [ "60c4aa39-b82d-4a5f-82a3-8e7539ee4d5c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "9a4ae5f3-3052-48ee-9509-68924d797ca6" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083811Z:9a4ae5f3-3052-48ee-9509-68924d797ca6" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:38:10 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+224": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "225" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11776" ], + "x-ms-request-id": [ "05deaaa4-f1b1-49f9-a75d-f1eda9e14b0d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "8c5b86c6-1232-496f-a5ec-2f0fc2ce19e6" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083821Z:8c5b86c6-1232-496f-a5ec-2f0fc2ce19e6" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:38:20 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+225": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "226" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11775" ], + "x-ms-request-id": [ "da1ef276-4129-41c3-b8d8-9ec5f3d882d2" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "5441a0be-670b-4af4-85f1-7c5a90d514eb" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083831Z:5441a0be-670b-4af4-85f1-7c5a90d514eb" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:38:31 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+226": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "227" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11774" ], + "x-ms-request-id": [ "c1e6a4be-7a76-4a50-8dc4-f87d92ecf6e9" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "bfcfcb39-d3a7-4de5-8d4c-a0d561d178b9" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083842Z:bfcfcb39-d3a7-4de5-8d4c-a0d561d178b9" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:38:41 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+227": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "228" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11773" ], + "x-ms-request-id": [ "6cdc2b8a-04b1-4847-bc40-d381304f2caa" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "04b3654d-3ae0-4bc5-a879-9df72335dbb4" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083852Z:04b3654d-3ae0-4bc5-a879-9df72335dbb4" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:38:51 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+228": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "229" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11772" ], + "x-ms-request-id": [ "0a792f8f-0e4c-47a6-a56a-51624bc5fcf5" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "6de4a795-faa9-41a3-b1da-cd02fbe3dbf7" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083902Z:6de4a795-faa9-41a3-b1da-cd02fbe3dbf7" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:39:01 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+229": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "230" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11771" ], + "x-ms-request-id": [ "2ed14ff8-4d2e-4865-ae59-7c909c30327c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "4b46bf99-e96d-4c2e-b22f-93e003fba565" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083913Z:4b46bf99-e96d-4c2e-b22f-93e003fba565" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:39:13 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+230": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "231" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11770" ], + "x-ms-request-id": [ "d0796e9a-a81b-409d-8039-5742c81f0349" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "f81416f7-d468-4142-b705-851485b35ac5" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083923Z:f81416f7-d468-4142-b705-851485b35ac5" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:39:23 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+231": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "232" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11769" ], + "x-ms-request-id": [ "50941c9d-2bcc-4627-af45-98043fc7cfaa" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "20aa120d-0fdd-4c7a-a217-f64898d10f6c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083933Z:20aa120d-0fdd-4c7a-a217-f64898d10f6c" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:39:33 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+232": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "233" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11768" ], + "x-ms-request-id": [ "e27e50ec-a938-4652-b743-3121d5aa85ef" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "4e45f997-8637-43ae-9415-33cbb2a0b304" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083944Z:4e45f997-8637-43ae-9415-33cbb2a0b304" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:39:43 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+233": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "234" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11767" ], + "x-ms-request-id": [ "a6d97202-83b2-44e6-98be-35a146564663" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "76c0af4c-7518-40b5-9147-ea3252b3866d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T083954Z:76c0af4c-7518-40b5-9147-ea3252b3866d" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:39:54 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+234": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "235" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11766" ], + "x-ms-request-id": [ "f92728bf-3507-468e-b8d9-010ad9573e09" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "59d99f66-53d7-49f2-a156-179be34aabb2" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084004Z:59d99f66-53d7-49f2-a156-179be34aabb2" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:40:04 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+235": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "236" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11765" ], + "x-ms-request-id": [ "88300a71-c8a0-47a3-bea9-5c67ef3afede" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "8d809d63-d863-4945-b263-ec4f2b21322f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084015Z:8d809d63-d863-4945-b263-ec4f2b21322f" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:40:14 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+236": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "237" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11764" ], + "x-ms-request-id": [ "a1ccc0a7-4db3-4271-b386-f00422338bb8" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "c09196f0-a0a8-4b4f-879e-bd81d0060d20" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084025Z:c09196f0-a0a8-4b4f-879e-bd81d0060d20" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:40:24 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+237": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "238" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11763" ], + "x-ms-request-id": [ "fae27e5f-dcb9-4180-8269-53a49fce19ee" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "daf62d1e-2aec-418e-933d-e13676634b5a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084035Z:daf62d1e-2aec-418e-933d-e13676634b5a" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:40:35 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+238": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "239" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11762" ], + "x-ms-request-id": [ "17be0843-edf4-43c2-83de-ccf56a4bb002" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "01fdb22a-7bca-4e98-be35-b67233a827fa" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084046Z:01fdb22a-7bca-4e98-be35-b67233a827fa" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:40:45 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+239": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "240" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11761" ], + "x-ms-request-id": [ "19e11f08-ecc5-43cf-837a-4effe6aef22b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "266ca7ee-7398-4657-818f-e35e2c95933d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084056Z:266ca7ee-7398-4657-818f-e35e2c95933d" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:40:55 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+240": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "241" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11760" ], + "x-ms-request-id": [ "a05b82a5-73ce-4e4e-a049-a29186826af0" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "3542da10-4dbd-4eea-a6ee-0239efefe15e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084106Z:3542da10-4dbd-4eea-a6ee-0239efefe15e" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:41:05 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+241": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "242" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11759" ], + "x-ms-request-id": [ "aa75a3c9-4ba5-460c-97c4-c4a7328b86b8" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "9928a01e-3016-41f3-af33-32a8e25f6968" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084116Z:9928a01e-3016-41f3-af33-32a8e25f6968" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:41:16 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+242": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "243" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11758" ], + "x-ms-request-id": [ "1135821a-9280-485e-af3f-bf7f6e818ad8" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "c5bb7339-39fc-4b82-bd94-8b0c39bbc626" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084127Z:c5bb7339-39fc-4b82-bd94-8b0c39bbc626" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:41:26 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+243": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "244" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11757" ], + "x-ms-request-id": [ "fcd70424-b598-4cb3-b1ab-49cf5d497775" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "becb8a7c-32a8-4cf8-9859-889990472640" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084137Z:becb8a7c-32a8-4cf8-9859-889990472640" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:41:37 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+244": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "245" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11756" ], + "x-ms-request-id": [ "c6a4f3bc-5159-4575-9f1f-c08c5ecece6b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "c75e86a2-bc79-40f8-9920-03a7b1ca4ac4" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084148Z:c75e86a2-bc79-40f8-9920-03a7b1ca4ac4" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:41:47 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+245": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "246" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11755" ], + "x-ms-request-id": [ "438ee6cc-10cd-4f98-8e20-5f7da375dbff" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "d271563b-6b95-49b5-b78d-b826574a12f0" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084158Z:d271563b-6b95-49b5-b78d-b826574a12f0" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:41:57 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+246": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "247" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11754" ], + "x-ms-request-id": [ "157c8bd7-adf9-4e27-9a7f-ebe350b9fdc6" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "47128cbe-384d-4194-b1ef-0280c76b9138" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084208Z:47128cbe-384d-4194-b1ef-0280c76b9138" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:42:08 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+247": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "248" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11753" ], + "x-ms-request-id": [ "9f848266-69f5-4658-821b-a0fad6182838" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "5c1fdb24-f924-405b-b790-9658e2ef6309" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084219Z:5c1fdb24-f924-405b-b790-9658e2ef6309" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:42:19 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+248": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "249" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11752" ], + "x-ms-request-id": [ "1f6707ad-69b5-433c-8d09-01cff2fda9ff" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "16d22108-68dc-4a88-b219-cfb997852a5f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084229Z:16d22108-68dc-4a88-b219-cfb997852a5f" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:42:29 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+249": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "250" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11751" ], + "x-ms-request-id": [ "a6b6e57b-5814-43c8-878d-3eca6c8be61b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "33421772-c521-4be5-98be-4635378fbfcc" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084239Z:33421772-c521-4be5-98be-4635378fbfcc" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:42:39 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+250": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "251" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11750" ], + "x-ms-request-id": [ "9f6e3922-cee1-4796-a676-dc3b8ee4b7ca" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "e1636d61-a3e9-4d17-8bae-4e9d52474d07" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084250Z:e1636d61-a3e9-4d17-8bae-4e9d52474d07" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:42:49 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+251": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "252" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11749" ], + "x-ms-request-id": [ "f9b0395f-f8b8-46a6-852b-1a4fc7fb0975" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "e60436ee-0288-4c84-8b70-03bc35e8f22f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084300Z:e60436ee-0288-4c84-8b70-03bc35e8f22f" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:43:00 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+252": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "253" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11748" ], + "x-ms-request-id": [ "e4f53c03-ecbf-4acd-93bb-13097b0859a3" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "d3c93344-ffa4-43e6-be00-5d7c42fc80aa" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084310Z:d3c93344-ffa4-43e6-be00-5d7c42fc80aa" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:43:10 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+253": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "254" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11747" ], + "x-ms-request-id": [ "40b77c5b-875a-4a18-ae7e-d13f6b04c8bc" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "3d952078-e69b-4e5f-ae3a-f96467ca8c6e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084321Z:3d952078-e69b-4e5f-ae3a-f96467ca8c6e" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:43:20 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+254": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "255" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11746" ], + "x-ms-request-id": [ "27d372cd-ecc9-459c-92b8-6b6c53a1f2bd" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "1ae99105-590c-42cc-a929-2315d1e24b2b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084331Z:1ae99105-590c-42cc-a929-2315d1e24b2b" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:43:30 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+255": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "256" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11745" ], + "x-ms-request-id": [ "463a4ecc-2bf7-459e-be6b-58bf2d9b0794" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "30456cca-cd6c-4e89-985f-5100cc593ea9" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084341Z:30456cca-cd6c-4e89-985f-5100cc593ea9" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:43:41 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+256": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "257" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11744" ], + "x-ms-request-id": [ "aa70ec0e-b824-488f-8503-bbbe74391e71" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "1acf6312-b2e2-4278-9b6e-73ffb3bdef28" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084351Z:1acf6312-b2e2-4278-9b6e-73ffb3bdef28" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:43:51 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+257": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "258" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11743" ], + "x-ms-request-id": [ "2af6ab2c-ffe7-40e4-ae71-83c240964eed" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "daa4d0ee-764b-42ff-8d57-7f25b2c7f723" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084402Z:daa4d0ee-764b-42ff-8d57-7f25b2c7f723" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:44:01 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+258": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "259" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11742" ], + "x-ms-request-id": [ "3cb8d39f-65b6-4946-ab2b-26d041b7c163" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "00878ecf-baa5-493d-8cbb-3248e25336dd" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084412Z:00878ecf-baa5-493d-8cbb-3248e25336dd" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:44:12 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+259": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "260" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11741" ], + "x-ms-request-id": [ "b39d3076-0ba7-46e6-91d7-4927d3d9a6d8" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "4c65e874-8956-43fc-9ec0-1bea38e5adb7" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084423Z:4c65e874-8956-43fc-9ec0-1bea38e5adb7" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:44:22 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+260": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "261" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11740" ], + "x-ms-request-id": [ "494676c8-9c61-4cdd-8d8d-9667a82a29bb" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "f76e8b4d-cb51-42bf-b78c-cefd40536b07" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084433Z:f76e8b4d-cb51-42bf-b78c-cefd40536b07" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:44:32 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+261": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "262" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11739" ], + "x-ms-request-id": [ "f45d7ef1-e9a5-46a6-a5d1-fead8f7f18a0" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "7d4ed25c-ce49-4ac2-b9c1-ed52ab80faf8" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084443Z:7d4ed25c-ce49-4ac2-b9c1-ed52ab80faf8" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:44:43 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+262": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "263" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11738" ], + "x-ms-request-id": [ "6e5e9a50-c82f-4293-a282-04dc359ca398" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "619aa0d7-cb97-4018-9dbf-e4a8cd4d15a1" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084454Z:619aa0d7-cb97-4018-9dbf-e4a8cd4d15a1" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:44:53 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+263": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "264" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11737" ], + "x-ms-request-id": [ "7ca49338-59c1-48c7-8be5-fdeb878f8904" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "667c457d-e458-40ff-9c5e-e311bbc2926d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084504Z:667c457d-e458-40ff-9c5e-e311bbc2926d" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:45:04 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+264": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "265" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11736" ], + "x-ms-request-id": [ "79d3e97c-3479-47c6-9d05-5b28d74cf616" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "e0b73697-0e5b-4486-ad51-11692a1d52bb" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084514Z:e0b73697-0e5b-4486-ad51-11692a1d52bb" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:45:14 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+265": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "266" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11735" ], + "x-ms-request-id": [ "033f6ab6-e910-42af-9871-51f1ca9a1e5b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "d568c265-fa31-4993-adc5-5a92a5cd649f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084525Z:d568c265-fa31-4993-adc5-5a92a5cd649f" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:45:25 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+266": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "267" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11734" ], + "x-ms-request-id": [ "11f4a542-ee5f-46cf-9a13-993c5a6f2104" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "b13efd70-7940-4c1b-88c0-459d99c63b57" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084535Z:b13efd70-7940-4c1b-88c0-459d99c63b57" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:45:35 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+267": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "268" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11733" ], + "x-ms-request-id": [ "fadecae7-83f5-4d0d-8a2d-f3e10ed1db78" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "6a4e6f0a-2fb2-4a06-a370-34e94114fe6d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084545Z:6a4e6f0a-2fb2-4a06-a370-34e94114fe6d" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:45:45 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+268": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "269" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11732" ], + "x-ms-request-id": [ "3d474b39-322f-45fd-824a-d5350cd3e43d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "5f72c9b4-b8fc-4eca-8e84-d76da329281d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084556Z:5f72c9b4-b8fc-4eca-8e84-d76da329281d" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:45:55 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+269": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "270" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11731" ], + "x-ms-request-id": [ "6c43cf10-837e-4edf-b0f6-297427c7858c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "067f8172-3ac7-408d-9a8e-b0b5e87f9eae" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084606Z:067f8172-3ac7-408d-9a8e-b0b5e87f9eae" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:46:06 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+270": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "271" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11730" ], + "x-ms-request-id": [ "1881e64c-187a-4316-b2de-e7e20e2cc60f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "80ebb9e6-823f-4779-8e6b-3bcfa97ddf1e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084616Z:80ebb9e6-823f-4779-8e6b-3bcfa97ddf1e" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:46:16 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+271": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "272" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11729" ], + "x-ms-request-id": [ "b590138d-da6e-4384-83d7-26e58279178d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "cf200b7d-6fa8-43f6-97f4-8e13fa83288a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084627Z:cf200b7d-6fa8-43f6-97f4-8e13fa83288a" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:46:26 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+272": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "273" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11728" ], + "x-ms-request-id": [ "f26d5e0b-941a-4505-98a2-2ae6770e36fd" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "b9513537-dbd7-42f8-8f14-5422a820342c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084637Z:b9513537-dbd7-42f8-8f14-5422a820342c" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:46:36 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+273": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "274" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11727" ], + "x-ms-request-id": [ "23bf2f97-29d5-4a2d-80d1-afe0c5a11e9b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "60fb424e-8d6c-4728-8a7e-edd3df7efff8" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084647Z:60fb424e-8d6c-4728-8a7e-edd3df7efff8" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:46:47 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+274": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "275" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11726" ], + "x-ms-request-id": [ "02518a47-bf89-4806-b9b1-c13686bccf0b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "a6bb3f18-3ac5-402d-a019-06af99a7e353" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084658Z:a6bb3f18-3ac5-402d-a019-06af99a7e353" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:46:57 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+275": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "276" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11725" ], + "x-ms-request-id": [ "dd069a72-eead-4cb1-a09b-a099c1b22319" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "aa259ec0-e660-4b59-8efd-eed7eaf037b0" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084708Z:aa259ec0-e660-4b59-8efd-eed7eaf037b0" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:47:07 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+276": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "277" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11724" ], + "x-ms-request-id": [ "b2727f6e-59df-4082-b0a7-28159ec6c350" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "2ca398cb-3a85-4ddf-bc29-6580d08905b0" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084718Z:2ca398cb-3a85-4ddf-bc29-6580d08905b0" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:47:18 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+277": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "278" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11723" ], + "x-ms-request-id": [ "d35e17aa-e6eb-4088-b9d2-d93c78f43f2b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "c37b1611-4b28-4b9f-bc41-2e7a2010018d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084729Z:c37b1611-4b28-4b9f-bc41-2e7a2010018d" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:47:28 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+278": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "279" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11722" ], + "x-ms-request-id": [ "e569bd7a-d4f3-4ca3-87be-8dd58f536710" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "e643f6c2-54ba-4f22-aae3-d419ded50861" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084739Z:e643f6c2-54ba-4f22-aae3-d419ded50861" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:47:39 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+279": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "280" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11721" ], + "x-ms-request-id": [ "b7f36bf4-1351-4153-9eff-c058c4cbad84" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "0deaa6df-18c5-4064-8860-c732ead1e707" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084749Z:0deaa6df-18c5-4064-8860-c732ead1e707" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:47:49 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+280": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "281" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11720" ], + "x-ms-request-id": [ "19754d85-1bde-40f2-a124-1c9789918e4f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "5810e19f-15aa-4eab-9f4b-58a9c1676df4" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084800Z:5810e19f-15aa-4eab-9f4b-58a9c1676df4" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:47:59 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+281": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "282" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11719" ], + "x-ms-request-id": [ "20b36603-489a-4415-ab0b-0d369ebfe73b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "bcf96603-b711-460b-a90f-e7d5eed714f3" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084810Z:bcf96603-b711-460b-a90f-e7d5eed714f3" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:48:09 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+282": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "283" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11718" ], + "x-ms-request-id": [ "ec693fbb-6d71-44e5-9949-c133abc5220e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "5849ecc3-3b3a-40c5-bafa-6079bec4e7bd" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084820Z:5849ecc3-3b3a-40c5-bafa-6079bec4e7bd" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:48:20 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+283": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "284" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11717" ], + "x-ms-request-id": [ "57c6a0f0-070f-41cd-97f6-7baec82dbaaf" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "a25b89b4-45e3-41a4-8a28-6f4042c33e1b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084831Z:a25b89b4-45e3-41a4-8a28-6f4042c33e1b" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:48:30 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+284": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "285" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11716" ], + "x-ms-request-id": [ "b7c6ee0a-cbbe-462d-92b7-15a40fe77a93" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "0f2e2b3d-e48b-40fb-b3e8-91d28b663152" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084841Z:0f2e2b3d-e48b-40fb-b3e8-91d28b663152" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:48:40 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+285": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "286" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11715" ], + "x-ms-request-id": [ "a5e4bd90-fcd5-4a7d-bb81-6d7add428526" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "73332b30-15ed-4423-8165-04a04c34d868" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084852Z:73332b30-15ed-4423-8165-04a04c34d868" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:48:51 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+286": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "287" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11714" ], + "x-ms-request-id": [ "94188ebb-f8ab-4717-9104-b58ecd82e40e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "1c4de64a-1370-41a5-b9cc-74192b495dfa" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084902Z:1c4de64a-1370-41a5-b9cc-74192b495dfa" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:49:02 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+287": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "288" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11713" ], + "x-ms-request-id": [ "43429349-d1c0-4be2-83c0-1fec3a4f2a9a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "86911d72-8afd-4a22-8408-978ca7a5a10b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084912Z:86911d72-8afd-4a22-8408-978ca7a5a10b" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:49:12 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+288": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "289" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11712" ], + "x-ms-request-id": [ "fbacf79b-ebc1-41de-9582-12f059c21d2c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "2ea2e7c6-f56e-4d9a-9fdb-a0492f937b56" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084923Z:2ea2e7c6-f56e-4d9a-9fdb-a0492f937b56" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:49:22 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+289": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "290" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11711" ], + "x-ms-request-id": [ "1896a0f3-92b3-4fe4-96f7-33d51cc59fd1" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "96db648e-ed9b-453d-bba8-70169f804d0c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084933Z:96db648e-ed9b-453d-bba8-70169f804d0c" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:49:32 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+290": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "291" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11710" ], + "x-ms-request-id": [ "270ebbbb-a2eb-4189-afe4-add659d0ba0c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "a3c62a86-2590-4d8f-9a39-f7eb9362f3f8" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084943Z:a3c62a86-2590-4d8f-9a39-f7eb9362f3f8" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:49:43 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+291": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "292" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11709" ], + "x-ms-request-id": [ "99f696d6-bd37-43c9-be2f-20accfd2059d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "64c83669-cda1-4b90-95ad-4b65fcd00e8b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T084953Z:64c83669-cda1-4b90-95ad-4b65fcd00e8b" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:49:53 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+292": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "293" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11708" ], + "x-ms-request-id": [ "ac7e55cc-245f-4fb5-b963-f3f1ea8f66a2" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "89ea0d24-2291-49c4-b069-2158e50cd9cf" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085004Z:89ea0d24-2291-49c4-b069-2158e50cd9cf" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:50:03 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+293": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "294" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11707" ], + "x-ms-request-id": [ "5f8c9fca-d870-416b-990e-48aae6f051d3" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "58359bf1-874f-497a-abf1-948618d9632a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085014Z:58359bf1-874f-497a-abf1-948618d9632a" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:50:13 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+294": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "295" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11706" ], + "x-ms-request-id": [ "b25b082c-3e88-4a10-9db4-c0e1568364b4" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "649a2d19-e998-42e1-9cbe-de02550b403a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085025Z:649a2d19-e998-42e1-9cbe-de02550b403a" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:50:24 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+295": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "296" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11705" ], + "x-ms-request-id": [ "ef11bad4-d9fc-4e17-a369-8ce5eac76191" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "e669fa77-b7a9-4c10-898f-8f08c363245f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085035Z:e669fa77-b7a9-4c10-898f-8f08c363245f" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:50:34 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+296": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "297" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11704" ], + "x-ms-request-id": [ "8776d2e7-c328-4c43-b36e-4f0412e6031a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "85d87edd-3420-4503-b469-fbaf939303c5" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085045Z:85d87edd-3420-4503-b469-fbaf939303c5" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:50:45 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+297": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "298" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11703" ], + "x-ms-request-id": [ "6efc79f5-a5b9-40a8-85cc-8782a1a95301" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "9c0eadc5-1255-4f4c-8dd2-6c74ad9f77e7" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085056Z:9c0eadc5-1255-4f4c-8dd2-6c74ad9f77e7" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:50:55 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+298": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "299" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11702" ], + "x-ms-request-id": [ "ed18d33d-59cc-4991-85b4-f38981a23241" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "1805a06c-79de-442c-a402-268d7798fdb8" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085106Z:1805a06c-79de-442c-a402-268d7798fdb8" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:51:06 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+299": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "300" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11701" ], + "x-ms-request-id": [ "62b6ca8b-3568-40a6-8e2c-ff0a5429eacb" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "e74cb347-d04c-4c75-a17f-8b4722178c2d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085116Z:e74cb347-d04c-4c75-a17f-8b4722178c2d" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:51:16 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+300": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "301" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11700" ], + "x-ms-request-id": [ "9ae3dbff-a7ca-4eb4-8199-1dbccb519051" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "1ca804cc-2a2a-4a2e-8ecf-5f3156be6a79" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085127Z:1ca804cc-2a2a-4a2e-8ecf-5f3156be6a79" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:51:26 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+301": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "302" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11699" ], + "x-ms-request-id": [ "1da9f3a4-aa5b-4577-8333-49ac5df71636" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "b82f0eba-34c2-45d1-9925-32fef43dd9d7" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085137Z:b82f0eba-34c2-45d1-9925-32fef43dd9d7" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:51:36 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+302": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "303" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11698" ], + "x-ms-request-id": [ "3f3500f0-1c1b-452c-b24a-78e399cf57b1" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "c6a72124-3e81-4826-8b68-42cf3c6da54c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085147Z:c6a72124-3e81-4826-8b68-42cf3c6da54c" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:51:47 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+303": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "304" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11697" ], + "x-ms-request-id": [ "49bbb8bb-7417-4d2d-9631-33aec1a3249f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "888a6e86-e0cc-4bbe-8037-dfbb15c0fe95" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085158Z:888a6e86-e0cc-4bbe-8037-dfbb15c0fe95" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:51:57 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+304": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "305" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11696" ], + "x-ms-request-id": [ "d466526b-6576-4f54-9471-266d70b361f8" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "62eb514f-5bf2-4144-8de7-067816da567d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085209Z:62eb514f-5bf2-4144-8de7-067816da567d" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:52:09 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+305": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "306" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11695" ], + "x-ms-request-id": [ "43154443-2625-4f6e-83e1-47f9789f74b6" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "e6e8462c-af16-4807-ab2b-1bd3225d3f8c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085220Z:e6e8462c-af16-4807-ab2b-1bd3225d3f8c" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:52:19 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+306": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "307" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11694" ], + "x-ms-request-id": [ "c8eed50b-38cb-4a61-8341-9fa47e8488c1" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "1ac38217-9899-4c5a-8181-babb715c9165" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085230Z:1ac38217-9899-4c5a-8181-babb715c9165" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:52:29 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+307": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "308" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11693" ], + "x-ms-request-id": [ "02ea7409-d39b-469b-a4ff-0b00c45ffd52" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "c6d97679-6a60-4600-a126-ece632fc7eed" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085240Z:c6d97679-6a60-4600-a126-ece632fc7eed" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:52:40 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+308": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "309" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11692" ], + "x-ms-request-id": [ "4270568b-d461-4513-bf3d-3392d07040f8" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "ba6fa48c-8f0c-4408-9a67-6da7ecee63dc" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085251Z:ba6fa48c-8f0c-4408-9a67-6da7ecee63dc" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:52:51 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+309": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "310" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11691" ], + "x-ms-request-id": [ "dd7a14ad-3d60-441e-8523-b78605ee013e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "4fa91d80-d4d1-4c55-9b6b-71d5ae9e2561" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085301Z:4fa91d80-d4d1-4c55-9b6b-71d5ae9e2561" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:53:01 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+310": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "311" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11690" ], + "x-ms-request-id": [ "31418700-85fa-495a-b596-437309a41cbd" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "3facfe2e-6c99-4c2c-b068-d113a4e97da0" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085311Z:3facfe2e-6c99-4c2c-b068-d113a4e97da0" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:53:11 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+311": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "312" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11689" ], + "x-ms-request-id": [ "6dd16795-7131-4480-b4e2-e4e53f7a1804" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "b2955055-cef7-41c3-96b2-4e691b5943a1" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085322Z:b2955055-cef7-41c3-96b2-4e691b5943a1" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:53:21 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+312": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "313" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11688" ], + "x-ms-request-id": [ "e0703469-c95c-4af2-87a9-dc0e7affed0b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "73cffbdb-b896-4373-835d-4850f9ec6072" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085332Z:73cffbdb-b896-4373-835d-4850f9ec6072" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:53:32 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+313": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "314" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11687" ], + "x-ms-request-id": [ "be5c8cb2-4452-411f-8b6f-20bf542beabb" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "dd42b396-539f-4b6b-8686-f4fa81dca525" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085342Z:dd42b396-539f-4b6b-8686-f4fa81dca525" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:53:42 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+314": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "315" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11686" ], + "x-ms-request-id": [ "6f09a5ed-8448-4978-905e-fc2cf21349f9" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "616152d0-40cd-4898-9f61-cc28ca0a4141" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085353Z:616152d0-40cd-4898-9f61-cc28ca0a4141" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:53:52 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+315": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "316" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11685" ], + "x-ms-request-id": [ "acdffbb1-f757-40de-8e12-8cabb583b064" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "14a4bce4-c614-4b7c-b692-8c75c447cb55" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085403Z:14a4bce4-c614-4b7c-b692-8c75c447cb55" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:54:02 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+316": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "317" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11684" ], + "x-ms-request-id": [ "05248e5d-5f24-4edf-95ee-68e4ccce1bdb" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "484ec829-72b0-4a66-afeb-e30870c991b5" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085413Z:484ec829-72b0-4a66-afeb-e30870c991b5" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:54:13 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+317": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "318" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11679" ], + "x-ms-request-id": [ "078ef4b4-97a3-4ab4-8e41-f08ab54422f6" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "b1ee8195-2c53-4ba8-afe5-3014af3f2740" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085424Z:b1ee8195-2c53-4ba8-afe5-3014af3f2740" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:54:23 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+318": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "319" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11678" ], + "x-ms-request-id": [ "7d3dd1c5-4c48-4063-b890-e87145efd6d9" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "0d9ec108-5009-4d52-b176-0349dd6342c5" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085434Z:0d9ec108-5009-4d52-b176-0349dd6342c5" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:54:33 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+319": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "320" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11677" ], + "x-ms-request-id": [ "effb8061-530a-4870-b46a-09a7f8e43767" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "09844d53-cea6-47de-97fd-b1bf7df3cbec" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085444Z:09844d53-cea6-47de-97fd-b1bf7df3cbec" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:54:43 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+320": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "321" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11676" ], + "x-ms-request-id": [ "6fcd3962-84d8-4730-99b2-ddd3d958f7d7" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "6c7add4f-2762-413d-8310-34a4a0969e9f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085454Z:6c7add4f-2762-413d-8310-34a4a0969e9f" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:54:53 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+321": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "322" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11675" ], + "x-ms-request-id": [ "b758ce06-46b4-4cef-b12d-1e941664809f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "241cf069-abfb-4267-8368-6e91ce855c34" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085505Z:241cf069-abfb-4267-8368-6e91ce855c34" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:55:05 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+322": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "323" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11674" ], + "x-ms-request-id": [ "2eceb6a4-943e-4245-ad22-b079d0f8b901" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "e4f77c39-b43b-49d7-8d0e-039e47279658" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085515Z:e4f77c39-b43b-49d7-8d0e-039e47279658" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:55:15 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+323": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "324" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11673" ], + "x-ms-request-id": [ "111ba1ac-d200-4ac6-a2df-4ab910f64916" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "1714c2ed-2f19-456c-ae8d-87acd0f19545" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085525Z:1714c2ed-2f19-456c-ae8d-87acd0f19545" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:55:25 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+324": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "325" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11672" ], + "x-ms-request-id": [ "5657cff1-e9ca-40c2-b112-3413cb890c2a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "54e8f28c-dce6-4bb5-bd9b-0808e92ac722" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085536Z:54e8f28c-dce6-4bb5-bd9b-0808e92ac722" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:55:35 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+325": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "326" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11671" ], + "x-ms-request-id": [ "12094c51-7da8-419b-ad86-a054461a4726" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "94726acb-03a5-4696-904e-778cf2389aeb" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085546Z:94726acb-03a5-4696-904e-778cf2389aeb" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:55:45 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+326": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "327" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11670" ], + "x-ms-request-id": [ "474b40be-485f-4c35-a48d-902827caa55c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "31c83236-7189-4905-b4e9-e9d93c7d63d8" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085556Z:31c83236-7189-4905-b4e9-e9d93c7d63d8" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:55:56 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+327": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "328" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11669" ], + "x-ms-request-id": [ "32304606-b577-405f-915e-bdf76c7b238b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "f5e1aa74-4aeb-4a22-ac8c-49ad419055b4" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085606Z:f5e1aa74-4aeb-4a22-ac8c-49ad419055b4" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:56:06 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+328": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "329" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11668" ], + "x-ms-request-id": [ "ba30f98c-da8e-4ace-8dd5-5edccb2b5089" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "caf8907d-b1ae-4d6b-987d-171dbac6892b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085617Z:caf8907d-b1ae-4d6b-987d-171dbac6892b" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:56:16 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+329": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "330" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11667" ], + "x-ms-request-id": [ "ece94da4-0b5c-4607-9fd8-f11f9797c1c6" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "9a5ec60f-49f6-4761-87d3-b4a4e4b2121b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085627Z:9a5ec60f-49f6-4761-87d3-b4a4e4b2121b" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:56:26 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+330": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "331" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11666" ], + "x-ms-request-id": [ "1dcdde4f-7d00-46aa-9466-8911e4556c00" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "e384b6f7-a313-47f2-bfb7-bc0a9c602c99" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085637Z:e384b6f7-a313-47f2-bfb7-bc0a9c602c99" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:56:37 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+331": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "332" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11665" ], + "x-ms-request-id": [ "3a0d9c3b-3a70-42fd-84da-246889972255" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "a7c5db33-4bf2-439a-959b-40122901ca44" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085648Z:a7c5db33-4bf2-439a-959b-40122901ca44" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:56:47 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+332": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "333" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11664" ], + "x-ms-request-id": [ "4fd5eb47-eecc-4f98-8038-49ccc9c647aa" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "832374bd-4a23-4055-a460-7a4a8735bb11" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085658Z:832374bd-4a23-4055-a460-7a4a8735bb11" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:56:57 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+333": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "334" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11663" ], + "x-ms-request-id": [ "8748270f-6c35-490a-96e5-f41e7defae03" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "9abce412-ad10-47db-b592-949cf6de530e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085709Z:9abce412-ad10-47db-b592-949cf6de530e" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:57:09 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+334": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "335" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11662" ], + "x-ms-request-id": [ "282f711e-a3ce-46aa-abd9-374f4983ca1f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "870a93c2-0658-4267-bedd-bfff29718639" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085719Z:870a93c2-0658-4267-bedd-bfff29718639" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:57:19 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+335": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "336" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11661" ], + "x-ms-request-id": [ "c2c17ab1-12ba-4662-87cf-35e8516cb51a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "ef839669-e277-4415-91c6-65f031d6cab6" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085729Z:ef839669-e277-4415-91c6-65f031d6cab6" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:57:29 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+336": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "337" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11660" ], + "x-ms-request-id": [ "96823abc-ad22-44bd-9fa2-b39c44d85e35" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "1070225a-7b1a-4d6e-a783-4dd32863efbb" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085740Z:1070225a-7b1a-4d6e-a783-4dd32863efbb" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:57:39 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+337": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "338" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11659" ], + "x-ms-request-id": [ "cc85b5cf-2768-41e8-9313-613335e460df" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "017274f2-98b1-4112-a470-02cdc7dcc978" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085750Z:017274f2-98b1-4112-a470-02cdc7dcc978" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:57:50 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+338": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "339" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11658" ], + "x-ms-request-id": [ "a51ba5cf-57c0-4d46-a837-4902bb5239be" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "ca1cc36f-4adf-4ae9-9a07-c99461eadbaf" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085800Z:ca1cc36f-4adf-4ae9-9a07-c99461eadbaf" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:58:00 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+339": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "340" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11657" ], + "x-ms-request-id": [ "cbfbe183-a5b3-4456-810a-ebacde56dce7" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "13502275-ea61-4933-8897-bfffe0fd6759" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085811Z:13502275-ea61-4933-8897-bfffe0fd6759" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:58:10 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+340": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "341" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11656" ], + "x-ms-request-id": [ "0c5c82e4-bdaf-4509-aab0-ab041e905f0e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "a27e000f-0964-4289-8030-fee5524b3b02" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085821Z:a27e000f-0964-4289-8030-fee5524b3b02" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:58:21 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+341": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "342" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11655" ], + "x-ms-request-id": [ "40e2362d-d8bc-44f5-a18c-33cf4fb4590f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "8261d49c-d6ec-4773-a38e-58021b7e3d53" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085831Z:8261d49c-d6ec-4773-a38e-58021b7e3d53" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:58:31 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+342": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "343" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11654" ], + "x-ms-request-id": [ "d42c69b7-59cf-4634-a476-86d4c703f12e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "4b34ba4a-49e9-41e9-8e61-7bd7c921124e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085842Z:4b34ba4a-49e9-41e9-8e61-7bd7c921124e" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:58:41 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+343": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "344" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11653" ], + "x-ms-request-id": [ "5c4c4978-bbc8-46c4-87f4-845c0826109a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "3a10ee0d-b2d6-4fa9-a39f-6425c6666adb" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085852Z:3a10ee0d-b2d6-4fa9-a39f-6425c6666adb" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:58:52 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+344": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "345" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11652" ], + "x-ms-request-id": [ "3a89131c-a7b8-4ca6-ae9a-ddf0c8941e96" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "bd53eb94-9884-4f43-b6b8-dd096e94e56e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085902Z:bd53eb94-9884-4f43-b6b8-dd096e94e56e" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:59:02 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+345": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "346" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11651" ], + "x-ms-request-id": [ "31dafb51-e46e-43a5-957c-8ffbc3e29b58" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "3dbc2fda-2af0-4073-912b-c2d21bd43111" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085913Z:3dbc2fda-2af0-4073-912b-c2d21bd43111" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:59:12 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+346": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "347" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11650" ], + "x-ms-request-id": [ "d2f494ea-279e-4b05-be52-1f76361489c1" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "12bc87a0-fea2-486c-9cba-0a8f96dfdbf2" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085923Z:12bc87a0-fea2-486c-9cba-0a8f96dfdbf2" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:59:22 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+347": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "348" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11649" ], + "x-ms-request-id": [ "97edccae-104f-488c-b931-0fbab1d236ad" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "a0915d2c-92dd-432d-b093-7a595bc3613c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085933Z:a0915d2c-92dd-432d-b093-7a595bc3613c" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:59:32 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+348": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "349" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11648" ], + "x-ms-request-id": [ "ec04188d-d13c-430a-96c9-3aae4442f888" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "4a6421e1-1c56-4617-ad14-a726b2062c03" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085944Z:4a6421e1-1c56-4617-ad14-a726b2062c03" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:59:43 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+349": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "350" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11647" ], + "x-ms-request-id": [ "e59d8117-3968-4ebe-92e2-0ff2d4870feb" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "ae403541-4f52-4d8a-91a2-1c697a038143" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T085954Z:ae403541-4f52-4d8a-91a2-1c697a038143" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 08:59:54 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+350": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "351" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11647" ], + "x-ms-request-id": [ "3d49d74e-e741-4bb1-8180-3aad5e551cd9" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "3134ff2e-a862-46c8-b472-7105794e2dc0" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090004Z:3134ff2e-a862-46c8-b472-7105794e2dc0" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:00:04 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+351": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "352" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11646" ], + "x-ms-request-id": [ "247c885b-23ef-4391-847f-0fa926816b54" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "ca0b4c85-4df2-43b2-8bbb-441d24d2a712" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090015Z:ca0b4c85-4df2-43b2-8bbb-441d24d2a712" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:00:15 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+352": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "353" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11645" ], + "x-ms-request-id": [ "a8e4d91d-e8e8-47d3-a602-c35444185a1a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "f13ced0a-caf7-47a6-a3d8-9639e7046ffe" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090025Z:f13ced0a-caf7-47a6-a3d8-9639e7046ffe" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:00:25 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+353": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "354" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11644" ], + "x-ms-request-id": [ "d9772507-d9b5-49e2-862b-a7aac0abd4da" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "b16b9e7e-42e5-43c8-9865-e38b333eee8b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090036Z:b16b9e7e-42e5-43c8-9865-e38b333eee8b" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:00:35 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+354": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "355" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11643" ], + "x-ms-request-id": [ "d746c8de-9a80-4f5c-b9c8-4089bedb1122" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "94bf1954-ece2-4d93-b842-886588273ed5" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090046Z:94bf1954-ece2-4d93-b842-886588273ed5" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:00:46 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+355": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "356" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11642" ], + "x-ms-request-id": [ "fd029e73-0ede-4c9c-aa26-e7772f2b1f32" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "353ea7fa-76f0-43e1-8189-2a2cfb267433" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090056Z:353ea7fa-76f0-43e1-8189-2a2cfb267433" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:00:56 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+356": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "357" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11641" ], + "x-ms-request-id": [ "fbf6cbdd-5014-49c2-9e1d-8c86a48816ff" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "f7a0f32e-cbbf-4c64-ba9d-c8023e626347" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090107Z:f7a0f32e-cbbf-4c64-ba9d-c8023e626347" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:01:06 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+357": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "358" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11640" ], + "x-ms-request-id": [ "0b697c7d-83c6-4c11-afe9-cc1ac0d44def" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "48a29536-f580-4e45-9969-8a1a9ee3f6e7" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090117Z:48a29536-f580-4e45-9969-8a1a9ee3f6e7" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:01:17 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+358": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "359" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11639" ], + "x-ms-request-id": [ "6ca34034-f9e1-4c74-936b-4213a76bda1b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "dcefb87f-4a46-4558-b6a6-a58c9eb1b091" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090128Z:dcefb87f-4a46-4558-b6a6-a58c9eb1b091" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:01:27 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+359": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "360" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11638" ], + "x-ms-request-id": [ "2845d81d-8e3c-4f5d-818b-da7d0ba4480a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "d168a22f-3e00-4060-bbd5-020a3a18860e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090138Z:d168a22f-3e00-4060-bbd5-020a3a18860e" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:01:37 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+360": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "361" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11637" ], + "x-ms-request-id": [ "7096aa93-a7e3-4767-b946-23a92e56f4e2" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "543fd0ae-9964-416e-a9e6-f81a9bce8cc8" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090148Z:543fd0ae-9964-416e-a9e6-f81a9bce8cc8" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:01:47 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+361": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "362" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11636" ], + "x-ms-request-id": [ "4e341703-8214-411b-baf2-9ea7c1fd6d59" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "98c6a830-dd44-4c2b-b914-00f117144d68" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090159Z:98c6a830-dd44-4c2b-b914-00f117144d68" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:01:58 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+362": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "363" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11635" ], + "x-ms-request-id": [ "e32539ca-a560-4c66-90e9-e28a88363955" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "624f94b0-182d-4f5b-8c52-395c6012a68c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090209Z:624f94b0-182d-4f5b-8c52-395c6012a68c" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:02:09 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+363": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "364" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11634" ], + "x-ms-request-id": [ "a817e6bb-98c5-4fcc-9652-20e4ed224f76" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "f8d2be4d-5133-4206-a9c6-835657c27c07" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090219Z:f8d2be4d-5133-4206-a9c6-835657c27c07" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:02:19 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+364": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "365" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11633" ], + "x-ms-request-id": [ "420c2a8c-3c62-4ee1-ab32-c68f9ef65e58" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "5a66b4cf-f93a-4a58-9e9a-35cf04de11a6" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090230Z:5a66b4cf-f93a-4a58-9e9a-35cf04de11a6" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:02:29 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+365": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "366" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11632" ], + "x-ms-request-id": [ "2ed157bd-5038-429a-9555-77ba78d7cfc1" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "22d8ff3a-fdaa-40fd-b1f6-b832855f04d2" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090240Z:22d8ff3a-fdaa-40fd-b1f6-b832855f04d2" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:02:40 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+366": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "367" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11631" ], + "x-ms-request-id": [ "0d015d69-7acc-448f-b06f-1e3a7097e2ab" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "de0d3bca-ee54-4c47-aa79-21bddbfa094b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090250Z:de0d3bca-ee54-4c47-aa79-21bddbfa094b" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:02:50 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+367": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "368" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11630" ], + "x-ms-request-id": [ "4a345d65-3882-4a98-8fb7-321d95e9cc1a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "6787892f-011f-447c-8002-373acdbcfc4c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090301Z:6787892f-011f-447c-8002-373acdbcfc4c" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:03:00 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+368": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "369" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11629" ], + "x-ms-request-id": [ "c5d64a7f-525b-4bd9-9432-580e9bb21aa3" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "1f59fe1c-d0ee-4edf-a421-5f5a940cefb6" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090312Z:1f59fe1c-d0ee-4edf-a421-5f5a940cefb6" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:03:11 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+369": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "370" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11628" ], + "x-ms-request-id": [ "00ae3c91-4091-42df-a1f7-f81e50cfa378" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "68e62d24-b4ed-4f92-9407-1c1dc23e3ad9" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090322Z:68e62d24-b4ed-4f92-9407-1c1dc23e3ad9" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:03:21 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+370": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "371" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11627" ], + "x-ms-request-id": [ "be4f03c3-076e-44f7-8d90-aad16a7f0982" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "dc224467-c61a-4498-a969-9271b395af7d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090332Z:dc224467-c61a-4498-a969-9271b395af7d" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:03:32 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+371": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "372" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11626" ], + "x-ms-request-id": [ "30524b4a-8b9a-4cb3-9aa1-f6592177e2e2" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "489dd7a0-59eb-48fc-ad09-97817b7f130e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090343Z:489dd7a0-59eb-48fc-ad09-97817b7f130e" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:03:42 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+372": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "373" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11625" ], + "x-ms-request-id": [ "68b7a9af-1f12-4bf7-aff7-3cbe9b43f7e7" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "0566ccc7-bad5-4542-809e-bd4286493c0c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090353Z:0566ccc7-bad5-4542-809e-bd4286493c0c" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:03:53 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+373": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "374" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11624" ], + "x-ms-request-id": [ "a105bf74-b872-4520-b471-be9641167e0e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "0fa75c4c-df9f-4db6-962f-804660e4e962" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090403Z:0fa75c4c-df9f-4db6-962f-804660e4e962" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:04:03 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+374": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "375" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11623" ], + "x-ms-request-id": [ "4519ce14-e9a4-4375-9071-79b9d5240769" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "ed150fc7-dd27-49b8-9da6-5229c8c0804e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090414Z:ed150fc7-dd27-49b8-9da6-5229c8c0804e" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:04:13 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+375": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "376" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11621" ], + "x-ms-request-id": [ "5ddf1249-6726-4a83-8867-c1c84cf7b8db" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "6f5adedc-fe7f-4d5f-966a-0860a0134246" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090424Z:6f5adedc-fe7f-4d5f-966a-0860a0134246" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:04:23 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+376": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "377" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11620" ], + "x-ms-request-id": [ "172a08b9-b46f-41da-977d-cb0e5b68d7be" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "4df2ca03-e933-4835-afec-7535060f0024" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090434Z:4df2ca03-e933-4835-afec-7535060f0024" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:04:33 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+377": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "378" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11619" ], + "x-ms-request-id": [ "0307cd59-6700-4d6d-97df-a124d2ca049b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "24d6a3db-6869-4e1f-8a7f-de4d8f436716" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090445Z:24d6a3db-6869-4e1f-8a7f-de4d8f436716" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:04:45 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+378": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "379" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11618" ], + "x-ms-request-id": [ "16a1cee7-8e0b-4541-8ace-6d113ee74bc5" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "e039906c-d3e1-475b-ba70-e26f5f5856d5" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090455Z:e039906c-d3e1-475b-ba70-e26f5f5856d5" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:04:55 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+379": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "380" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11646" ], + "x-ms-request-id": [ "ed47443f-4035-4324-9e6c-a819071fec3e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "b676341a-d334-4147-bc30-f7d0d3e06c66" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090505Z:b676341a-d334-4147-bc30-f7d0d3e06c66" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:05:05 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+380": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "381" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11645" ], + "x-ms-request-id": [ "84bb2198-c116-411e-b520-45b13eba7ff2" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "902cc703-e404-4925-8472-88e70e054305" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090516Z:902cc703-e404-4925-8472-88e70e054305" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:05:15 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+381": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "382" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11644" ], + "x-ms-request-id": [ "02cf31de-88aa-4cde-9d8e-6a2aecf12974" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "e23b37f9-8701-4fe1-a825-66eddf73d9ab" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090526Z:e23b37f9-8701-4fe1-a825-66eddf73d9ab" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:05:26 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+382": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "383" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11643" ], + "x-ms-request-id": [ "6deca3bc-b22f-42ad-8787-754d58b24dfc" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "64145d5e-972b-4f16-bd67-cadeb297befc" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090536Z:64145d5e-972b-4f16-bd67-cadeb297befc" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:05:36 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+383": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "384" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11642" ], + "x-ms-request-id": [ "81e45d7c-a922-4e31-9b80-4fead0e25b36" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "d2dd8ec5-2141-4781-8490-f95ec3b9a7d8" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090547Z:d2dd8ec5-2141-4781-8490-f95ec3b9a7d8" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:05:46 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+384": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "385" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11641" ], + "x-ms-request-id": [ "3040efe3-646c-4d93-88d5-9d750e6c48de" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "f230ab0b-2fa7-4efb-a06c-f03d26a55cb6" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090557Z:f230ab0b-2fa7-4efb-a06c-f03d26a55cb6" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:05:56 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+385": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "386" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11640" ], + "x-ms-request-id": [ "9c5d387d-3d7c-4cfa-b735-66341ac7bbc9" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "8fa7befa-affd-4900-a976-88e43fe30ad6" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090607Z:8fa7befa-affd-4900-a976-88e43fe30ad6" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:06:07 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+386": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "387" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11639" ], + "x-ms-request-id": [ "e417d92c-e61e-4255-9342-eed564b41089" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "295dcd64-7b84-41fa-a48b-bf4322e1615a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090618Z:295dcd64-7b84-41fa-a48b-bf4322e1615a" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:06:17 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+387": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "388" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11638" ], + "x-ms-request-id": [ "1b7df4a6-5d4c-46e2-ae84-deec91cbf6c9" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "82699647-ede4-45be-9f9a-17a32cfcb7d2" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090628Z:82699647-ede4-45be-9f9a-17a32cfcb7d2" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:06:27 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+388": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "389" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11637" ], + "x-ms-request-id": [ "e41545e8-7041-435b-9a5d-7d7620c5f156" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "3c149b1a-860d-46ed-b38e-cd91796029a5" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090638Z:3c149b1a-860d-46ed-b38e-cd91796029a5" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:06:38 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+389": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "390" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11636" ], + "x-ms-request-id": [ "683f72d8-3815-4bd5-bdc8-0489c77815c7" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "390aba26-7582-4831-bc96-dd2ca62407a2" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090649Z:390aba26-7582-4831-bc96-dd2ca62407a2" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:06:48 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+390": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "391" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11635" ], + "x-ms-request-id": [ "e3c8dd66-de3a-486e-80b2-cc6fa961fb78" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "3a2c9bd5-fa73-4c0c-a876-add04537e923" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090659Z:3a2c9bd5-fa73-4c0c-a876-add04537e923" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:06:59 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+391": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "392" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11634" ], + "x-ms-request-id": [ "73368b4a-ce10-470b-b003-774251be3dc7" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "5548c6a2-88e9-427d-992a-e442d1817fdf" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090709Z:5548c6a2-88e9-427d-992a-e442d1817fdf" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:07:09 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+392": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "393" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11633" ], + "x-ms-request-id": [ "79c51a2f-1968-4b1d-86e7-324da338dd87" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "cde197c7-bd83-4366-bd38-519847c06cfc" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090720Z:cde197c7-bd83-4366-bd38-519847c06cfc" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:07:19 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+393": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "394" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11632" ], + "x-ms-request-id": [ "09a205dc-09af-446c-8276-099b12f5e578" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "8664e9d1-586a-4991-8dd7-06f956bebc17" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090730Z:8664e9d1-586a-4991-8dd7-06f956bebc17" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:07:30 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+394": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "395" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11631" ], + "x-ms-request-id": [ "804ccc39-e5d8-42ea-82ce-8d334b202f54" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "aa3c9ecc-8cae-452b-aaf0-c1b1d29540be" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090740Z:aa3c9ecc-8cae-452b-aaf0-c1b1d29540be" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:07:40 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+395": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "396" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11630" ], + "x-ms-request-id": [ "dca85033-174e-4c0c-bcb3-bae5ea6aadc5" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "5031f5a4-b2d1-4c26-a7e0-e3964ffc1d2b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090751Z:5031f5a4-b2d1-4c26-a7e0-e3964ffc1d2b" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:07:50 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+396": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "397" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11629" ], + "x-ms-request-id": [ "56f92fd4-89af-4f42-9db4-47613214dcde" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "a51742a7-ad65-4d49-b18c-bea15dc342db" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090801Z:a51742a7-ad65-4d49-b18c-bea15dc342db" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:08:00 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+397": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "398" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11628" ], + "x-ms-request-id": [ "226233b6-abcf-4c76-8a5e-3326d24e010b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "b9011319-a466-4bdf-b8ec-d3842a10b890" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090811Z:b9011319-a466-4bdf-b8ec-d3842a10b890" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:08:11 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+398": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "399" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11627" ], + "x-ms-request-id": [ "ec566a78-825b-4e36-b834-2691a89abc00" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "0df12608-b32f-4e4e-acd7-b986edbd653f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090822Z:0df12608-b32f-4e4e-acd7-b986edbd653f" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:08:21 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+399": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "400" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11626" ], + "x-ms-request-id": [ "b0d2efa2-3767-4559-84e1-a7dcf6c7c0de" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "07f12531-a391-4618-a3e0-7ed388b8b8d3" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090832Z:07f12531-a391-4618-a3e0-7ed388b8b8d3" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:08:31 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+400": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "401" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11625" ], + "x-ms-request-id": [ "119587ba-f5b1-4e6c-aee2-1dd9a5dd64f2" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "4c26c1f9-505c-4d4f-b27a-023f0939eaef" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090842Z:4c26c1f9-505c-4d4f-b27a-023f0939eaef" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:08:41 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+401": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "402" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11624" ], + "x-ms-request-id": [ "52ed87d1-7a7a-454b-a31f-c81aa51dbea8" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "9dbf1829-ecc3-4675-8bd5-49c233db0116" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090853Z:9dbf1829-ecc3-4675-8bd5-49c233db0116" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:08:52 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+402": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "403" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11623" ], + "x-ms-request-id": [ "d788d32a-786f-43c2-9553-5d67fc080279" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "8f2b510b-c42d-493e-8346-e6eb2ffb5318" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090903Z:8f2b510b-c42d-493e-8346-e6eb2ffb5318" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:09:03 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+403": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "404" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11622" ], + "x-ms-request-id": [ "7dd1350c-fe54-4b27-ae64-a0ec82aba9af" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "4e5235f2-cabc-4e09-87d3-8155174c180f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090913Z:4e5235f2-cabc-4e09-87d3-8155174c180f" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:09:13 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+404": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "405" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11621" ], + "x-ms-request-id": [ "50159fa5-2140-4f56-b395-f0420fd5c0c7" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "6edc1ed2-998f-422e-9435-29e89805a621" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090924Z:6edc1ed2-998f-422e-9435-29e89805a621" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:09:23 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+405": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "406" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11620" ], + "x-ms-request-id": [ "c2ad1fde-7257-4bcd-910e-2a67aaa0173b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "bef97793-af9e-4e89-9fe4-148da8bcc420" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090934Z:bef97793-af9e-4e89-9fe4-148da8bcc420" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:09:34 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+406": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "407" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11619" ], + "x-ms-request-id": [ "95ee712c-35c6-4df4-8315-9928c3bd9cd2" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "c4f7bd27-2b11-418e-8712-d1b907f81c79" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090945Z:c4f7bd27-2b11-418e-8712-d1b907f81c79" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:09:44 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+407": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "408" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11618" ], + "x-ms-request-id": [ "63502128-b264-411e-aef1-77fe84f1af6b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "31b151fd-e3a7-4498-9ebc-9841704b9818" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T090955Z:31b151fd-e3a7-4498-9ebc-9841704b9818" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:09:54 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+408": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "409" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11646" ], + "x-ms-request-id": [ "adab513e-6ed4-4e9e-bd7e-aa958edcaa7f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "b18d58fe-8f3a-4885-87fb-a55f8133a550" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091005Z:b18d58fe-8f3a-4885-87fb-a55f8133a550" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:10:05 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+409": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "410" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11645" ], + "x-ms-request-id": [ "df0aba57-010b-4d23-9e0b-e071e9fc81da" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "a815804e-f1a2-45ca-a281-b579031492b2" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091016Z:a815804e-f1a2-45ca-a281-b579031492b2" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:10:15 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+410": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "411" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11644" ], + "x-ms-request-id": [ "13779a3e-e9e8-4b3d-819f-786e0f1d186c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "2bae35f0-dfad-4e14-a5a3-7b47f688dd20" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091026Z:2bae35f0-dfad-4e14-a5a3-7b47f688dd20" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:10:25 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+411": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "412" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11643" ], + "x-ms-request-id": [ "2477a9de-cf20-4a02-a429-a81bc8e78999" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "afe5ab4b-af47-40c0-ae9c-8c5087257627" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091036Z:afe5ab4b-af47-40c0-ae9c-8c5087257627" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:10:35 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+412": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "413" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11642" ], + "x-ms-request-id": [ "d8e93db8-ecbd-4fc4-b9f1-843886e495a7" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "1d07eeb8-8a3a-4528-87f6-64436248711a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091047Z:1d07eeb8-8a3a-4528-87f6-64436248711a" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:10:46 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+413": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "414" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11641" ], + "x-ms-request-id": [ "679da7fe-8121-4108-83f7-c1b90346c6ee" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "faae849e-7ea1-4a06-ad20-d9098dd2de50" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091057Z:faae849e-7ea1-4a06-ad20-d9098dd2de50" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:10:56 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+414": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "415" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11640" ], + "x-ms-request-id": [ "88372ef9-810f-407b-b7d9-65c93bb83590" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "704e5c7e-8ead-4264-bc03-d262808aa05c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091107Z:704e5c7e-8ead-4264-bc03-d262808aa05c" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:11:06 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+415": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "416" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11639" ], + "x-ms-request-id": [ "c0ee4fc0-8348-4dff-850d-9213bab8f1e9" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "db53358d-a894-47ac-8c0e-e76797db578f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091118Z:db53358d-a894-47ac-8c0e-e76797db578f" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:11:18 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+416": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "417" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11638" ], + "x-ms-request-id": [ "2c2204fe-90f6-4855-9038-62c58bf1b179" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "cd361b8a-be6e-41f1-9db0-1387aecc44a7" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091128Z:cd361b8a-be6e-41f1-9db0-1387aecc44a7" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:11:28 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+417": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "418" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11637" ], + "x-ms-request-id": [ "78a88109-4974-47d9-934b-84cf53247b98" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "226be3fa-0c36-4906-81b9-4eeeb7dda659" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091138Z:226be3fa-0c36-4906-81b9-4eeeb7dda659" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:11:38 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+418": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "419" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11636" ], + "x-ms-request-id": [ "7046a2f4-5271-41f3-ba17-c4860e6eede3" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "c19e2728-83aa-4344-ba10-f858caf71202" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091149Z:c19e2728-83aa-4344-ba10-f858caf71202" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:11:48 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+419": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "420" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11635" ], + "x-ms-request-id": [ "d0871ad5-317d-448c-9d51-bfdb9f7b39be" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "58be1761-bf5a-4ab6-979c-6034e5c44d2c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091159Z:58be1761-bf5a-4ab6-979c-6034e5c44d2c" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:11:58 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+420": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "421" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11634" ], + "x-ms-request-id": [ "9fcee60b-8c02-469f-baa3-6352a613502e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "1a870fde-8374-42f4-b95d-2c3b5ab8acbb" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091209Z:1a870fde-8374-42f4-b95d-2c3b5ab8acbb" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:12:09 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+421": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "422" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11633" ], + "x-ms-request-id": [ "c0a1eb6c-d50e-4b22-b188-6601a6237396" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "9744d1af-5cdd-4e08-a90e-067f24f3a1ad" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091220Z:9744d1af-5cdd-4e08-a90e-067f24f3a1ad" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:12:19 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+422": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "423" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11632" ], + "x-ms-request-id": [ "914b820a-6b39-4e5e-b938-30c038200b02" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "3458de9e-a546-40e6-84a1-08268f9e4f7e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091230Z:3458de9e-a546-40e6-84a1-08268f9e4f7e" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:12:29 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+423": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "424" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11630" ], + "x-ms-request-id": [ "411b6846-c583-47a0-bc63-54e5eb25fcbf" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "6650b247-1ced-400c-b755-2d68fbc13d3d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091240Z:6650b247-1ced-400c-b755-2d68fbc13d3d" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:12:40 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+424": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "425" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11628" ], + "x-ms-request-id": [ "65d78750-5bb3-4a3c-84a8-d01f0d22a66e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "ed6d0504-0a87-46ae-9905-2808c0129160" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091251Z:ed6d0504-0a87-46ae-9905-2808c0129160" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:12:51 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+425": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "426" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11627" ], + "x-ms-request-id": [ "29136029-9162-4828-b9ea-a7c9b7a22c59" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "54415eea-2888-443d-a770-8ae1846ae2e9" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091301Z:54415eea-2888-443d-a770-8ae1846ae2e9" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:13:01 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+426": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "427" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11626" ], + "x-ms-request-id": [ "a87ce2b3-422e-4656-8523-0c70ee408d28" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "224326e0-c3af-4542-9daa-0d005935b70c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091311Z:224326e0-c3af-4542-9daa-0d005935b70c" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:13:11 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+427": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "428" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11625" ], + "x-ms-request-id": [ "817312e4-7980-4e9c-ac0e-ac629c3d028f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "076edf53-6dc2-495f-b447-cb6f7bea7f48" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091322Z:076edf53-6dc2-495f-b447-cb6f7bea7f48" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:13:21 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+428": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "429" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11624" ], + "x-ms-request-id": [ "30737344-a292-4411-9c85-32c22c05acc9" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "fc186f17-3723-4238-a954-a553a6b48ad4" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091332Z:fc186f17-3723-4238-a954-a553a6b48ad4" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:13:32 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+429": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "430" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11623" ], + "x-ms-request-id": [ "39190e16-853b-40f0-a932-9376a541920f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "7789af13-73af-4ab0-94f7-92cab451f512" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091342Z:7789af13-73af-4ab0-94f7-92cab451f512" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:13:42 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+430": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "431" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11622" ], + "x-ms-request-id": [ "0190ae69-12d6-4d01-a9ea-c6aa846042f3" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "dda57171-b52f-4c97-a54f-10eee27e7ea1" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091353Z:dda57171-b52f-4c97-a54f-10eee27e7ea1" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:13:52 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+431": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "432" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11621" ], + "x-ms-request-id": [ "7cb57cfc-bd75-4606-9ea0-d5e2b5a4f5b9" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "4f5b359e-d2c7-4f73-813a-d99243bba25c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091403Z:4f5b359e-d2c7-4f73-813a-d99243bba25c" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:14:02 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+432": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "433" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11620" ], + "x-ms-request-id": [ "242c76f0-5f67-4d6d-a108-aa6138c8941f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "fe9d1fc3-3322-4f9f-9856-128ab05f4152" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091413Z:fe9d1fc3-3322-4f9f-9856-128ab05f4152" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:14:13 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+433": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "434" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11619" ], + "x-ms-request-id": [ "8a790386-95d4-4a56-ad51-b8eb8496d536" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "386090cb-27bc-4442-8979-405ccb36c810" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091424Z:386090cb-27bc-4442-8979-405ccb36c810" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:14:23 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+434": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "435" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11618" ], + "x-ms-request-id": [ "f316f140-f83c-485e-a0be-6d32c15618f0" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "63db4a6b-4c6c-4d44-a824-2215e0cdf7e9" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091434Z:63db4a6b-4c6c-4d44-a824-2215e0cdf7e9" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:14:33 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+435": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "436" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11617" ], + "x-ms-request-id": [ "180994d2-80da-4075-95f2-742878ed2a6a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "11cf4207-6fb9-4fa1-85d2-475caa214938" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091444Z:11cf4207-6fb9-4fa1-85d2-475caa214938" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:14:43 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+436": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "437" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11616" ], + "x-ms-request-id": [ "4a962fb5-c04c-4dc2-b650-0d8cc5e1f0b3" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "314a76dd-ee6d-436a-bb67-e3b5e0963d96" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091455Z:314a76dd-ee6d-436a-bb67-e3b5e0963d96" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:14:55 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+437": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "438" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11644" ], + "x-ms-request-id": [ "29dba73e-a6ff-4dd3-92b3-f504dac2dff0" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "a0a2af2e-4b83-4d4a-b511-e69bb8ffc737" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091505Z:a0a2af2e-4b83-4d4a-b511-e69bb8ffc737" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:15:05 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+438": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "439" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11642" ], + "x-ms-request-id": [ "83cbfbd6-75b8-42df-9628-eaac4d06c4a5" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "d7b494ed-c479-4f97-bb81-1be102e8bc2a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091515Z:d7b494ed-c479-4f97-bb81-1be102e8bc2a" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:15:15 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+439": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "440" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11641" ], + "x-ms-request-id": [ "ffe52b44-9565-4415-a1b6-8dd180d220cb" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "07e424bc-1630-4d38-af96-4d1cf194be2a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091526Z:07e424bc-1630-4d38-af96-4d1cf194be2a" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:15:25 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+440": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "441" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11640" ], + "x-ms-request-id": [ "5e6882fb-fc82-495f-a0ef-b6e966842b18" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "5a1d5913-a6c8-4976-bd0a-1accff2f81cf" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091536Z:5a1d5913-a6c8-4976-bd0a-1accff2f81cf" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:15:36 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+441": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "442" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11639" ], + "x-ms-request-id": [ "5ff1f2eb-7f72-4d2f-a994-f209544f073a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "347efad6-af9d-4429-9407-7db433e331ea" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091546Z:347efad6-af9d-4429-9407-7db433e331ea" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:15:46 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+442": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "443" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11638" ], + "x-ms-request-id": [ "c80fdbab-9472-476b-acba-db7169ecd514" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "e083f884-2ab7-4d36-9c3c-c9bf7408a4f9" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091557Z:e083f884-2ab7-4d36-9c3c-c9bf7408a4f9" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:15:56 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+443": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "444" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11637" ], + "x-ms-request-id": [ "01f2b33a-58bd-4750-b353-27792960a16a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "53125f59-6acf-41f4-855e-876b09cfcc3e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091607Z:53125f59-6acf-41f4-855e-876b09cfcc3e" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:16:07 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+444": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "445" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11636" ], + "x-ms-request-id": [ "4a850941-8286-400a-955d-0c2bb5d8b635" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "62df4efd-a135-48c8-a3eb-5353d29ceb21" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091618Z:62df4efd-a135-48c8-a3eb-5353d29ceb21" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:16:17 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+445": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "446" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11635" ], + "x-ms-request-id": [ "bf8a6951-65c2-461d-b0a5-1e7f996bbeef" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "231c4712-8114-409e-b1ac-9cb5993bdc13" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091628Z:231c4712-8114-409e-b1ac-9cb5993bdc13" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:16:27 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+446": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "447" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11634" ], + "x-ms-request-id": [ "b27972a2-8726-4dae-b516-4e364749df6e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "3a6cfaf9-3646-4ffa-bc5b-30316218f4d5" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091638Z:3a6cfaf9-3646-4ffa-bc5b-30316218f4d5" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:16:38 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+447": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "448" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11633" ], + "x-ms-request-id": [ "73d5744e-c1db-4fe7-be37-13420b726bf8" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "1d995963-ac51-41fb-a1fa-3c45d4feda8b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091649Z:1d995963-ac51-41fb-a1fa-3c45d4feda8b" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:16:48 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+448": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "449" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11632" ], + "x-ms-request-id": [ "7c10696d-2bdd-4ee8-945f-a327ff3864b3" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "9e4a3de1-04ce-4f80-bf05-48aa5d9aaada" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091659Z:9e4a3de1-04ce-4f80-bf05-48aa5d9aaada" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:16:58 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+449": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "450" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11631" ], + "x-ms-request-id": [ "3f8df6e8-7fc5-4c3d-8b43-ec4d96ec05b1" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "0729b846-d5fd-49fd-933a-fa52e0082cfe" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091710Z:0729b846-d5fd-49fd-933a-fa52e0082cfe" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:17:09 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+450": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "451" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11630" ], + "x-ms-request-id": [ "f71c3a24-7166-41f4-9639-2a110b08b3b2" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "1d99f491-05e1-4c11-9aa3-6121add69720" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091720Z:1d99f491-05e1-4c11-9aa3-6121add69720" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:17:19 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+451": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "452" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11629" ], + "x-ms-request-id": [ "c3a387f0-bec1-4982-ba04-b4058872812a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "4eba4a5f-045c-4a29-a508-01fb6b13367c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091730Z:4eba4a5f-045c-4a29-a508-01fb6b13367c" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:17:30 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+452": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "453" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11628" ], + "x-ms-request-id": [ "a374db5e-270a-4ca0-af3b-6c07cfb08bfa" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "02c1b57c-a4cc-4ed9-932e-ceb121ad3a22" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091741Z:02c1b57c-a4cc-4ed9-932e-ceb121ad3a22" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:17:41 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+453": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "454" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11627" ], + "x-ms-request-id": [ "b435c9f6-ef40-4afb-86d2-b88ab18aece6" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "817d2bcf-e937-459f-bbc9-80da06c6079a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091751Z:817d2bcf-e937-459f-bbc9-80da06c6079a" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:17:51 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+454": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "455" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11626" ], + "x-ms-request-id": [ "c52d6e06-9a40-4253-b718-4dac3685d9de" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "a155a28d-60ed-4f10-99bd-9e2715dbf569" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091801Z:a155a28d-60ed-4f10-99bd-9e2715dbf569" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:18:01 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+455": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "456" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11625" ], + "x-ms-request-id": [ "dd5e7aca-8030-494a-a249-d934b2f15dba" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "2d330338-362d-4216-ae50-7cd637c316f9" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091812Z:2d330338-362d-4216-ae50-7cd637c316f9" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:18:11 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+456": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "457" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11624" ], + "x-ms-request-id": [ "65054994-14c7-4ecd-a57e-5274dde2703d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "4ac4ba8d-061f-4368-8fe8-8f2e8f0517f5" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091822Z:4ac4ba8d-061f-4368-8fe8-8f2e8f0517f5" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:18:22 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+457": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "458" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11623" ], + "x-ms-request-id": [ "3f9ad6e1-5a7d-4198-b1ea-711d642e92e7" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "bca54722-f8b9-45c3-b734-15641f57fb80" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091832Z:bca54722-f8b9-45c3-b734-15641f57fb80" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:18:32 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+458": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "459" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11622" ], + "x-ms-request-id": [ "a8d836e6-fe92-4139-9ae8-dae5c969a800" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "9934d56c-20a1-4d7a-97b9-8c3b211e4914" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091843Z:9934d56c-20a1-4d7a-97b9-8c3b211e4914" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:18:42 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+459": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "460" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11621" ], + "x-ms-request-id": [ "e39d9c34-6757-40af-a86d-836abcb949ad" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "930af16c-bd35-43e3-84ca-bcc55c333741" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091853Z:930af16c-bd35-43e3-84ca-bcc55c333741" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:18:52 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+460": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "461" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11620" ], + "x-ms-request-id": [ "b91abd66-9438-41ea-9b87-b25c85717afe" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "807b991c-2912-421a-be9e-7e730a8ec2e6" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091903Z:807b991c-2912-421a-be9e-7e730a8ec2e6" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:19:03 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+461": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "462" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11619" ], + "x-ms-request-id": [ "e65b0211-badd-4a97-8147-44d1089705ea" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "ceb82d90-fb2b-498b-afa4-5e9bca33330c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091914Z:ceb82d90-fb2b-498b-afa4-5e9bca33330c" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:19:13 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+462": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "463" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11618" ], + "x-ms-request-id": [ "5aa030ca-87b7-422e-833d-570b6f188df1" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "fa5e18a5-b361-47b9-a1bb-e8e098fbf32b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091924Z:fa5e18a5-b361-47b9-a1bb-e8e098fbf32b" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:19:24 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+463": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "464" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11617" ], + "x-ms-request-id": [ "30960b16-8782-4558-858f-8df10e2eb844" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "0980918e-f3d5-459f-a782-f690968e718e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091934Z:0980918e-f3d5-459f-a782-f690968e718e" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:19:34 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+464": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "465" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11616" ], + "x-ms-request-id": [ "4323692d-4126-4a36-856d-471e68c29f83" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "a9e2173b-a5e4-4211-8e3c-88201eb417fc" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091945Z:a9e2173b-a5e4-4211-8e3c-88201eb417fc" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:19:45 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+465": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "466" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11615" ], + "x-ms-request-id": [ "183372b6-3d15-4c68-8a0f-1f447baaf047" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "dcd47cbd-405d-4b49-8fbf-8c2208014ba9" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T091955Z:dcd47cbd-405d-4b49-8fbf-8c2208014ba9" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:19:55 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+466": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "467" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11643" ], + "x-ms-request-id": [ "09a7612a-06b5-44b9-bb1b-5070811889f6" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "b49a85d7-84a5-4021-b77d-504e6fb124e9" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092006Z:b49a85d7-84a5-4021-b77d-504e6fb124e9" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:20:05 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+467": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "468" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11642" ], + "x-ms-request-id": [ "510fc6d1-a87b-4a4b-8b0f-115025c03b0f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "7e826a47-465a-4d7e-b3cf-ea4e92e5a975" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092016Z:7e826a47-465a-4d7e-b3cf-ea4e92e5a975" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:20:15 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+468": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "469" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11641" ], + "x-ms-request-id": [ "e4099762-d02f-494c-9977-9e83f30dbbbf" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "1ce3f16c-8552-4415-a3dc-54a6a9a97f3e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092026Z:1ce3f16c-8552-4415-a3dc-54a6a9a97f3e" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:20:26 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+469": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "470" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11640" ], + "x-ms-request-id": [ "d71a47cf-7189-493e-97b9-d05ff84646a1" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "70efd43d-7251-4723-b2f9-82374319a836" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092037Z:70efd43d-7251-4723-b2f9-82374319a836" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:20:36 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+470": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "471" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11639" ], + "x-ms-request-id": [ "d8f57895-51de-4bc4-8b17-258fd306699f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "4d685c35-ad90-422e-b864-2b3f9241656a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092047Z:4d685c35-ad90-422e-b864-2b3f9241656a" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:20:46 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+471": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "472" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11636" ], + "x-ms-request-id": [ "0ff11f6c-775d-46ca-abf4-a55bde0af38a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "3cc8f278-333a-4881-b206-9288ab880bd9" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092057Z:3cc8f278-333a-4881-b206-9288ab880bd9" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:20:56 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+472": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "473" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11635" ], + "x-ms-request-id": [ "8d0d1984-69fd-4ae4-8e29-cab9cbffa04a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "e2b6dee3-0e64-4105-b450-a0ae2ad860af" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092108Z:e2b6dee3-0e64-4105-b450-a0ae2ad860af" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:21:07 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+473": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "474" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11634" ], + "x-ms-request-id": [ "dd7c9d7b-d24e-49e3-ad5a-152332096aac" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "a9ec5539-9d5c-4b7d-a197-87745de921b8" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092118Z:a9ec5539-9d5c-4b7d-a197-87745de921b8" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:21:18 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+474": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "475" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11633" ], + "x-ms-request-id": [ "55490efc-78d1-4a8a-9b10-98bb1226d0a3" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "0134f06d-daca-417c-807c-f00bca20c71d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092128Z:0134f06d-daca-417c-807c-f00bca20c71d" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:21:28 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+475": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "476" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11632" ], + "x-ms-request-id": [ "1d0ffb1d-2191-4891-8df6-dffd57fcfffa" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "da3146c2-81ab-4d12-8b30-4cce32957e7d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092139Z:da3146c2-81ab-4d12-8b30-4cce32957e7d" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:21:38 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+476": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "477" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11631" ], + "x-ms-request-id": [ "51760abf-6785-4fb2-8e31-b166c4af8d18" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "1956ca5a-2e1f-4ba2-a715-07bba829e5e4" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092149Z:1956ca5a-2e1f-4ba2-a715-07bba829e5e4" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:21:49 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+477": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "478" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11630" ], + "x-ms-request-id": [ "5744c1b1-bfea-4e55-b462-54e10f2be194" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "738c2881-a6e6-4468-a92b-fe445ee94e9e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092159Z:738c2881-a6e6-4468-a92b-fe445ee94e9e" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:21:59 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+478": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "479" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11629" ], + "x-ms-request-id": [ "6096ec6f-da27-485d-8fe2-f055a2a282da" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "163c2b41-3c31-4a9d-a3e0-4e25b5fd63ba" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092210Z:163c2b41-3c31-4a9d-a3e0-4e25b5fd63ba" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:22:09 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+479": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "480" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11628" ], + "x-ms-request-id": [ "b48170e7-92ca-4203-b184-a793bff2bec2" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "deaf0660-484d-4b66-b40d-d683e936fbe2" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092220Z:deaf0660-484d-4b66-b40d-d683e936fbe2" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:22:20 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+480": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "481" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11627" ], + "x-ms-request-id": [ "4496da0d-259c-49ca-a735-0b7ad9fc0216" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "a8a7dbc1-300f-4966-a2a7-6ed08aca1e6a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092231Z:a8a7dbc1-300f-4966-a2a7-6ed08aca1e6a" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:22:30 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+481": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "482" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11626" ], + "x-ms-request-id": [ "5ece71cb-f09c-4c7a-aa13-e03807185877" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "d2bc8348-60f9-4572-83f3-66d69d87d67f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092241Z:d2bc8348-60f9-4572-83f3-66d69d87d67f" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:22:40 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+482": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "483" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11625" ], + "x-ms-request-id": [ "992bb0cb-852c-46f1-bcea-64bcf546d71c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "11ac7e79-3c64-45a2-acad-b3868444215f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092251Z:11ac7e79-3c64-45a2-acad-b3868444215f" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:22:51 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+483": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "484" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11624" ], + "x-ms-request-id": [ "c7c461d9-2257-45b6-bc8b-f0fb85166af4" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "5aca947f-dc91-4b79-a3fe-47e21963eee8" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092302Z:5aca947f-dc91-4b79-a3fe-47e21963eee8" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:23:01 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+484": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "485" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11623" ], + "x-ms-request-id": [ "73b42e01-8dc1-40ec-a7a5-57c5116cd100" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "75782fc7-9dd4-4272-a5e1-0e3a9f0f2df9" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092312Z:75782fc7-9dd4-4272-a5e1-0e3a9f0f2df9" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:23:11 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+485": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "486" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11622" ], + "x-ms-request-id": [ "421e0df0-7188-4801-a02e-3b15f9506c6d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "c97d6562-0066-464e-a460-bd16006a0331" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092323Z:c97d6562-0066-464e-a460-bd16006a0331" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:23:23 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+486": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "487" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11621" ], + "x-ms-request-id": [ "528d851f-13de-4344-a32c-11a9d7688525" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "18f53fd4-5266-4f1f-9e27-c33f20b09cc1" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092333Z:18f53fd4-5266-4f1f-9e27-c33f20b09cc1" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:23:33 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+487": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "488" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11620" ], + "x-ms-request-id": [ "904491ac-dc17-45ad-baa5-4a835984824e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "6f802508-e34d-4013-9551-5430202b431b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092343Z:6f802508-e34d-4013-9551-5430202b431b" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:23:43 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+488": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "489" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11619" ], + "x-ms-request-id": [ "270666c9-0bca-4b4c-aebe-8749fab51813" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "7f6de282-2fef-4f31-befb-8a22a0af4f1d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092354Z:7f6de282-2fef-4f31-befb-8a22a0af4f1d" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:23:53 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+489": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "490" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11618" ], + "x-ms-request-id": [ "22460a9e-31c1-4785-8d86-4db0c02aadba" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "d4514b01-0c95-4770-99a7-6780890bf0bb" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092404Z:d4514b01-0c95-4770-99a7-6780890bf0bb" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:24:04 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+490": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "491" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11617" ], + "x-ms-request-id": [ "7fda574d-37e6-4d04-af26-19ce4c1958a3" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "9fa9e796-5cd8-4fc2-8fb3-648da92f793a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092414Z:9fa9e796-5cd8-4fc2-8fb3-648da92f793a" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:24:14 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+491": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "492" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11616" ], + "x-ms-request-id": [ "70080cf5-9935-44b3-9b8e-7b81a9199265" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "ff455618-6879-44a6-9c08-d743296ce3d6" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092425Z:ff455618-6879-44a6-9c08-d743296ce3d6" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:24:24 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+492": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "493" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11615" ], + "x-ms-request-id": [ "e6f60f71-df37-404b-a88a-8878ec565d50" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "26459170-e102-4e26-8c9f-b97c6b03eea0" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092435Z:26459170-e102-4e26-8c9f-b97c6b03eea0" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:24:35 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+493": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "494" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11614" ], + "x-ms-request-id": [ "8b77c5e5-80e5-425b-b0cd-2813f8f256df" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "4a70f792-7822-4d6a-9f13-e90106fb11c3" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092445Z:4a70f792-7822-4d6a-9f13-e90106fb11c3" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:24:45 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+494": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "495" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11613" ], + "x-ms-request-id": [ "1ee460ca-0c5a-4213-9959-1e9cdffbd625" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "ae34db0f-b94a-4936-8319-ceac84db5cb8" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092456Z:ae34db0f-b94a-4936-8319-ceac84db5cb8" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:24:55 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+495": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "496" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11641" ], + "x-ms-request-id": [ "66dbfd0c-fac4-4e13-8cba-4ee490110869" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "2719c34f-d999-464f-a1fe-56acf3eb4325" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092506Z:2719c34f-d999-464f-a1fe-56acf3eb4325" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:25:05 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+496": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "497" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11640" ], + "x-ms-request-id": [ "e0b4e622-bc68-4139-94f1-9bbb8b7b3f99" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "59ef04af-d344-4cb6-8504-4ed3b06e2699" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092516Z:59ef04af-d344-4cb6-8504-4ed3b06e2699" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:25:16 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+497": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "498" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11639" ], + "x-ms-request-id": [ "09e3351a-3bc4-483c-9934-bf6da44b335d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "535d5f9c-1b9f-43c1-a4c8-6e4d00be4b26" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092527Z:535d5f9c-1b9f-43c1-a4c8-6e4d00be4b26" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:25:26 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+498": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "499" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11638" ], + "x-ms-request-id": [ "2ec669a4-da1c-4bcf-8985-c321eefe0515" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "b2e790ea-a402-40ae-bcbd-861b6992b544" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092537Z:b2e790ea-a402-40ae-bcbd-861b6992b544" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:25:36 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+499": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "500" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11637" ], + "x-ms-request-id": [ "1034b563-5cc6-4eee-ae9d-0168662b08de" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "9c563123-6ec3-445e-b106-fa648cb561bb" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092548Z:9c563123-6ec3-445e-b106-fa648cb561bb" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:25:47 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+500": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "501" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11636" ], + "x-ms-request-id": [ "8064ca33-0481-4d31-b01d-344b4e6567fe" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "e28eeacd-55cb-404f-b9c2-25d23378ba5d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092558Z:e28eeacd-55cb-404f-b9c2-25d23378ba5d" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:25:58 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+501": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "502" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11635" ], + "x-ms-request-id": [ "59c20cbe-63fd-4cc1-9885-e49f68449fa3" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "c426cae3-81b6-4720-9f6f-caf19a09a934" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092608Z:c426cae3-81b6-4720-9f6f-caf19a09a934" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:26:08 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+502": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "503" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11634" ], + "x-ms-request-id": [ "6d4ad95c-c2d6-4931-aa17-d10a1b4a9ccb" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "06aa530c-354c-4a2c-b026-35cdedab9319" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092619Z:06aa530c-354c-4a2c-b026-35cdedab9319" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:26:19 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+503": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "504" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11633" ], + "x-ms-request-id": [ "1015adb5-a3a6-4946-96b5-8038e5a79ce7" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "87ad355b-699b-4519-9734-57822bc32047" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092629Z:87ad355b-699b-4519-9734-57822bc32047" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:26:29 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+504": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "505" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11632" ], + "x-ms-request-id": [ "e686dab3-9876-4eb2-bbfd-10183fb60891" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "b148a8be-6293-4e56-b91b-333cde29dfbb" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092639Z:b148a8be-6293-4e56-b91b-333cde29dfbb" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:26:39 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+505": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "506" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11631" ], + "x-ms-request-id": [ "c28c3502-3988-4ece-b3aa-fae2c1e88d63" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "2f91fd48-6723-4faf-a854-470082921f1c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092650Z:2f91fd48-6723-4faf-a854-470082921f1c" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:26:49 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+506": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "507" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11630" ], + "x-ms-request-id": [ "228ce6db-e959-41a7-ba42-3fcaf8ed4360" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "79022fc4-51f2-4799-8ff6-a81885928548" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092700Z:79022fc4-51f2-4799-8ff6-a81885928548" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:27:00 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+507": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "508" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11629" ], + "x-ms-request-id": [ "46e499fc-7d3e-432b-9fa3-e02ef2eeb45f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "31ecf66b-9433-490a-b662-fa180af951b3" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092711Z:31ecf66b-9433-490a-b662-fa180af951b3" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:27:10 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+508": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "509" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11628" ], + "x-ms-request-id": [ "8c80a758-9320-468c-a90b-13eb416c9a30" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "df221099-5958-498e-9cc6-d474f707c7f0" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092721Z:df221099-5958-498e-9cc6-d474f707c7f0" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:27:20 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+509": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "510" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11627" ], + "x-ms-request-id": [ "f31641ae-bd5a-475d-9f78-15bcd5dd225f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "d23dff4d-f911-464e-a087-7b7e2d0dc988" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092731Z:d23dff4d-f911-464e-a087-7b7e2d0dc988" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:27:30 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+510": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "511" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11626" ], + "x-ms-request-id": [ "e9e91d99-be3d-4fec-b96d-62354e97ee7d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "220d5395-6edf-450e-a7ad-c35184430760" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092742Z:220d5395-6edf-450e-a7ad-c35184430760" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:27:42 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+511": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "512" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11625" ], + "x-ms-request-id": [ "7218912a-d722-46ef-9221-fe5acf84909c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "bd072d9c-7e2c-4975-bacc-bdce36400261" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092752Z:bd072d9c-7e2c-4975-bacc-bdce36400261" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:27:52 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+512": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "513" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11624" ], + "x-ms-request-id": [ "72fa02bb-b974-40de-a0bc-71be15a6e5ef" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "3b057935-16aa-4a77-81dc-8b8d5b3fe389" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092802Z:3b057935-16aa-4a77-81dc-8b8d5b3fe389" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:28:02 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+513": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "514" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11623" ], + "x-ms-request-id": [ "fadcff0b-4892-4580-b378-0ef44f555401" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "2c706699-a105-49e3-88e2-e99ac6cc0b79" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092813Z:2c706699-a105-49e3-88e2-e99ac6cc0b79" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:28:13 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+514": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "515" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11622" ], + "x-ms-request-id": [ "457668e9-29dd-4359-8260-c78b8d42cf27" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "4d83ed6a-3ddd-437e-ae9d-c09c16cd11c5" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092823Z:4d83ed6a-3ddd-437e-ae9d-c09c16cd11c5" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:28:23 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+515": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "516" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11621" ], + "x-ms-request-id": [ "21add1ce-e91e-466f-b496-19e8f4026ca8" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "24101b17-93da-4ffd-838c-227b7fae285d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092834Z:24101b17-93da-4ffd-838c-227b7fae285d" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:28:33 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+516": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "517" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11620" ], + "x-ms-request-id": [ "1af08257-5621-47f2-9818-7713b5ffedfb" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "bca72f23-f597-4fcb-8b82-ee3071b92ac3" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092844Z:bca72f23-f597-4fcb-8b82-ee3071b92ac3" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:28:44 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+517": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "518" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11619" ], + "x-ms-request-id": [ "0f8a75a3-a056-4625-ac75-c8b28a183ee4" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "df191dca-9805-4a8b-bb3b-1701d9cffac2" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092855Z:df191dca-9805-4a8b-bb3b-1701d9cffac2" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:28:54 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+518": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "519" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11618" ], + "x-ms-request-id": [ "95e113e7-3ad2-47bf-ba60-58230efcbdfd" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "599624bd-90e0-4c68-a80e-3d56cfeb7cca" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092905Z:599624bd-90e0-4c68-a80e-3d56cfeb7cca" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:29:05 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+519": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "520" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11617" ], + "x-ms-request-id": [ "f8e2f8b3-96a6-41ee-b8f0-9360d7742495" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "92b2e758-fa0b-48d2-bd2b-62b34cd4ed74" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092916Z:92b2e758-fa0b-48d2-bd2b-62b34cd4ed74" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:29:15 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+520": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "521" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11616" ], + "x-ms-request-id": [ "c2309ad3-18d4-4864-8622-ad5d045d3a0d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "a95d05f1-3a19-46c1-9722-48ce7681686b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092926Z:a95d05f1-3a19-46c1-9722-48ce7681686b" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:29:25 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+521": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "522" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11615" ], + "x-ms-request-id": [ "02576999-b4bc-40d1-bafe-35ed01eefe7d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "3775c304-f839-4502-941b-a5ca43525572" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092936Z:3775c304-f839-4502-941b-a5ca43525572" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:29:35 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+522": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "523" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11614" ], + "x-ms-request-id": [ "4644bdf5-4b1a-445d-bc4d-b09428847898" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "99a71030-6434-4f96-a99a-632910231d75" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092947Z:99a71030-6434-4f96-a99a-632910231d75" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:29:47 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+523": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "524" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11613" ], + "x-ms-request-id": [ "93684c7d-9d4f-455d-b763-64a0fbbd0edb" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "a6a93bfb-f15e-4c0c-93f7-ff1f4661b20f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T092957Z:a6a93bfb-f15e-4c0c-93f7-ff1f4661b20f" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:29:57 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+524": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "525" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11641" ], + "x-ms-request-id": [ "efa80c82-ba5d-4438-a437-4134f5e9f3ab" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "8c5b0d0b-af1d-4e27-a347-120aa9d063cf" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093007Z:8c5b0d0b-af1d-4e27-a347-120aa9d063cf" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:30:07 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+525": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "526" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11640" ], + "x-ms-request-id": [ "81af850b-2be1-4564-8a06-4781d2ba3bbe" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "897d6179-a2cf-4fbe-8e84-be6264c5317a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093018Z:897d6179-a2cf-4fbe-8e84-be6264c5317a" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:30:17 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+526": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "527" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11639" ], + "x-ms-request-id": [ "f06ed36e-22df-40c5-9450-06b557f94563" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "9ad0b1c1-9503-4929-b90b-5e2d718fb3d1" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093028Z:9ad0b1c1-9503-4929-b90b-5e2d718fb3d1" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:30:28 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+527": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "528" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11638" ], + "x-ms-request-id": [ "71598372-62be-4c38-995b-035db3049818" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "5950b517-a7db-4cda-a96f-cbe0a5b8ab41" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093038Z:5950b517-a7db-4cda-a96f-cbe0a5b8ab41" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:30:38 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+528": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "529" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11637" ], + "x-ms-request-id": [ "d1d86f67-1dba-4f3d-b6ae-7ea953c624f2" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "580efe56-e62f-4ee2-8980-7226980b546a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093049Z:580efe56-e62f-4ee2-8980-7226980b546a" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:30:48 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+529": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "530" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11636" ], + "x-ms-request-id": [ "47678e2a-a4db-4336-b513-3be2e0ccc3d3" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "11f0bef9-8963-43b1-b49f-d72f88342dfb" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093059Z:11f0bef9-8963-43b1-b49f-d72f88342dfb" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:30:59 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+530": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "531" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11635" ], + "x-ms-request-id": [ "7824699d-5f51-43df-997a-59216a73c09d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "1cc2ea9c-59ce-46cd-b5d5-8e057a46c931" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093110Z:1cc2ea9c-59ce-46cd-b5d5-8e057a46c931" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:31:09 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+531": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "532" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11634" ], + "x-ms-request-id": [ "5eab6aa4-2d8d-4aba-8855-e879c7c62c8e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "7e058cb4-2df6-4bbd-9724-47a05de2cf39" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093120Z:7e058cb4-2df6-4bbd-9724-47a05de2cf39" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:31:19 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+532": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "533" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11633" ], + "x-ms-request-id": [ "d76a23d8-37fc-4713-a8f8-e6b4b8cfaa4f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "80305c52-4b4c-4d91-8274-1e6eb85614c6" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093130Z:80305c52-4b4c-4d91-8274-1e6eb85614c6" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:31:30 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+533": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "534" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11632" ], + "x-ms-request-id": [ "11ccda46-b6a1-4e2e-8d7b-df2486b4f43a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "018aa9b9-cd23-4b16-b1b0-802b0763db19" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093141Z:018aa9b9-cd23-4b16-b1b0-802b0763db19" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:31:40 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+534": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "535" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11631" ], + "x-ms-request-id": [ "b9183ac9-397e-4ac3-aa55-adcb6dc012b1" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "9ebcdf04-b9a7-4b04-9523-267f956ce707" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093151Z:9ebcdf04-b9a7-4b04-9523-267f956ce707" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:31:51 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+535": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "536" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11630" ], + "x-ms-request-id": [ "135c7be1-483c-4a21-8b15-4b7179f33fb3" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "3d1c767d-06df-4d1c-a5d8-7c930dbc8de2" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093201Z:3d1c767d-06df-4d1c-a5d8-7c930dbc8de2" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:32:01 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+536": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "537" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11629" ], + "x-ms-request-id": [ "40f8bbb0-71b9-4cbc-842d-84bf747c40c8" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "50006c49-2e7e-4038-9c50-f81bddf67c2b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093212Z:50006c49-2e7e-4038-9c50-f81bddf67c2b" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:32:12 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+537": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "538" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11628" ], + "x-ms-request-id": [ "30d777ab-648f-4de8-b6da-56af8fbcfbed" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "746ba11e-647b-4898-a14e-3cbfb706cfc1" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093222Z:746ba11e-647b-4898-a14e-3cbfb706cfc1" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:32:22 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+538": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "539" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11627" ], + "x-ms-request-id": [ "e0069a3a-862b-4b86-9709-3e5549ecad79" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "78c51f8f-eaf2-4dd3-bc44-b1c10b2ee809" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093233Z:78c51f8f-eaf2-4dd3-bc44-b1c10b2ee809" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:32:32 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+539": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "540" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11626" ], + "x-ms-request-id": [ "7104f7df-db98-4cd2-92cb-d70ab461bb35" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "3b3dae4d-db74-4026-baeb-74674f3ee17d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093243Z:3b3dae4d-db74-4026-baeb-74674f3ee17d" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:32:42 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+540": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "541" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11625" ], + "x-ms-request-id": [ "9a1029ee-cb45-44c7-91eb-3e25fa8f213f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "a52fec72-b1e8-4a4d-91c9-f86d004d599b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093254Z:a52fec72-b1e8-4a4d-91c9-f86d004d599b" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:32:53 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+541": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "542" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11624" ], + "x-ms-request-id": [ "2516ea45-3056-4516-a624-58095bc1f5bc" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "218be008-d630-4e32-9c53-56b9644da051" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093304Z:218be008-d630-4e32-9c53-56b9644da051" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:33:03 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+542": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "543" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11623" ], + "x-ms-request-id": [ "b76f86de-0349-430b-8ad4-6e716afff5a8" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "06e45088-b7ab-47b8-b2a4-ec2b8a6bb9d8" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093314Z:06e45088-b7ab-47b8-b2a4-ec2b8a6bb9d8" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:33:14 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+543": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "544" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11622" ], + "x-ms-request-id": [ "80f31546-9540-4b54-8549-5ca76b24f105" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "49877f43-0743-42c3-9963-93629ac9f944" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093325Z:49877f43-0743-42c3-9963-93629ac9f944" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:33:24 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+544": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "545" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11621" ], + "x-ms-request-id": [ "1528ba24-a82b-490f-92bf-2521bc0da201" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "5595d924-2d15-4a59-8f73-4d31e26b56f4" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093335Z:5595d924-2d15-4a59-8f73-4d31e26b56f4" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:33:35 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+545": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "546" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11620" ], + "x-ms-request-id": [ "43eeae52-c8c0-4a3f-a4c6-b35438ea42ba" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "c3fb1d5c-6a20-4e2b-878d-81588d901b7f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093346Z:c3fb1d5c-6a20-4e2b-878d-81588d901b7f" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:33:46 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+546": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "547" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11619" ], + "x-ms-request-id": [ "81bea75d-f77f-440f-9ae6-3cc0f490f6c7" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "a6ef027d-a370-44e9-85cd-2e37d7581c3d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093356Z:a6ef027d-a370-44e9-85cd-2e37d7581c3d" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:33:56 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+547": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "548" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11618" ], + "x-ms-request-id": [ "7002d5b5-0abf-4c94-95d9-ca519b54e319" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "fcd6b27a-dce3-413e-8301-9e26e0d103de" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093406Z:fcd6b27a-dce3-413e-8301-9e26e0d103de" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:34:06 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+548": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "549" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11617" ], + "x-ms-request-id": [ "7c6ac2f7-c52d-4e52-95dc-403845ea9a7e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "dd93ad81-924f-44ff-ab55-f5ed154f09b1" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093417Z:dd93ad81-924f-44ff-ab55-f5ed154f09b1" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:34:16 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+549": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "550" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11616" ], + "x-ms-request-id": [ "cbd36ea0-feab-4286-afa4-b50b3eeb9391" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "0059f5ce-221f-4aa9-9f59-609ec679d4ee" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093427Z:0059f5ce-221f-4aa9-9f59-609ec679d4ee" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:34:27 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+550": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "551" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11615" ], + "x-ms-request-id": [ "d42db59d-b722-48a3-9ab9-d711c1f11e6a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "4099b8b0-e75a-4423-990a-e08c12406a38" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093437Z:4099b8b0-e75a-4423-990a-e08c12406a38" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:34:37 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+551": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "552" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11614" ], + "x-ms-request-id": [ "ebd0c85d-323c-4712-8348-55132ab6b19b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "ea6073e9-d5b0-46df-a13a-f325c3b91e3b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093448Z:ea6073e9-d5b0-46df-a13a-f325c3b91e3b" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:34:47 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+552": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "553" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11613" ], + "x-ms-request-id": [ "e26902fe-334d-4409-a3be-b033d6ed52d6" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "37823a90-56f4-4512-af68-eabf4dafbbec" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093458Z:37823a90-56f4-4512-af68-eabf4dafbbec" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:34:58 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+553": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "554" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11641" ], + "x-ms-request-id": [ "25117196-fa24-4ff8-ae6a-d71e9a259f5d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "4fda8ead-c08c-467e-b7c4-aa0d724f07e4" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093509Z:4fda8ead-c08c-467e-b7c4-aa0d724f07e4" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:35:08 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+554": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "555" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11640" ], + "x-ms-request-id": [ "d5aa49ad-c4f0-4b51-a04d-db826489e9cb" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "fed5c65c-e7f3-438e-8280-93a2cff2963a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093519Z:fed5c65c-e7f3-438e-8280-93a2cff2963a" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:35:19 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+555": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "556" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11639" ], + "x-ms-request-id": [ "83e5f6c7-f065-4d4a-83e3-414f8b2d132f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "e9229f5a-c1cc-4ef1-951e-5a3ed7dfc154" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093530Z:e9229f5a-c1cc-4ef1-951e-5a3ed7dfc154" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:35:30 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+556": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "557" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11638" ], + "x-ms-request-id": [ "7e0c653f-db1b-4f2c-b7d3-5b5db1fa391b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "72c1ce75-4a2a-4a78-bca4-82a175f5b1ad" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093540Z:72c1ce75-4a2a-4a78-bca4-82a175f5b1ad" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:35:40 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+557": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "558" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11637" ], + "x-ms-request-id": [ "534f6a69-4d93-4412-88dc-9f5ce5fd1ec4" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "688ff6a7-6a7b-4adc-8806-1024e18823ba" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093551Z:688ff6a7-6a7b-4adc-8806-1024e18823ba" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:35:50 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+558": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "559" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11636" ], + "x-ms-request-id": [ "129ca855-c217-40a3-aaef-52252028d657" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "d54814bb-bcba-4558-8590-b10e9638f53b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093601Z:d54814bb-bcba-4558-8590-b10e9638f53b" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:36:01 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+559": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "560" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11635" ], + "x-ms-request-id": [ "bc0fd774-566d-4282-b00d-08e85c252af1" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "c950bb12-91da-4850-8189-49cba8287a6a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093611Z:c950bb12-91da-4850-8189-49cba8287a6a" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:36:11 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+560": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "561" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11634" ], + "x-ms-request-id": [ "3c496aca-ee52-4fe3-bf06-9439e39e59c6" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "3388318f-3bc4-4909-8a8f-a521264c5733" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093622Z:3388318f-3bc4-4909-8a8f-a521264c5733" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:36:21 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+561": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "562" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11633" ], + "x-ms-request-id": [ "f4d90bf8-aa3a-4d50-89f9-5b4b25cad6ea" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "5d227857-dee5-4693-a7a0-ac433b6360db" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093632Z:5d227857-dee5-4693-a7a0-ac433b6360db" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:36:31 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+562": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "563" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11632" ], + "x-ms-request-id": [ "438e63fe-f0c2-45dc-a04f-0b0c701d6b38" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "4cc9ef30-05a2-4da3-b64a-6034f532c633" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093642Z:4cc9ef30-05a2-4da3-b64a-6034f532c633" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:36:42 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+563": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "564" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11631" ], + "x-ms-request-id": [ "3e1f3998-4eb8-43b7-a700-d72c3197f1f8" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "a828863a-f5aa-4d93-95de-99e227dfbda1" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093653Z:a828863a-f5aa-4d93-95de-99e227dfbda1" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:36:52 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+564": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "565" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11630" ], + "x-ms-request-id": [ "c9015b30-bd7e-4591-baa7-9f552f3c5944" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "9a66c1cc-2133-43b1-81d8-81f28a74b8f9" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093703Z:9a66c1cc-2133-43b1-81d8-81f28a74b8f9" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:37:02 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+565": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "566" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11629" ], + "x-ms-request-id": [ "67b02134-5a62-40fc-aefa-0b377a027a90" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "2d289708-74a2-4eb7-901d-33aa71b23664" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093714Z:2d289708-74a2-4eb7-901d-33aa71b23664" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:37:13 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+566": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "567" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11628" ], + "x-ms-request-id": [ "a0b3427b-b15f-4a45-9d00-11daacc07f4a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "4f215fdf-8a02-48e0-864a-61eaadeb9583" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093724Z:4f215fdf-8a02-48e0-864a-61eaadeb9583" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:37:24 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+567": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "568" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11627" ], + "x-ms-request-id": [ "b49b2f32-7e5a-4935-8559-086b99cd831b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "afa3178b-85bc-45c3-acca-59472558c059" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093734Z:afa3178b-85bc-45c3-acca-59472558c059" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:37:34 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+568": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "569" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11626" ], + "x-ms-request-id": [ "b8a3ec7a-7518-493c-a248-f1fb30aab1da" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "4e71eba1-d249-4461-9b6c-901bcc81d95c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093745Z:4e71eba1-d249-4461-9b6c-901bcc81d95c" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:37:44 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+569": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "570" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11625" ], + "x-ms-request-id": [ "04a7f536-10db-4738-9e9d-98ef615f8313" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "dc9d7b8e-fcf5-4354-8a00-8fe0f279b958" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093755Z:dc9d7b8e-fcf5-4354-8a00-8fe0f279b958" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:37:55 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+570": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "571" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11624" ], + "x-ms-request-id": [ "4865a191-8c0f-4f66-a9aa-b7db8d32fdb8" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "d4ccb10f-965b-46e0-bd5d-6924bb00b531" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093805Z:d4ccb10f-965b-46e0-bd5d-6924bb00b531" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:38:05 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+571": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "572" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11623" ], + "x-ms-request-id": [ "a70c0264-1ed7-4d77-a4d8-05c36c0ecefb" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "bfd12879-4e41-42be-8617-0a79d13e3184" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093816Z:bfd12879-4e41-42be-8617-0a79d13e3184" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:38:15 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+572": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "573" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11622" ], + "x-ms-request-id": [ "a100ed0e-09ad-412c-888e-b76e54d78f94" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "6fcdd8ab-ccda-46a3-b561-8ea3e8336d74" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093826Z:6fcdd8ab-ccda-46a3-b561-8ea3e8336d74" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:38:26 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+573": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "574" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11621" ], + "x-ms-request-id": [ "975aec03-f109-46aa-9d69-c945b738a339" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "c28c979f-e020-4131-8ddc-7a009aedeb4a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093837Z:c28c979f-e020-4131-8ddc-7a009aedeb4a" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:38:36 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+574": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "575" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11620" ], + "x-ms-request-id": [ "0a0fff00-12ad-4025-a57c-5242a2d1d69c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "5ea38ea4-6587-473f-ab0a-8915004400fd" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093847Z:5ea38ea4-6587-473f-ab0a-8915004400fd" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:38:46 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+575": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "576" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11619" ], + "x-ms-request-id": [ "ae960a15-4d0d-4aa2-8562-779f215c5cc3" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "237ce3ae-9365-4e6e-9e46-ed78539ed9d9" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093857Z:237ce3ae-9365-4e6e-9e46-ed78539ed9d9" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:38:57 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+576": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "577" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11618" ], + "x-ms-request-id": [ "fc741602-a754-4d48-a2bd-c770c0adffb2" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "9de8d8ae-46ec-4b07-a784-6520a84f757b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093908Z:9de8d8ae-46ec-4b07-a784-6520a84f757b" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:39:07 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+577": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "578" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11617" ], + "x-ms-request-id": [ "3de871d5-5b79-4cce-a66a-7a6b5558d242" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "db6b610d-88a6-4033-87a5-063d8b5bf360" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093918Z:db6b610d-88a6-4033-87a5-063d8b5bf360" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:39:17 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+578": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "579" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11616" ], + "x-ms-request-id": [ "91a14220-1ae2-4d6e-ae1e-9f4949307019" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "d6d4f7b7-56b4-4a41-a22c-705e5ca61aa7" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093929Z:d6d4f7b7-56b4-4a41-a22c-705e5ca61aa7" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:39:28 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+579": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "580" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11615" ], + "x-ms-request-id": [ "8e4cc472-428c-413f-a886-74d8457119ca" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "f5eaf119-cc45-4556-9915-a5ea415f5b56" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093939Z:f5eaf119-cc45-4556-9915-a5ea415f5b56" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:39:38 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+580": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "581" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11614" ], + "x-ms-request-id": [ "427ed00c-5830-45c9-964c-4c3fdff3b1f9" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "6adf2354-6975-4504-bfa3-433f686b1c57" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T093949Z:6adf2354-6975-4504-bfa3-433f686b1c57" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:39:48 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+581": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "582" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11642" ], + "x-ms-request-id": [ "a9bb7787-b452-4176-8021-7ff2383a046a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "bc081872-35b7-455d-aa91-bb74f81fb265" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094000Z:bc081872-35b7-455d-aa91-bb74f81fb265" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:39:59 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+582": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "583" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11641" ], + "x-ms-request-id": [ "576a677d-c3dc-43bd-9336-78152436bd40" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "e0ababa1-f7ad-422a-8285-dcc432289e70" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094010Z:e0ababa1-f7ad-422a-8285-dcc432289e70" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:40:10 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+583": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "584" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11640" ], + "x-ms-request-id": [ "5e0e59b9-c5ba-4bbc-a45b-cd217827247a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "0d0bc3c7-1cd1-4db9-abf2-45dba4cf18ee" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094020Z:0d0bc3c7-1cd1-4db9-abf2-45dba4cf18ee" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:40:20 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+584": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "585" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11639" ], + "x-ms-request-id": [ "0bf9d00f-71cd-42ad-a6f9-e0d11c2b2f43" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "14e63042-ab2b-42c2-8061-1f40d70fa91c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094031Z:14e63042-ab2b-42c2-8061-1f40d70fa91c" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:40:31 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+585": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "586" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11638" ], + "x-ms-request-id": [ "2562597f-75c2-4f37-971d-d3ddc899f53c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "1997017e-791f-414f-a7c4-cf5de58e9922" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094041Z:1997017e-791f-414f-a7c4-cf5de58e9922" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:40:41 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+586": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "587" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11637" ], + "x-ms-request-id": [ "f04e090f-a6b2-4f8a-bb62-c8456ba60f25" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "ee32f6fb-9db8-4bff-833e-ad3517835c1c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094051Z:ee32f6fb-9db8-4bff-833e-ad3517835c1c" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:40:51 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+587": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "588" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11636" ], + "x-ms-request-id": [ "8f94f649-2003-4da8-991f-0fdae8195f60" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "f18888e8-5621-444a-b31b-6d6b4dbc95b0" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094102Z:f18888e8-5621-444a-b31b-6d6b4dbc95b0" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:41:02 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+588": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "589" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11635" ], + "x-ms-request-id": [ "ecc0b6c2-556e-42e4-a9d5-37752373e3b3" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "0272e8e1-8238-4356-87a6-7bb05b6a793f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094112Z:0272e8e1-8238-4356-87a6-7bb05b6a793f" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:41:12 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+589": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "590" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11634" ], + "x-ms-request-id": [ "d110d4bd-6e0b-4549-a717-186001badd7c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "5cdb3b7a-1b34-48fb-a8d7-a658521c992c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094123Z:5cdb3b7a-1b34-48fb-a8d7-a658521c992c" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:41:22 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+590": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "591" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11633" ], + "x-ms-request-id": [ "03ebdbcb-9d82-4350-99a5-a66be084d314" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "e1752b51-ccd9-4b25-b32f-94495eb55f98" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094133Z:e1752b51-ccd9-4b25-b32f-94495eb55f98" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:41:33 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+591": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "592" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11632" ], + "x-ms-request-id": [ "c8920329-a237-46cc-b1b9-8dfa1db5277a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "1b4394b2-8bae-4d9f-ba42-05c3b87827f5" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094144Z:1b4394b2-8bae-4d9f-ba42-05c3b87827f5" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:41:43 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+592": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "593" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11631" ], + "x-ms-request-id": [ "933aa231-a0ea-4de1-a7cf-dce71c659ef3" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "49d08689-ba5d-4ee0-ad00-b70fe8fb7c7c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094154Z:49d08689-ba5d-4ee0-ad00-b70fe8fb7c7c" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:41:54 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+593": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "594" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11630" ], + "x-ms-request-id": [ "792e8617-9699-4b68-b657-677ab6b70f29" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "11c5338f-fc9a-4c80-960a-cc171bc3c986" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094205Z:11c5338f-fc9a-4c80-960a-cc171bc3c986" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:42:04 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+594": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "595" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11629" ], + "x-ms-request-id": [ "89597251-32a6-47f0-88c8-f8250c6696f6" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "2df5971a-a313-4e27-bf97-009577d84c76" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094215Z:2df5971a-a313-4e27-bf97-009577d84c76" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:42:14 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+595": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "596" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11628" ], + "x-ms-request-id": [ "39a69111-8937-41ce-b882-ad6b224324a1" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "17acbcc3-d5d0-450c-a103-d416595b5b8e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094225Z:17acbcc3-d5d0-450c-a103-d416595b5b8e" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:42:24 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+596": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "597" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11627" ], + "x-ms-request-id": [ "e94221dd-784b-472f-aab3-18a99371a68c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "ce739355-2c30-42c6-bf5d-f35800686127" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094236Z:ce739355-2c30-42c6-bf5d-f35800686127" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:42:35 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+597": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "598" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11626" ], + "x-ms-request-id": [ "4a3d90b7-ec03-4f68-af67-c5333233ef1d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "001a07f2-9af6-4162-9765-1187956ba779" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094246Z:001a07f2-9af6-4162-9765-1187956ba779" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:42:46 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+598": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "599" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11625" ], + "x-ms-request-id": [ "d0d97e88-a71e-42c0-9ce9-18bfc7aced86" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "569db980-8645-4445-b1e1-86e09b63df10" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094257Z:569db980-8645-4445-b1e1-86e09b63df10" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:42:56 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+599": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "600" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11624" ], + "x-ms-request-id": [ "0ac1486c-a324-4a7d-8c64-7e0bd9ae22d6" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "0e1c2d36-8f6a-4067-9d6e-f7d994f2907c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094307Z:0e1c2d36-8f6a-4067-9d6e-f7d994f2907c" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:43:07 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+600": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "601" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11623" ], + "x-ms-request-id": [ "8550be56-e625-4754-8fc0-84bdccdfb1ee" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "ba78ff12-8ef7-4365-ae44-cd47140a6e2e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094317Z:ba78ff12-8ef7-4365-ae44-cd47140a6e2e" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:43:17 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+601": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "602" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11622" ], + "x-ms-request-id": [ "bc6523db-d961-4f44-ae04-8429b16029ce" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "2c84e136-1068-477d-b884-4ed18a918117" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094328Z:2c84e136-1068-477d-b884-4ed18a918117" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:43:27 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+602": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "603" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11621" ], + "x-ms-request-id": [ "b71e3ec2-c0f8-44fc-b638-7bff950ec2b0" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "962f22e8-fd1b-4df4-9b86-50bd6c5dd45f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094338Z:962f22e8-fd1b-4df4-9b86-50bd6c5dd45f" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:43:38 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+603": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "604" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11620" ], + "x-ms-request-id": [ "0892b33b-dd0d-4c32-a4a4-fd84ce888b96" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "b83301e7-e46b-453f-9aed-9181be4f8bcc" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094348Z:b83301e7-e46b-453f-9aed-9181be4f8bcc" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:43:48 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+604": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "605" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11619" ], + "x-ms-request-id": [ "4e147419-167a-47c1-9049-45955d24f783" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "152e4a7e-0def-4a06-bf77-609089cfb9f2" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094359Z:152e4a7e-0def-4a06-bf77-609089cfb9f2" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:43:58 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+605": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "606" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11618" ], + "x-ms-request-id": [ "a21a855b-916f-475c-abff-2bad1b4451eb" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "5ecc4234-86f9-42e0-ba02-dd124a6e1c64" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094409Z:5ecc4234-86f9-42e0-ba02-dd124a6e1c64" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:44:09 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+606": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "607" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11617" ], + "x-ms-request-id": [ "13369db4-b77e-468d-998b-6d76b62c5d62" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "3176856b-1794-4432-8133-e846b25ec3eb" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094420Z:3176856b-1794-4432-8133-e846b25ec3eb" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:44:19 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+607": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "608" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11616" ], + "x-ms-request-id": [ "6319f61f-3307-49db-bf19-3ad5a9501d24" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "51b20ea9-0a53-4f5f-a83c-fa8f4f5e6841" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094430Z:51b20ea9-0a53-4f5f-a83c-fa8f4f5e6841" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:44:29 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+608": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "609" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11615" ], + "x-ms-request-id": [ "b477d1b1-961d-4550-8046-752452167bdc" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "d37bc352-d9b9-4997-b6bd-7cfec16ac234" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094441Z:d37bc352-d9b9-4997-b6bd-7cfec16ac234" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:44:40 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+609": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "610" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11614" ], + "x-ms-request-id": [ "35c3636e-20ad-4348-bbd3-76a9f817a09d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "9fb3adc8-14c5-486a-9a28-2b44898bb8e2" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094451Z:9fb3adc8-14c5-486a-9a28-2b44898bb8e2" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:44:50 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+610": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "611" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11642" ], + "x-ms-request-id": [ "f7a4a33d-056f-4dec-842d-f8617e664c4f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "d4d4013a-4397-4ef6-aade-72a6a4617aee" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094501Z:d4d4013a-4397-4ef6-aade-72a6a4617aee" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:45:01 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+611": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "612" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11641" ], + "x-ms-request-id": [ "078265d6-c2c4-440c-a96e-a4f211fee70f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "9805e445-79a5-41bd-bcda-f1d2b7847c53" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094512Z:9805e445-79a5-41bd-bcda-f1d2b7847c53" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:45:12 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+612": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "613" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11640" ], + "x-ms-request-id": [ "9fac84a7-1a9f-4219-85f8-f4c4e34d2d9e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "6d160125-34ad-4ad8-8840-7432548e0c9c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094522Z:6d160125-34ad-4ad8-8840-7432548e0c9c" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:45:22 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+613": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "614" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11639" ], + "x-ms-request-id": [ "bc86dd90-8ab4-4e47-9ead-55930656acb1" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "ead1ae8d-a655-4c0b-a981-29b31a7b86ae" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094532Z:ead1ae8d-a655-4c0b-a981-29b31a7b86ae" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:45:32 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+614": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "615" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11638" ], + "x-ms-request-id": [ "16ab5306-a10f-45a1-bc2b-2d1021aaed6a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "a29f10fc-efee-420c-b8c9-2785c76ac2f2" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094543Z:a29f10fc-efee-420c-b8c9-2785c76ac2f2" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:45:42 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+615": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "616" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11637" ], + "x-ms-request-id": [ "c2e31489-34dc-468e-b729-3d9a4dfdcf8e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "4bc79e3c-c5dd-453e-9301-2a512090eacc" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094553Z:4bc79e3c-c5dd-453e-9301-2a512090eacc" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:45:53 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+616": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "617" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11636" ], + "x-ms-request-id": [ "94ea662d-848f-47c5-b0ff-a91b29e6fa5d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "718d58da-c654-4390-9184-28999c4e1efd" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094604Z:718d58da-c654-4390-9184-28999c4e1efd" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:46:03 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+617": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "618" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11635" ], + "x-ms-request-id": [ "e616d8be-eb9f-44b7-9fe0-463c764c6b8f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "59c075c8-b756-4b7f-814c-d00096b9e70f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094614Z:59c075c8-b756-4b7f-814c-d00096b9e70f" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:46:13 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+618": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "619" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11634" ], + "x-ms-request-id": [ "f0afd511-c104-4413-ab31-2fe841ca1939" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "679b82dd-ff27-4743-8b7d-31646546caa7" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094624Z:679b82dd-ff27-4743-8b7d-31646546caa7" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:46:24 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+619": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "620" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11633" ], + "x-ms-request-id": [ "970c0b17-0ebc-4b57-bb70-2bb24c908253" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "351c6f8a-b38e-4fb1-b79c-49672e3fdcdc" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094635Z:351c6f8a-b38e-4fb1-b79c-49672e3fdcdc" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:46:34 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+620": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "621" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11632" ], + "x-ms-request-id": [ "29da49e9-6d18-4f8c-9e46-7bffed417ae1" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "04f1712f-b073-4007-b784-3b527acdf9bf" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094645Z:04f1712f-b073-4007-b784-3b527acdf9bf" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:46:44 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+621": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "622" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11631" ], + "x-ms-request-id": [ "84e72740-3ccb-4253-8c69-3a45c7c87051" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "77916ed8-4ece-4fc1-8afa-b880eb7d9672" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094656Z:77916ed8-4ece-4fc1-8afa-b880eb7d9672" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:46:56 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+622": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "623" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11630" ], + "x-ms-request-id": [ "c3f31f91-73ee-41a0-9a70-6e06900f3017" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "a443ee49-2762-4928-8a4d-206e1bb06070" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094706Z:a443ee49-2762-4928-8a4d-206e1bb06070" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:47:06 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+623": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "624" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11629" ], + "x-ms-request-id": [ "c8faa794-2eea-4f3e-ad46-7436bff63093" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "08f858b1-0201-4901-ab1e-bff701b44dde" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094718Z:08f858b1-0201-4901-ab1e-bff701b44dde" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:47:18 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+624": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "625" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11628" ], + "x-ms-request-id": [ "240aaa8d-c578-480b-b4ee-14404c056249" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "a9dbf277-d916-4935-b564-fed25702bb09" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094729Z:a9dbf277-d916-4935-b564-fed25702bb09" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:47:29 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+625": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "626" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11627" ], + "x-ms-request-id": [ "f5c426b4-514b-4f55-b062-5f07667c3e5a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "c864c449-de1e-4b9e-83ec-4a8caab342a1" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094739Z:c864c449-de1e-4b9e-83ec-4a8caab342a1" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:47:39 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+626": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "627" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11626" ], + "x-ms-request-id": [ "9ebad6a1-415f-444c-b1bb-60fdf1d9ce50" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "6309ce19-9087-4938-89f9-c47ac897ffcc" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094750Z:6309ce19-9087-4938-89f9-c47ac897ffcc" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:47:49 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+627": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "628" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11625" ], + "x-ms-request-id": [ "f426d6c8-31f8-424a-836a-f24d41d1f43e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "1e119eba-c354-4313-b588-de038eefd5ba" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094800Z:1e119eba-c354-4313-b588-de038eefd5ba" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:48:00 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+628": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "629" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11624" ], + "x-ms-request-id": [ "2d020ab6-5e53-49ee-9cc4-e1af50ce7ecc" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "a1c58437-50a7-4c0a-b539-7d1e43e1361a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094811Z:a1c58437-50a7-4c0a-b539-7d1e43e1361a" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:48:10 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+629": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "630" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11623" ], + "x-ms-request-id": [ "c648540d-e46f-43f7-a9d9-ee3de0aa71f7" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "fe9a7096-3092-49de-9789-450e375cb6a4" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094821Z:fe9a7096-3092-49de-9789-450e375cb6a4" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:48:21 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+630": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "631" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11622" ], + "x-ms-request-id": [ "1ab90df0-32d9-4c33-b2e0-1bce96849bcd" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "047013b5-8de8-4eb9-80c0-0359540a367f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094832Z:047013b5-8de8-4eb9-80c0-0359540a367f" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:48:31 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+631": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "632" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11621" ], + "x-ms-request-id": [ "ebcb2324-43c9-4026-993b-c96334c96ff7" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "1cd03d30-d61f-4c81-b224-4e8ede0b9073" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094842Z:1cd03d30-d61f-4c81-b224-4e8ede0b9073" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:48:41 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+632": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "633" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11620" ], + "x-ms-request-id": [ "5d8039b6-5aa4-4fc8-a9df-5806a2da06de" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "6961aa65-7947-4d43-9832-81bb62bc0be4" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094852Z:6961aa65-7947-4d43-9832-81bb62bc0be4" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:48:52 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+633": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "634" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11619" ], + "x-ms-request-id": [ "d530e0da-9927-4466-93c7-e3bbe30a2092" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "f1d82bde-8ca1-4987-b9cf-4ffe45ead0a3" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094903Z:f1d82bde-8ca1-4987-b9cf-4ffe45ead0a3" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:49:03 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+634": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "635" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11618" ], + "x-ms-request-id": [ "a1f231b9-a22f-4881-b7de-d11237512c44" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "6924d4f8-ff58-4225-a095-6b133eb83844" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094913Z:6924d4f8-ff58-4225-a095-6b133eb83844" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:49:13 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+635": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "636" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11617" ], + "x-ms-request-id": [ "203969e0-b5dd-4b98-a1f3-0c4a5a0a1e60" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "a5936f00-1f3b-4361-bb06-efca09363d6d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094924Z:a5936f00-1f3b-4361-bb06-efca09363d6d" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:49:24 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+636": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "637" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11616" ], + "x-ms-request-id": [ "e51c775e-ce15-4a3d-a47c-246b90e736c6" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "64e59809-2c9d-454b-9a0d-4d372faf5528" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094934Z:64e59809-2c9d-454b-9a0d-4d372faf5528" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:49:34 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+637": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "638" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11615" ], + "x-ms-request-id": [ "d16459d0-29cf-4066-b740-fbbaaf126fce" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "f548c8ba-b8cb-4799-a2be-6dfe58e646ff" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094945Z:f548c8ba-b8cb-4799-a2be-6dfe58e646ff" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:49:44 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+638": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "639" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11614" ], + "x-ms-request-id": [ "a423e736-ebbf-4050-b785-b9f256258161" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "6fd7cf0d-9083-43f9-af83-555e2581c574" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T094955Z:6fd7cf0d-9083-43f9-af83-555e2581c574" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:49:55 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+639": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "640" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11642" ], + "x-ms-request-id": [ "1114f7c9-6046-4aab-a188-8d76fcbd3ac6" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "b361c1e2-b679-4369-bd4e-ba25af9dcd5a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T095006Z:b361c1e2-b679-4369-bd4e-ba25af9dcd5a" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:50:05 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+640": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "641" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11641" ], + "x-ms-request-id": [ "e09b5f4f-3686-4168-bfdc-c6dcd011c96a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "ce6f0a80-484f-469d-9890-4fa0f43126c3" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T095016Z:ce6f0a80-484f-469d-9890-4fa0f43126c3" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:50:15 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+641": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "642" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11640" ], + "x-ms-request-id": [ "ffeb37e4-77d1-43c0-b8aa-a5322bcdada1" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "d2f10ba5-9e8e-44c3-853e-72a85b3adb13" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T095026Z:d2f10ba5-9e8e-44c3-853e-72a85b3adb13" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:50:26 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+642": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "643" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11639" ], + "x-ms-request-id": [ "aa26284b-1bb0-4631-a8b5-4067fa8c4f34" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "4378a30c-a616-4f7d-a601-bbc9bc4a9904" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T095037Z:4378a30c-a616-4f7d-a601-bbc9bc4a9904" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:50:36 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+643": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "644" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11638" ], + "x-ms-request-id": [ "3796b112-535c-437d-8d7b-931a80963bd4" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "bcc1dc01-5862-4fe5-8496-b3e273bc7f7f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T095047Z:bcc1dc01-5862-4fe5-8496-b3e273bc7f7f" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:50:46 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+644": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "645" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11637" ], + "x-ms-request-id": [ "6d71b37e-cdfe-4f1a-9560-f9eef7f504a0" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "f912f28a-7d18-4203-bc34-434604601a0d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T095058Z:f912f28a-7d18-4203-bc34-434604601a0d" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:50:58 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+645": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "646" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11636" ], + "x-ms-request-id": [ "67ef3e77-a667-4838-bed4-7dac532b1c78" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "25e3b9a0-8645-4f27-b499-bd7d38ac45fb" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T095108Z:25e3b9a0-8645-4f27-b499-bd7d38ac45fb" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:51:08 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + }, + "New-AzVMWareAuthorization+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20+646": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390?api-version=2020-03-20", + "Content": null, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "647" ], + "x-ms-client-request-id": [ "edf981bc-1817-4f74-b59a-e12b508c9fbe" ], + "CommandName": [ "Az.VMWare.internal\\New-AzVMWarePrivateCloud" ], + "FullCommandName": [ "New-AzVMWarePrivateCloud_CreateExpanded" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11635" ], + "x-ms-request-id": [ "28e1525c-bc35-4473-987b-0c8bb6d0fc91" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "d5c697b1-cf86-414e-b1a8-116dfbc08874" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200915T095118Z:d5c697b1-cf86-414e-b1a8-116dfbc08874" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 15 Sep 2020 09:51:18 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "327" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroupj62wz1/providers/Microsoft.AVS/privateClouds/2nyogz/operationstatuses/e2aaa335-f851-41bd-9d26-61bf90003390\",\"name\":\"e2aaa335-f851-41bd-9d26-61bf90003390\",\"percentComplete\":100,\"startTime\":\"2020-09-15T07:59:59.2813851+00:00\",\"status\":\"Building\"}" + } + } +} \ No newline at end of file diff --git a/src/VMWare/test/New-AzVMWareAuthorization.Tests.ps1 b/src/VMWare/test/New-AzVMWareAuthorization.Tests.ps1 new file mode 100644 index 000000000000..1b78b3c3c9e0 --- /dev/null +++ b/src/VMWare/test/New-AzVMWareAuthorization.Tests.ps1 @@ -0,0 +1,29 @@ +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' +} +. ($loadEnvPath) +$TestRecordingFile = Join-Path $PSScriptRoot 'New-AzVMWareAuthorization.Recording.json' +$currentPath = $PSScriptRoot +while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent +} +. ($mockingPath | Select-Object -First 1).FullName + +Describe 'New-AzVMWareAuthorization' { + It 'CreateExpanded' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + # $job_cloud_new = New-AzVMWarePrivateCloud -Name $env.rstr1 -ResourceGroupName $env.resourceGroup -NetworkBlock 192.168.48.0/22 -SkuName av36 -ManagementClusterSize 3 -Location $env.location -AsJob + # $job_cloud_new | Wait-Job + # $cloud = ($job_cloud_new | Receive-Job) + + # $auth = New-AzVMWareAuthorization -Name $env.rstr3 -PrivateCloudName $env.rstr1 -ResourceGroupName $env.resourceGroup + # $auth_get = Get-AzVMWareAuthorization -Name $env.rstr3 -PrivateCloudName $env.rstr1 -ResourceGroupName $env.resourceGroup + # $auth_remove = Remove-AzVMWareAuthorization -Name $env.rstr3 -PrivateCloudName $env.rstr1 -ResourceGroupName $env.resourceGroup + + # $job_cloud_remove = Remove-AzVMWarePrivateCloud -ResourceGroupName $env.resourceGroup -Name $env.rstr1 -AsJob + # $job_cloud_remove | Wait-Job + # $cloud_remove = ($job_cloud_remove | Receive-Job) + } +} diff --git a/src/VMWare/test/New-AzVMWareCluster.Recording.json b/src/VMWare/test/New-AzVMWareCluster.Recording.json new file mode 100644 index 000000000000..9e8537498d16 --- /dev/null +++ b/src/VMWare/test/New-AzVMWareCluster.Recording.json @@ -0,0 +1,36 @@ +{ + "New-AzVMWareCluster+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup9s4mao/providers/Microsoft.AVS/privateClouds/yiqgmj?api-version=2020-03-20+1": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup9s4mao/providers/Microsoft.AVS/privateClouds/yiqgmj?api-version=2020-03-20", + "Content": "{\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"managementCluster\": {\r\n \"clusterSize\": 3\r\n },\r\n \"networkBlock\": \"192.168.48.0/22\"\r\n },\r\n \"sku\": {\r\n \"name\": \"av36\"\r\n }\r\n}", + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "197" ] + } + }, + "Response": { + "StatusCode": 400, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], + "x-ms-request-id": [ "4a5d6b27-5433-4759-8a40-cfbf163dee32" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "a342763b-38ce-4cc1-9362-ee34243f5a75" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200913T054956Z:a342763b-38ce-4cc1-9362-ee34243f5a75" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Sun, 13 Sep 2020 05:49:56 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "95" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"error\":{\"code\":\"BadRequest\",\"message\":\"Cannot update a partially provisioned private cloud\"}}" + } + } +} \ No newline at end of file diff --git a/src/VMWare/test/New-AzVMWareCluster.Tests.ps1 b/src/VMWare/test/New-AzVMWareCluster.Tests.ps1 new file mode 100644 index 000000000000..c1e2b2b60e0d --- /dev/null +++ b/src/VMWare/test/New-AzVMWareCluster.Tests.ps1 @@ -0,0 +1,39 @@ +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' +} +. ($loadEnvPath) +$TestRecordingFile = Join-Path $PSScriptRoot 'New-AzVMWareCluster.Recording.json' +$currentPath = $PSScriptRoot +while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent +} +. ($mockingPath | Select-Object -First 1).FullName + +Describe 'New-AzVMWareCluster' { + It 'CreateExpanded' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + # $job_cloud_new = New-AzVMWarePrivateCloud -Name $env.rstr1 -ResourceGroupName $env.resourceGroup -NetworkBlock 192.168.48.0/22 -SkuName av36 -ManagementClusterSize 3 -Location $env.location -AsJob + # $job_cloud_new | Wait-Job + # $cloud = ($job_cloud_new | Receive-Job) + + # $job_cluster_new = New-AzVMWareCluster -Name $env.rstr2 -PrivateCloudName $env.rstr1 -ResourceGroupName $env.resourceGroup -ClusterSize 3 -SkuName av36 -AsJob + # $job_cluster_new | Wait-Job + # $cluster = ($job_cluster_new | Receive-Job) + # $cluster_get = Get-AzVMWareCluster -Name $env.rstr2 -PrivateCloudName $env.rstr1 -ResourceGroupName $env.resourceGroup + + # $job_cluster_update = Update-AzVMWareCluster -Name $env.rstr2 -PrivateCloudName $env.rstr1 -ResourceGroupName $env.resourceGroup -ClusterSize 4 -AsJob + # $job_cluster_update | Wait-Job + # $cluster_update = ($job_cluster_update | Receive-Job) + # $cluster_get = Get-AzVMWareCluster -Name $env.rstr2 -PrivateCloudName $env.rstr1 -ResourceGroupName $env.resourceGroup + + # $job_cluster_remove = Remove-AzVMWareCluster -Name $env.rstr2 -PrivateCloudName $env.rstr1 -ResourceGroupName $env.resourceGroup -AsJob + # $job_cluster_remove | Wait-Job + # $cluster_remove = ($job_cluster_remove | Receive-Job) + + # $job_cloud_remove = Remove-AzVMWarePrivateCloud -ResourceGroupName $env.resourceGroup -Name $env.rstr1 -AsJob + # $job_cloud_remove | Wait-Job + # $cloud_remove = ($job_cloud_remove | Receive-Job) + } +} diff --git a/src/VMWare/test/New-AzVMWarePrivateCloud.Recording.json b/src/VMWare/test/New-AzVMWarePrivateCloud.Recording.json new file mode 100644 index 000000000000..8926b15141b9 --- /dev/null +++ b/src/VMWare/test/New-AzVMWarePrivateCloud.Recording.json @@ -0,0 +1,36 @@ +{ + "New-AzVMWarePrivateCloud+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup9s4mao/providers/Microsoft.AVS/privateClouds/yiqgmj?api-version=2020-03-20+1": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup9s4mao/providers/Microsoft.AVS/privateClouds/yiqgmj?api-version=2020-03-20", + "Content": "{\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"managementCluster\": {\r\n \"clusterSize\": 3\r\n },\r\n \"networkBlock\": \"192.168.48.0/22\"\r\n },\r\n \"sku\": {\r\n \"name\": \"av36\"\r\n }\r\n}", + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "197" ] + } + }, + "Response": { + "StatusCode": 400, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], + "x-ms-request-id": [ "bc9ee370-ff12-4699-be32-21508e1403b6" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "fac7beb0-c0d0-4ed3-9865-2b7016844ba4" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200913T054957Z:fac7beb0-c0d0-4ed3-9865-2b7016844ba4" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Sun, 13 Sep 2020 05:49:56 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "95" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"error\":{\"code\":\"BadRequest\",\"message\":\"Cannot update a partially provisioned private cloud\"}}" + } + } +} \ No newline at end of file diff --git a/src/VMWare/test/New-AzVMWarePrivateCloud.Tests.ps1 b/src/VMWare/test/New-AzVMWarePrivateCloud.Tests.ps1 new file mode 100644 index 000000000000..bb20fb584526 --- /dev/null +++ b/src/VMWare/test/New-AzVMWarePrivateCloud.Tests.ps1 @@ -0,0 +1,33 @@ +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' +} +. ($loadEnvPath) +$TestRecordingFile = Join-Path $PSScriptRoot 'New-AzVMWarePrivateCloud.Recording.json' +$currentPath = $PSScriptRoot +while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent +} +. ($mockingPath | Select-Object -First 1).FullName + +Describe 'New-AzVMWarePrivateCloud' { + It 'CreateExpanded' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + # $job_cloud_new = New-AzVMWarePrivateCloud -Name $env.rstr1 -ResourceGroupName $env.resourceGroup -NetworkBlock 192.168.48.0/22 -SkuName av36 -ManagementClusterSize 3 -Location $env.location -AsJob + # $job_cloud_new | Wait-Job + # $cloud = ($job_cloud_new | Receive-Job) + # $cloud_get = Get-AzVMWarePrivateCloud -ResourceGroupName $env.resourceGroup -Name $env.rstr1 + + # $credential = Get-AzVMWarePrivateCloudAdminCredentials -PrivateCloudName $env.rstr1 -ResourceGroupName $env.resourceGroup + + # $job_cloud_update = Update-AzVMWarePrivateCloud -Name $env.rstr1 -ResourceGroupName $env.resourceGroup -ManagementClusterSize 4 -AsJob + # $job_cloud_update | Wait-Job + # $cloud_update = ($job_cloud_update | Receive-Job) + # $cloud_get = Get-AzVMWarePrivateCloud -ResourceGroupName $env.resourceGroup -Name $env.rstr1 + + # $job_cloud_remove = Remove-AzVMWarePrivateCloud -ResourceGroupName $env.resourceGroup -Name $env.rstr1 -AsJob + # $job_cloud_remove | Wait-Job + # $cloud_remove = ($job_cloud_remove | Receive-Job) + } +} diff --git a/src/VMWare/test/Remove-AzVMWareAuthorization.Tests.ps1 b/src/VMWare/test/Remove-AzVMWareAuthorization.Tests.ps1 new file mode 100644 index 000000000000..bfa41d719a49 --- /dev/null +++ b/src/VMWare/test/Remove-AzVMWareAuthorization.Tests.ps1 @@ -0,0 +1,22 @@ +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' +} +. ($loadEnvPath) +$TestRecordingFile = Join-Path $PSScriptRoot 'Remove-AzVMWareAuthorization.Recording.json' +$currentPath = $PSScriptRoot +while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent +} +. ($mockingPath | Select-Object -First 1).FullName + +Describe 'Remove-AzVMWareAuthorization' { + It 'Delete' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'DeleteViaIdentity' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } +} diff --git a/src/VMWare/test/Remove-AzVMWareCluster.Tests.ps1 b/src/VMWare/test/Remove-AzVMWareCluster.Tests.ps1 new file mode 100644 index 000000000000..d9111d823fa6 --- /dev/null +++ b/src/VMWare/test/Remove-AzVMWareCluster.Tests.ps1 @@ -0,0 +1,22 @@ +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' +} +. ($loadEnvPath) +$TestRecordingFile = Join-Path $PSScriptRoot 'Remove-AzVMWareCluster.Recording.json' +$currentPath = $PSScriptRoot +while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent +} +. ($mockingPath | Select-Object -First 1).FullName + +Describe 'Remove-AzVMWareCluster' { + It 'Delete' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'DeleteViaIdentity' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } +} diff --git a/src/VMWare/test/Remove-AzVMWarePrivateCloud.Tests.ps1 b/src/VMWare/test/Remove-AzVMWarePrivateCloud.Tests.ps1 new file mode 100644 index 000000000000..b51b15784f3e --- /dev/null +++ b/src/VMWare/test/Remove-AzVMWarePrivateCloud.Tests.ps1 @@ -0,0 +1,22 @@ +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' +} +. ($loadEnvPath) +$TestRecordingFile = Join-Path $PSScriptRoot 'Remove-AzVMWarePrivateCloud.Recording.json' +$currentPath = $PSScriptRoot +while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent +} +. ($mockingPath | Select-Object -First 1).FullName + +Describe 'Remove-AzVMWarePrivateCloud' { + It 'Delete' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'DeleteViaIdentity' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } +} diff --git a/src/VMWare/test/Test-AzVMWareLocationQuotaAvailability.Recording.json b/src/VMWare/test/Test-AzVMWareLocationQuotaAvailability.Recording.json new file mode 100644 index 000000000000..2815e1cbee85 --- /dev/null +++ b/src/VMWare/test/Test-AzVMWareLocationQuotaAvailability.Recording.json @@ -0,0 +1,41 @@ +{ + "Test-AzVMWareLocationQuotaAvailability+[NoContext]+Check+$POST+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.AVS/locations/australiaeast/checkQuotaAvailability?api-version=2020-03-20+1": { + "Request": { + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.AVS/locations/australiaeast/checkQuotaAvailability?api-version=2020-03-20", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "409" ], + "x-ms-client-request-id": [ "d9bbf5bb-dfe4-4ad1-bbdc-c208b7ff5410" ], + "CommandName": [ "Test-AzVMWareLocationQuotaAvailability" ], + "FullCommandName": [ "Test-AzVMWareLocationQuotaAvailability_Check" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11740" ], + "x-ms-request-id": [ "a373725a-e2ca-41b4-8091-3737a8178d4c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "1f8df6a8-6be9-4194-9f02-04eec2c11b4c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200913T054958Z:1f8df6a8-6be9-4194-9f02-04eec2c11b4c" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Sun, 13 Sep 2020 05:49:58 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "60" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"hostsRemaining\":{\"gp\":0,\"he\":27},\"quotaEnabled\":\"Enabled\"}" + } + } +} \ No newline at end of file diff --git a/src/VMWare/test/Test-AzVMWareLocationQuotaAvailability.Tests.ps1 b/src/VMWare/test/Test-AzVMWareLocationQuotaAvailability.Tests.ps1 new file mode 100644 index 000000000000..4d1cc8152f92 --- /dev/null +++ b/src/VMWare/test/Test-AzVMWareLocationQuotaAvailability.Tests.ps1 @@ -0,0 +1,19 @@ +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' +} +. ($loadEnvPath) +$TestRecordingFile = Join-Path $PSScriptRoot 'Test-AzVMWareLocationQuotaAvailability.Recording.json' +$currentPath = $PSScriptRoot +while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent +} +. ($mockingPath | Select-Object -First 1).FullName + +Describe 'Test-AzVMWareLocationQuotaAvailability' { + It 'Check' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + # $test = Test-AzVMWareLocationQuotaAvailability -Location australiaeast + } +} diff --git a/src/VMWare/test/Test-AzVMWareLocationTrialAvailability.Recording.json b/src/VMWare/test/Test-AzVMWareLocationTrialAvailability.Recording.json new file mode 100644 index 000000000000..a1fea0f6f26d --- /dev/null +++ b/src/VMWare/test/Test-AzVMWareLocationTrialAvailability.Recording.json @@ -0,0 +1,41 @@ +{ + "Test-AzVMWareLocationTrialAvailability+[NoContext]+Check+$POST+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.AVS/locations/australiaeast/checkTrialAvailability?api-version=2020-03-20+1": { + "Request": { + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.AVS/locations/australiaeast/checkTrialAvailability?api-version=2020-03-20", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "410" ], + "x-ms-client-request-id": [ "849ab3a8-aadb-41c7-848b-497f2b9a225c" ], + "CommandName": [ "Test-AzVMWareLocationTrialAvailability" ], + "FullCommandName": [ "Test-AzVMWareLocationTrialAvailability_Check" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11739" ], + "x-ms-request-id": [ "e7f0f54f-15cf-4868-96fc-b52ed7c78d4f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ "nginx" ], + "x-ms-correlation-request-id": [ "ca348fb2-c6bd-4f2e-8aa7-d0bd50a84658" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200913T054959Z:ca348fb2-c6bd-4f2e-8aa7-d0bd50a84658" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Sun, 13 Sep 2020 05:49:59 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "45" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"availableHosts\":0,\"status\":\"TrialDisabled\"}" + } + } +} \ No newline at end of file diff --git a/src/VMWare/test/Test-AzVMWareLocationTrialAvailability.Tests.ps1 b/src/VMWare/test/Test-AzVMWareLocationTrialAvailability.Tests.ps1 new file mode 100644 index 000000000000..2e51eaf972ca --- /dev/null +++ b/src/VMWare/test/Test-AzVMWareLocationTrialAvailability.Tests.ps1 @@ -0,0 +1,19 @@ +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' +} +. ($loadEnvPath) +$TestRecordingFile = Join-Path $PSScriptRoot 'Test-AzVMWareLocationTrialAvailability.Recording.json' +$currentPath = $PSScriptRoot +while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent +} +. ($mockingPath | Select-Object -First 1).FullName + +Describe 'Test-AzVMWareLocationTrialAvailability' { + It 'Check' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + # $test = Test-AzVMWareLocationTrialAvailability -Location australiaeast + } +} diff --git a/src/VMWare/test/Update-AzVMWareCluster.Tests.ps1 b/src/VMWare/test/Update-AzVMWareCluster.Tests.ps1 new file mode 100644 index 000000000000..c76e6d548b9f --- /dev/null +++ b/src/VMWare/test/Update-AzVMWareCluster.Tests.ps1 @@ -0,0 +1,22 @@ +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' +} +. ($loadEnvPath) +$TestRecordingFile = Join-Path $PSScriptRoot 'Update-AzVMWareCluster.Recording.json' +$currentPath = $PSScriptRoot +while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent +} +. ($mockingPath | Select-Object -First 1).FullName + +Describe 'Update-AzVMWareCluster' { + It 'UpdateExpanded' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'UpdateViaIdentityExpanded' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } +} diff --git a/src/VMWare/test/Update-AzVMWarePrivateCloud.Tests.ps1 b/src/VMWare/test/Update-AzVMWarePrivateCloud.Tests.ps1 new file mode 100644 index 000000000000..44e59096be92 --- /dev/null +++ b/src/VMWare/test/Update-AzVMWarePrivateCloud.Tests.ps1 @@ -0,0 +1,22 @@ +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' +} +. ($loadEnvPath) +$TestRecordingFile = Join-Path $PSScriptRoot 'Update-AzVMWarePrivateCloud.Recording.json' +$currentPath = $PSScriptRoot +while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent +} +. ($mockingPath | Select-Object -First 1).FullName + +Describe 'Update-AzVMWarePrivateCloud' { + It 'UpdateExpanded' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'UpdateViaIdentityExpanded' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } +} diff --git a/src/VMWare/test/env.json b/src/VMWare/test/env.json new file mode 100644 index 000000000000..5a6e6274fa45 --- /dev/null +++ b/src/VMWare/test/env.json @@ -0,0 +1,10 @@ +{ + "rstr3": "6e7x8j", + "rstr1": "2nyogz", + "Tenant": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "rstr4": "j62wz1", + "rstr2": "2rnwh9", + "resourceGroup": "testgroupj62wz1", + "SubscriptionId": "9e223dbe-3399-4e19-88eb-0975f02ac87f", + "location": "australiaeast" +} diff --git a/src/VMWare/test/loadEnv.ps1 b/src/VMWare/test/loadEnv.ps1 new file mode 100644 index 000000000000..c4ebf2e8310c --- /dev/null +++ b/src/VMWare/test/loadEnv.ps1 @@ -0,0 +1,28 @@ +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- +$envFile = 'env.json' +if ($TestMode -eq 'live') { + $envFile = 'localEnv.json' +} + +if (Test-Path -Path (Join-Path $PSScriptRoot $envFile)) { + $envFilePath = Join-Path $PSScriptRoot $envFile +} else { + $envFilePath = Join-Path $PSScriptRoot '..\$envFile' +} +$env = @{} +if (Test-Path -Path $envFilePath) { + $env = Get-Content (Join-Path $PSScriptRoot $envFile) | ConvertFrom-Json + $PSDefaultParameterValues=@{"*:SubscriptionId"=$env.SubscriptionId; "*:Tenant"=$env.Tenant} +} \ No newline at end of file diff --git a/src/VMWare/test/readme.md b/src/VMWare/test/readme.md new file mode 100644 index 000000000000..7c752b4c8c43 --- /dev/null +++ b/src/VMWare/test/readme.md @@ -0,0 +1,17 @@ +# Test +This directory contains the [Pester](https://www.powershellgallery.com/packages/Pester) tests to run for the module. We use Pester as it is the unofficial standard for PowerShell unit testing. Test stubs for custom cmdlets (created in `..\custom`) will be generated into this folder when `build-module.ps1` is ran. These test stubs will fail automatically, to indicate that tests should be written for custom cmdlets. + +## Info +- Modifiable: yes +- Generated: partial +- Committed: yes +- Packaged: no + +## Details +We allow three testing modes: *live*, *record*, and *playback*. These can be selected using the `-Live`, `-Record`, and `-Playback` switches respectively on the `test-module.ps1` script. This script will run through any `.Tests.ps1` scripts in the `test` folder. If you choose the *record* mode, it will create a `.Recording.json` file of the REST calls between the client and server. Then, when you choose *playback* mode, it will use the `.Recording.json` file to mock the communication between server and client. The *live* mode runs the same as the *record* mode; however, it doesn't create the `.Recording.json` file. + +## Purpose +Custom cmdlets generally encompass additional functionality not described in the REST specification, or combines functionality generated from the REST spec. To validate this functionality continues to operate as intended, creating tests that can be ran and re-ran against custom cmdlets is part of the framework. + +## Usage +To execute tests, run the `test-module.ps1`. To write tests, [this example](https://github.com/pester/Pester/blob/8b9cf4248315e44f1ac6673be149f7e0d7f10466/Examples/Planets/Get-Planet.Tests.ps1#L1) from the Pester repository is very useful for getting started. \ No newline at end of file diff --git a/src/VMWare/test/utils.ps1 b/src/VMWare/test/utils.ps1 new file mode 100644 index 000000000000..c4c7badfd3ae --- /dev/null +++ b/src/VMWare/test/utils.ps1 @@ -0,0 +1,44 @@ +function RandomString([bool]$allChars, [int32]$len) { + if ($allChars) { + return -join ((33..126) | Get-Random -Count $len | % {[char]$_}) + } else { + return -join ((48..57) + (97..122) | Get-Random -Count $len | % {[char]$_}) + } +} +$env = @{} +function setupEnv() { + # Preload subscriptionId and tenant from context, which will be used in test + # as default. You could change them if needed. + $env.SubscriptionId = (Get-AzContext).Subscription.Id + $env.Tenant = (Get-AzContext).Tenant.Id + + $rstr1 = RandomString -allChars $false -len 6 + $rstr2 = RandomString -allChars $false -len 6 + $rstr3 = RandomString -allChars $false -len 6 + $rstr4 = RandomString -allChars $false -len 6 + + $env.Add("rstr1", $rstr1) + $env.Add("rstr2", $rstr2) + $env.Add("rstr3", $rstr3) + $env.Add("rstr4", $rstr4) + + $env.Add("location", "australiaeast") + + # Create the test group + write-host "start to create test group" + $resourceGroup = "testgroup" + $env.rstr4 + $env.Add("resourceGroup", $resourceGroup) + New-AzResourceGroup -Name $resourceGroup -Location $env.location + + # For any resources you created for test, you should add it to $env here. + $envFile = 'env.json' + if ($TestMode -eq 'live') { + $envFile = 'localEnv.json' + } + set-content -Path (Join-Path $PSScriptRoot $envFile) -Value (ConvertTo-Json $env) +} +function cleanupEnv() { + # Clean resources you create for testing + Remove-AzResourceGroup -Name $env.resourceGroup +} + diff --git a/tools/Az/Az.psd1 b/tools/Az/Az.psd1 index 041de2f15eb5..086d56021166 100644 --- a/tools/Az/Az.psd1 +++ b/tools/Az/Az.psd1 @@ -104,7 +104,7 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.9.4'; }, @{ModuleName = 'Az.ServiceBus'; RequiredVersion = '1.4.1'; }, @{ModuleName = 'Az.ServiceFabric'; RequiredVersion = '2.2.0'; }, @{ModuleName = 'Az.SignalR'; RequiredVersion = '1.2.0'; }, - @{ModuleName = 'Az.Sql'; RequiredVersion = '2.10.0'; }, + @{ModuleName = 'Az.Sql'; RequiredVersion = '2.11.0'; }, @{ModuleName = 'Az.SqlVirtualMachine'; RequiredVersion = '1.1.0'; }, @{ModuleName = 'Az.Storage'; RequiredVersion = '2.6.0'; }, @{ModuleName = 'Az.StorageSync'; RequiredVersion = '1.3.0'; }, diff --git a/tools/Common.Netcore.Dependencies.targets b/tools/Common.Netcore.Dependencies.targets index 87b037f1e40f..6e88b41bf5bc 100644 --- a/tools/Common.Netcore.Dependencies.targets +++ b/tools/Common.Netcore.Dependencies.targets @@ -3,21 +3,21 @@ - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + @@ -32,7 +32,7 @@ - $(NugetPackageRoot)\microsoft.azure.powershell.storage\1.3.23-preview\tools\ + $(NugetPackageRoot)\microsoft.azure.powershell.storage\1.3.24-preview\tools\ diff --git a/tools/CreateMappings_rules.json b/tools/CreateMappings_rules.json index 9118fa2973e3..049b6dc47d66 100644 --- a/tools/CreateMappings_rules.json +++ b/tools/CreateMappings_rules.json @@ -584,5 +584,13 @@ { "alias": "ConnectedMachine", "regex": "ConnectedMachine" + }, + { + "regex": "VMWare", + "alias": "VMWare" + }, + { + "alias": "Dedicated HSM", + "regex": "DedicatedHsm" } ] diff --git a/tools/Gen2Master/MoveFromGeneration2Master.ps1 b/tools/Gen2Master/MoveFromGeneration2Master.ps1 index 0dcd82a5807b..1ae69121b925 100644 --- a/tools/Gen2Master/MoveFromGeneration2Master.ps1 +++ b/tools/Gen2Master/MoveFromGeneration2Master.ps1 @@ -40,7 +40,7 @@ Function Move-Generation2Master { Write-Host "Copying docs: $SourceItem." -ForegroundColor Yellow Copy-Item -Recurse -Path $SourceItem -Destination $DestItem #EndRegion - $File2Copy = @('*.ps1', 'how-to.md', 'readme.md', '*.psm1', '*.ps1xml', 'MSSharedLibKey.snk') + $File2Copy = @('*.ps1', 'how-to.md', 'readme.md', '*.psm1', '*.ps1xml', 'MSSharedLibKey.snk', 'generate-info.json') Foreach($File in $File2Copy) { $SourceItem = Join-Path -Path $SourcePath -ChildPath $File $DestItem = Join-Path -Path $DestPath -ChildPath $File @@ -100,6 +100,13 @@ Function Move-Generation2Master { #EndRegion + #Region update GeneratedModuleList + $GeneratedModuleListPath = [System.IO.Path]::Combine(@($PSScriptRoot, "..", "GeneratedModuleList.txt")) + $Modules = Get-Content $GeneratedModuleListPath + "Az.$ModuleName" + $NewModules = $Modules | Sort-Object + Set-Content -Path $GeneratedModuleListPath -Value $NewModules + #EndRegion + Copy-Template -SourceName Az.ModuleName.csproj -DestPath $DestPath -DestName "Az.$ModuleName.csproj" Copy-Template -SourceName Changelog.md -DestPath $DestPath -DestName Changelog.md Copy-Template -SourceName ModuleName.sln -DestPath $DestPath -DestName "$ModuleName.sln" diff --git a/tools/GenerateHelp.ps1 b/tools/GenerateHelp.ps1 index 496b8b937b72..61b815d27ce4 100644 --- a/tools/GenerateHelp.ps1 +++ b/tools/GenerateHelp.ps1 @@ -82,27 +82,8 @@ if ($ValidateMarkdownHelp) } # We need to define new version of module instead of hardcode here -$NewModules = @("Az.AppConfiguration", - "Az.Blockchain", - "Az.ConnectedKubernetes", - "Az.CustomProviders", - "Az.Databricks", - "Az.DesktopVirtualization", - "Az.Functions", - "Az.HanaOnAzure", - "Az.ImageBuilder", - "Az.ImportExport", - "Az.KubernetesConfiguration", - "Az.Kusto", - "Az.MariaDb", - "Az.MonitoringSolutions", - "Az.MySql", - "Az.Portal", - "Az.PostgreSql", - "Az.ResourceMover", - "Az.SpringCloud", - "Az.TimeSeriesInsights" - ) +$GeneratedModuleListPath = [System.IO.Path]::Combine(@($PSScriptRoot, "GeneratedModuleList.txt")) +$NewModules = Get-Content $GeneratedModuleListPath if ($GenerateMamlHelp) { $FilteredMamlHelpFolders = @() diff --git a/tools/GeneratedModuleList.txt b/tools/GeneratedModuleList.txt new file mode 100644 index 000000000000..854a7e7f4e8a --- /dev/null +++ b/tools/GeneratedModuleList.txt @@ -0,0 +1,20 @@ +Az.AppConfiguration +Az.Blockchain +Az.ConnectedKubernetes +Az.CustomProviders +Az.Databricks +Az.DesktopVirtualization +Az.Functions +Az.HanaOnAzure +Az.ImageBuilder +Az.ImportExport +Az.KubernetesConfiguration +Az.Kusto +Az.MariaDb +Az.MonitoringSolutions +Az.MySql +Az.Portal +Az.PostgreSql +Az.ResourceMover +Az.SpringCloud +Az.TimeSeriesInsights \ No newline at end of file diff --git a/tools/SecurityTools/CredScanSuppressions.json b/tools/SecurityTools/CredScanSuppressions.json index 17335bf2c3ef..32e7e1ceb887 100644 --- a/tools/SecurityTools/CredScanSuppressions.json +++ b/tools/SecurityTools/CredScanSuppressions.json @@ -1197,5 +1197,13 @@ "file": "src\\Sql\\Sql.Test\\SessionRecords\\Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ImportExportTests\\TestImportNewDatabase.json", "_justification": "temporary storage account deleted after PR merge" }, + { + "file": "src\\Sql\\Sql.Test\\SessionRecords\\Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ImportExportTests\\TestExportDatabase_NetworkIsolation.json", + "_justification": "temporary storage account deleted after PR merge" + }, + { + "file": "src\\Sql\\Sql.Test\\SessionRecords\\Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ImportExportTests\\TestImportNewDatabase_NetworkIsolation.json", + "_justification": "temporary storage account deleted after PR merge" + }, ] } diff --git a/tools/StaticAnalysis/Exceptions/Az.CognitiveServices/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/Az.CognitiveServices/SignatureIssues.csv index 2753b64da391..938a35c5ff40 100644 --- a/tools/StaticAnalysis/Exceptions/Az.CognitiveServices/SignatureIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.CognitiveServices/SignatureIssues.csv @@ -5,4 +5,5 @@ "Microsoft.Azure.PowerShell.Cmdlets.Management.CognitiveServices.dll","Microsoft.Azure.Commands.Management.CognitiveServices.RemoveAzureCognitiveServicesAccountCommand","Remove-AzCognitiveServicesAccount","1","8600","Cmdlet 'Remove-AzCognitiveServicesAccount' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." "Microsoft.Azure.PowerShell.Cmdlets.CognitiveServices.dll","Microsoft.Azure.Commands.Management.CognitiveServices.NewAzureCognitiveServicesAccountCommand","New-AzCognitiveServicesAccount","1","8420","Parameter set 'KeyVaultEncryption' of cmdlet 'New-AzCognitiveServicesAccount' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." "Microsoft.Azure.PowerShell.Cmdlets.CognitiveServices.dll","Microsoft.Azure.Commands.Management.CognitiveServices.NewAzureCognitiveServicesAccountCommand","New-AzCognitiveServicesAccount","1","8510","Cmdlet 'New-AzCognitiveServicesAccount' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.CognitiveServices.dll","Microsoft.Azure.Commands.Management.CognitiveServices.NewAzureCognitiveServicesAccountCommand","New-AzCognitiveServicesAccount","1","8420","Parameter set 'CognitiveServicesEncryption' of cmdlet 'New-AzCognitiveServicesAccount' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." \ No newline at end of file +"Microsoft.Azure.PowerShell.Cmdlets.CognitiveServices.dll","Microsoft.Azure.Commands.Management.CognitiveServices.NewAzureCognitiveServicesAccountCommand","New-AzCognitiveServicesAccount","1","8420","Parameter set 'CognitiveServicesEncryption' of cmdlet 'New-AzCognitiveServicesAccount' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." +"Microsoft.Azure.PowerShell.Cmdlets.CognitiveServices.dll","Microsoft.Azure.Commands.Management.CognitiveServices.NewAzureCognitiveServicesAccountApiPropertyCommand","New-AzCognitiveServicesAccountApiProperty","1","8100","New-AzCognitiveServicesAccountApiProperty Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" \ No newline at end of file diff --git a/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv index 1d3ce5ee3e3f..db55cacfbe34 100644 --- a/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv @@ -371,3 +371,4 @@ "Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRmVpnSiteCommand","Get-AzVpnSite","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVpnSite' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." "Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.Bastion.GetAzBastionCommand","Get-AzBastion","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzBastion' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." "Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmExpressRoutePortLOA","New-AzExpressRoutePortLOA","1","8100","New-AzExpressRoutePortLOA Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmO365PolicyPropertyCommand","New-AzO365PolicyProperty","1","8100","New-AzO365PolicyProperty Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" diff --git a/tools/StaticAnalysis/Exceptions/Az.Storage/BreakingChangeIssues.csv b/tools/StaticAnalysis/Exceptions/Az.Storage/BreakingChangeIssues.csv index d33973cc8f09..920fb6eabc7c 100644 --- a/tools/StaticAnalysis/Exceptions/Az.Storage/BreakingChangeIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.Storage/BreakingChangeIssues.csv @@ -1,3 +1,3 @@ "Microsoft.Azure.PowerShell.Cmdlets.Storage.Management.dll","Microsoft.Azure.Commands.Management.Storage.GetAzureStorageShareCommand","Get-AzRmStorageShare","0","1050","The parameter set 'AccountObject' for cmdlet 'Get-AzRmStorageShare' has been removed.","Add parameter set 'AccountObject' back to cmdlet 'Get-AzRmStorageShare'." "Microsoft.Azure.PowerShell.Cmdlets.Storage.Management.dll","Microsoft.Azure.Commands.Management.Storage.GetAzureStorageShareCommand","Get-AzRmStorageShare","0","1050","The parameter set 'ShareResourceId' for cmdlet 'Get-AzRmStorageShare' has been removed.","Add parameter set 'ShareResourceId' back to cmdlet 'Get-AzRmStorageShare'." -"Microsoft.Azure.PowerShell.Cmdlets.Storage.Management.dll","Microsoft.Azure.Commands.Management.Storage.GetAzureStorageShareCommand","Get-AzRmStorageShare","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Get-AzRmStorageShare' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Get-AzRmStorageShare'." \ No newline at end of file +"Microsoft.Azure.PowerShell.Cmdlets.Storage.Management.dll","Microsoft.Azure.Commands.Management.Storage.GetAzureStorageShareCommand","Get-AzRmStorageShare","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Get-AzRmStorageShare' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Get-AzRmStorageShare'." diff --git a/tools/StaticAnalysis/Exceptions/Az.Storage/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/Az.Storage/SignatureIssues.csv index f19ed991e37c..056304695e21 100644 --- a/tools/StaticAnalysis/Exceptions/Az.Storage/SignatureIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.Storage/SignatureIssues.csv @@ -68,3 +68,4 @@ "Microsoft.Azure.PowerShell.Cmdlets.Storage.Management.dll","Microsoft.Azure.Commands.Management.Storage.NewAzureStorageAccountObjectReplicationPolicyRuleCommand","New-AzStorageObjectReplicationPolicyRule","1","8100","New-AzStorageObjectReplicationPolicyRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" "Microsoft.Azure.PowerShell.Cmdlets.Storage.Management.dll","Microsoft.Azure.Commands.Management.Storage.EnableAzStorageBlobRestorePolicyCommand","Enable-AzStorageBlobRestorePolicy","1","8410","Parameter RestoreDays of cmdlet Enable-AzStorageBlobRestorePolicy does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." "Microsoft.Azure.PowerShell.Cmdlets.Storage.Management.dll","Microsoft.Azure.Commands.Management.Storage.NewAzureStorageBlobRangeToRestoreCommand","New-AzStorageBlobRangeToRestore","1","8100","New-AzStorageBlobRangeToRestore Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Storage.Management.dll","Microsoft.Azure.Commands.Management.Storage.UpdateAzStorageFileServicePropertyCommand","Update-AzStorageFileServiceProperty","1","8410","Parameter ShareRetentionDays of cmdlet Update-AzStorageFileServiceProperty does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." diff --git a/tools/Test/SmokeTest/CleanAzModules.ps1 b/tools/Test/SmokeTest/CleanAzModules.ps1 new file mode 100644 index 000000000000..7dd906394fd6 --- /dev/null +++ b/tools/Test/SmokeTest/CleanAzModules.ps1 @@ -0,0 +1,3 @@ +# Remove Az.* modules +. "$PSScriptRoot/Common.ps1" +Remove-AzModules diff --git a/tools/Test/SmokeTest/Common.ps1 b/tools/Test/SmokeTest/Common.ps1 new file mode 100644 index 000000000000..2e9dab56438f --- /dev/null +++ b/tools/Test/SmokeTest/Common.ps1 @@ -0,0 +1,52 @@ +function Get-ModulePreviousVersion{ + param( + [string] + [Parameter(Mandatory = $true, Position = 0)] + $gallery, + [string] + [Parameter(Mandatory = $true, Position = 1)] + $moduleName + ) + if($gallery -eq "LocalRepo"){ + $versions = (find-module $moduleName -Repository PSGallery -AllVersions).Version | Sort-Object -Descending + $previousVersion = $versions[0] + }else{ + $versions = (find-module $moduleName -Repository $gallery -AllVersions).Version | Sort-Object -Descending + $previousVersion = $versions[1] + } + + Write-Host "The previous version of $moduleName is:", $previousVersion + return $previousVersion +} + + +function Remove-AzModules { + param ( + [string] + [PSDefaultValue(Help = "Az")] + $ModuleName = "Az" + ) + + Write-Host "Removing $ModuleName modules..." + $ModuleName = $ModuleName + ".*" + $modules = Get-Module -Name $ModuleName -ListAvailable + if ($modules) { + $modules.Path | ForEach-Object { + $dirctory = $_ | Split-Path | Split-Path + if (Test-Path $dirctory ) { + Remove-Item -Path $dirctory -Recurse -Force + } + } + + # Check remove result + $modules = Get-Module -Name $ModuleName -ListAvailable + if ($modules) { + throw "Remove $ModuleName modules failed." + } + else { + Write-Host "$ModuleName modules removed." + } + }else{ + Write-Host "$ModuleName is not found." + } +} \ No newline at end of file diff --git a/tools/Test/SmokeTest/ConnectAzAccount.ps1 b/tools/Test/SmokeTest/ConnectAzAccount.ps1 new file mode 100644 index 000000000000..7713e1ebb864 --- /dev/null +++ b/tools/Test/SmokeTest/ConnectAzAccount.ps1 @@ -0,0 +1,21 @@ +[cmdletbinding()] +param( + [string] + [Parameter(Mandatory = $true, Position = 0)] + $pwd, + + [string] + [Parameter(Mandatory = $true, Position = 1)] + $servicePrincipal, + + [string] + [Parameter(Mandatory = $true, Position = 2)] + $tenantId +) + +Write-Host "Connecting Az.Account..." +$secret = ConvertTo-SecureString -String $pwd -AsPlainText -Force +$credential = New-Object -TypeName System.Management.Automation.PSCredential($servicePrincipal, $secret) +Connect-AzAccount -ServicePrincipal -Credential $credential -Tenant $tenantId +Set-AzContext -Subscription "Azure SDK Powershell Test" +Enable-AzureRmAlias \ No newline at end of file diff --git a/tools/Test/SmokeTest/InstallAnIndividualModule.ps1 b/tools/Test/SmokeTest/InstallAnIndividualModule.ps1 new file mode 100644 index 000000000000..073538ba9858 --- /dev/null +++ b/tools/Test/SmokeTest/InstallAnIndividualModule.ps1 @@ -0,0 +1,21 @@ +[cmdletbinding()] +param( + [string] + [Parameter(Mandatory = $true, Position = 0)] + $gallery +) +# Install Az.Compute +Write-Host "Installing Az.Compute..." +Install-Module -Name Az.Compute -Repository $gallery -Scope CurrentUser -AllowClobber -Force + +# Load Az.Compute +Write-Host "Running Get-AzVM to load Az.Compute..." +Get-AzVM + +# Check Az.Compute version +$azComputeVersion = (Get-Module Az.Compute).Version +Write-Host "Current version of Az.Compute", $azComputeVersion + +if (!$azComputeVersion) { + throw "No Az.Compute is installed" +} diff --git a/tools/Test/SmokeTest/InstallAnIndividualModuleOnTopOfAz.ps1 b/tools/Test/SmokeTest/InstallAnIndividualModuleOnTopOfAz.ps1 new file mode 100644 index 000000000000..3cce65db0b7d --- /dev/null +++ b/tools/Test/SmokeTest/InstallAnIndividualModuleOnTopOfAz.ps1 @@ -0,0 +1,39 @@ +[cmdletbinding()] +param( + [string] + [Parameter(Mandatory = $true, Position = 0)] + $gallery +) + +# Get previous version of Az +. "$PSScriptRoot/Common.ps1" +$previousVersion = Get-ModulePreviousVersion $gallery "Az" + +# Install previous version of Az +Write-Host 'Installing the previous version of Az:', $previousVersion +Install-Module -Name Az -Repository $gallery -RequiredVersion $previousVersion -Scope CurrentUser -AllowClobber -Force + +# Get previous version of Az.Compute +$azComputePreviousVersion = (Get-Module Az.Compute -ListAvailable).Version +Write-Host "Current version of Az.Compute,", $azComputePreviousVersion + +#Install Az.Compute +Write-Host "Installing latest Az.Compute" +Install-Module -Name Az.Compute -Repository $gallery -Scope CurrentUser -AllowClobber -Force + +# Load Az.Compute +Write-Host "Running Get-AzVM to load Az.Compute..." +Get-AzVM + +# Check version +$azComputeVersion = (Get-Module Az.Compute).Version +Write-Host "Current version of Az.Compute,", $azComputeVersion + +if ([System.Version]$azComputeVersion -lt [System.Version]$azComputePreviousVersion) { + throw "Install Az.Compute on top of Az failed" +}elseif([System.Version]$azComputeVersion -eq [System.Version]$azComputePreviousVersion){ + Write-Warning "Az.Compute did not update" +}else{ + Write-Host "Install Az.Compute on top of Az successfully" +} + diff --git a/tools/Test/SmokeTest/InstallAzModules.ps1 b/tools/Test/SmokeTest/InstallAzModules.ps1 new file mode 100644 index 000000000000..f07f244ea514 --- /dev/null +++ b/tools/Test/SmokeTest/InstallAzModules.ps1 @@ -0,0 +1,57 @@ +[cmdletbinding()] +param( + [string] + [Parameter(Mandatory = $true, Position = 0)] + $gallery, + [string] + [Parameter(Mandatory = $false, Position = 1)] + $localRepoLocation +) +function Register-Gallery { + param( + [string] + [Parameter(Mandatory = $true, Position = 0)] + $gallery, + [string] + [Parameter(Mandatory = $false, Position = 1)] + $localRepoLocation + ) + switch ($gallery) { + 'PSGallery' { + Write-Host "Setting $gallery Trusted..." + Set-PSRepository -Name $gallery -InstallationPolicy Trusted + break; + } + 'TestGallery' { + Write-Host "Registering $gallery Trusted..." + Register-PSRepository -Name $gallery -SourceLocation 'https://www.poshtestgallery.com/api/v2' -PackageManagementProvider NuGet -InstallationPolicy Trusted + break; + } + 'LocalRepo' { + Write-Host "Registering $gallery Trusted..." + Register-PSRepository -Name $gallery -SourceLocation $localRepoLocation -PackageManagementProvider NuGet -InstallationPolicy Trusted + break; + } + Default { + throw "Invalid gallery", $gallery + } + } +} + +Register-Gallery $gallery $localRepoLocation + +Write-Host "Installing Az..." +Install-Module -Name Az -Repository $gallery -Scope CurrentUser -AllowClobber -Force + +# Check version +Import-Module -MinimumVersion '2.6.0' -Name 'Az' -Force +$azVersion = (get-module Az).Version +Write-Host "Current version of Az", $azVersion + +# Check Az +Write-Host "Listing Az details..." +Get-Module -Name Az.* -ListAvailable + +if (!$azVersion) { + throw "No Az is installed" +} diff --git a/tools/Test/SmokeTest/InstallAzOnTopOfAnIndividualModule.ps1 b/tools/Test/SmokeTest/InstallAzOnTopOfAnIndividualModule.ps1 new file mode 100644 index 000000000000..3e075c9f8221 --- /dev/null +++ b/tools/Test/SmokeTest/InstallAzOnTopOfAnIndividualModule.ps1 @@ -0,0 +1,35 @@ +[cmdletbinding()] +param( + [string] + [Parameter(Mandatory = $true, Position = 0)] + $gallery +) +# Get previous version of Az.Compute +. "$PSScriptRoot/Common.ps1" +$previousVersion = Get-ModulePreviousVersion $gallery "Az.Compute" + +# Install previous version of Az.Compute +Write-Host "Installing previous version of Az.Compute:", $previousVersion +Install-Module -Name Az.Compute -Repository $gallery -RequiredVersion $previousVersion -Scope CurrentUser -AllowClobber -Force + +#Install Az +Write-Host "Installing latest version of Az" +Install-Module -Name Az -Repository $gallery -Scope CurrentUser -AllowClobber -Force + +Write-Host "Running Get-AzVM to load Az.Compute..." +Get-AzVM + +# Check version +$azComputeVersion = (Get-Module Az.Compute).Version +Write-Host "Current version of Az.Compute", $azComputeVersion + +Write-Host "Checking Az details..." +Get-Module -Name Az.* -ListAvailable + +if ([System.Version]$azComputeVersion -lt [System.Version]$previousVersion) { + throw "Install Az on top of Az.Compute failed" +}elseif([System.Version]$azComputeVersion -eq [System.Version]$previousVersion){ + Write-Warning "Az.Compute did not update" +}else{ + Write-Host "Install Az on top of Az.Compute successfully" +} diff --git a/tools/Test/SmokeTest/PrepareRequiredPowershell.ps1 b/tools/Test/SmokeTest/PrepareRequiredPowershell.ps1 new file mode 100644 index 000000000000..d4032218a1b8 --- /dev/null +++ b/tools/Test/SmokeTest/PrepareRequiredPowershell.ps1 @@ -0,0 +1,53 @@ +[cmdletbinding()] +param( + [string] + [Parameter(Mandatory = $true, Position = 0)] + $requiredPsVersion +) + +function Install-PowerShell { + param ( + [string] + [Parameter(Mandatory = $true, Position = 0)] + $requiredPsVersion + ) + + $windowsPowershellVersion = "5.1.14" + + # Prepare powershell + if ($requiredPsVersion -ne $windowsPowershellVersion) { + Write-Host "Installing PS $requiredPsVersion..." + dotnet --version + dotnet new tool-manifest --force + dotnet tool install PowerShell --version $requiredPsVersion + dotnet tool list + }else { + Write-Host "Powershell", $requiredPsVersion, "has been installed" + } + + # Update PowershellGet to the latest one + Write-Host "Updating PowershellGet to lastest version" + if ($requiredPsVersion -eq $windowsPowershellVersion) { + Install-Module -Repository PSGallery -Name PowerShellGet -Scope CurrentUser -AllowClobber -Force + }else{ + $command = "Install-Module -Repository PSGallery -Name PowerShellGet -Scope CurrentUser -AllowClobber -Force ` + Exit" + dotnet tool run pwsh -c $command + } +} + +# Image "macOS-10.15" preinstalled Az modules +# Image "vs2017-win2016" and "ubuntu-18.04" preinstalled AzureRM modules. + +# Remove Az.* modules +. "$PSScriptRoot/Common.ps1" +Remove-AzModules + +# If all images update AzureRM to Az, below codes should be deleted. +# Remove AzureRM.* modules +Remove-AzModules "AzureRM" +# If all images update AzureRM to Az, above codes should be deleted. + +# Prepare PowerShell as required +Install-PowerShell $requiredPsVersion + diff --git a/tools/Test/SmokeTest/RmCoreSmokeTests.ps1 b/tools/Test/SmokeTest/RmCoreSmokeTests.ps1 new file mode 100644 index 000000000000..d282d1ad4c02 --- /dev/null +++ b/tools/Test/SmokeTest/RmCoreSmokeTests.ps1 @@ -0,0 +1,153 @@ +# $oldVerbose = $VerbosePreference +# $oldDebug = $DebugPreference +# $VerbosePreference = "Continue" +# $DebugPreference = "SilentlyContinue" +# $debugState = $false +[cmdletbinding()] +param( + [Parameter()] + [switch] + $Reverse +) + +if (Get-Module -ListAVailable 'Az.Accounts') +{ + Enable-AzureRmAlias +} + +if (!(Get-AzureRmContext -ErrorAction 'Ignore')) +{ + Connect-AzureRmAccount -Subscription "Azure SDK PowerShell Test" +} + +$testInfo = @{ + TotalCount = 0; + PassedCount = 0; + PassedTests = @(); + FailedTests = @(); + FailureDetails = @(); + Times = @() +} +$randomValue = Get-Random -Minimum 1000 -Maximum 10000 +$resourceGroupName = "smokergtest$randomValue" +$storageAccountName = "smokesatest$randomValue" + +$resourceSetUpCommands=@( + @{Name = "Az.Resources"; Command = {New-AzureRmResourceGroup -Name $resourceGroupName -Location westus -ErrorAction Stop}} +) +$resourceCleanUpCommands = @( + @{Name = "Az.Storage [Cleanup]"; Command = {Remove-AzureRmStorageAccount -Name $storageAccountName -ResourceGroupName $resourceGroupName -Force -ErrorAction Stop}}, + @{Name = "Az.Resources [Cleanup]"; Command = {Remove-AzureRmResourceGroup -Name $resourceGroupName -Force -ErrorAction Stop}} +) +$resourceTestCommands = @( + @{Name = "Az.Storage [Management]"; Command = {New-AzureRmStorageAccount -Name $storageAccountName -SkuName Standard_LRS -Location westus -ResourceGroupName $resourceGroupName -ErrorAction Stop}}, + @{Name = "Az.Storage [Data]"; Command = {New-AzureStorageContext -StorageAccountName $storageAccountName -StorageAccountKey 12345678 -ErrorAction Stop}}, + @{Name = "Az.Aks"; Command = {Get-AzureRmAks -ErrorAction Stop}}, + @{Name = "Az.AnalysisServices"; Command = {Get-AzureRmAnalysisServicesServer -ErrorAction Stop}}, + @{Name = "Az.ApiManagement"; Command = {Get-AzureRmApiManagement -ErrorAction Stop}}, + @{Name = "Az.ApplicationInsights"; Command = {Get-AzureRmApplicationInsights -ErrorAction Stop}}, + @{Name = "Az.Automation"; Command = {Get-AzureRmAutomationAccount -ErrorAction Stop}}, + @{Name = "Az.Batch"; Command = {Get-AzureRmBatchAccount -ErrorAction Stop}}, + @{Name = "Az.Billing"; Command = {Get-AzureRmBillingInvoice -ErrorAction Stop}}, + @{Name = "Az.Billing [Consumption]"; Command = {try {Get-AzureRmConsumptionUsageDetail -ErrorAction Stop} catch {if ($_.ToString() -notlike "*422*" -and $_.ToString() -notlike "*UnprocessableEntity*" -and $_.ToString() -notlike "*BadRequest*") {throw $_}}}}, + @{Name = "Az.Cdn"; Command = {Get-AzureRmCdnProfile -ErrorAction Stop}}, + @{Name = "Az.CognitiveServices"; Command = {Get-AzureRmCognitiveServicesAccount -ErrorAction Stop}}, + @{Name = "Az.Compute"; Command = {Get-AzureRmVM -ErrorAction Stop}}, + @{Name = "Az.ContainerInstance"; Command = {Get-AzureRmContainerGroup -ErrorAction Stop}}, + @{Name = "Az.ContainerRegistry"; Command = {Get-AzureRmContainerRegistry -ErrorAction Stop}}, + @{Name = "Az.DataFactory [V1]"; Command = {Get-AzureRmDataFactory -ResourceGroupName $resourceGroupName -ErrorAction Stop}}, + @{Name = "Az.DataFactoryV2 [V2]"; Command = {Get-AzureRmDataFactoryV2 -ErrorAction Stop}}, + @{Name = "Az.DataLakeAnalytics"; Command = {Get-AzureRmDataLakeAnalyticsAccount -ErrorAction Stop}}, + @{Name = "Az.DataLakeStore"; Command = {Get-AzureRmDataLakeStoreAccount -ErrorAction Stop}}, + @{Name = "Az.DevTestLabs "; Command = {try {Get-AzDtlAllowedVMSizesPolicy -LabName nonexistent -ResourceGroupName nonexistent -ErrorAction Stop} catch {if ($_.ToString() -notlike "*'nonexistent' could not be found.") {throw $_}}}}, + @{Name = "Az.Dns"; Command = {Get-AzureRmDnsZone -ErrorAction Stop}}, + @{Name = "Az.EventGrid"; Command = {Get-AzureRmEventGridTopic -ErrorAction Stop}}, + @{Name = "Az.EventHub"; Command = {Get-AzureRmEventHubNamespace -ErrorAction Stop}}, + @{Name = "Az.HDInsight "; Command = {Get-AzHDInsightCluster -ErrorAction Stop}}, + @{Name = "Az.IotHub"; Command = {Get-AzureRmIotHub -ErrorAction Stop}}, + @{Name = "Az.KeyVault"; Command = {Get-AzureRmKeyVault -ErrorAction Stop}}, + @{Name = "Az.LogicApp"; Command = {Get-AzureRmIntegrationAccount -ErrorAction Stop}}, + @{Name = "Az.MachineLearning"; Command = {Get-AzureRmMlWebService -ErrorAction Stop}}, + # Machine learning compute cmdlets are removed. The following line are to be commented until they are brought back + # @{Name = "Az.MachineLearning [Compute]"; Command = {Get-AzureRmMlOpCluster -ErrorAction Stop}}, + @{Name = "Az.MarketplaceOrdering"; Command = {try {Get-AzMarketplaceTerms -Publisher nonexistent -Product nonexistent -Name nonexistent -ErrorAction Stop} catch {if ($_.ToString() -notlike "*not found*") {throw $_}}}}, + @{Name = "Az.Media"; Command = {Get-AzureRmMediaService -ResourceGroupName $resourceGroupName -ErrorAction Stop}}, + @{Name = "Az.Monitor"; Command = {Get-AzureRmLogProfile -ErrorAction Stop}}, + @{Name = "Az.Network"; Command = {Get-AzureRmNetworkInterface -ErrorAction Stop}}, + @{Name = "Az.NotificationHubs"; Command = {Get-AzureRmNotificationHubsNamespace -ErrorAction Stop}}, + @{Name = "Az.OperationalInsights"; Command = {Get-AzureRmOperationalInsightsWorkspace -ErrorAction Stop}}, + @{Name = "Az.PolicyInsights"; Command = {Get-AzPolicyEvent -ErrorAction Stop}}, + @{Name = "Az.PowerBIUEmbedded"; Command = {Get-AzureRmPowerBIWorkspaceCollection -ErrorAction Stop}}, + @{Name = "Az.RecoveryServices"; Command = {Get-AzRecoveryServicesVault -ErrorAction Stop}}, + @{Name = "Az.RedisCache"; Command = {Get-AzureRmRedisCache -ErrorAction Stop}}, + @{Name = "Az.Relay"; Command = {Get-AzureRmRelayNamespace -ErrorAction Stop}}, + @{Name = "Az.ServiceBus"; Command = {Get-AzureRmServiceBusNamespace -ErrorAction Stop}}, + @{Name = "Az.ServiceFabric"; Command = {Get-AzureRmServiceFabricCluster -ErrorAction Stop}}, + @{Name = "Az.SignalR"; Command = {Get-AzSignalR -ErrorAction Stop}}, + @{Name = "Az.Sql"; Command = {Get-AzureRmSqlServer -ErrorAction Stop}}, + @{Name = "Az.StreamAnalytics"; Command = {Get-AzureRmStreamAnalyticsJob -ErrorAction Stop}}, + @{Name = "Az.Resources [Tags]"; Command = {Get-AzureRmTag -ErrorAction Stop}}, + @{Name = "Az.TrafficManager"; Command = {Get-AzureRmTrafficManagerProfile -ErrorAction Stop}}, + @{Name = "Az.Billing [UsageAggregates]"; Command = {Get-UsageAggregates -ReportedStartTime '1/1/2018' -ReportedEndTime '1/2/2018' -ErrorAction Stop}}, + @{Name = "Az.Websites"; Command = {Get-AzureRmWebApp -ErrorAction Stop}} +) + +if($Reverse.IsPresent){ + [array]::Reverse($resourceTestCommands) +} + +$resourceCommands=$resourceSetUpCommands+$resourceTestCommands+$resourceCleanUpCommands + +$startTime = Get-Date +$resourceCommands | ForEach-Object { + $testName = $_.Name + $script = $_.Command + Write-Output "Running test $testName" + $testStart = Get-Date + try + { + &$script + $testInfo.PassedCount += 1 + $testInfo.PassedTests += $testName + } + catch + { + Write-Error $_.Exception + $detail = Resolve-AzureRmError -Last + $testInfo.FailureDetails += (New-Object PSObject -Property @{Name = $testName; Details = $detail}) + $testInfo.FailedTests += $testName + } + finally + { + $testEnd = Get-Date + $testElapsed = $testEnd - $testStart + $testInfo.Times += (New-Object PSObject -Property @{TestName = $testName; ElapsedTime = $testElapsed}) + $testInfo.TotalCount += 1 + } +} +$endTime = Get-Date + +@{ + Subscription = $context.Context.Subscription.Name; + StartTime = $startTime; + EndTime = $endTime; + Elapsed = $endTime - $startTime; + TotalTests = $testInfo.TotalCount; + PassedTests = $testInfo.PassedTests; + FailedTests = $testInfo.FailedTests +} | Write-Output + +$testInfo.FailureDetails | ForEach-Object{ + $_ | Select-Object -Property Name | Write-Output + $_.Details | Write-Output +} +$testInfo.Times | Format-Table + +if ($testInfo.FailedTests.Count -gt 0) +{ + throw ("Test run failed with " + $testInfo.FailedTests.Count + " failures.") +} + +# Resolve-AzureRmError +# $DebugPreference = $oldDebug +# $VerbosePreference = $oldVerbose \ No newline at end of file diff --git a/tools/Test/SmokeTest/ScriptsCaller.ps1 b/tools/Test/SmokeTest/ScriptsCaller.ps1 new file mode 100644 index 000000000000..141879c79941 --- /dev/null +++ b/tools/Test/SmokeTest/ScriptsCaller.ps1 @@ -0,0 +1,21 @@ +[cmdletbinding()] +param( + [string] + [Parameter(Mandatory = $true, Position = 0)] + $requiredPsVersion, + [string] + [Parameter(Mandatory = $true, Position = 1)] + $script +) + +Write-Host "Required Version:", $requiredPsVersion, ", script:", $script +$windowsPowershellVersion = "5.1.14" + +if($requiredPsVersion -eq $windowsPowershellVersion){ + Invoke-Command -ScriptBlock { param ($command) &"powershell.exe" -Command $command } -ArgumentList $script +}else{ + $command = "`$PSVersionTable ` + $script ` + Exit" + dotnet tool run pwsh -c $command +} \ No newline at end of file diff --git a/tools/Test/SmokeTest/UpdateAnIndividualModule.ps1 b/tools/Test/SmokeTest/UpdateAnIndividualModule.ps1 new file mode 100644 index 000000000000..c34f7f973533 --- /dev/null +++ b/tools/Test/SmokeTest/UpdateAnIndividualModule.ps1 @@ -0,0 +1,34 @@ +[cmdletbinding()] +param( + [string] + [Parameter(Mandatory = $true, Position = 0)] + $gallery +) + +# Get previous version of Az.Compute +. "$PSScriptRoot/Common.ps1" +$previousVersion = Get-ModulePreviousVersion $gallery "Az.Compute" + +# Install previous version of Az.Compute +Write-Host "Installing previous version of Az.Compute:", $previousVersion +Install-Module -Name Az.Compute -Repository $gallery -RequiredVersion $previousVersion -Scope CurrentUser -AllowClobber -Force + +#Update Az.Compute +Write-Host "Updating latest version of Az.Compute" +Update-Module -Name Az.Compute -Scope CurrentUser -Force + +# Load Az.Compute +Write-Host "Running Get-AzVM to load Az.Compute..." +Get-AzVM + +# Check Az.Compute version +$azComputeVersion = (Get-Module Az.Compute).Version | Sort-Object -Descending +Write-Host "Current version of Az.Compute", $azComputeVersion + +if ([System.Version]$azComputeVersion -lt [System.Version]$previousVersion) { + throw "Update Az.Compute failed" +}elseif([System.Version]$azComputeVersion -eq [System.Version]$previousVersion){ + Write-Warning "Az.Compute did not update" +}else{ + Write-Host "Update Az.Compute successfully" +} diff --git a/tools/Test/SmokeTest/UpdateAzModules.ps1 b/tools/Test/SmokeTest/UpdateAzModules.ps1 new file mode 100644 index 000000000000..6c47b9374710 --- /dev/null +++ b/tools/Test/SmokeTest/UpdateAzModules.ps1 @@ -0,0 +1,36 @@ +[cmdletbinding()] +param( + [string] + [Parameter(Mandatory = $true, Position = 0)] + $gallery +) + +# Get previous version of Az +. "$PSScriptRoot/Common.ps1" +$previousVersion = Get-ModulePreviousVersion $gallery "Az" + +# Install previous version of Az +Write-Host 'Installing the previous version of Az:', $previousVersion +Install-Module -Name Az -Repository $gallery -RequiredVersion $previousVersion -Scope CurrentUser -AllowClobber -Force + +#Update Az +Write-Host "Installing latest Az" +Update-Module -Name Az -Scope CurrentUser -Force + +# Check details of Az +Write-Host "Checking latest version of Az" +Get-Module -Name Az.* -ListAvailable + +# Check Az version +Import-Module -MinimumVersion '2.6.0' -Name 'Az' -Force -Scope 'Global' +$azVersion = (get-module Az).Version +Write-Host "Current version of Az", $azVersion + +if ([System.Version]$azVersion -lt [System.Version]$previousVersion) { + throw "Update Az failed" +} +elseif([System.Version]$azVersion -eq [System.Version]$previousVersion){ + Write-Warning "Az did not update" +}else{ + Write-Host "Update Az successfully" +} \ No newline at end of file diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Sql.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Sql.dll.json index e22395f8585a..595238252f69 100644 --- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Sql.dll.json +++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Sql.dll.json @@ -14,7 +14,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -128,7 +128,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -418,7 +418,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -664,7 +664,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -778,7 +778,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -1068,7 +1068,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -1314,7 +1314,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -1428,7 +1428,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -1544,7 +1544,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1788,7 +1788,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2013,7 +2013,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -2129,7 +2129,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2450,7 +2450,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2747,7 +2747,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2979,7 +2979,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -3093,7 +3093,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "AutoCompleteRestore": "System.Nullable`1[System.Boolean]", @@ -3358,7 +3358,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "AutoCompleteRestore": "System.Nullable`1[System.Boolean]", @@ -3599,7 +3599,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -3713,7 +3713,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "AutoCompleteRestore": "System.Nullable`1[System.Boolean]", @@ -3978,7 +3978,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "AutoCompleteRestore": "System.Nullable`1[System.Boolean]", @@ -4219,7 +4219,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -4333,7 +4333,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -4449,7 +4449,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4693,7 +4693,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4918,7 +4918,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -5034,7 +5034,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5355,7 +5355,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5652,7 +5652,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5884,7 +5884,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedInstanceVulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedInstanceVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedInstanceVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -5993,7 +5993,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -6198,7 +6198,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -6373,7 +6373,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedInstanceVulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedInstanceVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedInstanceVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -6482,7 +6482,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -6687,7 +6687,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -6862,7 +6862,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedInstanceVulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedInstanceVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedInstanceVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -6971,7 +6971,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -7087,7 +7087,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7361,7 +7361,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7634,7 +7634,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7835,7 +7835,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -7903,7 +7903,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8104,7 +8104,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8312,7 +8312,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ServerVulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ServerVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ServerVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -8421,7 +8421,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -8615,7 +8615,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -8779,7 +8779,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ServerVulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ServerVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ServerVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -8888,7 +8888,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -9082,7 +9082,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -9246,7 +9246,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -9360,7 +9360,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -9476,7 +9476,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9750,7 +9750,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10023,7 +10023,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10224,7 +10224,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -10292,7 +10292,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10493,7 +10493,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10701,7 +10701,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentScanExportModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentScanExportModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentScanExportModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ServerName": "System.String", "DatabaseName": "System.String", @@ -10807,7 +10807,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TriggerType": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType", "Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel]", @@ -11082,7 +11082,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TriggerType": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType", "Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel]", @@ -11295,7 +11295,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentScanRecordModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TriggerType": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType", "Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel]", @@ -11407,7 +11407,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -11739,7 +11739,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -12009,7 +12009,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentScanRecordModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TriggerType": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType", "Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel]", @@ -12121,7 +12121,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -12495,7 +12495,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -12789,7 +12789,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentScanExportModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentScanExportModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentScanExportModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InstanceName": "System.String", "DatabaseName": "System.String", @@ -12895,7 +12895,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TriggerType": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType", "Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel]", @@ -13170,7 +13170,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TriggerType": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType", "Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel]", @@ -13427,7 +13427,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentScanRecordModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TriggerType": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType", "Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel]", @@ -13539,7 +13539,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "AutoCompleteRestore": "System.Nullable`1[System.Boolean]", @@ -13846,7 +13846,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "AutoCompleteRestore": "System.Nullable`1[System.Boolean]", @@ -14135,7 +14135,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentScanRecordModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TriggerType": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType", "Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel]", @@ -14247,7 +14247,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "AutoCompleteRestore": "System.Nullable`1[System.Boolean]", @@ -14596,7 +14596,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "AutoCompleteRestore": "System.Nullable`1[System.Boolean]", @@ -14933,7 +14933,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentRuleBaselineModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RuleAppliesToMaster": "System.Boolean", "BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]", @@ -15040,7 +15040,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -15414,7 +15414,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -15708,7 +15708,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentRuleBaselineModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RuleAppliesToMaster": "System.Boolean", "BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]", @@ -15815,7 +15815,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -16189,7 +16189,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -16483,7 +16483,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentRuleBaselineModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RuleAppliesToMaster": "System.Boolean", "BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]", @@ -16590,7 +16590,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RuleAppliesToMaster": "System.Boolean", "BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]", @@ -16944,7 +16944,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RuleAppliesToMaster": "System.Boolean", "BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]", @@ -17200,7 +17200,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentRuleBaselineModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RuleAppliesToMaster": "System.Boolean", "BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]", @@ -17307,7 +17307,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "AutoCompleteRestore": "System.Nullable`1[System.Boolean]", @@ -17656,7 +17656,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "AutoCompleteRestore": "System.Nullable`1[System.Boolean]", @@ -17993,7 +17993,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentRuleBaselineModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RuleAppliesToMaster": "System.Boolean", "BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]", @@ -18100,7 +18100,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "AutoCompleteRestore": "System.Nullable`1[System.Boolean]", @@ -18449,7 +18449,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "AutoCompleteRestore": "System.Nullable`1[System.Boolean]", @@ -18786,7 +18786,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentRuleBaselineModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RuleAppliesToMaster": "System.Boolean", "BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]", @@ -18893,7 +18893,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RuleAppliesToMaster": "System.Boolean", "BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]", @@ -19247,7 +19247,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RuleAppliesToMaster": "System.Boolean", "BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]", @@ -19595,7 +19595,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model", "Name": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IgnoreMissingVnetServiceEndpoint": "System.Nullable`1[System.Boolean]", "ResourceGroupName": "System.String", @@ -19869,7 +19869,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model", "Name": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IgnoreMissingVnetServiceEndpoint": "System.Nullable`1[System.Boolean]", "ResourceGroupName": "System.String", @@ -20269,7 +20269,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model", "Name": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IgnoreMissingVnetServiceEndpoint": "System.Nullable`1[System.Boolean]", "ResourceGroupName": "System.String", @@ -20585,7 +20585,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model", "Name": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IgnoreMissingVnetServiceEndpoint": "System.Nullable`1[System.Boolean]", "ResourceGroupName": "System.String", @@ -20985,7 +20985,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model", "Name": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model.AzureSqlVirtualClusterModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model.AzureSqlVirtualClusterModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model.AzureSqlVirtualClusterModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "Location": "System.String", @@ -21419,7 +21419,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model", "Name": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model.AzureSqlVirtualClusterModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model.AzureSqlVirtualClusterModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model.AzureSqlVirtualClusterModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "Location": "System.String", @@ -21517,7 +21517,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model", "Name": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model.AzureSqlVirtualClusterModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model.AzureSqlVirtualClusterModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model.AzureSqlVirtualClusterModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "Location": "System.String", @@ -21769,7 +21769,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model", "Name": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model.AzureSqlVirtualClusterModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model.AzureSqlVirtualClusterModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model.AzureSqlVirtualClusterModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "Location": "System.String", @@ -22067,7 +22067,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Usages.Models", "Name": "Microsoft.Azure.Commands.Sql.Usages.Models.AzureSqlUsageModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Usages.Models.AzureSqlUsageModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Usages.Models.AzureSqlUsageModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CurrentValue": "System.Nullable`1[System.Int32]", "Limit": "System.Nullable`1[System.Int32]", @@ -22126,7 +22126,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model", "Name": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Sql.Models.Sku", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -22304,7 +22304,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model", "Name": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Sql.Models.Sku", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -22728,7 +22728,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceKeyVaultKeyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Type": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.ServerKeyType", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -22820,7 +22820,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -23009,7 +23009,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -23842,7 +23842,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -24102,7 +24102,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -24598,7 +24598,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceKeyVaultKeyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Type": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.ServerKeyType", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -24708,7 +24708,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -24903,7 +24903,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -25288,7 +25288,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceTransparentDataEncryptionProtectorModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceTransparentDataEncryptionProtectorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceTransparentDataEncryptionProtectorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Type": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType", "ResourceGroupName": "System.String", @@ -25396,7 +25396,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -25567,7 +25567,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -25906,7 +25906,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "State": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType", "ResourceGroupName": "System.String", @@ -26178,7 +26178,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionActivityModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Status": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionActivityStatusType", "PercentComplete": "System.Single", @@ -26451,7 +26451,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlServerTransparentDataEncryptionProtectorModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlServerTransparentDataEncryptionProtectorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlServerTransparentDataEncryptionProtectorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Type": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType", "ResourceGroupName": "System.String", @@ -26682,7 +26682,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceKeyVaultKeyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Type": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.ServerKeyType", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -26774,7 +26774,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -26963,7 +26963,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -27372,7 +27372,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceTransparentDataEncryptionProtectorModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceTransparentDataEncryptionProtectorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceTransparentDataEncryptionProtectorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Type": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType", "ResourceGroupName": "System.String", @@ -27478,7 +27478,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27619,7 +27619,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -27788,7 +27788,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27923,7 +27923,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -28071,7 +28071,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -28298,7 +28298,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -28624,7 +28624,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "State": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType", "ResourceGroupName": "System.String", @@ -28680,7 +28680,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -28876,7 +28876,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -29108,7 +29108,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlServerTransparentDataEncryptionProtectorModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlServerTransparentDataEncryptionProtectorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlServerTransparentDataEncryptionProtectorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Type": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType", "ResourceGroupName": "System.String", @@ -29165,7 +29165,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -29397,7 +29397,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -29677,7 +29677,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model", "Name": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DatabaseThreatDetectionPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DatabaseThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DatabaseThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ThreatDetectionState": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ThreatDetectionStateType", "EmailAdmins": "System.Boolean", @@ -29956,7 +29956,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model", "Name": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ServerThreatDetectionPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ServerThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ServerThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ThreatDetectionState": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ThreatDetectionStateType", "EmailAdmins": "System.Boolean", @@ -30192,7 +30192,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model", "Name": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DatabaseThreatDetectionPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DatabaseThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DatabaseThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ThreatDetectionState": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ThreatDetectionStateType", "EmailAdmins": "System.Boolean", @@ -30513,7 +30513,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model", "Name": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ServerThreatDetectionPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ServerThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ServerThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ThreatDetectionState": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ThreatDetectionStateType", "EmailAdmins": "System.Boolean", @@ -30791,7 +30791,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model", "Name": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DatabaseThreatDetectionPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DatabaseThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DatabaseThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ThreatDetectionState": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ThreatDetectionStateType", "EmailAdmins": "System.Boolean", @@ -31330,7 +31330,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model", "Name": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ServerThreatDetectionPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ServerThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ServerThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ThreatDetectionState": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ThreatDetectionStateType", "EmailAdmins": "System.Boolean", @@ -31826,7 +31826,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Sql.LegacySdk.Models", "Name": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedDatabaseProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedDatabaseProperties, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedDatabaseProperties, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.10.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "TargetEdition": "System.String", @@ -32139,7 +32139,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServiceTierAdvisor.Model", "Name": "Microsoft.Azure.Commands.Sql.ServiceTierAdvisor.Model.UpgradeServerHint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServiceTierAdvisor.Model.UpgradeServerHint, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServiceTierAdvisor.Model.UpgradeServerHint, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Databases": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedDatabaseProperties]", "ElasticPools": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.UpgradeRecommendedElasticPoolProperties]" @@ -32409,7 +32409,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServiceObjective.Model", "Name": "Microsoft.Azure.Commands.Sql.ServiceObjective.Model.AzureSqlServerServiceObjectiveModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServiceObjective.Model.AzureSqlServerServiceObjectiveModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServiceObjective.Model.AzureSqlServerServiceObjectiveModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enabled": "System.Boolean", "IsDefault": "System.Boolean", @@ -32843,7 +32843,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -33085,7 +33085,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -33675,7 +33675,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -33959,7 +33959,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -34507,7 +34507,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Type": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel+ServerKeyType", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -34824,7 +34824,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Type": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel+ServerKeyType", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -35099,7 +35099,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Type": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel+ServerKeyType", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -35416,7 +35416,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceGroupName": "System.String", "ServerName": "System.String", @@ -35692,7 +35692,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceGroupName": "System.String", "ServerName": "System.String", @@ -36010,7 +36010,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceGroupName": "System.String", "ServerName": "System.String", @@ -36122,7 +36122,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceGroupName": "System.String", "ServerName": "System.String", @@ -36436,7 +36436,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceGroupName": "System.String", "ServerName": "System.String", @@ -36804,7 +36804,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceGroupName": "System.String", "ServerName": "System.String", @@ -37252,7 +37252,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceGroupName": "System.String", "ServerName": "System.String", @@ -37547,7 +37547,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationActivityModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationActivityModel+ServerDisasterRecoveryConfigurationState", "OperationId": "System.Guid", @@ -37873,7 +37873,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceGroupName": "System.String", "ServerName": "System.String", @@ -38336,7 +38336,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceGroupName": "System.String", "ServerName": "System.String", @@ -38673,7 +38673,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceGroupName": "System.String", "ServerName": "System.String", @@ -39234,7 +39234,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerCommunicationLink.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerCommunicationLink.Model.AzureSqlServerCommunicationLinkModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerCommunicationLink.Model.AzureSqlServerCommunicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerCommunicationLink.Model.AzureSqlServerCommunicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceGroupName": "System.String", "ServerName": "System.String", @@ -39508,7 +39508,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerCommunicationLink.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerCommunicationLink.Model.AzureSqlServerCommunicationLinkModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerCommunicationLink.Model.AzureSqlServerCommunicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerCommunicationLink.Model.AzureSqlServerCommunicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceGroupName": "System.String", "ServerName": "System.String", @@ -39866,7 +39866,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerCommunicationLink.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerCommunicationLink.Model.AzureSqlServerCommunicationLinkModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerCommunicationLink.Model.AzureSqlServerCommunicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerCommunicationLink.Model.AzureSqlServerCommunicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceGroupName": "System.String", "ServerName": "System.String", @@ -40182,7 +40182,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryOnlyAuthentication.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryOnlyAuthentication.Model.AzureSqlServerActiveDirectoryOnlyAuthenticationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryOnlyAuthentication.Model.AzureSqlServerActiveDirectoryOnlyAuthenticationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryOnlyAuthentication.Model.AzureSqlServerActiveDirectoryOnlyAuthenticationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AzureADOnlyAuthentication": "System.Boolean", "ServerName": "System.String", @@ -40237,7 +40237,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -40393,7 +40393,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -40717,7 +40717,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryOnlyAuthentication.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryOnlyAuthentication.Model.AzureSqlServerActiveDirectoryOnlyAuthenticationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryOnlyAuthentication.Model.AzureSqlServerActiveDirectoryOnlyAuthenticationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryOnlyAuthentication.Model.AzureSqlServerActiveDirectoryOnlyAuthenticationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AzureADOnlyAuthentication": "System.Boolean", "ServerName": "System.String", @@ -40772,7 +40772,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -40928,7 +40928,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -41252,7 +41252,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryOnlyAuthentication.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryOnlyAuthentication.Model.AzureSqlServerActiveDirectoryOnlyAuthenticationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryOnlyAuthentication.Model.AzureSqlServerActiveDirectoryOnlyAuthenticationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryOnlyAuthentication.Model.AzureSqlServerActiveDirectoryOnlyAuthenticationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AzureADOnlyAuthentication": "System.Boolean", "ServerName": "System.String", @@ -41307,7 +41307,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -41463,7 +41463,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -41787,7 +41787,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model.AzureSqlServerActiveDirectoryAdministratorModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model.AzureSqlServerActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model.AzureSqlServerActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ObjectId": "System.Guid", "IsAzureADOnlyAuthentication": "System.Nullable`1[System.Boolean]", @@ -42018,7 +42018,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model.AzureSqlServerActiveDirectoryAdministratorModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model.AzureSqlServerActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model.AzureSqlServerActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ObjectId": "System.Guid", "IsAzureADOnlyAuthentication": "System.Nullable`1[System.Boolean]", @@ -42291,7 +42291,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model.AzureSqlServerActiveDirectoryAdministratorModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model.AzureSqlServerActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model.AzureSqlServerActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ObjectId": "System.Guid", "IsAzureADOnlyAuthentication": "System.Nullable`1[System.Boolean]", @@ -42606,7 +42606,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Replication.Model", "Name": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowConnections": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -42615,12 +42615,13 @@ "DatabaseName": "System.String", "ServerName": "System.String", "ResourceGroupName": "System.String", + "BackupStorageRedundancy": "System.String", "LicenseType": "System.String", "Family": "System.String", "Edition": "System.String", "SkuName": "System.String", - "PartnerLocation": "System.String", "StartTime": "System.String", + "Location": "System.String", "Role": "System.String", "PartnerRole": "System.String", "PercentComplete": "System.String", @@ -42629,7 +42630,7 @@ "SecondaryServiceObjectiveName": "System.String", "PartnerDatabaseName": "System.String", "PartnerServerName": "System.String", - "Location": "System.String", + "PartnerLocation": "System.String", "PartnerResourceGroupName": "System.String" }, "ElementType": null, @@ -42981,7 +42982,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Replication.Model", "Name": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureSqlDatabaseCopyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureSqlDatabaseCopyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureSqlDatabaseCopyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -42989,6 +42990,7 @@ "DatabaseName": "System.String", "ServerName": "System.String", "ResourceGroupName": "System.String", + "BackupStorageRedundancy": "System.String", "LicenseType": "System.String", "Family": "System.String", "Edition": "System.String", @@ -43248,6 +43250,28 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, + { + "Name": "BackupStorageRedundancy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Local", + "Zone", + "Geo" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, { "Name": "ServerName", "AliasList": [], @@ -43492,6 +43516,34 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "BackupStorageRedundancy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Local", + "Zone", + "Geo" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ServerName", @@ -43802,6 +43854,34 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "BackupStorageRedundancy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Local", + "Zone", + "Geo" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ServerName", @@ -44116,6 +44196,34 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "BackupStorageRedundancy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Local", + "Zone", + "Geo" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ServerName", @@ -44222,7 +44330,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Replication.Model", "Name": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowConnections": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -44231,12 +44339,13 @@ "DatabaseName": "System.String", "ServerName": "System.String", "ResourceGroupName": "System.String", + "BackupStorageRedundancy": "System.String", "LicenseType": "System.String", "Family": "System.String", "Edition": "System.String", "SkuName": "System.String", - "PartnerLocation": "System.String", "StartTime": "System.String", + "Location": "System.String", "Role": "System.String", "PartnerRole": "System.String", "PercentComplete": "System.String", @@ -44245,7 +44354,7 @@ "SecondaryServiceObjectiveName": "System.String", "PartnerDatabaseName": "System.String", "PartnerServerName": "System.String", - "Location": "System.String", + "PartnerLocation": "System.String", "PartnerResourceGroupName": "System.String" }, "ElementType": null, @@ -44425,7 +44534,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Replication.Model", "Name": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -44598,6 +44707,28 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, + { + "Name": "BackupStorageRedundancy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Local", + "Zone", + "Geo" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, { "Name": "ServerName", "AliasList": [], @@ -44801,7 +44932,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Replication.Model", "Name": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -44951,6 +45082,34 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "BackupStorageRedundancy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Local", + "Zone", + "Geo" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ServerName", @@ -45220,7 +45379,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Replication.Model", "Name": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -45370,6 +45529,34 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "BackupStorageRedundancy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Local", + "Zone", + "Geo" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ServerName", @@ -45643,7 +45830,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Replication.Model", "Name": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -45793,6 +45980,34 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "BackupStorageRedundancy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Local", + "Zone", + "Geo" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ServerName", @@ -45899,7 +46114,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Replication.Model", "Name": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowConnections": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -45908,12 +46123,13 @@ "DatabaseName": "System.String", "ServerName": "System.String", "ResourceGroupName": "System.String", + "BackupStorageRedundancy": "System.String", "LicenseType": "System.String", "Family": "System.String", "Edition": "System.String", "SkuName": "System.String", - "PartnerLocation": "System.String", "StartTime": "System.String", + "Location": "System.String", "Role": "System.String", "PartnerRole": "System.String", "PercentComplete": "System.String", @@ -45922,7 +46138,7 @@ "SecondaryServiceObjectiveName": "System.String", "PartnerDatabaseName": "System.String", "PartnerServerName": "System.String", - "Location": "System.String", + "PartnerLocation": "System.String", "PartnerResourceGroupName": "System.String" }, "ElementType": null, @@ -46274,7 +46490,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Replication.Model", "Name": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowConnections": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -46283,12 +46499,13 @@ "DatabaseName": "System.String", "ServerName": "System.String", "ResourceGroupName": "System.String", + "BackupStorageRedundancy": "System.String", "LicenseType": "System.String", "Family": "System.String", "Edition": "System.String", "SkuName": "System.String", - "PartnerLocation": "System.String", "StartTime": "System.String", + "Location": "System.String", "Role": "System.String", "PartnerRole": "System.String", "PercentComplete": "System.String", @@ -46297,7 +46514,7 @@ "SecondaryServiceObjectiveName": "System.String", "PartnerDatabaseName": "System.String", "PartnerServerName": "System.String", - "Location": "System.String", + "PartnerLocation": "System.String", "PartnerResourceGroupName": "System.String" }, "ElementType": null, @@ -46901,7 +47118,7 @@ "Type": { "Namespace": "Microsoft.Azure.Management.Sql.LegacySdk.Models", "Name": "Microsoft.Azure.Management.Sql.LegacySdk.Models.UpgradeRecommendedElasticPoolProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.UpgradeRecommendedElasticPoolProperties, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.UpgradeRecommendedElasticPoolProperties, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.10.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DatabaseCollection": "System.Collections.Generic.IList`1[System.String]", "DatabaseDtuMax": "System.Int32", @@ -47135,7 +47352,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model", "Name": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlDatabaseRecommendedActionModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlDatabaseRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlDatabaseRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ErrorDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionErrorInfo", "ImplementationDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImplementationInfo", @@ -47541,7 +47758,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model", "Name": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlElasticPoolRecommendedActionModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlElasticPoolRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlElasticPoolRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ErrorDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionErrorInfo", "ImplementationDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImplementationInfo", @@ -47947,7 +48164,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model", "Name": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlServerRecommendedActionModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlServerRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlServerRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ErrorDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionErrorInfo", "ImplementationDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImplementationInfo", @@ -48306,7 +48523,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model", "Name": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlDatabaseRecommendedActionModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlDatabaseRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlDatabaseRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ErrorDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionErrorInfo", "ImplementationDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImplementationInfo", @@ -48430,7 +48647,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet", "Name": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -48668,7 +48885,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet", "Name": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -48924,7 +49141,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model", "Name": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlElasticPoolRecommendedActionModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlElasticPoolRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlElasticPoolRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ErrorDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionErrorInfo", "ImplementationDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImplementationInfo", @@ -49048,7 +49265,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet", "Name": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -49286,7 +49503,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet", "Name": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -49542,7 +49759,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model", "Name": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlServerRecommendedActionModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlServerRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlServerRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ErrorDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionErrorInfo", "ImplementationDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImplementationInfo", @@ -49661,7 +49878,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet", "Name": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -49881,7 +50098,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet", "Name": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -50113,7 +50330,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -50190,7 +50407,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model", "Name": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Sql.Models.Sku", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -50386,7 +50603,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model", "Name": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Sql.Models.Sku", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -51237,7 +51454,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -51314,7 +51531,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model", "Name": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Sql.Models.Sku", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -51865,7 +52082,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model", "Name": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Sql.Models.Sku", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -54338,7 +54555,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -54453,7 +54670,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -54722,7 +54939,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -55037,7 +55254,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -55114,7 +55331,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -55550,7 +55767,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -57283,7 +57500,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstanceOperation.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstanceOperation.Model.AzureSqlManagedInstanceOperationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstanceOperation.Model.AzureSqlManagedInstanceOperationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstanceOperation.Model.AzureSqlManagedInstanceOperationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OperationParameters": "Microsoft.Azure.Management.Sql.Models.ManagedInstanceOperationParametersPair", "OperationSteps": "Microsoft.Azure.Management.Sql.Models.ManagedInstanceOperationSteps", @@ -57801,7 +58018,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstanceOperation.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstanceOperation.Model.AzureSqlManagedInstanceOperationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstanceOperation.Model.AzureSqlManagedInstanceOperationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstanceOperation.Model.AzureSqlManagedInstanceOperationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OperationParameters": "Microsoft.Azure.Management.Sql.Models.ManagedInstanceOperationParametersPair", "OperationSteps": "Microsoft.Azure.Management.Sql.Models.ManagedInstanceOperationSteps", @@ -57947,7 +58164,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstanceOperation.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstanceOperation.Model.AzureSqlManagedInstanceOperationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstanceOperation.Model.AzureSqlManagedInstanceOperationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstanceOperation.Model.AzureSqlManagedInstanceOperationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OperationParameters": "Microsoft.Azure.Management.Sql.Models.ManagedInstanceOperationParametersPair", "OperationSteps": "Microsoft.Azure.Management.Sql.Models.ManagedInstanceOperationSteps", @@ -58309,7 +58526,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstanceOperation.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstanceOperation.Model.AzureSqlManagedInstanceOperationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstanceOperation.Model.AzureSqlManagedInstanceOperationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstanceOperation.Model.AzureSqlManagedInstanceOperationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OperationParameters": "Microsoft.Azure.Management.Sql.Models.ManagedInstanceOperationParametersPair", "OperationSteps": "Microsoft.Azure.Management.Sql.Models.ManagedInstanceOperationSteps", @@ -58642,7 +58859,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "AutoCompleteRestore": "System.Nullable`1[System.Boolean]", @@ -59035,7 +59252,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "AutoCompleteRestore": "System.Nullable`1[System.Boolean]", @@ -59232,7 +59449,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlRecoverableManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlRecoverableManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlRecoverableManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceGroupName": "System.String", "ManagedInstanceName": "System.String", @@ -59572,7 +59789,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseRestoreDetailsResultModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseRestoreDetailsResultModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseRestoreDetailsResultModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PercentCompleted": "System.Double", "NumberOfFilesDetected": "System.Int64", @@ -59874,7 +60091,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "AutoCompleteRestore": "System.Nullable`1[System.Boolean]", @@ -60045,7 +60262,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -60400,7 +60617,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -60575,7 +60792,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "AutoCompleteRestore": "System.Nullable`1[System.Boolean]", @@ -60764,7 +60981,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -61253,7 +61470,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -61654,7 +61871,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "AutoCompleteRestore": "System.Nullable`1[System.Boolean]", @@ -61805,7 +62022,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "AutoCompleteRestore": "System.Nullable`1[System.Boolean]", @@ -62116,7 +62333,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "AutoCompleteRestore": "System.Nullable`1[System.Boolean]", @@ -62449,7 +62666,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "AutoCompleteRestore": "System.Nullable`1[System.Boolean]", @@ -62697,7 +62914,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationDate": "System.Nullable`1[System.DateTime]", "EarliestRestorePoint": "System.Nullable`1[System.DateTime]", @@ -62750,7 +62967,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlRecoverableManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlRecoverableManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlRecoverableManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceGroupName": "System.String", "ManagedInstanceName": "System.String", @@ -63243,7 +63460,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationDate": "System.Nullable`1[System.DateTime]", "EarliestRestorePoint": "System.Nullable`1[System.DateTime]", @@ -63899,7 +64116,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationDate": "System.Nullable`1[System.DateTime]", "EarliestRestorePoint": "System.Nullable`1[System.DateTime]", @@ -64944,7 +65161,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlRecoverableManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlRecoverableManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlRecoverableManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceGroupName": "System.String", "ManagedInstanceName": "System.String", @@ -65909,7 +66126,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "AutoCompleteRestore": "System.Nullable`1[System.Boolean]", @@ -66174,7 +66391,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "AutoCompleteRestore": "System.Nullable`1[System.Boolean]", @@ -66767,7 +66984,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "AutoCompleteRestore": "System.Nullable`1[System.Boolean]", @@ -67064,7 +67281,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "AutoCompleteRestore": "System.Nullable`1[System.Boolean]", @@ -67253,7 +67470,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "AutoCompleteRestore": "System.Nullable`1[System.Boolean]", @@ -67646,7 +67863,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "AutoCompleteRestore": "System.Nullable`1[System.Boolean]", @@ -67843,7 +68060,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlDeletedManagedDatabaseBackupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlDeletedManagedDatabaseBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlDeletedManagedDatabaseBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DeletionDate": "System.DateTime", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -68372,7 +68589,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "WeekOfYear": "System.Nullable`1[System.Int32]", "ResourceGroupName": "System.String", @@ -68650,7 +68867,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseBackupShortTermRetentionPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseBackupShortTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseBackupShortTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RetentionDays": "System.Int32", "DeletionDate": "System.Nullable`1[System.DateTime]", @@ -68731,7 +68948,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationDate": "System.Nullable`1[System.DateTime]", "EarliestRestorePoint": "System.Nullable`1[System.DateTime]", @@ -68916,7 +69133,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationDate": "System.Nullable`1[System.DateTime]", "EarliestRestorePoint": "System.Nullable`1[System.DateTime]", @@ -69278,7 +69495,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseLongTermRetentionBackupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupExpirationTime": "System.Nullable`1[System.DateTime]", "BackupTime": "System.Nullable`1[System.DateTime]", @@ -69358,7 +69575,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "AutoCompleteRestore": "System.Nullable`1[System.Boolean]", @@ -70351,7 +70568,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "AutoCompleteRestore": "System.Nullable`1[System.Boolean]", @@ -70517,7 +70734,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "AutoCompleteRestore": "System.Nullable`1[System.Boolean]", @@ -70762,7 +70979,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseLongTermRetentionBackupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupExpirationTime": "System.Nullable`1[System.DateTime]", "BackupTime": "System.Nullable`1[System.DateTime]", @@ -70878,7 +71095,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseLongTermRetentionBackupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupExpirationTime": "System.Nullable`1[System.DateTime]", "BackupTime": "System.Nullable`1[System.DateTime]", @@ -71238,7 +71455,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseLongTermRetentionBackupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupExpirationTime": "System.Nullable`1[System.DateTime]", "BackupTime": "System.Nullable`1[System.DateTime]", @@ -71540,7 +71757,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "WeekOfYear": "System.Nullable`1[System.Int32]", "ResourceGroupName": "System.String", @@ -72564,7 +72781,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model", "Name": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.LocationCapabilityModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.LocationCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.LocationCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SupportedServerVersions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServerVersionCapabilityModel]", "LocationName": "System.String", @@ -73056,7 +73273,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryOnlyAuthentication.Model", "Name": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryOnlyAuthentication.Model.AzureSqlInstanceActiveDirectoryOnlyAuthenticationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryOnlyAuthentication.Model.AzureSqlInstanceActiveDirectoryOnlyAuthenticationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryOnlyAuthentication.Model.AzureSqlInstanceActiveDirectoryOnlyAuthenticationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AzureADOnlyAuthentication": "System.Boolean", "InstanceName": "System.String", @@ -73111,7 +73328,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -73278,7 +73495,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -73613,7 +73830,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryOnlyAuthentication.Model", "Name": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryOnlyAuthentication.Model.AzureSqlInstanceActiveDirectoryOnlyAuthenticationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryOnlyAuthentication.Model.AzureSqlInstanceActiveDirectoryOnlyAuthenticationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryOnlyAuthentication.Model.AzureSqlInstanceActiveDirectoryOnlyAuthenticationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AzureADOnlyAuthentication": "System.Boolean", "InstanceName": "System.String", @@ -73668,7 +73885,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -73835,7 +74052,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -74170,7 +74387,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryOnlyAuthentication.Model", "Name": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryOnlyAuthentication.Model.AzureSqlInstanceActiveDirectoryOnlyAuthenticationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryOnlyAuthentication.Model.AzureSqlInstanceActiveDirectoryOnlyAuthenticationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryOnlyAuthentication.Model.AzureSqlInstanceActiveDirectoryOnlyAuthenticationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AzureADOnlyAuthentication": "System.Boolean", "InstanceName": "System.String", @@ -74225,7 +74442,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -74392,7 +74609,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -74727,7 +74944,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Model", "Name": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Model.AzureSqlInstanceActiveDirectoryAdministratorModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Model.AzureSqlInstanceActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Model.AzureSqlInstanceActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ObjectId": "System.Guid", "ResourceGroupName": "System.String", @@ -74783,7 +75000,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -74950,7 +75167,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -75285,7 +75502,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Model", "Name": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Model.AzureSqlInstanceActiveDirectoryAdministratorModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Model.AzureSqlInstanceActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Model.AzureSqlInstanceActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ObjectId": "System.Guid", "ResourceGroupName": "System.String", @@ -75377,7 +75594,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -75636,7 +75853,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -76071,7 +76288,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Model", "Name": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Model.AzureSqlInstanceActiveDirectoryAdministratorModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Model.AzureSqlInstanceActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Model.AzureSqlInstanceActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ObjectId": "System.Guid", "ResourceGroupName": "System.String", @@ -76163,7 +76380,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -76422,7 +76639,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -76857,7 +77074,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model", "Name": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Sql.Models.Sku", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -77297,7 +77514,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model", "Name": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Sql.Models.Sku", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -77883,7 +78100,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model", "Name": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Sql.Models.Sku", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -77947,7 +78164,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model", "Name": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Sql.Models.Sku", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -78105,7 +78322,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model", "Name": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Sql.Models.Sku", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -78431,7 +78648,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model", "Name": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Sql.Models.Sku", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -78495,7 +78712,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model", "Name": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Sql.Models.Sku", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -78709,7 +78926,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model", "Name": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Sql.Models.Sku", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -79331,7 +79548,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FailoverWithDataLossGracePeriodHours": "System.Nullable`1[System.Int32]", "ResourceGroupName": "System.String", @@ -79613,7 +79830,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FailoverWithDataLossGracePeriodHours": "System.Nullable`1[System.Int32]", "ResourceGroupName": "System.String", @@ -80231,7 +80448,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FailoverWithDataLossGracePeriodHours": "System.Nullable`1[System.Int32]", "ResourceGroupName": "System.String", @@ -80351,7 +80568,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FailoverWithDataLossGracePeriodHours": "System.Nullable`1[System.Int32]", "ResourceGroupName": "System.String", @@ -80813,7 +81030,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FailoverWithDataLossGracePeriodHours": "System.Nullable`1[System.Int32]", "ResourceGroupName": "System.String", @@ -81075,7 +81292,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FailoverWithDataLossGracePeriodHours": "System.Nullable`1[System.Int32]", "ResourceGroupName": "System.String", @@ -81195,7 +81412,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FailoverWithDataLossGracePeriodHours": "System.Nullable`1[System.Int32]", "ResourceGroupName": "System.String", @@ -81723,7 +81940,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FailoverWithDataLossGracePeriodHours": "System.Nullable`1[System.Int32]", "ResourceGroupName": "System.String", @@ -82033,7 +82250,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FailoverWithDataLossGracePeriodHours": "System.Nullable`1[System.Int32]", "ResourceGroupName": "System.String", @@ -82153,7 +82370,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FailoverWithDataLossGracePeriodHours": "System.Nullable`1[System.Int32]", "ResourceGroupName": "System.String", @@ -82549,7 +82766,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FailoverWithDataLossGracePeriodHours": "System.Nullable`1[System.Int32]", "ResourceGroupName": "System.String", @@ -82763,7 +82980,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Model", "Name": "Microsoft.Azure.Commands.Sql.Model.IndexRecommendation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Model.IndexRecommendation, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Model.IndexRecommendation, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EstimatedImpact": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.OperationImpact]", "ReportedImpact": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.OperationImpact]", @@ -83134,7 +83351,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Model", "Name": "Microsoft.Azure.Commands.Sql.Model.IndexRecommendation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Model.IndexRecommendation, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Model.IndexRecommendation, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EstimatedImpact": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.OperationImpact]", "ReportedImpact": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.OperationImpact]", @@ -83463,7 +83680,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Model", "Name": "Microsoft.Azure.Commands.Sql.Model.IndexRecommendation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Model.IndexRecommendation, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Model.IndexRecommendation, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EstimatedImpact": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.OperationImpact]", "ReportedImpact": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.OperationImpact]", @@ -83792,7 +84009,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model", "Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AzureSqlDatabaseImportExportStatusModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AzureSqlDatabaseImportExportStatusModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AzureSqlDatabaseImportExportStatusModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateEndpointRequestStatus": "Microsoft.Azure.Commands.Sql.ImportExport.Model.PrivateEndpointRequestStatus[]", "OperationStatusLink": "System.String", @@ -83984,7 +84201,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model", "Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AzureSqlDatabaseImportExportBaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AzureSqlDatabaseImportExportBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AzureSqlDatabaseImportExportBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AuthenticationType": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType", "NetworkIsolationSettings": "Microsoft.Azure.Commands.Sql.ImportExport.Model.NetworkIsolationSettings", @@ -84085,7 +84302,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model", "Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -84260,7 +84477,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model", "Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -84522,7 +84739,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model", "Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -84727,7 +84944,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model", "Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -84983,7 +85200,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model", "Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AzureSqlDatabaseImportExportBaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AzureSqlDatabaseImportExportBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AzureSqlDatabaseImportExportBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AuthenticationType": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType", "NetworkIsolationSettings": "Microsoft.Azure.Commands.Sql.ImportExport.Model.NetworkIsolationSettings", @@ -85066,7 +85283,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseEdition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseEdition, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseEdition, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -85223,7 +85440,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model", "Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -85398,7 +85615,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model", "Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -85636,7 +85853,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseEdition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseEdition, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseEdition, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -85817,7 +86034,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model", "Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -86022,7 +86239,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model", "Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -86278,7 +86495,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FirewallRule.Model", "Name": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceGroupName": "System.String", "ServerName": "System.String", @@ -86555,7 +86772,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FirewallRule.Model", "Name": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceGroupName": "System.String", "ServerName": "System.String", @@ -87142,7 +87359,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FirewallRule.Model", "Name": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceGroupName": "System.String", "ServerName": "System.String", @@ -87461,7 +87678,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FirewallRule.Model", "Name": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceGroupName": "System.String", "ServerName": "System.String", @@ -87822,7 +88039,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FailoverGroupReadOnlyEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadOnlyEndpoint", "FailoverGroupReadWriteEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadWriteEndpoint", @@ -87952,7 +88169,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -88077,7 +88294,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -88178,7 +88395,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FailoverGroupReadOnlyEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadOnlyEndpoint", "FailoverGroupReadWriteEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadWriteEndpoint", @@ -88488,7 +88705,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FailoverGroupReadOnlyEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadOnlyEndpoint", "FailoverGroupReadWriteEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadWriteEndpoint", @@ -88654,7 +88871,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -88775,7 +88992,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -89031,7 +89248,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -89164,7 +89381,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -89348,7 +89565,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FailoverGroupReadOnlyEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadOnlyEndpoint", "FailoverGroupReadWriteEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadWriteEndpoint", @@ -89478,7 +89695,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -89621,7 +89838,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -89746,7 +89963,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FailoverGroupReadOnlyEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadOnlyEndpoint", "FailoverGroupReadWriteEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadWriteEndpoint", @@ -90098,7 +90315,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FailoverGroupReadOnlyEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadOnlyEndpoint", "FailoverGroupReadWriteEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadWriteEndpoint", @@ -90228,7 +90445,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -90349,7 +90566,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -90557,7 +90774,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -90690,7 +90907,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -90874,7 +91091,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FailoverGroupReadOnlyEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadOnlyEndpoint", "FailoverGroupReadWriteEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadWriteEndpoint", @@ -91268,7 +91485,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticPool.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -91561,7 +91778,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticPool.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolActivityModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OperationId": "System.Guid", "IsCancellable": "System.Nullable`1[System.Boolean]", @@ -91895,7 +92112,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -92636,7 +92853,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticPool.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -93983,7 +94200,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticPool.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -94318,7 +94535,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticPool.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -95669,7 +95886,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticPool.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolActivityModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OperationId": "System.Guid", "IsCancellable": "System.Nullable`1[System.Boolean]", @@ -96045,7 +96262,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "WorkerCount": "System.Nullable`1[System.Int32]", @@ -96126,7 +96343,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -96402,7 +96619,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -96686,7 +96903,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "WorkerCount": "System.Nullable`1[System.Int32]", @@ -96767,7 +96984,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -97185,7 +97402,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -97575,7 +97792,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "WorkerCount": "System.Nullable`1[System.Int32]", @@ -97656,7 +97873,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "WorkerCount": "System.Nullable`1[System.Int32]", @@ -97973,7 +98190,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "WorkerCount": "System.Nullable`1[System.Int32]", @@ -98276,7 +98493,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "WorkerCount": "System.Nullable`1[System.Int32]", @@ -98357,7 +98574,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "WorkerCount": "System.Nullable`1[System.Int32]", @@ -98678,7 +98895,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "WorkerCount": "System.Nullable`1[System.Int32]", @@ -98961,7 +99178,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Password": "System.Security.SecureString", "CredentialName": "System.String", @@ -99039,7 +99256,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "WorkerCount": "System.Nullable`1[System.Int32]", @@ -99356,7 +99573,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "WorkerCount": "System.Nullable`1[System.Int32]", @@ -99639,7 +99856,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Password": "System.Security.SecureString", "CredentialName": "System.String", @@ -99717,7 +99934,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "WorkerCount": "System.Nullable`1[System.Int32]", @@ -100076,7 +100293,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "WorkerCount": "System.Nullable`1[System.Int32]", @@ -100407,7 +100624,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Password": "System.Security.SecureString", "CredentialName": "System.String", @@ -100485,7 +100702,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Password": "System.Security.SecureString", "CredentialName": "System.String", @@ -100799,7 +101016,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Password": "System.Security.SecureString", "CredentialName": "System.String", @@ -101027,7 +101244,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Password": "System.Security.SecureString", "CredentialName": "System.String", @@ -101105,7 +101322,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Password": "System.Security.SecureString", "CredentialName": "System.String", @@ -101461,7 +101678,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Password": "System.Security.SecureString", "CredentialName": "System.String", @@ -101737,7 +101954,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreateTime": "System.Nullable`1[System.DateTime]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -101823,7 +102040,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]", "Enabled": "System.Nullable`1[System.Boolean]", @@ -102222,7 +102439,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]", "Enabled": "System.Nullable`1[System.Boolean]", @@ -102575,7 +102792,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreateTime": "System.Nullable`1[System.DateTime]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -102661,7 +102878,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreateTime": "System.Nullable`1[System.DateTime]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -103021,7 +103238,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreateTime": "System.Nullable`1[System.DateTime]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -103257,7 +103474,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Output": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel", "RetryIntervalBackoffMultiplier": "System.Nullable`1[System.Double]", @@ -103343,7 +103560,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]", "Enabled": "System.Nullable`1[System.Boolean]", @@ -103533,7 +103750,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -104463,7 +104680,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -105374,7 +105591,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]", "Enabled": "System.Nullable`1[System.Boolean]", @@ -105742,7 +105959,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]", "Enabled": "System.Nullable`1[System.Boolean]", @@ -105884,7 +106101,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -106305,7 +106522,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]", "Enabled": "System.Nullable`1[System.Boolean]", @@ -107187,7 +107404,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -108233,7 +108450,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Output": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel", "RetryIntervalBackoffMultiplier": "System.Nullable`1[System.Double]", @@ -108319,7 +108536,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Output": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel", "RetryIntervalBackoffMultiplier": "System.Nullable`1[System.Double]", @@ -108496,7 +108713,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -109020,7 +109237,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -110395,7 +110612,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Output": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel", "RetryIntervalBackoffMultiplier": "System.Nullable`1[System.Double]", @@ -110468,7 +110685,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -110935,7 +111152,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Output": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel", "RetryIntervalBackoffMultiplier": "System.Nullable`1[System.Double]", @@ -111304,7 +111521,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Output": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel", "RetryIntervalBackoffMultiplier": "System.Nullable`1[System.Double]", @@ -111769,7 +111986,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -113227,7 +113444,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]", "Enabled": "System.Nullable`1[System.Boolean]", @@ -113310,7 +113527,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "WorkerCount": "System.Nullable`1[System.Int32]", @@ -114339,7 +114556,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "WorkerCount": "System.Nullable`1[System.Int32]", @@ -114525,7 +114742,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "WorkerCount": "System.Nullable`1[System.Int32]", @@ -114761,7 +114978,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "WorkerCount": "System.Nullable`1[System.Int32]", @@ -115726,7 +115943,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]", "Enabled": "System.Nullable`1[System.Boolean]", @@ -115809,7 +116026,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]", "Enabled": "System.Nullable`1[System.Boolean]", @@ -116918,7 +117135,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]", "Enabled": "System.Nullable`1[System.Boolean]", @@ -117132,7 +117349,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]", "Enabled": "System.Nullable`1[System.Boolean]", @@ -117370,7 +117587,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]", "Enabled": "System.Nullable`1[System.Boolean]", @@ -118363,7 +118580,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]", "TargetGroupName": "System.String", @@ -118440,7 +118657,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "WorkerCount": "System.Nullable`1[System.Int32]", @@ -118757,7 +118974,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "WorkerCount": "System.Nullable`1[System.Int32]", @@ -119040,7 +119257,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]", "TargetGroupName": "System.String", @@ -119117,7 +119334,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "WorkerCount": "System.Nullable`1[System.Int32]", @@ -119434,7 +119651,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "WorkerCount": "System.Nullable`1[System.Int32]", @@ -119717,7 +119934,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]", "TargetGroupName": "System.String", @@ -119794,7 +120011,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]", "TargetGroupName": "System.String", @@ -120149,7 +120366,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]", "TargetGroupName": "System.String", @@ -120448,7 +120665,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "MembershipType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobTargetGroupMembershipType]", "TargetGroupName": "System.String", @@ -120549,7 +120766,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]", "TargetGroupName": "System.String", @@ -121584,7 +121801,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]", "TargetGroupName": "System.String", @@ -121764,7 +121981,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]", "TargetGroupName": "System.String", @@ -121968,7 +122185,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]", "TargetGroupName": "System.String", @@ -122695,7 +122912,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "MembershipType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobTargetGroupMembershipType]", "TargetGroupName": "System.String", @@ -122778,7 +122995,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]", "TargetGroupName": "System.String", @@ -123673,7 +123890,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]", "TargetGroupName": "System.String", @@ -123829,7 +124046,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]", "TargetGroupName": "System.String", @@ -124009,7 +124226,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]", "TargetGroupName": "System.String", @@ -124684,7 +124901,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Output": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel", "RetryIntervalBackoffMultiplier": "System.Nullable`1[System.Double]", @@ -124770,7 +124987,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]", "Enabled": "System.Nullable`1[System.Boolean]", @@ -125343,7 +125560,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]", "Enabled": "System.Nullable`1[System.Boolean]", @@ -125483,7 +125700,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]", "Enabled": "System.Nullable`1[System.Boolean]", @@ -125914,7 +126131,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Output": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel", "RetryIntervalBackoffMultiplier": "System.Nullable`1[System.Double]", @@ -126000,7 +126217,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Output": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel", "RetryIntervalBackoffMultiplier": "System.Nullable`1[System.Double]", @@ -126364,7 +126581,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Output": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel", "RetryIntervalBackoffMultiplier": "System.Nullable`1[System.Double]", @@ -126600,7 +126817,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]", "Enabled": "System.Nullable`1[System.Boolean]", @@ -126683,7 +126900,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "WorkerCount": "System.Nullable`1[System.Int32]", @@ -127000,7 +127217,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "WorkerCount": "System.Nullable`1[System.Int32]", @@ -127283,7 +127500,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]", "Enabled": "System.Nullable`1[System.Boolean]", @@ -127366,7 +127583,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]", "Enabled": "System.Nullable`1[System.Boolean]", @@ -127727,7 +127944,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]", "Enabled": "System.Nullable`1[System.Boolean]", @@ -128032,7 +128249,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreateTime": "System.Nullable`1[System.DateTime]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -128118,7 +128335,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "WorkerCount": "System.Nullable`1[System.Int32]", @@ -128885,7 +129102,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "WorkerCount": "System.Nullable`1[System.Int32]", @@ -129175,7 +129392,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "WorkerCount": "System.Nullable`1[System.Int32]", @@ -129748,7 +129965,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreateTime": "System.Nullable`1[System.DateTime]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -129834,7 +130051,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreateTime": "System.Nullable`1[System.DateTime]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -130626,7 +130843,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreateTime": "System.Nullable`1[System.DateTime]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -130871,7 +131088,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreateTime": "System.Nullable`1[System.DateTime]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -131351,7 +131568,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreateTime": "System.Nullable`1[System.DateTime]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -131437,7 +131654,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreateTime": "System.Nullable`1[System.DateTime]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -132111,7 +132328,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreateTime": "System.Nullable`1[System.DateTime]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -132724,7 +132941,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]", "ServerName": "System.String", @@ -132833,7 +133050,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -133081,7 +133298,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]", "ServerName": "System.String", @@ -133470,7 +133687,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -133877,7 +134094,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]", "InstanceName": "System.String", @@ -133986,7 +134203,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "AutoCompleteRestore": "System.Nullable`1[System.Boolean]", @@ -134209,7 +134426,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]", "InstanceName": "System.String", @@ -134598,7 +134815,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "AutoCompleteRestore": "System.Nullable`1[System.Boolean]", @@ -134980,7 +135197,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]", "ServerName": "System.String", @@ -135089,7 +135306,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -135337,7 +135554,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]", "ServerName": "System.String", @@ -135726,7 +135943,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -136133,7 +136350,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]", "InstanceName": "System.String", @@ -136242,7 +136459,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "AutoCompleteRestore": "System.Nullable`1[System.Boolean]", @@ -136465,7 +136682,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]", "InstanceName": "System.String", @@ -136854,7 +137071,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "AutoCompleteRestore": "System.Nullable`1[System.Boolean]", @@ -137215,7 +137432,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]", "ServerName": "System.String", @@ -137325,7 +137542,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -137905,7 +138122,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -138096,7 +138313,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -138434,7 +138651,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]", "ServerName": "System.String", @@ -138544,7 +138761,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -138858,7 +139075,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -139124,7 +139341,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]", "InstanceName": "System.String", @@ -139234,7 +139451,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "AutoCompleteRestore": "System.Nullable`1[System.Boolean]", @@ -139789,7 +140006,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "AutoCompleteRestore": "System.Nullable`1[System.Boolean]", @@ -139955,7 +140172,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "AutoCompleteRestore": "System.Nullable`1[System.Boolean]", @@ -140268,7 +140485,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]", "InstanceName": "System.String", @@ -140378,7 +140595,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "AutoCompleteRestore": "System.Nullable`1[System.Boolean]", @@ -140667,7 +140884,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "AutoCompleteRestore": "System.Nullable`1[System.Boolean]", @@ -140927,7 +141144,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]", "ServerName": "System.String", @@ -141036,7 +141253,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -141282,7 +141499,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]", "ServerName": "System.String", @@ -141671,7 +141888,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -142076,7 +142293,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]", "InstanceName": "System.String", @@ -142185,7 +142402,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "AutoCompleteRestore": "System.Nullable`1[System.Boolean]", @@ -142406,7 +142623,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]", "InstanceName": "System.String", @@ -142795,7 +143012,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "AutoCompleteRestore": "System.Nullable`1[System.Boolean]", @@ -143211,7 +143428,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]", "ServerName": "System.String", @@ -143320,7 +143537,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -143898,7 +144115,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -144185,7 +144402,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]", "ServerName": "System.String", @@ -144492,7 +144709,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]", "InstanceName": "System.String", @@ -144601,7 +144818,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "AutoCompleteRestore": "System.Nullable`1[System.Boolean]", @@ -145154,7 +145371,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "AutoCompleteRestore": "System.Nullable`1[System.Boolean]", @@ -145416,7 +145633,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]", "InstanceName": "System.String", @@ -145668,7 +145885,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -146006,7 +146223,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel+DatabaseState", "OperationId": "System.Guid", @@ -146377,7 +146594,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModelExpanded", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModelExpanded, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModelExpanded, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ServiceTierAdvisor": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ServiceTierAdvisorProperties", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -147096,7 +147313,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -147342,7 +147559,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -147869,7 +148086,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -148491,7 +148708,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -149143,7 +149360,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -149602,7 +149819,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -149982,7 +150199,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -150192,7 +150409,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -150867,7 +151084,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -151367,7 +151584,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -152074,7 +152291,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel+DatabaseState", "OperationId": "System.Guid", @@ -152445,7 +152662,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model", "Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupExpirationTime": "System.Nullable`1[System.DateTime]", "BackupTime": "System.Nullable`1[System.DateTime]", @@ -152525,7 +152742,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -153571,7 +153788,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -153762,7 +153979,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -154032,7 +154249,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model", "Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupExpirationTime": "System.Nullable`1[System.DateTime]", "BackupTime": "System.Nullable`1[System.DateTime]", @@ -154148,7 +154365,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model", "Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupExpirationTime": "System.Nullable`1[System.DateTime]", "BackupTime": "System.Nullable`1[System.DateTime]", @@ -154508,7 +154725,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model", "Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackupExpirationTime": "System.Nullable`1[System.DateTime]", "BackupTime": "System.Nullable`1[System.DateTime]", @@ -154810,7 +155027,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model", "Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupShortTermRetentionPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupShortTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupShortTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RetentionDays": "System.Int32", "ResourceGroupName": "System.String", @@ -154885,7 +155102,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -155115,7 +155332,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -155517,7 +155734,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model", "Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LastAvailableBackupDate": "System.DateTime", "ResourceGroupName": "System.String", @@ -155792,7 +156009,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model", "Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDeletedDatabaseBackupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDeletedDatabaseBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDeletedDatabaseBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationDate": "System.DateTime", "DeletionDate": "System.DateTime", @@ -156118,7 +156335,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model", "Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupLongTermRetentionPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupLongTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupLongTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "WeekOfYear": "System.Nullable`1[System.Int32]", "ResourceGroupName": "System.String", @@ -156396,7 +156613,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model", "Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "State": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState", "Location": "System.String", @@ -156669,7 +156886,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model", "Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseRestorePointModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseRestorePointModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseRestorePointModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RestorePointCreationDate": "System.Nullable`1[System.DateTime]", "EarliestRestoreDate": "System.Nullable`1[System.DateTime]", @@ -156945,7 +157162,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model", "Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseRestorePointModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseRestorePointModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseRestorePointModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RestorePointCreationDate": "System.Nullable`1[System.DateTime]", "EarliestRestoreDate": "System.Nullable`1[System.DateTime]", @@ -157263,7 +157480,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model", "Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseRestorePointModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseRestorePointModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseRestorePointModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RestorePointCreationDate": "System.Nullable`1[System.DateTime]", "EarliestRestoreDate": "System.Nullable`1[System.DateTime]", @@ -157614,7 +157831,7 @@ "NounName": "AzSqlDatabase", "Name": "Restore-AzSqlDatabase", "ClassName": "Microsoft.Azure.Commands.Sql.Backup.Cmdlet.RestoreAzureRmSqlDatabase", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 0, "SupportsPaging": false, "DefaultParameterSetName": "__AllParameterSets", @@ -157623,7 +157840,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -158029,6 +158246,28 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, + { + "Name": "BackupStorageRedundancy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Local", + "Zone", + "Geo" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, { "Name": "ResourceGroupName", "AliasList": [], @@ -158327,6 +158566,34 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "BackupStorageRedundancy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Local", + "Zone", + "Geo" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ResourceGroupName", @@ -158641,6 +158908,34 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "BackupStorageRedundancy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Local", + "Zone", + "Geo" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ResourceGroupName", @@ -158975,6 +159270,34 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "BackupStorageRedundancy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Local", + "Zone", + "Geo" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ResourceGroupName", @@ -159313,6 +159636,34 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "BackupStorageRedundancy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Local", + "Zone", + "Geo" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ResourceGroupName", @@ -159599,6 +159950,34 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "BackupStorageRedundancy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Local", + "Zone", + "Geo" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ResourceGroupName", @@ -159889,6 +160268,34 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "BackupStorageRedundancy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Local", + "Zone", + "Geo" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ResourceGroupName", @@ -160175,6 +160582,34 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "BackupStorageRedundancy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Local", + "Zone", + "Geo" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ResourceGroupName", @@ -160465,6 +160900,34 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "BackupStorageRedundancy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Local", + "Zone", + "Geo" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ResourceGroupName", @@ -160655,6 +161118,34 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "BackupStorageRedundancy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [ + "Local", + "Zone", + "Geo" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ResourceGroupName", @@ -160737,7 +161228,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model", "Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupShortTermRetentionPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupShortTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupShortTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RetentionDays": "System.Int32", "ResourceGroupName": "System.String", @@ -160830,7 +161321,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -161128,7 +161619,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -161558,7 +162049,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model", "Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupLongTermRetentionPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupLongTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupLongTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "WeekOfYear": "System.Nullable`1[System.Int32]", "ResourceGroupName": "System.String", @@ -162582,7 +163073,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model", "Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "State": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState", "Location": "System.String", @@ -162639,7 +163130,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model", "Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -162835,7 +163326,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model", "Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -163067,7 +163558,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseBackupShortTermRetentionPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseBackupShortTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseBackupShortTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RetentionDays": "System.Int32", "DeletionDate": "System.Nullable`1[System.DateTime]", @@ -163148,7 +163639,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationDate": "System.Nullable`1[System.DateTime]", "EarliestRestorePoint": "System.Nullable`1[System.DateTime]", @@ -163351,7 +163842,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreationDate": "System.Nullable`1[System.DateTime]", "EarliestRestorePoint": "System.Nullable`1[System.DateTime]", @@ -163809,7 +164300,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -164185,7 +164676,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -164561,7 +165052,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsUpToDate": "System.Nullable`1[System.Boolean]", "LastAliveTime": "System.Nullable`1[System.DateTime]", @@ -164861,7 +165352,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentLinkedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentLinkedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentLinkedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SeverName": "System.String", "DatabaseId": "System.String", @@ -165149,7 +165640,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Schema": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel", "UsePrivateLinkConnection": "System.Nullable`1[System.Boolean]", @@ -165499,7 +165990,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupLogModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupLogModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupLogModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TimeStamp": "System.Nullable`1[System.DateTime]", "LogLevel": "System.String", @@ -165963,7 +166454,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UsePrivateLinkConnection": "System.Nullable`1[System.Boolean]", "MemberDatabasePassword": "System.Security.SecureString", @@ -166362,7 +166853,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tables": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaTableModel]", "LastUpdateTime": "System.Nullable`1[System.DateTime]" @@ -166726,7 +167217,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsUpToDate": "System.Nullable`1[System.Boolean]", "LastAliveTime": "System.Nullable`1[System.DateTime]", @@ -167430,7 +167921,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentKeyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SyncAgentKey": "System.String" }, @@ -167699,7 +168190,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Schema": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel", "UsePrivateLinkConnection": "System.Nullable`1[System.Boolean]", @@ -168391,7 +168882,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UsePrivateLinkConnection": "System.Nullable`1[System.Boolean]", "MemberDatabasePassword": "System.Security.SecureString", @@ -170139,7 +170630,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsUpToDate": "System.Nullable`1[System.Boolean]", "LastAliveTime": "System.Nullable`1[System.DateTime]", @@ -170523,7 +171014,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Schema": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel", "UsePrivateLinkConnection": "System.Nullable`1[System.Boolean]", @@ -170957,7 +171448,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UsePrivateLinkConnection": "System.Nullable`1[System.Boolean]", "MemberDatabasePassword": "System.Security.SecureString", @@ -171440,7 +171931,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Schema": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel", "UsePrivateLinkConnection": "System.Nullable`1[System.Boolean]", @@ -171832,7 +172323,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Schema": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel", "UsePrivateLinkConnection": "System.Nullable`1[System.Boolean]", @@ -172224,7 +172715,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Schema": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel", "UsePrivateLinkConnection": "System.Nullable`1[System.Boolean]", @@ -172742,7 +173233,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UsePrivateLinkConnection": "System.Nullable`1[System.Boolean]", "MemberDatabasePassword": "System.Security.SecureString", @@ -173271,7 +173762,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Schema": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel", "UsePrivateLinkConnection": "System.Nullable`1[System.Boolean]", @@ -173701,7 +174192,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataMasking.Model", "Name": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataMaskingState": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DataMaskingStateType", "DatabaseName": "System.String", @@ -173974,7 +174465,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataMasking.Model", "Name": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "MaskingFunction": "Microsoft.Azure.Commands.Sql.DataMasking.Model.MaskingFunction", "NumberFrom": "System.Nullable`1[System.Double]", @@ -174380,7 +174871,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataMasking.Model", "Name": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "MaskingFunction": "Microsoft.Azure.Commands.Sql.DataMasking.Model.MaskingFunction", "NumberFrom": "System.Nullable`1[System.Double]", @@ -175112,7 +175603,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataMasking.Model", "Name": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "MaskingFunction": "Microsoft.Azure.Commands.Sql.DataMasking.Model.MaskingFunction", "NumberFrom": "System.Nullable`1[System.Double]", @@ -175602,7 +176093,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataMasking.Model", "Name": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DataMaskingState": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DataMaskingStateType", "DatabaseName": "System.String", @@ -176007,7 +176498,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataMasking.Model", "Name": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "MaskingFunction": "Microsoft.Azure.Commands.Sql.DataMasking.Model.MaskingFunction", "NumberFrom": "System.Nullable`1[System.Double]", @@ -176739,7 +177230,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.DatabaseAuditModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.DatabaseAuditModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.DatabaseAuditModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AuditActionGroup": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]", "BlobStorageTargetState": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditStateType", @@ -176860,7 +177351,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -177132,7 +177623,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -177350,7 +177841,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.ServerAuditModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.ServerAuditModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.ServerAuditModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AuditActionGroup": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]", "BlobStorageTargetState": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditStateType", @@ -177451,7 +177942,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -177687,7 +178178,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -177972,7 +178463,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -178244,7 +178735,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -178517,7 +179008,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -178753,7 +179244,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -178984,7 +179475,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups", "GenericTypeArguments": [], @@ -179286,7 +179777,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -179442,7 +179933,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups", "GenericTypeArguments": [], @@ -179884,7 +180375,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups", "GenericTypeArguments": [], @@ -180254,7 +180745,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -180377,7 +180868,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups", "GenericTypeArguments": [], @@ -180773,7 +181264,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups", "GenericTypeArguments": [], @@ -181039,7 +181530,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -181159,7 +181650,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups", "GenericTypeArguments": [], @@ -181577,7 +182068,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups", "GenericTypeArguments": [], @@ -181947,7 +182438,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -182016,7 +182507,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups", "GenericTypeArguments": [], @@ -182393,7 +182884,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Advisor.Model", "Name": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlDatabaseAdvisorModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlDatabaseAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlDatabaseAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecommendedActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedAction]", "LastChecked": "System.Nullable`1[System.DateTime]", @@ -182777,7 +183268,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Advisor.Model", "Name": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlElasticPoolAdvisorModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlElasticPoolAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlElasticPoolAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecommendedActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedAction]", "LastChecked": "System.Nullable`1[System.DateTime]", @@ -183161,7 +183652,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Advisor.Model", "Name": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlServerAdvisorModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlServerAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlServerAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecommendedActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedAction]", "LastChecked": "System.Nullable`1[System.DateTime]", @@ -183498,7 +183989,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Advisor.Model", "Name": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlDatabaseAdvisorModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlDatabaseAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlDatabaseAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecommendedActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedAction]", "LastChecked": "System.Nullable`1[System.DateTime]", @@ -183600,7 +184091,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet", "Name": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -183820,7 +184311,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet", "Name": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -184052,7 +184543,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Advisor.Model", "Name": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlElasticPoolAdvisorModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlElasticPoolAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlElasticPoolAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecommendedActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedAction]", "LastChecked": "System.Nullable`1[System.DateTime]", @@ -184154,7 +184645,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet", "Name": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -184374,7 +184865,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet", "Name": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -184606,7 +185097,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Advisor.Model", "Name": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlServerAdvisorModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlServerAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlServerAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecommendedActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedAction]", "LastChecked": "System.Nullable`1[System.DateTime]", @@ -184703,7 +185194,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet", "Name": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -184905,7 +185396,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet", "Name": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -185113,7 +185604,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model", "Name": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ManagedInstanceAdvancedDataSecurityPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ManagedInstanceAdvancedDataSecurityPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ManagedInstanceAdvancedDataSecurityPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsEnabled": "System.Boolean", "ManagedInstanceName": "System.String", @@ -185168,7 +185659,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -185317,7 +185808,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -185588,7 +186079,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model", "Name": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ServerAdvancedDataSecurityPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ServerAdvancedDataSecurityPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ServerAdvancedDataSecurityPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsEnabled": "System.Boolean", "ServerName": "System.String", @@ -185643,7 +186134,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -185781,7 +186272,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -186043,7 +186534,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model", "Name": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ManagedInstanceAdvancedDataSecurityPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ManagedInstanceAdvancedDataSecurityPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ManagedInstanceAdvancedDataSecurityPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsEnabled": "System.Boolean", "ManagedInstanceName": "System.String", @@ -186152,7 +186643,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -186465,7 +186956,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -186716,7 +187207,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model", "Name": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ServerAdvancedDataSecurityPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ServerAdvancedDataSecurityPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ServerAdvancedDataSecurityPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsEnabled": "System.Boolean", "ServerName": "System.String", @@ -186825,7 +187316,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -187127,7 +187618,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -187369,7 +187860,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model", "Name": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ManagedInstanceAdvancedDataSecurityPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ManagedInstanceAdvancedDataSecurityPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ManagedInstanceAdvancedDataSecurityPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsEnabled": "System.Boolean", "ManagedInstanceName": "System.String", @@ -187424,7 +187915,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -187573,7 +188064,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -187844,7 +188335,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model", "Name": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ServerAdvancedDataSecurityPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ServerAdvancedDataSecurityPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ServerAdvancedDataSecurityPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsEnabled": "System.Boolean", "ServerName": "System.String", @@ -187899,7 +188390,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -188037,7 +188528,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -188430,7 +188921,7 @@ "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -188598,7 +189089,7 @@ "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -188610,7 +189101,7 @@ "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -189098,7 +189589,7 @@ "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -189193,7 +189684,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -189205,7 +189696,7 @@ "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Code": "System.String", "Message": "System.String" @@ -189250,7 +189741,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -189262,7 +189753,7 @@ "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Result": "System.Collections.Generic.IList`1[System.String]" }, @@ -189385,7 +189876,7 @@ "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.ServerKeyType": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.ServerKeyType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.ServerKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.ServerKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -189480,7 +189971,7 @@ "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceKeyVaultKeyModel": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceKeyVaultKeyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Type": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.ServerKeyType", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -189561,7 +190052,7 @@ "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -189656,7 +190147,7 @@ "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceTransparentDataEncryptionProtectorModel": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceTransparentDataEncryptionProtectorModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceTransparentDataEncryptionProtectorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceTransparentDataEncryptionProtectorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Type": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType", "ResourceGroupName": "System.String", @@ -189753,7 +190244,7 @@ "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -189848,7 +190339,7 @@ "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionActivityStatusType": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionActivityStatusType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionActivityStatusType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionActivityStatusType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -189943,7 +190434,7 @@ "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ThreatDetectionStateType": { "Namespace": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model", "Name": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ThreatDetectionStateType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ThreatDetectionStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ThreatDetectionStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -190050,7 +190541,7 @@ "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedDatabaseProperties]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedDatabaseProperties]", - "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedDatabaseProperties, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedDatabaseProperties, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.10.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -190062,7 +190553,7 @@ "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedDatabaseProperties": { "Namespace": "Microsoft.Azure.Management.Sql.LegacySdk.Models", "Name": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedDatabaseProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedDatabaseProperties, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedDatabaseProperties, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.10.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "TargetEdition": "System.String", @@ -190108,7 +190599,7 @@ "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.UpgradeRecommendedElasticPoolProperties]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.UpgradeRecommendedElasticPoolProperties]", - "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Management.Sql.LegacySdk.Models.UpgradeRecommendedElasticPoolProperties, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Management.Sql.LegacySdk.Models.UpgradeRecommendedElasticPoolProperties, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.10.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -190120,7 +190611,7 @@ "Microsoft.Azure.Management.Sql.LegacySdk.Models.UpgradeRecommendedElasticPoolProperties": { "Namespace": "Microsoft.Azure.Management.Sql.LegacySdk.Models", "Name": "Microsoft.Azure.Management.Sql.LegacySdk.Models.UpgradeRecommendedElasticPoolProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.UpgradeRecommendedElasticPoolProperties, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.UpgradeRecommendedElasticPoolProperties, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.10.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DatabaseCollection": "System.Collections.Generic.IList`1[System.String]", "DatabaseDtuMax": "System.Int32", @@ -190171,7 +190662,7 @@ "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel+ServerKeyType": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel+ServerKeyType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel+ServerKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel+ServerKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -190266,7 +190757,7 @@ "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationActivityModel+ServerDisasterRecoveryConfigurationState": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationActivityModel+ServerDisasterRecoveryConfigurationState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationActivityModel+ServerDisasterRecoveryConfigurationState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationActivityModel+ServerDisasterRecoveryConfigurationState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Current": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Requested": "System.Collections.Generic.IDictionary`2[System.String,System.String]" @@ -190311,7 +190802,7 @@ "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections": { "Namespace": "Microsoft.Azure.Commands.Sql.Replication.Model", "Name": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -190406,7 +190897,7 @@ "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionErrorInfo": { "Namespace": "Microsoft.Azure.Management.Sql.LegacySdk.Models", "Name": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionErrorInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionErrorInfo, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionErrorInfo, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.10.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ErrorCode": "System.String", "IsRetryable": "System.String" @@ -190451,7 +190942,7 @@ "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImplementationInfo": { "Namespace": "Microsoft.Azure.Management.Sql.LegacySdk.Models", "Name": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImplementationInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImplementationInfo, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImplementationInfo, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.10.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Method": "System.String", "Script": "System.String" @@ -190496,7 +190987,7 @@ "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionStateInfo": { "Namespace": "Microsoft.Azure.Management.Sql.LegacySdk.Models", "Name": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionStateInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionStateInfo, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionStateInfo, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.10.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LastModified": "System.DateTime", "CurrentValue": "System.String", @@ -190565,7 +191056,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImpactInfo]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImpactInfo]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImpactInfo, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImpactInfo, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.10.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -190577,7 +191068,7 @@ "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImpactInfo": { "Namespace": "Microsoft.Azure.Management.Sql.LegacySdk.Models", "Name": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImpactInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImpactInfo, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImpactInfo, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.10.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AbsoluteValue": "System.Nullable`1[System.Double]", "ChangeValueAbsolute": "System.Nullable`1[System.Double]", @@ -190625,7 +191116,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionMetricInfo]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionMetricInfo]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionMetricInfo, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionMetricInfo, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.10.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -190637,7 +191128,7 @@ "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionMetricInfo": { "Namespace": "Microsoft.Azure.Management.Sql.LegacySdk.Models", "Name": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionMetricInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionMetricInfo, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionMetricInfo, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.10.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StartTime": "System.Nullable`1[System.DateTime]", "Value": "System.Nullable`1[System.Double]", @@ -190953,7 +191444,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServerVersionCapabilityModel]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServerVersionCapabilityModel]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServerVersionCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServerVersionCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -190965,7 +191456,7 @@ "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServerVersionCapabilityModel": { "Namespace": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model", "Name": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServerVersionCapabilityModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServerVersionCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServerVersionCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SupportedEditions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.EditionCapabilityModel]", "Status": "System.String", @@ -191011,7 +191502,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.EditionCapabilityModel]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.EditionCapabilityModel]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.EditionCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.EditionCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -191023,7 +191514,7 @@ "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.EditionCapabilityModel": { "Namespace": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model", "Name": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.EditionCapabilityModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.EditionCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.EditionCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SupportedServiceObjectives": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServiceObjectiveCapabilityModel]", "Status": "System.String", @@ -191069,7 +191560,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServiceObjectiveCapabilityModel]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServiceObjectiveCapabilityModel]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServiceObjectiveCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServiceObjectiveCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -191081,7 +191572,7 @@ "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServiceObjectiveCapabilityModel": { "Namespace": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model", "Name": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServiceObjectiveCapabilityModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServiceObjectiveCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServiceObjectiveCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SupportedMaxSizes": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeRangeCapabilityModel]", "Id": "System.Nullable`1[System.Guid]", @@ -191128,7 +191619,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeRangeCapabilityModel]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeRangeCapabilityModel]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeRangeCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeRangeCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -191140,7 +191631,7 @@ "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeRangeCapabilityModel": { "Namespace": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model", "Name": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeRangeCapabilityModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeRangeCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeRangeCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "MinValue": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeCapabilityModel", "MaxValue": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeCapabilityModel", @@ -191188,7 +191679,7 @@ "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeCapabilityModel": { "Namespace": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model", "Name": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeCapabilityModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Limit": "System.Nullable`1[System.Int32]", "Unit": "System.String", @@ -191400,7 +191891,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.OperationImpact]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.OperationImpact]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Sql.LegacySdk.Models.OperationImpact, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Sql.LegacySdk.Models.OperationImpact, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.10.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -191412,7 +191903,7 @@ "Microsoft.Azure.Management.Sql.LegacySdk.Models.OperationImpact": { "Namespace": "Microsoft.Azure.Management.Sql.LegacySdk.Models", "Name": "Microsoft.Azure.Management.Sql.LegacySdk.Models.OperationImpact", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.OperationImpact, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.OperationImpact, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.10.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ChangeValueAbsolute": "System.Nullable`1[System.Double]", "ChangeValueRelative": "System.Nullable`1[System.Double]", @@ -191459,7 +191950,7 @@ "Microsoft.Azure.Commands.Sql.ImportExport.Model.PrivateEndpointRequestStatus[]": { "Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model", "Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.PrivateEndpointRequestStatus[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.PrivateEndpointRequestStatus[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.PrivateEndpointRequestStatus[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Sql.ImportExport.Model.PrivateEndpointRequestStatus", "GenericTypeArguments": [], @@ -191469,7 +191960,7 @@ "Microsoft.Azure.Commands.Sql.ImportExport.Model.PrivateEndpointRequestStatus": { "Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model", "Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.PrivateEndpointRequestStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.PrivateEndpointRequestStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.PrivateEndpointRequestStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateLinkServiceId": "System.String", "PrivateEndpointConnectionName": "System.String", @@ -191515,7 +192006,7 @@ "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType": { "Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model", "Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -191610,7 +192101,7 @@ "Microsoft.Azure.Commands.Sql.ImportExport.Model.NetworkIsolationSettings": { "Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model", "Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.NetworkIsolationSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.NetworkIsolationSettings, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.NetworkIsolationSettings, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SqlServerResourceId": "System.String", "StorageAccountResourceId": "System.String" @@ -191655,7 +192146,7 @@ "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType": { "Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model", "Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -191760,7 +192251,7 @@ "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadOnlyEndpoint": { "Namespace": "Microsoft.Azure.Management.Sql.LegacySdk.Models", "Name": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadOnlyEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadOnlyEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadOnlyEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.10.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FailoverPolicy": "System.String" }, @@ -191804,7 +192295,7 @@ "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadWriteEndpoint": { "Namespace": "Microsoft.Azure.Management.Sql.LegacySdk.Models", "Name": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadWriteEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadWriteEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadWriteEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.10.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FailoverWithDataLossGracePeriodMinutes": "System.Nullable`1[System.Int32]", "FailoverPolicy": "System.String" @@ -191849,7 +192340,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.FailoverGroupPartnerServer]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.FailoverGroupPartnerServer]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Sql.LegacySdk.Models.FailoverGroupPartnerServer, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Sql.LegacySdk.Models.FailoverGroupPartnerServer, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.10.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -191861,7 +192352,7 @@ "Microsoft.Azure.Management.Sql.LegacySdk.Models.FailoverGroupPartnerServer": { "Namespace": "Microsoft.Azure.Management.Sql.LegacySdk.Models", "Name": "Microsoft.Azure.Management.Sql.LegacySdk.Models.FailoverGroupPartnerServer", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.FailoverGroupPartnerServer, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.FailoverGroupPartnerServer, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.10.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String", "Location": "System.String", @@ -191907,7 +192398,7 @@ "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -192135,7 +192626,7 @@ "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel": { "Namespace": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model", "Name": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SubscriptionId": "System.Nullable`1[System.Guid]", "Credential": "System.String", @@ -192186,7 +192677,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -192198,7 +192689,7 @@ "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "MembershipType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobTargetGroupMembershipType]", "TargetGroupName": "System.String", @@ -192361,7 +192852,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -192373,7 +192864,7 @@ "Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel": { "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rank": "System.Nullable`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityRank]", "SchemaName": "System.String", @@ -192424,7 +192915,7 @@ "System.Nullable`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityRank]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityRank]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityRank, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityRank, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -192436,7 +192927,7 @@ "Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityRank": { "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityRank", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityRank, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityRank, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -192531,7 +193022,7 @@ "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel+DatabaseState": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel+DatabaseState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel+DatabaseState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel+DatabaseState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Current": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Requested": "System.Collections.Generic.IDictionary`2[System.String,System.String]" @@ -192576,7 +193067,7 @@ "Microsoft.Azure.Management.Sql.LegacySdk.Models.ServiceTierAdvisorProperties": { "Namespace": "Microsoft.Azure.Management.Sql.LegacySdk.Models", "Name": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ServiceTierAdvisorProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ServiceTierAdvisorProperties, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ServiceTierAdvisorProperties, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.10.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ServiceLevelObjectiveUsageMetrics": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.SloUsageMetric]", "Confidence": "System.Double", @@ -192638,7 +193129,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.SloUsageMetric]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.SloUsageMetric]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Sql.LegacySdk.Models.SloUsageMetric, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Sql.LegacySdk.Models.SloUsageMetric, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.10.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -192650,7 +193141,7 @@ "Microsoft.Azure.Management.Sql.LegacySdk.Models.SloUsageMetric": { "Namespace": "Microsoft.Azure.Management.Sql.LegacySdk.Models", "Name": "Microsoft.Azure.Management.Sql.LegacySdk.Models.SloUsageMetric", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.SloUsageMetric, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.SloUsageMetric, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.10.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "InRangeTimeRatio": "System.Double", @@ -192701,7 +193192,7 @@ "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState": { "Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model", "Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -192796,7 +193287,7 @@ "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tables": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaTableModel]", "MasterSyncMemberName": "System.String" @@ -192856,7 +193347,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaTableModel]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaTableModel]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaTableModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaTableModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -192868,7 +193359,7 @@ "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaTableModel": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaTableModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaTableModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaTableModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Columns": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaColumnModel]", "QuotedName": "System.String" @@ -192928,7 +193419,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaColumnModel]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaColumnModel]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaColumnModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaColumnModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -192940,7 +193431,7 @@ "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaColumnModel": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaColumnModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaColumnModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaColumnModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "QuotedName": "System.String", "DataSize": "System.String", @@ -193207,7 +193698,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaTableModel]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaTableModel]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaTableModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaTableModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -193219,7 +193710,7 @@ "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaTableModel": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaTableModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaTableModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaTableModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "HasError": "System.Boolean", "Columns": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaColumnModel]", @@ -193277,7 +193768,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaColumnModel]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaColumnModel]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaColumnModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaColumnModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -193289,7 +193780,7 @@ "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaColumnModel": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaColumnModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaColumnModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaColumnModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "HasError": "System.Boolean", "IsPrimaryKey": "System.Boolean", @@ -193349,7 +193840,7 @@ "Microsoft.Azure.Commands.Sql.DataMasking.Model.DataMaskingStateType": { "Namespace": "Microsoft.Azure.Commands.Sql.DataMasking.Model", "Name": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DataMaskingStateType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DataMaskingStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DataMaskingStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -193444,7 +193935,7 @@ "Microsoft.Azure.Commands.Sql.DataMasking.Model.MaskingFunction": { "Namespace": "Microsoft.Azure.Commands.Sql.DataMasking.Model", "Name": "Microsoft.Azure.Commands.Sql.DataMasking.Model.MaskingFunction", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.MaskingFunction, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.MaskingFunction, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -193539,7 +194030,7 @@ "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups", "GenericTypeArguments": [], @@ -193549,7 +194040,7 @@ "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -193644,7 +194135,7 @@ "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditStateType": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditStateType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -193739,7 +194230,7 @@ "Microsoft.Azure.Commands.Sql.Auditing.Model.StorageKeyKind": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.StorageKeyKind", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.StorageKeyKind, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.StorageKeyKind, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.11.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -193834,7 +194325,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedAction]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedAction]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedAction, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedAction, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.10.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -193846,7 +194337,7 @@ "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedAction": { "Namespace": "Microsoft.Azure.Management.Sql.LegacySdk.Models", "Name": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedAction", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedAction, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedAction, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.10.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -193895,7 +194386,7 @@ "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionProperties": { "Namespace": "Microsoft.Azure.Management.Sql.LegacySdk.Models", "Name": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionProperties, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.9.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionProperties, Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk, Version=2.10.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ErrorDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionErrorInfo", "ImplementationDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImplementationInfo",